Skip to content

Instantly share code, notes, and snippets.

Created December 30, 2012 17:46
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save anonymous/4414099 to your computer and use it in GitHub Desktop.
Save anonymous/4414099 to your computer and use it in GitHub Desktop.
Satellite Projection and Parallel Coordinates
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8"/>
<title>Route Probability Exploration with Parallel Coordinates</title>
<style type="text/css">
svg {
font: 10px sans-serif;
}
path {
stroke-linejoin: round;
stroke-linecap: round;
}
.routes {
stroke-dasharray: 4, 7, 3, 8;
stroke-width: 2.5;
}
.background path {
fill: none;
stroke: #ccc;
stroke-opacity: .4;
shape-rendering: crispEdges;
}
.foreground path {
fill: none;
stroke: #e04242;
stroke-opacity: .5;
stroke-width: 2;
}
.brush .extent {
fill-opacity: .3;
stroke: #fff;
shape-rendering: crispEdges;
}
.axis line, .axis path {
fill: none;
stroke: #000;
shape-rendering: crispEdges;
}
.axis text {
text-shadow: 0 1px 0 #fff;
cursor: pointer;
}
</style>
</head>
<body>
<div id="map" style="border:0px solid gray; background-color:#fdfbf1;">
</div>
<div id="parallel" style="border:0px solid gray; background-color:#fdfbf1;">
</div>
<script src="http://d3js.org/d3.v3.min.js"></script>
<script src="http://d3js.org/d3.geo.projection.v0.min.js"></script>
<script src="http://d3js.org/topojson.v0.min.js"></script>
<script type="text/javascript">
pathRamp=d3.scale.linear().domain([1,5,9,13]).range(["blue","green","orange","blue"]);
var m = [30, 10, 10, 10],
w = 1280 - m[1] - m[3],
h = 300 - m[0] - m[2];
var x = d3.scale.ordinal().rangePoints([0, w], 1),
y = {},
dragging = {};
var line = d3.svg.line(),
axis = d3.svg.axis().orient("left"),
background,
foreground;
mapsvg = d3.select("#map").append("svg:svg")
.attr("width", 1280)
.attr("height", 400)
;
var svg = d3.select("#parallel").append("svg:svg")
.attr("width", w + m[1] + m[3])
.attr("height", h + m[0] + m[2])
.append("svg:g")
.attr("transform", "translate(" + m[3] + "," + m[0] + ")");
d3.csv("sites.csv", function(csvin) {
sitesdata = csvin;
d3.json("lcroutes.json", function(incollection) {
pathdata = incollection.features;
// Extract the list of dimensions and create a scale for each.
x.domain(dimensions = d3.keys(pathdata[0]).filter(function(d) {
return d != "type" && d != "geometry" && (y[d] = d3.scale.linear()
.domain(d3.extent(pathdata, function(p) { return +p[d]; }))
.range([h, 0]));
// .range([h, 0]));
}));
foreground = svg.append("svg:g")
.attr("class", "foreground")
.selectAll("path")
.data(pathdata)
.enter().append("svg:path")
.attr("d", path)
.style("stroke", function(d) {return (pathRamp(d.month))})
;
// Add a group element for each dimension.
var g = svg.selectAll(".dimension")
.data(dimensions)
.enter().append("svg:g")
.attr("class", "dimension")
.attr("transform", function(d) { return "translate(" + x(d) + ")"; })
.on("click", titleClick)
// Add an axis and title.
g.append("svg:g")
.attr("class", "axis")
.each(function(d) { d3.select(this).call(axis.scale(y[d])); })
.append("svg:text")
.attr("text-anchor", "middle")
.attr("y", -9)
.attr("class", "dimensionText")
.text(String);
// Add and store a brush for each axis.
g.append("svg:g")
.attr("class", "brush")
.each(function(d) { d3.select(this).call(y[d].brush = d3.svg.brush().y(y[d]).on("brush", brush)); })
.selectAll("rect")
.attr("x", -8)
.attr("width", 16);
createMap();
})
});
function titleClick(d) {
var pmax = d3.max(pathdata, function(p) { return p[d]; })
var pmin = d3.min(pathdata, function(p) { return p[d]; })
var pq1 = (pmax * .25) + (pmin * .75);
var pq2 = (pmax * .5) + (pmin * .5);
var pq3 = (pmax * .75) + (pmin * .25);
pathRamp=d3.scale.linear().domain([pmin,pq1,pq2,pq3,pmax]).range(["blue","green","gold","orange","red"]);
foreground.style("stroke", function(p) {return (pathRamp(p[d]))});
d3.selectAll("path.routes").style("stroke", function(p) {return (pathRamp(p[d]))});
}
function position(d) {
var v = dragging[d];
return v == null ? x(d) : v;
}
function transition(g) {
return g.transition().duration(500);
}
// Returns the path for a given data point.
function path(d) {
return line(dimensions.map(function(p) { return [position(p), y[p](d[p])]; }));
}
// Handles a brush event, toggling the display of foreground lines.
function brush() {
var actives = dimensions.filter(function(p) { return !y[p].brush.empty(); }),
extents = actives.map(function(p) { return y[p].brush.extent(); });
foreground.style("display", function(d) {
return actives.every(function(p, i) {
return extents[i][0] <= d[p] && d[p] <= extents[i][1];
}) ? null : "none";
});
d3.selectAll("path.routes").style("display", function(d) {
return actives.every(function(p, i) {
return extents[i][0] <= d[p] && d[p] <= extents[i][1];
}) ? null : "none";
});
}
/////////////THE MAP
function createMap(){
rankRamp=d3.scale.linear().domain([0,.005]).range([1,10]).clamp(true);
projection = d3.geo.satellite()
.distance(1.1)
.scale(1000)
.rotate([-15, -43, -10])
.center([-3, -4.5])
.tilt(25)
.clipAngle(100);
var graticule = d3.geo.graticule()
.extent([[180, 180], [-180, -180]])
.step([5, 5]);
path = d3.geo.path()
.projection(projection);
siteLabel = mapsvg.append("svg:text")
.attr("x", 20)
.attr("y", 20)
.text("Click site for details");
sprLabel = mapsvg.append("svg:text")
.attr("x", 20)
.attr("y", 40)
.text("PS");
smLabel = mapsvg.append("svg:text")
.attr("x", 20)
.attr("y", 60)
.text("PSM");
map = mapsvg.append("svg:g").attr("class", "map")
.attr("transform", "translate(2,3)")
d3.json("romeland.json", function(collection) {
/*
map.append("path")
.datum(graticule)
.attr("class", "graticule")
.attr("d", path);
*/
embossed = map.selectAll("path.countries")
.data(collection.features)
.enter().append("svg:path")
.attr("d", path)
.attr("class", "countries")
.style("fill", "ghostwhite")
.style("stroke", "lightgray")
.style("stroke-width", 2)
;
sites = map.selectAll("g.sites")
.data(sitesdata)
.enter()
.append("svg:g")
.attr("class", "foreground")
.attr("transform", function(d) {return "translate(" + projection([d.xcoord,d.ycoord]) + ")";})
.style("cursor", "pointer")
.on("click", siteClick)
;
circleRamp=d3.scale.linear().domain([0,4,7,11,15,19,23]).range(["red","purple","orange","blue","steelblue","green","yellow"]);
sites.append("svg:circle")
.attr('r', function(d) {return (rankRamp(d.ES))})
.attr("class", "sites")
.style("fill", function(d) {return (circleRamp(d.EM))})
.style("stroke", "white")
.style("opacity", 0)
.transition()
.delay(300)
.duration(1000)
.style("opacity", .35)
;
baseRoads = map.selectAll("path.routes")
.data(pathdata)
.enter().append("svg:path")
.style("fill", "none")
.style("stroke", function(d) {return (pathRamp(d.month))})
.attr("d", path)
.attr("class", "routes")
.style("opacity", 0)
.transition()
.duration(1000)
.style("opacity", .2)
;
}
)
}
function siteClick(d,i) {
siteLabel.text(d.name);
sprLabel.text("Ranking - Economic: " + d.ES + " - Military: " + d.MS + " - Rapid: " + d.RS );
smLabel.text("Modules - Economic: " + d.EM + " - Military: " + d.MM + " - Rapid: " + d.RM );
}
</script>
</body>
</html>
Display the source blob
Display the rendered blob
Raw
{ "type": "FeatureCollection", "features": [
{"type": "Feature", "geometry": {"type":"MultiLineString","coordinates":[[[12.064,37.991],[12.06,37.97]],[[12.364,37.791],[12.264,37.891],[12.164,37.991],[12.064,37.991]],[[12.064,37.991],[12.064,38.091],[12.064,38.191],[12.064,38.291],[12.064,38.391],[12.064,38.491],[12.064,38.591],[12.064,38.691],[12.064,38.791],[12.064,38.891],[12.064,38.991],[12.064,39.091],[12.064,39.191],[12.064,39.291],[12.064,39.391],[12.064,39.491],[12.064,39.591],[12.064,39.691],[12.064,39.791],[12.064,39.891],[12.164,39.991],[12.264,40.091],[12.264,40.191],[12.264,40.291],[12.264,40.391],[12.264,40.491],[12.264,40.591],[12.264,40.691],[12.264,40.791],[12.264,40.891],[12.264,40.991],[12.264,41.091],[12.264,41.191],[12.264,41.291],[12.264,41.391],[12.264,41.491],[12.264,41.591],[12.264,41.691],[12.287,41.754]],[[12.474,41.89],[12.474,41.89],[12.475,41.888],[12.469,41.882],[12.468,41.877],[12.472,41.868],[12.47,41.863],[12.461,41.858],[12.46,41.855],[12.46,41.854],[12.462,41.85],[12.444,41.834],[12.435,41.829],[12.426,41.831],[12.421,41.828],[12.418,41.822],[12.416,41.818],[12.411,41.809],[12.405,41.805],[12.394,41.805],[12.386,41.802],[12.375,41.804],[12.37,41.805],[12.364,41.807],[12.36,41.806],[12.352,41.806],[12.343,41.809],[12.339,41.806],[12.337,41.799],[12.332,41.798],[12.323,41.799],[12.317,41.799],[12.309,41.8],[12.302,41.797],[12.295,41.791],[12.284,41.789],[12.278,41.782],[12.273,41.773],[12.274,41.771],[12.274,41.768],[12.275,41.764],[12.28,41.758],[12.271,41.753]],[[12.437,37.798],[12.364,37.791]],[[15.164,36.691],[15.064,36.591],[14.964,36.691],[14.864,36.691],[14.764,36.691],[14.664,36.691],[14.564,36.691],[14.464,36.791],[14.364,36.891],[14.264,36.991],[14.164,37.091],[14.064,37.091],[13.964,37.091],[13.864,37.091],[13.764,37.091],[13.664,37.191],[13.564,37.191],[13.464,37.291],[13.364,37.291],[13.264,37.391],[13.164,37.391],[13.064,37.491],[12.964,37.491],[12.864,37.491],[12.764,37.491],[12.664,37.491],[12.564,37.591],[12.464,37.691],[12.364,37.791]],[[15.137,36.681],[15.164,36.691]],[[22.464,36.391],[22.364,36.491],[22.264,36.591],[22.164,36.591],[22.064,36.591],[21.964,36.591],[21.864,36.591],[21.764,36.591],[21.664,36.591],[21.564,36.591],[21.464,36.591],[21.364,36.591],[21.264,36.591],[21.164,36.591],[21.064,36.591],[20.964,36.591],[20.864,36.591],[20.764,36.591],[20.664,36.591],[20.564,36.591],[20.464,36.591],[20.364,36.591],[20.264,36.591],[20.164,36.591],[20.064,36.591],[19.964,36.591],[19.864,36.691],[19.764,36.691],[19.664,36.691],[19.564,36.691],[19.464,36.691],[19.364,36.691],[19.264,36.691],[19.164,36.691],[19.064,36.691],[18.964,36.691],[18.864,36.691],[18.764,36.691],[18.664,36.691],[18.564,36.691],[18.464,36.691],[18.364,36.691],[18.264,36.691],[18.164,36.691],[18.064,36.691],[17.964,36.691],[17.864,36.691],[17.764,36.691],[17.664,36.691],[17.564,36.691],[17.464,36.691],[17.364,36.691],[17.264,36.691],[17.164,36.691],[17.064,36.691],[16.964,36.691],[16.864,36.691],[16.764,36.691],[16.664,36.691],[16.564,36.691],[16.464,36.691],[16.364,36.691],[16.264,36.691],[16.164,36.691],[16.064,36.691],[15.964,36.691],[15.864,36.691],[15.764,36.691],[15.664,36.691],[15.564,36.691],[15.464,36.691],[15.364,36.691],[15.264,36.691],[15.164,36.691]],[[23.164,36.391],[23.064,36.391],[22.964,36.391],[22.864,36.391],[22.764,36.391],[22.664,36.391],[22.564,36.391],[22.464,36.391]],[[22.464,36.391],[22.48,36.39]],[[23.164,37.891],[23.132,37.928]],[[23.2,36.44],[23.164,36.391]],[[23.164,37.891],[23.264,37.791],[23.364,37.691],[23.464,37.591],[23.564,37.491],[23.464,37.391],[23.364,37.291],[23.264,37.191],[23.164,37.091],[23.164,36.991],[23.164,36.891],[23.164,36.791],[23.164,36.691],[23.164,36.591],[23.164,36.491],[23.164,36.391]],[[25.264,37.391],[25.164,37.391],[25.064,37.391],[24.964,37.391],[24.864,37.491],[24.764,37.491],[24.664,37.491],[24.564,37.491],[24.464,37.491],[24.364,37.491],[24.264,37.591],[24.164,37.591],[24.064,37.591],[23.964,37.591],[23.864,37.691],[23.764,37.791],[23.664,37.791],[23.564,37.791],[23.464,37.791],[23.364,37.891],[23.264,37.891],[23.164,37.891]],[[27.164,37.891],[27.064,37.891],[26.964,37.891],[26.864,37.891],[26.764,37.891],[26.664,37.891],[26.564,37.891],[26.464,37.891],[26.364,37.891],[26.264,37.891],[26.164,37.891],[26.064,37.891],[25.964,37.891],[25.864,37.891],[25.764,37.891],[25.664,37.791],[25.564,37.691],[25.464,37.591],[25.364,37.491],[25.264,37.391]],[[25.27,37.4],[25.264,37.391]],[[26.664,40.391],[26.564,40.291],[26.364,40.091],[26.164,39.991]],[[26.2,40.01],[26.164,39.991]],[[26.164,39.991],[26.064,39.891],[25.964,39.791],[25.864,39.691],[25.764,39.591],[25.764,39.491],[25.764,39.391],[25.764,39.291],[25.764,39.191],[25.864,39.091],[25.964,38.991],[26.064,38.891],[26.164,38.791],[26.264,38.691],[26.264,38.591],[26.264,38.491],[26.264,38.391],[26.264,38.291],[26.364,38.191],[26.464,38.191],[26.564,38.091],[26.664,38.091],[26.764,38.091],[26.864,37.991],[26.964,37.991],[27.064,37.991],[27.164,37.891]],[[27.064,40.491],[26.964,40.491],[26.864,40.491],[26.764,40.491],[26.664,40.391]],[[26.664,40.391],[26.694,40.351]],[[27.964,40.991],[27.864,40.891],[27.764,40.891],[27.664,40.891],[27.564,40.891],[27.464,40.791],[27.364,40.691],[27.264,40.591],[27.164,40.591],[27.064,40.491]],[[27.069,40.42],[27.064,40.491]],[[27.164,37.891],[27.348,37.939]],[[27.964,40.991],[27.957,40.977]],[[28.985,41.018],[28.964,40.991],[28.864,40.891],[28.764,40.891],[28.664,40.891],[28.564,40.991],[28.464,40.991],[28.364,40.991],[28.264,40.991],[28.164,40.991],[28.064,40.991],[27.964,40.991]]]},"pair": 50129,"direction": 1,"month": 1,"priority": 1,"expense": 2.102,"duration": 21.952,"length": 2878.544},{"type": "Feature", "geometry": {"type":"MultiLineString","coordinates":[[[12.06,37.97],[12.064,37.991]],[[12.064,37.991],[12.164,37.991],[12.264,37.891],[12.364,37.791]],[[12.287,41.754],[12.264,41.691],[12.164,41.591],[12.064,41.491],[12.064,41.391],[12.064,41.291],[12.064,41.191],[12.064,41.091],[12.064,40.991],[12.064,40.891],[12.064,40.791],[12.064,40.691],[12.064,40.591],[12.064,40.491],[12.064,40.391],[12.064,40.291],[12.064,40.191],[12.064,40.091],[12.064,39.991],[12.064,39.891],[12.064,39.791],[12.064,39.691],[12.064,39.591],[12.064,39.491],[12.064,39.391],[12.064,39.291],[12.064,39.191],[12.064,39.091],[12.064,38.991],[12.064,38.891],[12.064,38.791],[12.064,38.691],[12.064,38.591],[12.064,38.491],[12.064,38.391],[12.064,38.291],[12.064,38.191],[12.064,38.091],[12.064,37.991]],[[12.474,41.89],[12.474,41.89],[12.475,41.888],[12.469,41.882],[12.468,41.877],[12.472,41.868],[12.47,41.863],[12.461,41.858],[12.46,41.855],[12.46,41.854],[12.462,41.85],[12.444,41.834],[12.435,41.829],[12.426,41.831],[12.421,41.828],[12.418,41.822],[12.416,41.818],[12.411,41.809],[12.405,41.805],[12.394,41.805],[12.386,41.802],[12.375,41.804],[12.37,41.805],[12.364,41.807],[12.36,41.806],[12.352,41.806],[12.343,41.809],[12.339,41.806],[12.337,41.799],[12.332,41.798],[12.323,41.799],[12.317,41.799],[12.309,41.8],[12.302,41.797],[12.295,41.791],[12.284,41.789],[12.278,41.782],[12.273,41.773],[12.274,41.771],[12.274,41.768],[12.275,41.764],[12.28,41.758],[12.271,41.753]],[[12.437,37.798],[12.364,37.791]],[[12.364,37.791],[12.464,37.691],[12.564,37.591],[12.664,37.491],[12.764,37.491],[12.864,37.491],[12.964,37.491],[13.064,37.491],[13.164,37.391],[13.264,37.391],[13.364,37.291],[13.464,37.291],[13.564,37.191],[13.664,37.191],[13.764,37.091],[13.864,37.091],[13.964,37.091],[14.064,37.091],[14.164,37.091],[14.264,36.991],[14.364,36.891],[14.464,36.791],[14.564,36.691],[14.664,36.691],[14.764,36.691],[14.864,36.691],[14.964,36.691],[15.064,36.591],[15.164,36.691]],[[15.164,36.691],[15.137,36.681]],[[15.164,36.691],[15.264,36.691],[15.364,36.691],[15.464,36.691],[15.564,36.691],[15.664,36.691],[15.764,36.691],[15.864,36.691],[15.964,36.691],[16.064,36.691],[16.164,36.691],[16.264,36.691],[16.364,36.691],[16.464,36.691],[16.564,36.691],[16.664,36.691],[16.764,36.691],[16.864,36.691],[16.964,36.691],[17.064,36.691],[17.164,36.691],[17.264,36.691],[17.364,36.691],[17.464,36.691],[17.564,36.691],[17.664,36.691],[17.764,36.691],[17.864,36.691],[17.964,36.691],[18.064,36.691],[18.164,36.691],[18.264,36.691],[18.364,36.691],[18.464,36.691],[18.564,36.691],[18.664,36.691],[18.764,36.691],[18.864,36.691],[18.964,36.691],[19.064,36.691],[19.164,36.691],[19.264,36.691],[19.364,36.691],[19.464,36.691],[19.564,36.691],[19.664,36.691],[19.764,36.691],[19.864,36.691],[19.964,36.691],[20.064,36.691],[20.164,36.691],[20.264,36.691],[20.364,36.691],[20.464,36.691],[20.564,36.691],[20.664,36.691],[20.764,36.691],[20.864,36.691],[20.964,36.691],[21.064,36.691],[21.164,36.691],[21.264,36.691],[21.364,36.691],[21.464,36.691],[21.564,36.691],[21.664,36.691],[21.764,36.691],[21.864,36.691],[21.964,36.691],[22.064,36.691],[22.164,36.691],[22.264,36.591],[22.364,36.491],[22.464,36.391]],[[22.464,36.391],[22.564,36.391],[22.664,36.391],[22.764,36.391],[22.864,36.391],[22.964,36.391],[23.064,36.391],[23.164,36.391]],[[22.48,36.39],[22.464,36.391]],[[23.164,37.891],[23.132,37.928]],[[23.2,36.44],[23.164,36.391]],[[23.164,36.391],[23.164,36.491],[23.164,36.591],[23.164,36.691],[23.164,36.791],[23.164,36.891],[23.164,36.991],[23.164,37.091],[23.264,37.191],[23.364,37.291],[23.464,37.391],[23.564,37.491],[23.464,37.591],[23.364,37.691],[23.264,37.791],[23.164,37.891]],[[23.164,37.891],[23.264,37.891],[23.364,37.891],[23.464,37.791],[23.564,37.791],[23.664,37.791],[23.764,37.791],[23.864,37.691],[23.964,37.591],[24.064,37.591],[24.164,37.591],[24.264,37.591],[24.364,37.491],[24.464,37.491],[24.564,37.491],[24.664,37.491],[24.764,37.491],[24.864,37.491],[24.964,37.491],[25.064,37.391],[25.164,37.391],[25.264,37.391]],[[25.264,37.391],[25.364,37.491],[25.464,37.591],[25.564,37.691],[25.664,37.791],[25.764,37.891],[25.864,37.891],[25.964,37.891],[26.064,37.891],[26.164,37.891],[26.264,37.891],[26.364,37.891],[26.464,37.891],[26.564,37.891],[26.664,37.891],[26.764,37.891],[26.864,37.891],[26.964,37.891],[27.064,37.891],[27.164,37.891]],[[25.27,37.4],[25.264,37.391]],[[26.164,39.991],[26.364,40.091],[26.564,40.291],[26.664,40.391]],[[26.2,40.01],[26.164,39.991]],[[27.164,37.891],[27.064,37.991],[26.964,37.991],[26.864,37.991],[26.764,38.091],[26.664,38.091],[26.564,38.091],[26.464,38.191],[26.364,38.191],[26.264,38.291],[26.264,38.391],[26.264,38.491],[26.264,38.591],[26.264,38.691],[26.164,38.791],[26.064,38.891],[25.964,38.991],[25.864,39.091],[25.764,39.191],[25.764,39.291],[25.864,39.391],[25.964,39.491],[25.964,39.591],[25.964,39.691],[25.964,39.791],[26.064,39.891],[26.164,39.991]],[[26.664,40.391],[26.764,40.491],[26.864,40.491],[26.964,40.491],[27.064,40.491]],[[26.664,40.391],[26.694,40.351]],[[27.064,40.491],[27.164,40.591],[27.264,40.591],[27.364,40.691],[27.464,40.791],[27.564,40.891],[27.664,40.891],[27.764,40.891],[27.864,40.891],[27.964,40.991]],[[27.069,40.42],[27.064,40.491]],[[27.164,37.891],[27.348,37.939]],[[27.964,40.991],[27.957,40.977]],[[27.964,40.991],[28.064,40.991],[28.164,40.991],[28.264,40.991],[28.364,40.991],[28.464,40.991],[28.564,40.991],[28.664,40.891],[28.764,40.891],[28.864,40.891],[28.964,40.991],[28.985,41.018]]]},"pair": 50129,"direction": 0,"month": 1,"priority": 1,"expense": 2.139,"duration": 20.856,"length": 2878.064},{"type": "Feature", "geometry": {"type":"MultiLineString","coordinates":[[[12.064,37.991],[12.06,37.97]],[[12.364,37.791],[12.264,37.891],[12.164,37.991],[12.064,37.991]],[[12.064,37.991],[12.064,38.091],[12.064,38.191],[12.064,38.291],[12.064,38.391],[12.064,38.491],[12.064,38.591],[12.064,38.691],[12.064,38.791],[12.064,38.891],[12.064,38.991],[12.064,39.091],[12.064,39.191],[12.064,39.291],[12.064,39.391],[12.064,39.491],[12.064,39.591],[12.064,39.691],[12.064,39.791],[12.064,39.891],[12.164,39.991],[12.264,40.091],[12.264,40.191],[12.264,40.291],[12.264,40.391],[12.264,40.491],[12.264,40.591],[12.264,40.691],[12.264,40.791],[12.264,40.891],[12.264,40.991],[12.264,41.091],[12.264,41.191],[12.264,41.291],[12.264,41.391],[12.264,41.491],[12.264,41.591],[12.264,41.691],[12.287,41.754]],[[12.474,41.89],[12.474,41.89],[12.475,41.888],[12.469,41.882],[12.468,41.877],[12.472,41.868],[12.47,41.863],[12.461,41.858],[12.46,41.855],[12.46,41.854],[12.462,41.85],[12.444,41.834],[12.435,41.829],[12.426,41.831],[12.421,41.828],[12.418,41.822],[12.416,41.818],[12.411,41.809],[12.405,41.805],[12.394,41.805],[12.386,41.802],[12.375,41.804],[12.37,41.805],[12.364,41.807],[12.36,41.806],[12.352,41.806],[12.343,41.809],[12.339,41.806],[12.337,41.799],[12.332,41.798],[12.323,41.799],[12.317,41.799],[12.309,41.8],[12.302,41.797],[12.295,41.791],[12.284,41.789],[12.278,41.782],[12.273,41.773],[12.274,41.771],[12.274,41.768],[12.275,41.764],[12.28,41.758],[12.271,41.753]],[[12.437,37.798],[12.364,37.791]],[[15.164,36.691],[15.064,36.591],[14.964,36.691],[14.864,36.691],[14.764,36.691],[14.664,36.691],[14.564,36.691],[14.464,36.791],[14.364,36.891],[14.264,36.991],[14.164,37.091],[14.064,37.091],[13.964,37.091],[13.864,37.091],[13.764,37.091],[13.664,37.191],[13.564,37.191],[13.464,37.291],[13.364,37.291],[13.264,37.391],[13.164,37.391],[13.064,37.491],[12.964,37.491],[12.864,37.491],[12.764,37.491],[12.664,37.491],[12.564,37.591],[12.464,37.691],[12.364,37.791]],[[15.137,36.681],[15.164,36.691]],[[22.464,36.391],[22.364,36.491],[22.264,36.591],[22.164,36.691],[22.064,36.691],[21.964,36.691],[21.864,36.691],[21.764,36.691],[21.664,36.691],[21.564,36.691],[21.464,36.691],[21.364,36.691],[21.264,36.691],[21.164,36.691],[21.064,36.691],[20.964,36.691],[20.864,36.691],[20.764,36.691],[20.664,36.691],[20.564,36.691],[20.464,36.691],[20.364,36.691],[20.264,36.691],[20.164,36.691],[20.064,36.691],[19.964,36.691],[19.864,36.691],[19.764,36.691],[19.664,36.691],[19.564,36.691],[19.464,36.691],[19.364,36.691],[19.264,36.691],[19.164,36.691],[19.064,36.691],[18.964,36.691],[18.864,36.691],[18.764,36.691],[18.664,36.691],[18.564,36.691],[18.464,36.691],[18.364,36.691],[18.264,36.691],[18.164,36.691],[18.064,36.691],[17.964,36.691],[17.864,36.691],[17.764,36.691],[17.664,36.691],[17.564,36.691],[17.464,36.691],[17.364,36.691],[17.264,36.691],[17.164,36.691],[17.064,36.691],[16.964,36.691],[16.864,36.691],[16.764,36.691],[16.664,36.691],[16.564,36.691],[16.464,36.691],[16.364,36.691],[16.264,36.691],[16.164,36.691],[16.064,36.691],[15.964,36.691],[15.864,36.691],[15.764,36.691],[15.664,36.691],[15.564,36.691],[15.464,36.691],[15.364,36.691],[15.264,36.691],[15.164,36.691]],[[23.164,36.391],[23.064,36.391],[22.964,36.391],[22.864,36.391],[22.764,36.391],[22.664,36.391],[22.564,36.391],[22.464,36.391]],[[22.464,36.391],[22.48,36.39]],[[23.164,37.891],[23.132,37.928]],[[23.2,36.44],[23.164,36.391]],[[23.164,37.891],[23.264,37.791],[23.364,37.691],[23.464,37.591],[23.564,37.491],[23.464,37.391],[23.364,37.291],[23.264,37.191],[23.164,37.091],[23.164,36.991],[23.164,36.891],[23.164,36.791],[23.164,36.691],[23.164,36.591],[23.164,36.491],[23.164,36.391]],[[25.264,37.391],[25.164,37.391],[25.064,37.391],[24.964,37.391],[24.864,37.491],[24.764,37.491],[24.664,37.491],[24.564,37.491],[24.464,37.491],[24.364,37.491],[24.264,37.591],[24.164,37.591],[24.064,37.591],[23.964,37.591],[23.864,37.691],[23.764,37.791],[23.664,37.791],[23.564,37.791],[23.464,37.791],[23.364,37.891],[23.264,37.891],[23.164,37.891]],[[27.164,37.891],[27.064,37.891],[26.964,37.891],[26.864,37.891],[26.764,37.891],[26.664,37.891],[26.564,37.891],[26.464,37.891],[26.364,37.891],[26.264,37.891],[26.164,37.891],[26.064,37.891],[25.964,37.891],[25.864,37.891],[25.764,37.891],[25.664,37.791],[25.564,37.691],[25.464,37.591],[25.364,37.491],[25.264,37.391]],[[25.27,37.4],[25.264,37.391]],[[26.664,40.391],[26.564,40.291],[26.364,40.091],[26.164,39.991]],[[26.2,40.01],[26.164,39.991]],[[26.164,39.991],[26.064,39.891],[25.964,39.791],[25.864,39.691],[25.764,39.591],[25.764,39.491],[25.764,39.391],[25.764,39.291],[25.764,39.191],[25.864,39.091],[25.964,38.991],[26.064,38.891],[26.164,38.791],[26.264,38.691],[26.264,38.591],[26.264,38.491],[26.264,38.391],[26.264,38.291],[26.364,38.191],[26.464,38.191],[26.564,38.091],[26.664,38.091],[26.764,38.091],[26.864,37.991],[26.964,37.991],[27.064,37.991],[27.164,37.891]],[[27.064,40.491],[26.964,40.491],[26.864,40.491],[26.764,40.491],[26.664,40.391]],[[26.664,40.391],[26.694,40.351]],[[27.964,40.991],[27.864,40.891],[27.764,40.891],[27.664,40.891],[27.564,40.891],[27.464,40.791],[27.364,40.691],[27.264,40.591],[27.164,40.591],[27.064,40.491]],[[27.069,40.42],[27.064,40.491]],[[27.164,37.891],[27.348,37.939]],[[27.964,40.991],[27.957,40.977]],[[28.985,41.018],[28.964,40.991],[28.864,40.891],[28.764,40.891],[28.664,40.891],[28.564,40.991],[28.464,40.991],[28.364,40.991],[28.264,40.991],[28.164,40.991],[28.064,40.991],[27.964,40.991]]]},"pair": 50129,"direction": 1,"month": 2,"priority": 1,"expense": 2.104,"duration": 21.971,"length": 2878.278},{"type": "Feature", "geometry": {"type":"MultiLineString","coordinates":[[[12.06,37.97],[12.064,37.991]],[[12.064,37.991],[12.164,37.991],[12.264,37.891],[12.364,37.791]],[[12.287,41.754],[12.264,41.691],[12.164,41.591],[12.064,41.491],[12.064,41.391],[12.064,41.291],[12.064,41.191],[12.064,41.091],[12.064,40.991],[12.064,40.891],[12.064,40.791],[12.064,40.691],[12.064,40.591],[12.064,40.491],[12.064,40.391],[12.064,40.291],[12.064,40.191],[12.064,40.091],[12.064,39.991],[12.064,39.891],[12.064,39.791],[12.064,39.691],[12.064,39.591],[12.064,39.491],[12.064,39.391],[12.064,39.291],[12.064,39.191],[12.064,39.091],[12.064,38.991],[12.064,38.891],[12.064,38.791],[12.064,38.691],[12.064,38.591],[12.064,38.491],[12.064,38.391],[12.064,38.291],[12.064,38.191],[12.064,38.091],[12.064,37.991]],[[12.474,41.89],[12.474,41.89],[12.475,41.888],[12.469,41.882],[12.468,41.877],[12.472,41.868],[12.47,41.863],[12.461,41.858],[12.46,41.855],[12.46,41.854],[12.462,41.85],[12.444,41.834],[12.435,41.829],[12.426,41.831],[12.421,41.828],[12.418,41.822],[12.416,41.818],[12.411,41.809],[12.405,41.805],[12.394,41.805],[12.386,41.802],[12.375,41.804],[12.37,41.805],[12.364,41.807],[12.36,41.806],[12.352,41.806],[12.343,41.809],[12.339,41.806],[12.337,41.799],[12.332,41.798],[12.323,41.799],[12.317,41.799],[12.309,41.8],[12.302,41.797],[12.295,41.791],[12.284,41.789],[12.278,41.782],[12.273,41.773],[12.274,41.771],[12.274,41.768],[12.275,41.764],[12.28,41.758],[12.271,41.753]],[[12.437,37.798],[12.364,37.791]],[[12.364,37.791],[12.464,37.691],[12.564,37.591],[12.664,37.491],[12.764,37.491],[12.864,37.491],[12.964,37.491],[13.064,37.491],[13.164,37.391],[13.264,37.391],[13.364,37.291],[13.464,37.291],[13.564,37.191],[13.664,37.191],[13.764,37.091],[13.864,37.091],[13.964,37.091],[14.064,37.091],[14.164,37.091],[14.264,36.991],[14.364,36.891],[14.464,36.791],[14.564,36.691],[14.664,36.691],[14.764,36.691],[14.864,36.691],[14.964,36.691],[15.064,36.591],[15.164,36.691]],[[15.164,36.691],[15.137,36.681]],[[15.164,36.691],[15.264,36.691],[15.364,36.691],[15.464,36.691],[15.564,36.691],[15.664,36.691],[15.764,36.691],[15.864,36.691],[15.964,36.691],[16.064,36.691],[16.164,36.691],[16.264,36.691],[16.364,36.691],[16.464,36.691],[16.564,36.691],[16.664,36.691],[16.764,36.691],[16.864,36.691],[16.964,36.691],[17.064,36.691],[17.164,36.691],[17.264,36.691],[17.364,36.691],[17.464,36.691],[17.564,36.691],[17.664,36.691],[17.764,36.691],[17.864,36.691],[17.964,36.691],[18.064,36.691],[18.164,36.691],[18.264,36.691],[18.364,36.691],[18.464,36.691],[18.564,36.691],[18.664,36.691],[18.764,36.691],[18.864,36.691],[18.964,36.691],[19.064,36.691],[19.164,36.691],[19.264,36.691],[19.364,36.691],[19.464,36.691],[19.564,36.691],[19.664,36.691],[19.764,36.691],[19.864,36.691],[19.964,36.691],[20.064,36.691],[20.164,36.691],[20.264,36.691],[20.364,36.691],[20.464,36.691],[20.564,36.691],[20.664,36.691],[20.764,36.691],[20.864,36.691],[20.964,36.691],[21.064,36.691],[21.164,36.691],[21.264,36.691],[21.364,36.691],[21.464,36.691],[21.564,36.691],[21.664,36.691],[21.764,36.691],[21.864,36.691],[21.964,36.691],[22.064,36.691],[22.164,36.691],[22.264,36.591],[22.364,36.491],[22.464,36.391]],[[22.464,36.391],[22.564,36.391],[22.664,36.391],[22.764,36.391],[22.864,36.391],[22.964,36.391],[23.064,36.391],[23.164,36.391]],[[22.48,36.39],[22.464,36.391]],[[23.164,37.891],[23.132,37.928]],[[23.2,36.44],[23.164,36.391]],[[23.164,36.391],[23.164,36.491],[23.164,36.591],[23.164,36.691],[23.164,36.791],[23.164,36.891],[23.164,36.991],[23.164,37.091],[23.264,37.191],[23.364,37.291],[23.464,37.391],[23.564,37.491],[23.464,37.591],[23.364,37.691],[23.264,37.791],[23.164,37.891]],[[23.164,37.891],[23.264,37.891],[23.364,37.891],[23.464,37.791],[23.564,37.791],[23.664,37.791],[23.764,37.791],[23.864,37.691],[23.964,37.591],[24.064,37.591],[24.164,37.591],[24.264,37.591],[24.364,37.491],[24.464,37.491],[24.564,37.491],[24.664,37.491],[24.764,37.491],[24.864,37.491],[24.964,37.491],[25.064,37.391],[25.164,37.391],[25.264,37.391]],[[25.264,37.391],[25.364,37.491],[25.464,37.591],[25.564,37.691],[25.664,37.791],[25.764,37.891],[25.864,37.891],[25.964,37.891],[26.064,37.891],[26.164,37.891],[26.264,37.891],[26.364,37.891],[26.464,37.891],[26.564,37.891],[26.664,37.891],[26.764,37.891],[26.864,37.891],[26.964,37.891],[27.064,37.891],[27.164,37.891]],[[25.27,37.4],[25.264,37.391]],[[26.164,39.991],[26.364,40.091],[26.564,40.291],[26.664,40.391]],[[26.2,40.01],[26.164,39.991]],[[27.164,37.891],[27.064,37.991],[26.964,37.991],[26.864,37.991],[26.764,38.091],[26.664,38.091],[26.564,38.091],[26.464,38.191],[26.364,38.191],[26.264,38.291],[26.264,38.391],[26.264,38.491],[26.264,38.591],[26.264,38.691],[26.164,38.791],[26.064,38.891],[25.964,38.991],[25.864,39.091],[25.764,39.191],[25.764,39.291],[25.864,39.391],[25.964,39.491],[25.964,39.591],[25.964,39.691],[25.964,39.791],[26.064,39.891],[26.164,39.991]],[[26.664,40.391],[26.764,40.491],[26.864,40.491],[26.964,40.491],[27.064,40.491]],[[26.664,40.391],[26.694,40.351]],[[27.064,40.491],[27.164,40.591],[27.264,40.591],[27.364,40.691],[27.464,40.791],[27.564,40.891],[27.664,40.891],[27.764,40.891],[27.864,40.891],[27.964,40.991]],[[27.069,40.42],[27.064,40.491]],[[27.164,37.891],[27.348,37.939]],[[27.964,40.991],[27.957,40.977]],[[27.964,40.991],[28.064,40.991],[28.164,40.991],[28.264,40.991],[28.364,40.991],[28.464,40.991],[28.564,40.991],[28.664,40.891],[28.764,40.891],[28.864,40.891],[28.964,40.991],[28.985,41.018]]]},"pair": 50129,"direction": 0,"month": 2,"priority": 1,"expense": 2.155,"duration": 21.013,"length": 2878.064},{"type": "Feature", "geometry": {"type":"MultiLineString","coordinates":[[[12.064,37.991],[12.06,37.97]],[[12.364,37.791],[12.264,37.891],[12.164,37.991],[12.064,37.991]],[[12.064,37.991],[12.064,38.091],[12.064,38.191],[12.064,38.291],[12.064,38.391],[12.064,38.491],[12.064,38.591],[12.064,38.691],[12.064,38.791],[12.064,38.891],[12.064,38.991],[12.064,39.091],[12.064,39.191],[12.064,39.291],[12.064,39.391],[12.064,39.491],[12.064,39.591],[12.064,39.691],[12.064,39.791],[12.064,39.891],[12.164,39.991],[12.264,40.091],[12.264,40.191],[12.264,40.291],[12.264,40.391],[12.264,40.491],[12.264,40.591],[12.264,40.691],[12.264,40.791],[12.264,40.891],[12.264,40.991],[12.264,41.091],[12.264,41.191],[12.264,41.291],[12.264,41.391],[12.264,41.491],[12.264,41.591],[12.264,41.691],[12.287,41.754]],[[12.474,41.89],[12.474,41.89],[12.475,41.888],[12.469,41.882],[12.468,41.877],[12.472,41.868],[12.47,41.863],[12.461,41.858],[12.46,41.855],[12.46,41.854],[12.462,41.85],[12.444,41.834],[12.435,41.829],[12.426,41.831],[12.421,41.828],[12.418,41.822],[12.416,41.818],[12.411,41.809],[12.405,41.805],[12.394,41.805],[12.386,41.802],[12.375,41.804],[12.37,41.805],[12.364,41.807],[12.36,41.806],[12.352,41.806],[12.343,41.809],[12.339,41.806],[12.337,41.799],[12.332,41.798],[12.323,41.799],[12.317,41.799],[12.309,41.8],[12.302,41.797],[12.295,41.791],[12.284,41.789],[12.278,41.782],[12.273,41.773],[12.274,41.771],[12.274,41.768],[12.275,41.764],[12.28,41.758],[12.271,41.753]],[[12.437,37.798],[12.364,37.791]],[[15.164,36.691],[15.064,36.591],[14.964,36.691],[14.864,36.691],[14.764,36.691],[14.664,36.691],[14.564,36.691],[14.464,36.791],[14.364,36.891],[14.264,36.991],[14.164,37.091],[14.064,37.091],[13.964,37.091],[13.864,37.091],[13.764,37.091],[13.664,37.191],[13.564,37.191],[13.464,37.291],[13.364,37.291],[13.264,37.391],[13.164,37.391],[13.064,37.491],[12.964,37.491],[12.864,37.491],[12.764,37.491],[12.664,37.491],[12.564,37.591],[12.464,37.691],[12.364,37.791]],[[15.137,36.681],[15.164,36.691]],[[22.464,36.391],[22.364,36.391],[22.264,36.391],[22.164,36.391],[22.064,36.391],[21.964,36.391],[21.864,36.391],[21.764,36.391],[21.664,36.391],[21.564,36.391],[21.464,36.391],[21.364,36.391],[21.264,36.391],[21.164,36.391],[21.064,36.391],[20.964,36.391],[20.864,36.391],[20.764,36.391],[20.664,36.391],[20.564,36.391],[20.464,36.391],[20.364,36.391],[20.264,36.391],[20.164,36.391],[20.064,36.391],[19.964,36.391],[19.864,36.491],[19.764,36.591],[19.664,36.691],[19.564,36.691],[19.464,36.691],[19.364,36.691],[19.264,36.691],[19.164,36.691],[19.064,36.691],[18.964,36.691],[18.864,36.691],[18.764,36.691],[18.664,36.691],[18.564,36.691],[18.464,36.691],[18.364,36.691],[18.264,36.691],[18.164,36.691],[18.064,36.691],[17.964,36.691],[17.864,36.691],[17.764,36.691],[17.664,36.691],[17.564,36.691],[17.464,36.691],[17.364,36.691],[17.264,36.691],[17.164,36.691],[17.064,36.691],[16.964,36.691],[16.864,36.691],[16.764,36.691],[16.664,36.691],[16.564,36.691],[16.464,36.691],[16.364,36.691],[16.264,36.691],[16.164,36.691],[16.064,36.691],[15.964,36.691],[15.864,36.691],[15.764,36.691],[15.664,36.691],[15.564,36.691],[15.464,36.691],[15.364,36.691],[15.264,36.691],[15.164,36.691]],[[23.164,36.391],[23.064,36.391],[22.964,36.391],[22.864,36.391],[22.764,36.391],[22.664,36.391],[22.564,36.391],[22.464,36.391]],[[22.464,36.391],[22.48,36.39]],[[23.164,37.891],[23.132,37.928]],[[23.2,36.44],[23.164,36.391]],[[23.164,37.891],[23.264,37.791],[23.364,37.691],[23.464,37.591],[23.564,37.491],[23.464,37.391],[23.364,37.291],[23.264,37.191],[23.164,37.091],[23.164,36.991],[23.164,36.891],[23.164,36.791],[23.164,36.691],[23.164,36.591],[23.164,36.491],[23.164,36.391]],[[25.264,37.391],[25.164,37.391],[25.064,37.391],[24.964,37.391],[24.864,37.491],[24.764,37.491],[24.664,37.491],[24.564,37.491],[24.464,37.491],[24.364,37.491],[24.264,37.591],[24.164,37.591],[24.064,37.591],[23.964,37.591],[23.864,37.691],[23.764,37.791],[23.664,37.791],[23.564,37.791],[23.464,37.791],[23.364,37.891],[23.264,37.891],[23.164,37.891]],[[27.164,37.891],[27.064,37.891],[26.964,37.891],[26.864,37.891],[26.764,37.891],[26.664,37.891],[26.564,37.891],[26.464,37.891],[26.364,37.891],[26.264,37.891],[26.164,37.891],[26.064,37.891],[25.964,37.891],[25.864,37.891],[25.764,37.891],[25.664,37.791],[25.564,37.691],[25.464,37.591],[25.364,37.491],[25.264,37.391]],[[25.27,37.4],[25.264,37.391]],[[26.664,40.391],[26.564,40.291],[26.364,40.091],[26.164,39.991]],[[26.2,40.01],[26.164,39.991]],[[26.164,39.991],[26.064,39.891],[25.964,39.791],[25.964,39.691],[25.964,39.591],[25.964,39.491],[25.964,39.391],[25.864,39.291],[25.764,39.191],[25.864,39.091],[25.964,38.991],[26.064,38.891],[26.164,38.791],[26.264,38.691],[26.264,38.591],[26.264,38.491],[26.264,38.391],[26.264,38.291],[26.364,38.191],[26.464,38.191],[26.564,38.091],[26.664,38.091],[26.764,38.091],[26.864,37.991],[26.964,37.991],[27.064,37.991],[27.164,37.891]],[[27.064,40.491],[26.964,40.491],[26.864,40.491],[26.764,40.491],[26.664,40.391]],[[26.664,40.391],[26.694,40.351]],[[27.964,40.991],[27.864,40.891],[27.764,40.891],[27.664,40.891],[27.564,40.891],[27.464,40.791],[27.364,40.691],[27.264,40.591],[27.164,40.591],[27.064,40.491]],[[27.069,40.42],[27.064,40.491]],[[27.164,37.891],[27.348,37.939]],[[27.964,40.991],[27.957,40.977]],[[28.985,41.018],[28.964,40.991],[28.864,40.891],[28.764,40.891],[28.664,40.891],[28.564,40.991],[28.464,40.991],[28.364,40.991],[28.264,40.991],[28.164,40.991],[28.064,40.991],[27.964,40.991]]]},"pair": 50129,"direction": 1,"month": 3,"priority": 1,"expense": 2.080,"duration": 21.728,"length": 2879.204},{"type": "Feature", "geometry": {"type":"MultiLineString","coordinates":[[[12.06,37.97],[12.064,37.991]],[[12.064,37.991],[12.164,37.991],[12.264,37.891],[12.364,37.791]],[[12.287,41.754],[12.264,41.691],[12.164,41.591],[12.064,41.491],[12.064,41.391],[12.064,41.291],[12.064,41.191],[12.064,41.091],[12.064,40.991],[12.064,40.891],[12.064,40.791],[12.064,40.691],[12.064,40.591],[12.064,40.491],[12.064,40.391],[12.064,40.291],[12.064,40.191],[12.064,40.091],[12.064,39.991],[12.064,39.891],[12.064,39.791],[12.064,39.691],[12.064,39.591],[12.064,39.491],[12.064,39.391],[12.064,39.291],[12.064,39.191],[12.064,39.091],[12.064,38.991],[12.064,38.891],[12.064,38.791],[12.064,38.691],[12.064,38.591],[12.064,38.491],[12.064,38.391],[12.064,38.291],[12.064,38.191],[12.064,38.091],[12.064,37.991]],[[12.474,41.89],[12.474,41.89],[12.475,41.888],[12.469,41.882],[12.468,41.877],[12.472,41.868],[12.47,41.863],[12.461,41.858],[12.46,41.855],[12.46,41.854],[12.462,41.85],[12.444,41.834],[12.435,41.829],[12.426,41.831],[12.421,41.828],[12.418,41.822],[12.416,41.818],[12.411,41.809],[12.405,41.805],[12.394,41.805],[12.386,41.802],[12.375,41.804],[12.37,41.805],[12.364,41.807],[12.36,41.806],[12.352,41.806],[12.343,41.809],[12.339,41.806],[12.337,41.799],[12.332,41.798],[12.323,41.799],[12.317,41.799],[12.309,41.8],[12.302,41.797],[12.295,41.791],[12.284,41.789],[12.278,41.782],[12.273,41.773],[12.274,41.771],[12.274,41.768],[12.275,41.764],[12.28,41.758],[12.271,41.753]],[[12.437,37.798],[12.364,37.791]],[[12.364,37.791],[12.464,37.691],[12.564,37.591],[12.664,37.491],[12.764,37.491],[12.864,37.491],[12.964,37.491],[13.064,37.491],[13.164,37.391],[13.264,37.391],[13.364,37.291],[13.464,37.291],[13.564,37.191],[13.664,37.191],[13.764,37.091],[13.864,37.091],[13.964,37.091],[14.064,37.091],[14.164,37.091],[14.264,36.991],[14.364,36.891],[14.464,36.791],[14.564,36.691],[14.664,36.691],[14.764,36.691],[14.864,36.691],[14.964,36.691],[15.064,36.591],[15.164,36.691]],[[15.164,36.691],[15.137,36.681]],[[15.164,36.691],[15.264,36.691],[15.364,36.691],[15.464,36.691],[15.564,36.691],[15.664,36.691],[15.764,36.691],[15.864,36.691],[15.964,36.691],[16.064,36.691],[16.164,36.691],[16.264,36.691],[16.364,36.691],[16.464,36.691],[16.564,36.691],[16.664,36.691],[16.764,36.691],[16.864,36.691],[16.964,36.691],[17.064,36.691],[17.164,36.691],[17.264,36.691],[17.364,36.691],[17.464,36.691],[17.564,36.691],[17.664,36.691],[17.764,36.691],[17.864,36.691],[17.964,36.691],[18.064,36.691],[18.164,36.691],[18.264,36.691],[18.364,36.691],[18.464,36.691],[18.564,36.691],[18.664,36.691],[18.764,36.691],[18.864,36.691],[18.964,36.691],[19.064,36.691],[19.164,36.691],[19.264,36.691],[19.364,36.691],[19.464,36.691],[19.564,36.691],[19.664,36.691],[19.764,36.691],[19.864,36.691],[19.964,36.691],[20.064,36.691],[20.164,36.691],[20.264,36.691],[20.364,36.691],[20.464,36.691],[20.564,36.691],[20.664,36.691],[20.764,36.691],[20.864,36.691],[20.964,36.691],[21.064,36.691],[21.164,36.691],[21.264,36.691],[21.364,36.691],[21.464,36.691],[21.564,36.691],[21.664,36.691],[21.764,36.691],[21.864,36.691],[21.964,36.691],[22.064,36.691],[22.164,36.691],[22.264,36.591],[22.364,36.491],[22.464,36.391]],[[22.464,36.391],[22.564,36.391],[22.664,36.391],[22.764,36.391],[22.864,36.391],[22.964,36.391],[23.064,36.391],[23.164,36.391]],[[22.48,36.39],[22.464,36.391]],[[23.164,37.891],[23.132,37.928]],[[23.2,36.44],[23.164,36.391]],[[23.164,36.391],[23.164,36.491],[23.164,36.591],[23.164,36.691],[23.164,36.791],[23.164,36.891],[23.164,36.991],[23.164,37.091],[23.264,37.191],[23.364,37.291],[23.464,37.391],[23.564,37.491],[23.464,37.591],[23.364,37.691],[23.264,37.791],[23.164,37.891]],[[23.164,37.891],[23.264,37.891],[23.364,37.891],[23.464,37.791],[23.564,37.791],[23.664,37.791],[23.764,37.791],[23.864,37.691],[23.964,37.591],[24.064,37.591],[24.164,37.591],[24.264,37.591],[24.364,37.491],[24.464,37.491],[24.564,37.491],[24.664,37.491],[24.764,37.491],[24.864,37.491],[24.964,37.491],[25.064,37.391],[25.164,37.391],[25.264,37.391]],[[25.264,37.391],[25.364,37.491],[25.464,37.591],[25.564,37.691],[25.664,37.791],[25.764,37.891],[25.864,37.891],[25.964,37.891],[26.064,37.891],[26.164,37.891],[26.264,37.891],[26.364,37.891],[26.464,37.891],[26.564,37.891],[26.664,37.891],[26.764,37.891],[26.864,37.891],[26.964,37.891],[27.064,37.891],[27.164,37.891]],[[25.27,37.4],[25.264,37.391]],[[26.164,39.991],[26.364,40.091],[26.564,40.291],[26.664,40.391]],[[26.2,40.01],[26.164,39.991]],[[27.164,37.891],[27.064,37.991],[26.964,37.991],[26.864,37.991],[26.764,38.091],[26.664,38.091],[26.564,38.091],[26.464,38.191],[26.364,38.191],[26.264,38.291],[26.264,38.391],[26.264,38.491],[26.264,38.591],[26.264,38.691],[26.164,38.791],[26.064,38.891],[25.964,38.991],[25.864,39.091],[25.764,39.191],[25.764,39.291],[25.864,39.391],[25.964,39.491],[25.964,39.591],[25.964,39.691],[25.964,39.791],[26.064,39.891],[26.164,39.991]],[[26.664,40.391],[26.764,40.491],[26.864,40.491],[26.964,40.491],[27.064,40.491]],[[26.664,40.391],[26.694,40.351]],[[27.064,40.491],[27.164,40.591],[27.264,40.591],[27.364,40.691],[27.464,40.791],[27.564,40.891],[27.664,40.891],[27.764,40.891],[27.864,40.891],[27.964,40.991]],[[27.069,40.42],[27.064,40.491]],[[27.164,37.891],[27.348,37.939]],[[27.964,40.991],[27.957,40.977]],[[27.964,40.991],[28.064,40.991],[28.164,40.991],[28.264,40.991],[28.364,40.991],[28.464,40.991],[28.564,40.991],[28.664,40.891],[28.764,40.891],[28.864,40.891],[28.964,40.991],[28.985,41.018]]]},"pair": 50129,"direction": 0,"month": 3,"priority": 1,"expense": 2.240,"duration": 21.867,"length": 2878.064},{"type": "Feature", "geometry": {"type":"MultiLineString","coordinates":[[[12.474,41.89],[12.474,41.89],[12.475,41.888],[12.469,41.882],[12.468,41.877],[12.472,41.868],[12.47,41.863],[12.461,41.858],[12.46,41.855],[12.46,41.854],[12.462,41.85],[12.444,41.834],[12.435,41.829],[12.426,41.831],[12.421,41.828],[12.418,41.822],[12.416,41.818],[12.411,41.809],[12.405,41.805],[12.394,41.805],[12.386,41.802],[12.375,41.804],[12.37,41.805],[12.364,41.807],[12.36,41.806],[12.352,41.806],[12.343,41.809],[12.339,41.806],[12.337,41.799],[12.332,41.798],[12.323,41.799],[12.317,41.799],[12.309,41.8],[12.302,41.797],[12.295,41.791],[12.284,41.789],[12.278,41.782],[12.273,41.773],[12.274,41.771],[12.274,41.768],[12.275,41.764],[12.28,41.758],[12.271,41.753]],[[14.864,40.191],[14.764,40.291],[14.664,40.391],[14.564,40.491],[14.464,40.591],[14.364,40.691],[14.264,40.791],[14.164,40.791],[14.064,40.791],[13.964,40.891],[13.864,40.991],[13.764,41.091],[13.664,41.191],[13.564,41.191],[13.464,41.191],[13.364,41.191],[13.264,41.191],[13.164,41.191],[13.064,41.191],[12.964,41.291],[12.864,41.391],[12.764,41.391],[12.664,41.391],[12.564,41.491],[12.464,41.491],[12.364,41.591],[12.264,41.691],[12.287,41.754]],[[14.932,40.255],[14.864,40.191]],[[15.564,38.091],[15.564,38.391],[15.564,38.491],[15.564,38.591],[15.564,38.691],[15.564,38.791],[15.564,38.891],[15.564,38.991],[15.564,39.091],[15.564,39.191],[15.564,39.291],[15.564,39.391],[15.564,39.491],[15.464,39.591],[15.364,39.691],[15.264,39.791],[15.164,39.891],[15.064,39.991],[14.964,40.091],[14.864,40.191]],[[15.557,38.192],[15.564,38.091]],[[15.564,38.091],[15.643,38.108]],[[21.264,37.691],[21.164,37.691],[21.064,37.691],[20.964,37.691],[20.864,37.691],[20.764,37.691],[20.664,37.691],[20.564,37.691],[20.464,37.691],[20.364,37.691],[20.264,37.691],[20.164,37.691],[20.064,37.691],[19.964,37.691],[19.864,37.791],[19.764,37.891],[19.664,37.891],[19.564,37.891],[19.464,37.891],[19.364,37.891],[19.264,37.891],[19.164,37.891],[19.064,37.891],[18.964,37.891],[18.864,37.891],[18.764,37.891],[18.664,37.891],[18.564,37.891],[18.464,37.891],[18.364,37.891],[18.264,37.891],[18.164,37.891],[18.064,37.891],[17.964,37.891],[17.864,37.891],[17.764,37.891],[17.664,37.891],[17.564,37.891],[17.464,37.891],[17.364,37.891],[17.264,37.891],[17.164,37.891],[17.064,37.891],[16.964,37.891],[16.864,37.891],[16.764,37.891],[16.664,37.891],[16.564,37.891],[16.464,37.891],[16.364,37.891],[16.264,37.891],[16.164,37.891],[16.064,37.891],[15.964,37.891],[15.864,37.891],[15.764,37.891],[15.664,37.891],[15.564,37.991],[15.564,38.091]],[[21.464,37.591],[21.364,37.591],[21.264,37.691]],[[21.264,37.691],[21.32,37.65]],[[21.464,37.591],[21.45,37.61]],[[21.864,36.691],[21.764,36.791],[21.664,36.891],[21.564,36.991],[21.564,37.091],[21.564,37.191],[21.564,37.291],[21.564,37.391],[21.564,37.491],[21.464,37.591]],[[22.464,36.391],[22.364,36.491],[22.264,36.591],[22.164,36.691],[22.064,36.691],[21.964,36.691],[21.864,36.691]],[[21.864,36.691],[21.88,36.72]],[[23.164,36.391],[23.064,36.391],[22.964,36.391],[22.864,36.391],[22.764,36.391],[22.664,36.391],[22.564,36.391],[22.464,36.391]],[[22.464,36.391],[22.48,36.39]],[[23.164,37.891],[23.132,37.928]],[[23.2,36.44],[23.164,36.391]],[[23.164,37.891],[23.264,37.791],[23.364,37.691],[23.464,37.591],[23.564,37.491],[23.464,37.391],[23.364,37.291],[23.264,37.191],[23.164,37.091],[23.164,36.991],[23.164,36.891],[23.164,36.791],[23.164,36.691],[23.164,36.591],[23.164,36.491],[23.164,36.391]],[[25.264,37.391],[25.164,37.491],[25.064,37.491],[24.964,37.491],[24.864,37.491],[24.764,37.491],[24.664,37.491],[24.564,37.491],[24.464,37.491],[24.364,37.491],[24.264,37.591],[24.164,37.591],[24.064,37.591],[23.964,37.591],[23.864,37.691],[23.764,37.791],[23.664,37.791],[23.564,37.791],[23.464,37.791],[23.364,37.891],[23.264,37.891],[23.164,37.891]],[[27.164,37.891],[27.064,37.891],[26.964,37.891],[26.864,37.891],[26.764,37.891],[26.664,37.891],[26.564,37.891],[26.464,37.891],[26.364,37.891],[26.264,37.891],[26.164,37.891],[26.064,37.891],[25.964,37.891],[25.864,37.891],[25.764,37.891],[25.664,37.791],[25.564,37.691],[25.464,37.591],[25.364,37.491],[25.264,37.391]],[[25.27,37.4],[25.264,37.391]],[[26.664,40.391],[26.564,40.291],[26.364,40.091],[26.164,39.991]],[[26.2,40.01],[26.164,39.991]],[[26.164,39.991],[26.064,39.891],[25.964,39.791],[25.964,39.691],[25.964,39.591],[25.964,39.491],[25.964,39.391],[25.864,39.291],[25.764,39.191],[25.864,39.091],[25.964,38.991],[26.064,38.891],[26.164,38.791],[26.264,38.691],[26.264,38.591],[26.264,38.491],[26.264,38.391],[26.264,38.291],[26.364,38.191],[26.464,38.191],[26.564,38.091],[26.664,38.091],[26.764,38.091],[26.864,37.991],[26.964,37.991],[27.064,37.991],[27.164,37.891]],[[27.064,40.491],[26.964,40.491],[26.864,40.491],[26.764,40.491],[26.664,40.391]],[[26.664,40.391],[26.694,40.351]],[[27.964,40.991],[27.864,40.891],[27.764,40.891],[27.664,40.891],[27.564,40.891],[27.464,40.791],[27.364,40.691],[27.264,40.591],[27.164,40.591],[27.064,40.491]],[[27.069,40.42],[27.064,40.491]],[[27.164,37.891],[27.348,37.939]],[[27.964,40.991],[27.957,40.977]],[[28.985,41.018],[28.964,40.991],[28.864,40.891],[28.764,40.891],[28.664,40.891],[28.564,40.991],[28.464,40.991],[28.364,40.991],[28.264,40.991],[28.164,40.991],[28.064,40.991],[27.964,40.991]]]},"pair": 50129,"direction": 1,"month": 4,"priority": 1,"expense": 2.071,"duration": 21.636,"length": 2784.744},{"type": "Feature", "geometry": {"type":"MultiLineString","coordinates":[[[12.474,41.89],[12.474,41.89],[12.475,41.888],[12.469,41.882],[12.468,41.877],[12.472,41.868],[12.47,41.863],[12.461,41.858],[12.46,41.855],[12.46,41.854],[12.462,41.85],[12.444,41.834],[12.435,41.829],[12.426,41.831],[12.421,41.828],[12.418,41.822],[12.416,41.818],[12.411,41.809],[12.405,41.805],[12.394,41.805],[12.386,41.802],[12.375,41.804],[12.37,41.805],[12.364,41.807],[12.36,41.806],[12.352,41.806],[12.343,41.809],[12.339,41.806],[12.337,41.799],[12.332,41.798],[12.323,41.799],[12.317,41.799],[12.309,41.8],[12.302,41.797],[12.295,41.791],[12.284,41.789],[12.278,41.782],[12.273,41.773],[12.274,41.771],[12.274,41.768],[12.275,41.764],[12.28,41.758],[12.271,41.753]],[[12.287,41.754],[12.264,41.691],[12.364,41.591],[12.464,41.491],[12.564,41.391],[12.664,41.291],[12.764,41.191],[12.864,41.191],[12.964,41.091],[13.064,40.991],[13.164,40.991],[13.264,40.891],[13.364,40.891],[13.464,40.791],[13.564,40.791],[13.664,40.691],[13.764,40.591],[13.864,40.591],[13.964,40.491],[14.064,40.491],[14.164,40.391],[14.264,40.391],[14.364,40.291],[14.464,40.191],[14.564,40.191],[14.664,40.191],[14.764,40.191],[14.864,40.191]],[[14.932,40.255],[14.864,40.191]],[[14.864,40.191],[14.864,40.091],[14.864,39.991],[14.964,39.891],[14.964,39.791],[14.964,39.691],[14.964,39.591],[14.964,39.491],[14.964,39.391],[14.964,39.291],[14.964,39.191],[14.964,39.091],[14.964,38.991],[15.064,38.891],[15.164,38.791],[15.264,38.691],[15.364,38.591],[15.464,38.491],[15.564,38.391],[15.564,38.091]],[[15.557,38.192],[15.564,38.091]],[[15.564,38.091],[15.643,38.108]],[[15.564,38.091],[15.564,37.991],[15.664,37.891],[15.764,37.891],[15.864,37.891],[15.964,37.891],[16.064,37.891],[16.164,37.891],[16.264,37.891],[16.364,37.891],[16.464,37.891],[16.564,37.891],[16.664,37.891],[16.764,37.891],[16.864,37.891],[16.964,37.891],[17.064,37.891],[17.164,37.891],[17.264,37.891],[17.364,37.891],[17.464,37.891],[17.564,37.891],[17.664,37.891],[17.764,37.891],[17.864,37.891],[17.964,37.891],[18.064,37.891],[18.164,37.891],[18.264,37.891],[18.364,37.891],[18.464,37.891],[18.564,37.891],[18.664,37.891],[18.764,37.891],[18.864,37.891],[18.964,37.891],[19.064,37.891],[19.164,37.891],[19.264,37.891],[19.364,37.891],[19.464,37.891],[19.564,37.891],[19.664,37.891],[19.764,37.891],[19.864,37.891],[19.964,37.891],[20.064,37.891],[20.164,37.891],[20.264,37.891],[20.364,37.891],[20.464,37.891],[20.564,37.791],[20.664,37.691],[20.764,37.691],[20.864,37.691],[20.964,37.691],[21.064,37.691],[21.164,37.691],[21.264,37.691]],[[21.264,37.691],[21.364,37.591],[21.464,37.591]],[[21.32,37.65],[21.264,37.691]],[[21.45,37.61],[21.464,37.591]],[[21.464,37.591],[21.564,37.491],[21.564,37.391],[21.564,37.291],[21.564,37.191],[21.564,37.091],[21.564,36.991],[21.664,36.891],[21.764,36.791],[21.864,36.691]],[[21.864,36.691],[21.964,36.691],[22.064,36.691],[22.164,36.691],[22.264,36.591],[22.364,36.491],[22.464,36.391]],[[21.88,36.72],[21.864,36.691]],[[22.464,36.391],[22.564,36.391],[22.664,36.391],[22.764,36.391],[22.864,36.391],[22.964,36.391],[23.064,36.391],[23.164,36.391]],[[22.48,36.39],[22.464,36.391]],[[23.164,37.891],[23.132,37.928]],[[23.2,36.44],[23.164,36.391]],[[23.164,36.391],[23.164,36.491],[23.164,36.591],[23.164,36.691],[23.164,36.791],[23.164,36.891],[23.164,36.991],[23.164,37.091],[23.264,37.191],[23.364,37.291],[23.464,37.391],[23.564,37.491],[23.464,37.591],[23.364,37.691],[23.264,37.791],[23.164,37.891]],[[23.164,37.891],[23.264,37.891],[23.364,37.891],[23.464,37.791],[23.564,37.791],[23.664,37.791],[23.764,37.791],[23.864,37.691],[23.964,37.591],[24.064,37.591],[24.164,37.591],[24.264,37.591],[24.364,37.491],[24.464,37.491],[24.564,37.491],[24.664,37.491],[24.764,37.491],[24.864,37.491],[24.964,37.491],[25.064,37.391],[25.164,37.391],[25.264,37.391]],[[25.264,37.391],[25.364,37.491],[25.464,37.591],[25.564,37.691],[25.664,37.791],[25.764,37.891],[25.864,37.891],[25.964,37.891],[26.064,37.891],[26.164,37.891],[26.264,37.891],[26.364,37.891],[26.464,37.891],[26.564,37.891],[26.664,37.891],[26.764,37.891],[26.864,37.891],[26.964,37.891],[27.064,37.891],[27.164,37.891]],[[25.27,37.4],[25.264,37.391]],[[26.164,39.991],[26.364,40.091],[26.564,40.291],[26.664,40.391]],[[26.2,40.01],[26.164,39.991]],[[27.164,37.891],[27.064,37.991],[26.964,37.991],[26.864,37.991],[26.764,38.091],[26.664,38.091],[26.564,38.091],[26.464,38.191],[26.364,38.191],[26.264,38.291],[26.264,38.391],[26.264,38.491],[26.264,38.591],[26.264,38.691],[26.164,38.791],[26.064,38.891],[25.964,38.991],[25.864,39.091],[25.764,39.191],[25.764,39.291],[25.864,39.391],[25.964,39.491],[25.964,39.591],[25.964,39.691],[25.964,39.791],[26.064,39.891],[26.164,39.991]],[[26.664,40.391],[26.764,40.491],[26.864,40.491],[26.964,40.491],[27.064,40.491]],[[26.664,40.391],[26.694,40.351]],[[27.064,40.491],[27.164,40.591],[27.264,40.591],[27.364,40.691],[27.464,40.791],[27.564,40.891],[27.664,40.891],[27.764,40.891],[27.864,40.891],[27.964,40.991]],[[27.069,40.42],[27.064,40.491]],[[27.164,37.891],[27.348,37.939]],[[27.964,40.991],[27.957,40.977]],[[27.964,40.991],[28.064,40.991],[28.164,40.991],[28.264,40.991],[28.364,40.991],[28.464,40.991],[28.564,40.991],[28.664,40.891],[28.764,40.891],[28.864,40.891],[28.964,40.991],[28.985,41.018]]]},"pair": 50129,"direction": 0,"month": 4,"priority": 1,"expense": 2.388,"duration": 23.351,"length": 2785.972},{"type": "Feature", "geometry": {"type":"MultiLineString","coordinates":[[[12.474,41.89],[12.474,41.89],[12.475,41.888],[12.469,41.882],[12.468,41.877],[12.472,41.868],[12.47,41.863],[12.461,41.858],[12.46,41.855],[12.46,41.854],[12.462,41.85],[12.444,41.834],[12.435,41.829],[12.426,41.831],[12.421,41.828],[12.418,41.822],[12.416,41.818],[12.411,41.809],[12.405,41.805],[12.394,41.805],[12.386,41.802],[12.375,41.804],[12.37,41.805],[12.364,41.807],[12.36,41.806],[12.352,41.806],[12.343,41.809],[12.339,41.806],[12.337,41.799],[12.332,41.798],[12.323,41.799],[12.317,41.799],[12.309,41.8],[12.302,41.797],[12.295,41.791],[12.284,41.789],[12.278,41.782],[12.273,41.773],[12.274,41.771],[12.274,41.768],[12.275,41.764],[12.28,41.758],[12.271,41.753]],[[14.864,40.191],[14.764,40.291],[14.664,40.391],[14.564,40.491],[14.464,40.591],[14.364,40.691],[14.264,40.791],[14.164,40.791],[14.064,40.791],[13.964,40.891],[13.864,40.991],[13.764,41.091],[13.664,41.191],[13.564,41.191],[13.464,41.191],[13.364,41.191],[13.264,41.191],[13.164,41.191],[13.064,41.191],[12.964,41.291],[12.864,41.391],[12.764,41.391],[12.664,41.391],[12.564,41.491],[12.464,41.591],[12.364,41.591],[12.264,41.691],[12.287,41.754]],[[14.932,40.255],[14.864,40.191]],[[15.564,38.091],[15.564,38.391],[15.464,38.491],[15.364,38.591],[15.264,38.691],[15.164,38.791],[15.064,38.891],[14.964,38.991],[14.964,39.091],[14.964,39.191],[14.964,39.291],[14.964,39.391],[14.964,39.491],[14.964,39.591],[14.964,39.691],[14.964,39.791],[14.964,39.891],[14.964,39.991],[14.964,40.091],[14.864,40.191]],[[15.557,38.192],[15.564,38.091]],[[15.564,38.091],[15.643,38.108]],[[21.264,37.691],[21.164,37.691],[21.064,37.691],[20.964,37.691],[20.864,37.691],[20.764,37.691],[20.664,37.691],[20.564,37.691],[20.464,37.691],[20.364,37.691],[20.264,37.691],[20.164,37.691],[20.064,37.691],[19.964,37.691],[19.864,37.791],[19.764,37.891],[19.664,37.891],[19.564,37.891],[19.464,37.891],[19.364,37.891],[19.264,37.891],[19.164,37.891],[19.064,37.891],[18.964,37.891],[18.864,37.891],[18.764,37.891],[18.664,37.891],[18.564,37.891],[18.464,37.891],[18.364,37.891],[18.264,37.891],[18.164,37.891],[18.064,37.891],[17.964,37.891],[17.864,37.891],[17.764,37.891],[17.664,37.891],[17.564,37.891],[17.464,37.891],[17.364,37.891],[17.264,37.891],[17.164,37.891],[17.064,37.891],[16.964,37.891],[16.864,37.891],[16.764,37.891],[16.664,37.891],[16.564,37.891],[16.464,37.891],[16.364,37.891],[16.264,37.891],[16.164,37.891],[16.064,37.891],[15.964,37.891],[15.864,37.891],[15.764,37.891],[15.664,37.891],[15.564,37.991],[15.564,38.091]],[[21.464,37.591],[21.364,37.591],[21.264,37.691]],[[21.264,37.691],[21.32,37.65]],[[21.464,37.591],[21.45,37.61]],[[21.864,36.691],[21.764,36.791],[21.664,36.891],[21.564,36.991],[21.564,37.091],[21.564,37.191],[21.564,37.291],[21.564,37.391],[21.564,37.491],[21.464,37.591]],[[22.464,36.391],[22.364,36.491],[22.264,36.591],[22.164,36.691],[22.064,36.691],[21.964,36.691],[21.864,36.691]],[[21.864,36.691],[21.88,36.72]],[[23.164,36.391],[23.064,36.391],[22.964,36.391],[22.864,36.391],[22.764,36.391],[22.664,36.391],[22.564,36.391],[22.464,36.391]],[[22.464,36.391],[22.48,36.39]],[[23.164,37.891],[23.132,37.928]],[[23.2,36.44],[23.164,36.391]],[[23.164,37.891],[23.264,37.791],[23.364,37.691],[23.464,37.591],[23.564,37.491],[23.464,37.391],[23.364,37.291],[23.264,37.191],[23.164,37.091],[23.164,36.991],[23.164,36.891],[23.164,36.791],[23.164,36.691],[23.164,36.591],[23.164,36.491],[23.164,36.391]],[[25.264,37.391],[25.164,37.391],[25.064,37.391],[24.964,37.391],[24.864,37.491],[24.764,37.491],[24.664,37.491],[24.564,37.491],[24.464,37.491],[24.364,37.491],[24.264,37.591],[24.164,37.591],[24.064,37.591],[23.964,37.591],[23.864,37.691],[23.764,37.791],[23.664,37.791],[23.564,37.791],[23.464,37.791],[23.364,37.891],[23.264,37.891],[23.164,37.891]],[[27.164,37.891],[27.064,37.891],[26.964,37.891],[26.864,37.891],[26.764,37.891],[26.664,37.891],[26.564,37.891],[26.464,37.891],[26.364,37.891],[26.264,37.891],[26.164,37.891],[26.064,37.891],[25.964,37.891],[25.864,37.891],[25.764,37.891],[25.664,37.791],[25.564,37.691],[25.464,37.591],[25.364,37.491],[25.264,37.391]],[[25.27,37.4],[25.264,37.391]],[[26.664,40.391],[26.564,40.291],[26.364,40.091],[26.164,39.991]],[[26.2,40.01],[26.164,39.991]],[[26.164,39.991],[26.064,39.891],[25.964,39.791],[25.864,39.691],[25.764,39.591],[25.764,39.491],[25.764,39.391],[25.764,39.291],[25.764,39.191],[25.864,39.091],[25.964,38.991],[26.064,38.891],[26.164,38.791],[26.264,38.691],[26.264,38.591],[26.264,38.491],[26.264,38.391],[26.264,38.291],[26.364,38.191],[26.464,38.191],[26.564,38.091],[26.664,38.091],[26.764,38.091],[26.864,37.991],[26.964,37.991],[27.064,37.991],[27.164,37.891]],[[27.064,40.491],[26.964,40.491],[26.864,40.491],[26.764,40.491],[26.664,40.391]],[[26.664,40.391],[26.694,40.351]],[[27.964,40.991],[27.864,40.891],[27.764,40.891],[27.664,40.891],[27.564,40.891],[27.464,40.791],[27.364,40.691],[27.264,40.591],[27.164,40.591],[27.064,40.491]],[[27.069,40.42],[27.064,40.491]],[[27.164,37.891],[27.348,37.939]],[[27.964,40.991],[27.957,40.977]],[[28.985,41.018],[28.964,40.991],[28.864,40.891],[28.764,40.891],[28.664,40.891],[28.564,40.991],[28.464,40.991],[28.364,40.991],[28.264,40.991],[28.164,40.991],[28.064,40.991],[27.964,40.991]]]},"pair": 50129,"direction": 1,"month": 5,"priority": 1,"expense": 2.132,"duration": 22.266,"length": 2785.204},{"type": "Feature", "geometry": {"type":"MultiLineString","coordinates":[[[12.474,41.89],[12.474,41.89],[12.475,41.888],[12.469,41.882],[12.468,41.877],[12.472,41.868],[12.47,41.863],[12.461,41.858],[12.46,41.855],[12.46,41.854],[12.462,41.85],[12.444,41.834],[12.435,41.829],[12.426,41.831],[12.421,41.828],[12.418,41.822],[12.416,41.818],[12.411,41.809],[12.405,41.805],[12.394,41.805],[12.386,41.802],[12.375,41.804],[12.37,41.805],[12.364,41.807],[12.36,41.806],[12.352,41.806],[12.343,41.809],[12.339,41.806],[12.337,41.799],[12.332,41.798],[12.323,41.799],[12.317,41.799],[12.309,41.8],[12.302,41.797],[12.295,41.791],[12.284,41.789],[12.278,41.782],[12.273,41.773],[12.274,41.771],[12.274,41.768],[12.275,41.764],[12.28,41.758],[12.271,41.753]],[[12.287,41.754],[12.264,41.691],[12.364,41.591],[12.464,41.591],[12.564,41.491],[12.664,41.391],[12.764,41.391],[12.864,41.391],[12.964,41.291],[13.064,41.191],[13.164,41.191],[13.264,41.191],[13.364,41.191],[13.464,41.191],[13.564,41.191],[13.664,41.191],[13.764,41.091],[13.864,40.991],[13.964,40.891],[14.064,40.791],[14.164,40.791],[14.264,40.791],[14.364,40.691],[14.464,40.591],[14.564,40.491],[14.664,40.391],[14.764,40.291],[14.864,40.191]],[[14.932,40.255],[14.864,40.191]],[[14.864,40.191],[14.964,40.091],[14.964,39.991],[14.964,39.891],[14.964,39.791],[14.964,39.691],[14.964,39.591],[14.964,39.491],[14.964,39.391],[14.964,39.291],[14.964,39.191],[14.964,39.091],[14.964,38.991],[15.064,38.891],[15.164,38.791],[15.264,38.691],[15.364,38.591],[15.464,38.491],[15.564,38.391],[15.564,38.091]],[[15.557,38.192],[15.564,38.091]],[[15.564,38.091],[15.643,38.108]],[[15.564,38.091],[15.564,37.991],[15.664,37.891],[15.764,37.891],[15.864,37.891],[15.964,37.891],[16.064,37.891],[16.164,37.891],[16.264,37.891],[16.364,37.891],[16.464,37.891],[16.564,37.891],[16.664,37.891],[16.764,37.891],[16.864,37.891],[16.964,37.891],[17.064,37.891],[17.164,37.891],[17.264,37.891],[17.364,37.891],[17.464,37.891],[17.564,37.891],[17.664,37.891],[17.764,37.891],[17.864,37.891],[17.964,37.891],[18.064,37.891],[18.164,37.891],[18.264,37.891],[18.364,37.891],[18.464,37.891],[18.564,37.891],[18.664,37.891],[18.764,37.891],[18.864,37.891],[18.964,37.891],[19.064,37.891],[19.164,37.891],[19.264,37.891],[19.364,37.891],[19.464,37.891],[19.564,37.891],[19.664,37.891],[19.764,37.891],[19.864,37.891],[19.964,37.891],[20.064,37.891],[20.164,37.891],[20.264,37.891],[20.364,37.891],[20.464,37.891],[20.564,37.791],[20.664,37.691],[20.764,37.691],[20.864,37.691],[20.964,37.691],[21.064,37.691],[21.164,37.691],[21.264,37.691]],[[21.264,37.691],[21.364,37.591],[21.464,37.591]],[[21.32,37.65],[21.264,37.691]],[[21.45,37.61],[21.464,37.591]],[[21.464,37.591],[21.564,37.491],[21.564,37.391],[21.564,37.291],[21.564,37.191],[21.564,37.091],[21.564,36.991],[21.664,36.891],[21.764,36.791],[21.864,36.691]],[[21.864,36.691],[21.964,36.691],[22.064,36.691],[22.164,36.691],[22.264,36.591],[22.364,36.491],[22.464,36.391]],[[21.88,36.72],[21.864,36.691]],[[22.464,36.391],[22.564,36.391],[22.664,36.391],[22.764,36.391],[22.864,36.391],[22.964,36.391],[23.064,36.391],[23.164,36.391]],[[22.48,36.39],[22.464,36.391]],[[23.164,37.891],[23.132,37.928]],[[23.2,36.44],[23.164,36.391]],[[23.164,36.391],[23.164,36.491],[23.164,36.591],[23.164,36.691],[23.164,36.791],[23.164,36.891],[23.164,36.991],[23.164,37.091],[23.264,37.191],[23.364,37.291],[23.464,37.391],[23.564,37.491],[23.464,37.591],[23.364,37.691],[23.264,37.791],[23.164,37.891]],[[23.164,37.891],[23.264,37.891],[23.364,37.891],[23.464,37.791],[23.564,37.791],[23.664,37.791],[23.764,37.791],[23.864,37.691],[23.964,37.591],[24.064,37.591],[24.164,37.591],[24.264,37.591],[24.364,37.491],[24.464,37.491],[24.564,37.491],[24.664,37.491],[24.764,37.491],[24.864,37.491],[24.964,37.491],[25.064,37.491],[25.164,37.491],[25.264,37.391]],[[25.264,37.391],[25.364,37.491],[25.464,37.591],[25.564,37.691],[25.664,37.791],[25.764,37.891],[25.864,37.891],[25.964,37.891],[26.064,37.891],[26.164,37.891],[26.264,37.891],[26.364,37.891],[26.464,37.891],[26.564,37.891],[26.664,37.891],[26.764,37.891],[26.864,37.891],[26.964,37.891],[27.064,37.891],[27.164,37.891]],[[25.27,37.4],[25.264,37.391]],[[26.164,39.991],[26.364,40.091],[26.564,40.291],[26.664,40.391]],[[26.2,40.01],[26.164,39.991]],[[27.164,37.891],[27.064,37.991],[26.964,37.991],[26.864,37.991],[26.764,38.091],[26.664,38.091],[26.564,38.091],[26.464,38.191],[26.364,38.191],[26.264,38.291],[26.264,38.391],[26.264,38.491],[26.264,38.591],[26.264,38.691],[26.164,38.791],[26.064,38.891],[25.964,38.991],[25.864,39.091],[25.764,39.191],[25.764,39.291],[25.864,39.391],[25.964,39.491],[25.964,39.591],[25.964,39.691],[25.964,39.791],[26.064,39.891],[26.164,39.991]],[[26.664,40.391],[26.764,40.491],[26.864,40.491],[26.964,40.491],[27.064,40.491]],[[26.664,40.391],[26.694,40.351]],[[27.064,40.491],[27.164,40.591],[27.264,40.591],[27.364,40.691],[27.464,40.791],[27.564,40.891],[27.664,40.891],[27.764,40.891],[27.864,40.891],[27.964,40.991]],[[27.069,40.42],[27.064,40.491]],[[27.164,37.891],[27.348,37.939]],[[27.964,40.991],[27.957,40.977]],[[27.964,40.991],[28.064,40.991],[28.164,40.991],[28.264,40.991],[28.364,40.991],[28.464,40.991],[28.564,40.991],[28.664,40.891],[28.764,40.891],[28.864,40.891],[28.964,40.991],[28.985,41.018]]]},"pair": 50129,"direction": 0,"month": 5,"priority": 1,"expense": 2.451,"duration": 23.996,"length": 2785.047},{"type": "Feature", "geometry": {"type":"MultiLineString","coordinates":[[[12.474,41.89],[12.474,41.89],[12.475,41.888],[12.469,41.882],[12.468,41.877],[12.472,41.868],[12.47,41.863],[12.461,41.858],[12.46,41.855],[12.46,41.854],[12.462,41.85],[12.444,41.834],[12.435,41.829],[12.426,41.831],[12.421,41.828],[12.418,41.822],[12.416,41.818],[12.411,41.809],[12.405,41.805],[12.394,41.805],[12.386,41.802],[12.375,41.804],[12.37,41.805],[12.364,41.807],[12.36,41.806],[12.352,41.806],[12.343,41.809],[12.339,41.806],[12.337,41.799],[12.332,41.798],[12.323,41.799],[12.317,41.799],[12.309,41.8],[12.302,41.797],[12.295,41.791],[12.284,41.789],[12.278,41.782],[12.273,41.773],[12.274,41.771],[12.274,41.768],[12.275,41.764],[12.28,41.758],[12.271,41.753]],[[14.864,40.191],[14.764,40.291],[14.664,40.391],[14.564,40.491],[14.464,40.591],[14.364,40.691],[14.264,40.791],[14.164,40.791],[14.064,40.791],[13.964,40.891],[13.864,40.991],[13.764,41.091],[13.664,41.191],[13.564,41.191],[13.464,41.191],[13.364,41.191],[13.264,41.191],[13.164,41.191],[13.064,41.191],[12.964,41.291],[12.864,41.391],[12.764,41.391],[12.664,41.391],[12.564,41.491],[12.464,41.491],[12.364,41.591],[12.264,41.691],[12.287,41.754]],[[14.932,40.255],[14.864,40.191]],[[15.564,38.091],[15.564,38.391],[15.464,38.491],[15.364,38.591],[15.264,38.691],[15.164,38.791],[15.064,38.891],[14.964,38.991],[14.964,39.091],[14.964,39.191],[14.964,39.291],[14.964,39.391],[14.964,39.491],[14.964,39.591],[14.964,39.691],[14.964,39.791],[14.964,39.891],[14.964,39.991],[14.964,40.091],[14.864,40.191]],[[15.557,38.192],[15.564,38.091]],[[15.564,38.091],[15.643,38.108]],[[21.264,37.691],[21.164,37.691],[21.064,37.691],[20.964,37.691],[20.864,37.691],[20.764,37.691],[20.664,37.691],[20.564,37.691],[20.464,37.691],[20.364,37.691],[20.264,37.691],[20.164,37.691],[20.064,37.691],[19.964,37.691],[19.864,37.791],[19.764,37.891],[19.664,37.891],[19.564,37.891],[19.464,37.891],[19.364,37.891],[19.264,37.891],[19.164,37.891],[19.064,37.891],[18.964,37.891],[18.864,37.891],[18.764,37.891],[18.664,37.891],[18.564,37.891],[18.464,37.891],[18.364,37.891],[18.264,37.891],[18.164,37.891],[18.064,37.891],[17.964,37.891],[17.864,37.891],[17.764,37.891],[17.664,37.891],[17.564,37.891],[17.464,37.891],[17.364,37.891],[17.264,37.891],[17.164,37.891],[17.064,37.891],[16.964,37.891],[16.864,37.891],[16.764,37.891],[16.664,37.891],[16.564,37.891],[16.464,37.891],[16.364,37.891],[16.264,37.891],[16.164,37.891],[16.064,37.891],[15.964,37.891],[15.864,37.891],[15.764,37.891],[15.664,37.891],[15.564,37.991],[15.564,38.091]],[[21.464,37.591],[21.364,37.591],[21.264,37.691]],[[21.264,37.691],[21.32,37.65]],[[21.464,37.591],[21.45,37.61]],[[21.864,36.691],[21.764,36.791],[21.664,36.891],[21.564,36.991],[21.564,37.091],[21.564,37.191],[21.564,37.291],[21.564,37.391],[21.564,37.491],[21.464,37.591]],[[22.464,36.391],[22.364,36.491],[22.264,36.591],[22.164,36.691],[22.064,36.691],[21.964,36.691],[21.864,36.691]],[[21.864,36.691],[21.88,36.72]],[[23.164,36.391],[23.064,36.391],[22.964,36.391],[22.864,36.391],[22.764,36.391],[22.664,36.391],[22.564,36.391],[22.464,36.391]],[[22.464,36.391],[22.48,36.39]],[[23.164,37.891],[23.132,37.928]],[[23.2,36.44],[23.164,36.391]],[[23.164,37.891],[23.264,37.791],[23.364,37.691],[23.464,37.591],[23.564,37.491],[23.464,37.391],[23.364,37.291],[23.264,37.191],[23.164,37.091],[23.164,36.991],[23.164,36.891],[23.164,36.791],[23.164,36.691],[23.164,36.591],[23.164,36.491],[23.164,36.391]],[[25.264,37.391],[25.164,37.491],[25.064,37.491],[24.964,37.491],[24.864,37.491],[24.764,37.491],[24.664,37.491],[24.564,37.491],[24.464,37.491],[24.364,37.491],[24.264,37.591],[24.164,37.591],[24.064,37.591],[23.964,37.591],[23.864,37.691],[23.764,37.791],[23.664,37.791],[23.564,37.791],[23.464,37.791],[23.364,37.891],[23.264,37.891],[23.164,37.891]],[[27.164,37.891],[27.064,37.891],[26.964,37.891],[26.864,37.891],[26.764,37.891],[26.664,37.891],[26.564,37.891],[26.464,37.891],[26.364,37.891],[26.264,37.891],[26.164,37.891],[26.064,37.891],[25.964,37.891],[25.864,37.891],[25.764,37.891],[25.664,37.791],[25.564,37.691],[25.464,37.591],[25.364,37.491],[25.264,37.391]],[[25.27,37.4],[25.264,37.391]],[[26.664,40.391],[26.564,40.291],[26.364,40.091],[26.164,39.991]],[[26.2,40.01],[26.164,39.991]],[[26.164,39.991],[26.064,39.891],[25.964,39.791],[25.864,39.691],[25.764,39.591],[25.764,39.491],[25.764,39.391],[25.764,39.291],[25.764,39.191],[25.864,39.091],[25.964,38.991],[26.064,38.891],[26.164,38.791],[26.264,38.691],[26.264,38.591],[26.264,38.491],[26.264,38.391],[26.264,38.291],[26.364,38.191],[26.464,38.191],[26.564,38.091],[26.664,38.091],[26.764,38.091],[26.864,37.991],[26.964,37.991],[27.064,37.991],[27.164,37.891]],[[27.064,40.491],[26.964,40.491],[26.864,40.491],[26.764,40.491],[26.664,40.391]],[[26.664,40.391],[26.694,40.351]],[[27.964,40.991],[27.864,40.891],[27.764,40.891],[27.664,40.891],[27.564,40.891],[27.464,40.791],[27.364,40.691],[27.264,40.591],[27.164,40.591],[27.064,40.491]],[[27.069,40.42],[27.064,40.491]],[[27.164,37.891],[27.348,37.939]],[[27.964,40.991],[27.957,40.977]],[[28.985,41.018],[28.964,40.991],[28.864,40.891],[28.764,40.891],[28.664,40.891],[28.564,40.991],[28.464,40.991],[28.364,40.991],[28.264,40.991],[28.164,40.991],[28.064,40.991],[27.964,40.991]]]},"pair": 50129,"direction": 1,"month": 6,"priority": 1,"expense": 2.133,"duration": 22.268,"length": 2785.182},{"type": "Feature", "geometry": {"type":"MultiLineString","coordinates":[[[12.474,41.89],[12.474,41.89],[12.475,41.888],[12.469,41.882],[12.468,41.877],[12.472,41.868],[12.47,41.863],[12.461,41.858],[12.46,41.855],[12.46,41.854],[12.462,41.85],[12.444,41.834],[12.435,41.829],[12.426,41.831],[12.421,41.828],[12.418,41.822],[12.416,41.818],[12.411,41.809],[12.405,41.805],[12.394,41.805],[12.386,41.802],[12.375,41.804],[12.37,41.805],[12.364,41.807],[12.36,41.806],[12.352,41.806],[12.343,41.809],[12.339,41.806],[12.337,41.799],[12.332,41.798],[12.323,41.799],[12.317,41.799],[12.309,41.8],[12.302,41.797],[12.295,41.791],[12.284,41.789],[12.278,41.782],[12.273,41.773],[12.274,41.771],[12.274,41.768],[12.275,41.764],[12.28,41.758],[12.271,41.753]],[[12.287,41.754],[12.264,41.691],[12.364,41.591],[12.464,41.491],[12.564,41.391],[12.664,41.291],[12.764,41.191],[12.864,41.191],[12.964,41.091],[13.064,40.991],[13.164,40.991],[13.264,40.891],[13.364,40.891],[13.464,40.791],[13.564,40.791],[13.664,40.691],[13.764,40.591],[13.864,40.591],[13.964,40.491],[14.064,40.491],[14.164,40.391],[14.264,40.391],[14.364,40.291],[14.464,40.191],[14.564,40.191],[14.664,40.191],[14.764,40.191],[14.864,40.191]],[[14.932,40.255],[14.864,40.191]],[[14.864,40.191],[14.964,40.091],[14.964,39.991],[14.964,39.891],[14.964,39.791],[14.964,39.691],[14.964,39.591],[14.964,39.491],[14.964,39.391],[14.964,39.291],[14.964,39.191],[14.964,39.091],[14.964,38.991],[15.064,38.891],[15.164,38.791],[15.264,38.691],[15.364,38.591],[15.464,38.491],[15.564,38.391],[15.564,38.091]],[[15.557,38.192],[15.564,38.091]],[[15.564,38.091],[15.643,38.108]],[[15.564,38.091],[15.564,37.991],[15.664,37.891],[15.764,37.891],[15.864,37.891],[15.964,37.891],[16.064,37.891],[16.164,37.891],[16.264,37.891],[16.364,37.891],[16.464,37.891],[16.564,37.891],[16.664,37.891],[16.764,37.891],[16.864,37.891],[16.964,37.891],[17.064,37.891],[17.164,37.891],[17.264,37.891],[17.364,37.891],[17.464,37.891],[17.564,37.891],[17.664,37.891],[17.764,37.891],[17.864,37.891],[17.964,37.891],[18.064,37.891],[18.164,37.891],[18.264,37.891],[18.364,37.891],[18.464,37.891],[18.564,37.891],[18.664,37.891],[18.764,37.891],[18.864,37.891],[18.964,37.891],[19.064,37.891],[19.164,37.891],[19.264,37.891],[19.364,37.891],[19.464,37.891],[19.564,37.891],[19.664,37.891],[19.764,37.891],[19.864,37.891],[19.964,37.891],[20.064,37.891],[20.164,37.891],[20.264,37.891],[20.364,37.891],[20.464,37.891],[20.564,37.791],[20.664,37.691],[20.764,37.691],[20.864,37.691],[20.964,37.691],[21.064,37.691],[21.164,37.691],[21.264,37.691]],[[21.264,37.691],[21.364,37.591],[21.464,37.591]],[[21.32,37.65],[21.264,37.691]],[[21.45,37.61],[21.464,37.591]],[[21.464,37.591],[21.564,37.491],[21.564,37.391],[21.564,37.291],[21.564,37.191],[21.564,37.091],[21.564,36.991],[21.664,36.891],[21.764,36.791],[21.864,36.691]],[[21.864,36.691],[21.964,36.691],[22.064,36.691],[22.164,36.691],[22.264,36.591],[22.364,36.491],[22.464,36.391]],[[21.88,36.72],[21.864,36.691]],[[22.464,36.391],[22.564,36.391],[22.664,36.391],[22.764,36.391],[22.864,36.391],[22.964,36.391],[23.064,36.391],[23.164,36.391]],[[22.48,36.39],[22.464,36.391]],[[23.164,37.891],[23.132,37.928]],[[23.2,36.44],[23.164,36.391]],[[23.164,36.391],[23.164,36.491],[23.164,36.591],[23.164,36.691],[23.164,36.791],[23.164,36.891],[23.164,36.991],[23.164,37.091],[23.264,37.191],[23.364,37.291],[23.464,37.391],[23.564,37.491],[23.464,37.591],[23.364,37.691],[23.264,37.791],[23.164,37.891]],[[23.164,37.891],[23.264,37.891],[23.364,37.891],[23.464,37.791],[23.564,37.791],[23.664,37.791],[23.764,37.791],[23.864,37.691],[23.964,37.591],[24.064,37.591],[24.164,37.591],[24.264,37.591],[24.364,37.491],[24.464,37.491],[24.564,37.491],[24.664,37.491],[24.764,37.491],[24.864,37.491],[24.964,37.491],[25.064,37.491],[25.164,37.491],[25.264,37.391]],[[25.264,37.391],[25.364,37.491],[25.464,37.591],[25.564,37.691],[25.664,37.791],[25.764,37.891],[25.864,37.891],[25.964,37.891],[26.064,37.891],[26.164,37.891],[26.264,37.891],[26.364,37.891],[26.464,37.891],[26.564,37.891],[26.664,37.891],[26.764,37.891],[26.864,37.891],[26.964,37.891],[27.064,37.891],[27.164,37.891]],[[25.27,37.4],[25.264,37.391]],[[26.164,39.991],[26.364,40.091],[26.564,40.291],[26.664,40.391]],[[26.2,40.01],[26.164,39.991]],[[27.164,37.891],[27.064,37.991],[26.964,37.991],[26.864,37.991],[26.764,38.091],[26.664,38.091],[26.564,38.091],[26.464,38.191],[26.364,38.191],[26.264,38.291],[26.264,38.391],[26.264,38.491],[26.264,38.591],[26.264,38.691],[26.364,38.791],[26.464,38.891],[26.564,38.991],[26.664,39.091],[26.664,39.191],[26.564,39.291],[26.464,39.391],[26.364,39.391],[26.264,39.391],[26.164,39.391],[26.064,39.491],[26.064,39.591],[26.064,39.691],[25.964,39.791],[25.964,39.891],[25.964,39.991],[26.064,39.991],[26.164,39.991]],[[26.664,40.391],[26.764,40.491],[26.864,40.491],[26.964,40.491],[27.064,40.491]],[[26.664,40.391],[26.694,40.351]],[[27.064,40.491],[27.064,40.591],[27.164,40.591],[27.264,40.591],[27.364,40.591],[27.364,40.691],[27.464,40.691],[27.464,40.791],[27.464,40.891],[27.564,40.891],[27.664,40.891],[27.764,40.891],[27.864,40.891],[27.964,40.891],[27.964,40.991]],[[27.069,40.42],[27.064,40.491]],[[27.164,37.891],[27.348,37.939]],[[27.964,40.991],[27.957,40.977]],[[27.964,40.991],[28.064,40.991],[28.164,40.991],[28.264,40.991],[28.364,40.991],[28.464,40.991],[28.564,40.991],[28.664,40.891],[28.764,40.891],[28.864,40.891],[28.964,40.891],[28.964,40.991],[28.985,41.018]]]},"pair": 50129,"direction": 0,"month": 6,"priority": 1,"expense": 2.466,"duration": 24.119,"length": 2859.549},{"type": "Feature", "geometry": {"type":"MultiLineString","coordinates":[[[12.474,41.89],[12.474,41.89],[12.475,41.888],[12.469,41.882],[12.468,41.877],[12.472,41.868],[12.47,41.863],[12.461,41.858],[12.46,41.855],[12.46,41.854],[12.462,41.85],[12.444,41.834],[12.435,41.829],[12.426,41.831],[12.421,41.828],[12.418,41.822],[12.416,41.818],[12.411,41.809],[12.405,41.805],[12.394,41.805],[12.386,41.802],[12.375,41.804],[12.37,41.805],[12.364,41.807],[12.36,41.806],[12.352,41.806],[12.343,41.809],[12.339,41.806],[12.337,41.799],[12.332,41.798],[12.323,41.799],[12.317,41.799],[12.309,41.8],[12.302,41.797],[12.295,41.791],[12.284,41.789],[12.278,41.782],[12.273,41.773],[12.274,41.771],[12.274,41.768],[12.275,41.764],[12.28,41.758],[12.271,41.753]],[[14.864,40.191],[14.764,40.291],[14.664,40.391],[14.564,40.491],[14.464,40.591],[14.364,40.691],[14.264,40.791],[14.164,40.791],[14.064,40.791],[13.964,40.891],[13.864,40.991],[13.764,41.091],[13.664,41.191],[13.564,41.191],[13.464,41.191],[13.364,41.191],[13.264,41.191],[13.164,41.191],[13.064,41.191],[12.964,41.291],[12.864,41.391],[12.764,41.391],[12.664,41.391],[12.564,41.491],[12.464,41.591],[12.364,41.591],[12.264,41.691],[12.287,41.754]],[[14.932,40.255],[14.864,40.191]],[[15.564,38.091],[15.564,38.391],[15.464,38.491],[15.364,38.591],[15.264,38.691],[15.164,38.791],[15.064,38.891],[14.964,38.991],[14.964,39.091],[14.964,39.191],[14.964,39.291],[14.964,39.391],[14.964,39.491],[14.964,39.591],[14.964,39.691],[14.964,39.791],[14.964,39.891],[14.964,39.991],[14.964,40.091],[14.864,40.191]],[[15.557,38.192],[15.564,38.091]],[[15.564,38.091],[15.643,38.108]],[[21.264,37.691],[21.164,37.691],[21.064,37.691],[20.964,37.691],[20.864,37.691],[20.764,37.691],[20.664,37.691],[20.564,37.691],[20.464,37.691],[20.364,37.691],[20.264,37.691],[20.164,37.691],[20.064,37.691],[19.964,37.691],[19.864,37.791],[19.764,37.891],[19.664,37.891],[19.564,37.891],[19.464,37.891],[19.364,37.891],[19.264,37.891],[19.164,37.891],[19.064,37.891],[18.964,37.891],[18.864,37.891],[18.764,37.891],[18.664,37.891],[18.564,37.891],[18.464,37.891],[18.364,37.891],[18.264,37.891],[18.164,37.891],[18.064,37.891],[17.964,37.891],[17.864,37.891],[17.764,37.891],[17.664,37.891],[17.564,37.891],[17.464,37.891],[17.364,37.891],[17.264,37.891],[17.164,37.891],[17.064,37.891],[16.964,37.891],[16.864,37.891],[16.764,37.891],[16.664,37.891],[16.564,37.891],[16.464,37.891],[16.364,37.891],[16.264,37.891],[16.164,37.891],[16.064,37.891],[15.964,37.891],[15.864,37.891],[15.764,37.891],[15.664,37.891],[15.564,37.991],[15.564,38.091]],[[21.464,37.591],[21.364,37.591],[21.264,37.691]],[[21.264,37.691],[21.32,37.65]],[[21.464,37.591],[21.45,37.61]],[[21.864,36.691],[21.764,36.791],[21.664,36.891],[21.564,36.991],[21.564,37.091],[21.564,37.191],[21.564,37.291],[21.564,37.391],[21.564,37.491],[21.464,37.591]],[[22.464,36.391],[22.364,36.491],[22.264,36.591],[22.164,36.691],[22.064,36.691],[21.964,36.691],[21.864,36.691]],[[21.864,36.691],[21.88,36.72]],[[23.164,36.391],[23.064,36.391],[22.964,36.391],[22.864,36.391],[22.764,36.391],[22.664,36.391],[22.564,36.391],[22.464,36.391]],[[22.464,36.391],[22.48,36.39]],[[23.164,37.891],[23.132,37.928]],[[23.2,36.44],[23.164,36.391]],[[23.164,37.891],[23.264,37.791],[23.364,37.691],[23.464,37.591],[23.564,37.491],[23.464,37.391],[23.364,37.291],[23.264,37.191],[23.164,37.091],[23.164,36.991],[23.164,36.891],[23.164,36.791],[23.164,36.691],[23.164,36.591],[23.164,36.491],[23.164,36.391]],[[25.264,37.391],[25.164,37.491],[25.064,37.491],[24.964,37.491],[24.864,37.491],[24.764,37.491],[24.664,37.491],[24.564,37.491],[24.464,37.491],[24.364,37.491],[24.264,37.591],[24.164,37.591],[24.064,37.591],[23.964,37.591],[23.864,37.691],[23.764,37.791],[23.664,37.791],[23.564,37.791],[23.464,37.791],[23.364,37.891],[23.264,37.891],[23.164,37.891]],[[27.164,37.891],[27.064,37.891],[26.964,37.891],[26.864,37.891],[26.764,37.891],[26.664,37.891],[26.564,37.891],[26.464,37.891],[26.364,37.891],[26.264,37.891],[26.164,37.891],[26.064,37.891],[25.964,37.891],[25.864,37.891],[25.764,37.891],[25.664,37.791],[25.564,37.691],[25.464,37.591],[25.364,37.491],[25.264,37.391]],[[25.27,37.4],[25.264,37.391]],[[26.664,40.391],[26.564,40.291],[26.364,40.091],[26.164,39.991]],[[26.2,40.01],[26.164,39.991]],[[26.164,39.991],[26.064,39.891],[25.964,39.791],[25.864,39.691],[25.764,39.591],[25.764,39.491],[25.764,39.391],[25.764,39.291],[25.764,39.191],[25.864,39.091],[25.964,38.991],[26.064,38.891],[26.164,38.791],[26.264,38.691],[26.264,38.591],[26.264,38.491],[26.264,38.391],[26.264,38.291],[26.364,38.191],[26.464,38.191],[26.564,38.091],[26.664,38.091],[26.764,38.091],[26.864,37.991],[26.964,37.991],[27.064,37.991],[27.164,37.891]],[[27.064,40.491],[26.964,40.491],[26.864,40.491],[26.764,40.491],[26.664,40.391]],[[26.664,40.391],[26.694,40.351]],[[27.964,40.991],[27.864,40.891],[27.764,40.891],[27.664,40.891],[27.564,40.891],[27.464,40.791],[27.364,40.691],[27.264,40.591],[27.164,40.591],[27.064,40.491]],[[27.069,40.42],[27.064,40.491]],[[27.164,37.891],[27.348,37.939]],[[27.964,40.991],[27.957,40.977]],[[28.985,41.018],[28.964,40.991],[28.864,40.891],[28.764,40.891],[28.664,40.891],[28.564,40.991],[28.464,40.991],[28.364,40.991],[28.264,40.991],[28.164,40.991],[28.064,40.991],[27.964,40.991]]]},"pair": 50129,"direction": 1,"month": 7,"priority": 1,"expense": 2.269,"duration": 23.627,"length": 2785.169},{"type": "Feature", "geometry": {"type":"MultiLineString","coordinates":[[[12.474,41.89],[12.474,41.89],[12.475,41.888],[12.469,41.882],[12.468,41.877],[12.472,41.868],[12.47,41.863],[12.461,41.858],[12.46,41.855],[12.46,41.854],[12.462,41.85],[12.444,41.834],[12.435,41.829],[12.426,41.831],[12.421,41.828],[12.418,41.822],[12.416,41.818],[12.411,41.809],[12.405,41.805],[12.394,41.805],[12.386,41.802],[12.375,41.804],[12.37,41.805],[12.364,41.807],[12.36,41.806],[12.352,41.806],[12.343,41.809],[12.339,41.806],[12.337,41.799],[12.332,41.798],[12.323,41.799],[12.317,41.799],[12.309,41.8],[12.302,41.797],[12.295,41.791],[12.284,41.789],[12.278,41.782],[12.273,41.773],[12.274,41.771],[12.274,41.768],[12.275,41.764],[12.28,41.758],[12.271,41.753]],[[12.287,41.754],[12.264,41.691],[12.364,41.591],[12.464,41.591],[12.564,41.491],[12.664,41.391],[12.764,41.391],[12.864,41.391],[12.964,41.291],[13.064,41.191],[13.164,41.191],[13.264,41.191],[13.364,41.191],[13.464,41.191],[13.564,41.191],[13.664,41.191],[13.764,41.091],[13.864,40.991],[13.964,40.891],[14.064,40.791],[14.164,40.791],[14.264,40.791],[14.364,40.691],[14.464,40.591],[14.564,40.491],[14.664,40.391],[14.764,40.291],[14.864,40.191]],[[14.932,40.255],[14.864,40.191]],[[14.864,40.191],[14.964,40.091],[14.964,39.991],[14.964,39.891],[14.964,39.791],[14.964,39.691],[14.964,39.591],[14.964,39.491],[14.964,39.391],[14.964,39.291],[14.964,39.191],[14.964,39.091],[14.964,38.991],[15.064,38.891],[15.164,38.791],[15.264,38.691],[15.364,38.591],[15.464,38.491],[15.564,38.391],[15.564,38.091]],[[15.557,38.192],[15.564,38.091]],[[15.564,38.091],[15.643,38.108]],[[15.564,38.091],[15.564,37.991],[15.664,37.891],[15.764,37.891],[15.864,37.891],[15.964,37.891],[16.064,37.891],[16.164,37.891],[16.264,37.891],[16.364,37.891],[16.464,37.891],[16.564,37.891],[16.664,37.891],[16.764,37.891],[16.864,37.891],[16.964,37.891],[17.064,37.891],[17.164,37.891],[17.264,37.891],[17.364,37.891],[17.464,37.891],[17.564,37.891],[17.664,37.891],[17.764,37.891],[17.864,37.891],[17.964,37.891],[18.064,37.891],[18.164,37.891],[18.264,37.891],[18.364,37.891],[18.464,37.891],[18.564,37.891],[18.664,37.891],[18.764,37.891],[18.864,37.891],[18.964,37.891],[19.064,37.891],[19.164,37.891],[19.264,37.891],[19.364,37.891],[19.464,37.891],[19.564,37.891],[19.664,37.891],[19.764,37.891],[19.864,37.891],[19.964,37.891],[20.064,37.891],[20.164,37.891],[20.264,37.891],[20.364,37.891],[20.464,37.891],[20.564,37.791],[20.664,37.691],[20.764,37.691],[20.864,37.691],[20.964,37.691],[21.064,37.691],[21.164,37.691],[21.264,37.691]],[[21.264,37.691],[21.364,37.591],[21.464,37.591]],[[21.32,37.65],[21.264,37.691]],[[21.45,37.61],[21.464,37.591]],[[21.464,37.591],[21.564,37.491],[21.564,37.391],[21.564,37.291],[21.564,37.191],[21.564,37.091],[21.564,36.991],[21.664,36.891],[21.764,36.791],[21.864,36.691]],[[21.864,36.691],[21.964,36.691],[22.064,36.691],[22.164,36.691],[22.264,36.591],[22.364,36.491],[22.464,36.391]],[[21.88,36.72],[21.864,36.691]],[[22.464,36.391],[22.564,36.391],[22.664,36.391],[22.764,36.391],[22.864,36.391],[22.964,36.391],[23.064,36.391],[23.164,36.391]],[[22.48,36.39],[22.464,36.391]],[[23.164,37.891],[23.132,37.928]],[[23.2,36.44],[23.164,36.391]],[[23.164,36.391],[23.164,36.491],[23.164,36.591],[23.164,36.691],[23.164,36.791],[23.164,36.891],[23.164,36.991],[23.164,37.091],[23.264,37.191],[23.364,37.291],[23.464,37.391],[23.564,37.491],[23.464,37.591],[23.364,37.691],[23.264,37.791],[23.164,37.891]],[[23.164,37.891],[23.264,37.891],[23.364,37.891],[23.464,37.791],[23.564,37.791],[23.664,37.791],[23.764,37.791],[23.864,37.691],[23.964,37.591],[24.064,37.591],[24.164,37.591],[24.264,37.591],[24.364,37.491],[24.464,37.491],[24.564,37.491],[24.664,37.491],[24.764,37.491],[24.864,37.491],[24.964,37.491],[25.064,37.491],[25.164,37.491],[25.264,37.391]],[[25.264,37.391],[25.364,37.491],[25.464,37.591],[25.564,37.691],[25.664,37.791],[25.764,37.891],[25.864,37.891],[25.964,37.891],[26.064,37.891],[26.164,37.891],[26.264,37.891],[26.364,37.891],[26.464,37.891],[26.564,37.891],[26.664,37.891],[26.764,37.891],[26.864,37.891],[26.964,37.891],[27.064,37.891],[27.164,37.891]],[[25.27,37.4],[25.264,37.391]],[[26.164,39.991],[26.364,40.091],[26.564,40.291],[26.664,40.391]],[[26.2,40.01],[26.164,39.991]],[[27.164,37.891],[27.064,37.991],[26.964,37.991],[26.864,37.991],[26.764,38.091],[26.664,38.091],[26.564,38.091],[26.464,38.191],[26.364,38.191],[26.264,38.291],[26.264,38.391],[26.264,38.491],[26.264,38.591],[26.264,38.691],[26.364,38.791],[26.464,38.891],[26.564,38.991],[26.664,39.091],[26.664,39.191],[26.664,39.291],[26.564,39.391],[26.464,39.391],[26.364,39.391],[26.264,39.391],[26.164,39.391],[26.064,39.491],[26.064,39.591],[26.064,39.691],[25.964,39.791],[25.964,39.891],[25.964,39.991],[26.064,39.991],[26.164,39.991]],[[26.664,40.391],[26.764,40.491],[26.864,40.491],[26.964,40.491],[27.064,40.491]],[[26.664,40.391],[26.694,40.351]],[[27.064,40.491],[27.064,40.591],[27.164,40.591],[27.264,40.591],[27.364,40.591],[27.364,40.691],[27.464,40.691],[27.464,40.791],[27.464,40.891],[27.564,40.891],[27.664,40.891],[27.764,40.891],[27.864,40.891],[27.964,40.891],[27.964,40.991]],[[27.069,40.42],[27.064,40.491]],[[27.164,37.891],[27.348,37.939]],[[27.964,40.991],[27.957,40.977]],[[27.964,40.991],[28.064,40.991],[28.164,40.991],[28.264,40.991],[28.364,40.991],[28.464,40.991],[28.564,40.991],[28.664,40.891],[28.764,40.891],[28.864,40.891],[28.964,40.891],[28.964,40.991],[28.985,41.018]]]},"pair": 50129,"direction": 0,"month": 7,"priority": 1,"expense": 2.522,"duration": 24.686,"length": 2864.316},{"type": "Feature", "geometry": {"type":"MultiLineString","coordinates":[[[12.474,41.89],[12.474,41.89],[12.475,41.888],[12.469,41.882],[12.468,41.877],[12.472,41.868],[12.47,41.863],[12.461,41.858],[12.46,41.855],[12.46,41.854],[12.462,41.85],[12.444,41.834],[12.435,41.829],[12.426,41.831],[12.421,41.828],[12.418,41.822],[12.416,41.818],[12.411,41.809],[12.405,41.805],[12.394,41.805],[12.386,41.802],[12.375,41.804],[12.37,41.805],[12.364,41.807],[12.36,41.806],[12.352,41.806],[12.343,41.809],[12.339,41.806],[12.337,41.799],[12.332,41.798],[12.323,41.799],[12.317,41.799],[12.309,41.8],[12.302,41.797],[12.295,41.791],[12.284,41.789],[12.278,41.782],[12.273,41.773],[12.274,41.771],[12.274,41.768],[12.275,41.764],[12.28,41.758],[12.271,41.753]],[[14.864,40.191],[14.764,40.291],[14.664,40.391],[14.564,40.491],[14.464,40.591],[14.364,40.691],[14.264,40.791],[14.164,40.791],[14.064,40.791],[13.964,40.891],[13.864,40.991],[13.764,41.091],[13.664,41.191],[13.564,41.191],[13.464,41.191],[13.364,41.191],[13.264,41.191],[13.164,41.191],[13.064,41.191],[12.964,41.291],[12.864,41.391],[12.764,41.391],[12.664,41.391],[12.564,41.491],[12.464,41.591],[12.364,41.591],[12.264,41.691],[12.287,41.754]],[[14.932,40.255],[14.864,40.191]],[[15.564,38.091],[15.564,38.391],[15.464,38.491],[15.364,38.591],[15.264,38.691],[15.164,38.791],[15.064,38.891],[14.964,38.991],[14.964,39.091],[14.964,39.191],[14.964,39.291],[14.964,39.391],[14.964,39.491],[14.964,39.591],[14.964,39.691],[14.964,39.791],[14.964,39.891],[14.964,39.991],[14.964,40.091],[14.864,40.191]],[[15.557,38.192],[15.564,38.091]],[[15.564,38.091],[15.643,38.108]],[[21.264,37.691],[21.164,37.691],[21.064,37.691],[20.964,37.691],[20.864,37.691],[20.764,37.691],[20.664,37.691],[20.564,37.691],[20.464,37.691],[20.364,37.691],[20.264,37.691],[20.164,37.691],[20.064,37.691],[19.964,37.691],[19.864,37.791],[19.764,37.891],[19.664,37.891],[19.564,37.891],[19.464,37.891],[19.364,37.891],[19.264,37.891],[19.164,37.891],[19.064,37.891],[18.964,37.891],[18.864,37.891],[18.764,37.891],[18.664,37.891],[18.564,37.891],[18.464,37.891],[18.364,37.891],[18.264,37.891],[18.164,37.891],[18.064,37.891],[17.964,37.891],[17.864,37.891],[17.764,37.891],[17.664,37.891],[17.564,37.891],[17.464,37.891],[17.364,37.891],[17.264,37.891],[17.164,37.891],[17.064,37.891],[16.964,37.891],[16.864,37.891],[16.764,37.891],[16.664,37.891],[16.564,37.891],[16.464,37.891],[16.364,37.891],[16.264,37.891],[16.164,37.891],[16.064,37.891],[15.964,37.891],[15.864,37.891],[15.764,37.891],[15.664,37.891],[15.564,37.991],[15.564,38.091]],[[21.464,37.591],[21.364,37.591],[21.264,37.691]],[[21.264,37.691],[21.32,37.65]],[[21.464,37.591],[21.45,37.61]],[[21.864,36.691],[21.764,36.791],[21.664,36.891],[21.564,36.991],[21.564,37.091],[21.564,37.191],[21.564,37.291],[21.564,37.391],[21.564,37.491],[21.464,37.591]],[[22.464,36.391],[22.364,36.491],[22.264,36.591],[22.164,36.691],[22.064,36.691],[21.964,36.691],[21.864,36.691]],[[21.864,36.691],[21.88,36.72]],[[23.164,36.391],[23.064,36.391],[22.964,36.391],[22.864,36.391],[22.764,36.391],[22.664,36.391],[22.564,36.391],[22.464,36.391]],[[22.464,36.391],[22.48,36.39]],[[23.164,37.891],[23.132,37.928]],[[23.2,36.44],[23.164,36.391]],[[23.164,37.891],[23.264,37.791],[23.364,37.691],[23.464,37.591],[23.564,37.491],[23.464,37.391],[23.364,37.291],[23.264,37.191],[23.164,37.091],[23.164,36.991],[23.164,36.891],[23.164,36.791],[23.164,36.691],[23.164,36.591],[23.164,36.491],[23.164,36.391]],[[25.264,37.391],[25.164,37.491],[25.064,37.491],[24.964,37.491],[24.864,37.491],[24.764,37.491],[24.664,37.491],[24.564,37.491],[24.464,37.491],[24.364,37.491],[24.264,37.591],[24.164,37.591],[24.064,37.591],[23.964,37.591],[23.864,37.691],[23.764,37.791],[23.664,37.791],[23.564,37.791],[23.464,37.791],[23.364,37.891],[23.264,37.891],[23.164,37.891]],[[27.164,37.891],[27.064,37.891],[26.964,37.891],[26.864,37.891],[26.764,37.891],[26.664,37.891],[26.564,37.891],[26.464,37.891],[26.364,37.891],[26.264,37.891],[26.164,37.891],[26.064,37.891],[25.964,37.891],[25.864,37.891],[25.764,37.891],[25.664,37.791],[25.564,37.691],[25.464,37.591],[25.364,37.491],[25.264,37.391]],[[25.27,37.4],[25.264,37.391]],[[26.664,40.391],[26.564,40.291],[26.364,40.091],[26.164,39.991]],[[26.2,40.01],[26.164,39.991]],[[26.164,39.991],[26.064,39.891],[25.964,39.791],[25.864,39.691],[25.764,39.591],[25.764,39.491],[25.764,39.391],[25.764,39.291],[25.764,39.191],[25.864,39.091],[25.964,38.991],[26.064,38.891],[26.164,38.791],[26.264,38.691],[26.264,38.591],[26.264,38.491],[26.264,38.391],[26.264,38.291],[26.364,38.191],[26.464,38.191],[26.564,38.091],[26.664,38.091],[26.764,38.091],[26.864,37.991],[26.964,37.991],[27.064,37.991],[27.164,37.891]],[[27.064,40.491],[26.964,40.491],[26.864,40.491],[26.764,40.491],[26.664,40.391]],[[26.664,40.391],[26.694,40.351]],[[27.964,40.991],[27.864,40.891],[27.764,40.891],[27.664,40.891],[27.564,40.891],[27.464,40.791],[27.364,40.691],[27.264,40.591],[27.164,40.591],[27.064,40.491]],[[27.069,40.42],[27.064,40.491]],[[27.164,37.891],[27.348,37.939]],[[27.964,40.991],[27.957,40.977]],[[28.985,41.018],[28.964,40.991],[28.864,40.891],[28.764,40.891],[28.664,40.891],[28.564,40.991],[28.464,40.991],[28.364,40.991],[28.264,40.991],[28.164,40.991],[28.064,40.991],[27.964,40.991]]]},"pair": 50129,"direction": 1,"month": 8,"priority": 1,"expense": 2.213,"duration": 23.080,"length": 2785.169},{"type": "Feature", "geometry": {"type":"MultiLineString","coordinates":[[[12.474,41.89],[12.474,41.89],[12.475,41.888],[12.469,41.882],[12.468,41.877],[12.472,41.868],[12.47,41.863],[12.461,41.858],[12.46,41.855],[12.46,41.854],[12.462,41.85],[12.444,41.834],[12.435,41.829],[12.426,41.831],[12.421,41.828],[12.418,41.822],[12.416,41.818],[12.411,41.809],[12.405,41.805],[12.394,41.805],[12.386,41.802],[12.375,41.804],[12.37,41.805],[12.364,41.807],[12.36,41.806],[12.352,41.806],[12.343,41.809],[12.339,41.806],[12.337,41.799],[12.332,41.798],[12.323,41.799],[12.317,41.799],[12.309,41.8],[12.302,41.797],[12.295,41.791],[12.284,41.789],[12.278,41.782],[12.273,41.773],[12.274,41.771],[12.274,41.768],[12.275,41.764],[12.28,41.758],[12.271,41.753]],[[12.287,41.754],[12.264,41.691],[12.364,41.591],[12.464,41.591],[12.564,41.491],[12.664,41.391],[12.764,41.391],[12.864,41.391],[12.964,41.291],[13.064,41.191],[13.164,41.191],[13.264,41.191],[13.364,41.191],[13.464,41.191],[13.564,41.191],[13.664,41.191],[13.764,41.091],[13.864,40.991],[13.964,40.891],[14.064,40.791],[14.164,40.791],[14.264,40.791],[14.364,40.691],[14.464,40.591],[14.564,40.491],[14.664,40.391],[14.764,40.291],[14.864,40.191]],[[14.932,40.255],[14.864,40.191]],[[14.864,40.191],[14.964,40.091],[14.964,39.991],[14.964,39.891],[14.964,39.791],[14.964,39.691],[14.964,39.591],[14.964,39.491],[14.964,39.391],[14.964,39.291],[14.964,39.191],[14.964,39.091],[14.964,38.991],[15.064,38.891],[15.164,38.791],[15.264,38.691],[15.364,38.591],[15.464,38.491],[15.564,38.391],[15.564,38.091]],[[15.557,38.192],[15.564,38.091]],[[15.564,38.091],[15.643,38.108]],[[15.564,38.091],[15.564,37.991],[15.664,37.891],[15.764,37.891],[15.864,37.891],[15.964,37.891],[16.064,37.891],[16.164,37.891],[16.264,37.891],[16.364,37.891],[16.464,37.891],[16.564,37.891],[16.664,37.891],[16.764,37.891],[16.864,37.891],[16.964,37.891],[17.064,37.891],[17.164,37.891],[17.264,37.891],[17.364,37.891],[17.464,37.891],[17.564,37.891],[17.664,37.891],[17.764,37.891],[17.864,37.891],[17.964,37.891],[18.064,37.891],[18.164,37.891],[18.264,37.891],[18.364,37.891],[18.464,37.891],[18.564,37.891],[18.664,37.891],[18.764,37.891],[18.864,37.891],[18.964,37.891],[19.064,37.891],[19.164,37.891],[19.264,37.891],[19.364,37.891],[19.464,37.891],[19.564,37.891],[19.664,37.891],[19.764,37.891],[19.864,37.891],[19.964,37.891],[20.064,37.891],[20.164,37.891],[20.264,37.891],[20.364,37.891],[20.464,37.891],[20.564,37.791],[20.664,37.691],[20.764,37.691],[20.864,37.691],[20.964,37.691],[21.064,37.691],[21.164,37.691],[21.264,37.691]],[[21.264,37.691],[21.364,37.591],[21.464,37.591]],[[21.32,37.65],[21.264,37.691]],[[21.45,37.61],[21.464,37.591]],[[21.464,37.591],[21.564,37.491],[21.564,37.391],[21.564,37.291],[21.564,37.191],[21.564,37.091],[21.564,36.991],[21.664,36.891],[21.764,36.791],[21.864,36.691]],[[21.864,36.691],[21.964,36.691],[22.064,36.691],[22.164,36.691],[22.264,36.591],[22.364,36.491],[22.464,36.391]],[[21.88,36.72],[21.864,36.691]],[[22.464,36.391],[22.564,36.391],[22.664,36.391],[22.764,36.391],[22.864,36.391],[22.964,36.391],[23.064,36.391],[23.164,36.391]],[[22.48,36.39],[22.464,36.391]],[[23.164,37.891],[23.132,37.928]],[[23.2,36.44],[23.164,36.391]],[[23.164,36.391],[23.164,36.491],[23.164,36.591],[23.164,36.691],[23.164,36.791],[23.164,36.891],[23.164,36.991],[23.164,37.091],[23.264,37.191],[23.364,37.291],[23.464,37.391],[23.564,37.491],[23.464,37.591],[23.364,37.691],[23.264,37.791],[23.164,37.891]],[[23.164,37.891],[23.264,37.891],[23.364,37.891],[23.464,37.791],[23.564,37.791],[23.664,37.791],[23.764,37.791],[23.864,37.691],[23.964,37.591],[24.064,37.591],[24.164,37.591],[24.264,37.591],[24.364,37.491],[24.464,37.491],[24.564,37.491],[24.664,37.491],[24.764,37.491],[24.864,37.491],[24.964,37.491],[25.064,37.491],[25.164,37.491],[25.264,37.391]],[[25.264,37.391],[25.364,37.491],[25.464,37.591],[25.564,37.691],[25.664,37.791],[25.764,37.891],[25.864,37.891],[25.964,37.891],[26.064,37.891],[26.164,37.891],[26.264,37.891],[26.364,37.891],[26.464,37.891],[26.564,37.891],[26.664,37.891],[26.764,37.891],[26.864,37.891],[26.964,37.891],[27.064,37.891],[27.164,37.891]],[[25.27,37.4],[25.264,37.391]],[[26.164,39.991],[26.364,40.091],[26.564,40.291],[26.664,40.391]],[[26.2,40.01],[26.164,39.991]],[[27.164,37.891],[27.064,37.991],[26.964,37.991],[26.864,37.991],[26.764,38.091],[26.664,38.091],[26.564,38.091],[26.464,38.191],[26.364,38.191],[26.264,38.291],[26.264,38.391],[26.264,38.491],[26.264,38.591],[26.264,38.691],[26.364,38.791],[26.464,38.891],[26.564,38.991],[26.664,39.091],[26.664,39.191],[26.664,39.291],[26.564,39.391],[26.464,39.391],[26.364,39.391],[26.264,39.391],[26.164,39.391],[26.064,39.491],[26.064,39.591],[26.064,39.691],[25.964,39.791],[25.964,39.891],[25.964,39.991],[26.064,39.991],[26.164,39.991]],[[26.664,40.391],[26.764,40.491],[26.864,40.491],[26.964,40.491],[27.064,40.491]],[[26.664,40.391],[26.694,40.351]],[[27.064,40.491],[27.064,40.591],[27.164,40.591],[27.264,40.591],[27.364,40.591],[27.364,40.691],[27.464,40.691],[27.464,40.791],[27.464,40.891],[27.564,40.891],[27.664,40.891],[27.764,40.891],[27.864,40.891],[27.964,40.891],[27.964,40.991]],[[27.069,40.42],[27.064,40.491]],[[27.164,37.891],[27.348,37.939]],[[27.964,40.991],[27.957,40.977]],[[27.964,40.991],[28.064,40.991],[28.164,40.991],[28.264,40.991],[28.364,40.991],[28.464,40.991],[28.564,40.991],[28.664,40.891],[28.764,40.891],[28.864,40.891],[28.964,40.891],[28.964,40.991],[28.985,41.018]]]},"pair": 50129,"direction": 0,"month": 8,"priority": 1,"expense": 2.522,"duration": 24.685,"length": 2864.316},{"type": "Feature", "geometry": {"type":"MultiLineString","coordinates":[[[12.474,41.89],[12.474,41.89],[12.475,41.888],[12.469,41.882],[12.468,41.877],[12.472,41.868],[12.47,41.863],[12.461,41.858],[12.46,41.855],[12.46,41.854],[12.462,41.85],[12.444,41.834],[12.435,41.829],[12.426,41.831],[12.421,41.828],[12.418,41.822],[12.416,41.818],[12.411,41.809],[12.405,41.805],[12.394,41.805],[12.386,41.802],[12.375,41.804],[12.37,41.805],[12.364,41.807],[12.36,41.806],[12.352,41.806],[12.343,41.809],[12.339,41.806],[12.337,41.799],[12.332,41.798],[12.323,41.799],[12.317,41.799],[12.309,41.8],[12.302,41.797],[12.295,41.791],[12.284,41.789],[12.278,41.782],[12.273,41.773],[12.274,41.771],[12.274,41.768],[12.275,41.764],[12.28,41.758],[12.271,41.753]],[[14.864,40.191],[14.764,40.291],[14.664,40.391],[14.564,40.491],[14.464,40.591],[14.364,40.691],[14.264,40.791],[14.164,40.791],[14.064,40.791],[13.964,40.891],[13.864,40.991],[13.764,41.091],[13.664,41.191],[13.564,41.191],[13.464,41.191],[13.364,41.191],[13.264,41.191],[13.164,41.191],[13.064,41.191],[12.964,41.291],[12.864,41.391],[12.764,41.391],[12.664,41.391],[12.564,41.491],[12.464,41.591],[12.364,41.591],[12.264,41.691],[12.287,41.754]],[[14.932,40.255],[14.864,40.191]],[[15.564,38.091],[15.564,38.391],[15.564,38.491],[15.564,38.591],[15.564,38.691],[15.564,38.791],[15.564,38.891],[15.564,38.991],[15.564,39.091],[15.564,39.191],[15.564,39.291],[15.564,39.391],[15.464,39.491],[15.364,39.591],[15.264,39.691],[15.164,39.791],[15.064,39.891],[14.964,39.991],[14.964,40.091],[14.864,40.191]],[[15.557,38.192],[15.564,38.091]],[[15.564,38.091],[15.643,38.108]],[[21.264,37.691],[21.164,37.691],[21.064,37.691],[20.964,37.691],[20.864,37.691],[20.764,37.691],[20.664,37.691],[20.564,37.691],[20.464,37.691],[20.364,37.691],[20.264,37.691],[20.164,37.691],[20.064,37.691],[19.964,37.691],[19.864,37.791],[19.764,37.891],[19.664,37.891],[19.564,37.891],[19.464,37.891],[19.364,37.891],[19.264,37.891],[19.164,37.891],[19.064,37.891],[18.964,37.891],[18.864,37.891],[18.764,37.891],[18.664,37.891],[18.564,37.891],[18.464,37.891],[18.364,37.891],[18.264,37.891],[18.164,37.891],[18.064,37.891],[17.964,37.891],[17.864,37.891],[17.764,37.891],[17.664,37.891],[17.564,37.891],[17.464,37.891],[17.364,37.891],[17.264,37.891],[17.164,37.891],[17.064,37.891],[16.964,37.891],[16.864,37.891],[16.764,37.891],[16.664,37.891],[16.564,37.891],[16.464,37.891],[16.364,37.891],[16.264,37.891],[16.164,37.891],[16.064,37.891],[15.964,37.891],[15.864,37.891],[15.764,37.891],[15.664,37.891],[15.564,37.991],[15.564,38.091]],[[21.464,37.591],[21.364,37.591],[21.264,37.691]],[[21.264,37.691],[21.32,37.65]],[[21.464,37.591],[21.45,37.61]],[[21.864,36.691],[21.764,36.791],[21.664,36.891],[21.564,36.991],[21.564,37.091],[21.564,37.191],[21.564,37.291],[21.564,37.391],[21.564,37.491],[21.464,37.591]],[[22.464,36.391],[22.364,36.491],[22.264,36.591],[22.164,36.691],[22.064,36.691],[21.964,36.691],[21.864,36.691]],[[21.864,36.691],[21.88,36.72]],[[23.164,36.391],[23.064,36.391],[22.964,36.391],[22.864,36.391],[22.764,36.391],[22.664,36.391],[22.564,36.391],[22.464,36.391]],[[22.464,36.391],[22.48,36.39]],[[23.164,37.891],[23.132,37.928]],[[23.2,36.44],[23.164,36.391]],[[23.164,37.891],[23.264,37.791],[23.364,37.691],[23.464,37.591],[23.564,37.491],[23.464,37.391],[23.364,37.291],[23.264,37.191],[23.164,37.091],[23.164,36.991],[23.164,36.891],[23.164,36.791],[23.164,36.691],[23.164,36.591],[23.164,36.491],[23.164,36.391]],[[25.264,37.391],[25.164,37.491],[25.064,37.491],[24.964,37.491],[24.864,37.491],[24.764,37.491],[24.664,37.491],[24.564,37.491],[24.464,37.491],[24.364,37.491],[24.264,37.591],[24.164,37.591],[24.064,37.591],[23.964,37.591],[23.864,37.691],[23.764,37.791],[23.664,37.791],[23.564,37.791],[23.464,37.791],[23.364,37.891],[23.264,37.891],[23.164,37.891]],[[27.164,37.891],[27.064,37.891],[26.964,37.891],[26.864,37.891],[26.764,37.891],[26.664,37.891],[26.564,37.891],[26.464,37.891],[26.364,37.891],[26.264,37.891],[26.164,37.891],[26.064,37.891],[25.964,37.891],[25.864,37.891],[25.764,37.891],[25.664,37.791],[25.564,37.691],[25.464,37.591],[25.364,37.491],[25.264,37.391]],[[25.27,37.4],[25.264,37.391]],[[26.664,40.391],[26.564,40.291],[26.364,40.091],[26.164,39.991]],[[26.2,40.01],[26.164,39.991]],[[26.164,39.991],[26.064,39.891],[25.964,39.791],[25.864,39.691],[25.764,39.591],[25.764,39.491],[25.764,39.391],[25.764,39.291],[25.764,39.191],[25.864,39.091],[25.964,38.991],[26.064,38.891],[26.164,38.791],[26.264,38.691],[26.264,38.591],[26.264,38.491],[26.264,38.391],[26.264,38.291],[26.364,38.191],[26.464,38.191],[26.564,38.091],[26.664,38.091],[26.764,38.091],[26.864,37.991],[26.964,37.991],[27.064,37.991],[27.164,37.891]],[[27.064,40.491],[26.964,40.491],[26.864,40.491],[26.764,40.491],[26.664,40.391]],[[26.664,40.391],[26.694,40.351]],[[27.964,40.991],[27.864,40.891],[27.764,40.891],[27.664,40.891],[27.564,40.891],[27.464,40.791],[27.364,40.691],[27.264,40.591],[27.164,40.591],[27.064,40.491]],[[27.069,40.42],[27.064,40.491]],[[27.164,37.891],[27.348,37.939]],[[27.964,40.991],[27.957,40.977]],[[28.985,41.018],[28.964,40.991],[28.864,40.891],[28.764,40.891],[28.664,40.891],[28.564,40.991],[28.464,40.991],[28.364,40.991],[28.264,40.991],[28.164,40.991],[28.064,40.991],[27.964,40.991]]]},"pair": 50129,"direction": 1,"month": 9,"priority": 1,"expense": 2.090,"duration": 21.838,"length": 2784.715},{"type": "Feature", "geometry": {"type":"MultiLineString","coordinates":[[[12.474,41.89],[12.474,41.89],[12.475,41.888],[12.469,41.882],[12.468,41.877],[12.472,41.868],[12.47,41.863],[12.461,41.858],[12.46,41.855],[12.46,41.854],[12.462,41.85],[12.444,41.834],[12.435,41.829],[12.426,41.831],[12.421,41.828],[12.418,41.822],[12.416,41.818],[12.411,41.809],[12.405,41.805],[12.394,41.805],[12.386,41.802],[12.375,41.804],[12.37,41.805],[12.364,41.807],[12.36,41.806],[12.352,41.806],[12.343,41.809],[12.339,41.806],[12.337,41.799],[12.332,41.798],[12.323,41.799],[12.317,41.799],[12.309,41.8],[12.302,41.797],[12.295,41.791],[12.284,41.789],[12.278,41.782],[12.273,41.773],[12.274,41.771],[12.274,41.768],[12.275,41.764],[12.28,41.758],[12.271,41.753]],[[12.287,41.754],[12.264,41.691],[12.364,41.591],[12.464,41.591],[12.564,41.491],[12.664,41.391],[12.764,41.391],[12.864,41.391],[12.964,41.291],[13.064,41.191],[13.164,41.191],[13.264,41.191],[13.364,41.191],[13.464,41.191],[13.564,41.191],[13.664,41.191],[13.764,41.091],[13.864,40.991],[13.964,40.891],[14.064,40.791],[14.164,40.791],[14.264,40.791],[14.364,40.691],[14.464,40.591],[14.564,40.491],[14.664,40.391],[14.764,40.291],[14.864,40.191]],[[14.932,40.255],[14.864,40.191]],[[14.864,40.191],[14.964,40.091],[14.964,39.991],[14.964,39.891],[14.964,39.791],[14.964,39.691],[14.964,39.591],[14.964,39.491],[14.964,39.391],[14.964,39.291],[14.964,39.191],[14.964,39.091],[14.964,38.991],[15.064,38.891],[15.164,38.791],[15.264,38.691],[15.364,38.591],[15.464,38.491],[15.564,38.391],[15.564,38.091]],[[15.557,38.192],[15.564,38.091]],[[15.564,38.091],[15.643,38.108]],[[15.564,38.091],[15.564,37.991],[15.664,37.891],[15.764,37.891],[15.864,37.891],[15.964,37.891],[16.064,37.891],[16.164,37.891],[16.264,37.891],[16.364,37.891],[16.464,37.891],[16.564,37.891],[16.664,37.891],[16.764,37.891],[16.864,37.891],[16.964,37.891],[17.064,37.891],[17.164,37.891],[17.264,37.891],[17.364,37.891],[17.464,37.891],[17.564,37.891],[17.664,37.891],[17.764,37.891],[17.864,37.891],[17.964,37.891],[18.064,37.891],[18.164,37.891],[18.264,37.891],[18.364,37.891],[18.464,37.891],[18.564,37.891],[18.664,37.891],[18.764,37.891],[18.864,37.891],[18.964,37.891],[19.064,37.891],[19.164,37.891],[19.264,37.891],[19.364,37.891],[19.464,37.891],[19.564,37.891],[19.664,37.891],[19.764,37.891],[19.864,37.891],[19.964,37.891],[20.064,37.891],[20.164,37.891],[20.264,37.891],[20.364,37.891],[20.464,37.891],[20.564,37.791],[20.664,37.691],[20.764,37.691],[20.864,37.691],[20.964,37.691],[21.064,37.691],[21.164,37.691],[21.264,37.691]],[[21.264,37.691],[21.364,37.591],[21.464,37.591]],[[21.32,37.65],[21.264,37.691]],[[21.45,37.61],[21.464,37.591]],[[21.464,37.591],[21.564,37.491],[21.564,37.391],[21.564,37.291],[21.564,37.191],[21.564,37.091],[21.564,36.991],[21.664,36.891],[21.764,36.791],[21.864,36.691]],[[21.864,36.691],[21.964,36.691],[22.064,36.691],[22.164,36.691],[22.264,36.591],[22.364,36.491],[22.464,36.391]],[[21.88,36.72],[21.864,36.691]],[[22.464,36.391],[22.564,36.391],[22.664,36.391],[22.764,36.391],[22.864,36.391],[22.964,36.391],[23.064,36.391],[23.164,36.391]],[[22.48,36.39],[22.464,36.391]],[[23.164,37.891],[23.132,37.928]],[[23.2,36.44],[23.164,36.391]],[[23.164,36.391],[23.164,36.491],[23.164,36.591],[23.164,36.691],[23.164,36.791],[23.164,36.891],[23.164,36.991],[23.164,37.091],[23.264,37.191],[23.364,37.291],[23.464,37.391],[23.564,37.491],[23.464,37.591],[23.364,37.691],[23.264,37.791],[23.164,37.891]],[[23.164,37.891],[23.264,37.891],[23.364,37.891],[23.464,37.791],[23.564,37.791],[23.664,37.791],[23.764,37.791],[23.864,37.691],[23.964,37.591],[24.064,37.591],[24.164,37.591],[24.264,37.591],[24.364,37.491],[24.464,37.491],[24.564,37.491],[24.664,37.491],[24.764,37.491],[24.864,37.491],[24.964,37.491],[25.064,37.491],[25.164,37.491],[25.264,37.391]],[[25.264,37.391],[25.364,37.491],[25.464,37.591],[25.564,37.691],[25.664,37.791],[25.764,37.891],[25.864,37.891],[25.964,37.891],[26.064,37.891],[26.164,37.891],[26.264,37.891],[26.364,37.891],[26.464,37.891],[26.564,37.891],[26.664,37.891],[26.764,37.891],[26.864,37.891],[26.964,37.891],[27.064,37.891],[27.164,37.891]],[[25.27,37.4],[25.264,37.391]],[[26.164,39.991],[26.364,40.091],[26.564,40.291],[26.664,40.391]],[[26.2,40.01],[26.164,39.991]],[[27.164,37.891],[27.064,37.991],[26.964,37.991],[26.864,37.991],[26.764,38.091],[26.664,38.091],[26.564,38.091],[26.464,38.191],[26.364,38.191],[26.264,38.291],[26.264,38.391],[26.264,38.491],[26.264,38.591],[26.264,38.691],[26.164,38.791],[26.064,38.891],[25.964,38.991],[25.864,39.091],[25.764,39.191],[25.764,39.291],[25.864,39.391],[25.964,39.491],[25.964,39.591],[25.964,39.691],[25.964,39.791],[26.064,39.891],[26.164,39.991]],[[26.664,40.391],[26.764,40.491],[26.864,40.491],[26.964,40.491],[27.064,40.491]],[[26.664,40.391],[26.694,40.351]],[[27.064,40.491],[27.164,40.591],[27.264,40.591],[27.364,40.691],[27.464,40.791],[27.564,40.891],[27.664,40.891],[27.764,40.891],[27.864,40.891],[27.964,40.991]],[[27.069,40.42],[27.064,40.491]],[[27.164,37.891],[27.348,37.939]],[[27.964,40.991],[27.957,40.977]],[[27.964,40.991],[28.064,40.991],[28.164,40.991],[28.264,40.991],[28.364,40.991],[28.464,40.991],[28.564,40.991],[28.664,40.891],[28.764,40.891],[28.864,40.891],[28.964,40.991],[28.985,41.018]]]},"pair": 50129,"direction": 0,"month": 9,"priority": 1,"expense": 2.443,"duration": 23.885,"length": 2785.047},{"type": "Feature", "geometry": {"type":"MultiLineString","coordinates":[[[12.474,41.89],[12.474,41.89],[12.475,41.888],[12.469,41.882],[12.468,41.877],[12.472,41.868],[12.47,41.863],[12.461,41.858],[12.46,41.855],[12.46,41.854],[12.462,41.85],[12.444,41.834],[12.435,41.829],[12.426,41.831],[12.421,41.828],[12.418,41.822],[12.416,41.818],[12.411,41.809],[12.405,41.805],[12.394,41.805],[12.386,41.802],[12.375,41.804],[12.37,41.805],[12.364,41.807],[12.36,41.806],[12.352,41.806],[12.343,41.809],[12.339,41.806],[12.337,41.799],[12.332,41.798],[12.323,41.799],[12.317,41.799],[12.309,41.8],[12.302,41.797],[12.295,41.791],[12.284,41.789],[12.278,41.782],[12.273,41.773],[12.274,41.771],[12.274,41.768],[12.275,41.764],[12.28,41.758],[12.271,41.753]],[[14.864,40.191],[14.764,40.191],[14.664,40.191],[14.564,40.191],[14.464,40.191],[14.364,40.291],[14.264,40.391],[14.164,40.391],[14.064,40.491],[13.964,40.491],[13.864,40.591],[13.764,40.591],[13.664,40.691],[13.564,40.791],[13.464,40.791],[13.364,40.891],[13.264,40.891],[13.164,40.991],[13.064,40.991],[12.964,41.091],[12.864,41.191],[12.764,41.191],[12.664,41.291],[12.564,41.391],[12.464,41.491],[12.364,41.591],[12.264,41.691],[12.287,41.754]],[[14.932,40.255],[14.864,40.191]],[[15.564,38.091],[15.564,38.391],[15.564,38.491],[15.564,38.591],[15.564,38.691],[15.564,38.791],[15.564,38.891],[15.564,38.991],[15.564,39.091],[15.564,39.191],[15.564,39.291],[15.564,39.391],[15.464,39.491],[15.364,39.591],[15.264,39.691],[15.164,39.791],[15.064,39.891],[14.964,39.991],[14.964,40.091],[14.864,40.191]],[[15.557,38.192],[15.564,38.091]],[[15.564,38.091],[15.643,38.108]],[[21.264,37.691],[21.164,37.691],[21.064,37.691],[20.964,37.691],[20.864,37.691],[20.764,37.691],[20.664,37.691],[20.564,37.791],[20.464,37.891],[20.364,37.891],[20.264,37.891],[20.164,37.891],[20.064,37.891],[19.964,37.891],[19.864,37.891],[19.764,37.891],[19.664,37.891],[19.564,37.891],[19.464,37.891],[19.364,37.891],[19.264,37.891],[19.164,37.891],[19.064,37.891],[18.964,37.891],[18.864,37.891],[18.764,37.891],[18.664,37.891],[18.564,37.891],[18.464,37.891],[18.364,37.891],[18.264,37.891],[18.164,37.891],[18.064,37.891],[17.964,37.891],[17.864,37.891],[17.764,37.891],[17.664,37.891],[17.564,37.891],[17.464,37.891],[17.364,37.891],[17.264,37.891],[17.164,37.891],[17.064,37.891],[16.964,37.891],[16.864,37.891],[16.764,37.891],[16.664,37.891],[16.564,37.891],[16.464,37.891],[16.364,37.891],[16.264,37.891],[16.164,37.891],[16.064,37.891],[15.964,37.891],[15.864,37.891],[15.764,37.891],[15.664,37.891],[15.564,37.991],[15.564,38.091]],[[21.464,37.591],[21.364,37.591],[21.264,37.691]],[[21.264,37.691],[21.32,37.65]],[[21.464,37.591],[21.45,37.61]],[[21.864,36.691],[21.764,36.791],[21.664,36.891],[21.564,36.991],[21.564,37.091],[21.564,37.191],[21.564,37.291],[21.564,37.391],[21.564,37.491],[21.464,37.591]],[[22.464,36.391],[22.364,36.491],[22.264,36.491],[22.164,36.591],[22.064,36.691],[21.964,36.691],[21.864,36.691]],[[21.864,36.691],[21.88,36.72]],[[23.164,36.391],[23.064,36.391],[22.964,36.391],[22.864,36.391],[22.764,36.391],[22.664,36.391],[22.564,36.391],[22.464,36.391]],[[22.464,36.391],[22.48,36.39]],[[23.164,37.891],[23.132,37.928]],[[23.2,36.44],[23.164,36.391]],[[23.164,37.891],[23.264,37.791],[23.364,37.691],[23.464,37.591],[23.564,37.491],[23.464,37.391],[23.364,37.291],[23.264,37.191],[23.164,37.091],[23.164,36.991],[23.164,36.891],[23.164,36.791],[23.164,36.691],[23.164,36.591],[23.164,36.491],[23.164,36.391]],[[25.264,37.391],[25.164,37.491],[25.064,37.491],[24.964,37.491],[24.864,37.491],[24.764,37.491],[24.664,37.491],[24.564,37.491],[24.464,37.491],[24.364,37.491],[24.264,37.591],[24.164,37.591],[24.064,37.591],[23.964,37.591],[23.864,37.691],[23.764,37.791],[23.664,37.791],[23.564,37.791],[23.464,37.791],[23.364,37.891],[23.264,37.891],[23.164,37.891]],[[27.164,37.891],[27.064,37.891],[26.964,37.891],[26.864,37.891],[26.764,37.891],[26.664,37.891],[26.564,37.891],[26.464,37.891],[26.364,37.891],[26.264,37.891],[26.164,37.891],[26.064,37.891],[25.964,37.891],[25.864,37.891],[25.764,37.891],[25.664,37.791],[25.564,37.691],[25.464,37.591],[25.364,37.491],[25.264,37.391]],[[25.27,37.4],[25.264,37.391]],[[26.664,40.391],[26.564,40.291],[26.364,40.091],[26.164,39.991]],[[26.2,40.01],[26.164,39.991]],[[26.164,39.991],[26.064,39.891],[25.964,39.791],[25.864,39.691],[25.764,39.591],[25.764,39.491],[25.764,39.391],[25.764,39.291],[25.764,39.191],[25.864,39.091],[25.964,38.991],[26.064,38.891],[26.164,38.791],[26.264,38.691],[26.264,38.591],[26.264,38.491],[26.264,38.391],[26.264,38.291],[26.364,38.191],[26.464,38.191],[26.564,38.091],[26.664,38.091],[26.764,38.091],[26.864,37.991],[26.964,37.991],[27.064,37.991],[27.164,37.891]],[[27.064,40.491],[26.964,40.491],[26.864,40.491],[26.764,40.491],[26.664,40.391]],[[26.664,40.391],[26.694,40.351]],[[27.964,40.991],[27.864,40.891],[27.764,40.891],[27.664,40.891],[27.564,40.891],[27.464,40.791],[27.364,40.691],[27.264,40.591],[27.164,40.591],[27.064,40.491]],[[27.069,40.42],[27.064,40.491]],[[27.164,37.891],[27.348,37.939]],[[27.964,40.991],[27.957,40.977]],[[28.985,41.018],[28.964,40.991],[28.864,40.891],[28.764,40.891],[28.664,40.891],[28.564,40.991],[28.464,40.991],[28.364,40.991],[28.264,40.991],[28.164,40.991],[28.064,40.991],[27.964,40.991]]]},"pair": 50129,"direction": 1,"month": 10,"priority": 1,"expense": 2.008,"duration": 21.006,"length": 2785.458},{"type": "Feature", "geometry": {"type":"MultiLineString","coordinates":[[[12.474,41.89],[12.474,41.89],[12.475,41.888],[12.469,41.882],[12.468,41.877],[12.472,41.868],[12.47,41.863],[12.461,41.858],[12.46,41.855],[12.46,41.854],[12.462,41.85],[12.444,41.834],[12.435,41.829],[12.426,41.831],[12.421,41.828],[12.418,41.822],[12.416,41.818],[12.411,41.809],[12.405,41.805],[12.394,41.805],[12.386,41.802],[12.375,41.804],[12.37,41.805],[12.364,41.807],[12.36,41.806],[12.352,41.806],[12.343,41.809],[12.339,41.806],[12.337,41.799],[12.332,41.798],[12.323,41.799],[12.317,41.799],[12.309,41.8],[12.302,41.797],[12.295,41.791],[12.284,41.789],[12.278,41.782],[12.273,41.773],[12.274,41.771],[12.274,41.768],[12.275,41.764],[12.28,41.758],[12.271,41.753]],[[12.287,41.754],[12.264,41.691],[12.364,41.591],[12.464,41.491],[12.564,41.391],[12.664,41.291],[12.764,41.191],[12.864,41.191],[12.964,41.091],[13.064,40.991],[13.164,40.991],[13.264,40.891],[13.364,40.891],[13.464,40.791],[13.564,40.791],[13.664,40.691],[13.764,40.591],[13.864,40.591],[13.964,40.491],[14.064,40.491],[14.164,40.391],[14.264,40.391],[14.364,40.291],[14.464,40.191],[14.564,40.191],[14.664,40.191],[14.764,40.191],[14.864,40.191]],[[14.932,40.255],[14.864,40.191]],[[14.864,40.191],[14.964,40.091],[14.964,39.991],[14.964,39.891],[14.964,39.791],[14.964,39.691],[14.964,39.591],[14.964,39.491],[14.964,39.391],[14.964,39.291],[14.964,39.191],[14.964,39.091],[14.964,38.991],[15.064,38.891],[15.164,38.791],[15.264,38.691],[15.364,38.591],[15.464,38.491],[15.564,38.391],[15.564,38.091]],[[15.557,38.192],[15.564,38.091]],[[15.564,38.091],[15.643,38.108]],[[15.564,38.091],[15.564,37.991],[15.664,37.891],[15.764,37.891],[15.864,37.891],[15.964,37.891],[16.064,37.891],[16.164,37.891],[16.264,37.891],[16.364,37.891],[16.464,37.891],[16.564,37.891],[16.664,37.891],[16.764,37.891],[16.864,37.891],[16.964,37.891],[17.064,37.891],[17.164,37.891],[17.264,37.891],[17.364,37.891],[17.464,37.891],[17.564,37.891],[17.664,37.891],[17.764,37.891],[17.864,37.891],[17.964,37.891],[18.064,37.891],[18.164,37.891],[18.264,37.891],[18.364,37.891],[18.464,37.891],[18.564,37.891],[18.664,37.891],[18.764,37.891],[18.864,37.891],[18.964,37.891],[19.064,37.891],[19.164,37.891],[19.264,37.891],[19.364,37.891],[19.464,37.891],[19.564,37.891],[19.664,37.891],[19.764,37.891],[19.864,37.891],[19.964,37.891],[20.064,37.891],[20.164,37.891],[20.264,37.891],[20.364,37.891],[20.464,37.891],[20.564,37.791],[20.664,37.691],[20.764,37.691],[20.864,37.691],[20.964,37.691],[21.064,37.691],[21.164,37.691],[21.264,37.691]],[[21.264,37.691],[21.364,37.591],[21.464,37.591]],[[21.32,37.65],[21.264,37.691]],[[21.45,37.61],[21.464,37.591]],[[21.464,37.591],[21.564,37.491],[21.564,37.391],[21.564,37.291],[21.564,37.191],[21.564,37.091],[21.564,36.991],[21.664,36.891],[21.764,36.791],[21.864,36.691]],[[21.864,36.691],[21.964,36.691],[22.064,36.691],[22.164,36.691],[22.264,36.591],[22.364,36.491],[22.464,36.391]],[[21.88,36.72],[21.864,36.691]],[[22.464,36.391],[22.564,36.391],[22.664,36.391],[22.764,36.391],[22.864,36.391],[22.964,36.391],[23.064,36.391],[23.164,36.391]],[[22.48,36.39],[22.464,36.391]],[[23.164,37.891],[23.132,37.928]],[[23.2,36.44],[23.164,36.391]],[[23.164,36.391],[23.164,36.491],[23.164,36.591],[23.164,36.691],[23.164,36.791],[23.164,36.891],[23.164,36.991],[23.164,37.091],[23.264,37.191],[23.364,37.291],[23.464,37.391],[23.564,37.491],[23.464,37.591],[23.364,37.691],[23.264,37.791],[23.164,37.891]],[[23.164,37.891],[23.264,37.891],[23.364,37.891],[23.464,37.791],[23.564,37.791],[23.664,37.791],[23.764,37.791],[23.864,37.691],[23.964,37.591],[24.064,37.591],[24.164,37.591],[24.264,37.591],[24.364,37.491],[24.464,37.491],[24.564,37.491],[24.664,37.491],[24.764,37.491],[24.864,37.491],[24.964,37.491],[25.064,37.491],[25.164,37.491],[25.264,37.391]],[[25.264,37.391],[25.364,37.491],[25.464,37.591],[25.564,37.691],[25.664,37.791],[25.764,37.891],[25.864,37.891],[25.964,37.891],[26.064,37.891],[26.164,37.891],[26.264,37.891],[26.364,37.891],[26.464,37.891],[26.564,37.891],[26.664,37.891],[26.764,37.891],[26.864,37.891],[26.964,37.891],[27.064,37.891],[27.164,37.891]],[[25.27,37.4],[25.264,37.391]],[[26.164,39.991],[26.364,40.091],[26.564,40.291],[26.664,40.391]],[[26.2,40.01],[26.164,39.991]],[[27.164,37.891],[27.064,37.991],[26.964,37.991],[26.864,37.991],[26.764,38.091],[26.664,38.091],[26.564,38.091],[26.464,38.191],[26.364,38.191],[26.264,38.291],[26.264,38.391],[26.264,38.491],[26.264,38.591],[26.264,38.691],[26.164,38.791],[26.064,38.891],[25.964,38.991],[25.864,39.091],[25.764,39.191],[25.764,39.291],[25.864,39.391],[25.964,39.491],[25.964,39.591],[25.964,39.691],[25.964,39.791],[26.064,39.891],[26.164,39.991]],[[26.664,40.391],[26.764,40.491],[26.864,40.491],[26.964,40.491],[27.064,40.491]],[[26.664,40.391],[26.694,40.351]],[[27.064,40.491],[27.164,40.591],[27.264,40.591],[27.364,40.691],[27.464,40.791],[27.564,40.891],[27.664,40.891],[27.764,40.891],[27.864,40.891],[27.964,40.991]],[[27.069,40.42],[27.064,40.491]],[[27.164,37.891],[27.348,37.939]],[[27.964,40.991],[27.957,40.977]],[[27.964,40.991],[28.064,40.991],[28.164,40.991],[28.264,40.991],[28.364,40.991],[28.464,40.991],[28.564,40.991],[28.664,40.891],[28.764,40.891],[28.864,40.891],[28.964,40.991],[28.985,41.018]]]},"pair": 50129,"direction": 0,"month": 10,"priority": 1,"expense": 2.227,"duration": 21.736,"length": 2785.934},{"type": "Feature", "geometry": {"type":"MultiLineString","coordinates":[[[12.474,41.89],[12.474,41.89],[12.475,41.888],[12.469,41.882],[12.468,41.877],[12.472,41.868],[12.47,41.863],[12.461,41.858],[12.46,41.855],[12.46,41.854],[12.462,41.85],[12.444,41.834],[12.435,41.829],[12.426,41.831],[12.421,41.828],[12.418,41.822],[12.416,41.818],[12.411,41.809],[12.405,41.805],[12.394,41.805],[12.386,41.802],[12.375,41.804],[12.37,41.805],[12.364,41.807],[12.36,41.806],[12.352,41.806],[12.343,41.809],[12.339,41.806],[12.337,41.799],[12.332,41.798],[12.323,41.799],[12.317,41.799],[12.309,41.8],[12.302,41.797],[12.295,41.791],[12.284,41.789],[12.278,41.782],[12.273,41.773],[12.274,41.771],[12.274,41.768],[12.275,41.764],[12.28,41.758],[12.271,41.753]],[[14.864,40.191],[14.764,40.291],[14.664,40.391],[14.564,40.491],[14.464,40.591],[14.364,40.691],[14.264,40.791],[14.164,40.791],[14.064,40.791],[13.964,40.891],[13.864,40.991],[13.764,41.091],[13.664,41.191],[13.564,41.191],[13.464,41.191],[13.364,41.191],[13.264,41.191],[13.164,41.191],[13.064,41.191],[12.964,41.291],[12.864,41.391],[12.764,41.391],[12.664,41.391],[12.564,41.491],[12.464,41.591],[12.364,41.591],[12.264,41.691],[12.287,41.754]],[[14.932,40.255],[14.864,40.191]],[[15.564,38.091],[15.564,38.391],[15.564,38.491],[15.564,38.591],[15.564,38.691],[15.564,38.791],[15.564,38.891],[15.564,38.991],[15.564,39.091],[15.564,39.191],[15.564,39.291],[15.564,39.391],[15.564,39.491],[15.464,39.591],[15.364,39.691],[15.264,39.791],[15.164,39.891],[15.064,39.991],[14.964,40.091],[14.864,40.191]],[[15.557,38.192],[15.564,38.091]],[[15.564,38.091],[15.643,38.108]],[[21.264,37.691],[21.164,37.691],[21.064,37.691],[20.964,37.691],[20.864,37.691],[20.764,37.691],[20.664,37.691],[20.564,37.791],[20.464,37.891],[20.364,37.891],[20.264,37.891],[20.164,37.891],[20.064,37.891],[19.964,37.891],[19.864,37.891],[19.764,37.891],[19.664,37.891],[19.564,37.891],[19.464,37.891],[19.364,37.891],[19.264,37.891],[19.164,37.891],[19.064,37.891],[18.964,37.891],[18.864,37.891],[18.764,37.891],[18.664,37.891],[18.564,37.891],[18.464,37.891],[18.364,37.891],[18.264,37.891],[18.164,37.891],[18.064,37.891],[17.964,37.891],[17.864,37.891],[17.764,37.891],[17.664,37.891],[17.564,37.891],[17.464,37.891],[17.364,37.891],[17.264,37.891],[17.164,37.891],[17.064,37.891],[16.964,37.891],[16.864,37.891],[16.764,37.891],[16.664,37.891],[16.564,37.891],[16.464,37.891],[16.364,37.891],[16.264,37.891],[16.164,37.891],[16.064,37.891],[15.964,37.891],[15.864,37.891],[15.764,37.891],[15.664,37.891],[15.564,37.991],[15.564,38.091]],[[21.464,37.591],[21.364,37.591],[21.264,37.691]],[[21.264,37.691],[21.32,37.65]],[[21.464,37.591],[21.45,37.61]],[[21.864,36.691],[21.764,36.791],[21.664,36.891],[21.564,36.991],[21.564,37.091],[21.564,37.191],[21.564,37.291],[21.564,37.391],[21.564,37.491],[21.464,37.591]],[[22.464,36.391],[22.364,36.491],[22.264,36.591],[22.164,36.691],[22.064,36.691],[21.964,36.691],[21.864,36.691]],[[21.864,36.691],[21.88,36.72]],[[23.164,36.391],[23.064,36.391],[22.964,36.391],[22.864,36.391],[22.764,36.391],[22.664,36.391],[22.564,36.391],[22.464,36.391]],[[22.464,36.391],[22.48,36.39]],[[23.164,37.891],[23.132,37.928]],[[23.2,36.44],[23.164,36.391]],[[23.164,37.891],[23.264,37.791],[23.364,37.691],[23.464,37.591],[23.564,37.491],[23.464,37.391],[23.364,37.291],[23.264,37.191],[23.164,37.091],[23.164,36.991],[23.164,36.891],[23.164,36.791],[23.164,36.691],[23.164,36.591],[23.164,36.491],[23.164,36.391]],[[25.264,37.391],[25.164,37.491],[25.064,37.491],[24.964,37.491],[24.864,37.491],[24.764,37.491],[24.664,37.491],[24.564,37.491],[24.464,37.491],[24.364,37.491],[24.264,37.591],[24.164,37.591],[24.064,37.591],[23.964,37.591],[23.864,37.691],[23.764,37.791],[23.664,37.791],[23.564,37.791],[23.464,37.791],[23.364,37.891],[23.264,37.891],[23.164,37.891]],[[27.164,37.891],[27.064,37.891],[26.964,37.891],[26.864,37.891],[26.764,37.891],[26.664,37.891],[26.564,37.891],[26.464,37.891],[26.364,37.891],[26.264,37.891],[26.164,37.891],[26.064,37.891],[25.964,37.891],[25.864,37.891],[25.764,37.891],[25.664,37.791],[25.564,37.691],[25.464,37.591],[25.364,37.491],[25.264,37.391]],[[25.27,37.4],[25.264,37.391]],[[26.664,40.391],[26.564,40.291],[26.364,40.091],[26.164,39.991]],[[26.2,40.01],[26.164,39.991]],[[26.164,39.991],[26.064,39.891],[25.964,39.791],[25.964,39.691],[25.964,39.591],[25.964,39.491],[25.964,39.391],[25.864,39.291],[25.764,39.191],[25.864,39.091],[25.964,38.991],[26.064,38.891],[26.164,38.791],[26.264,38.691],[26.264,38.591],[26.264,38.491],[26.264,38.391],[26.264,38.291],[26.364,38.191],[26.464,38.191],[26.564,38.091],[26.664,38.091],[26.764,38.091],[26.864,37.991],[26.964,37.991],[27.064,37.991],[27.164,37.891]],[[27.064,40.491],[26.964,40.491],[26.864,40.491],[26.764,40.491],[26.664,40.391]],[[26.664,40.391],[26.694,40.351]],[[27.964,40.991],[27.864,40.891],[27.764,40.891],[27.664,40.891],[27.564,40.891],[27.464,40.791],[27.364,40.691],[27.264,40.591],[27.164,40.591],[27.064,40.491]],[[27.069,40.42],[27.064,40.491]],[[27.164,37.891],[27.348,37.939]],[[27.964,40.991],[27.957,40.977]],[[28.985,41.018],[28.964,40.991],[28.864,40.891],[28.764,40.891],[28.664,40.891],[28.564,40.991],[28.464,40.991],[28.364,40.991],[28.264,40.991],[28.164,40.991],[28.064,40.991],[27.964,40.991]]]},"pair": 50129,"direction": 1,"month": 11,"priority": 1,"expense": 1.975,"duration": 20.682,"length": 2784.564},{"type": "Feature", "geometry": {"type":"MultiLineString","coordinates":[[[12.474,41.89],[12.474,41.89],[12.475,41.888],[12.469,41.882],[12.468,41.877],[12.472,41.868],[12.47,41.863],[12.461,41.858],[12.46,41.855],[12.46,41.854],[12.462,41.85],[12.444,41.834],[12.435,41.829],[12.426,41.831],[12.421,41.828],[12.418,41.822],[12.416,41.818],[12.411,41.809],[12.405,41.805],[12.394,41.805],[12.386,41.802],[12.375,41.804],[12.37,41.805],[12.364,41.807],[12.36,41.806],[12.352,41.806],[12.343,41.809],[12.339,41.806],[12.337,41.799],[12.332,41.798],[12.323,41.799],[12.317,41.799],[12.309,41.8],[12.302,41.797],[12.295,41.791],[12.284,41.789],[12.278,41.782],[12.273,41.773],[12.274,41.771],[12.274,41.768],[12.275,41.764],[12.28,41.758],[12.271,41.753]],[[12.287,41.754],[12.264,41.691],[12.364,41.591],[12.464,41.491],[12.564,41.391],[12.664,41.291],[12.764,41.191],[12.864,41.191],[12.964,41.091],[13.064,40.991],[13.164,40.991],[13.264,40.891],[13.364,40.891],[13.464,40.791],[13.564,40.791],[13.664,40.691],[13.764,40.591],[13.864,40.591],[13.964,40.491],[14.064,40.491],[14.164,40.391],[14.264,40.391],[14.364,40.291],[14.464,40.191],[14.564,40.191],[14.664,40.191],[14.764,40.191],[14.864,40.191]],[[14.932,40.255],[14.864,40.191]],[[14.864,40.191],[14.864,40.091],[14.864,39.991],[14.964,39.891],[14.964,39.791],[14.964,39.691],[14.964,39.591],[14.964,39.491],[14.964,39.391],[14.964,39.291],[14.964,39.191],[14.964,39.091],[14.964,38.991],[15.064,38.891],[15.164,38.791],[15.264,38.691],[15.364,38.591],[15.464,38.491],[15.564,38.391],[15.564,38.091]],[[15.557,38.192],[15.564,38.091]],[[15.564,38.091],[15.643,38.108]],[[15.564,38.091],[15.564,37.991],[15.664,37.891],[15.764,37.891],[15.864,37.891],[15.964,37.891],[16.064,37.891],[16.164,37.891],[16.264,37.891],[16.364,37.891],[16.464,37.891],[16.564,37.891],[16.664,37.891],[16.764,37.891],[16.864,37.891],[16.964,37.891],[17.064,37.891],[17.164,37.891],[17.264,37.891],[17.364,37.891],[17.464,37.891],[17.564,37.891],[17.664,37.891],[17.764,37.891],[17.864,37.891],[17.964,37.891],[18.064,37.891],[18.164,37.891],[18.264,37.891],[18.364,37.891],[18.464,37.891],[18.564,37.891],[18.664,37.891],[18.764,37.891],[18.864,37.891],[18.964,37.891],[19.064,37.891],[19.164,37.891],[19.264,37.891],[19.364,37.891],[19.464,37.891],[19.564,37.891],[19.664,37.891],[19.764,37.891],[19.864,37.891],[19.964,37.891],[20.064,37.891],[20.164,37.891],[20.264,37.891],[20.364,37.891],[20.464,37.891],[20.564,37.791],[20.664,37.691],[20.764,37.691],[20.864,37.691],[20.964,37.691],[21.064,37.691],[21.164,37.691],[21.264,37.691]],[[21.264,37.691],[21.364,37.591],[21.464,37.591]],[[21.32,37.65],[21.264,37.691]],[[21.45,37.61],[21.464,37.591]],[[21.464,37.591],[21.564,37.491],[21.564,37.391],[21.564,37.291],[21.564,37.191],[21.564,37.091],[21.564,36.991],[21.664,36.891],[21.764,36.791],[21.864,36.691]],[[21.864,36.691],[21.964,36.691],[22.064,36.691],[22.164,36.691],[22.264,36.591],[22.364,36.491],[22.464,36.391]],[[21.88,36.72],[21.864,36.691]],[[22.464,36.391],[22.564,36.391],[22.664,36.391],[22.764,36.391],[22.864,36.391],[22.964,36.391],[23.064,36.391],[23.164,36.391]],[[22.48,36.39],[22.464,36.391]],[[23.164,37.891],[23.132,37.928]],[[23.2,36.44],[23.164,36.391]],[[23.164,36.391],[23.164,36.491],[23.164,36.591],[23.164,36.691],[23.164,36.791],[23.164,36.891],[23.164,36.991],[23.164,37.091],[23.264,37.191],[23.364,37.291],[23.464,37.391],[23.564,37.491],[23.464,37.591],[23.364,37.691],[23.264,37.791],[23.164,37.891]],[[23.164,37.891],[23.264,37.891],[23.364,37.891],[23.464,37.791],[23.564,37.791],[23.664,37.791],[23.764,37.791],[23.864,37.691],[23.964,37.591],[24.064,37.591],[24.164,37.591],[24.264,37.591],[24.364,37.491],[24.464,37.491],[24.564,37.491],[24.664,37.491],[24.764,37.491],[24.864,37.491],[24.964,37.491],[25.064,37.491],[25.164,37.491],[25.264,37.391]],[[25.264,37.391],[25.364,37.491],[25.464,37.591],[25.564,37.691],[25.664,37.791],[25.764,37.891],[25.864,37.891],[25.964,37.891],[26.064,37.891],[26.164,37.891],[26.264,37.891],[26.364,37.891],[26.464,37.891],[26.564,37.891],[26.664,37.891],[26.764,37.891],[26.864,37.891],[26.964,37.891],[27.064,37.891],[27.164,37.891]],[[25.27,37.4],[25.264,37.391]],[[26.164,39.991],[26.364,40.091],[26.564,40.291],[26.664,40.391]],[[26.2,40.01],[26.164,39.991]],[[27.164,37.891],[27.064,37.991],[26.964,37.991],[26.864,37.991],[26.764,38.091],[26.664,38.091],[26.564,38.091],[26.464,38.191],[26.364,38.191],[26.264,38.291],[26.264,38.391],[26.264,38.491],[26.264,38.591],[26.264,38.691],[26.164,38.791],[26.064,38.891],[25.964,38.991],[25.864,39.091],[25.764,39.191],[25.764,39.291],[25.864,39.391],[25.964,39.491],[25.964,39.591],[25.964,39.691],[25.964,39.791],[26.064,39.891],[26.164,39.991]],[[26.664,40.391],[26.764,40.491],[26.864,40.491],[26.964,40.491],[27.064,40.491]],[[26.664,40.391],[26.694,40.351]],[[27.064,40.491],[27.164,40.591],[27.264,40.591],[27.364,40.691],[27.464,40.791],[27.564,40.891],[27.664,40.891],[27.764,40.891],[27.864,40.891],[27.964,40.991]],[[27.069,40.42],[27.064,40.491]],[[27.164,37.891],[27.348,37.939]],[[27.964,40.991],[27.957,40.977]],[[27.964,40.991],[28.064,40.991],[28.164,40.991],[28.264,40.991],[28.364,40.991],[28.464,40.991],[28.564,40.991],[28.664,40.891],[28.764,40.891],[28.864,40.891],[28.964,40.991],[28.985,41.018]]]},"pair": 50129,"direction": 0,"month": 11,"priority": 1,"expense": 2.179,"duration": 21.248,"length": 2785.949},{"type": "Feature", "geometry": {"type":"MultiLineString","coordinates":[[[12.064,37.991],[12.06,37.97]],[[12.364,37.791],[12.264,37.891],[12.164,37.991],[12.064,37.991]],[[12.064,37.991],[12.064,38.091],[12.064,38.191],[12.064,38.291],[12.064,38.391],[12.064,38.491],[12.064,38.591],[12.064,38.691],[12.064,38.791],[12.064,38.891],[12.064,38.991],[12.064,39.091],[12.064,39.191],[12.064,39.291],[12.064,39.391],[12.064,39.491],[12.064,39.591],[12.064,39.691],[12.064,39.791],[12.064,39.891],[12.064,39.991],[12.064,40.091],[12.064,40.191],[12.064,40.291],[12.064,40.391],[12.064,40.491],[12.064,40.591],[12.064,40.691],[12.064,40.791],[12.064,40.891],[12.064,40.991],[12.064,41.091],[12.164,41.191],[12.264,41.291],[12.264,41.391],[12.264,41.491],[12.264,41.591],[12.264,41.691],[12.287,41.754]],[[12.474,41.89],[12.474,41.89],[12.475,41.888],[12.469,41.882],[12.468,41.877],[12.472,41.868],[12.47,41.863],[12.461,41.858],[12.46,41.855],[12.46,41.854],[12.462,41.85],[12.444,41.834],[12.435,41.829],[12.426,41.831],[12.421,41.828],[12.418,41.822],[12.416,41.818],[12.411,41.809],[12.405,41.805],[12.394,41.805],[12.386,41.802],[12.375,41.804],[12.37,41.805],[12.364,41.807],[12.36,41.806],[12.352,41.806],[12.343,41.809],[12.339,41.806],[12.337,41.799],[12.332,41.798],[12.323,41.799],[12.317,41.799],[12.309,41.8],[12.302,41.797],[12.295,41.791],[12.284,41.789],[12.278,41.782],[12.273,41.773],[12.274,41.771],[12.274,41.768],[12.275,41.764],[12.28,41.758],[12.271,41.753]],[[12.437,37.798],[12.364,37.791]],[[15.164,36.691],[15.064,36.591],[14.964,36.691],[14.864,36.691],[14.764,36.691],[14.664,36.691],[14.564,36.691],[14.464,36.791],[14.364,36.891],[14.264,36.991],[14.164,37.091],[14.064,37.091],[13.964,37.091],[13.864,37.091],[13.764,37.091],[13.664,37.191],[13.564,37.191],[13.464,37.291],[13.364,37.291],[13.264,37.391],[13.164,37.391],[13.064,37.491],[12.964,37.491],[12.864,37.491],[12.764,37.491],[12.664,37.491],[12.564,37.591],[12.464,37.691],[12.364,37.791]],[[15.137,36.681],[15.164,36.691]],[[22.464,36.391],[22.364,36.491],[22.264,36.591],[22.164,36.691],[22.064,36.691],[21.964,36.691],[21.864,36.691],[21.764,36.691],[21.664,36.691],[21.564,36.691],[21.464,36.691],[21.364,36.691],[21.264,36.691],[21.164,36.691],[21.064,36.691],[20.964,36.691],[20.864,36.691],[20.764,36.691],[20.664,36.691],[20.564,36.691],[20.464,36.691],[20.364,36.691],[20.264,36.691],[20.164,36.691],[20.064,36.691],[19.964,36.691],[19.864,36.691],[19.764,36.691],[19.664,36.691],[19.564,36.691],[19.464,36.691],[19.364,36.691],[19.264,36.691],[19.164,36.691],[19.064,36.691],[18.964,36.691],[18.864,36.691],[18.764,36.691],[18.664,36.691],[18.564,36.691],[18.464,36.691],[18.364,36.691],[18.264,36.691],[18.164,36.691],[18.064,36.691],[17.964,36.691],[17.864,36.691],[17.764,36.691],[17.664,36.691],[17.564,36.691],[17.464,36.691],[17.364,36.691],[17.264,36.691],[17.164,36.691],[17.064,36.691],[16.964,36.691],[16.864,36.691],[16.764,36.691],[16.664,36.691],[16.564,36.691],[16.464,36.691],[16.364,36.691],[16.264,36.691],[16.164,36.691],[16.064,36.691],[15.964,36.691],[15.864,36.691],[15.764,36.691],[15.664,36.691],[15.564,36.691],[15.464,36.691],[15.364,36.691],[15.264,36.691],[15.164,36.691]],[[23.164,36.391],[23.064,36.391],[22.964,36.391],[22.864,36.391],[22.764,36.391],[22.664,36.391],[22.564,36.391],[22.464,36.391]],[[22.464,36.391],[22.48,36.39]],[[23.164,37.891],[23.132,37.928]],[[23.2,36.44],[23.164,36.391]],[[23.164,37.891],[23.264,37.791],[23.364,37.691],[23.464,37.591],[23.564,37.491],[23.464,37.391],[23.364,37.291],[23.264,37.191],[23.164,37.091],[23.164,36.991],[23.164,36.891],[23.164,36.791],[23.164,36.691],[23.164,36.591],[23.164,36.491],[23.164,36.391]],[[25.264,37.391],[25.164,37.491],[25.064,37.491],[24.964,37.491],[24.864,37.491],[24.764,37.491],[24.664,37.491],[24.564,37.491],[24.464,37.491],[24.364,37.491],[24.264,37.591],[24.164,37.591],[24.064,37.591],[23.964,37.591],[23.864,37.691],[23.764,37.791],[23.664,37.791],[23.564,37.791],[23.464,37.791],[23.364,37.891],[23.264,37.891],[23.164,37.891]],[[27.164,37.891],[27.064,37.891],[26.964,37.891],[26.864,37.891],[26.764,37.891],[26.664,37.891],[26.564,37.891],[26.464,37.891],[26.364,37.891],[26.264,37.891],[26.164,37.891],[26.064,37.891],[25.964,37.891],[25.864,37.891],[25.764,37.891],[25.664,37.791],[25.564,37.691],[25.464,37.591],[25.364,37.491],[25.264,37.391]],[[25.27,37.4],[25.264,37.391]],[[26.664,40.391],[26.564,40.291],[26.364,40.091],[26.164,39.991]],[[26.2,40.01],[26.164,39.991]],[[26.164,39.991],[26.064,39.891],[25.964,39.791],[25.864,39.691],[25.764,39.591],[25.764,39.491],[25.764,39.391],[25.764,39.291],[25.764,39.191],[25.864,39.091],[25.964,38.991],[26.064,38.891],[26.164,38.791],[26.264,38.691],[26.264,38.591],[26.264,38.491],[26.264,38.391],[26.264,38.291],[26.364,38.191],[26.464,38.191],[26.564,38.091],[26.664,38.091],[26.764,38.091],[26.864,37.991],[26.964,37.991],[27.064,37.991],[27.164,37.891]],[[27.064,40.491],[26.964,40.491],[26.864,40.491],[26.764,40.491],[26.664,40.391]],[[26.664,40.391],[26.694,40.351]],[[27.964,40.991],[27.864,40.891],[27.764,40.891],[27.664,40.891],[27.564,40.891],[27.464,40.791],[27.364,40.691],[27.264,40.591],[27.164,40.591],[27.064,40.491]],[[27.069,40.42],[27.064,40.491]],[[27.164,37.891],[27.348,37.939]],[[27.957,40.977],[27.964,40.991]],[[28.985,41.018],[28.964,40.991],[28.864,40.891],[28.764,40.891],[28.664,40.891],[28.564,40.991],[28.464,40.991],[28.364,40.991],[28.264,40.991],[28.164,40.991],[28.064,40.991],[27.964,40.991]]]},"pair": 50129,"direction": 1,"month": 12,"priority": 1,"expense": 2.157,"duration": 22.489,"length": 2878.058},{"type": "Feature", "geometry": {"type":"MultiLineString","coordinates":[[[12.06,37.97],[12.064,37.991]],[[12.064,37.991],[12.164,37.991],[12.264,37.891],[12.364,37.791]],[[12.287,41.754],[12.264,41.691],[12.164,41.591],[12.064,41.491],[12.064,41.391],[12.064,41.291],[12.064,41.191],[12.064,41.091],[12.064,40.991],[12.064,40.891],[12.064,40.791],[12.064,40.691],[12.064,40.591],[12.064,40.491],[12.064,40.391],[12.064,40.291],[12.064,40.191],[12.064,40.091],[12.064,39.991],[12.064,39.891],[12.064,39.791],[12.064,39.691],[12.064,39.591],[12.064,39.491],[12.064,39.391],[12.064,39.291],[12.064,39.191],[12.064,39.091],[12.064,38.991],[12.064,38.891],[12.064,38.791],[12.064,38.691],[12.064,38.591],[12.064,38.491],[12.064,38.391],[12.064,38.291],[12.064,38.191],[12.064,38.091],[12.064,37.991]],[[12.474,41.89],[12.474,41.89],[12.475,41.888],[12.469,41.882],[12.468,41.877],[12.472,41.868],[12.47,41.863],[12.461,41.858],[12.46,41.855],[12.46,41.854],[12.462,41.85],[12.444,41.834],[12.435,41.829],[12.426,41.831],[12.421,41.828],[12.418,41.822],[12.416,41.818],[12.411,41.809],[12.405,41.805],[12.394,41.805],[12.386,41.802],[12.375,41.804],[12.37,41.805],[12.364,41.807],[12.36,41.806],[12.352,41.806],[12.343,41.809],[12.339,41.806],[12.337,41.799],[12.332,41.798],[12.323,41.799],[12.317,41.799],[12.309,41.8],[12.302,41.797],[12.295,41.791],[12.284,41.789],[12.278,41.782],[12.273,41.773],[12.274,41.771],[12.274,41.768],[12.275,41.764],[12.28,41.758],[12.271,41.753]],[[12.437,37.798],[12.364,37.791]],[[12.364,37.791],[12.464,37.691],[12.564,37.591],[12.664,37.491],[12.764,37.491],[12.864,37.491],[12.964,37.491],[13.064,37.491],[13.164,37.391],[13.264,37.391],[13.364,37.291],[13.464,37.291],[13.564,37.191],[13.664,37.191],[13.764,37.091],[13.864,37.091],[13.964,37.091],[14.064,37.091],[14.164,37.091],[14.264,36.991],[14.364,36.891],[14.464,36.791],[14.564,36.691],[14.664,36.691],[14.764,36.691],[14.864,36.691],[14.964,36.691],[15.064,36.591],[15.164,36.691]],[[15.164,36.691],[15.137,36.681]],[[15.164,36.691],[15.264,36.691],[15.364,36.691],[15.464,36.691],[15.564,36.691],[15.664,36.691],[15.764,36.691],[15.864,36.691],[15.964,36.691],[16.064,36.691],[16.164,36.691],[16.264,36.691],[16.364,36.691],[16.464,36.691],[16.564,36.691],[16.664,36.691],[16.764,36.691],[16.864,36.691],[16.964,36.691],[17.064,36.691],[17.164,36.691],[17.264,36.691],[17.364,36.691],[17.464,36.691],[17.564,36.691],[17.664,36.691],[17.764,36.691],[17.864,36.691],[17.964,36.691],[18.064,36.691],[18.164,36.691],[18.264,36.691],[18.364,36.691],[18.464,36.691],[18.564,36.691],[18.664,36.691],[18.764,36.691],[18.864,36.691],[18.964,36.691],[19.064,36.691],[19.164,36.691],[19.264,36.691],[19.364,36.691],[19.464,36.691],[19.564,36.691],[19.664,36.691],[19.764,36.691],[19.864,36.691],[19.964,36.691],[20.064,36.691],[20.164,36.691],[20.264,36.691],[20.364,36.691],[20.464,36.691],[20.564,36.691],[20.664,36.691],[20.764,36.691],[20.864,36.691],[20.964,36.691],[21.064,36.691],[21.164,36.691],[21.264,36.691],[21.364,36.691],[21.464,36.691],[21.564,36.691],[21.664,36.691],[21.764,36.691],[21.864,36.691],[21.964,36.691],[22.064,36.691],[22.164,36.691],[22.264,36.591],[22.364,36.491],[22.464,36.391]],[[22.464,36.391],[22.564,36.391],[22.664,36.391],[22.764,36.391],[22.864,36.391],[22.964,36.391],[23.064,36.391],[23.164,36.391]],[[22.48,36.39],[22.464,36.391]],[[23.164,37.891],[23.132,37.928]],[[23.2,36.44],[23.164,36.391]],[[23.164,36.391],[23.164,36.491],[23.164,36.591],[23.164,36.691],[23.164,36.791],[23.164,36.891],[23.164,36.991],[23.164,37.091],[23.264,37.191],[23.364,37.291],[23.464,37.391],[23.564,37.491],[23.464,37.591],[23.364,37.691],[23.264,37.791],[23.164,37.891]],[[23.164,37.891],[23.264,37.891],[23.364,37.891],[23.464,37.791],[23.564,37.791],[23.664,37.791],[23.764,37.791],[23.864,37.691],[23.964,37.591],[24.064,37.591],[24.164,37.591],[24.264,37.591],[24.364,37.491],[24.464,37.491],[24.564,37.491],[24.664,37.491],[24.764,37.491],[24.864,37.491],[24.964,37.491],[25.064,37.491],[25.164,37.491],[25.264,37.391]],[[25.264,37.391],[25.364,37.491],[25.464,37.591],[25.564,37.691],[25.664,37.791],[25.764,37.791],[25.864,37.791],[25.964,37.791],[26.064,37.791],[26.164,37.791],[26.264,37.791],[26.364,37.791],[26.464,37.891],[26.564,37.891],[26.664,37.891],[26.764,37.891],[26.864,37.891],[26.964,37.891],[27.064,37.891],[27.164,37.891]],[[25.27,37.4],[25.264,37.391]],[[26.164,39.991],[26.364,40.091],[26.564,40.291],[26.664,40.391]],[[26.2,40.01],[26.164,39.991]],[[27.164,37.891],[27.064,37.991],[26.964,37.991],[26.864,37.991],[26.764,38.091],[26.664,38.091],[26.564,38.091],[26.464,38.191],[26.364,38.191],[26.264,38.291],[26.264,38.391],[26.264,38.491],[26.264,38.591],[26.264,38.691],[26.164,38.791],[26.064,38.891],[25.964,38.991],[25.864,39.091],[25.764,39.191],[25.764,39.291],[25.764,39.391],[25.764,39.491],[25.764,39.591],[25.864,39.691],[25.964,39.791],[26.064,39.891],[26.164,39.991]],[[26.664,40.391],[26.764,40.491],[26.864,40.491],[26.964,40.491],[27.064,40.491]],[[26.664,40.391],[26.694,40.351]],[[27.064,40.491],[27.164,40.591],[27.264,40.591],[27.364,40.691],[27.464,40.791],[27.564,40.891],[27.664,40.891],[27.764,40.891],[27.864,40.891],[27.964,40.991]],[[27.069,40.42],[27.064,40.491]],[[27.164,37.891],[27.348,37.939]],[[27.964,40.991],[27.957,40.977]],[[27.964,40.991],[28.064,40.991],[28.164,40.991],[28.264,40.991],[28.364,40.991],[28.464,40.991],[28.564,40.991],[28.664,40.891],[28.764,40.891],[28.864,40.891],[28.964,40.991],[28.985,41.018]]]},"pair": 50129,"direction": 0,"month": 12,"priority": 1,"expense": 2.110,"duration": 20.547,"length": 2878.079},{"type": "Feature", "geometry": {"type":"MultiLineString","coordinates":[[[-0.082,51.521],[0.084,51.551],[0.155,51.564],[0.199,51.57],[0.242,51.58],[0.311,51.608],[0.387,51.653],[0.432,51.685],[0.462,51.712],[0.481,51.734],[0.509,51.755],[0.543,51.771],[0.588,51.785],[0.625,51.794],[0.67,51.822],[0.722,51.854],[0.743,51.875],[0.804,51.882],[0.865,51.885],[0.898,51.892]],[[1.608,50.735],[1.318,51.302],[1.464,51.291],[1.364,51.391],[1.264,51.491],[1.164,51.591],[1.064,51.691],[0.964,51.791],[0.897,51.891]],[[4.398,52.198],[4.364,52.191],[4.264,52.191],[4.164,52.191],[4.064,52.191],[3.964,52.191],[3.864,52.191],[3.764,52.191],[3.664,52.191],[3.564,52.191],[3.464,52.191],[3.364,52.191],[3.264,52.191],[3.164,52.191],[3.064,52.191],[2.964,52.091],[2.864,51.991],[2.764,51.891],[2.664,51.791],[2.564,51.691],[2.464,51.591],[2.364,51.491],[2.264,51.391],[2.164,51.291],[2.064,51.191],[1.964,51.091],[1.864,50.991],[1.764,50.891],[1.664,50.791],[1.608,50.735]],[[1.608,50.735],[1.564,50.691],[1.614,50.724],[1.608,50.735]],[[7.512,47.669],[7.512,47.672],[7.512,47.675],[7.512,47.677],[7.513,47.678],[7.513,47.68],[7.513,47.682],[7.513,47.684],[7.512,47.685],[7.512,47.687],[7.511,47.688],[7.51,47.689],[7.51,47.691],[7.509,47.693],[7.508,47.695],[7.507,47.697],[7.507,47.698],[7.507,47.698],[7.507,47.7],[7.508,47.701],[7.508,47.702],[7.511,47.707],[7.512,47.708],[7.513,47.708],[7.514,47.709],[7.515,47.709],[7.519,47.712],[7.521,47.714],[7.53,47.72],[7.532,47.722],[7.534,47.723],[7.535,47.724],[7.536,47.725],[7.537,47.726],[7.538,47.727],[7.539,47.73],[7.54,47.731],[7.54,47.733],[7.54,47.734],[7.54,47.738],[7.539,47.74],[7.538,47.741],[7.538,47.742],[7.536,47.744],[7.535,47.746],[7.534,47.748],[7.532,47.751],[7.531,47.752],[7.53,47.754],[7.528,47.758],[7.527,47.76],[7.526,47.76],[7.525,47.762],[7.524,47.764],[7.524,47.765],[7.523,47.767],[7.523,47.767],[7.522,47.77],[7.522,47.771],[7.522,47.773],[7.522,47.774],[7.522,47.775],[7.522,47.775],[7.524,47.776],[7.525,47.777],[7.524,47.778],[7.524,47.78],[7.524,47.781],[7.524,47.782],[7.524,47.784],[7.525,47.786],[7.525,47.788],[7.526,47.789],[7.526,47.789],[7.526,47.79],[7.527,47.791],[7.527,47.791],[7.528,47.792],[7.529,47.794],[7.53,47.795],[7.532,47.799],[7.537,47.804],[7.54,47.808],[7.542,47.811],[7.543,47.814],[7.545,47.817],[7.546,47.82],[7.546,47.822],[7.547,47.823],[7.547,47.824],[7.547,47.825],[7.548,47.825],[7.548,47.827],[7.549,47.828],[7.549,47.829],[7.551,47.832],[7.553,47.836],[7.554,47.837],[7.555,47.84],[7.556,47.842],[7.556,47.845],[7.556,47.846],[7.556,47.848],[7.556,47.849],[7.556,47.85],[7.556,47.853],[7.555,47.857],[7.555,47.857],[7.554,47.861],[7.553,47.865],[7.553,47.869],[7.552,47.871],[7.552,47.871],[7.552,47.872],[7.552,47.875],[7.552,47.877],[7.553,47.879],[7.559,47.89],[7.56,47.892],[7.561,47.895],[7.564,47.9],[7.564,47.901],[7.565,47.902],[7.565,47.903],[7.566,47.904],[7.567,47.909],[7.568,47.911],[7.57,47.916],[7.571,47.919],[7.572,47.92],[7.572,47.921],[7.573,47.923],[7.573,47.925],[7.574,47.926],[7.575,47.928],[7.575,47.929],[7.576,47.931],[7.577,47.932],[7.58,47.935],[7.58,47.936],[7.58,47.936],[7.581,47.937],[7.582,47.938],[7.582,47.939],[7.584,47.94],[7.586,47.942],[7.595,47.949],[7.596,47.95],[7.596,47.951],[7.598,47.952],[7.598,47.952],[7.598,47.953],[7.6,47.954],[7.603,47.957],[7.605,47.959],[7.606,47.96],[7.608,47.964],[7.61,47.967],[7.611,47.969],[7.611,47.97],[7.612,47.972],[7.612,47.973],[7.612,47.976],[7.612,47.978],[7.612,47.98],[7.612,47.982],[7.611,47.984],[7.61,47.986],[7.609,47.988],[7.608,47.99],[7.607,47.991],[7.606,47.993],[7.604,47.995],[7.603,47.996],[7.601,47.998],[7.6,47.999],[7.599,48],[7.599,48],[7.597,48.002],[7.589,48.008],[7.582,48.013],[7.579,48.016],[7.574,48.019],[7.573,48.02],[7.57,48.022],[7.569,48.024],[7.567,48.027],[7.567,48.028],[7.566,48.03],[7.567,48.033],[7.57,48.039],[7.573,48.046],[7.574,48.048],[7.574,48.054],[7.574,48.059],[7.573,48.062],[7.568,48.069],[7.57,48.078],[7.569,48.082],[7.57,48.085],[7.572,48.089],[7.575,48.092],[7.58,48.101],[7.58,48.105],[7.578,48.112],[7.578,48.116],[7.578,48.121],[7.578,48.122],[7.581,48.125],[7.584,48.127],[7.585,48.128],[7.587,48.129],[7.591,48.13],[7.595,48.132],[7.597,48.134],[7.598,48.137],[7.6,48.14],[7.599,48.143],[7.599,48.145],[7.598,48.147],[7.598,48.149],[7.599,48.15],[7.607,48.163],[7.611,48.169],[7.614,48.171],[7.619,48.175],[7.62,48.176],[7.625,48.181],[7.63,48.185],[7.631,48.187],[7.635,48.194],[7.638,48.2],[7.64,48.202],[7.641,48.205],[7.644,48.208],[7.645,48.209],[7.646,48.21],[7.648,48.212],[7.654,48.218],[7.658,48.223],[7.661,48.228],[7.663,48.235],[7.665,48.239],[7.669,48.245],[7.67,48.249],[7.676,48.252],[7.676,48.261],[7.677,48.264],[7.678,48.268],[7.68,48.269],[7.68,48.273],[7.681,48.273],[7.68,48.274],[7.681,48.275],[7.683,48.276],[7.683,48.277],[7.681,48.277],[7.681,48.278],[7.683,48.278],[7.684,48.278],[7.685,48.279],[7.685,48.28],[7.684,48.281],[7.689,48.294],[7.692,48.3],[7.697,48.305],[7.703,48.309],[7.709,48.311],[7.724,48.315],[7.731,48.316],[7.732,48.318],[7.734,48.318],[7.737,48.32],[7.739,48.322],[7.741,48.324],[7.742,48.325],[7.744,48.328],[7.744,48.331],[7.746,48.333],[7.749,48.336],[7.747,48.347],[7.743,48.371],[7.74,48.383],[7.737,48.394],[7.743,48.416],[7.745,48.422],[7.745,48.425],[7.752,48.444],[7.766,48.48],[7.771,48.492],[7.78,48.496],[7.795,48.502],[7.802,48.507],[7.805,48.514],[7.806,48.521],[7.805,48.53],[7.805,48.532],[7.805,48.548],[7.805,48.56],[7.803,48.57],[7.801,48.574],[7.801,48.572],[7.8,48.574],[7.799,48.576],[7.799,48.576],[7.799,48.577],[7.799,48.577],[7.798,48.579],[7.798,48.582],[7.798,48.583],[7.799,48.585],[7.8,48.587],[7.8,48.588],[7.801,48.59],[7.802,48.591],[7.802,48.592],[7.803,48.593],[7.803,48.594],[7.804,48.594],[7.806,48.597],[7.81,48.601],[7.811,48.602],[7.815,48.607],[7.817,48.609],[7.82,48.612],[7.823,48.615],[7.824,48.616],[7.826,48.618],[7.828,48.62],[7.829,48.622],[7.83,48.625],[7.831,48.629],[7.832,48.63],[7.832,48.633],[7.833,48.634],[7.834,48.637],[7.835,48.639],[7.836,48.641],[7.838,48.643],[7.839,48.644],[7.838,48.644],[7.841,48.646],[7.843,48.647],[7.845,48.648],[7.848,48.648],[7.85,48.649],[7.852,48.649],[7.853,48.65],[7.855,48.65],[7.858,48.651],[7.867,48.654],[7.871,48.656],[7.873,48.657],[7.874,48.657],[7.873,48.657],[7.877,48.658],[7.882,48.66],[7.885,48.661],[7.888,48.663],[7.889,48.664],[7.889,48.665],[7.89,48.666],[7.891,48.667],[7.895,48.669],[7.898,48.672],[7.899,48.673],[7.899,48.674],[7.9,48.676],[7.9,48.677],[7.902,48.679],[7.903,48.681],[7.903,48.681],[7.905,48.683],[7.905,48.683],[7.909,48.686],[7.911,48.688],[7.912,48.688],[7.913,48.688],[7.913,48.689],[7.914,48.689],[7.915,48.689],[7.915,48.69],[7.918,48.691],[7.923,48.694],[7.926,48.696],[7.927,48.697],[7.928,48.697],[7.931,48.698],[7.933,48.699],[7.935,48.7],[7.938,48.702],[7.94,48.703],[7.942,48.706],[7.951,48.713],[7.952,48.713],[7.952,48.714],[7.952,48.714],[7.955,48.716],[7.96,48.72],[7.963,48.723],[7.965,48.726],[7.965,48.727],[7.966,48.728],[7.966,48.731],[7.965,48.737],[7.965,48.741],[7.964,48.744],[7.964,48.746],[7.964,48.746],[7.964,48.746],[7.965,48.749],[7.966,48.751],[7.966,48.753],[7.967,48.755],[7.969,48.758],[7.971,48.759],[7.973,48.76],[7.975,48.76],[7.979,48.761],[7.981,48.761],[7.982,48.761],[7.984,48.761],[7.989,48.76],[7.992,48.76],[7.998,48.759],[8,48.759],[8.003,48.758],[8.006,48.759],[8.01,48.76],[8.014,48.761],[8.018,48.764],[8.021,48.767],[8.022,48.77],[8.022,48.772],[8.024,48.777],[8.024,48.778],[8.024,48.78],[8.024,48.782],[8.025,48.784],[8.025,48.785],[8.027,48.786],[8.029,48.787],[8.03,48.788],[8.03,48.789],[8.032,48.79],[8.035,48.792],[8.036,48.792],[8.038,48.791],[8.042,48.792],[8.046,48.792],[8.047,48.792],[8.051,48.792],[8.054,48.791],[8.055,48.791],[8.056,48.791],[8.058,48.79],[8.062,48.79],[8.065,48.791],[8.068,48.792],[8.069,48.793],[8.069,48.794],[8.069,48.794],[8.069,48.795],[8.069,48.795],[8.07,48.796],[8.071,48.796],[8.073,48.796],[8.074,48.796],[8.076,48.796],[8.077,48.797],[8.08,48.798],[8.081,48.799],[8.086,48.803],[8.091,48.807],[8.095,48.811],[8.097,48.812],[8.098,48.813],[8.101,48.817],[8.102,48.82],[8.103,48.824],[8.103,48.827],[8.103,48.831],[8.104,48.833],[8.105,48.835],[8.106,48.836],[8.106,48.837],[8.111,48.844],[8.111,48.844],[8.11,48.845],[8.11,48.845],[8.11,48.845],[8.109,48.845],[8.109,48.845],[8.109,48.845],[8.11,48.846],[8.11,48.846],[8.11,48.846],[8.11,48.847],[8.11,48.847],[8.11,48.848],[8.112,48.848],[8.113,48.849],[8.114,48.852],[8.114,48.852],[8.117,48.857],[8.119,48.864],[8.124,48.871],[8.125,48.874],[8.126,48.875],[8.127,48.876],[8.127,48.877],[8.133,48.886],[8.137,48.892],[8.137,48.893],[8.139,48.894],[8.139,48.895],[8.14,48.896],[8.142,48.898],[8.142,48.899],[8.143,48.9],[8.144,48.901],[8.15,48.908],[8.156,48.914],[8.158,48.916],[8.158,48.916],[8.159,48.918],[8.163,48.921],[8.167,48.925],[8.172,48.929],[8.175,48.932],[8.177,48.934],[8.178,48.935],[8.179,48.936],[8.182,48.94],[8.184,48.942],[8.183,48.942],[8.184,48.943],[8.186,48.945],[8.189,48.95],[8.19,48.951],[8.191,48.953],[8.194,48.956],[8.195,48.958],[8.197,48.959],[8.201,48.961],[8.208,48.963],[8.213,48.964],[8.214,48.964],[8.215,48.964],[8.218,48.965],[8.221,48.965],[8.221,48.966],[8.222,48.965],[8.224,48.966],[8.232,48.967],[8.232,48.968],[8.249,48.976],[8.261,48.982],[8.267,48.986],[8.27,48.989],[8.272,48.99],[8.279,48.993],[8.284,48.996],[8.29,49.001],[8.297,49.012],[8.3,49.02],[8.305,49.04],[8.306,49.043],[8.307,49.044],[8.316,49.061],[8.327,49.071],[8.334,49.074],[8.339,49.077],[8.344,49.08],[8.35,49.085],[8.355,49.092],[8.356,49.094],[8.359,49.099],[8.367,49.133],[8.37,49.144],[8.371,49.147],[8.371,49.154],[8.368,49.161],[8.367,49.165],[8.37,49.172],[8.375,49.177],[8.377,49.182],[8.384,49.194],[8.386,49.204],[8.386,49.209],[8.385,49.212],[8.384,49.216],[8.385,49.231],[8.394,49.243],[8.4,49.247],[8.409,49.251],[8.418,49.254],[8.438,49.263],[8.449,49.271],[8.449,49.271],[8.453,49.278],[8.458,49.282],[8.46,49.284],[8.463,49.285],[8.483,49.29],[8.488,49.293],[8.49,49.296],[8.49,49.3],[8.488,49.303],[8.484,49.305],[8.47,49.31],[8.466,49.311],[8.459,49.315],[8.452,49.319],[8.449,49.323],[8.452,49.331],[8.454,49.335],[8.459,49.339],[8.469,49.344],[8.475,49.347],[8.481,49.349],[8.489,49.357],[8.492,49.36],[8.497,49.366],[8.5,49.374],[8.502,49.381],[8.502,49.386],[8.502,49.391],[8.498,49.397],[8.496,49.404],[8.495,49.413],[8.503,49.425],[8.508,49.436],[8.504,49.439],[8.497,49.441],[8.491,49.445],[8.478,49.445],[8.472,49.445],[8.458,49.446],[8.453,49.447],[8.446,49.45],[8.44,49.455],[8.44,49.46],[8.451,49.464],[8.457,49.467],[8.462,49.475],[8.457,49.479],[8.451,49.483],[8.44,49.496],[8.438,49.502],[8.432,49.514],[8.428,49.522],[8.423,49.528],[8.421,49.534],[8.412,49.548],[8.41,49.554],[8.411,49.561],[8.42,49.572],[8.416,49.583],[8.413,49.587],[8.409,49.592],[8.41,49.594],[8.409,49.595],[8.407,49.601],[8.403,49.606],[8.397,49.61],[8.39,49.614],[8.38,49.623],[8.376,49.629],[8.372,49.638],[8.37,49.646],[8.37,49.661],[8.364,49.665],[8.36,49.67],[8.354,49.682],[8.354,49.688],[8.357,49.693],[8.362,49.7],[8.37,49.703],[8.381,49.707],[8.421,49.716],[8.426,49.717],[8.437,49.725],[8.458,49.738],[8.478,49.752],[8.479,49.756],[8.478,49.76],[8.473,49.765],[8.459,49.765],[8.442,49.762],[8.427,49.763],[8.421,49.768],[8.416,49.775],[8.412,49.783],[8.406,49.799],[8.401,49.804],[8.37,49.826],[8.371,49.835],[8.379,49.85],[8.38,49.852],[8.378,49.856],[8.372,49.86],[8.359,49.864],[8.355,49.866],[8.345,49.872],[8.34,49.879],[8.339,49.889],[8.347,49.911],[8.346,49.918],[8.344,49.925],[8.341,49.938],[8.339,49.945],[8.336,49.952],[8.315,49.973],[8.303,49.981],[8.299,49.983],[8.29,49.989],[8.285,49.99],[8.28,49.995],[8.273,50.001],[8.272,50.004],[8.272,50.007],[8.268,50.012],[8.265,50.015],[8.259,50.02],[8.236,50.028],[8.208,50.034],[8.201,50.034],[8.192,50.035],[8.168,50.032],[8.155,50.028],[8.118,50.02],[8.102,50.016],[8.027,50.001],[8.02,49.999],[8.003,49.993],[7.996,49.988],[7.988,49.987],[7.979,49.984],[7.967,49.98],[7.952,49.978],[7.941,49.978],[7.895,49.973],[7.875,49.974],[7.86,49.985],[7.859,49.989],[7.859,50],[7.854,50.009],[7.849,50.013],[7.844,50.016],[7.831,50.021],[7.817,50.032],[7.802,50.041],[7.788,50.046],[7.775,50.054],[7.774,50.058],[7.775,50.065],[7.775,50.068],[7.776,50.072],[7.774,50.077],[7.769,50.08],[7.758,50.088],[7.734,50.108],[7.727,50.11],[7.724,50.115],[7.726,50.118],[7.735,50.126],[7.737,50.134],[7.728,50.14],[7.725,50.148],[7.711,50.157],[7.702,50.166],[7.697,50.169],[7.69,50.171],[7.68,50.17],[7.67,50.173],[7.664,50.174],[7.648,50.181],[7.647,50.184],[7.649,50.19],[7.648,50.196],[7.645,50.198],[7.644,50.201],[7.627,50.211],[7.621,50.214],[7.618,50.222],[7.613,50.227],[7.604,50.232],[7.59,50.233],[7.585,50.233],[7.577,50.24],[7.58,50.247],[7.586,50.249],[7.591,50.25],[7.604,50.25],[7.618,50.248],[7.619,50.248],[7.636,50.247],[7.638,50.248],[7.646,50.252],[7.648,50.255],[7.649,50.26],[7.647,50.265],[7.634,50.277],[7.631,50.279],[7.628,50.281],[7.62,50.287],[7.614,50.29],[7.597,50.309],[7.595,50.309],[7.595,50.309],[7.594,50.311],[7.594,50.311],[7.593,50.314],[7.589,50.319],[7.592,50.327],[7.592,50.327],[7.594,50.333],[7.596,50.339],[7.605,50.355],[7.61,50.365],[7.615,50.375],[7.616,50.378],[7.619,50.384],[7.62,50.389],[7.616,50.395],[7.609,50.399],[7.594,50.404],[7.574,50.414],[7.554,50.422],[7.539,50.425],[7.528,50.425],[7.522,50.423],[7.518,50.422],[7.51,50.417],[7.502,50.415],[7.489,50.415],[7.478,50.416],[7.464,50.421],[7.458,50.425],[7.451,50.434],[7.445,50.441],[7.441,50.443],[7.436,50.444],[7.428,50.445],[7.418,50.443],[7.404,50.443],[7.393,50.445],[7.387,50.448],[7.379,50.452],[7.356,50.466],[7.352,50.471],[7.337,50.483],[7.325,50.494],[7.31,50.506],[7.299,50.517],[7.296,50.521],[7.292,50.527],[7.288,50.532],[7.285,50.537],[7.271,50.566],[7.267,50.571],[7.258,50.576],[7.235,50.58],[7.224,50.584],[7.214,50.59],[7.212,50.596],[7.214,50.6],[7.216,50.603],[7.216,50.608],[7.215,50.623],[7.214,50.635],[7.215,50.643],[7.212,50.649],[7.209,50.652],[7.207,50.658],[7.203,50.661],[7.198,50.662],[7.195,50.664],[7.184,50.678],[7.179,50.687],[7.173,50.692],[7.166,50.707],[7.161,50.712],[7.154,50.715],[7.134,50.721],[7.127,50.724],[7.122,50.727],[7.12,50.728],[7.113,50.739],[7.107,50.75],[7.105,50.755],[7.101,50.757],[7.09,50.762],[7.09,50.762],[7.088,50.763],[7.088,50.763],[7.066,50.773],[7.059,50.776],[7.057,50.776],[7.046,50.782],[7.037,50.788],[7.034,50.797],[7.034,50.798],[7.035,50.803],[7.034,50.809],[7.029,50.816],[7.027,50.818],[7.023,50.821],[7.021,50.822],[7.012,50.824],[7,50.826],[6.999,50.826],[6.988,50.829],[6.982,50.834],[6.982,50.839],[6.983,50.84],[6.986,50.842],[6.996,50.846],[7.012,50.854],[7.018,50.859],[7.022,50.863],[7.033,50.868],[7.042,50.87],[7.049,50.874],[7.052,50.88],[7.052,50.886],[7.047,50.89],[7.039,50.893],[7.029,50.894],[7.013,50.894],[7.012,50.894],[7.005,50.895],[6.997,50.897],[6.991,50.902],[6.989,50.903],[6.977,50.914],[6.974,50.918],[6.969,50.925],[6.965,50.932],[6.96,50.939],[6.966,50.948],[6.966,50.948],[6.971,50.952],[6.992,50.965],[6.995,50.971],[6.992,50.975],[6.986,50.979],[6.972,50.978],[6.965,50.985],[6.96,50.992],[6.959,50.998],[6.96,51.003],[6.969,51.015],[6.968,51.021],[6.959,51.029],[6.95,51.033],[6.948,51.034],[6.927,51.046],[6.911,51.052],[6.856,51.071],[6.854,51.072],[6.852,51.074],[6.852,51.075],[6.85,51.079],[6.851,51.081],[6.851,51.083],[6.853,51.085],[6.854,51.086],[6.864,51.091],[6.875,51.094],[6.879,51.1],[6.879,51.105],[6.877,51.108],[6.864,51.12],[6.861,51.122],[6.853,51.127],[6.847,51.131],[6.846,51.137],[6.848,51.144],[6.853,51.15],[6.853,51.154],[6.853,51.155],[6.853,51.155],[6.849,51.157],[6.841,51.158],[6.841,51.158],[6.836,51.159],[6.833,51.159],[6.815,51.144],[6.806,51.142],[6.799,51.145],[6.797,51.146],[6.795,51.152],[6.799,51.161],[6.799,51.169],[6.795,51.17],[6.795,51.171],[6.792,51.175],[6.792,51.176],[6.788,51.179],[6.78,51.181],[6.766,51.179],[6.764,51.179],[6.759,51.18],[6.755,51.18],[6.752,51.18],[6.737,51.184],[6.733,51.192],[6.729,51.203],[6.729,51.208],[6.726,51.217],[6.728,51.225],[6.732,51.226],[6.732,51.226],[6.742,51.226],[6.746,51.225],[6.755,51.22],[6.758,51.22],[6.763,51.222],[6.764,51.227],[6.764,51.227],[6.764,51.232],[6.763,51.238],[6.759,51.243],[6.751,51.247],[6.75,51.247],[6.746,51.252],[6.722,51.259],[6.716,51.261],[6.707,51.267],[6.705,51.271],[6.705,51.281],[6.712,51.286],[6.714,51.287],[6.731,51.303],[6.732,51.309],[6.732,51.316],[6.729,51.32],[6.722,51.327],[6.706,51.334],[6.664,51.345],[6.66,51.346],[6.656,51.351],[6.662,51.365],[6.664,51.366],[6.67,51.369],[6.68,51.372],[6.705,51.373],[6.712,51.376],[6.726,51.383],[6.739,51.392],[6.743,51.397],[6.744,51.401],[6.744,51.406],[6.74,51.41],[6.732,51.418],[6.718,51.427],[6.713,51.434],[6.712,51.439],[6.715,51.448],[6.724,51.455],[6.721,51.462],[6.715,51.466],[6.69,51.475],[6.686,51.481],[6.688,51.486],[6.702,51.494],[6.715,51.498],[6.723,51.508],[6.717,51.514],[6.713,51.52],[6.709,51.521],[6.691,51.528],[6.686,51.533],[6.681,51.54],[6.682,51.546],[6.689,51.553],[6.691,51.556],[6.691,51.56],[6.691,51.565],[6.687,51.571],[6.678,51.576],[6.662,51.578],[6.652,51.577],[6.642,51.574],[6.633,51.57],[6.63,51.569],[6.612,51.568],[6.606,51.57],[6.602,51.573],[6.601,51.583],[6.603,51.59],[6.6,51.596],[6.592,51.612],[6.59,51.619],[6.592,51.625],[6.599,51.63],[6.599,51.634],[6.602,51.636],[6.605,51.642],[6.603,51.652],[6.592,51.657],[6.585,51.66],[6.566,51.659],[6.56,51.659],[6.543,51.66],[6.523,51.662],[6.499,51.662],[6.486,51.667],[6.48,51.671],[6.477,51.675],[6.476,51.68],[6.475,51.687],[6.473,51.691],[6.468,51.697],[6.463,51.702],[6.461,51.703],[6.454,51.706],[6.443,51.708],[6.433,51.71],[6.429,51.71],[6.418,51.713],[6.411,51.719],[6.412,51.724],[6.418,51.731],[6.424,51.738],[6.422,51.747],[6.418,51.752],[6.41,51.755],[6.4,51.756],[6.391,51.756],[6.35,51.756],[6.335,51.767],[6.331,51.775],[6.327,51.784],[6.316,51.798],[6.306,51.806],[6.282,51.819],[6.252,51.827],[6.223,51.83],[6.183,51.839],[6.166,51.843],[6.163,51.844],[6.162,51.845],[6.156,51.846],[6.15,51.847],[6.148,51.848],[6.148,51.849],[6.146,51.849],[6.143,51.849],[6.141,51.849],[6.14,51.849],[6.134,51.85],[6.132,51.85],[6.131,51.85],[6.119,51.85],[6.115,51.85],[6.111,51.849],[6.107,51.85],[6.106,51.85],[6.102,51.851],[6.101,51.851],[6.099,51.852],[6.098,51.853],[6.095,51.853],[6.093,51.854],[6.092,51.854],[6.093,51.855],[6.093,51.856],[6.093,51.857],[6.091,51.858],[6.09,51.858],[6.089,51.858],[6.089,51.857],[6.088,51.857],[6.086,51.858],[6.086,51.858],[6.085,51.858],[6.084,51.859],[6.083,51.86],[6.079,51.862],[6.079,51.862],[6.076,51.862],[6.07,51.866],[6.067,51.867],[6.062,51.869],[6.058,51.87],[6.032,51.881],[6.024,51.892],[6.022,51.894],[6.022,51.896],[6.02,51.898],[6.017,51.9],[6.014,51.901],[6.012,51.902],[6.008,51.903],[6.002,51.905],[5.993,51.908],[5.99,51.91],[5.984,51.915],[5.978,51.921],[5.976,51.923],[5.968,51.928],[5.965,51.931],[5.963,51.932],[5.961,51.935],[5.96,51.939],[5.959,51.942],[5.958,51.944],[5.957,51.946],[5.954,51.948],[5.949,51.951],[5.942,51.954],[5.94,51.955],[5.938,51.956],[5.936,51.958],[5.934,51.96],[5.933,51.965],[5.932,51.966],[5.93,51.967],[5.928,51.968],[5.926,51.969],[5.923,51.97],[5.92,51.97],[5.917,51.971],[5.915,51.972],[5.913,51.973],[5.91,51.974],[5.907,51.975],[5.907,51.974],[5.904,51.975],[5.904,51.975],[5.9,51.98],[5.893,51.983],[5.889,51.983],[5.886,51.983],[5.883,51.983],[5.88,51.982],[5.875,51.981],[5.874,51.981],[5.872,51.98],[5.873,51.979],[5.872,51.978],[5.871,51.977],[5.869,51.975],[5.867,51.973],[5.866,51.973],[5.859,51.968],[5.858,51.968],[5.857,51.968],[5.855,51.968],[5.853,51.969],[5.853,51.969],[5.851,51.97],[5.843,51.972],[5.84,51.973],[5.836,51.973],[5.833,51.973],[5.83,51.973],[5.827,51.972],[5.825,51.972],[5.813,51.965],[5.81,51.964],[5.808,51.963],[5.801,51.962],[5.797,51.962],[5.793,51.961],[5.787,51.96],[5.785,51.959],[5.772,51.96],[5.771,51.96],[5.763,51.963],[5.757,51.965],[5.745,51.971],[5.74,51.971],[5.737,51.971],[5.731,51.969],[5.723,51.963],[5.72,51.963],[5.718,51.963],[5.714,51.962],[5.711,51.962],[5.705,51.962],[5.704,51.961],[5.702,51.961],[5.7,51.961],[5.694,51.96],[5.691,51.959],[5.69,51.959],[5.687,51.959],[5.684,51.959],[5.681,51.958],[5.676,51.956],[5.673,51.954],[5.669,51.952],[5.664,51.952],[5.656,51.953],[5.654,51.953],[5.652,51.953],[5.649,51.953],[5.646,51.952],[5.643,51.949],[5.642,51.948],[5.641,51.947],[5.64,51.947],[5.638,51.945],[5.635,51.943],[5.633,51.942],[5.63,51.942],[5.607,51.944],[5.603,51.945],[5.596,51.949],[5.593,51.95],[5.591,51.951],[5.585,51.951],[5.572,51.954],[5.57,51.954],[5.563,51.955],[5.56,51.956],[5.557,51.957],[5.558,51.958],[5.558,51.959],[5.555,51.961],[5.555,51.96],[5.555,51.959],[5.554,51.959],[5.552,51.96],[5.55,51.961],[5.547,51.963],[5.545,51.966],[5.541,51.966],[5.54,51.966],[5.529,51.969],[5.519,51.971],[5.509,51.973],[5.506,51.974],[5.504,51.975],[5.5,51.977],[5.497,51.979],[5.49,51.981],[5.486,51.983],[5.484,51.983],[5.482,51.983],[5.474,51.984],[5.471,51.984],[5.467,51.984],[5.458,51.985],[5.454,51.985],[5.451,51.986],[5.448,51.987],[5.445,51.987],[5.442,51.988],[5.44,51.988],[5.437,51.987],[5.435,51.987],[5.432,51.987],[5.433,51.985],[5.43,51.984],[5.429,51.985],[5.428,51.985],[5.426,51.984],[5.426,51.983],[5.425,51.982],[5.424,51.982],[5.421,51.98],[5.42,51.98],[5.414,51.978],[5.412,51.977],[5.41,51.977],[5.407,51.977],[5.405,51.976],[5.404,51.976],[5.401,51.975],[5.399,51.975],[5.397,51.974],[5.396,51.974],[5.394,51.974],[5.393,51.974],[5.392,51.973],[5.392,51.973],[5.393,51.972],[5.386,51.97],[5.383,51.97],[5.38,51.97],[5.375,51.97],[5.372,51.971],[5.37,51.971],[5.364,51.972],[5.362,51.972],[5.345,51.968],[5.34,51.963],[5.336,51.961],[5.336,51.96],[5.334,51.959],[5.332,51.958],[5.328,51.957],[5.324,51.956],[5.322,51.956],[5.319,51.956],[5.316,51.957],[5.314,51.958],[5.311,51.959],[5.308,51.961],[5.304,51.962],[5.301,51.963],[5.297,51.964],[5.292,51.964],[5.288,51.964],[5.284,51.964],[5.278,51.965],[5.274,51.966],[5.271,51.967],[5.266,51.968],[5.263,51.97],[5.26,51.971],[5.257,51.973],[5.255,51.974],[5.248,51.979],[5.244,51.981],[5.24,51.981],[5.237,51.981],[5.231,51.979],[5.226,51.973],[5.223,51.969],[5.22,51.966],[5.218,51.964],[5.215,51.963],[5.212,51.961],[5.208,51.961],[5.205,51.961],[5.201,51.961],[5.198,51.962],[5.195,51.963],[5.19,51.965],[5.187,51.966],[5.179,51.969],[5.174,51.971],[5.166,51.972],[5.163,51.972],[5.158,51.972],[5.156,51.973],[5.155,51.973],[5.151,51.975],[5.151,51.975],[5.149,51.975],[5.146,51.975],[5.145,51.977],[5.143,51.98],[5.135,51.988],[5.133,51.991],[5.13,51.993],[5.126,51.996],[5.12,51.998],[5.116,51.999],[5.109,52.001],[5.105,52.002],[5.101,52.002],[5.097,52.002],[5.094,52.001],[5.091,52.001],[5.087,51.999],[5.083,51.998],[5.082,51.998],[5.077,51.996],[5.074,51.995],[5.073,51.993],[5.07,51.992],[5.067,51.992],[5.065,51.991],[5.064,51.989],[5.064,51.988],[5.063,51.986],[5.062,51.986],[5.06,51.985],[5.059,51.985],[5.058,51.986],[5.058,51.987],[5.055,51.986],[5.054,51.985],[5.05,51.983],[5.048,51.982],[5.045,51.98],[5.042,51.978],[5.042,51.978],[5.04,51.976],[5.04,51.974],[5.039,51.972],[5.037,51.971],[5.035,51.969],[5.032,51.968],[5.03,51.967],[5.027,51.967],[5.025,51.967],[5.022,51.968],[5.019,51.968],[5.017,51.97],[5.015,51.971],[5.012,51.973],[5.009,51.974],[5.007,51.976],[5.004,51.977],[5.001,51.977],[4.999,51.976],[5.003,51.977],[4.999,51.977],[4.995,51.977],[4.99,51.975],[4.986,51.974],[4.985,51.973],[4.981,51.969],[4.973,51.962],[4.968,51.96],[4.964,51.96],[4.96,51.96],[4.956,51.961],[4.952,51.963],[4.95,51.963],[4.947,51.962],[4.945,51.963],[4.944,51.963],[4.941,51.963],[4.939,51.962],[4.936,51.96],[4.935,51.959],[4.931,51.958],[4.929,51.957],[4.928,51.956],[4.927,51.956],[4.927,51.954],[4.926,51.953],[4.925,51.953],[4.922,51.95],[4.92,51.948],[4.916,51.944],[4.914,51.944],[4.909,51.943],[4.902,51.942],[4.893,51.942],[4.889,51.941],[4.882,51.94],[4.878,51.939],[4.873,51.939],[4.868,51.939],[4.866,51.94],[4.862,51.939],[4.859,51.94],[4.853,51.941],[4.851,51.941],[4.846,51.94],[4.838,51.939],[4.835,51.938],[4.833,51.937],[4.83,51.934],[4.824,51.931],[4.819,51.927],[4.775,51.915],[4.773,51.915],[4.771,51.915],[4.769,51.915],[4.766,51.914],[4.761,51.911],[4.759,51.911],[4.733,51.904],[4.732,51.903],[4.731,51.903],[4.727,51.901],[4.726,51.9],[4.723,51.899],[4.72,51.898],[4.716,51.898],[4.714,51.898],[4.704,51.899],[4.701,51.899],[4.698,51.899],[4.696,51.898],[4.693,51.897],[4.67,51.888],[4.658,51.888],[4.656,51.888],[4.653,51.888],[4.649,51.888],[4.646,51.889],[4.643,51.889],[4.64,51.889],[4.639,51.889],[4.635,51.889],[4.633,51.889],[4.631,51.888],[4.629,51.889],[4.628,51.888],[4.622,51.888],[4.617,51.888],[4.615,51.889],[4.614,51.89],[4.608,51.89],[4.604,51.891],[4.604,51.891],[4.599,51.891],[4.596,51.892],[4.593,51.893],[4.59,51.894],[4.589,51.894],[4.588,51.895],[4.585,51.897],[4.583,51.899],[4.581,51.9],[4.579,51.901],[4.576,51.901],[4.576,51.9],[4.573,51.9],[4.572,51.902],[4.57,51.901],[4.568,51.901],[4.566,51.901],[4.561,51.906],[4.568,51.91],[4.57,51.912],[4.572,51.913],[4.577,51.915],[4.58,51.918],[4.579,51.919],[4.579,51.921],[4.58,51.922],[4.581,51.922],[4.584,51.922],[4.587,51.923],[4.588,51.923],[4.589,51.924],[4.591,51.925],[4.593,51.926],[4.596,51.927],[4.6,51.928],[4.601,51.928],[4.606,51.928],[4.608,51.927],[4.609,51.927],[4.611,51.928],[4.611,51.928],[4.611,51.93],[4.611,51.931],[4.611,51.932],[4.616,51.934],[4.617,51.934],[4.619,51.937],[4.62,51.938],[4.621,51.938],[4.622,51.938],[4.624,51.938],[4.628,51.938],[4.631,51.938],[4.631,51.938],[4.633,51.942],[4.634,51.944],[4.635,51.947],[4.636,51.951],[4.637,51.952],[4.638,51.953],[4.64,51.954],[4.642,51.955],[4.642,51.955],[4.642,51.956],[4.64,51.959],[4.637,51.961],[4.635,51.962],[4.632,51.965],[4.633,51.969],[4.638,51.972],[4.642,51.973],[4.645,51.973],[4.648,51.974],[4.649,51.975],[4.653,51.977],[4.654,51.978],[4.658,51.978],[4.66,51.979],[4.664,51.98],[4.668,51.981],[4.668,51.982],[4.667,51.982],[4.668,51.983],[4.668,51.984],[4.67,51.986],[4.671,51.987],[4.674,51.989],[4.676,51.99],[4.678,51.992],[4.679,51.993],[4.683,51.995],[4.685,51.996],[4.687,51.998],[4.689,51.998],[4.69,51.999],[4.692,51.999],[4.693,52.004],[4.692,52.006],[4.691,52.008],[4.689,52.009],[4.687,52.011],[4.685,52.013],[4.683,52.016],[4.681,52.021],[4.677,52.022],[4.674,52.023],[4.672,52.023],[4.67,52.024],[4.669,52.026],[4.665,52.028],[4.661,52.032],[4.66,52.037],[4.66,52.041],[4.662,52.049],[4.664,52.059],[4.66,52.064],[4.659,52.07],[4.66,52.075],[4.661,52.082],[4.662,52.084],[4.662,52.087],[4.663,52.089],[4.663,52.091],[4.664,52.096],[4.665,52.1],[4.668,52.106],[4.671,52.111],[4.672,52.113],[4.673,52.115],[4.675,52.119],[4.673,52.12],[4.669,52.121],[4.668,52.121],[4.667,52.122],[4.665,52.124],[4.663,52.128],[4.664,52.131],[4.664,52.136],[4.663,52.139],[4.663,52.14],[4.662,52.141],[4.659,52.142],[4.657,52.142],[4.653,52.143],[4.651,52.143],[4.649,52.143],[4.647,52.143],[4.636,52.14],[4.632,52.14],[4.63,52.139],[4.627,52.138],[4.626,52.137],[4.623,52.135],[4.622,52.134],[4.621,52.132],[4.618,52.131],[4.615,52.13],[4.612,52.13],[4.599,52.132],[4.595,52.132],[4.591,52.132],[4.588,52.13],[4.584,52.129],[4.581,52.129],[4.572,52.129],[4.566,52.13],[4.561,52.132],[4.558,52.134],[4.553,52.137],[4.548,52.139],[4.543,52.141],[4.537,52.141],[4.534,52.142],[4.532,52.142],[4.53,52.143],[4.529,52.144],[4.526,52.145],[4.524,52.147],[4.522,52.154],[4.521,52.154],[4.52,52.155],[4.518,52.156],[4.513,52.157],[4.512,52.157],[4.511,52.157],[4.509,52.157],[4.504,52.157],[4.505,52.158],[4.505,52.159],[4.506,52.161],[4.506,52.161],[4.505,52.162],[4.504,52.162],[4.503,52.163],[4.5,52.163],[4.499,52.164],[4.494,52.164],[4.493,52.164],[4.492,52.164],[4.491,52.164],[4.49,52.164],[4.487,52.165],[4.485,52.164],[4.483,52.163],[4.481,52.161],[4.479,52.159],[4.476,52.159],[4.474,52.158],[4.472,52.157],[4.47,52.155],[4.468,52.154],[4.465,52.152],[4.463,52.153],[4.46,52.154],[4.457,52.156],[4.455,52.158],[4.45,52.161],[4.449,52.162],[4.448,52.163],[4.447,52.165],[4.447,52.167],[4.447,52.17],[4.447,52.171],[4.448,52.172],[4.449,52.173],[4.449,52.178],[4.447,52.179],[4.444,52.179],[4.441,52.18],[4.436,52.181],[4.434,52.183],[4.43,52.187],[4.427,52.189],[4.427,52.191],[4.426,52.192],[4.427,52.194],[4.428,52.194],[4.429,52.195],[4.431,52.196],[4.43,52.197],[4.421,52.203],[4.418,52.204],[4.409,52.207]],[[5.264,43.291],[5.164,43.291],[5.064,43.291],[4.964,43.291],[4.864,43.291],[4.764,43.291],[4.664,43.291],[4.564,43.391],[4.627,43.687]],[[4.717,44.125],[4.716,44.123],[4.717,44.122],[4.718,44.119],[4.719,44.117],[4.719,44.116],[4.72,44.114],[4.721,44.111],[4.721,44.11],[4.722,44.109],[4.724,44.108],[4.726,44.106],[4.727,44.105],[4.729,44.104],[4.728,44.102],[4.727,44.101],[4.726,44.1],[4.726,44.098],[4.726,44.097],[4.726,44.097],[4.726,44.097],[4.726,44.096],[4.727,44.095],[4.727,44.094],[4.729,44.092],[4.73,44.092],[4.732,44.091],[4.732,44.091],[4.734,44.09],[4.735,44.089],[4.737,44.089],[4.74,44.088],[4.746,44.087],[4.75,44.086],[4.752,44.085],[4.754,44.084],[4.757,44.083],[4.758,44.081],[4.76,44.079],[4.762,44.077],[4.765,44.075],[4.767,44.074],[4.769,44.073],[4.771,44.072],[4.775,44.072],[4.779,44.071],[4.779,44.071],[4.782,44.07],[4.787,44.069],[4.788,44.068],[4.79,44.066],[4.79,44.065],[4.791,44.063],[4.791,44.061],[4.791,44.06],[4.791,44.059],[4.79,44.058],[4.79,44.055],[4.79,44.054],[4.791,44.053],[4.793,44.051],[4.797,44.05],[4.798,44.049],[4.803,44.046],[4.806,44.044],[4.808,44.042],[4.81,44.04],[4.813,44.038],[4.815,44.036],[4.817,44.035],[4.818,44.033],[4.819,44.031],[4.82,44.028],[4.82,44.027],[4.821,44.022],[4.82,44.013],[4.821,44.01],[4.821,44.008],[4.822,44.006],[4.822,44.006],[4.821,44.003],[4.821,44],[4.821,43.999],[4.821,43.995],[4.821,43.992],[4.82,43.988],[4.819,43.982],[4.819,43.977],[4.818,43.976],[4.818,43.974],[4.818,43.972],[4.817,43.969],[4.817,43.966],[4.816,43.965],[4.816,43.964],[4.815,43.963],[4.814,43.962],[4.811,43.96],[4.807,43.959],[4.803,43.957],[4.8,43.956],[4.798,43.954],[4.796,43.953],[4.795,43.953],[4.795,43.952],[4.794,43.951],[4.792,43.949],[4.791,43.947],[4.79,43.946],[4.788,43.944],[4.787,43.943],[4.785,43.942],[4.785,43.942],[4.786,43.941],[4.771,43.938],[4.766,43.937],[4.759,43.936],[4.755,43.935],[4.75,43.934],[4.746,43.932],[4.743,43.929],[4.739,43.926],[4.736,43.923],[4.733,43.919],[4.729,43.915],[4.726,43.911],[4.723,43.909],[4.721,43.907],[4.718,43.906],[4.713,43.904],[4.706,43.902],[4.704,43.902],[4.701,43.9],[4.7,43.9],[4.697,43.898],[4.693,43.894],[4.69,43.89],[4.687,43.887],[4.685,43.886],[4.683,43.885],[4.675,43.883],[4.665,43.88],[4.661,43.879],[4.656,43.877],[4.65,43.874],[4.646,43.872],[4.643,43.871],[4.64,43.87],[4.634,43.87],[4.627,43.869],[4.625,43.868],[4.622,43.866],[4.621,43.865],[4.619,43.863],[4.619,43.861],[4.618,43.858],[4.618,43.853],[4.62,43.849],[4.623,43.843],[4.623,43.843],[4.622,43.843],[4.621,43.842],[4.622,43.841],[4.622,43.839],[4.623,43.836],[4.623,43.834],[4.624,43.833],[4.624,43.832],[4.624,43.83],[4.624,43.83],[4.625,43.828],[4.626,43.827],[4.627,43.826],[4.628,43.825],[4.628,43.825],[4.63,43.824],[4.632,43.823],[4.633,43.823],[4.634,43.823],[4.636,43.822],[4.638,43.821],[4.639,43.821],[4.641,43.819],[4.643,43.817],[4.644,43.816],[4.645,43.815],[4.646,43.814],[4.648,43.813],[4.648,43.811],[4.648,43.81],[4.649,43.809],[4.649,43.807],[4.649,43.806],[4.65,43.805],[4.65,43.805],[4.649,43.804],[4.649,43.804],[4.649,43.802],[4.649,43.801],[4.648,43.8],[4.648,43.799],[4.648,43.8],[4.647,43.8],[4.647,43.801],[4.647,43.801],[4.647,43.8],[4.648,43.798],[4.648,43.796],[4.647,43.795],[4.647,43.793],[4.648,43.791],[4.649,43.789],[4.649,43.788],[4.649,43.785],[4.647,43.782],[4.644,43.778],[4.64,43.776],[4.639,43.775],[4.638,43.774],[4.638,43.774],[4.637,43.773],[4.636,43.772],[4.635,43.772],[4.634,43.771],[4.633,43.77],[4.632,43.769],[4.63,43.767],[4.629,43.767],[4.629,43.767],[4.628,43.767],[4.628,43.767],[4.627,43.766],[4.626,43.766],[4.626,43.766],[4.625,43.765],[4.626,43.765],[4.628,43.764],[4.628,43.758],[4.628,43.756],[4.628,43.756],[4.627,43.755],[4.627,43.755],[4.627,43.754],[4.627,43.753],[4.626,43.753],[4.625,43.746],[4.625,43.745],[4.625,43.744],[4.624,43.743],[4.623,43.742],[4.623,43.742],[4.622,43.741],[4.622,43.74],[4.622,43.74],[4.621,43.739],[4.621,43.739],[4.62,43.736],[4.619,43.734],[4.619,43.733],[4.618,43.733],[4.618,43.733],[4.617,43.732],[4.617,43.731],[4.618,43.728],[4.618,43.727],[4.618,43.727],[4.618,43.725],[4.618,43.725],[4.619,43.725],[4.619,43.725],[4.619,43.724],[4.618,43.724],[4.618,43.723],[4.617,43.722],[4.617,43.721],[4.617,43.72],[4.617,43.72],[4.617,43.719],[4.617,43.717],[4.617,43.717],[4.618,43.717],[4.618,43.716],[4.617,43.715],[4.618,43.715],[4.618,43.714],[4.619,43.712],[4.619,43.71],[4.619,43.708],[4.62,43.707],[4.62,43.706],[4.62,43.705],[4.621,43.704],[4.622,43.702],[4.625,43.699],[4.626,43.699],[4.627,43.697],[4.628,43.695],[4.628,43.694],[4.628,43.694],[4.629,43.694],[4.629,43.694],[4.63,43.691],[4.63,43.69],[4.628,43.688]],[[4.801,44.159],[4.798,44.158],[4.797,44.157],[4.796,44.157],[4.796,44.156],[4.794,44.155],[4.793,44.154],[4.791,44.153],[4.789,44.152],[4.789,44.151],[4.788,44.15],[4.787,44.149],[4.785,44.148],[4.783,44.149],[4.782,44.149],[4.781,44.149],[4.78,44.15],[4.778,44.149],[4.777,44.149],[4.776,44.15],[4.775,44.15],[4.773,44.15],[4.772,44.149],[4.771,44.149],[4.769,44.15],[4.769,44.149],[4.768,44.147],[4.767,44.146],[4.766,44.146],[4.765,44.146],[4.764,44.146],[4.763,44.147],[4.761,44.147],[4.76,44.147],[4.758,44.146],[4.757,44.146],[4.755,44.145],[4.754,44.145],[4.753,44.145],[4.751,44.145],[4.751,44.146],[4.75,44.147],[4.749,44.148],[4.748,44.148],[4.747,44.148],[4.745,44.148],[4.744,44.148],[4.742,44.148],[4.739,44.148],[4.738,44.148],[4.737,44.148],[4.735,44.147],[4.734,44.147],[4.732,44.146],[4.731,44.146],[4.731,44.145],[4.731,44.145],[4.731,44.143],[4.731,44.143],[4.73,44.143],[4.73,44.142],[4.731,44.142],[4.731,44.142],[4.731,44.141],[4.731,44.141],[4.731,44.141],[4.733,44.139],[4.733,44.139],[4.734,44.137],[4.734,44.136],[4.734,44.135],[4.731,44.134],[4.731,44.133],[4.73,44.132],[4.727,44.131],[4.725,44.131],[4.723,44.13],[4.721,44.129],[4.719,44.128],[4.718,44.127],[4.717,44.125]],[[6.002,47.224],[6,47.222],[5.999,47.22],[5.997,47.219],[5.996,47.217],[5.995,47.216],[5.995,47.214],[5.995,47.214],[5.993,47.213],[5.992,47.212],[5.991,47.21],[5.99,47.21],[5.987,47.208],[5.986,47.208],[5.985,47.208],[5.984,47.209],[5.983,47.209],[5.981,47.209],[5.977,47.209],[5.974,47.209],[5.972,47.209],[5.97,47.209],[5.968,47.209],[5.965,47.209],[5.963,47.209],[5.963,47.209],[5.962,47.208],[5.961,47.207],[5.961,47.206],[5.96,47.204],[5.961,47.203],[5.962,47.203],[5.963,47.202],[5.965,47.2],[5.966,47.199],[5.966,47.199],[5.965,47.197],[5.964,47.196],[5.963,47.195],[5.962,47.195],[5.959,47.193],[5.958,47.193],[5.957,47.192],[5.955,47.192],[5.951,47.191],[5.949,47.19],[5.948,47.189],[5.944,47.186],[5.939,47.184],[5.934,47.182],[5.927,47.181],[5.921,47.179],[5.915,47.179],[5.908,47.181],[5.9,47.185],[5.894,47.19],[5.89,47.191],[5.885,47.19],[5.883,47.187],[5.885,47.184],[5.888,47.181],[5.894,47.18],[5.896,47.178],[5.897,47.176],[5.897,47.175],[5.896,47.172],[5.893,47.17],[5.887,47.169],[5.886,47.166],[5.886,47.165],[5.886,47.165],[5.886,47.164],[5.886,47.161],[5.886,47.16],[5.886,47.159],[5.887,47.158],[5.887,47.157],[5.887,47.156],[5.888,47.156],[5.889,47.154],[5.889,47.154],[5.889,47.153],[5.889,47.153],[5.889,47.152],[5.888,47.152],[5.887,47.152],[5.886,47.152],[5.885,47.151],[5.884,47.151],[5.883,47.15],[5.88,47.15],[5.877,47.15],[5.875,47.15],[5.872,47.15],[5.87,47.149],[5.869,47.149],[5.867,47.148],[5.865,47.147],[5.863,47.146],[5.862,47.145],[5.86,47.143],[5.857,47.142],[5.854,47.142],[5.852,47.142],[5.851,47.141],[5.849,47.141],[5.846,47.141],[5.844,47.141],[5.842,47.142],[5.84,47.143],[5.839,47.143],[5.839,47.144],[5.84,47.144],[5.841,47.144],[5.841,47.145],[5.842,47.146],[5.842,47.146],[5.842,47.147],[5.842,47.147],[5.843,47.148],[5.843,47.149],[5.842,47.149],[5.843,47.15],[5.843,47.151],[5.843,47.151],[5.845,47.152],[5.846,47.152],[5.847,47.153],[5.849,47.154],[5.85,47.154],[5.851,47.155],[5.852,47.156],[5.853,47.157],[5.853,47.158],[5.854,47.159],[5.856,47.16],[5.857,47.162],[5.857,47.163],[5.857,47.163],[5.857,47.165],[5.857,47.165],[5.857,47.166],[5.856,47.167],[5.855,47.168],[5.854,47.17],[5.853,47.171],[5.853,47.172],[5.852,47.172],[5.851,47.173],[5.85,47.174],[5.849,47.174],[5.847,47.174],[5.845,47.175],[5.843,47.175],[5.842,47.175],[5.84,47.176],[5.838,47.176],[5.837,47.176],[5.836,47.176],[5.834,47.176],[5.832,47.175],[5.831,47.175],[5.829,47.174],[5.828,47.175],[5.827,47.175],[5.826,47.174],[5.821,47.176],[5.815,47.177],[5.809,47.178],[5.803,47.179],[5.795,47.179],[5.788,47.178],[5.783,47.177],[5.778,47.174],[5.774,47.171],[5.772,47.169],[5.769,47.169],[5.769,47.168],[5.768,47.168],[5.768,47.167],[5.767,47.165],[5.767,47.163],[5.767,47.162],[5.765,47.162],[5.763,47.161],[5.762,47.16],[5.76,47.16],[5.759,47.159],[5.758,47.159],[5.756,47.158],[5.755,47.158],[5.753,47.157],[5.75,47.157],[5.749,47.158],[5.748,47.158],[5.746,47.158],[5.745,47.159],[5.744,47.159],[5.742,47.16],[5.741,47.16],[5.74,47.16],[5.736,47.159],[5.731,47.157],[5.73,47.156],[5.727,47.156],[5.726,47.156],[5.724,47.155],[5.723,47.153],[5.722,47.152],[5.722,47.152],[5.721,47.151],[5.719,47.15],[5.718,47.15],[5.716,47.149],[5.714,47.149],[5.712,47.148],[5.71,47.149],[5.708,47.149],[5.707,47.15],[5.706,47.15],[5.706,47.151],[5.706,47.152],[5.708,47.152],[5.709,47.152],[5.71,47.152],[5.711,47.152],[5.712,47.153],[5.713,47.153],[5.714,47.154],[5.715,47.156],[5.715,47.157],[5.715,47.158],[5.713,47.158],[5.708,47.158],[5.701,47.157],[5.694,47.157],[5.689,47.155],[5.685,47.153],[5.68,47.151],[5.676,47.149],[5.673,47.148],[5.672,47.147],[5.67,47.147],[5.667,47.147],[5.666,47.148],[5.664,47.148],[5.663,47.149],[5.662,47.15],[5.662,47.15],[5.662,47.151],[5.662,47.151],[5.663,47.152],[5.664,47.152],[5.664,47.153],[5.663,47.153],[5.662,47.154],[5.66,47.154],[5.654,47.154],[5.649,47.154],[5.645,47.155],[5.643,47.155],[5.642,47.155],[5.64,47.154],[5.638,47.153],[5.636,47.153],[5.635,47.152],[5.635,47.151],[5.635,47.149],[5.635,47.148],[5.635,47.147],[5.634,47.146],[5.633,47.146],[5.632,47.146],[5.63,47.146],[5.627,47.146],[5.624,47.146],[5.62,47.146],[5.617,47.146],[5.614,47.146],[5.612,47.147],[5.61,47.148],[5.609,47.148],[5.607,47.149],[5.606,47.148],[5.602,47.147],[5.6,47.147],[5.6,47.146],[5.601,47.145],[5.601,47.145],[5.601,47.144],[5.601,47.144],[5.6,47.143],[5.599,47.143],[5.598,47.143],[5.597,47.142],[5.596,47.141],[5.595,47.14],[5.594,47.14],[5.593,47.14],[5.593,47.14],[5.589,47.138],[5.588,47.138],[5.587,47.138],[5.586,47.139],[5.585,47.139],[5.584,47.14],[5.583,47.141],[5.582,47.142],[5.582,47.143],[5.58,47.142],[5.567,47.135],[5.567,47.134],[5.567,47.134],[5.564,47.131],[5.562,47.13],[5.561,47.129],[5.56,47.128],[5.559,47.127],[5.557,47.126],[5.554,47.124],[5.553,47.122],[5.552,47.121],[5.551,47.12],[5.55,47.119],[5.55,47.117],[5.55,47.116],[5.551,47.114],[5.551,47.111],[5.551,47.11],[5.551,47.109],[5.55,47.109],[5.549,47.108],[5.547,47.107],[5.545,47.107],[5.543,47.106],[5.54,47.105],[5.537,47.104],[5.534,47.102],[5.533,47.101],[5.532,47.1],[5.531,47.099],[5.531,47.098],[5.531,47.097],[5.532,47.095],[5.533,47.094],[5.534,47.093],[5.534,47.093],[5.532,47.092],[5.531,47.092],[5.531,47.093],[5.531,47.093],[5.529,47.093],[5.527,47.092],[5.525,47.091],[5.524,47.09],[5.522,47.09],[5.522,47.089],[5.52,47.089],[5.519,47.09],[5.518,47.09],[5.518,47.091],[5.517,47.092],[5.516,47.093],[5.513,47.094],[5.512,47.095],[5.505,47.097],[5.501,47.097],[5.5,47.097],[5.5,47.097],[5.499,47.097],[5.499,47.097],[5.499,47.098],[5.498,47.097],[5.497,47.097],[5.495,47.096],[5.493,47.096],[5.491,47.095],[5.487,47.093],[5.485,47.091],[5.484,47.09],[5.484,47.089],[5.484,47.088],[5.485,47.088],[5.486,47.087],[5.487,47.086],[5.487,47.083],[5.482,47.081],[5.479,47.08],[5.475,47.079],[5.472,47.078],[5.471,47.077],[5.471,47.076],[5.47,47.075],[5.47,47.075],[5.471,47.073],[5.473,47.071],[5.474,47.069],[5.477,47.068],[5.478,47.066],[5.478,47.065],[5.477,47.064],[5.475,47.064],[5.474,47.064],[5.469,47.065],[5.469,47.065],[5.467,47.065],[5.466,47.064],[5.464,47.063],[5.462,47.062],[5.459,47.06],[5.459,47.06],[5.457,47.059],[5.455,47.058],[5.453,47.058],[5.451,47.058],[5.448,47.058],[5.447,47.058],[5.447,47.057],[5.448,47.056],[5.449,47.056],[5.451,47.054],[5.452,47.054],[5.454,47.052],[5.455,47.051],[5.456,47.048],[5.456,47.047],[5.456,47.045],[5.455,47.045],[5.455,47.043],[5.454,47.042],[5.451,47.04],[5.45,47.039],[5.448,47.038],[5.447,47.037],[5.446,47.037],[5.447,47.036],[5.447,47.036],[5.446,47.035],[5.446,47.034],[5.446,47.034],[5.446,47.033],[5.448,47.032],[5.449,47.031],[5.449,47.03],[5.449,47.03],[5.45,47.027],[5.45,47.025],[5.45,47.022],[5.45,47.021],[5.45,47.02],[5.45,47.019],[5.45,47.018],[5.449,47.017],[5.448,47.016],[5.447,47.015],[5.445,47.014],[5.444,47.013],[5.443,47.013],[5.443,47.012],[5.442,47.011],[5.44,47.01],[5.439,47.01],[5.437,47.009],[5.434,47.01],[5.432,47.011],[5.43,47.011],[5.429,47.012],[5.428,47.012],[5.427,47.013],[5.427,47.014],[5.425,47.015],[5.425,47.016],[5.423,47.018],[5.421,47.02],[5.417,47.021],[5.415,47.021],[5.414,47.022],[5.412,47.022],[5.409,47.022],[5.407,47.022],[5.405,47.022],[5.404,47.022],[5.403,47.021],[5.401,47.018],[5.401,47.017],[5.4,47.015],[5.4,47.013],[5.398,47.011],[5.396,47.01],[5.395,47.01],[5.393,47.01],[5.392,47.01],[5.391,47.011],[5.389,47.011],[5.387,47.011],[5.384,47.011],[5.382,47.012],[5.381,47.012],[5.381,47.012],[5.379,47.011],[5.377,47.009],[5.377,47.009],[5.376,47.008],[5.375,47.006],[5.376,47.004],[5.376,47.003],[5.377,47.001],[5.377,47.001],[5.377,47],[5.377,47],[5.378,46.999],[5.379,46.998],[5.379,46.997],[5.38,46.996],[5.381,46.994],[5.381,46.993],[5.381,46.992],[5.38,46.991],[5.379,46.989],[5.378,46.988],[5.378,46.988],[5.377,46.988],[5.376,46.987],[5.376,46.986],[5.376,46.985],[5.376,46.984],[5.375,46.983],[5.375,46.982],[5.376,46.981],[5.377,46.98],[5.378,46.978],[5.378,46.977],[5.379,46.976],[5.38,46.975],[5.38,46.974],[5.381,46.973],[5.382,46.971],[5.382,46.971],[5.383,46.971],[5.383,46.97],[5.384,46.97],[5.384,46.969],[5.384,46.968],[5.385,46.967],[5.385,46.966],[5.385,46.965],[5.385,46.964],[5.385,46.963],[5.384,46.963],[5.383,46.963],[5.38,46.962],[5.379,46.961],[5.377,46.96],[5.373,46.959],[5.372,46.959],[5.372,46.958],[5.371,46.958],[5.371,46.958],[5.369,46.957],[5.369,46.957],[5.367,46.956],[5.366,46.955],[5.365,46.954],[5.364,46.953],[5.364,46.951],[5.364,46.95],[5.365,46.949],[5.365,46.949],[5.365,46.948],[5.365,46.947],[5.366,46.947],[5.366,46.946],[5.366,46.946],[5.365,46.943],[5.365,46.943],[5.367,46.942],[5.368,46.941],[5.369,46.941],[5.369,46.94],[5.368,46.94],[5.367,46.94],[5.366,46.941],[5.365,46.941],[5.364,46.94],[5.364,46.94],[5.364,46.939],[5.363,46.937],[5.363,46.936],[5.362,46.935],[5.361,46.934],[5.359,46.933],[5.358,46.932],[5.357,46.932],[5.357,46.932],[5.355,46.932],[5.354,46.932],[5.353,46.932],[5.353,46.931],[5.351,46.931],[5.348,46.932],[5.346,46.932],[5.344,46.932],[5.34,46.933],[5.336,46.933],[5.333,46.933],[5.33,46.933],[5.327,46.932],[5.322,46.932],[5.321,46.932],[5.319,46.932],[5.317,46.932],[5.317,46.933],[5.317,46.933],[5.315,46.933],[5.312,46.932],[5.309,46.932],[5.307,46.932],[5.306,46.933],[5.306,46.934],[5.306,46.935],[5.305,46.936],[5.305,46.936],[5.306,46.937],[5.304,46.938],[5.304,46.939],[5.303,46.941],[5.302,46.943],[5.302,46.944],[5.301,46.945],[5.301,46.946],[5.3,46.946],[5.299,46.947],[5.299,46.948],[5.297,46.948],[5.295,46.949],[5.294,46.949],[5.29,46.95],[5.289,46.949],[5.288,46.949],[5.287,46.948],[5.286,46.947],[5.285,46.946],[5.284,46.945],[5.283,46.945],[5.281,46.944],[5.28,46.943],[5.279,46.942],[5.277,46.941],[5.276,46.94],[5.274,46.938],[5.272,46.938],[5.272,46.938],[5.271,46.937],[5.27,46.937],[5.269,46.937],[5.268,46.937],[5.268,46.938],[5.267,46.938],[5.267,46.939],[5.264,46.941],[5.263,46.941],[5.261,46.941],[5.261,46.942],[5.26,46.94],[5.26,46.939],[5.259,46.939],[5.259,46.939],[5.258,46.94],[5.257,46.94],[5.255,46.941],[5.254,46.941],[5.253,46.94],[5.251,46.94],[5.25,46.94],[5.248,46.94],[5.247,46.939],[5.246,46.939],[5.245,46.939],[5.243,46.939],[5.242,46.939],[5.24,46.939],[5.239,46.938],[5.238,46.937],[5.237,46.937],[5.236,46.936],[5.236,46.935],[5.237,46.934],[5.237,46.933],[5.236,46.932],[5.235,46.932],[5.234,46.932],[5.233,46.932],[5.232,46.932],[5.231,46.932],[5.23,46.932],[5.229,46.932],[5.228,46.932],[5.227,46.932],[5.227,46.931],[5.226,46.93],[5.224,46.93],[5.222,46.93],[5.22,46.93],[5.219,46.931],[5.218,46.931],[5.216,46.932],[5.214,46.932],[5.212,46.932],[5.211,46.931],[5.21,46.931],[5.21,46.93],[5.209,46.93],[5.209,46.929],[5.209,46.929],[5.21,46.928],[5.209,46.928],[5.209,46.928],[5.208,46.928],[5.208,46.927],[5.208,46.924],[5.207,46.924],[5.207,46.924],[5.206,46.924],[5.205,46.924],[5.204,46.925],[5.203,46.927],[5.203,46.928],[5.201,46.929],[5.2,46.929],[5.199,46.93],[5.198,46.93],[5.198,46.931],[5.198,46.932],[5.196,46.934],[5.195,46.935],[5.193,46.936],[5.193,46.937],[5.191,46.938],[5.191,46.939],[5.191,46.94],[5.191,46.942],[5.192,46.943],[5.193,46.944],[5.193,46.945],[5.192,46.945],[5.192,46.945],[5.191,46.945],[5.189,46.944],[5.188,46.943],[5.187,46.942],[5.187,46.94],[5.186,46.938],[5.185,46.938],[5.184,46.937],[5.183,46.937],[5.182,46.937],[5.181,46.937],[5.18,46.937],[5.179,46.936],[5.177,46.936],[5.175,46.936],[5.173,46.936],[5.172,46.935],[5.171,46.935],[5.17,46.935],[5.168,46.935],[5.166,46.934],[5.164,46.935],[5.162,46.935],[5.159,46.936],[5.158,46.936],[5.157,46.937],[5.156,46.938],[5.156,46.938],[5.156,46.939],[5.156,46.94],[5.157,46.941],[5.157,46.942],[5.156,46.943],[5.156,46.944],[5.155,46.945],[5.154,46.945],[5.154,46.945],[5.151,46.947],[5.15,46.948],[5.149,46.948],[5.149,46.948],[5.149,46.948],[5.149,46.948],[5.148,46.949],[5.146,46.949],[5.145,46.949],[5.144,46.949],[5.144,46.949],[5.145,46.949],[5.145,46.949],[5.145,46.949],[5.144,46.948],[5.143,46.948],[5.142,46.948],[5.141,46.948],[5.139,46.948],[5.137,46.948],[5.135,46.948],[5.134,46.948],[5.132,46.948],[5.131,46.948],[5.13,46.948],[5.129,46.948],[5.127,46.948],[5.125,46.948],[5.124,46.948],[5.122,46.949],[5.121,46.949],[5.12,46.949],[5.119,46.948],[5.118,46.948],[5.117,46.946],[5.116,46.943],[5.115,46.942],[5.114,46.941],[5.112,46.939],[5.111,46.938],[5.109,46.937],[5.107,46.936],[5.104,46.935],[5.102,46.934],[5.101,46.933],[5.1,46.933],[5.099,46.933],[5.096,46.931],[5.094,46.93],[5.093,46.929],[5.092,46.928],[5.091,46.926],[5.09,46.924],[5.09,46.924],[5.09,46.923],[5.09,46.922],[5.088,46.921],[5.088,46.921],[5.088,46.921],[5.088,46.921],[5.087,46.921],[5.087,46.92],[5.086,46.92],[5.085,46.918],[5.085,46.917],[5.085,46.916],[5.086,46.914],[5.086,46.913],[5.086,46.912],[5.084,46.911],[5.083,46.91],[5.081,46.909],[5.079,46.908],[5.077,46.907],[5.076,46.907],[5.074,46.905],[5.072,46.904],[5.07,46.902],[5.069,46.901],[5.068,46.901],[5.067,46.901],[5.066,46.9],[5.065,46.901],[5.064,46.901],[5.063,46.901],[5.062,46.902],[5.061,46.902],[5.059,46.902],[5.058,46.902],[5.057,46.902],[5.055,46.903],[5.053,46.903],[5.05,46.903],[5.048,46.903],[5.044,46.903],[5.041,46.903],[5.039,46.903],[5.038,46.902],[5.036,46.902],[5.035,46.901],[5.033,46.901],[5.031,46.901],[5.03,46.901],[5.029,46.902],[5.028,46.903],[5.028,46.904],[5.028,46.905],[5.027,46.905],[5.027,46.905],[5.026,46.905],[5.025,46.905],[5.024,46.905],[5.023,46.904],[5.022,46.905],[5.021,46.905],[5.02,46.906],[5.019,46.906],[5.017,46.906],[5.015,46.907],[5.012,46.909],[5.012,46.91],[5.011,46.911],[5.01,46.913],[5.009,46.914],[5.007,46.915],[5.006,46.915],[5.004,46.915],[5.003,46.914],[5.002,46.914],[5.001,46.913],[5,46.912],[4.999,46.911],[4.997,46.909],[4.997,46.909],[4.996,46.909],[4.995,46.909],[4.995,46.908],[4.994,46.907],[4.994,46.907],[4.994,46.906],[4.993,46.906],[4.993,46.905],[4.992,46.905],[4.992,46.904],[4.991,46.904],[4.99,46.904],[4.989,46.904],[4.988,46.904],[4.986,46.904],[4.985,46.904],[4.983,46.904],[4.981,46.904],[4.98,46.905],[4.978,46.905],[4.976,46.905],[4.975,46.905],[4.974,46.905],[4.973,46.905],[4.972,46.905],[4.97,46.904],[4.969,46.904],[4.968,46.903],[4.966,46.902],[4.964,46.901],[4.964,46.901],[4.963,46.901],[4.962,46.901],[4.961,46.9],[4.96,46.9],[4.958,46.9],[4.957,46.9],[4.956,46.9],[4.954,46.899],[4.954,46.899],[4.953,46.899],[4.952,46.898],[4.951,46.898],[4.951,46.896],[4.95,46.895],[4.95,46.894],[4.95,46.893],[4.95,46.893],[4.95,46.891],[4.95,46.891],[4.95,46.89],[4.951,46.889],[4.951,46.888],[4.953,46.888],[4.954,46.887],[4.956,46.886],[4.957,46.885],[4.958,46.885],[4.96,46.884],[4.961,46.883],[4.962,46.883],[4.963,46.881],[4.963,46.88],[4.963,46.88],[4.963,46.879],[4.963,46.878],[4.962,46.878],[4.962,46.877],[4.961,46.877],[4.959,46.876],[4.958,46.875],[4.956,46.874],[4.955,46.874],[4.955,46.873],[4.954,46.872],[4.954,46.871],[4.953,46.871],[4.954,46.87],[4.954,46.87],[4.955,46.869],[4.955,46.868],[4.957,46.867],[4.958,46.867],[4.959,46.866],[4.96,46.866],[4.961,46.865],[4.962,46.864],[4.962,46.864],[4.962,46.863],[4.962,46.862],[4.962,46.861],[4.962,46.86],[4.962,46.86],[4.962,46.859],[4.961,46.858],[4.961,46.856],[4.961,46.854],[4.962,46.854],[4.962,46.853],[4.962,46.852],[4.962,46.852],[4.962,46.851],[4.961,46.85],[4.961,46.849],[4.96,46.848],[4.96,46.847],[4.96,46.847],[4.959,46.846],[4.959,46.846],[4.958,46.845],[4.957,46.844],[4.956,46.844],[4.955,46.843],[4.954,46.842],[4.952,46.841],[4.95,46.839],[4.949,46.838],[4.948,46.837],[4.947,46.837],[4.945,46.836],[4.944,46.836],[4.943,46.835],[4.943,46.834],[4.942,46.834],[4.942,46.833],[4.941,46.833],[4.94,46.832],[4.939,46.831],[4.938,46.83],[4.938,46.829],[4.937,46.828],[4.937,46.827],[4.937,46.826],[4.936,46.824],[4.936,46.824],[4.935,46.823],[4.935,46.822],[4.934,46.822],[4.933,46.822],[4.931,46.821],[4.93,46.821],[4.928,46.82],[4.926,46.819],[4.923,46.817],[4.92,46.815],[4.919,46.814],[4.918,46.814],[4.917,46.812],[4.917,46.811],[4.917,46.811],[4.916,46.81],[4.915,46.809],[4.914,46.808],[4.913,46.808],[4.912,46.807],[4.91,46.806],[4.909,46.805],[4.908,46.805],[4.906,46.804],[4.905,46.804],[4.903,46.804],[4.9,46.806],[4.898,46.806],[4.897,46.807],[4.897,46.807],[4.896,46.808],[4.894,46.809],[4.892,46.81],[4.891,46.811],[4.891,46.811],[4.89,46.811],[4.888,46.811],[4.886,46.811],[4.885,46.811],[4.884,46.811],[4.883,46.811],[4.882,46.81],[4.881,46.809],[4.879,46.809],[4.879,46.808],[4.878,46.807],[4.877,46.807],[4.877,46.807],[4.877,46.805],[4.877,46.805],[4.877,46.805],[4.876,46.805],[4.876,46.805],[4.876,46.805],[4.875,46.805],[4.875,46.804],[4.875,46.804],[4.875,46.804],[4.876,46.804],[4.876,46.804],[4.876,46.804],[4.877,46.803],[4.877,46.802],[4.877,46.802],[4.877,46.801],[4.877,46.801],[4.877,46.8],[4.877,46.8],[4.877,46.799],[4.877,46.799],[4.876,46.798],[4.875,46.798],[4.874,46.797],[4.873,46.796],[4.871,46.795],[4.869,46.795],[4.867,46.794],[4.865,46.793],[4.864,46.792],[4.863,46.792],[4.862,46.791],[4.861,46.791],[4.86,46.791],[4.86,46.79],[4.859,46.79],[4.857,46.789],[4.856,46.789],[4.855,46.788],[4.853,46.788],[4.852,46.787],[4.85,46.787],[4.849,46.786],[4.847,46.785],[4.846,46.785],[4.844,46.784],[4.843,46.783],[4.842,46.782],[4.841,46.781],[4.841,46.779],[4.841,46.778],[4.841,46.777],[4.841,46.776],[4.841,46.775],[4.841,46.774],[4.842,46.773],[4.843,46.773],[4.847,46.77],[4.851,46.768],[4.851,46.768],[4.852,46.768],[4.853,46.768],[4.855,46.767],[4.856,46.767],[4.857,46.767],[4.858,46.766],[4.86,46.765],[4.861,46.765],[4.863,46.764],[4.865,46.763],[4.866,46.763],[4.867,46.763],[4.869,46.763],[4.87,46.762],[4.871,46.762],[4.873,46.762],[4.874,46.761],[4.875,46.761],[4.875,46.761],[4.876,46.759],[4.877,46.758],[4.878,46.757],[4.879,46.756],[4.879,46.755],[4.88,46.754],[4.88,46.754],[4.88,46.753],[4.88,46.752],[4.88,46.751],[4.878,46.748],[4.878,46.747],[4.877,46.745],[4.877,46.744],[4.876,46.743],[4.877,46.743],[4.877,46.742],[4.878,46.741],[4.879,46.741],[4.88,46.74],[4.881,46.739],[4.882,46.738],[4.884,46.738],[4.886,46.738],[4.887,46.738],[4.888,46.738],[4.889,46.739],[4.891,46.739],[4.891,46.739],[4.892,46.739],[4.894,46.739],[4.895,46.739],[4.895,46.739],[4.896,46.738],[4.897,46.738],[4.898,46.737],[4.899,46.736],[4.9,46.735],[4.901,46.734],[4.902,46.733],[4.903,46.732],[4.904,46.731],[4.904,46.73],[4.905,46.729],[4.906,46.728],[4.906,46.728],[4.908,46.727],[4.91,46.726],[4.911,46.726],[4.912,46.725],[4.914,46.725],[4.915,46.724],[4.917,46.724],[4.918,46.724],[4.918,46.724],[4.919,46.723],[4.92,46.723],[4.921,46.722],[4.923,46.721],[4.924,46.72],[4.925,46.719],[4.927,46.719],[4.927,46.718],[4.928,46.718],[4.929,46.718],[4.93,46.717],[4.93,46.717],[4.931,46.716],[4.931,46.715],[4.931,46.714],[4.932,46.713],[4.932,46.712],[4.932,46.711],[4.932,46.71],[4.933,46.709],[4.934,46.709],[4.934,46.708],[4.934,46.708],[4.936,46.706],[4.937,46.704],[4.937,46.704],[4.938,46.703],[4.938,46.702],[4.939,46.701],[4.939,46.7],[4.939,46.699],[4.94,46.697],[4.94,46.695],[4.94,46.693],[4.941,46.692],[4.941,46.69],[4.942,46.688],[4.942,46.687],[4.943,46.685],[4.944,46.683],[4.944,46.681],[4.945,46.679],[4.946,46.678],[4.947,46.677],[4.946,46.675],[4.946,46.675],[4.946,46.674],[4.946,46.672],[4.946,46.671],[4.946,46.67],[4.947,46.669],[4.948,46.667],[4.949,46.666],[4.95,46.665],[4.95,46.663],[4.95,46.662],[4.95,46.66],[4.951,46.656],[4.951,46.655],[4.951,46.653],[4.951,46.652],[4.951,46.651],[4.951,46.649],[4.951,46.648],[4.952,46.646],[4.952,46.645],[4.952,46.644],[4.952,46.643],[4.952,46.641],[4.951,46.639],[4.951,46.638],[4.95,46.637],[4.949,46.635],[4.948,46.634],[4.947,46.633],[4.944,46.632],[4.944,46.631],[4.943,46.631],[4.942,46.63],[4.941,46.629],[4.941,46.628],[4.94,46.627],[4.94,46.626],[4.94,46.625],[4.939,46.625],[4.939,46.624],[4.939,46.623],[4.939,46.622],[4.936,46.618],[4.934,46.616],[4.934,46.615],[4.933,46.614],[4.932,46.614],[4.931,46.613],[4.93,46.612],[4.929,46.61],[4.928,46.61],[4.927,46.609],[4.927,46.608],[4.926,46.607],[4.925,46.606],[4.924,46.605],[4.924,46.604],[4.923,46.603],[4.921,46.601],[4.92,46.6],[4.919,46.599],[4.918,46.598],[4.917,46.598],[4.915,46.596],[4.913,46.595],[4.912,46.593],[4.911,46.592],[4.91,46.59],[4.909,46.589],[4.909,46.589],[4.909,46.587],[4.909,46.586],[4.909,46.585],[4.908,46.584],[4.909,46.583],[4.909,46.582],[4.909,46.581],[4.909,46.58],[4.909,46.58],[4.909,46.578],[4.909,46.577],[4.908,46.576],[4.908,46.575],[4.908,46.574],[4.908,46.573],[4.909,46.572],[4.909,46.571],[4.91,46.571],[4.911,46.57],[4.913,46.568],[4.914,46.567],[4.914,46.565],[4.915,46.564],[4.915,46.563],[4.915,46.562],[4.916,46.56],[4.917,46.559],[4.917,46.558],[4.917,46.557],[4.918,46.556],[4.918,46.556],[4.919,46.555],[4.919,46.554],[4.92,46.553],[4.921,46.553],[4.921,46.552],[4.921,46.552],[4.921,46.551],[4.922,46.551],[4.923,46.549],[4.923,46.547],[4.924,46.546],[4.924,46.546],[4.925,46.544],[4.926,46.542],[4.927,46.541],[4.929,46.539],[4.93,46.538],[4.931,46.536],[4.932,46.535],[4.933,46.533],[4.933,46.532],[4.933,46.531],[4.934,46.53],[4.935,46.53],[4.935,46.529],[4.934,46.527],[4.934,46.526],[4.934,46.525],[4.932,46.524],[4.931,46.523],[4.929,46.521],[4.928,46.519],[4.927,46.518],[4.926,46.516],[4.924,46.512],[4.924,46.512],[4.924,46.511],[4.923,46.509],[4.923,46.508],[4.922,46.507],[4.921,46.505],[4.919,46.503],[4.915,46.501],[4.912,46.499],[4.911,46.496],[4.91,46.492],[4.91,46.489],[4.91,46.488],[4.91,46.486],[4.911,46.485],[4.911,46.483],[4.911,46.481],[4.911,46.479],[4.911,46.473],[4.91,46.471],[4.909,46.47],[4.908,46.467],[4.903,46.464],[4.902,46.463],[4.9,46.463],[4.898,46.461],[4.896,46.46],[4.895,46.459],[4.894,46.458],[4.893,46.457],[4.891,46.456],[4.89,46.454],[4.889,46.452],[4.888,46.449],[4.887,46.448],[4.886,46.446],[4.886,46.445],[4.885,46.443],[4.885,46.442],[4.884,46.44],[4.886,46.437],[4.885,46.435],[4.885,46.431],[4.884,46.427],[4.884,46.426],[4.883,46.423],[4.883,46.419],[4.883,46.418],[4.884,46.418],[4.884,46.416],[4.886,46.41],[4.884,46.408],[4.881,46.405],[4.88,46.404],[4.879,46.402],[4.878,46.399],[4.876,46.397],[4.874,46.396],[4.873,46.394],[4.873,46.393],[4.872,46.392],[4.87,46.39],[4.869,46.388],[4.866,46.385],[4.863,46.383],[4.861,46.381],[4.858,46.378],[4.857,46.376],[4.854,46.373],[4.853,46.372],[4.853,46.371],[4.853,46.37],[4.852,46.369],[4.851,46.367],[4.85,46.366],[4.849,46.364],[4.849,46.361],[4.849,46.358],[4.851,46.354],[4.851,46.352],[4.851,46.348],[4.851,46.347],[4.851,46.346],[4.852,46.344],[4.852,46.342],[4.847,46.335],[4.846,46.332],[4.843,46.33],[4.841,46.327],[4.838,46.323],[4.835,46.319],[4.836,46.319],[4.835,46.318],[4.834,46.316],[4.833,46.314],[4.831,46.311],[4.83,46.31],[4.829,46.309],[4.829,46.308],[4.828,46.306],[4.828,46.306],[4.827,46.304],[4.827,46.303],[4.829,46.297],[4.828,46.295],[4.827,46.293],[4.826,46.29],[4.826,46.288],[4.825,46.285],[4.824,46.283],[4.824,46.283],[4.824,46.282],[4.822,46.28],[4.821,46.279],[4.82,46.277],[4.818,46.275],[4.815,46.273],[4.812,46.271],[4.812,46.27],[4.81,46.268],[4.809,46.266],[4.809,46.265],[4.809,46.261],[4.809,46.259],[4.809,46.256],[4.809,46.253],[4.808,46.251],[4.808,46.249],[4.808,46.248],[4.807,46.246],[4.807,46.245],[4.806,46.244],[4.804,46.243],[4.803,46.241],[4.799,46.238],[4.799,46.237],[4.798,46.236],[4.797,46.235],[4.796,46.233],[4.795,46.23],[4.794,46.228],[4.793,46.226],[4.792,46.224],[4.791,46.222],[4.791,46.219],[4.791,46.215],[4.791,46.21],[4.79,46.209],[4.788,46.208],[4.786,46.205],[4.785,46.204],[4.782,46.201],[4.78,46.199],[4.778,46.197],[4.778,46.195],[4.778,46.191],[4.778,46.188],[4.778,46.185],[4.779,46.182],[4.78,46.18],[4.781,46.178],[4.783,46.175],[4.786,46.173],[4.789,46.172],[4.797,46.169],[4.8,46.167],[4.801,46.165],[4.801,46.162],[4.801,46.159],[4.8,46.159],[4.799,46.157],[4.798,46.156],[4.798,46.154],[4.798,46.153],[4.797,46.152],[4.797,46.151],[4.796,46.15],[4.795,46.149],[4.794,46.148],[4.794,46.147],[4.793,46.147],[4.791,46.145],[4.79,46.144],[4.789,46.142],[4.786,46.14],[4.785,46.139],[4.784,46.138],[4.784,46.138],[4.783,46.137],[4.778,46.134],[4.775,46.131],[4.773,46.129],[4.772,46.128],[4.771,46.126],[4.77,46.125],[4.769,46.124],[4.769,46.122],[4.768,46.12],[4.768,46.118],[4.766,46.117],[4.765,46.115],[4.763,46.114],[4.762,46.112],[4.76,46.111],[4.758,46.109],[4.757,46.108],[4.755,46.107],[4.754,46.105],[4.753,46.104],[4.752,46.103],[4.751,46.102],[4.75,46.1],[4.75,46.099],[4.749,46.096],[4.748,46.094],[4.748,46.092],[4.749,46.091],[4.751,46.089],[4.754,46.087],[4.757,46.082],[4.758,46.079],[4.759,46.075],[4.759,46.072],[4.757,46.07],[4.756,46.068],[4.754,46.067],[4.752,46.065],[4.751,46.064],[4.75,46.063],[4.748,46.062],[4.747,46.061],[4.743,46.06],[4.742,46.059],[4.74,46.059],[4.738,46.058],[4.738,46.057],[4.736,46.055],[4.736,46.054],[4.737,46.052],[4.738,46.051],[4.74,46.049],[4.74,46.047],[4.742,46.045],[4.743,46.042],[4.744,46.041],[4.744,46.039],[4.744,46.037],[4.744,46.036],[4.744,46.035],[4.744,46.033],[4.743,46.032],[4.742,46.03],[4.741,46.028],[4.741,46.027],[4.741,46.025],[4.742,46.023],[4.743,46.022],[4.744,46.021],[4.745,46.02],[4.746,46.018],[4.746,46.015],[4.746,46.014],[4.748,46.012],[4.748,46.008],[4.747,46.007],[4.747,46.005],[4.748,46.001],[4.749,46],[4.748,45.998],[4.748,45.997],[4.748,45.994],[4.747,45.992],[4.748,45.992],[4.749,45.99],[4.75,45.989],[4.75,45.988],[4.751,45.986],[4.753,45.983],[4.753,45.982],[4.753,45.981],[4.753,45.98],[4.752,45.979],[4.752,45.978],[4.751,45.977],[4.751,45.976],[4.749,45.973],[4.748,45.971],[4.747,45.97],[4.745,45.968],[4.739,45.965],[4.737,45.963],[4.733,45.961],[4.732,45.96],[4.729,45.958],[4.728,45.957],[4.727,45.955],[4.726,45.954],[4.725,45.953],[4.726,45.952],[4.728,45.951],[4.728,45.95],[4.729,45.95],[4.731,45.949],[4.732,45.947],[4.733,45.947],[4.734,45.947],[4.735,45.947],[4.736,45.947],[4.739,45.946],[4.74,45.946],[4.742,45.946],[4.744,45.946],[4.746,45.945],[4.747,45.945],[4.749,45.944],[4.751,45.943],[4.753,45.943],[4.755,45.943],[4.756,45.943],[4.756,45.943],[4.759,45.943],[4.761,45.945],[4.762,45.945],[4.763,45.946],[4.764,45.946],[4.765,45.946],[4.766,45.947],[4.768,45.947],[4.769,45.947],[4.772,45.947],[4.774,45.947],[4.775,45.946],[4.777,45.945],[4.778,45.944],[4.78,45.941],[4.783,45.937],[4.785,45.934],[4.787,45.932],[4.788,45.932],[4.789,45.931],[4.791,45.931],[4.792,45.931],[4.793,45.931],[4.794,45.931],[4.795,45.931],[4.795,45.931],[4.796,45.931],[4.798,45.932],[4.799,45.932],[4.802,45.931],[4.803,45.931],[4.804,45.93],[4.805,45.93],[4.806,45.93],[4.807,45.929],[4.808,45.928],[4.808,45.927],[4.808,45.926],[4.809,45.925],[4.809,45.924],[4.809,45.923],[4.809,45.922],[4.808,45.922],[4.808,45.921],[4.808,45.92],[4.808,45.919],[4.808,45.918],[4.809,45.918],[4.809,45.917],[4.808,45.916],[4.808,45.915],[4.807,45.914],[4.806,45.913],[4.805,45.913],[4.805,45.912],[4.804,45.912],[4.802,45.91],[4.802,45.909],[4.801,45.908],[4.801,45.907],[4.802,45.906],[4.803,45.904],[4.804,45.903],[4.804,45.902],[4.805,45.9],[4.808,45.896],[4.81,45.894],[4.812,45.893],[4.815,45.891],[4.818,45.89],[4.819,45.89],[4.822,45.889],[4.824,45.888],[4.827,45.888],[4.829,45.888],[4.831,45.887],[4.833,45.887],[4.834,45.886],[4.834,45.885],[4.835,45.884],[4.835,45.883],[4.834,45.881],[4.834,45.88],[4.834,45.878],[4.834,45.877],[4.834,45.876],[4.835,45.874],[4.837,45.873],[4.837,45.872],[4.837,45.871],[4.837,45.87],[4.838,45.869],[4.838,45.869],[4.838,45.867],[4.838,45.866],[4.836,45.864],[4.835,45.862],[4.835,45.861],[4.835,45.86],[4.834,45.857],[4.829,45.852],[4.828,45.85],[4.828,45.848],[4.828,45.846],[4.829,45.845],[4.83,45.844],[4.832,45.843],[4.835,45.842],[4.837,45.841],[4.839,45.841],[4.841,45.84],[4.842,45.84],[4.842,45.84],[4.844,45.84],[4.848,45.837],[4.849,45.836],[4.849,45.836],[4.85,45.835],[4.851,45.832],[4.852,45.831],[4.852,45.829],[4.852,45.828],[4.851,45.827],[4.851,45.826],[4.849,45.825],[4.848,45.825],[4.846,45.824],[4.845,45.823],[4.843,45.822],[4.842,45.821],[4.842,45.821],[4.84,45.82],[4.839,45.819],[4.839,45.819],[4.839,45.817],[4.838,45.815],[4.838,45.813],[4.836,45.811],[4.836,45.81],[4.835,45.809],[4.833,45.808],[4.831,45.807],[4.829,45.807],[4.827,45.806],[4.826,45.805],[4.823,45.804],[4.819,45.802],[4.817,45.8],[4.812,45.796],[4.811,45.795],[4.809,45.793],[4.807,45.79],[4.805,45.787],[4.804,45.784],[4.805,45.783],[4.806,45.782],[4.807,45.781],[4.808,45.781],[4.809,45.779],[4.809,45.778],[4.809,45.777],[4.81,45.776],[4.811,45.775],[4.812,45.775],[4.813,45.775],[4.814,45.775],[4.816,45.775],[4.818,45.776],[4.82,45.776],[4.822,45.776],[4.823,45.776],[4.824,45.775],[4.825,45.775],[4.825,45.774],[4.826,45.772],[4.825,45.771],[4.824,45.769],[4.823,45.768],[4.822,45.765],[4.821,45.764],[4.82,45.763],[4.818,45.76],[4.815,45.758],[4.813,45.757],[4.812,45.756],[4.81,45.754],[4.81,45.753],[4.809,45.749],[4.808,45.747],[4.809,45.745],[4.81,45.742],[4.811,45.74],[4.812,45.739],[4.813,45.738],[4.813,45.737],[4.814,45.736],[4.817,45.727],[4.817,45.726],[4.818,45.721],[4.82,45.717],[4.821,45.716],[4.823,45.713],[4.825,45.712],[4.827,45.711],[4.83,45.71],[4.832,45.709],[4.834,45.708],[4.835,45.706],[4.837,45.704],[4.838,45.703],[4.839,45.7],[4.839,45.697],[4.838,45.696],[4.838,45.696],[4.838,45.695],[4.838,45.694],[4.837,45.693],[4.836,45.69],[4.836,45.689],[4.835,45.688],[4.835,45.686],[4.834,45.685],[4.834,45.684],[4.834,45.683],[4.833,45.683],[4.835,45.675],[4.834,45.675],[4.834,45.673],[4.834,45.673],[4.833,45.672],[4.833,45.671],[4.833,45.67],[4.832,45.669],[4.832,45.668],[4.832,45.666],[4.832,45.666],[4.831,45.665],[4.831,45.664],[4.831,45.663],[4.831,45.66],[4.83,45.659],[4.83,45.658],[4.83,45.657],[4.83,45.657],[4.83,45.656],[4.83,45.655],[4.829,45.654],[4.828,45.652],[4.827,45.651],[4.826,45.65],[4.824,45.649],[4.823,45.648],[4.82,45.647],[4.818,45.646],[4.817,45.645],[4.816,45.644],[4.815,45.644],[4.815,45.644],[4.815,45.643],[4.814,45.643],[4.814,45.643],[4.813,45.642],[4.813,45.642],[4.813,45.642],[4.812,45.641],[4.812,45.64],[4.811,45.639],[4.811,45.638],[4.81,45.638],[4.81,45.636],[4.809,45.635],[4.809,45.634],[4.808,45.633],[4.809,45.631],[4.808,45.629],[4.809,45.629],[4.809,45.628],[4.809,45.627],[4.809,45.627],[4.808,45.626],[4.808,45.624],[4.808,45.622],[4.808,45.621],[4.808,45.62],[4.808,45.62],[4.807,45.619],[4.807,45.619],[4.806,45.618],[4.806,45.618],[4.805,45.618],[4.805,45.618],[4.804,45.615],[4.803,45.614],[4.803,45.614],[4.803,45.613],[4.803,45.612],[4.803,45.612],[4.803,45.612],[4.796,45.603],[4.794,45.6],[4.793,45.599],[4.792,45.598],[4.791,45.597],[4.79,45.596],[4.788,45.595],[4.787,45.593],[4.786,45.593],[4.785,45.593],[4.782,45.591],[4.78,45.59],[4.779,45.59],[4.778,45.589],[4.777,45.588],[4.778,45.586],[4.779,45.581],[4.781,45.581],[4.787,45.578],[4.79,45.578],[4.791,45.577],[4.792,45.577],[4.793,45.577],[4.798,45.575],[4.799,45.575],[4.8,45.575],[4.802,45.574],[4.809,45.573],[4.812,45.572],[4.813,45.571],[4.814,45.57],[4.816,45.568],[4.817,45.566],[4.818,45.564],[4.819,45.563],[4.821,45.56],[4.822,45.559],[4.824,45.557],[4.827,45.554],[4.828,45.553],[4.829,45.552],[4.83,45.551],[4.833,45.547],[4.836,45.545],[4.837,45.545],[4.838,45.545],[4.837,45.544],[4.843,45.543],[4.853,45.541],[4.854,45.54],[4.857,45.539],[4.86,45.539],[4.864,45.538],[4.867,45.537],[4.87,45.536],[4.872,45.534],[4.873,45.533],[4.874,45.531],[4.874,45.53],[4.874,45.529],[4.872,45.526],[4.869,45.523],[4.866,45.52],[4.86,45.513],[4.858,45.511],[4.851,45.505],[4.849,45.504],[4.846,45.502],[4.845,45.502],[4.843,45.501],[4.841,45.5],[4.84,45.5],[4.838,45.499],[4.835,45.498],[4.833,45.496],[4.83,45.495],[4.828,45.496],[4.827,45.495],[4.826,45.495],[4.826,45.495],[4.826,45.494],[4.825,45.493],[4.822,45.49],[4.821,45.489],[4.819,45.487],[4.817,45.485],[4.815,45.484],[4.813,45.483],[4.803,45.479],[4.8,45.477],[4.798,45.476],[4.797,45.476],[4.795,45.475],[4.794,45.475],[4.792,45.474],[4.789,45.473],[4.786,45.472],[4.785,45.471],[4.783,45.47],[4.782,45.468],[4.782,45.466],[4.784,45.462],[4.784,45.461],[4.784,45.461],[4.783,45.461],[4.782,45.46],[4.781,45.46],[4.781,45.459],[4.78,45.459],[4.778,45.457],[4.775,45.456],[4.774,45.456],[4.767,45.456],[4.763,45.455],[4.761,45.454],[4.76,45.453],[4.76,45.451],[4.76,45.449],[4.761,45.445],[4.762,45.442],[4.763,45.439],[4.764,45.437],[4.764,45.435],[4.764,45.434],[4.763,45.432],[4.762,45.43],[4.761,45.43],[4.757,45.428],[4.754,45.427],[4.753,45.426],[4.749,45.42],[4.747,45.417],[4.747,45.415],[4.746,45.413],[4.747,45.411],[4.748,45.409],[4.749,45.408],[4.75,45.406],[4.752,45.404],[4.754,45.401],[4.756,45.4],[4.757,45.399],[4.758,45.397],[4.758,45.395],[4.759,45.394],[4.76,45.393],[4.757,45.386],[4.756,45.384],[4.755,45.382],[4.753,45.38],[4.753,45.379],[4.752,45.377],[4.751,45.376],[4.751,45.374],[4.752,45.373],[4.753,45.372],[4.753,45.37],[4.754,45.369],[4.754,45.368],[4.754,45.366],[4.755,45.365],[4.755,45.365],[4.76,45.361],[4.762,45.361],[4.762,45.36],[4.763,45.359],[4.764,45.359],[4.765,45.358],[4.766,45.358],[4.767,45.356],[4.768,45.354],[4.769,45.353],[4.769,45.352],[4.768,45.35],[4.767,45.349],[4.765,45.347],[4.764,45.341],[4.763,45.339],[4.763,45.338],[4.763,45.337],[4.763,45.336],[4.763,45.335],[4.763,45.331],[4.762,45.328],[4.763,45.326],[4.764,45.324],[4.765,45.323],[4.766,45.322],[4.766,45.321],[4.767,45.32],[4.768,45.319],[4.768,45.319],[4.769,45.318],[4.771,45.317],[4.772,45.316],[4.774,45.316],[4.775,45.315],[4.776,45.314],[4.777,45.314],[4.778,45.313],[4.779,45.313],[4.779,45.312],[4.78,45.312],[4.782,45.311],[4.783,45.311],[4.785,45.31],[4.786,45.309],[4.788,45.309],[4.79,45.307],[4.792,45.306],[4.793,45.305],[4.794,45.305],[4.795,45.304],[4.796,45.304],[4.796,45.303],[4.796,45.303],[4.797,45.303],[4.797,45.302],[4.798,45.302],[4.799,45.301],[4.799,45.3],[4.801,45.299],[4.802,45.299],[4.802,45.299],[4.803,45.299],[4.803,45.298],[4.803,45.298],[4.803,45.298],[4.802,45.298],[4.802,45.298],[4.802,45.298],[4.803,45.297],[4.804,45.296],[4.805,45.295],[4.807,45.294],[4.809,45.293],[4.809,45.292],[4.809,45.286],[4.809,45.285],[4.809,45.283],[4.809,45.281],[4.809,45.28],[4.809,45.279],[4.809,45.278],[4.809,45.275],[4.809,45.272],[4.809,45.269],[4.809,45.268],[4.809,45.267],[4.81,45.266],[4.81,45.263],[4.809,45.262],[4.809,45.26],[4.806,45.256],[4.805,45.254],[4.805,45.253],[4.804,45.252],[4.803,45.251],[4.802,45.25],[4.802,45.249],[4.802,45.248],[4.802,45.247],[4.802,45.246],[4.801,45.242],[4.801,45.24],[4.801,45.24],[4.801,45.239],[4.801,45.236],[4.801,45.236],[4.801,45.235],[4.801,45.234],[4.801,45.234],[4.801,45.234],[4.801,45.233],[4.801,45.233],[4.801,45.233],[4.801,45.232],[4.801,45.231],[4.801,45.229],[4.802,45.229],[4.802,45.228],[4.802,45.227],[4.802,45.226],[4.803,45.225],[4.804,45.224],[4.804,45.222],[4.804,45.221],[4.805,45.221],[4.805,45.219],[4.805,45.218],[4.806,45.217],[4.806,45.216],[4.807,45.214],[4.807,45.213],[4.807,45.212],[4.808,45.211],[4.808,45.21],[4.808,45.209],[4.809,45.208],[4.809,45.208],[4.809,45.207],[4.809,45.206],[4.809,45.205],[4.809,45.203],[4.808,45.202],[4.808,45.201],[4.807,45.2],[4.807,45.2],[4.806,45.199],[4.806,45.199],[4.806,45.198],[4.806,45.198],[4.805,45.197],[4.805,45.197],[4.804,45.196],[4.804,45.195],[4.804,45.194],[4.804,45.193],[4.804,45.192],[4.806,45.191],[4.806,45.189],[4.807,45.188],[4.811,45.185],[4.811,45.184],[4.812,45.182],[4.812,45.182],[4.812,45.182],[4.813,45.181],[4.812,45.18],[4.811,45.178],[4.811,45.177],[4.81,45.176],[4.808,45.167],[4.809,45.165],[4.81,45.164],[4.812,45.162],[4.814,45.161],[4.814,45.16],[4.816,45.16],[4.818,45.16],[4.82,45.159],[4.823,45.159],[4.825,45.159],[4.826,45.157],[4.827,45.156],[4.827,45.154],[4.826,45.153],[4.824,45.151],[4.822,45.148],[4.819,45.145],[4.814,45.142],[4.812,45.14],[4.808,45.136],[4.805,45.135],[4.804,45.135],[4.803,45.134],[4.803,45.131],[4.803,45.13],[4.802,45.128],[4.802,45.125],[4.802,45.124],[4.803,45.123],[4.803,45.122],[4.803,45.121],[4.804,45.121],[4.805,45.121],[4.806,45.12],[4.807,45.118],[4.807,45.118],[4.808,45.117],[4.81,45.116],[4.812,45.114],[4.812,45.113],[4.812,45.113],[4.811,45.113],[4.812,45.112],[4.813,45.112],[4.813,45.112],[4.813,45.112],[4.814,45.111],[4.815,45.11],[4.815,45.109],[4.816,45.108],[4.818,45.107],[4.818,45.107],[4.818,45.106],[4.82,45.105],[4.821,45.104],[4.822,45.104],[4.822,45.104],[4.822,45.104],[4.821,45.103],[4.822,45.102],[4.823,45.102],[4.823,45.1],[4.823,45.099],[4.824,45.099],[4.824,45.098],[4.824,45.097],[4.824,45.097],[4.827,45.096],[4.827,45.096],[4.828,45.096],[4.828,45.095],[4.828,45.095],[4.829,45.094],[4.829,45.093],[4.829,45.093],[4.829,45.092],[4.83,45.092],[4.83,45.091],[4.83,45.09],[4.831,45.09],[4.83,45.09],[4.83,45.089],[4.83,45.089],[4.831,45.089],[4.831,45.089],[4.83,45.088],[4.83,45.087],[4.83,45.086],[4.83,45.085],[4.83,45.084],[4.829,45.084],[4.829,45.084],[4.828,45.084],[4.828,45.082],[4.827,45.081],[4.826,45.08],[4.826,45.078],[4.826,45.077],[4.826,45.075],[4.826,45.075],[4.827,45.075],[4.827,45.074],[4.828,45.073],[4.829,45.073],[4.828,45.072],[4.828,45.072],[4.83,45.07],[4.832,45.069],[4.836,45.067],[4.838,45.066],[4.842,45.065],[4.843,45.065],[4.844,45.065],[4.847,45.064],[4.852,45.063],[4.853,45.062],[4.854,45.061],[4.856,45.06],[4.857,45.059],[4.857,45.057],[4.857,45.055],[4.856,45.052],[4.854,45.05],[4.851,45.047],[4.847,45.044],[4.845,45.043],[4.842,45.041],[4.84,45.038],[4.838,45.036],[4.837,45.035],[4.837,45.032],[4.838,45.029],[4.839,45.027],[4.839,45.026],[4.84,45.025],[4.842,45.024],[4.843,45.023],[4.844,45.021],[4.844,45.02],[4.843,45.018],[4.842,45.016],[4.839,45.014],[4.837,45.012],[4.835,45.011],[4.835,45.01],[4.835,45.01],[4.835,45.008],[4.835,45.007],[4.835,45.006],[4.836,45.006],[4.836,45.006],[4.837,45.005],[4.839,45.004],[4.84,45.003],[4.841,45.002],[4.842,45.002],[4.843,45.001],[4.844,45],[4.845,44.999],[4.846,44.998],[4.847,44.998],[4.849,44.996],[4.851,44.995],[4.851,44.994],[4.852,44.993],[4.852,44.991],[4.852,44.989],[4.852,44.987],[4.852,44.984],[4.852,44.98],[4.853,44.977],[4.853,44.975],[4.853,44.974],[4.855,44.973],[4.855,44.973],[4.855,44.972],[4.855,44.972],[4.856,44.971],[4.856,44.97],[4.857,44.97],[4.857,44.969],[4.858,44.968],[4.858,44.968],[4.857,44.967],[4.857,44.967],[4.858,44.966],[4.859,44.966],[4.859,44.965],[4.859,44.966],[4.86,44.966],[4.86,44.965],[4.86,44.965],[4.86,44.964],[4.86,44.964],[4.861,44.964],[4.861,44.964],[4.862,44.962],[4.864,44.961],[4.864,44.96],[4.865,44.96],[4.866,44.96],[4.868,44.959],[4.87,44.958],[4.872,44.957],[4.873,44.956],[4.875,44.955],[4.875,44.954],[4.876,44.953],[4.876,44.952],[4.876,44.952],[4.876,44.951],[4.877,44.949],[4.878,44.947],[4.879,44.945],[4.879,44.945],[4.881,44.943],[4.883,44.942],[4.884,44.94],[4.884,44.939],[4.885,44.937],[4.885,44.936],[4.884,44.935],[4.883,44.934],[4.882,44.933],[4.88,44.931],[4.878,44.929],[4.876,44.927],[4.874,44.925],[4.873,44.925],[4.872,44.922],[4.87,44.919],[4.87,44.918],[4.869,44.915],[4.868,44.913],[4.868,44.911],[4.867,44.91],[4.866,44.908],[4.863,44.906],[4.859,44.905],[4.857,44.904],[4.856,44.904],[4.855,44.904],[4.854,44.904],[4.853,44.902],[4.852,44.898],[4.852,44.896],[4.852,44.896],[4.853,44.894],[4.853,44.892],[4.854,44.89],[4.854,44.888],[4.856,44.887],[4.857,44.884],[4.858,44.882],[4.859,44.882],[4.859,44.881],[4.86,44.879],[4.86,44.878],[4.86,44.877],[4.859,44.875],[4.858,44.874],[4.857,44.873],[4.856,44.872],[4.851,44.868],[4.849,44.867],[4.848,44.865],[4.847,44.864],[4.846,44.862],[4.845,44.86],[4.844,44.86],[4.843,44.859],[4.841,44.856],[4.84,44.855],[4.839,44.854],[4.838,44.853],[4.838,44.853],[4.838,44.854],[4.837,44.854],[4.837,44.852],[4.837,44.852],[4.833,44.849],[4.828,44.846],[4.824,44.844],[4.823,44.843],[4.822,44.842],[4.819,44.839],[4.819,44.837],[4.816,44.833],[4.815,44.829],[4.813,44.826],[4.812,44.822],[4.81,44.819],[4.809,44.816],[4.809,44.815],[4.809,44.812],[4.808,44.811],[4.806,44.81],[4.806,44.809],[4.791,44.803],[4.787,44.802],[4.782,44.799],[4.78,44.797],[4.776,44.791],[4.772,44.787],[4.769,44.785],[4.767,44.782],[4.767,44.781],[4.766,44.78],[4.764,44.779],[4.763,44.777],[4.762,44.776],[4.762,44.775],[4.76,44.773],[4.759,44.773],[4.756,44.77],[4.755,44.769],[4.754,44.767],[4.752,44.763],[4.751,44.759],[4.75,44.758],[4.751,44.756],[4.751,44.754],[4.752,44.753],[4.756,44.748],[4.757,44.746],[4.759,44.741],[4.76,44.739],[4.761,44.738],[4.761,44.737],[4.762,44.736],[4.761,44.736],[4.764,44.727],[4.765,44.726],[4.764,44.724],[4.764,44.722],[4.764,44.719],[4.764,44.718],[4.764,44.718],[4.764,44.717],[4.765,44.715],[4.768,44.712],[4.769,44.711],[4.77,44.709],[4.77,44.709],[4.772,44.707],[4.773,44.706],[4.773,44.704],[4.774,44.703],[4.774,44.699],[4.774,44.696],[4.775,44.694],[4.776,44.692],[4.777,44.691],[4.777,44.69],[4.779,44.688],[4.781,44.685],[4.781,44.684],[4.782,44.678],[4.781,44.668],[4.781,44.664],[4.776,44.645],[4.772,44.644],[4.771,44.643],[4.771,44.643],[4.771,44.643],[4.771,44.642],[4.771,44.642],[4.768,44.634],[4.766,44.632],[4.762,44.627],[4.762,44.626],[4.761,44.624],[4.761,44.623],[4.758,44.62],[4.756,44.617],[4.755,44.616],[4.753,44.614],[4.751,44.613],[4.75,44.611],[4.748,44.608],[4.746,44.605],[4.745,44.604],[4.744,44.602],[4.739,44.596],[4.737,44.597],[4.736,44.597],[4.714,44.587],[4.713,44.586],[4.712,44.585],[4.71,44.584],[4.709,44.583],[4.707,44.58],[4.706,44.579],[4.706,44.578],[4.704,44.576],[4.702,44.573],[4.702,44.572],[4.702,44.571],[4.699,44.564],[4.696,44.561],[4.694,44.56],[4.694,44.559],[4.691,44.547],[4.693,44.544],[4.694,44.541],[4.696,44.538],[4.696,44.537],[4.698,44.534],[4.699,44.532],[4.699,44.531],[4.7,44.53],[4.7,44.529],[4.7,44.528],[4.7,44.526],[4.699,44.525],[4.698,44.524],[4.698,44.523],[4.697,44.522],[4.695,44.52],[4.694,44.52],[4.693,44.519],[4.691,44.517],[4.69,44.513],[4.689,44.51],[4.688,44.506],[4.687,44.502],[4.686,44.501],[4.686,44.5],[4.686,44.499],[4.687,44.496],[4.688,44.493],[4.688,44.492],[4.688,44.492],[4.698,44.486],[4.698,44.486],[4.7,44.482],[4.7,44.482],[4.701,44.481],[4.702,44.479],[4.702,44.478],[4.701,44.477],[4.701,44.476],[4.701,44.474],[4.701,44.473],[4.701,44.472],[4.702,44.472],[4.702,44.47],[4.702,44.468],[4.702,44.464],[4.702,44.459],[4.702,44.457],[4.7,44.453],[4.7,44.452],[4.699,44.452],[4.699,44.451],[4.699,44.449],[4.699,44.447],[4.698,44.446],[4.698,44.445],[4.696,44.443],[4.696,44.443],[4.695,44.443],[4.693,44.441],[4.691,44.44],[4.687,44.438],[4.684,44.438],[4.681,44.437],[4.675,44.436],[4.672,44.435],[4.67,44.434],[4.668,44.431],[4.667,44.427],[4.666,44.426],[4.666,44.425],[4.666,44.423],[4.665,44.421],[4.665,44.418],[4.665,44.415],[4.665,44.413],[4.665,44.412],[4.666,44.411],[4.666,44.41],[4.665,44.41],[4.665,44.41],[4.665,44.408],[4.664,44.407],[4.664,44.407],[4.664,44.404],[4.664,44.402],[4.665,44.401],[4.665,44.401],[4.665,44.4],[4.665,44.399],[4.666,44.398],[4.666,44.398],[4.666,44.397],[4.665,44.397],[4.665,44.396],[4.665,44.395],[4.655,44.385],[4.653,44.383],[4.652,44.381],[4.651,44.38],[4.651,44.379],[4.651,44.379],[4.651,44.378],[4.65,44.378],[4.65,44.377],[4.649,44.376],[4.649,44.373],[4.648,44.368],[4.647,44.366],[4.647,44.364],[4.647,44.364],[4.647,44.36],[4.647,44.358],[4.646,44.353],[4.646,44.352],[4.646,44.349],[4.647,44.342],[4.648,44.342],[4.648,44.339],[4.647,44.338],[4.649,44.336],[4.65,44.331],[4.652,44.321],[4.649,44.313],[4.653,44.302],[4.652,44.294],[4.652,44.294],[4.652,44.292],[4.651,44.288],[4.65,44.288],[4.65,44.287],[4.65,44.286],[4.65,44.285],[4.65,44.285],[4.651,44.287],[4.651,44.286],[4.651,44.283],[4.651,44.282],[4.65,44.282],[4.65,44.28],[4.65,44.276],[4.65,44.276],[4.649,44.274],[4.648,44.271],[4.648,44.267],[4.648,44.266],[4.646,44.266],[4.647,44.264],[4.648,44.262],[4.649,44.26],[4.651,44.258],[4.652,44.257],[4.653,44.255],[4.654,44.254],[4.656,44.252],[4.657,44.25],[4.66,44.248],[4.661,44.246],[4.663,44.246],[4.663,44.245],[4.664,44.244],[4.666,44.243],[4.668,44.242],[4.671,44.24],[4.672,44.239],[4.674,44.238],[4.675,44.236],[4.676,44.236],[4.677,44.234],[4.678,44.23],[4.677,44.227],[4.675,44.225],[4.674,44.224],[4.674,44.225],[4.674,44.225],[4.674,44.225],[4.673,44.224],[4.672,44.223],[4.675,44.213],[4.676,44.212],[4.677,44.211],[4.678,44.21],[4.681,44.21],[4.682,44.211],[4.684,44.212],[4.686,44.212],[4.687,44.212],[4.688,44.212],[4.69,44.212],[4.691,44.212],[4.691,44.213],[4.69,44.213],[4.69,44.213],[4.691,44.214],[4.694,44.215],[4.696,44.215],[4.698,44.215],[4.699,44.216],[4.701,44.215],[4.701,44.215],[4.7,44.215],[4.699,44.215],[4.699,44.214],[4.7,44.214],[4.7,44.214],[4.699,44.213],[4.7,44.213],[4.701,44.213],[4.701,44.214],[4.701,44.214],[4.702,44.214],[4.703,44.214],[4.705,44.214],[4.707,44.212],[4.708,44.21],[4.709,44.207],[4.707,44.206],[4.705,44.203],[4.703,44.202],[4.702,44.199],[4.702,44.197],[4.703,44.197],[4.703,44.196],[4.703,44.195],[4.703,44.194],[4.704,44.193],[4.705,44.191],[4.707,44.188],[4.707,44.187],[4.71,44.182],[4.712,44.18],[4.72,44.162],[4.721,44.154],[4.721,44.151],[4.722,44.15],[4.722,44.149],[4.722,44.147],[4.722,44.145],[4.722,44.143],[4.721,44.14],[4.72,44.139],[4.718,44.136],[4.717,44.136],[4.716,44.134],[4.715,44.133],[4.715,44.132],[4.715,44.128],[4.715,44.126],[4.717,44.125]],[[5.363,43.305],[5.264,43.291]],[[9.564,42.091],[9.564,42.191],[9.564,42.291],[9.564,42.391],[9.564,42.491],[9.564,42.591],[9.564,42.691],[9.564,42.791],[9.564,42.891],[9.464,42.991],[9.364,43.091],[9.264,43.091],[9.164,43.091],[9.064,43.091],[8.964,43.091],[8.864,43.091],[8.764,43.091],[8.664,43.091],[8.564,43.091],[8.464,43.091],[8.364,43.091],[8.264,43.091],[8.164,43.091],[8.064,43.091],[7.964,43.091],[7.864,43.091],[7.764,43.091],[7.664,43.091],[7.564,43.091],[7.464,43.091],[7.364,43.091],[7.264,43.091],[7.164,43.091],[7.064,43.091],[6.964,43.091],[6.864,43.091],[6.764,43.091],[6.664,43.091],[6.564,43.091],[6.464,43.091],[6.364,43.091],[6.264,43.091],[6.164,43.091],[6.064,43.091],[5.964,43.091],[5.864,42.991],[5.764,43.091],[5.664,43.191],[5.564,43.191],[5.464,43.191],[5.364,43.191],[5.264,43.291]],[[6.003,47.224],[6.043,47.252],[6.069,47.275],[6.127,47.299],[6.259,47.341],[6.385,47.381],[6.456,47.399],[6.569,47.419],[6.657,47.439],[6.72,47.448],[6.76,47.447],[6.786,47.445],[6.811,47.45],[6.859,47.466],[6.916,47.495],[7.019,47.529],[7.131,47.564],[7.235,47.594],[7.341,47.629],[7.414,47.651],[7.497,47.667]],[[9.564,42.091],[9.526,42.124]],[[10.264,42.691],[10.164,42.591],[10.064,42.491],[9.964,42.491],[9.864,42.391],[9.764,42.291],[9.664,42.191],[9.564,42.091]],[[10.264,42.691],[10.24,42.743]],[[10.464,42.991],[10.464,42.891],[10.464,42.791],[10.364,42.691],[10.264,42.691]],[[10.496,42.996],[10.464,42.991]],[[11.264,42.391],[11.164,42.491],[11.064,42.591],[10.964,42.691],[10.864,42.691],[10.764,42.791],[10.664,42.891],[10.564,42.891],[10.464,42.991]],[[12.287,41.754],[12.264,41.691],[12.164,41.791],[12.064,41.891],[11.964,41.991],[11.864,41.991],[11.764,42.091],[11.664,42.191],[11.564,42.291],[11.464,42.291],[11.364,42.391],[11.264,42.391]],[[11.264,42.391],[11.288,42.406]],[[12.474,41.89],[12.474,41.89],[12.475,41.888],[12.469,41.882],[12.468,41.877],[12.472,41.868],[12.47,41.863],[12.461,41.858],[12.46,41.855],[12.46,41.854],[12.462,41.85],[12.444,41.834],[12.435,41.829],[12.426,41.831],[12.421,41.828],[12.418,41.822],[12.416,41.818],[12.411,41.809],[12.405,41.805],[12.394,41.805],[12.386,41.802],[12.375,41.804],[12.37,41.805],[12.364,41.807],[12.36,41.806],[12.352,41.806],[12.343,41.809],[12.339,41.806],[12.337,41.799],[12.332,41.798],[12.323,41.799],[12.317,41.799],[12.309,41.8],[12.302,41.797],[12.295,41.791],[12.284,41.789],[12.278,41.782],[12.273,41.773],[12.274,41.771],[12.274,41.768],[12.275,41.764],[12.28,41.758],[12.271,41.753]]]},"pair": 50235,"direction": 0,"month": 1,"priority": 1,"expense": 15.393,"duration": 90.608,"length": 3127.678},{"type": "Feature", "geometry": {"type":"MultiLineString","coordinates":[[[-0.083,51.52],[0.464,51.491],[0.564,51.491],[0.664,51.491],[0.764,51.491],[0.864,51.491],[0.964,51.591],[1.064,51.691],[1.164,51.691],[1.264,51.791],[1.364,51.891],[1.464,51.991],[1.564,51.991],[1.664,52.091],[1.764,52.191],[1.864,52.191],[1.964,52.191],[2.064,52.191],[2.164,52.191],[2.264,52.191],[2.364,52.191],[2.464,52.191],[2.564,52.191],[2.664,52.191],[2.764,52.191],[2.864,52.191],[2.964,52.191],[3.064,52.191],[3.164,52.191],[3.264,52.191],[3.364,52.191],[3.464,52.191],[3.564,52.191],[3.664,52.191],[3.764,52.191],[3.864,52.191],[3.964,52.191],[4.064,52.191],[4.164,52.191],[4.264,52.191],[4.364,52.191],[4.398,52.198]],[[7.512,47.669],[7.512,47.672],[7.512,47.675],[7.512,47.677],[7.513,47.678],[7.513,47.68],[7.513,47.682],[7.513,47.684],[7.512,47.685],[7.512,47.687],[7.511,47.688],[7.51,47.689],[7.51,47.691],[7.509,47.693],[7.508,47.695],[7.507,47.697],[7.507,47.698],[7.507,47.698],[7.507,47.7],[7.508,47.701],[7.508,47.702],[7.511,47.707],[7.512,47.708],[7.513,47.708],[7.514,47.709],[7.515,47.709],[7.519,47.712],[7.521,47.714],[7.53,47.72],[7.532,47.722],[7.534,47.723],[7.535,47.724],[7.536,47.725],[7.537,47.726],[7.538,47.727],[7.539,47.73],[7.54,47.731],[7.54,47.733],[7.54,47.734],[7.54,47.738],[7.539,47.74],[7.538,47.741],[7.538,47.742],[7.536,47.744],[7.535,47.746],[7.534,47.748],[7.532,47.751],[7.531,47.752],[7.53,47.754],[7.528,47.758],[7.527,47.76],[7.526,47.76],[7.525,47.762],[7.524,47.764],[7.524,47.765],[7.523,47.767],[7.523,47.767],[7.522,47.77],[7.522,47.771],[7.522,47.773],[7.522,47.774],[7.522,47.775],[7.522,47.775],[7.524,47.776],[7.525,47.777],[7.524,47.778],[7.524,47.78],[7.524,47.781],[7.524,47.782],[7.524,47.784],[7.525,47.786],[7.525,47.788],[7.526,47.789],[7.526,47.789],[7.526,47.79],[7.527,47.791],[7.527,47.791],[7.528,47.792],[7.529,47.794],[7.53,47.795],[7.532,47.799],[7.537,47.804],[7.54,47.808],[7.542,47.811],[7.543,47.814],[7.545,47.817],[7.546,47.82],[7.546,47.822],[7.547,47.823],[7.547,47.824],[7.547,47.825],[7.548,47.825],[7.548,47.827],[7.549,47.828],[7.549,47.829],[7.551,47.832],[7.553,47.836],[7.554,47.837],[7.555,47.84],[7.556,47.842],[7.556,47.845],[7.556,47.846],[7.556,47.848],[7.556,47.849],[7.556,47.85],[7.556,47.853],[7.555,47.857],[7.555,47.857],[7.554,47.861],[7.553,47.865],[7.553,47.869],[7.552,47.871],[7.552,47.871],[7.552,47.872],[7.552,47.875],[7.552,47.877],[7.553,47.879],[7.559,47.89],[7.56,47.892],[7.561,47.895],[7.564,47.9],[7.564,47.901],[7.565,47.902],[7.565,47.903],[7.566,47.904],[7.567,47.909],[7.568,47.911],[7.57,47.916],[7.571,47.919],[7.572,47.92],[7.572,47.921],[7.573,47.923],[7.573,47.925],[7.574,47.926],[7.575,47.928],[7.575,47.929],[7.576,47.931],[7.577,47.932],[7.58,47.935],[7.58,47.936],[7.58,47.936],[7.581,47.937],[7.582,47.938],[7.582,47.939],[7.584,47.94],[7.586,47.942],[7.595,47.949],[7.596,47.95],[7.596,47.951],[7.598,47.952],[7.598,47.952],[7.598,47.953],[7.6,47.954],[7.603,47.957],[7.605,47.959],[7.606,47.96],[7.608,47.964],[7.61,47.967],[7.611,47.969],[7.611,47.97],[7.612,47.972],[7.612,47.973],[7.612,47.976],[7.612,47.978],[7.612,47.98],[7.612,47.982],[7.611,47.984],[7.61,47.986],[7.609,47.988],[7.608,47.99],[7.607,47.991],[7.606,47.993],[7.604,47.995],[7.603,47.996],[7.601,47.998],[7.6,47.999],[7.599,48],[7.599,48],[7.597,48.002],[7.589,48.008],[7.582,48.013],[7.579,48.016],[7.574,48.019],[7.573,48.02],[7.57,48.022],[7.569,48.024],[7.567,48.027],[7.567,48.028],[7.566,48.03],[7.567,48.033],[7.57,48.039],[7.573,48.046],[7.574,48.048],[7.574,48.054],[7.574,48.059],[7.573,48.062],[7.568,48.069],[7.57,48.078],[7.569,48.082],[7.57,48.085],[7.572,48.089],[7.575,48.092],[7.58,48.101],[7.58,48.105],[7.578,48.112],[7.578,48.116],[7.578,48.121],[7.578,48.122],[7.581,48.125],[7.584,48.127],[7.585,48.128],[7.587,48.129],[7.591,48.13],[7.595,48.132],[7.597,48.134],[7.598,48.137],[7.6,48.14],[7.599,48.143],[7.599,48.145],[7.598,48.147],[7.598,48.149],[7.599,48.15],[7.607,48.163],[7.611,48.169],[7.614,48.171],[7.619,48.175],[7.62,48.176],[7.625,48.181],[7.63,48.185],[7.631,48.187],[7.635,48.194],[7.638,48.2],[7.64,48.202],[7.641,48.205],[7.644,48.208],[7.645,48.209],[7.646,48.21],[7.648,48.212],[7.654,48.218],[7.658,48.223],[7.661,48.228],[7.663,48.235],[7.665,48.239],[7.669,48.245],[7.67,48.249],[7.676,48.252],[7.676,48.261],[7.677,48.264],[7.678,48.268],[7.68,48.269],[7.68,48.273],[7.681,48.273],[7.68,48.274],[7.681,48.275],[7.683,48.276],[7.683,48.277],[7.681,48.277],[7.681,48.278],[7.683,48.278],[7.684,48.278],[7.685,48.279],[7.685,48.28],[7.684,48.281],[7.689,48.294],[7.692,48.3],[7.697,48.305],[7.703,48.309],[7.709,48.311],[7.724,48.315],[7.731,48.316],[7.732,48.318],[7.734,48.318],[7.737,48.32],[7.739,48.322],[7.741,48.324],[7.742,48.325],[7.744,48.328],[7.744,48.331],[7.746,48.333],[7.749,48.336],[7.747,48.347],[7.743,48.371],[7.74,48.383],[7.737,48.394],[7.743,48.416],[7.745,48.422],[7.745,48.425],[7.752,48.444],[7.766,48.48],[7.771,48.492],[7.78,48.496],[7.795,48.502],[7.802,48.507],[7.805,48.514],[7.806,48.521],[7.805,48.53],[7.805,48.532],[7.805,48.548],[7.805,48.56],[7.803,48.57],[7.801,48.574],[7.801,48.572],[7.8,48.574],[7.799,48.576],[7.799,48.576],[7.799,48.577],[7.799,48.577],[7.798,48.579],[7.798,48.582],[7.798,48.583],[7.799,48.585],[7.8,48.587],[7.8,48.588],[7.801,48.59],[7.802,48.591],[7.802,48.592],[7.803,48.593],[7.803,48.594],[7.804,48.594],[7.806,48.597],[7.81,48.601],[7.811,48.602],[7.815,48.607],[7.817,48.609],[7.82,48.612],[7.823,48.615],[7.824,48.616],[7.826,48.618],[7.828,48.62],[7.829,48.622],[7.83,48.625],[7.831,48.629],[7.832,48.63],[7.832,48.633],[7.833,48.634],[7.834,48.637],[7.835,48.639],[7.836,48.641],[7.838,48.643],[7.839,48.644],[7.838,48.644],[7.841,48.646],[7.843,48.647],[7.845,48.648],[7.848,48.648],[7.85,48.649],[7.852,48.649],[7.853,48.65],[7.855,48.65],[7.858,48.651],[7.867,48.654],[7.871,48.656],[7.873,48.657],[7.874,48.657],[7.873,48.657],[7.877,48.658],[7.882,48.66],[7.885,48.661],[7.888,48.663],[7.889,48.664],[7.889,48.665],[7.89,48.666],[7.891,48.667],[7.895,48.669],[7.898,48.672],[7.899,48.673],[7.899,48.674],[7.9,48.676],[7.9,48.677],[7.902,48.679],[7.903,48.681],[7.903,48.681],[7.905,48.683],[7.905,48.683],[7.909,48.686],[7.911,48.688],[7.912,48.688],[7.913,48.688],[7.913,48.689],[7.914,48.689],[7.915,48.689],[7.915,48.69],[7.918,48.691],[7.923,48.694],[7.926,48.696],[7.927,48.697],[7.928,48.697],[7.931,48.698],[7.933,48.699],[7.935,48.7],[7.938,48.702],[7.94,48.703],[7.942,48.706],[7.951,48.713],[7.952,48.713],[7.952,48.714],[7.952,48.714],[7.955,48.716],[7.96,48.72],[7.963,48.723],[7.965,48.726],[7.965,48.727],[7.966,48.728],[7.966,48.731],[7.965,48.737],[7.965,48.741],[7.964,48.744],[7.964,48.746],[7.964,48.746],[7.964,48.746],[7.965,48.749],[7.966,48.751],[7.966,48.753],[7.967,48.755],[7.969,48.758],[7.971,48.759],[7.973,48.76],[7.975,48.76],[7.979,48.761],[7.981,48.761],[7.982,48.761],[7.984,48.761],[7.989,48.76],[7.992,48.76],[7.998,48.759],[8,48.759],[8.003,48.758],[8.006,48.759],[8.01,48.76],[8.014,48.761],[8.018,48.764],[8.021,48.767],[8.022,48.77],[8.022,48.772],[8.024,48.777],[8.024,48.778],[8.024,48.78],[8.024,48.782],[8.025,48.784],[8.025,48.785],[8.027,48.786],[8.029,48.787],[8.03,48.788],[8.03,48.789],[8.032,48.79],[8.035,48.792],[8.036,48.792],[8.038,48.791],[8.042,48.792],[8.046,48.792],[8.047,48.792],[8.051,48.792],[8.054,48.791],[8.055,48.791],[8.056,48.791],[8.058,48.79],[8.062,48.79],[8.065,48.791],[8.068,48.792],[8.069,48.793],[8.069,48.794],[8.069,48.794],[8.069,48.795],[8.069,48.795],[8.07,48.796],[8.071,48.796],[8.073,48.796],[8.074,48.796],[8.076,48.796],[8.077,48.797],[8.08,48.798],[8.081,48.799],[8.086,48.803],[8.091,48.807],[8.095,48.811],[8.097,48.812],[8.098,48.813],[8.101,48.817],[8.102,48.82],[8.103,48.824],[8.103,48.827],[8.103,48.831],[8.104,48.833],[8.105,48.835],[8.106,48.836],[8.106,48.837],[8.111,48.844],[8.111,48.844],[8.11,48.845],[8.11,48.845],[8.11,48.845],[8.109,48.845],[8.109,48.845],[8.109,48.845],[8.11,48.846],[8.11,48.846],[8.11,48.846],[8.11,48.847],[8.11,48.847],[8.11,48.848],[8.112,48.848],[8.113,48.849],[8.114,48.852],[8.114,48.852],[8.117,48.857],[8.119,48.864],[8.124,48.871],[8.125,48.874],[8.126,48.875],[8.127,48.876],[8.127,48.877],[8.133,48.886],[8.137,48.892],[8.137,48.893],[8.139,48.894],[8.139,48.895],[8.14,48.896],[8.142,48.898],[8.142,48.899],[8.143,48.9],[8.144,48.901],[8.15,48.908],[8.156,48.914],[8.158,48.916],[8.158,48.916],[8.159,48.918],[8.163,48.921],[8.167,48.925],[8.172,48.929],[8.175,48.932],[8.177,48.934],[8.178,48.935],[8.179,48.936],[8.182,48.94],[8.184,48.942],[8.183,48.942],[8.184,48.943],[8.186,48.945],[8.189,48.95],[8.19,48.951],[8.191,48.953],[8.194,48.956],[8.195,48.958],[8.197,48.959],[8.201,48.961],[8.208,48.963],[8.213,48.964],[8.214,48.964],[8.215,48.964],[8.218,48.965],[8.221,48.965],[8.221,48.966],[8.222,48.965],[8.224,48.966],[8.232,48.967],[8.232,48.968],[8.249,48.976],[8.261,48.982],[8.267,48.986],[8.27,48.989],[8.272,48.99],[8.279,48.993],[8.284,48.996],[8.29,49.001],[8.297,49.012],[8.3,49.02],[8.305,49.04],[8.306,49.043],[8.307,49.044],[8.316,49.061],[8.327,49.071],[8.334,49.074],[8.339,49.077],[8.344,49.08],[8.35,49.085],[8.355,49.092],[8.356,49.094],[8.359,49.099],[8.367,49.133],[8.37,49.144],[8.371,49.147],[8.371,49.154],[8.368,49.161],[8.367,49.165],[8.37,49.172],[8.375,49.177],[8.377,49.182],[8.384,49.194],[8.386,49.204],[8.386,49.209],[8.385,49.212],[8.384,49.216],[8.385,49.231],[8.394,49.243],[8.4,49.247],[8.409,49.251],[8.418,49.254],[8.438,49.263],[8.449,49.271],[8.449,49.271],[8.453,49.278],[8.458,49.282],[8.46,49.284],[8.463,49.285],[8.483,49.29],[8.488,49.293],[8.49,49.296],[8.49,49.3],[8.488,49.303],[8.484,49.305],[8.47,49.31],[8.466,49.311],[8.459,49.315],[8.452,49.319],[8.449,49.323],[8.452,49.331],[8.454,49.335],[8.459,49.339],[8.469,49.344],[8.475,49.347],[8.481,49.349],[8.489,49.357],[8.492,49.36],[8.497,49.366],[8.5,49.374],[8.502,49.381],[8.502,49.386],[8.502,49.391],[8.498,49.397],[8.496,49.404],[8.495,49.413],[8.503,49.425],[8.508,49.436],[8.504,49.439],[8.497,49.441],[8.491,49.445],[8.478,49.445],[8.472,49.445],[8.458,49.446],[8.453,49.447],[8.446,49.45],[8.44,49.455],[8.44,49.46],[8.451,49.464],[8.457,49.467],[8.462,49.475],[8.457,49.479],[8.451,49.483],[8.44,49.496],[8.438,49.502],[8.432,49.514],[8.428,49.522],[8.423,49.528],[8.421,49.534],[8.412,49.548],[8.41,49.554],[8.411,49.561],[8.42,49.572],[8.416,49.583],[8.413,49.587],[8.409,49.592],[8.41,49.594],[8.409,49.595],[8.407,49.601],[8.403,49.606],[8.397,49.61],[8.39,49.614],[8.38,49.623],[8.376,49.629],[8.372,49.638],[8.37,49.646],[8.37,49.661],[8.364,49.665],[8.36,49.67],[8.354,49.682],[8.354,49.688],[8.357,49.693],[8.362,49.7],[8.37,49.703],[8.381,49.707],[8.421,49.716],[8.426,49.717],[8.437,49.725],[8.458,49.738],[8.478,49.752],[8.479,49.756],[8.478,49.76],[8.473,49.765],[8.459,49.765],[8.442,49.762],[8.427,49.763],[8.421,49.768],[8.416,49.775],[8.412,49.783],[8.406,49.799],[8.401,49.804],[8.37,49.826],[8.371,49.835],[8.379,49.85],[8.38,49.852],[8.378,49.856],[8.372,49.86],[8.359,49.864],[8.355,49.866],[8.345,49.872],[8.34,49.879],[8.339,49.889],[8.347,49.911],[8.346,49.918],[8.344,49.925],[8.341,49.938],[8.339,49.945],[8.336,49.952],[8.315,49.973],[8.303,49.981],[8.299,49.983],[8.29,49.989],[8.285,49.99],[8.28,49.995],[8.273,50.001],[8.272,50.004],[8.272,50.007],[8.268,50.012],[8.265,50.015],[8.259,50.02],[8.236,50.028],[8.208,50.034],[8.201,50.034],[8.192,50.035],[8.168,50.032],[8.155,50.028],[8.118,50.02],[8.102,50.016],[8.027,50.001],[8.02,49.999],[8.003,49.993],[7.996,49.988],[7.988,49.987],[7.979,49.984],[7.967,49.98],[7.952,49.978],[7.941,49.978],[7.895,49.973],[7.875,49.974],[7.86,49.985],[7.859,49.989],[7.859,50],[7.854,50.009],[7.849,50.013],[7.844,50.016],[7.831,50.021],[7.817,50.032],[7.802,50.041],[7.788,50.046],[7.775,50.054],[7.774,50.058],[7.775,50.065],[7.775,50.068],[7.776,50.072],[7.774,50.077],[7.769,50.08],[7.758,50.088],[7.734,50.108],[7.727,50.11],[7.724,50.115],[7.726,50.118],[7.735,50.126],[7.737,50.134],[7.728,50.14],[7.725,50.148],[7.711,50.157],[7.702,50.166],[7.697,50.169],[7.69,50.171],[7.68,50.17],[7.67,50.173],[7.664,50.174],[7.648,50.181],[7.647,50.184],[7.649,50.19],[7.648,50.196],[7.645,50.198],[7.644,50.201],[7.627,50.211],[7.621,50.214],[7.618,50.222],[7.613,50.227],[7.604,50.232],[7.59,50.233],[7.585,50.233],[7.577,50.24],[7.58,50.247],[7.586,50.249],[7.591,50.25],[7.604,50.25],[7.618,50.248],[7.619,50.248],[7.636,50.247],[7.638,50.248],[7.646,50.252],[7.648,50.255],[7.649,50.26],[7.647,50.265],[7.634,50.277],[7.631,50.279],[7.628,50.281],[7.62,50.287],[7.614,50.29],[7.597,50.309],[7.595,50.309],[7.595,50.309],[7.594,50.311],[7.594,50.311],[7.593,50.314],[7.589,50.319],[7.592,50.327],[7.592,50.327],[7.594,50.333],[7.596,50.339],[7.605,50.355],[7.61,50.365],[7.615,50.375],[7.616,50.378],[7.619,50.384],[7.62,50.389],[7.616,50.395],[7.609,50.399],[7.594,50.404],[7.574,50.414],[7.554,50.422],[7.539,50.425],[7.528,50.425],[7.522,50.423],[7.518,50.422],[7.51,50.417],[7.502,50.415],[7.489,50.415],[7.478,50.416],[7.464,50.421],[7.458,50.425],[7.451,50.434],[7.445,50.441],[7.441,50.443],[7.436,50.444],[7.428,50.445],[7.418,50.443],[7.404,50.443],[7.393,50.445],[7.387,50.448],[7.379,50.452],[7.356,50.466],[7.352,50.471],[7.337,50.483],[7.325,50.494],[7.31,50.506],[7.299,50.517],[7.296,50.521],[7.292,50.527],[7.288,50.532],[7.285,50.537],[7.271,50.566],[7.267,50.571],[7.258,50.576],[7.235,50.58],[7.224,50.584],[7.214,50.59],[7.212,50.596],[7.214,50.6],[7.216,50.603],[7.216,50.608],[7.215,50.623],[7.214,50.635],[7.215,50.643],[7.212,50.649],[7.209,50.652],[7.207,50.658],[7.203,50.661],[7.198,50.662],[7.195,50.664],[7.184,50.678],[7.179,50.687],[7.173,50.692],[7.166,50.707],[7.161,50.712],[7.154,50.715],[7.134,50.721],[7.127,50.724],[7.122,50.727],[7.12,50.728],[7.113,50.739],[7.107,50.75],[7.105,50.755],[7.101,50.757],[7.09,50.762],[7.09,50.762],[7.088,50.763],[7.088,50.763],[7.066,50.773],[7.059,50.776],[7.057,50.776],[7.046,50.782],[7.037,50.788],[7.034,50.797],[7.034,50.798],[7.035,50.803],[7.034,50.809],[7.029,50.816],[7.027,50.818],[7.023,50.821],[7.021,50.822],[7.012,50.824],[7,50.826],[6.999,50.826],[6.988,50.829],[6.982,50.834],[6.982,50.839],[6.983,50.84],[6.986,50.842],[6.996,50.846],[7.012,50.854],[7.018,50.859],[7.022,50.863],[7.033,50.868],[7.042,50.87],[7.049,50.874],[7.052,50.88],[7.052,50.886],[7.047,50.89],[7.039,50.893],[7.029,50.894],[7.013,50.894],[7.012,50.894],[7.005,50.895],[6.997,50.897],[6.991,50.902],[6.989,50.903],[6.977,50.914],[6.974,50.918],[6.969,50.925],[6.965,50.932],[6.96,50.939],[6.966,50.948],[6.966,50.948],[6.971,50.952],[6.992,50.965],[6.995,50.971],[6.992,50.975],[6.986,50.979],[6.972,50.978],[6.965,50.985],[6.96,50.992],[6.959,50.998],[6.96,51.003],[6.969,51.015],[6.968,51.021],[6.959,51.029],[6.95,51.033],[6.948,51.034],[6.927,51.046],[6.911,51.052],[6.856,51.071],[6.854,51.072],[6.852,51.074],[6.852,51.075],[6.85,51.079],[6.851,51.081],[6.851,51.083],[6.853,51.085],[6.854,51.086],[6.864,51.091],[6.875,51.094],[6.879,51.1],[6.879,51.105],[6.877,51.108],[6.864,51.12],[6.861,51.122],[6.853,51.127],[6.847,51.131],[6.846,51.137],[6.848,51.144],[6.853,51.15],[6.853,51.154],[6.853,51.155],[6.853,51.155],[6.849,51.157],[6.841,51.158],[6.841,51.158],[6.836,51.159],[6.833,51.159],[6.815,51.144],[6.806,51.142],[6.799,51.145],[6.797,51.146],[6.795,51.152],[6.799,51.161],[6.799,51.169],[6.795,51.17],[6.795,51.171],[6.792,51.175],[6.792,51.176],[6.788,51.179],[6.78,51.181],[6.766,51.179],[6.764,51.179],[6.759,51.18],[6.755,51.18],[6.752,51.18],[6.737,51.184],[6.733,51.192],[6.729,51.203],[6.729,51.208],[6.726,51.217],[6.728,51.225],[6.732,51.226],[6.732,51.226],[6.742,51.226],[6.746,51.225],[6.755,51.22],[6.758,51.22],[6.763,51.222],[6.764,51.227],[6.764,51.227],[6.764,51.232],[6.763,51.238],[6.759,51.243],[6.751,51.247],[6.75,51.247],[6.746,51.252],[6.722,51.259],[6.716,51.261],[6.707,51.267],[6.705,51.271],[6.705,51.281],[6.712,51.286],[6.714,51.287],[6.731,51.303],[6.732,51.309],[6.732,51.316],[6.729,51.32],[6.722,51.327],[6.706,51.334],[6.664,51.345],[6.66,51.346],[6.656,51.351],[6.662,51.365],[6.664,51.366],[6.67,51.369],[6.68,51.372],[6.705,51.373],[6.712,51.376],[6.726,51.383],[6.739,51.392],[6.743,51.397],[6.744,51.401],[6.744,51.406],[6.74,51.41],[6.732,51.418],[6.718,51.427],[6.713,51.434],[6.712,51.439],[6.715,51.448],[6.724,51.455],[6.721,51.462],[6.715,51.466],[6.69,51.475],[6.686,51.481],[6.688,51.486],[6.702,51.494],[6.715,51.498],[6.723,51.508],[6.717,51.514],[6.713,51.52],[6.709,51.521],[6.691,51.528],[6.686,51.533],[6.681,51.54],[6.682,51.546],[6.689,51.553],[6.691,51.556],[6.691,51.56],[6.691,51.565],[6.687,51.571],[6.678,51.576],[6.662,51.578],[6.652,51.577],[6.642,51.574],[6.633,51.57],[6.63,51.569],[6.612,51.568],[6.606,51.57],[6.602,51.573],[6.601,51.583],[6.603,51.59],[6.6,51.596],[6.592,51.612],[6.59,51.619],[6.592,51.625],[6.599,51.63],[6.599,51.634],[6.602,51.636],[6.605,51.642],[6.603,51.652],[6.592,51.657],[6.585,51.66],[6.566,51.659],[6.56,51.659],[6.543,51.66],[6.523,51.662],[6.499,51.662],[6.486,51.667],[6.48,51.671],[6.477,51.675],[6.476,51.68],[6.475,51.687],[6.473,51.691],[6.468,51.697],[6.463,51.702],[6.461,51.703],[6.454,51.706],[6.443,51.708],[6.433,51.71],[6.429,51.71],[6.418,51.713],[6.411,51.719],[6.412,51.724],[6.418,51.731],[6.424,51.738],[6.422,51.747],[6.418,51.752],[6.41,51.755],[6.4,51.756],[6.391,51.756],[6.35,51.756],[6.335,51.767],[6.331,51.775],[6.327,51.784],[6.316,51.798],[6.306,51.806],[6.282,51.819],[6.252,51.827],[6.223,51.83],[6.183,51.839],[6.166,51.843],[6.163,51.844],[6.162,51.845],[6.156,51.846],[6.15,51.847],[6.148,51.848],[6.148,51.849],[6.146,51.849],[6.143,51.849],[6.141,51.849],[6.14,51.849],[6.134,51.85],[6.132,51.85],[6.131,51.85],[6.119,51.85],[6.115,51.85],[6.111,51.849],[6.107,51.85],[6.106,51.85],[6.102,51.851],[6.101,51.851],[6.099,51.852],[6.098,51.853],[6.095,51.853],[6.093,51.854],[6.092,51.854],[6.093,51.855],[6.093,51.856],[6.093,51.857],[6.091,51.858],[6.09,51.858],[6.089,51.858],[6.089,51.857],[6.088,51.857],[6.086,51.858],[6.086,51.858],[6.085,51.858],[6.084,51.859],[6.083,51.86],[6.079,51.862],[6.079,51.862],[6.076,51.862],[6.07,51.866],[6.067,51.867],[6.062,51.869],[6.058,51.87],[6.032,51.881],[6.024,51.892],[6.022,51.894],[6.022,51.896],[6.02,51.898],[6.017,51.9],[6.014,51.901],[6.012,51.902],[6.008,51.903],[6.002,51.905],[5.993,51.908],[5.99,51.91],[5.984,51.915],[5.978,51.921],[5.976,51.923],[5.968,51.928],[5.965,51.931],[5.963,51.932],[5.961,51.935],[5.96,51.939],[5.959,51.942],[5.958,51.944],[5.957,51.946],[5.954,51.948],[5.949,51.951],[5.942,51.954],[5.94,51.955],[5.938,51.956],[5.936,51.958],[5.934,51.96],[5.933,51.965],[5.932,51.966],[5.93,51.967],[5.928,51.968],[5.926,51.969],[5.923,51.97],[5.92,51.97],[5.917,51.971],[5.915,51.972],[5.913,51.973],[5.91,51.974],[5.907,51.975],[5.907,51.974],[5.904,51.975],[5.904,51.975],[5.9,51.98],[5.893,51.983],[5.889,51.983],[5.886,51.983],[5.883,51.983],[5.88,51.982],[5.875,51.981],[5.874,51.981],[5.872,51.98],[5.873,51.979],[5.872,51.978],[5.871,51.977],[5.869,51.975],[5.867,51.973],[5.866,51.973],[5.859,51.968],[5.858,51.968],[5.857,51.968],[5.855,51.968],[5.853,51.969],[5.853,51.969],[5.851,51.97],[5.843,51.972],[5.84,51.973],[5.836,51.973],[5.833,51.973],[5.83,51.973],[5.827,51.972],[5.825,51.972],[5.813,51.965],[5.81,51.964],[5.808,51.963],[5.801,51.962],[5.797,51.962],[5.793,51.961],[5.787,51.96],[5.785,51.959],[5.772,51.96],[5.771,51.96],[5.763,51.963],[5.757,51.965],[5.745,51.971],[5.74,51.971],[5.737,51.971],[5.731,51.969],[5.723,51.963],[5.72,51.963],[5.718,51.963],[5.714,51.962],[5.711,51.962],[5.705,51.962],[5.704,51.961],[5.702,51.961],[5.7,51.961],[5.694,51.96],[5.691,51.959],[5.69,51.959],[5.687,51.959],[5.684,51.959],[5.681,51.958],[5.676,51.956],[5.673,51.954],[5.669,51.952],[5.664,51.952],[5.656,51.953],[5.654,51.953],[5.652,51.953],[5.649,51.953],[5.646,51.952],[5.643,51.949],[5.642,51.948],[5.641,51.947],[5.64,51.947],[5.638,51.945],[5.635,51.943],[5.633,51.942],[5.63,51.942],[5.607,51.944],[5.603,51.945],[5.596,51.949],[5.593,51.95],[5.591,51.951],[5.585,51.951],[5.572,51.954],[5.57,51.954],[5.563,51.955],[5.56,51.956],[5.557,51.957],[5.558,51.958],[5.558,51.959],[5.555,51.961],[5.555,51.96],[5.555,51.959],[5.554,51.959],[5.552,51.96],[5.55,51.961],[5.547,51.963],[5.545,51.966],[5.541,51.966],[5.54,51.966],[5.529,51.969],[5.519,51.971],[5.509,51.973],[5.506,51.974],[5.504,51.975],[5.5,51.977],[5.497,51.979],[5.49,51.981],[5.486,51.983],[5.484,51.983],[5.482,51.983],[5.474,51.984],[5.471,51.984],[5.467,51.984],[5.458,51.985],[5.454,51.985],[5.451,51.986],[5.448,51.987],[5.445,51.987],[5.442,51.988],[5.44,51.988],[5.437,51.987],[5.435,51.987],[5.432,51.987],[5.433,51.985],[5.43,51.984],[5.429,51.985],[5.428,51.985],[5.426,51.984],[5.426,51.983],[5.425,51.982],[5.424,51.982],[5.421,51.98],[5.42,51.98],[5.414,51.978],[5.412,51.977],[5.41,51.977],[5.407,51.977],[5.405,51.976],[5.404,51.976],[5.401,51.975],[5.399,51.975],[5.397,51.974],[5.396,51.974],[5.394,51.974],[5.393,51.974],[5.392,51.973],[5.392,51.973],[5.393,51.972],[5.386,51.97],[5.383,51.97],[5.38,51.97],[5.375,51.97],[5.372,51.971],[5.37,51.971],[5.364,51.972],[5.362,51.972],[5.345,51.968],[5.34,51.963],[5.336,51.961],[5.336,51.96],[5.334,51.959],[5.332,51.958],[5.328,51.957],[5.324,51.956],[5.322,51.956],[5.319,51.956],[5.316,51.957],[5.314,51.958],[5.311,51.959],[5.308,51.961],[5.304,51.962],[5.301,51.963],[5.297,51.964],[5.292,51.964],[5.288,51.964],[5.284,51.964],[5.278,51.965],[5.274,51.966],[5.271,51.967],[5.266,51.968],[5.263,51.97],[5.26,51.971],[5.257,51.973],[5.255,51.974],[5.248,51.979],[5.244,51.981],[5.24,51.981],[5.237,51.981],[5.231,51.979],[5.226,51.973],[5.223,51.969],[5.22,51.966],[5.218,51.964],[5.215,51.963],[5.212,51.961],[5.208,51.961],[5.205,51.961],[5.201,51.961],[5.198,51.962],[5.195,51.963],[5.19,51.965],[5.187,51.966],[5.179,51.969],[5.174,51.971],[5.166,51.972],[5.163,51.972],[5.158,51.972],[5.156,51.973],[5.155,51.973],[5.151,51.975],[5.151,51.975],[5.149,51.975],[5.146,51.975],[5.145,51.977],[5.143,51.98],[5.135,51.988],[5.133,51.991],[5.13,51.993],[5.126,51.996],[5.12,51.998],[5.116,51.999],[5.109,52.001],[5.105,52.002],[5.101,52.002],[5.097,52.002],[5.094,52.001],[5.091,52.001],[5.087,51.999],[5.083,51.998],[5.082,51.998],[5.077,51.996],[5.074,51.995],[5.073,51.993],[5.07,51.992],[5.067,51.992],[5.065,51.991],[5.064,51.989],[5.064,51.988],[5.063,51.986],[5.062,51.986],[5.06,51.985],[5.059,51.985],[5.058,51.986],[5.058,51.987],[5.055,51.986],[5.054,51.985],[5.05,51.983],[5.048,51.982],[5.045,51.98],[5.042,51.978],[5.042,51.978],[5.04,51.976],[5.04,51.974],[5.039,51.972],[5.037,51.971],[5.035,51.969],[5.032,51.968],[5.03,51.967],[5.027,51.967],[5.025,51.967],[5.022,51.968],[5.019,51.968],[5.017,51.97],[5.015,51.971],[5.012,51.973],[5.009,51.974],[5.007,51.976],[5.004,51.977],[5.001,51.977],[4.999,51.976],[5.003,51.977],[4.999,51.977],[4.995,51.977],[4.99,51.975],[4.986,51.974],[4.985,51.973],[4.981,51.969],[4.973,51.962],[4.968,51.96],[4.964,51.96],[4.96,51.96],[4.956,51.961],[4.952,51.963],[4.95,51.963],[4.947,51.962],[4.945,51.963],[4.944,51.963],[4.941,51.963],[4.939,51.962],[4.936,51.96],[4.935,51.959],[4.931,51.958],[4.929,51.957],[4.928,51.956],[4.927,51.956],[4.927,51.954],[4.926,51.953],[4.925,51.953],[4.922,51.95],[4.92,51.948],[4.916,51.944],[4.914,51.944],[4.909,51.943],[4.902,51.942],[4.893,51.942],[4.889,51.941],[4.882,51.94],[4.878,51.939],[4.873,51.939],[4.868,51.939],[4.866,51.94],[4.862,51.939],[4.859,51.94],[4.853,51.941],[4.851,51.941],[4.846,51.94],[4.838,51.939],[4.835,51.938],[4.833,51.937],[4.83,51.934],[4.824,51.931],[4.819,51.927],[4.775,51.915],[4.773,51.915],[4.771,51.915],[4.769,51.915],[4.766,51.914],[4.761,51.911],[4.759,51.911],[4.733,51.904],[4.732,51.903],[4.731,51.903],[4.727,51.901],[4.726,51.9],[4.723,51.899],[4.72,51.898],[4.716,51.898],[4.714,51.898],[4.704,51.899],[4.701,51.899],[4.698,51.899],[4.696,51.898],[4.693,51.897],[4.67,51.888],[4.658,51.888],[4.656,51.888],[4.653,51.888],[4.649,51.888],[4.646,51.889],[4.643,51.889],[4.64,51.889],[4.639,51.889],[4.635,51.889],[4.633,51.889],[4.631,51.888],[4.629,51.889],[4.628,51.888],[4.622,51.888],[4.617,51.888],[4.615,51.889],[4.614,51.89],[4.608,51.89],[4.604,51.891],[4.604,51.891],[4.599,51.891],[4.596,51.892],[4.593,51.893],[4.59,51.894],[4.589,51.894],[4.588,51.895],[4.585,51.897],[4.583,51.899],[4.581,51.9],[4.579,51.901],[4.576,51.901],[4.576,51.9],[4.573,51.9],[4.572,51.902],[4.57,51.901],[4.568,51.901],[4.566,51.901],[4.561,51.906],[4.568,51.91],[4.57,51.912],[4.572,51.913],[4.577,51.915],[4.58,51.918],[4.579,51.919],[4.579,51.921],[4.58,51.922],[4.581,51.922],[4.584,51.922],[4.587,51.923],[4.588,51.923],[4.589,51.924],[4.591,51.925],[4.593,51.926],[4.596,51.927],[4.6,51.928],[4.601,51.928],[4.606,51.928],[4.608,51.927],[4.609,51.927],[4.611,51.928],[4.611,51.928],[4.611,51.93],[4.611,51.931],[4.611,51.932],[4.616,51.934],[4.617,51.934],[4.619,51.937],[4.62,51.938],[4.621,51.938],[4.622,51.938],[4.624,51.938],[4.628,51.938],[4.631,51.938],[4.631,51.938],[4.633,51.942],[4.634,51.944],[4.635,51.947],[4.636,51.951],[4.637,51.952],[4.638,51.953],[4.64,51.954],[4.642,51.955],[4.642,51.955],[4.642,51.956],[4.64,51.959],[4.637,51.961],[4.635,51.962],[4.632,51.965],[4.633,51.969],[4.638,51.972],[4.642,51.973],[4.645,51.973],[4.648,51.974],[4.649,51.975],[4.653,51.977],[4.654,51.978],[4.658,51.978],[4.66,51.979],[4.664,51.98],[4.668,51.981],[4.668,51.982],[4.667,51.982],[4.668,51.983],[4.668,51.984],[4.67,51.986],[4.671,51.987],[4.674,51.989],[4.676,51.99],[4.678,51.992],[4.679,51.993],[4.683,51.995],[4.685,51.996],[4.687,51.998],[4.689,51.998],[4.69,51.999],[4.692,51.999],[4.693,52.004],[4.692,52.006],[4.691,52.008],[4.689,52.009],[4.687,52.011],[4.685,52.013],[4.683,52.016],[4.681,52.021],[4.677,52.022],[4.674,52.023],[4.672,52.023],[4.67,52.024],[4.669,52.026],[4.665,52.028],[4.661,52.032],[4.66,52.037],[4.66,52.041],[4.662,52.049],[4.664,52.059],[4.66,52.064],[4.659,52.07],[4.66,52.075],[4.661,52.082],[4.662,52.084],[4.662,52.087],[4.663,52.089],[4.663,52.091],[4.664,52.096],[4.665,52.1],[4.668,52.106],[4.671,52.111],[4.672,52.113],[4.673,52.115],[4.675,52.119],[4.673,52.12],[4.669,52.121],[4.668,52.121],[4.667,52.122],[4.665,52.124],[4.663,52.128],[4.664,52.131],[4.664,52.136],[4.663,52.139],[4.663,52.14],[4.662,52.141],[4.659,52.142],[4.657,52.142],[4.653,52.143],[4.651,52.143],[4.649,52.143],[4.647,52.143],[4.636,52.14],[4.632,52.14],[4.63,52.139],[4.627,52.138],[4.626,52.137],[4.623,52.135],[4.622,52.134],[4.621,52.132],[4.618,52.131],[4.615,52.13],[4.612,52.13],[4.599,52.132],[4.595,52.132],[4.591,52.132],[4.588,52.13],[4.584,52.129],[4.581,52.129],[4.572,52.129],[4.566,52.13],[4.561,52.132],[4.558,52.134],[4.553,52.137],[4.548,52.139],[4.543,52.141],[4.537,52.141],[4.534,52.142],[4.532,52.142],[4.53,52.143],[4.529,52.144],[4.526,52.145],[4.524,52.147],[4.522,52.154],[4.521,52.154],[4.52,52.155],[4.518,52.156],[4.513,52.157],[4.512,52.157],[4.511,52.157],[4.509,52.157],[4.504,52.157],[4.505,52.158],[4.505,52.159],[4.506,52.161],[4.506,52.161],[4.505,52.162],[4.504,52.162],[4.503,52.163],[4.5,52.163],[4.499,52.164],[4.494,52.164],[4.493,52.164],[4.492,52.164],[4.491,52.164],[4.49,52.164],[4.487,52.165],[4.485,52.164],[4.483,52.163],[4.481,52.161],[4.479,52.159],[4.476,52.159],[4.474,52.158],[4.472,52.157],[4.47,52.155],[4.468,52.154],[4.465,52.152],[4.463,52.153],[4.46,52.154],[4.457,52.156],[4.455,52.158],[4.45,52.161],[4.449,52.162],[4.448,52.163],[4.447,52.165],[4.447,52.167],[4.447,52.17],[4.447,52.171],[4.448,52.172],[4.449,52.173],[4.449,52.178],[4.447,52.179],[4.444,52.179],[4.441,52.18],[4.436,52.181],[4.434,52.183],[4.43,52.187],[4.427,52.189],[4.427,52.191],[4.426,52.192],[4.427,52.194],[4.428,52.194],[4.429,52.195],[4.431,52.196],[4.43,52.197],[4.421,52.203],[4.418,52.204],[4.409,52.207]],[[4.627,43.687],[4.564,43.391],[4.664,43.291],[4.764,43.291],[4.864,43.291],[4.964,43.291],[5.064,43.291],[5.164,43.291],[5.264,43.291]],[[4.717,44.125],[4.716,44.123],[4.717,44.122],[4.718,44.119],[4.719,44.117],[4.719,44.116],[4.72,44.114],[4.721,44.111],[4.721,44.11],[4.722,44.109],[4.724,44.108],[4.726,44.106],[4.727,44.105],[4.729,44.104],[4.728,44.102],[4.727,44.101],[4.726,44.1],[4.726,44.098],[4.726,44.097],[4.726,44.097],[4.726,44.097],[4.726,44.096],[4.727,44.095],[4.727,44.094],[4.729,44.092],[4.73,44.092],[4.732,44.091],[4.732,44.091],[4.734,44.09],[4.735,44.089],[4.737,44.089],[4.74,44.088],[4.746,44.087],[4.75,44.086],[4.752,44.085],[4.754,44.084],[4.757,44.083],[4.758,44.081],[4.76,44.079],[4.762,44.077],[4.765,44.075],[4.767,44.074],[4.769,44.073],[4.771,44.072],[4.775,44.072],[4.779,44.071],[4.779,44.071],[4.782,44.07],[4.787,44.069],[4.788,44.068],[4.79,44.066],[4.79,44.065],[4.791,44.063],[4.791,44.061],[4.791,44.06],[4.791,44.059],[4.79,44.058],[4.79,44.055],[4.79,44.054],[4.791,44.053],[4.793,44.051],[4.797,44.05],[4.798,44.049],[4.803,44.046],[4.806,44.044],[4.808,44.042],[4.81,44.04],[4.813,44.038],[4.815,44.036],[4.817,44.035],[4.818,44.033],[4.819,44.031],[4.82,44.028],[4.82,44.027],[4.821,44.022],[4.82,44.013],[4.821,44.01],[4.821,44.008],[4.822,44.006],[4.822,44.006],[4.821,44.003],[4.821,44],[4.821,43.999],[4.821,43.995],[4.821,43.992],[4.82,43.988],[4.819,43.982],[4.819,43.977],[4.818,43.976],[4.818,43.974],[4.818,43.972],[4.817,43.969],[4.817,43.966],[4.816,43.965],[4.816,43.964],[4.815,43.963],[4.814,43.962],[4.811,43.96],[4.807,43.959],[4.803,43.957],[4.8,43.956],[4.798,43.954],[4.796,43.953],[4.795,43.953],[4.795,43.952],[4.794,43.951],[4.792,43.949],[4.791,43.947],[4.79,43.946],[4.788,43.944],[4.787,43.943],[4.785,43.942],[4.785,43.942],[4.786,43.941],[4.771,43.938],[4.766,43.937],[4.759,43.936],[4.755,43.935],[4.75,43.934],[4.746,43.932],[4.743,43.929],[4.739,43.926],[4.736,43.923],[4.733,43.919],[4.729,43.915],[4.726,43.911],[4.723,43.909],[4.721,43.907],[4.718,43.906],[4.713,43.904],[4.706,43.902],[4.704,43.902],[4.701,43.9],[4.7,43.9],[4.697,43.898],[4.693,43.894],[4.69,43.89],[4.687,43.887],[4.685,43.886],[4.683,43.885],[4.675,43.883],[4.665,43.88],[4.661,43.879],[4.656,43.877],[4.65,43.874],[4.646,43.872],[4.643,43.871],[4.64,43.87],[4.634,43.87],[4.627,43.869],[4.625,43.868],[4.622,43.866],[4.621,43.865],[4.619,43.863],[4.619,43.861],[4.618,43.858],[4.618,43.853],[4.62,43.849],[4.623,43.843],[4.623,43.843],[4.622,43.843],[4.621,43.842],[4.622,43.841],[4.622,43.839],[4.623,43.836],[4.623,43.834],[4.624,43.833],[4.624,43.832],[4.624,43.83],[4.624,43.83],[4.625,43.828],[4.626,43.827],[4.627,43.826],[4.628,43.825],[4.628,43.825],[4.63,43.824],[4.632,43.823],[4.633,43.823],[4.634,43.823],[4.636,43.822],[4.638,43.821],[4.639,43.821],[4.641,43.819],[4.643,43.817],[4.644,43.816],[4.645,43.815],[4.646,43.814],[4.648,43.813],[4.648,43.811],[4.648,43.81],[4.649,43.809],[4.649,43.807],[4.649,43.806],[4.65,43.805],[4.65,43.805],[4.649,43.804],[4.649,43.804],[4.649,43.802],[4.649,43.801],[4.648,43.8],[4.648,43.799],[4.648,43.8],[4.647,43.8],[4.647,43.801],[4.647,43.801],[4.647,43.8],[4.648,43.798],[4.648,43.796],[4.647,43.795],[4.647,43.793],[4.648,43.791],[4.649,43.789],[4.649,43.788],[4.649,43.785],[4.647,43.782],[4.644,43.778],[4.64,43.776],[4.639,43.775],[4.638,43.774],[4.638,43.774],[4.637,43.773],[4.636,43.772],[4.635,43.772],[4.634,43.771],[4.633,43.77],[4.632,43.769],[4.63,43.767],[4.629,43.767],[4.629,43.767],[4.628,43.767],[4.628,43.767],[4.627,43.766],[4.626,43.766],[4.626,43.766],[4.625,43.765],[4.626,43.765],[4.628,43.764],[4.628,43.758],[4.628,43.756],[4.628,43.756],[4.627,43.755],[4.627,43.755],[4.627,43.754],[4.627,43.753],[4.626,43.753],[4.625,43.746],[4.625,43.745],[4.625,43.744],[4.624,43.743],[4.623,43.742],[4.623,43.742],[4.622,43.741],[4.622,43.74],[4.622,43.74],[4.621,43.739],[4.621,43.739],[4.62,43.736],[4.619,43.734],[4.619,43.733],[4.618,43.733],[4.618,43.733],[4.617,43.732],[4.617,43.731],[4.618,43.728],[4.618,43.727],[4.618,43.727],[4.618,43.725],[4.618,43.725],[4.619,43.725],[4.619,43.725],[4.619,43.724],[4.618,43.724],[4.618,43.723],[4.617,43.722],[4.617,43.721],[4.617,43.72],[4.617,43.72],[4.617,43.719],[4.617,43.717],[4.617,43.717],[4.618,43.717],[4.618,43.716],[4.617,43.715],[4.618,43.715],[4.618,43.714],[4.619,43.712],[4.619,43.71],[4.619,43.708],[4.62,43.707],[4.62,43.706],[4.62,43.705],[4.621,43.704],[4.622,43.702],[4.625,43.699],[4.626,43.699],[4.627,43.697],[4.628,43.695],[4.628,43.694],[4.628,43.694],[4.629,43.694],[4.629,43.694],[4.63,43.691],[4.63,43.69],[4.628,43.688]],[[4.801,44.159],[4.798,44.158],[4.797,44.157],[4.796,44.157],[4.796,44.156],[4.794,44.155],[4.793,44.154],[4.791,44.153],[4.789,44.152],[4.789,44.151],[4.788,44.15],[4.787,44.149],[4.785,44.148],[4.783,44.149],[4.782,44.149],[4.781,44.149],[4.78,44.15],[4.778,44.149],[4.777,44.149],[4.776,44.15],[4.775,44.15],[4.773,44.15],[4.772,44.149],[4.771,44.149],[4.769,44.15],[4.769,44.149],[4.768,44.147],[4.767,44.146],[4.766,44.146],[4.765,44.146],[4.764,44.146],[4.763,44.147],[4.761,44.147],[4.76,44.147],[4.758,44.146],[4.757,44.146],[4.755,44.145],[4.754,44.145],[4.753,44.145],[4.751,44.145],[4.751,44.146],[4.75,44.147],[4.749,44.148],[4.748,44.148],[4.747,44.148],[4.745,44.148],[4.744,44.148],[4.742,44.148],[4.739,44.148],[4.738,44.148],[4.737,44.148],[4.735,44.147],[4.734,44.147],[4.732,44.146],[4.731,44.146],[4.731,44.145],[4.731,44.145],[4.731,44.143],[4.731,44.143],[4.73,44.143],[4.73,44.142],[4.731,44.142],[4.731,44.142],[4.731,44.141],[4.731,44.141],[4.731,44.141],[4.733,44.139],[4.733,44.139],[4.734,44.137],[4.734,44.136],[4.734,44.135],[4.731,44.134],[4.731,44.133],[4.73,44.132],[4.727,44.131],[4.725,44.131],[4.723,44.13],[4.721,44.129],[4.719,44.128],[4.718,44.127],[4.717,44.125]],[[6.002,47.224],[6,47.222],[5.999,47.22],[5.997,47.219],[5.996,47.217],[5.995,47.216],[5.995,47.214],[5.995,47.214],[5.993,47.213],[5.992,47.212],[5.991,47.21],[5.99,47.21],[5.987,47.208],[5.986,47.208],[5.985,47.208],[5.984,47.209],[5.983,47.209],[5.981,47.209],[5.977,47.209],[5.974,47.209],[5.972,47.209],[5.97,47.209],[5.968,47.209],[5.965,47.209],[5.963,47.209],[5.963,47.209],[5.962,47.208],[5.961,47.207],[5.961,47.206],[5.96,47.204],[5.961,47.203],[5.962,47.203],[5.963,47.202],[5.965,47.2],[5.966,47.199],[5.966,47.199],[5.965,47.197],[5.964,47.196],[5.963,47.195],[5.962,47.195],[5.959,47.193],[5.958,47.193],[5.957,47.192],[5.955,47.192],[5.951,47.191],[5.949,47.19],[5.948,47.189],[5.944,47.186],[5.939,47.184],[5.934,47.182],[5.927,47.181],[5.921,47.179],[5.915,47.179],[5.908,47.181],[5.9,47.185],[5.894,47.19],[5.89,47.191],[5.885,47.19],[5.883,47.187],[5.885,47.184],[5.888,47.181],[5.894,47.18],[5.896,47.178],[5.897,47.176],[5.897,47.175],[5.896,47.172],[5.893,47.17],[5.887,47.169],[5.886,47.166],[5.886,47.165],[5.886,47.165],[5.886,47.164],[5.886,47.161],[5.886,47.16],[5.886,47.159],[5.887,47.158],[5.887,47.157],[5.887,47.156],[5.888,47.156],[5.889,47.154],[5.889,47.154],[5.889,47.153],[5.889,47.153],[5.889,47.152],[5.888,47.152],[5.887,47.152],[5.886,47.152],[5.885,47.151],[5.884,47.151],[5.883,47.15],[5.88,47.15],[5.877,47.15],[5.875,47.15],[5.872,47.15],[5.87,47.149],[5.869,47.149],[5.867,47.148],[5.865,47.147],[5.863,47.146],[5.862,47.145],[5.86,47.143],[5.857,47.142],[5.854,47.142],[5.852,47.142],[5.851,47.141],[5.849,47.141],[5.846,47.141],[5.844,47.141],[5.842,47.142],[5.84,47.143],[5.839,47.143],[5.839,47.144],[5.84,47.144],[5.841,47.144],[5.841,47.145],[5.842,47.146],[5.842,47.146],[5.842,47.147],[5.842,47.147],[5.843,47.148],[5.843,47.149],[5.842,47.149],[5.843,47.15],[5.843,47.151],[5.843,47.151],[5.845,47.152],[5.846,47.152],[5.847,47.153],[5.849,47.154],[5.85,47.154],[5.851,47.155],[5.852,47.156],[5.853,47.157],[5.853,47.158],[5.854,47.159],[5.856,47.16],[5.857,47.162],[5.857,47.163],[5.857,47.163],[5.857,47.165],[5.857,47.165],[5.857,47.166],[5.856,47.167],[5.855,47.168],[5.854,47.17],[5.853,47.171],[5.853,47.172],[5.852,47.172],[5.851,47.173],[5.85,47.174],[5.849,47.174],[5.847,47.174],[5.845,47.175],[5.843,47.175],[5.842,47.175],[5.84,47.176],[5.838,47.176],[5.837,47.176],[5.836,47.176],[5.834,47.176],[5.832,47.175],[5.831,47.175],[5.829,47.174],[5.828,47.175],[5.827,47.175],[5.826,47.174],[5.821,47.176],[5.815,47.177],[5.809,47.178],[5.803,47.179],[5.795,47.179],[5.788,47.178],[5.783,47.177],[5.778,47.174],[5.774,47.171],[5.772,47.169],[5.769,47.169],[5.769,47.168],[5.768,47.168],[5.768,47.167],[5.767,47.165],[5.767,47.163],[5.767,47.162],[5.765,47.162],[5.763,47.161],[5.762,47.16],[5.76,47.16],[5.759,47.159],[5.758,47.159],[5.756,47.158],[5.755,47.158],[5.753,47.157],[5.75,47.157],[5.749,47.158],[5.748,47.158],[5.746,47.158],[5.745,47.159],[5.744,47.159],[5.742,47.16],[5.741,47.16],[5.74,47.16],[5.736,47.159],[5.731,47.157],[5.73,47.156],[5.727,47.156],[5.726,47.156],[5.724,47.155],[5.723,47.153],[5.722,47.152],[5.722,47.152],[5.721,47.151],[5.719,47.15],[5.718,47.15],[5.716,47.149],[5.714,47.149],[5.712,47.148],[5.71,47.149],[5.708,47.149],[5.707,47.15],[5.706,47.15],[5.706,47.151],[5.706,47.152],[5.708,47.152],[5.709,47.152],[5.71,47.152],[5.711,47.152],[5.712,47.153],[5.713,47.153],[5.714,47.154],[5.715,47.156],[5.715,47.157],[5.715,47.158],[5.713,47.158],[5.708,47.158],[5.701,47.157],[5.694,47.157],[5.689,47.155],[5.685,47.153],[5.68,47.151],[5.676,47.149],[5.673,47.148],[5.672,47.147],[5.67,47.147],[5.667,47.147],[5.666,47.148],[5.664,47.148],[5.663,47.149],[5.662,47.15],[5.662,47.15],[5.662,47.151],[5.662,47.151],[5.663,47.152],[5.664,47.152],[5.664,47.153],[5.663,47.153],[5.662,47.154],[5.66,47.154],[5.654,47.154],[5.649,47.154],[5.645,47.155],[5.643,47.155],[5.642,47.155],[5.64,47.154],[5.638,47.153],[5.636,47.153],[5.635,47.152],[5.635,47.151],[5.635,47.149],[5.635,47.148],[5.635,47.147],[5.634,47.146],[5.633,47.146],[5.632,47.146],[5.63,47.146],[5.627,47.146],[5.624,47.146],[5.62,47.146],[5.617,47.146],[5.614,47.146],[5.612,47.147],[5.61,47.148],[5.609,47.148],[5.607,47.149],[5.606,47.148],[5.602,47.147],[5.6,47.147],[5.6,47.146],[5.601,47.145],[5.601,47.145],[5.601,47.144],[5.601,47.144],[5.6,47.143],[5.599,47.143],[5.598,47.143],[5.597,47.142],[5.596,47.141],[5.595,47.14],[5.594,47.14],[5.593,47.14],[5.593,47.14],[5.589,47.138],[5.588,47.138],[5.587,47.138],[5.586,47.139],[5.585,47.139],[5.584,47.14],[5.583,47.141],[5.582,47.142],[5.582,47.143],[5.58,47.142],[5.567,47.135],[5.567,47.134],[5.567,47.134],[5.564,47.131],[5.562,47.13],[5.561,47.129],[5.56,47.128],[5.559,47.127],[5.557,47.126],[5.554,47.124],[5.553,47.122],[5.552,47.121],[5.551,47.12],[5.55,47.119],[5.55,47.117],[5.55,47.116],[5.551,47.114],[5.551,47.111],[5.551,47.11],[5.551,47.109],[5.55,47.109],[5.549,47.108],[5.547,47.107],[5.545,47.107],[5.543,47.106],[5.54,47.105],[5.537,47.104],[5.534,47.102],[5.533,47.101],[5.532,47.1],[5.531,47.099],[5.531,47.098],[5.531,47.097],[5.532,47.095],[5.533,47.094],[5.534,47.093],[5.534,47.093],[5.532,47.092],[5.531,47.092],[5.531,47.093],[5.531,47.093],[5.529,47.093],[5.527,47.092],[5.525,47.091],[5.524,47.09],[5.522,47.09],[5.522,47.089],[5.52,47.089],[5.519,47.09],[5.518,47.09],[5.518,47.091],[5.517,47.092],[5.516,47.093],[5.513,47.094],[5.512,47.095],[5.505,47.097],[5.501,47.097],[5.5,47.097],[5.5,47.097],[5.499,47.097],[5.499,47.097],[5.499,47.098],[5.498,47.097],[5.497,47.097],[5.495,47.096],[5.493,47.096],[5.491,47.095],[5.487,47.093],[5.485,47.091],[5.484,47.09],[5.484,47.089],[5.484,47.088],[5.485,47.088],[5.486,47.087],[5.487,47.086],[5.487,47.083],[5.482,47.081],[5.479,47.08],[5.475,47.079],[5.472,47.078],[5.471,47.077],[5.471,47.076],[5.47,47.075],[5.47,47.075],[5.471,47.073],[5.473,47.071],[5.474,47.069],[5.477,47.068],[5.478,47.066],[5.478,47.065],[5.477,47.064],[5.475,47.064],[5.474,47.064],[5.469,47.065],[5.469,47.065],[5.467,47.065],[5.466,47.064],[5.464,47.063],[5.462,47.062],[5.459,47.06],[5.459,47.06],[5.457,47.059],[5.455,47.058],[5.453,47.058],[5.451,47.058],[5.448,47.058],[5.447,47.058],[5.447,47.057],[5.448,47.056],[5.449,47.056],[5.451,47.054],[5.452,47.054],[5.454,47.052],[5.455,47.051],[5.456,47.048],[5.456,47.047],[5.456,47.045],[5.455,47.045],[5.455,47.043],[5.454,47.042],[5.451,47.04],[5.45,47.039],[5.448,47.038],[5.447,47.037],[5.446,47.037],[5.447,47.036],[5.447,47.036],[5.446,47.035],[5.446,47.034],[5.446,47.034],[5.446,47.033],[5.448,47.032],[5.449,47.031],[5.449,47.03],[5.449,47.03],[5.45,47.027],[5.45,47.025],[5.45,47.022],[5.45,47.021],[5.45,47.02],[5.45,47.019],[5.45,47.018],[5.449,47.017],[5.448,47.016],[5.447,47.015],[5.445,47.014],[5.444,47.013],[5.443,47.013],[5.443,47.012],[5.442,47.011],[5.44,47.01],[5.439,47.01],[5.437,47.009],[5.434,47.01],[5.432,47.011],[5.43,47.011],[5.429,47.012],[5.428,47.012],[5.427,47.013],[5.427,47.014],[5.425,47.015],[5.425,47.016],[5.423,47.018],[5.421,47.02],[5.417,47.021],[5.415,47.021],[5.414,47.022],[5.412,47.022],[5.409,47.022],[5.407,47.022],[5.405,47.022],[5.404,47.022],[5.403,47.021],[5.401,47.018],[5.401,47.017],[5.4,47.015],[5.4,47.013],[5.398,47.011],[5.396,47.01],[5.395,47.01],[5.393,47.01],[5.392,47.01],[5.391,47.011],[5.389,47.011],[5.387,47.011],[5.384,47.011],[5.382,47.012],[5.381,47.012],[5.381,47.012],[5.379,47.011],[5.377,47.009],[5.377,47.009],[5.376,47.008],[5.375,47.006],[5.376,47.004],[5.376,47.003],[5.377,47.001],[5.377,47.001],[5.377,47],[5.377,47],[5.378,46.999],[5.379,46.998],[5.379,46.997],[5.38,46.996],[5.381,46.994],[5.381,46.993],[5.381,46.992],[5.38,46.991],[5.379,46.989],[5.378,46.988],[5.378,46.988],[5.377,46.988],[5.376,46.987],[5.376,46.986],[5.376,46.985],[5.376,46.984],[5.375,46.983],[5.375,46.982],[5.376,46.981],[5.377,46.98],[5.378,46.978],[5.378,46.977],[5.379,46.976],[5.38,46.975],[5.38,46.974],[5.381,46.973],[5.382,46.971],[5.382,46.971],[5.383,46.971],[5.383,46.97],[5.384,46.97],[5.384,46.969],[5.384,46.968],[5.385,46.967],[5.385,46.966],[5.385,46.965],[5.385,46.964],[5.385,46.963],[5.384,46.963],[5.383,46.963],[5.38,46.962],[5.379,46.961],[5.377,46.96],[5.373,46.959],[5.372,46.959],[5.372,46.958],[5.371,46.958],[5.371,46.958],[5.369,46.957],[5.369,46.957],[5.367,46.956],[5.366,46.955],[5.365,46.954],[5.364,46.953],[5.364,46.951],[5.364,46.95],[5.365,46.949],[5.365,46.949],[5.365,46.948],[5.365,46.947],[5.366,46.947],[5.366,46.946],[5.366,46.946],[5.365,46.943],[5.365,46.943],[5.367,46.942],[5.368,46.941],[5.369,46.941],[5.369,46.94],[5.368,46.94],[5.367,46.94],[5.366,46.941],[5.365,46.941],[5.364,46.94],[5.364,46.94],[5.364,46.939],[5.363,46.937],[5.363,46.936],[5.362,46.935],[5.361,46.934],[5.359,46.933],[5.358,46.932],[5.357,46.932],[5.357,46.932],[5.355,46.932],[5.354,46.932],[5.353,46.932],[5.353,46.931],[5.351,46.931],[5.348,46.932],[5.346,46.932],[5.344,46.932],[5.34,46.933],[5.336,46.933],[5.333,46.933],[5.33,46.933],[5.327,46.932],[5.322,46.932],[5.321,46.932],[5.319,46.932],[5.317,46.932],[5.317,46.933],[5.317,46.933],[5.315,46.933],[5.312,46.932],[5.309,46.932],[5.307,46.932],[5.306,46.933],[5.306,46.934],[5.306,46.935],[5.305,46.936],[5.305,46.936],[5.306,46.937],[5.304,46.938],[5.304,46.939],[5.303,46.941],[5.302,46.943],[5.302,46.944],[5.301,46.945],[5.301,46.946],[5.3,46.946],[5.299,46.947],[5.299,46.948],[5.297,46.948],[5.295,46.949],[5.294,46.949],[5.29,46.95],[5.289,46.949],[5.288,46.949],[5.287,46.948],[5.286,46.947],[5.285,46.946],[5.284,46.945],[5.283,46.945],[5.281,46.944],[5.28,46.943],[5.279,46.942],[5.277,46.941],[5.276,46.94],[5.274,46.938],[5.272,46.938],[5.272,46.938],[5.271,46.937],[5.27,46.937],[5.269,46.937],[5.268,46.937],[5.268,46.938],[5.267,46.938],[5.267,46.939],[5.264,46.941],[5.263,46.941],[5.261,46.941],[5.261,46.942],[5.26,46.94],[5.26,46.939],[5.259,46.939],[5.259,46.939],[5.258,46.94],[5.257,46.94],[5.255,46.941],[5.254,46.941],[5.253,46.94],[5.251,46.94],[5.25,46.94],[5.248,46.94],[5.247,46.939],[5.246,46.939],[5.245,46.939],[5.243,46.939],[5.242,46.939],[5.24,46.939],[5.239,46.938],[5.238,46.937],[5.237,46.937],[5.236,46.936],[5.236,46.935],[5.237,46.934],[5.237,46.933],[5.236,46.932],[5.235,46.932],[5.234,46.932],[5.233,46.932],[5.232,46.932],[5.231,46.932],[5.23,46.932],[5.229,46.932],[5.228,46.932],[5.227,46.932],[5.227,46.931],[5.226,46.93],[5.224,46.93],[5.222,46.93],[5.22,46.93],[5.219,46.931],[5.218,46.931],[5.216,46.932],[5.214,46.932],[5.212,46.932],[5.211,46.931],[5.21,46.931],[5.21,46.93],[5.209,46.93],[5.209,46.929],[5.209,46.929],[5.21,46.928],[5.209,46.928],[5.209,46.928],[5.208,46.928],[5.208,46.927],[5.208,46.924],[5.207,46.924],[5.207,46.924],[5.206,46.924],[5.205,46.924],[5.204,46.925],[5.203,46.927],[5.203,46.928],[5.201,46.929],[5.2,46.929],[5.199,46.93],[5.198,46.93],[5.198,46.931],[5.198,46.932],[5.196,46.934],[5.195,46.935],[5.193,46.936],[5.193,46.937],[5.191,46.938],[5.191,46.939],[5.191,46.94],[5.191,46.942],[5.192,46.943],[5.193,46.944],[5.193,46.945],[5.192,46.945],[5.192,46.945],[5.191,46.945],[5.189,46.944],[5.188,46.943],[5.187,46.942],[5.187,46.94],[5.186,46.938],[5.185,46.938],[5.184,46.937],[5.183,46.937],[5.182,46.937],[5.181,46.937],[5.18,46.937],[5.179,46.936],[5.177,46.936],[5.175,46.936],[5.173,46.936],[5.172,46.935],[5.171,46.935],[5.17,46.935],[5.168,46.935],[5.166,46.934],[5.164,46.935],[5.162,46.935],[5.159,46.936],[5.158,46.936],[5.157,46.937],[5.156,46.938],[5.156,46.938],[5.156,46.939],[5.156,46.94],[5.157,46.941],[5.157,46.942],[5.156,46.943],[5.156,46.944],[5.155,46.945],[5.154,46.945],[5.154,46.945],[5.151,46.947],[5.15,46.948],[5.149,46.948],[5.149,46.948],[5.149,46.948],[5.149,46.948],[5.148,46.949],[5.146,46.949],[5.145,46.949],[5.144,46.949],[5.144,46.949],[5.145,46.949],[5.145,46.949],[5.145,46.949],[5.144,46.948],[5.143,46.948],[5.142,46.948],[5.141,46.948],[5.139,46.948],[5.137,46.948],[5.135,46.948],[5.134,46.948],[5.132,46.948],[5.131,46.948],[5.13,46.948],[5.129,46.948],[5.127,46.948],[5.125,46.948],[5.124,46.948],[5.122,46.949],[5.121,46.949],[5.12,46.949],[5.119,46.948],[5.118,46.948],[5.117,46.946],[5.116,46.943],[5.115,46.942],[5.114,46.941],[5.112,46.939],[5.111,46.938],[5.109,46.937],[5.107,46.936],[5.104,46.935],[5.102,46.934],[5.101,46.933],[5.1,46.933],[5.099,46.933],[5.096,46.931],[5.094,46.93],[5.093,46.929],[5.092,46.928],[5.091,46.926],[5.09,46.924],[5.09,46.924],[5.09,46.923],[5.09,46.922],[5.088,46.921],[5.088,46.921],[5.088,46.921],[5.088,46.921],[5.087,46.921],[5.087,46.92],[5.086,46.92],[5.085,46.918],[5.085,46.917],[5.085,46.916],[5.086,46.914],[5.086,46.913],[5.086,46.912],[5.084,46.911],[5.083,46.91],[5.081,46.909],[5.079,46.908],[5.077,46.907],[5.076,46.907],[5.074,46.905],[5.072,46.904],[5.07,46.902],[5.069,46.901],[5.068,46.901],[5.067,46.901],[5.066,46.9],[5.065,46.901],[5.064,46.901],[5.063,46.901],[5.062,46.902],[5.061,46.902],[5.059,46.902],[5.058,46.902],[5.057,46.902],[5.055,46.903],[5.053,46.903],[5.05,46.903],[5.048,46.903],[5.044,46.903],[5.041,46.903],[5.039,46.903],[5.038,46.902],[5.036,46.902],[5.035,46.901],[5.033,46.901],[5.031,46.901],[5.03,46.901],[5.029,46.902],[5.028,46.903],[5.028,46.904],[5.028,46.905],[5.027,46.905],[5.027,46.905],[5.026,46.905],[5.025,46.905],[5.024,46.905],[5.023,46.904],[5.022,46.905],[5.021,46.905],[5.02,46.906],[5.019,46.906],[5.017,46.906],[5.015,46.907],[5.012,46.909],[5.012,46.91],[5.011,46.911],[5.01,46.913],[5.009,46.914],[5.007,46.915],[5.006,46.915],[5.004,46.915],[5.003,46.914],[5.002,46.914],[5.001,46.913],[5,46.912],[4.999,46.911],[4.997,46.909],[4.997,46.909],[4.996,46.909],[4.995,46.909],[4.995,46.908],[4.994,46.907],[4.994,46.907],[4.994,46.906],[4.993,46.906],[4.993,46.905],[4.992,46.905],[4.992,46.904],[4.991,46.904],[4.99,46.904],[4.989,46.904],[4.988,46.904],[4.986,46.904],[4.985,46.904],[4.983,46.904],[4.981,46.904],[4.98,46.905],[4.978,46.905],[4.976,46.905],[4.975,46.905],[4.974,46.905],[4.973,46.905],[4.972,46.905],[4.97,46.904],[4.969,46.904],[4.968,46.903],[4.966,46.902],[4.964,46.901],[4.964,46.901],[4.963,46.901],[4.962,46.901],[4.961,46.9],[4.96,46.9],[4.958,46.9],[4.957,46.9],[4.956,46.9],[4.954,46.899],[4.954,46.899],[4.953,46.899],[4.952,46.898],[4.951,46.898],[4.951,46.896],[4.95,46.895],[4.95,46.894],[4.95,46.893],[4.95,46.893],[4.95,46.891],[4.95,46.891],[4.95,46.89],[4.951,46.889],[4.951,46.888],[4.953,46.888],[4.954,46.887],[4.956,46.886],[4.957,46.885],[4.958,46.885],[4.96,46.884],[4.961,46.883],[4.962,46.883],[4.963,46.881],[4.963,46.88],[4.963,46.88],[4.963,46.879],[4.963,46.878],[4.962,46.878],[4.962,46.877],[4.961,46.877],[4.959,46.876],[4.958,46.875],[4.956,46.874],[4.955,46.874],[4.955,46.873],[4.954,46.872],[4.954,46.871],[4.953,46.871],[4.954,46.87],[4.954,46.87],[4.955,46.869],[4.955,46.868],[4.957,46.867],[4.958,46.867],[4.959,46.866],[4.96,46.866],[4.961,46.865],[4.962,46.864],[4.962,46.864],[4.962,46.863],[4.962,46.862],[4.962,46.861],[4.962,46.86],[4.962,46.86],[4.962,46.859],[4.961,46.858],[4.961,46.856],[4.961,46.854],[4.962,46.854],[4.962,46.853],[4.962,46.852],[4.962,46.852],[4.962,46.851],[4.961,46.85],[4.961,46.849],[4.96,46.848],[4.96,46.847],[4.96,46.847],[4.959,46.846],[4.959,46.846],[4.958,46.845],[4.957,46.844],[4.956,46.844],[4.955,46.843],[4.954,46.842],[4.952,46.841],[4.95,46.839],[4.949,46.838],[4.948,46.837],[4.947,46.837],[4.945,46.836],[4.944,46.836],[4.943,46.835],[4.943,46.834],[4.942,46.834],[4.942,46.833],[4.941,46.833],[4.94,46.832],[4.939,46.831],[4.938,46.83],[4.938,46.829],[4.937,46.828],[4.937,46.827],[4.937,46.826],[4.936,46.824],[4.936,46.824],[4.935,46.823],[4.935,46.822],[4.934,46.822],[4.933,46.822],[4.931,46.821],[4.93,46.821],[4.928,46.82],[4.926,46.819],[4.923,46.817],[4.92,46.815],[4.919,46.814],[4.918,46.814],[4.917,46.812],[4.917,46.811],[4.917,46.811],[4.916,46.81],[4.915,46.809],[4.914,46.808],[4.913,46.808],[4.912,46.807],[4.91,46.806],[4.909,46.805],[4.908,46.805],[4.906,46.804],[4.905,46.804],[4.903,46.804],[4.9,46.806],[4.898,46.806],[4.897,46.807],[4.897,46.807],[4.896,46.808],[4.894,46.809],[4.892,46.81],[4.891,46.811],[4.891,46.811],[4.89,46.811],[4.888,46.811],[4.886,46.811],[4.885,46.811],[4.884,46.811],[4.883,46.811],[4.882,46.81],[4.881,46.809],[4.879,46.809],[4.879,46.808],[4.878,46.807],[4.877,46.807],[4.877,46.807],[4.877,46.805],[4.877,46.805],[4.877,46.805],[4.876,46.805],[4.876,46.805],[4.876,46.805],[4.875,46.805],[4.875,46.804],[4.875,46.804],[4.875,46.804],[4.876,46.804],[4.876,46.804],[4.876,46.804],[4.877,46.803],[4.877,46.802],[4.877,46.802],[4.877,46.801],[4.877,46.801],[4.877,46.8],[4.877,46.8],[4.877,46.799],[4.877,46.799],[4.876,46.798],[4.875,46.798],[4.874,46.797],[4.873,46.796],[4.871,46.795],[4.869,46.795],[4.867,46.794],[4.865,46.793],[4.864,46.792],[4.863,46.792],[4.862,46.791],[4.861,46.791],[4.86,46.791],[4.86,46.79],[4.859,46.79],[4.857,46.789],[4.856,46.789],[4.855,46.788],[4.853,46.788],[4.852,46.787],[4.85,46.787],[4.849,46.786],[4.847,46.785],[4.846,46.785],[4.844,46.784],[4.843,46.783],[4.842,46.782],[4.841,46.781],[4.841,46.779],[4.841,46.778],[4.841,46.777],[4.841,46.776],[4.841,46.775],[4.841,46.774],[4.842,46.773],[4.843,46.773],[4.847,46.77],[4.851,46.768],[4.851,46.768],[4.852,46.768],[4.853,46.768],[4.855,46.767],[4.856,46.767],[4.857,46.767],[4.858,46.766],[4.86,46.765],[4.861,46.765],[4.863,46.764],[4.865,46.763],[4.866,46.763],[4.867,46.763],[4.869,46.763],[4.87,46.762],[4.871,46.762],[4.873,46.762],[4.874,46.761],[4.875,46.761],[4.875,46.761],[4.876,46.759],[4.877,46.758],[4.878,46.757],[4.879,46.756],[4.879,46.755],[4.88,46.754],[4.88,46.754],[4.88,46.753],[4.88,46.752],[4.88,46.751],[4.878,46.748],[4.878,46.747],[4.877,46.745],[4.877,46.744],[4.876,46.743],[4.877,46.743],[4.877,46.742],[4.878,46.741],[4.879,46.741],[4.88,46.74],[4.881,46.739],[4.882,46.738],[4.884,46.738],[4.886,46.738],[4.887,46.738],[4.888,46.738],[4.889,46.739],[4.891,46.739],[4.891,46.739],[4.892,46.739],[4.894,46.739],[4.895,46.739],[4.895,46.739],[4.896,46.738],[4.897,46.738],[4.898,46.737],[4.899,46.736],[4.9,46.735],[4.901,46.734],[4.902,46.733],[4.903,46.732],[4.904,46.731],[4.904,46.73],[4.905,46.729],[4.906,46.728],[4.906,46.728],[4.908,46.727],[4.91,46.726],[4.911,46.726],[4.912,46.725],[4.914,46.725],[4.915,46.724],[4.917,46.724],[4.918,46.724],[4.918,46.724],[4.919,46.723],[4.92,46.723],[4.921,46.722],[4.923,46.721],[4.924,46.72],[4.925,46.719],[4.927,46.719],[4.927,46.718],[4.928,46.718],[4.929,46.718],[4.93,46.717],[4.93,46.717],[4.931,46.716],[4.931,46.715],[4.931,46.714],[4.932,46.713],[4.932,46.712],[4.932,46.711],[4.932,46.71],[4.933,46.709],[4.934,46.709],[4.934,46.708],[4.934,46.708],[4.936,46.706],[4.937,46.704],[4.937,46.704],[4.938,46.703],[4.938,46.702],[4.939,46.701],[4.939,46.7],[4.939,46.699],[4.94,46.697],[4.94,46.695],[4.94,46.693],[4.941,46.692],[4.941,46.69],[4.942,46.688],[4.942,46.687],[4.943,46.685],[4.944,46.683],[4.944,46.681],[4.945,46.679],[4.946,46.678],[4.947,46.677],[4.946,46.675],[4.946,46.675],[4.946,46.674],[4.946,46.672],[4.946,46.671],[4.946,46.67],[4.947,46.669],[4.948,46.667],[4.949,46.666],[4.95,46.665],[4.95,46.663],[4.95,46.662],[4.95,46.66],[4.951,46.656],[4.951,46.655],[4.951,46.653],[4.951,46.652],[4.951,46.651],[4.951,46.649],[4.951,46.648],[4.952,46.646],[4.952,46.645],[4.952,46.644],[4.952,46.643],[4.952,46.641],[4.951,46.639],[4.951,46.638],[4.95,46.637],[4.949,46.635],[4.948,46.634],[4.947,46.633],[4.944,46.632],[4.944,46.631],[4.943,46.631],[4.942,46.63],[4.941,46.629],[4.941,46.628],[4.94,46.627],[4.94,46.626],[4.94,46.625],[4.939,46.625],[4.939,46.624],[4.939,46.623],[4.939,46.622],[4.936,46.618],[4.934,46.616],[4.934,46.615],[4.933,46.614],[4.932,46.614],[4.931,46.613],[4.93,46.612],[4.929,46.61],[4.928,46.61],[4.927,46.609],[4.927,46.608],[4.926,46.607],[4.925,46.606],[4.924,46.605],[4.924,46.604],[4.923,46.603],[4.921,46.601],[4.92,46.6],[4.919,46.599],[4.918,46.598],[4.917,46.598],[4.915,46.596],[4.913,46.595],[4.912,46.593],[4.911,46.592],[4.91,46.59],[4.909,46.589],[4.909,46.589],[4.909,46.587],[4.909,46.586],[4.909,46.585],[4.908,46.584],[4.909,46.583],[4.909,46.582],[4.909,46.581],[4.909,46.58],[4.909,46.58],[4.909,46.578],[4.909,46.577],[4.908,46.576],[4.908,46.575],[4.908,46.574],[4.908,46.573],[4.909,46.572],[4.909,46.571],[4.91,46.571],[4.911,46.57],[4.913,46.568],[4.914,46.567],[4.914,46.565],[4.915,46.564],[4.915,46.563],[4.915,46.562],[4.916,46.56],[4.917,46.559],[4.917,46.558],[4.917,46.557],[4.918,46.556],[4.918,46.556],[4.919,46.555],[4.919,46.554],[4.92,46.553],[4.921,46.553],[4.921,46.552],[4.921,46.552],[4.921,46.551],[4.922,46.551],[4.923,46.549],[4.923,46.547],[4.924,46.546],[4.924,46.546],[4.925,46.544],[4.926,46.542],[4.927,46.541],[4.929,46.539],[4.93,46.538],[4.931,46.536],[4.932,46.535],[4.933,46.533],[4.933,46.532],[4.933,46.531],[4.934,46.53],[4.935,46.53],[4.935,46.529],[4.934,46.527],[4.934,46.526],[4.934,46.525],[4.932,46.524],[4.931,46.523],[4.929,46.521],[4.928,46.519],[4.927,46.518],[4.926,46.516],[4.924,46.512],[4.924,46.512],[4.924,46.511],[4.923,46.509],[4.923,46.508],[4.922,46.507],[4.921,46.505],[4.919,46.503],[4.915,46.501],[4.912,46.499],[4.911,46.496],[4.91,46.492],[4.91,46.489],[4.91,46.488],[4.91,46.486],[4.911,46.485],[4.911,46.483],[4.911,46.481],[4.911,46.479],[4.911,46.473],[4.91,46.471],[4.909,46.47],[4.908,46.467],[4.903,46.464],[4.902,46.463],[4.9,46.463],[4.898,46.461],[4.896,46.46],[4.895,46.459],[4.894,46.458],[4.893,46.457],[4.891,46.456],[4.89,46.454],[4.889,46.452],[4.888,46.449],[4.887,46.448],[4.886,46.446],[4.886,46.445],[4.885,46.443],[4.885,46.442],[4.884,46.44],[4.886,46.437],[4.885,46.435],[4.885,46.431],[4.884,46.427],[4.884,46.426],[4.883,46.423],[4.883,46.419],[4.883,46.418],[4.884,46.418],[4.884,46.416],[4.886,46.41],[4.884,46.408],[4.881,46.405],[4.88,46.404],[4.879,46.402],[4.878,46.399],[4.876,46.397],[4.874,46.396],[4.873,46.394],[4.873,46.393],[4.872,46.392],[4.87,46.39],[4.869,46.388],[4.866,46.385],[4.863,46.383],[4.861,46.381],[4.858,46.378],[4.857,46.376],[4.854,46.373],[4.853,46.372],[4.853,46.371],[4.853,46.37],[4.852,46.369],[4.851,46.367],[4.85,46.366],[4.849,46.364],[4.849,46.361],[4.849,46.358],[4.851,46.354],[4.851,46.352],[4.851,46.348],[4.851,46.347],[4.851,46.346],[4.852,46.344],[4.852,46.342],[4.847,46.335],[4.846,46.332],[4.843,46.33],[4.841,46.327],[4.838,46.323],[4.835,46.319],[4.836,46.319],[4.835,46.318],[4.834,46.316],[4.833,46.314],[4.831,46.311],[4.83,46.31],[4.829,46.309],[4.829,46.308],[4.828,46.306],[4.828,46.306],[4.827,46.304],[4.827,46.303],[4.829,46.297],[4.828,46.295],[4.827,46.293],[4.826,46.29],[4.826,46.288],[4.825,46.285],[4.824,46.283],[4.824,46.283],[4.824,46.282],[4.822,46.28],[4.821,46.279],[4.82,46.277],[4.818,46.275],[4.815,46.273],[4.812,46.271],[4.812,46.27],[4.81,46.268],[4.809,46.266],[4.809,46.265],[4.809,46.261],[4.809,46.259],[4.809,46.256],[4.809,46.253],[4.808,46.251],[4.808,46.249],[4.808,46.248],[4.807,46.246],[4.807,46.245],[4.806,46.244],[4.804,46.243],[4.803,46.241],[4.799,46.238],[4.799,46.237],[4.798,46.236],[4.797,46.235],[4.796,46.233],[4.795,46.23],[4.794,46.228],[4.793,46.226],[4.792,46.224],[4.791,46.222],[4.791,46.219],[4.791,46.215],[4.791,46.21],[4.79,46.209],[4.788,46.208],[4.786,46.205],[4.785,46.204],[4.782,46.201],[4.78,46.199],[4.778,46.197],[4.778,46.195],[4.778,46.191],[4.778,46.188],[4.778,46.185],[4.779,46.182],[4.78,46.18],[4.781,46.178],[4.783,46.175],[4.786,46.173],[4.789,46.172],[4.797,46.169],[4.8,46.167],[4.801,46.165],[4.801,46.162],[4.801,46.159],[4.8,46.159],[4.799,46.157],[4.798,46.156],[4.798,46.154],[4.798,46.153],[4.797,46.152],[4.797,46.151],[4.796,46.15],[4.795,46.149],[4.794,46.148],[4.794,46.147],[4.793,46.147],[4.791,46.145],[4.79,46.144],[4.789,46.142],[4.786,46.14],[4.785,46.139],[4.784,46.138],[4.784,46.138],[4.783,46.137],[4.778,46.134],[4.775,46.131],[4.773,46.129],[4.772,46.128],[4.771,46.126],[4.77,46.125],[4.769,46.124],[4.769,46.122],[4.768,46.12],[4.768,46.118],[4.766,46.117],[4.765,46.115],[4.763,46.114],[4.762,46.112],[4.76,46.111],[4.758,46.109],[4.757,46.108],[4.755,46.107],[4.754,46.105],[4.753,46.104],[4.752,46.103],[4.751,46.102],[4.75,46.1],[4.75,46.099],[4.749,46.096],[4.748,46.094],[4.748,46.092],[4.749,46.091],[4.751,46.089],[4.754,46.087],[4.757,46.082],[4.758,46.079],[4.759,46.075],[4.759,46.072],[4.757,46.07],[4.756,46.068],[4.754,46.067],[4.752,46.065],[4.751,46.064],[4.75,46.063],[4.748,46.062],[4.747,46.061],[4.743,46.06],[4.742,46.059],[4.74,46.059],[4.738,46.058],[4.738,46.057],[4.736,46.055],[4.736,46.054],[4.737,46.052],[4.738,46.051],[4.74,46.049],[4.74,46.047],[4.742,46.045],[4.743,46.042],[4.744,46.041],[4.744,46.039],[4.744,46.037],[4.744,46.036],[4.744,46.035],[4.744,46.033],[4.743,46.032],[4.742,46.03],[4.741,46.028],[4.741,46.027],[4.741,46.025],[4.742,46.023],[4.743,46.022],[4.744,46.021],[4.745,46.02],[4.746,46.018],[4.746,46.015],[4.746,46.014],[4.748,46.012],[4.748,46.008],[4.747,46.007],[4.747,46.005],[4.748,46.001],[4.749,46],[4.748,45.998],[4.748,45.997],[4.748,45.994],[4.747,45.992],[4.748,45.992],[4.749,45.99],[4.75,45.989],[4.75,45.988],[4.751,45.986],[4.753,45.983],[4.753,45.982],[4.753,45.981],[4.753,45.98],[4.752,45.979],[4.752,45.978],[4.751,45.977],[4.751,45.976],[4.749,45.973],[4.748,45.971],[4.747,45.97],[4.745,45.968],[4.739,45.965],[4.737,45.963],[4.733,45.961],[4.732,45.96],[4.729,45.958],[4.728,45.957],[4.727,45.955],[4.726,45.954],[4.725,45.953],[4.726,45.952],[4.728,45.951],[4.728,45.95],[4.729,45.95],[4.731,45.949],[4.732,45.947],[4.733,45.947],[4.734,45.947],[4.735,45.947],[4.736,45.947],[4.739,45.946],[4.74,45.946],[4.742,45.946],[4.744,45.946],[4.746,45.945],[4.747,45.945],[4.749,45.944],[4.751,45.943],[4.753,45.943],[4.755,45.943],[4.756,45.943],[4.756,45.943],[4.759,45.943],[4.761,45.945],[4.762,45.945],[4.763,45.946],[4.764,45.946],[4.765,45.946],[4.766,45.947],[4.768,45.947],[4.769,45.947],[4.772,45.947],[4.774,45.947],[4.775,45.946],[4.777,45.945],[4.778,45.944],[4.78,45.941],[4.783,45.937],[4.785,45.934],[4.787,45.932],[4.788,45.932],[4.789,45.931],[4.791,45.931],[4.792,45.931],[4.793,45.931],[4.794,45.931],[4.795,45.931],[4.795,45.931],[4.796,45.931],[4.798,45.932],[4.799,45.932],[4.802,45.931],[4.803,45.931],[4.804,45.93],[4.805,45.93],[4.806,45.93],[4.807,45.929],[4.808,45.928],[4.808,45.927],[4.808,45.926],[4.809,45.925],[4.809,45.924],[4.809,45.923],[4.809,45.922],[4.808,45.922],[4.808,45.921],[4.808,45.92],[4.808,45.919],[4.808,45.918],[4.809,45.918],[4.809,45.917],[4.808,45.916],[4.808,45.915],[4.807,45.914],[4.806,45.913],[4.805,45.913],[4.805,45.912],[4.804,45.912],[4.802,45.91],[4.802,45.909],[4.801,45.908],[4.801,45.907],[4.802,45.906],[4.803,45.904],[4.804,45.903],[4.804,45.902],[4.805,45.9],[4.808,45.896],[4.81,45.894],[4.812,45.893],[4.815,45.891],[4.818,45.89],[4.819,45.89],[4.822,45.889],[4.824,45.888],[4.827,45.888],[4.829,45.888],[4.831,45.887],[4.833,45.887],[4.834,45.886],[4.834,45.885],[4.835,45.884],[4.835,45.883],[4.834,45.881],[4.834,45.88],[4.834,45.878],[4.834,45.877],[4.834,45.876],[4.835,45.874],[4.837,45.873],[4.837,45.872],[4.837,45.871],[4.837,45.87],[4.838,45.869],[4.838,45.869],[4.838,45.867],[4.838,45.866],[4.836,45.864],[4.835,45.862],[4.835,45.861],[4.835,45.86],[4.834,45.857],[4.829,45.852],[4.828,45.85],[4.828,45.848],[4.828,45.846],[4.829,45.845],[4.83,45.844],[4.832,45.843],[4.835,45.842],[4.837,45.841],[4.839,45.841],[4.841,45.84],[4.842,45.84],[4.842,45.84],[4.844,45.84],[4.848,45.837],[4.849,45.836],[4.849,45.836],[4.85,45.835],[4.851,45.832],[4.852,45.831],[4.852,45.829],[4.852,45.828],[4.851,45.827],[4.851,45.826],[4.849,45.825],[4.848,45.825],[4.846,45.824],[4.845,45.823],[4.843,45.822],[4.842,45.821],[4.842,45.821],[4.84,45.82],[4.839,45.819],[4.839,45.819],[4.839,45.817],[4.838,45.815],[4.838,45.813],[4.836,45.811],[4.836,45.81],[4.835,45.809],[4.833,45.808],[4.831,45.807],[4.829,45.807],[4.827,45.806],[4.826,45.805],[4.823,45.804],[4.819,45.802],[4.817,45.8],[4.812,45.796],[4.811,45.795],[4.809,45.793],[4.807,45.79],[4.805,45.787],[4.804,45.784],[4.805,45.783],[4.806,45.782],[4.807,45.781],[4.808,45.781],[4.809,45.779],[4.809,45.778],[4.809,45.777],[4.81,45.776],[4.811,45.775],[4.812,45.775],[4.813,45.775],[4.814,45.775],[4.816,45.775],[4.818,45.776],[4.82,45.776],[4.822,45.776],[4.823,45.776],[4.824,45.775],[4.825,45.775],[4.825,45.774],[4.826,45.772],[4.825,45.771],[4.824,45.769],[4.823,45.768],[4.822,45.765],[4.821,45.764],[4.82,45.763],[4.818,45.76],[4.815,45.758],[4.813,45.757],[4.812,45.756],[4.81,45.754],[4.81,45.753],[4.809,45.749],[4.808,45.747],[4.809,45.745],[4.81,45.742],[4.811,45.74],[4.812,45.739],[4.813,45.738],[4.813,45.737],[4.814,45.736],[4.817,45.727],[4.817,45.726],[4.818,45.721],[4.82,45.717],[4.821,45.716],[4.823,45.713],[4.825,45.712],[4.827,45.711],[4.83,45.71],[4.832,45.709],[4.834,45.708],[4.835,45.706],[4.837,45.704],[4.838,45.703],[4.839,45.7],[4.839,45.697],[4.838,45.696],[4.838,45.696],[4.838,45.695],[4.838,45.694],[4.837,45.693],[4.836,45.69],[4.836,45.689],[4.835,45.688],[4.835,45.686],[4.834,45.685],[4.834,45.684],[4.834,45.683],[4.833,45.683],[4.835,45.675],[4.834,45.675],[4.834,45.673],[4.834,45.673],[4.833,45.672],[4.833,45.671],[4.833,45.67],[4.832,45.669],[4.832,45.668],[4.832,45.666],[4.832,45.666],[4.831,45.665],[4.831,45.664],[4.831,45.663],[4.831,45.66],[4.83,45.659],[4.83,45.658],[4.83,45.657],[4.83,45.657],[4.83,45.656],[4.83,45.655],[4.829,45.654],[4.828,45.652],[4.827,45.651],[4.826,45.65],[4.824,45.649],[4.823,45.648],[4.82,45.647],[4.818,45.646],[4.817,45.645],[4.816,45.644],[4.815,45.644],[4.815,45.644],[4.815,45.643],[4.814,45.643],[4.814,45.643],[4.813,45.642],[4.813,45.642],[4.813,45.642],[4.812,45.641],[4.812,45.64],[4.811,45.639],[4.811,45.638],[4.81,45.638],[4.81,45.636],[4.809,45.635],[4.809,45.634],[4.808,45.633],[4.809,45.631],[4.808,45.629],[4.809,45.629],[4.809,45.628],[4.809,45.627],[4.809,45.627],[4.808,45.626],[4.808,45.624],[4.808,45.622],[4.808,45.621],[4.808,45.62],[4.808,45.62],[4.807,45.619],[4.807,45.619],[4.806,45.618],[4.806,45.618],[4.805,45.618],[4.805,45.618],[4.804,45.615],[4.803,45.614],[4.803,45.614],[4.803,45.613],[4.803,45.612],[4.803,45.612],[4.803,45.612],[4.796,45.603],[4.794,45.6],[4.793,45.599],[4.792,45.598],[4.791,45.597],[4.79,45.596],[4.788,45.595],[4.787,45.593],[4.786,45.593],[4.785,45.593],[4.782,45.591],[4.78,45.59],[4.779,45.59],[4.778,45.589],[4.777,45.588],[4.778,45.586],[4.779,45.581],[4.781,45.581],[4.787,45.578],[4.79,45.578],[4.791,45.577],[4.792,45.577],[4.793,45.577],[4.798,45.575],[4.799,45.575],[4.8,45.575],[4.802,45.574],[4.809,45.573],[4.812,45.572],[4.813,45.571],[4.814,45.57],[4.816,45.568],[4.817,45.566],[4.818,45.564],[4.819,45.563],[4.821,45.56],[4.822,45.559],[4.824,45.557],[4.827,45.554],[4.828,45.553],[4.829,45.552],[4.83,45.551],[4.833,45.547],[4.836,45.545],[4.837,45.545],[4.838,45.545],[4.837,45.544],[4.843,45.543],[4.853,45.541],[4.854,45.54],[4.857,45.539],[4.86,45.539],[4.864,45.538],[4.867,45.537],[4.87,45.536],[4.872,45.534],[4.873,45.533],[4.874,45.531],[4.874,45.53],[4.874,45.529],[4.872,45.526],[4.869,45.523],[4.866,45.52],[4.86,45.513],[4.858,45.511],[4.851,45.505],[4.849,45.504],[4.846,45.502],[4.845,45.502],[4.843,45.501],[4.841,45.5],[4.84,45.5],[4.838,45.499],[4.835,45.498],[4.833,45.496],[4.83,45.495],[4.828,45.496],[4.827,45.495],[4.826,45.495],[4.826,45.495],[4.826,45.494],[4.825,45.493],[4.822,45.49],[4.821,45.489],[4.819,45.487],[4.817,45.485],[4.815,45.484],[4.813,45.483],[4.803,45.479],[4.8,45.477],[4.798,45.476],[4.797,45.476],[4.795,45.475],[4.794,45.475],[4.792,45.474],[4.789,45.473],[4.786,45.472],[4.785,45.471],[4.783,45.47],[4.782,45.468],[4.782,45.466],[4.784,45.462],[4.784,45.461],[4.784,45.461],[4.783,45.461],[4.782,45.46],[4.781,45.46],[4.781,45.459],[4.78,45.459],[4.778,45.457],[4.775,45.456],[4.774,45.456],[4.767,45.456],[4.763,45.455],[4.761,45.454],[4.76,45.453],[4.76,45.451],[4.76,45.449],[4.761,45.445],[4.762,45.442],[4.763,45.439],[4.764,45.437],[4.764,45.435],[4.764,45.434],[4.763,45.432],[4.762,45.43],[4.761,45.43],[4.757,45.428],[4.754,45.427],[4.753,45.426],[4.749,45.42],[4.747,45.417],[4.747,45.415],[4.746,45.413],[4.747,45.411],[4.748,45.409],[4.749,45.408],[4.75,45.406],[4.752,45.404],[4.754,45.401],[4.756,45.4],[4.757,45.399],[4.758,45.397],[4.758,45.395],[4.759,45.394],[4.76,45.393],[4.757,45.386],[4.756,45.384],[4.755,45.382],[4.753,45.38],[4.753,45.379],[4.752,45.377],[4.751,45.376],[4.751,45.374],[4.752,45.373],[4.753,45.372],[4.753,45.37],[4.754,45.369],[4.754,45.368],[4.754,45.366],[4.755,45.365],[4.755,45.365],[4.76,45.361],[4.762,45.361],[4.762,45.36],[4.763,45.359],[4.764,45.359],[4.765,45.358],[4.766,45.358],[4.767,45.356],[4.768,45.354],[4.769,45.353],[4.769,45.352],[4.768,45.35],[4.767,45.349],[4.765,45.347],[4.764,45.341],[4.763,45.339],[4.763,45.338],[4.763,45.337],[4.763,45.336],[4.763,45.335],[4.763,45.331],[4.762,45.328],[4.763,45.326],[4.764,45.324],[4.765,45.323],[4.766,45.322],[4.766,45.321],[4.767,45.32],[4.768,45.319],[4.768,45.319],[4.769,45.318],[4.771,45.317],[4.772,45.316],[4.774,45.316],[4.775,45.315],[4.776,45.314],[4.777,45.314],[4.778,45.313],[4.779,45.313],[4.779,45.312],[4.78,45.312],[4.782,45.311],[4.783,45.311],[4.785,45.31],[4.786,45.309],[4.788,45.309],[4.79,45.307],[4.792,45.306],[4.793,45.305],[4.794,45.305],[4.795,45.304],[4.796,45.304],[4.796,45.303],[4.796,45.303],[4.797,45.303],[4.797,45.302],[4.798,45.302],[4.799,45.301],[4.799,45.3],[4.801,45.299],[4.802,45.299],[4.802,45.299],[4.803,45.299],[4.803,45.298],[4.803,45.298],[4.803,45.298],[4.802,45.298],[4.802,45.298],[4.802,45.298],[4.803,45.297],[4.804,45.296],[4.805,45.295],[4.807,45.294],[4.809,45.293],[4.809,45.292],[4.809,45.286],[4.809,45.285],[4.809,45.283],[4.809,45.281],[4.809,45.28],[4.809,45.279],[4.809,45.278],[4.809,45.275],[4.809,45.272],[4.809,45.269],[4.809,45.268],[4.809,45.267],[4.81,45.266],[4.81,45.263],[4.809,45.262],[4.809,45.26],[4.806,45.256],[4.805,45.254],[4.805,45.253],[4.804,45.252],[4.803,45.251],[4.802,45.25],[4.802,45.249],[4.802,45.248],[4.802,45.247],[4.802,45.246],[4.801,45.242],[4.801,45.24],[4.801,45.24],[4.801,45.239],[4.801,45.236],[4.801,45.236],[4.801,45.235],[4.801,45.234],[4.801,45.234],[4.801,45.234],[4.801,45.233],[4.801,45.233],[4.801,45.233],[4.801,45.232],[4.801,45.231],[4.801,45.229],[4.802,45.229],[4.802,45.228],[4.802,45.227],[4.802,45.226],[4.803,45.225],[4.804,45.224],[4.804,45.222],[4.804,45.221],[4.805,45.221],[4.805,45.219],[4.805,45.218],[4.806,45.217],[4.806,45.216],[4.807,45.214],[4.807,45.213],[4.807,45.212],[4.808,45.211],[4.808,45.21],[4.808,45.209],[4.809,45.208],[4.809,45.208],[4.809,45.207],[4.809,45.206],[4.809,45.205],[4.809,45.203],[4.808,45.202],[4.808,45.201],[4.807,45.2],[4.807,45.2],[4.806,45.199],[4.806,45.199],[4.806,45.198],[4.806,45.198],[4.805,45.197],[4.805,45.197],[4.804,45.196],[4.804,45.195],[4.804,45.194],[4.804,45.193],[4.804,45.192],[4.806,45.191],[4.806,45.189],[4.807,45.188],[4.811,45.185],[4.811,45.184],[4.812,45.182],[4.812,45.182],[4.812,45.182],[4.813,45.181],[4.812,45.18],[4.811,45.178],[4.811,45.177],[4.81,45.176],[4.808,45.167],[4.809,45.165],[4.81,45.164],[4.812,45.162],[4.814,45.161],[4.814,45.16],[4.816,45.16],[4.818,45.16],[4.82,45.159],[4.823,45.159],[4.825,45.159],[4.826,45.157],[4.827,45.156],[4.827,45.154],[4.826,45.153],[4.824,45.151],[4.822,45.148],[4.819,45.145],[4.814,45.142],[4.812,45.14],[4.808,45.136],[4.805,45.135],[4.804,45.135],[4.803,45.134],[4.803,45.131],[4.803,45.13],[4.802,45.128],[4.802,45.125],[4.802,45.124],[4.803,45.123],[4.803,45.122],[4.803,45.121],[4.804,45.121],[4.805,45.121],[4.806,45.12],[4.807,45.118],[4.807,45.118],[4.808,45.117],[4.81,45.116],[4.812,45.114],[4.812,45.113],[4.812,45.113],[4.811,45.113],[4.812,45.112],[4.813,45.112],[4.813,45.112],[4.813,45.112],[4.814,45.111],[4.815,45.11],[4.815,45.109],[4.816,45.108],[4.818,45.107],[4.818,45.107],[4.818,45.106],[4.82,45.105],[4.821,45.104],[4.822,45.104],[4.822,45.104],[4.822,45.104],[4.821,45.103],[4.822,45.102],[4.823,45.102],[4.823,45.1],[4.823,45.099],[4.824,45.099],[4.824,45.098],[4.824,45.097],[4.824,45.097],[4.827,45.096],[4.827,45.096],[4.828,45.096],[4.828,45.095],[4.828,45.095],[4.829,45.094],[4.829,45.093],[4.829,45.093],[4.829,45.092],[4.83,45.092],[4.83,45.091],[4.83,45.09],[4.831,45.09],[4.83,45.09],[4.83,45.089],[4.83,45.089],[4.831,45.089],[4.831,45.089],[4.83,45.088],[4.83,45.087],[4.83,45.086],[4.83,45.085],[4.83,45.084],[4.829,45.084],[4.829,45.084],[4.828,45.084],[4.828,45.082],[4.827,45.081],[4.826,45.08],[4.826,45.078],[4.826,45.077],[4.826,45.075],[4.826,45.075],[4.827,45.075],[4.827,45.074],[4.828,45.073],[4.829,45.073],[4.828,45.072],[4.828,45.072],[4.83,45.07],[4.832,45.069],[4.836,45.067],[4.838,45.066],[4.842,45.065],[4.843,45.065],[4.844,45.065],[4.847,45.064],[4.852,45.063],[4.853,45.062],[4.854,45.061],[4.856,45.06],[4.857,45.059],[4.857,45.057],[4.857,45.055],[4.856,45.052],[4.854,45.05],[4.851,45.047],[4.847,45.044],[4.845,45.043],[4.842,45.041],[4.84,45.038],[4.838,45.036],[4.837,45.035],[4.837,45.032],[4.838,45.029],[4.839,45.027],[4.839,45.026],[4.84,45.025],[4.842,45.024],[4.843,45.023],[4.844,45.021],[4.844,45.02],[4.843,45.018],[4.842,45.016],[4.839,45.014],[4.837,45.012],[4.835,45.011],[4.835,45.01],[4.835,45.01],[4.835,45.008],[4.835,45.007],[4.835,45.006],[4.836,45.006],[4.836,45.006],[4.837,45.005],[4.839,45.004],[4.84,45.003],[4.841,45.002],[4.842,45.002],[4.843,45.001],[4.844,45],[4.845,44.999],[4.846,44.998],[4.847,44.998],[4.849,44.996],[4.851,44.995],[4.851,44.994],[4.852,44.993],[4.852,44.991],[4.852,44.989],[4.852,44.987],[4.852,44.984],[4.852,44.98],[4.853,44.977],[4.853,44.975],[4.853,44.974],[4.855,44.973],[4.855,44.973],[4.855,44.972],[4.855,44.972],[4.856,44.971],[4.856,44.97],[4.857,44.97],[4.857,44.969],[4.858,44.968],[4.858,44.968],[4.857,44.967],[4.857,44.967],[4.858,44.966],[4.859,44.966],[4.859,44.965],[4.859,44.966],[4.86,44.966],[4.86,44.965],[4.86,44.965],[4.86,44.964],[4.86,44.964],[4.861,44.964],[4.861,44.964],[4.862,44.962],[4.864,44.961],[4.864,44.96],[4.865,44.96],[4.866,44.96],[4.868,44.959],[4.87,44.958],[4.872,44.957],[4.873,44.956],[4.875,44.955],[4.875,44.954],[4.876,44.953],[4.876,44.952],[4.876,44.952],[4.876,44.951],[4.877,44.949],[4.878,44.947],[4.879,44.945],[4.879,44.945],[4.881,44.943],[4.883,44.942],[4.884,44.94],[4.884,44.939],[4.885,44.937],[4.885,44.936],[4.884,44.935],[4.883,44.934],[4.882,44.933],[4.88,44.931],[4.878,44.929],[4.876,44.927],[4.874,44.925],[4.873,44.925],[4.872,44.922],[4.87,44.919],[4.87,44.918],[4.869,44.915],[4.868,44.913],[4.868,44.911],[4.867,44.91],[4.866,44.908],[4.863,44.906],[4.859,44.905],[4.857,44.904],[4.856,44.904],[4.855,44.904],[4.854,44.904],[4.853,44.902],[4.852,44.898],[4.852,44.896],[4.852,44.896],[4.853,44.894],[4.853,44.892],[4.854,44.89],[4.854,44.888],[4.856,44.887],[4.857,44.884],[4.858,44.882],[4.859,44.882],[4.859,44.881],[4.86,44.879],[4.86,44.878],[4.86,44.877],[4.859,44.875],[4.858,44.874],[4.857,44.873],[4.856,44.872],[4.851,44.868],[4.849,44.867],[4.848,44.865],[4.847,44.864],[4.846,44.862],[4.845,44.86],[4.844,44.86],[4.843,44.859],[4.841,44.856],[4.84,44.855],[4.839,44.854],[4.838,44.853],[4.838,44.853],[4.838,44.854],[4.837,44.854],[4.837,44.852],[4.837,44.852],[4.833,44.849],[4.828,44.846],[4.824,44.844],[4.823,44.843],[4.822,44.842],[4.819,44.839],[4.819,44.837],[4.816,44.833],[4.815,44.829],[4.813,44.826],[4.812,44.822],[4.81,44.819],[4.809,44.816],[4.809,44.815],[4.809,44.812],[4.808,44.811],[4.806,44.81],[4.806,44.809],[4.791,44.803],[4.787,44.802],[4.782,44.799],[4.78,44.797],[4.776,44.791],[4.772,44.787],[4.769,44.785],[4.767,44.782],[4.767,44.781],[4.766,44.78],[4.764,44.779],[4.763,44.777],[4.762,44.776],[4.762,44.775],[4.76,44.773],[4.759,44.773],[4.756,44.77],[4.755,44.769],[4.754,44.767],[4.752,44.763],[4.751,44.759],[4.75,44.758],[4.751,44.756],[4.751,44.754],[4.752,44.753],[4.756,44.748],[4.757,44.746],[4.759,44.741],[4.76,44.739],[4.761,44.738],[4.761,44.737],[4.762,44.736],[4.761,44.736],[4.764,44.727],[4.765,44.726],[4.764,44.724],[4.764,44.722],[4.764,44.719],[4.764,44.718],[4.764,44.718],[4.764,44.717],[4.765,44.715],[4.768,44.712],[4.769,44.711],[4.77,44.709],[4.77,44.709],[4.772,44.707],[4.773,44.706],[4.773,44.704],[4.774,44.703],[4.774,44.699],[4.774,44.696],[4.775,44.694],[4.776,44.692],[4.777,44.691],[4.777,44.69],[4.779,44.688],[4.781,44.685],[4.781,44.684],[4.782,44.678],[4.781,44.668],[4.781,44.664],[4.776,44.645],[4.772,44.644],[4.771,44.643],[4.771,44.643],[4.771,44.643],[4.771,44.642],[4.771,44.642],[4.768,44.634],[4.766,44.632],[4.762,44.627],[4.762,44.626],[4.761,44.624],[4.761,44.623],[4.758,44.62],[4.756,44.617],[4.755,44.616],[4.753,44.614],[4.751,44.613],[4.75,44.611],[4.748,44.608],[4.746,44.605],[4.745,44.604],[4.744,44.602],[4.739,44.596],[4.737,44.597],[4.736,44.597],[4.714,44.587],[4.713,44.586],[4.712,44.585],[4.71,44.584],[4.709,44.583],[4.707,44.58],[4.706,44.579],[4.706,44.578],[4.704,44.576],[4.702,44.573],[4.702,44.572],[4.702,44.571],[4.699,44.564],[4.696,44.561],[4.694,44.56],[4.694,44.559],[4.691,44.547],[4.693,44.544],[4.694,44.541],[4.696,44.538],[4.696,44.537],[4.698,44.534],[4.699,44.532],[4.699,44.531],[4.7,44.53],[4.7,44.529],[4.7,44.528],[4.7,44.526],[4.699,44.525],[4.698,44.524],[4.698,44.523],[4.697,44.522],[4.695,44.52],[4.694,44.52],[4.693,44.519],[4.691,44.517],[4.69,44.513],[4.689,44.51],[4.688,44.506],[4.687,44.502],[4.686,44.501],[4.686,44.5],[4.686,44.499],[4.687,44.496],[4.688,44.493],[4.688,44.492],[4.688,44.492],[4.698,44.486],[4.698,44.486],[4.7,44.482],[4.7,44.482],[4.701,44.481],[4.702,44.479],[4.702,44.478],[4.701,44.477],[4.701,44.476],[4.701,44.474],[4.701,44.473],[4.701,44.472],[4.702,44.472],[4.702,44.47],[4.702,44.468],[4.702,44.464],[4.702,44.459],[4.702,44.457],[4.7,44.453],[4.7,44.452],[4.699,44.452],[4.699,44.451],[4.699,44.449],[4.699,44.447],[4.698,44.446],[4.698,44.445],[4.696,44.443],[4.696,44.443],[4.695,44.443],[4.693,44.441],[4.691,44.44],[4.687,44.438],[4.684,44.438],[4.681,44.437],[4.675,44.436],[4.672,44.435],[4.67,44.434],[4.668,44.431],[4.667,44.427],[4.666,44.426],[4.666,44.425],[4.666,44.423],[4.665,44.421],[4.665,44.418],[4.665,44.415],[4.665,44.413],[4.665,44.412],[4.666,44.411],[4.666,44.41],[4.665,44.41],[4.665,44.41],[4.665,44.408],[4.664,44.407],[4.664,44.407],[4.664,44.404],[4.664,44.402],[4.665,44.401],[4.665,44.401],[4.665,44.4],[4.665,44.399],[4.666,44.398],[4.666,44.398],[4.666,44.397],[4.665,44.397],[4.665,44.396],[4.665,44.395],[4.655,44.385],[4.653,44.383],[4.652,44.381],[4.651,44.38],[4.651,44.379],[4.651,44.379],[4.651,44.378],[4.65,44.378],[4.65,44.377],[4.649,44.376],[4.649,44.373],[4.648,44.368],[4.647,44.366],[4.647,44.364],[4.647,44.364],[4.647,44.36],[4.647,44.358],[4.646,44.353],[4.646,44.352],[4.646,44.349],[4.647,44.342],[4.648,44.342],[4.648,44.339],[4.647,44.338],[4.649,44.336],[4.65,44.331],[4.652,44.321],[4.649,44.313],[4.653,44.302],[4.652,44.294],[4.652,44.294],[4.652,44.292],[4.651,44.288],[4.65,44.288],[4.65,44.287],[4.65,44.286],[4.65,44.285],[4.65,44.285],[4.651,44.287],[4.651,44.286],[4.651,44.283],[4.651,44.282],[4.65,44.282],[4.65,44.28],[4.65,44.276],[4.65,44.276],[4.649,44.274],[4.648,44.271],[4.648,44.267],[4.648,44.266],[4.646,44.266],[4.647,44.264],[4.648,44.262],[4.649,44.26],[4.651,44.258],[4.652,44.257],[4.653,44.255],[4.654,44.254],[4.656,44.252],[4.657,44.25],[4.66,44.248],[4.661,44.246],[4.663,44.246],[4.663,44.245],[4.664,44.244],[4.666,44.243],[4.668,44.242],[4.671,44.24],[4.672,44.239],[4.674,44.238],[4.675,44.236],[4.676,44.236],[4.677,44.234],[4.678,44.23],[4.677,44.227],[4.675,44.225],[4.674,44.224],[4.674,44.225],[4.674,44.225],[4.674,44.225],[4.673,44.224],[4.672,44.223],[4.675,44.213],[4.676,44.212],[4.677,44.211],[4.678,44.21],[4.681,44.21],[4.682,44.211],[4.684,44.212],[4.686,44.212],[4.687,44.212],[4.688,44.212],[4.69,44.212],[4.691,44.212],[4.691,44.213],[4.69,44.213],[4.69,44.213],[4.691,44.214],[4.694,44.215],[4.696,44.215],[4.698,44.215],[4.699,44.216],[4.701,44.215],[4.701,44.215],[4.7,44.215],[4.699,44.215],[4.699,44.214],[4.7,44.214],[4.7,44.214],[4.699,44.213],[4.7,44.213],[4.701,44.213],[4.701,44.214],[4.701,44.214],[4.702,44.214],[4.703,44.214],[4.705,44.214],[4.707,44.212],[4.708,44.21],[4.709,44.207],[4.707,44.206],[4.705,44.203],[4.703,44.202],[4.702,44.199],[4.702,44.197],[4.703,44.197],[4.703,44.196],[4.703,44.195],[4.703,44.194],[4.704,44.193],[4.705,44.191],[4.707,44.188],[4.707,44.187],[4.71,44.182],[4.712,44.18],[4.72,44.162],[4.721,44.154],[4.721,44.151],[4.722,44.15],[4.722,44.149],[4.722,44.147],[4.722,44.145],[4.722,44.143],[4.721,44.14],[4.72,44.139],[4.718,44.136],[4.717,44.136],[4.716,44.134],[4.715,44.133],[4.715,44.132],[4.715,44.128],[4.715,44.126],[4.717,44.125]],[[5.363,43.305],[5.264,43.291]],[[5.264,43.291],[5.364,43.191],[5.464,43.191],[5.564,43.191],[5.664,43.191],[5.764,43.091],[5.864,42.991],[5.964,43.091],[6.064,43.091],[6.164,43.091],[6.264,43.091],[6.364,43.091],[6.464,43.091],[6.564,43.091],[6.664,43.091],[6.764,43.091],[6.864,43.091],[6.964,43.091],[7.064,43.091],[7.164,43.091],[7.264,43.091],[7.364,43.091],[7.464,43.091],[7.564,43.091],[7.664,43.091],[7.764,43.091],[7.864,43.091],[7.964,43.091],[8.064,43.091],[8.164,43.091],[8.264,43.091],[8.364,43.091],[8.464,43.091],[8.564,43.091],[8.664,43.091],[8.764,43.091],[8.864,43.091],[8.964,43.091],[9.064,43.091],[9.164,43.091],[9.264,43.091],[9.364,43.091],[9.464,42.991],[9.564,42.891],[9.564,42.791],[9.564,42.691],[9.564,42.591],[9.564,42.491],[9.564,42.391],[9.564,42.291],[9.564,42.191],[9.564,42.091]],[[6.003,47.224],[6.043,47.252],[6.069,47.275],[6.127,47.299],[6.259,47.341],[6.385,47.381],[6.456,47.399],[6.569,47.419],[6.657,47.439],[6.72,47.448],[6.76,47.447],[6.786,47.445],[6.811,47.45],[6.859,47.466],[6.916,47.495],[7.019,47.529],[7.131,47.564],[7.235,47.594],[7.341,47.629],[7.414,47.651],[7.497,47.667]],[[9.526,42.124],[9.564,42.091]],[[9.564,42.091],[9.664,42.191],[9.764,42.291],[9.864,42.391],[9.964,42.491],[10.064,42.491],[10.164,42.591],[10.264,42.691]],[[10.264,42.691],[10.24,42.743]],[[10.264,42.691],[10.364,42.691],[10.464,42.791],[10.464,42.891],[10.464,42.991]],[[10.496,42.996],[10.464,42.991]],[[10.464,42.991],[10.564,42.891],[10.664,42.891],[10.764,42.791],[10.864,42.691],[10.964,42.691],[11.064,42.591],[11.164,42.491],[11.264,42.391]],[[11.264,42.391],[11.364,42.391],[11.464,42.291],[11.564,42.291],[11.664,42.191],[11.764,42.091],[11.864,41.991],[11.964,41.991],[12.064,41.891],[12.164,41.791],[12.264,41.691],[12.287,41.754]],[[11.264,42.391],[11.288,42.406]],[[12.474,41.89],[12.474,41.89],[12.475,41.888],[12.469,41.882],[12.468,41.877],[12.472,41.868],[12.47,41.863],[12.461,41.858],[12.46,41.855],[12.46,41.854],[12.462,41.85],[12.444,41.834],[12.435,41.829],[12.426,41.831],[12.421,41.828],[12.418,41.822],[12.416,41.818],[12.411,41.809],[12.405,41.805],[12.394,41.805],[12.386,41.802],[12.375,41.804],[12.37,41.805],[12.364,41.807],[12.36,41.806],[12.352,41.806],[12.343,41.809],[12.339,41.806],[12.337,41.799],[12.332,41.798],[12.323,41.799],[12.317,41.799],[12.309,41.8],[12.302,41.797],[12.295,41.791],[12.284,41.789],[12.278,41.782],[12.273,41.773],[12.274,41.771],[12.274,41.768],[12.275,41.764],[12.28,41.758],[12.271,41.753]]]},"pair": 50235,"direction": 1,"month": 1,"priority": 1,"expense": 13.285,"duration": 82.043,"length": 2947.752},{"type": "Feature", "geometry": {"type":"MultiLineString","coordinates":[[[4.398,52.198],[4.364,52.191],[4.264,52.191],[4.164,52.191],[4.064,52.191],[3.964,52.191],[3.864,52.191],[3.764,52.191],[3.664,52.191],[3.564,52.191],[3.464,52.191],[3.364,52.191],[3.264,52.191],[3.164,52.191],[3.064,52.191],[2.964,52.191],[2.864,52.191],[2.764,52.191],[2.664,52.191],[2.564,52.191],[2.464,52.191],[2.364,52.191],[2.264,52.191],[2.164,52.191],[2.064,52.191],[1.964,52.191],[1.864,52.191],[1.764,52.191],[1.664,52.091],[1.564,51.991],[1.464,51.991],[1.364,51.891],[1.264,51.791],[1.164,51.691],[1.064,51.691],[0.964,51.591],[0.864,51.491],[0.764,51.491],[0.664,51.491],[0.564,51.491],[0.464,51.491],[-0.083,51.52]],[[7.728,47.545],[7.719,47.544],[7.7,47.539],[7.694,47.538],[7.67,47.535],[7.668,47.535],[7.666,47.536],[7.665,47.537],[7.664,47.539],[7.663,47.541],[7.662,47.543],[7.661,47.545],[7.66,47.545],[7.657,47.545],[7.654,47.546],[7.652,47.546],[7.649,47.547],[7.646,47.551],[7.643,47.555],[7.642,47.555],[7.641,47.556],[7.639,47.558],[7.637,47.559],[7.634,47.559],[7.631,47.559],[7.629,47.559],[7.628,47.559],[7.626,47.558],[7.62,47.558],[7.618,47.558],[7.612,47.556],[7.606,47.555],[7.601,47.555],[7.599,47.555],[7.597,47.555],[7.594,47.557],[7.59,47.56],[7.586,47.564],[7.585,47.566],[7.584,47.569],[7.584,47.57],[7.582,47.575],[7.583,47.575],[7.584,47.576],[7.584,47.577],[7.584,47.58],[7.585,47.583],[7.586,47.585],[7.587,47.586],[7.587,47.587],[7.588,47.589],[7.588,47.59],[7.589,47.593],[7.589,47.593],[7.589,47.593],[7.59,47.595],[7.591,47.596],[7.592,47.597],[7.592,47.599],[7.592,47.6],[7.592,47.602],[7.591,47.603],[7.591,47.604],[7.589,47.605],[7.587,47.606],[7.586,47.607],[7.584,47.608],[7.583,47.609],[7.581,47.61],[7.58,47.61],[7.577,47.612],[7.572,47.614],[7.572,47.615],[7.568,47.617],[7.563,47.62],[7.557,47.625],[7.556,47.625],[7.551,47.63],[7.545,47.635],[7.54,47.639],[7.538,47.64],[7.536,47.641],[7.532,47.644],[7.525,47.649],[7.522,47.651],[7.521,47.652],[7.521,47.653],[7.52,47.653],[7.52,47.653],[7.519,47.654],[7.519,47.654],[7.518,47.655],[7.517,47.656],[7.517,47.657],[7.517,47.657],[7.517,47.658],[7.517,47.659],[7.516,47.66],[7.516,47.66],[7.515,47.661],[7.514,47.662],[7.514,47.663],[7.513,47.664],[7.513,47.666],[7.512,47.669],[7.512,47.672],[7.512,47.675],[7.512,47.677],[7.513,47.678],[7.513,47.68],[7.513,47.682],[7.513,47.684],[7.512,47.685],[7.512,47.687],[7.511,47.688],[7.51,47.689],[7.51,47.691],[7.509,47.693],[7.508,47.695],[7.507,47.697],[7.507,47.698],[7.507,47.698],[7.507,47.7],[7.508,47.701],[7.508,47.702],[7.511,47.707],[7.512,47.708],[7.513,47.708],[7.514,47.709],[7.515,47.709],[7.519,47.712],[7.521,47.714],[7.53,47.72],[7.532,47.722],[7.534,47.723],[7.535,47.724],[7.536,47.725],[7.537,47.726],[7.538,47.727],[7.539,47.73],[7.54,47.731],[7.54,47.733],[7.54,47.734],[7.54,47.738],[7.539,47.74],[7.538,47.741],[7.538,47.742],[7.536,47.744],[7.535,47.746],[7.534,47.748],[7.532,47.751],[7.531,47.752],[7.53,47.754],[7.528,47.758],[7.527,47.76],[7.526,47.76],[7.525,47.762],[7.524,47.764],[7.524,47.765],[7.523,47.767],[7.523,47.767],[7.522,47.77],[7.522,47.771],[7.522,47.773],[7.522,47.774],[7.522,47.775],[7.522,47.775],[7.524,47.776],[7.525,47.777],[7.524,47.778],[7.524,47.78],[7.524,47.781],[7.524,47.782],[7.524,47.784],[7.525,47.786],[7.525,47.788],[7.526,47.789],[7.526,47.789],[7.526,47.79],[7.527,47.791],[7.527,47.791],[7.528,47.792],[7.529,47.794],[7.53,47.795],[7.532,47.799],[7.537,47.804],[7.54,47.808],[7.542,47.811],[7.543,47.814],[7.545,47.817],[7.546,47.82],[7.546,47.822],[7.547,47.823],[7.547,47.824],[7.547,47.825],[7.548,47.825],[7.548,47.827],[7.549,47.828],[7.549,47.829],[7.551,47.832],[7.553,47.836],[7.554,47.837],[7.555,47.84],[7.556,47.842],[7.556,47.845],[7.556,47.846],[7.556,47.848],[7.556,47.849],[7.556,47.85],[7.556,47.853],[7.555,47.857],[7.555,47.857],[7.554,47.861],[7.553,47.865],[7.553,47.869],[7.552,47.871],[7.552,47.871],[7.552,47.872],[7.552,47.875],[7.552,47.877],[7.553,47.879],[7.559,47.89],[7.56,47.892],[7.561,47.895],[7.564,47.9],[7.564,47.901],[7.565,47.902],[7.565,47.903],[7.566,47.904],[7.567,47.909],[7.568,47.911],[7.57,47.916],[7.571,47.919],[7.572,47.92],[7.572,47.921],[7.573,47.923],[7.573,47.925],[7.574,47.926],[7.575,47.928],[7.575,47.929],[7.576,47.931],[7.577,47.932],[7.58,47.935],[7.58,47.936],[7.58,47.936],[7.581,47.937],[7.582,47.938],[7.582,47.939],[7.584,47.94],[7.586,47.942],[7.595,47.949],[7.596,47.95],[7.596,47.951],[7.598,47.952],[7.598,47.952],[7.598,47.953],[7.6,47.954],[7.603,47.957],[7.605,47.959],[7.606,47.96],[7.608,47.964],[7.61,47.967],[7.611,47.969],[7.611,47.97],[7.612,47.972],[7.612,47.973],[7.612,47.976],[7.612,47.978],[7.612,47.98],[7.612,47.982],[7.611,47.984],[7.61,47.986],[7.609,47.988],[7.608,47.99],[7.607,47.991],[7.606,47.993],[7.604,47.995],[7.603,47.996],[7.601,47.998],[7.6,47.999],[7.599,48],[7.599,48],[7.597,48.002],[7.589,48.008],[7.582,48.013],[7.579,48.016],[7.574,48.019],[7.573,48.02],[7.57,48.022],[7.569,48.024],[7.567,48.027],[7.567,48.028],[7.566,48.03],[7.567,48.033],[7.57,48.039],[7.573,48.046],[7.574,48.048],[7.574,48.054],[7.574,48.059],[7.573,48.062],[7.568,48.069],[7.57,48.078],[7.569,48.082],[7.57,48.085],[7.572,48.089],[7.575,48.092],[7.58,48.101],[7.58,48.105],[7.578,48.112],[7.578,48.116],[7.578,48.121],[7.578,48.122],[7.581,48.125],[7.584,48.127],[7.585,48.128],[7.587,48.129],[7.591,48.13],[7.595,48.132],[7.597,48.134],[7.598,48.137],[7.6,48.14],[7.599,48.143],[7.599,48.145],[7.598,48.147],[7.598,48.149],[7.599,48.15],[7.607,48.163],[7.611,48.169],[7.614,48.171],[7.619,48.175],[7.62,48.176],[7.625,48.181],[7.63,48.185],[7.631,48.187],[7.635,48.194],[7.638,48.2],[7.64,48.202],[7.641,48.205],[7.644,48.208],[7.645,48.209],[7.646,48.21],[7.648,48.212],[7.654,48.218],[7.658,48.223],[7.661,48.228],[7.663,48.235],[7.665,48.239],[7.669,48.245],[7.67,48.249],[7.676,48.252],[7.676,48.261],[7.677,48.264],[7.678,48.268],[7.68,48.269],[7.68,48.273],[7.681,48.273],[7.68,48.274],[7.681,48.275],[7.683,48.276],[7.683,48.277],[7.681,48.277],[7.681,48.278],[7.683,48.278],[7.684,48.278],[7.685,48.279],[7.685,48.28],[7.684,48.281],[7.689,48.294],[7.692,48.3],[7.697,48.305],[7.703,48.309],[7.709,48.311],[7.724,48.315],[7.731,48.316],[7.732,48.318],[7.734,48.318],[7.737,48.32],[7.739,48.322],[7.741,48.324],[7.742,48.325],[7.744,48.328],[7.744,48.331],[7.746,48.333],[7.749,48.336],[7.747,48.347],[7.743,48.371],[7.74,48.383],[7.737,48.394],[7.743,48.416],[7.745,48.422],[7.745,48.425],[7.752,48.444],[7.766,48.48],[7.771,48.492],[7.78,48.496],[7.795,48.502],[7.802,48.507],[7.805,48.514],[7.806,48.521],[7.805,48.53],[7.805,48.532],[7.805,48.548],[7.805,48.56],[7.803,48.57],[7.801,48.574],[7.801,48.572],[7.8,48.574],[7.799,48.576],[7.799,48.576],[7.799,48.577],[7.799,48.577],[7.798,48.579],[7.798,48.582],[7.798,48.583],[7.799,48.585],[7.8,48.587],[7.8,48.588],[7.801,48.59],[7.802,48.591],[7.802,48.592],[7.803,48.593],[7.803,48.594],[7.804,48.594],[7.806,48.597],[7.81,48.601],[7.811,48.602],[7.815,48.607],[7.817,48.609],[7.82,48.612],[7.823,48.615],[7.824,48.616],[7.826,48.618],[7.828,48.62],[7.829,48.622],[7.83,48.625],[7.831,48.629],[7.832,48.63],[7.832,48.633],[7.833,48.634],[7.834,48.637],[7.835,48.639],[7.836,48.641],[7.838,48.643],[7.839,48.644],[7.838,48.644],[7.841,48.646],[7.843,48.647],[7.845,48.648],[7.848,48.648],[7.85,48.649],[7.852,48.649],[7.853,48.65],[7.855,48.65],[7.858,48.651],[7.867,48.654],[7.871,48.656],[7.873,48.657],[7.874,48.657],[7.873,48.657],[7.877,48.658],[7.882,48.66],[7.885,48.661],[7.888,48.663],[7.889,48.664],[7.889,48.665],[7.89,48.666],[7.891,48.667],[7.895,48.669],[7.898,48.672],[7.899,48.673],[7.899,48.674],[7.9,48.676],[7.9,48.677],[7.902,48.679],[7.903,48.681],[7.903,48.681],[7.905,48.683],[7.905,48.683],[7.909,48.686],[7.911,48.688],[7.912,48.688],[7.913,48.688],[7.913,48.689],[7.914,48.689],[7.915,48.689],[7.915,48.69],[7.918,48.691],[7.923,48.694],[7.926,48.696],[7.927,48.697],[7.928,48.697],[7.931,48.698],[7.933,48.699],[7.935,48.7],[7.938,48.702],[7.94,48.703],[7.942,48.706],[7.951,48.713],[7.952,48.713],[7.952,48.714],[7.952,48.714],[7.955,48.716],[7.96,48.72],[7.963,48.723],[7.965,48.726],[7.965,48.727],[7.966,48.728],[7.966,48.731],[7.965,48.737],[7.965,48.741],[7.964,48.744],[7.964,48.746],[7.964,48.746],[7.964,48.746],[7.965,48.749],[7.966,48.751],[7.966,48.753],[7.967,48.755],[7.969,48.758],[7.971,48.759],[7.973,48.76],[7.975,48.76],[7.979,48.761],[7.981,48.761],[7.982,48.761],[7.984,48.761],[7.989,48.76],[7.992,48.76],[7.998,48.759],[8,48.759],[8.003,48.758],[8.006,48.759],[8.01,48.76],[8.014,48.761],[8.018,48.764],[8.021,48.767],[8.022,48.77],[8.022,48.772],[8.024,48.777],[8.024,48.778],[8.024,48.78],[8.024,48.782],[8.025,48.784],[8.025,48.785],[8.027,48.786],[8.029,48.787],[8.03,48.788],[8.03,48.789],[8.032,48.79],[8.035,48.792],[8.036,48.792],[8.038,48.791],[8.042,48.792],[8.046,48.792],[8.047,48.792],[8.051,48.792],[8.054,48.791],[8.055,48.791],[8.056,48.791],[8.058,48.79],[8.062,48.79],[8.065,48.791],[8.068,48.792],[8.069,48.793],[8.069,48.794],[8.069,48.794],[8.069,48.795],[8.069,48.795],[8.07,48.796],[8.071,48.796],[8.073,48.796],[8.074,48.796],[8.076,48.796],[8.077,48.797],[8.08,48.798],[8.081,48.799],[8.086,48.803],[8.091,48.807],[8.095,48.811],[8.097,48.812],[8.098,48.813],[8.101,48.817],[8.102,48.82],[8.103,48.824],[8.103,48.827],[8.103,48.831],[8.104,48.833],[8.105,48.835],[8.106,48.836],[8.106,48.837],[8.111,48.844],[8.111,48.844],[8.11,48.845],[8.11,48.845],[8.11,48.845],[8.109,48.845],[8.109,48.845],[8.109,48.845],[8.11,48.846],[8.11,48.846],[8.11,48.846],[8.11,48.847],[8.11,48.847],[8.11,48.848],[8.112,48.848],[8.113,48.849],[8.114,48.852],[8.114,48.852],[8.117,48.857],[8.119,48.864],[8.124,48.871],[8.125,48.874],[8.126,48.875],[8.127,48.876],[8.127,48.877],[8.133,48.886],[8.137,48.892],[8.137,48.893],[8.139,48.894],[8.139,48.895],[8.14,48.896],[8.142,48.898],[8.142,48.899],[8.143,48.9],[8.144,48.901],[8.15,48.908],[8.156,48.914],[8.158,48.916],[8.158,48.916],[8.159,48.918],[8.163,48.921],[8.167,48.925],[8.172,48.929],[8.175,48.932],[8.177,48.934],[8.178,48.935],[8.179,48.936],[8.182,48.94],[8.184,48.942],[8.183,48.942],[8.184,48.943],[8.186,48.945],[8.189,48.95],[8.19,48.951],[8.191,48.953],[8.194,48.956],[8.195,48.958],[8.197,48.959],[8.201,48.961],[8.208,48.963],[8.213,48.964],[8.214,48.964],[8.215,48.964],[8.218,48.965],[8.221,48.965],[8.221,48.966],[8.222,48.965],[8.224,48.966],[8.232,48.967],[8.232,48.968],[8.249,48.976],[8.261,48.982],[8.267,48.986],[8.27,48.989],[8.272,48.99],[8.279,48.993],[8.284,48.996],[8.29,49.001],[8.297,49.012],[8.3,49.02],[8.305,49.04],[8.306,49.043],[8.307,49.044],[8.316,49.061],[8.327,49.071],[8.334,49.074],[8.339,49.077],[8.344,49.08],[8.35,49.085],[8.355,49.092],[8.356,49.094],[8.359,49.099],[8.367,49.133],[8.37,49.144],[8.371,49.147],[8.371,49.154],[8.368,49.161],[8.367,49.165],[8.37,49.172],[8.375,49.177],[8.377,49.182],[8.384,49.194],[8.386,49.204],[8.386,49.209],[8.385,49.212],[8.384,49.216],[8.385,49.231],[8.394,49.243],[8.4,49.247],[8.409,49.251],[8.418,49.254],[8.438,49.263],[8.449,49.271],[8.449,49.271],[8.453,49.278],[8.458,49.282],[8.46,49.284],[8.463,49.285],[8.483,49.29],[8.488,49.293],[8.49,49.296],[8.49,49.3],[8.488,49.303],[8.484,49.305],[8.47,49.31],[8.466,49.311],[8.459,49.315],[8.452,49.319],[8.449,49.323],[8.452,49.331],[8.454,49.335],[8.459,49.339],[8.469,49.344],[8.475,49.347],[8.481,49.349],[8.489,49.357],[8.492,49.36],[8.497,49.366],[8.5,49.374],[8.502,49.381],[8.502,49.386],[8.502,49.391],[8.498,49.397],[8.496,49.404],[8.495,49.413],[8.503,49.425],[8.508,49.436],[8.504,49.439],[8.497,49.441],[8.491,49.445],[8.478,49.445],[8.472,49.445],[8.458,49.446],[8.453,49.447],[8.446,49.45],[8.44,49.455],[8.44,49.46],[8.451,49.464],[8.457,49.467],[8.462,49.475],[8.457,49.479],[8.451,49.483],[8.44,49.496],[8.438,49.502],[8.432,49.514],[8.428,49.522],[8.423,49.528],[8.421,49.534],[8.412,49.548],[8.41,49.554],[8.411,49.561],[8.42,49.572],[8.416,49.583],[8.413,49.587],[8.409,49.592],[8.41,49.594],[8.409,49.595],[8.407,49.601],[8.403,49.606],[8.397,49.61],[8.39,49.614],[8.38,49.623],[8.376,49.629],[8.372,49.638],[8.37,49.646],[8.37,49.661],[8.364,49.665],[8.36,49.67],[8.354,49.682],[8.354,49.688],[8.357,49.693],[8.362,49.7],[8.37,49.703],[8.381,49.707],[8.421,49.716],[8.426,49.717],[8.437,49.725],[8.458,49.738],[8.478,49.752],[8.479,49.756],[8.478,49.76],[8.473,49.765],[8.459,49.765],[8.442,49.762],[8.427,49.763],[8.421,49.768],[8.416,49.775],[8.412,49.783],[8.406,49.799],[8.401,49.804],[8.37,49.826],[8.371,49.835],[8.379,49.85],[8.38,49.852],[8.378,49.856],[8.372,49.86],[8.359,49.864],[8.355,49.866],[8.345,49.872],[8.34,49.879],[8.339,49.889],[8.347,49.911],[8.346,49.918],[8.344,49.925],[8.341,49.938],[8.339,49.945],[8.336,49.952],[8.315,49.973],[8.303,49.981],[8.299,49.983],[8.29,49.989],[8.285,49.99],[8.28,49.995],[8.273,50.001],[8.272,50.004],[8.272,50.007],[8.268,50.012],[8.265,50.015],[8.259,50.02],[8.236,50.028],[8.208,50.034],[8.201,50.034],[8.192,50.035],[8.168,50.032],[8.155,50.028],[8.118,50.02],[8.102,50.016],[8.027,50.001],[8.02,49.999],[8.003,49.993],[7.996,49.988],[7.988,49.987],[7.979,49.984],[7.967,49.98],[7.952,49.978],[7.941,49.978],[7.895,49.973],[7.875,49.974],[7.86,49.985],[7.859,49.989],[7.859,50],[7.854,50.009],[7.849,50.013],[7.844,50.016],[7.831,50.021],[7.817,50.032],[7.802,50.041],[7.788,50.046],[7.775,50.054],[7.774,50.058],[7.775,50.065],[7.775,50.068],[7.776,50.072],[7.774,50.077],[7.769,50.08],[7.758,50.088],[7.734,50.108],[7.727,50.11],[7.724,50.115],[7.726,50.118],[7.735,50.126],[7.737,50.134],[7.728,50.14],[7.725,50.148],[7.711,50.157],[7.702,50.166],[7.697,50.169],[7.69,50.171],[7.68,50.17],[7.67,50.173],[7.664,50.174],[7.648,50.181],[7.647,50.184],[7.649,50.19],[7.648,50.196],[7.645,50.198],[7.644,50.201],[7.627,50.211],[7.621,50.214],[7.618,50.222],[7.613,50.227],[7.604,50.232],[7.59,50.233],[7.585,50.233],[7.577,50.24],[7.58,50.247],[7.586,50.249],[7.591,50.25],[7.604,50.25],[7.618,50.248],[7.619,50.248],[7.636,50.247],[7.638,50.248],[7.646,50.252],[7.648,50.255],[7.649,50.26],[7.647,50.265],[7.634,50.277],[7.631,50.279],[7.628,50.281],[7.62,50.287],[7.614,50.29],[7.597,50.309],[7.595,50.309],[7.595,50.309],[7.594,50.311],[7.594,50.311],[7.593,50.314],[7.589,50.319],[7.592,50.327],[7.592,50.327],[7.594,50.333],[7.596,50.339],[7.605,50.355],[7.61,50.365],[7.615,50.375],[7.616,50.378],[7.619,50.384],[7.62,50.389],[7.616,50.395],[7.609,50.399],[7.594,50.404],[7.574,50.414],[7.554,50.422],[7.539,50.425],[7.528,50.425],[7.522,50.423],[7.518,50.422],[7.51,50.417],[7.502,50.415],[7.489,50.415],[7.478,50.416],[7.464,50.421],[7.458,50.425],[7.451,50.434],[7.445,50.441],[7.441,50.443],[7.436,50.444],[7.428,50.445],[7.418,50.443],[7.404,50.443],[7.393,50.445],[7.387,50.448],[7.379,50.452],[7.356,50.466],[7.352,50.471],[7.337,50.483],[7.325,50.494],[7.31,50.506],[7.299,50.517],[7.296,50.521],[7.292,50.527],[7.288,50.532],[7.285,50.537],[7.271,50.566],[7.267,50.571],[7.258,50.576],[7.235,50.58],[7.224,50.584],[7.214,50.59],[7.212,50.596],[7.214,50.6],[7.216,50.603],[7.216,50.608],[7.215,50.623],[7.214,50.635],[7.215,50.643],[7.212,50.649],[7.209,50.652],[7.207,50.658],[7.203,50.661],[7.198,50.662],[7.195,50.664],[7.184,50.678],[7.179,50.687],[7.173,50.692],[7.166,50.707],[7.161,50.712],[7.154,50.715],[7.134,50.721],[7.127,50.724],[7.122,50.727],[7.12,50.728],[7.113,50.739],[7.107,50.75],[7.105,50.755],[7.101,50.757],[7.09,50.762],[7.09,50.762],[7.088,50.763],[7.088,50.763],[7.066,50.773],[7.059,50.776],[7.057,50.776],[7.046,50.782],[7.037,50.788],[7.034,50.797],[7.034,50.798],[7.035,50.803],[7.034,50.809],[7.029,50.816],[7.027,50.818],[7.023,50.821],[7.021,50.822],[7.012,50.824],[7,50.826],[6.999,50.826],[6.988,50.829],[6.982,50.834],[6.982,50.839],[6.983,50.84],[6.986,50.842],[6.996,50.846],[7.012,50.854],[7.018,50.859],[7.022,50.863],[7.033,50.868],[7.042,50.87],[7.049,50.874],[7.052,50.88],[7.052,50.886],[7.047,50.89],[7.039,50.893],[7.029,50.894],[7.013,50.894],[7.012,50.894],[7.005,50.895],[6.997,50.897],[6.991,50.902],[6.989,50.903],[6.977,50.914],[6.974,50.918],[6.969,50.925],[6.965,50.932],[6.96,50.939],[6.966,50.948],[6.966,50.948],[6.971,50.952],[6.992,50.965],[6.995,50.971],[6.992,50.975],[6.986,50.979],[6.972,50.978],[6.965,50.985],[6.96,50.992],[6.959,50.998],[6.96,51.003],[6.969,51.015],[6.968,51.021],[6.959,51.029],[6.95,51.033],[6.948,51.034],[6.927,51.046],[6.911,51.052],[6.856,51.071],[6.854,51.072],[6.852,51.074],[6.852,51.075],[6.85,51.079],[6.851,51.081],[6.851,51.083],[6.853,51.085],[6.854,51.086],[6.864,51.091],[6.875,51.094],[6.879,51.1],[6.879,51.105],[6.877,51.108],[6.864,51.12],[6.861,51.122],[6.853,51.127],[6.847,51.131],[6.846,51.137],[6.848,51.144],[6.853,51.15],[6.853,51.154],[6.853,51.155],[6.853,51.155],[6.849,51.157],[6.841,51.158],[6.841,51.158],[6.836,51.159],[6.833,51.159],[6.815,51.144],[6.806,51.142],[6.799,51.145],[6.797,51.146],[6.795,51.152],[6.799,51.161],[6.799,51.169],[6.795,51.17],[6.795,51.171],[6.792,51.175],[6.792,51.176],[6.788,51.179],[6.78,51.181],[6.766,51.179],[6.764,51.179],[6.759,51.18],[6.755,51.18],[6.752,51.18],[6.737,51.184],[6.733,51.192],[6.729,51.203],[6.729,51.208],[6.726,51.217],[6.728,51.225],[6.732,51.226],[6.732,51.226],[6.742,51.226],[6.746,51.225],[6.755,51.22],[6.758,51.22],[6.763,51.222],[6.764,51.227],[6.764,51.227],[6.764,51.232],[6.763,51.238],[6.759,51.243],[6.751,51.247],[6.75,51.247],[6.746,51.252],[6.722,51.259],[6.716,51.261],[6.707,51.267],[6.705,51.271],[6.705,51.281],[6.712,51.286],[6.714,51.287],[6.731,51.303],[6.732,51.309],[6.732,51.316],[6.729,51.32],[6.722,51.327],[6.706,51.334],[6.664,51.345],[6.66,51.346],[6.656,51.351],[6.662,51.365],[6.664,51.366],[6.67,51.369],[6.68,51.372],[6.705,51.373],[6.712,51.376],[6.726,51.383],[6.739,51.392],[6.743,51.397],[6.744,51.401],[6.744,51.406],[6.74,51.41],[6.732,51.418],[6.718,51.427],[6.713,51.434],[6.712,51.439],[6.715,51.448],[6.724,51.455],[6.721,51.462],[6.715,51.466],[6.69,51.475],[6.686,51.481],[6.688,51.486],[6.702,51.494],[6.715,51.498],[6.723,51.508],[6.717,51.514],[6.713,51.52],[6.709,51.521],[6.691,51.528],[6.686,51.533],[6.681,51.54],[6.682,51.546],[6.689,51.553],[6.691,51.556],[6.691,51.56],[6.691,51.565],[6.687,51.571],[6.678,51.576],[6.662,51.578],[6.652,51.577],[6.642,51.574],[6.633,51.57],[6.63,51.569],[6.612,51.568],[6.606,51.57],[6.602,51.573],[6.601,51.583],[6.603,51.59],[6.6,51.596],[6.592,51.612],[6.59,51.619],[6.592,51.625],[6.599,51.63],[6.599,51.634],[6.602,51.636],[6.605,51.642],[6.603,51.652],[6.592,51.657],[6.585,51.66],[6.566,51.659],[6.56,51.659],[6.543,51.66],[6.523,51.662],[6.499,51.662],[6.486,51.667],[6.48,51.671],[6.477,51.675],[6.476,51.68],[6.475,51.687],[6.473,51.691],[6.468,51.697],[6.463,51.702],[6.461,51.703],[6.454,51.706],[6.443,51.708],[6.433,51.71],[6.429,51.71],[6.418,51.713],[6.411,51.719],[6.412,51.724],[6.418,51.731],[6.424,51.738],[6.422,51.747],[6.418,51.752],[6.41,51.755],[6.4,51.756],[6.391,51.756],[6.35,51.756],[6.335,51.767],[6.331,51.775],[6.327,51.784],[6.316,51.798],[6.306,51.806],[6.282,51.819],[6.252,51.827],[6.223,51.83],[6.183,51.839],[6.166,51.843],[6.163,51.844],[6.162,51.845],[6.156,51.846],[6.15,51.847],[6.148,51.848],[6.148,51.849],[6.146,51.849],[6.143,51.849],[6.141,51.849],[6.14,51.849],[6.134,51.85],[6.132,51.85],[6.131,51.85],[6.119,51.85],[6.115,51.85],[6.111,51.849],[6.107,51.85],[6.106,51.85],[6.102,51.851],[6.101,51.851],[6.099,51.852],[6.098,51.853],[6.095,51.853],[6.093,51.854],[6.092,51.854],[6.093,51.855],[6.093,51.856],[6.093,51.857],[6.091,51.858],[6.09,51.858],[6.089,51.858],[6.089,51.857],[6.088,51.857],[6.086,51.858],[6.086,51.858],[6.085,51.858],[6.084,51.859],[6.083,51.86],[6.079,51.862],[6.079,51.862],[6.076,51.862],[6.07,51.866],[6.067,51.867],[6.062,51.869],[6.058,51.87],[6.032,51.881],[6.024,51.892],[6.022,51.894],[6.022,51.896],[6.02,51.898],[6.017,51.9],[6.014,51.901],[6.012,51.902],[6.008,51.903],[6.002,51.905],[5.993,51.908],[5.99,51.91],[5.984,51.915],[5.978,51.921],[5.976,51.923],[5.968,51.928],[5.965,51.931],[5.963,51.932],[5.961,51.935],[5.96,51.939],[5.959,51.942],[5.958,51.944],[5.957,51.946],[5.954,51.948],[5.949,51.951],[5.942,51.954],[5.94,51.955],[5.938,51.956],[5.936,51.958],[5.934,51.96],[5.933,51.965],[5.932,51.966],[5.93,51.967],[5.928,51.968],[5.926,51.969],[5.923,51.97],[5.92,51.97],[5.917,51.971],[5.915,51.972],[5.913,51.973],[5.91,51.974],[5.907,51.975],[5.907,51.974],[5.904,51.975],[5.904,51.975],[5.9,51.98],[5.893,51.983],[5.889,51.983],[5.886,51.983],[5.883,51.983],[5.88,51.982],[5.875,51.981],[5.874,51.981],[5.872,51.98],[5.873,51.979],[5.872,51.978],[5.871,51.977],[5.869,51.975],[5.867,51.973],[5.866,51.973],[5.859,51.968],[5.858,51.968],[5.857,51.968],[5.855,51.968],[5.853,51.969],[5.853,51.969],[5.851,51.97],[5.843,51.972],[5.84,51.973],[5.836,51.973],[5.833,51.973],[5.83,51.973],[5.827,51.972],[5.825,51.972],[5.813,51.965],[5.81,51.964],[5.808,51.963],[5.801,51.962],[5.797,51.962],[5.793,51.961],[5.787,51.96],[5.785,51.959],[5.772,51.96],[5.771,51.96],[5.763,51.963],[5.757,51.965],[5.745,51.971],[5.74,51.971],[5.737,51.971],[5.731,51.969],[5.723,51.963],[5.72,51.963],[5.718,51.963],[5.714,51.962],[5.711,51.962],[5.705,51.962],[5.704,51.961],[5.702,51.961],[5.7,51.961],[5.694,51.96],[5.691,51.959],[5.69,51.959],[5.687,51.959],[5.684,51.959],[5.681,51.958],[5.676,51.956],[5.673,51.954],[5.669,51.952],[5.664,51.952],[5.656,51.953],[5.654,51.953],[5.652,51.953],[5.649,51.953],[5.646,51.952],[5.643,51.949],[5.642,51.948],[5.641,51.947],[5.64,51.947],[5.638,51.945],[5.635,51.943],[5.633,51.942],[5.63,51.942],[5.607,51.944],[5.603,51.945],[5.596,51.949],[5.593,51.95],[5.591,51.951],[5.585,51.951],[5.572,51.954],[5.57,51.954],[5.563,51.955],[5.56,51.956],[5.557,51.957],[5.558,51.958],[5.558,51.959],[5.555,51.961],[5.555,51.96],[5.555,51.959],[5.554,51.959],[5.552,51.96],[5.55,51.961],[5.547,51.963],[5.545,51.966],[5.541,51.966],[5.54,51.966],[5.529,51.969],[5.519,51.971],[5.509,51.973],[5.506,51.974],[5.504,51.975],[5.5,51.977],[5.497,51.979],[5.49,51.981],[5.486,51.983],[5.484,51.983],[5.482,51.983],[5.474,51.984],[5.471,51.984],[5.467,51.984],[5.458,51.985],[5.454,51.985],[5.451,51.986],[5.448,51.987],[5.445,51.987],[5.442,51.988],[5.44,51.988],[5.437,51.987],[5.435,51.987],[5.432,51.987],[5.433,51.985],[5.43,51.984],[5.429,51.985],[5.428,51.985],[5.426,51.984],[5.426,51.983],[5.425,51.982],[5.424,51.982],[5.421,51.98],[5.42,51.98],[5.414,51.978],[5.412,51.977],[5.41,51.977],[5.407,51.977],[5.405,51.976],[5.404,51.976],[5.401,51.975],[5.399,51.975],[5.397,51.974],[5.396,51.974],[5.394,51.974],[5.393,51.974],[5.392,51.973],[5.392,51.973],[5.393,51.972],[5.386,51.97],[5.383,51.97],[5.38,51.97],[5.375,51.97],[5.372,51.971],[5.37,51.971],[5.364,51.972],[5.362,51.972],[5.345,51.968],[5.34,51.963],[5.336,51.961],[5.336,51.96],[5.334,51.959],[5.332,51.958],[5.328,51.957],[5.324,51.956],[5.322,51.956],[5.319,51.956],[5.316,51.957],[5.314,51.958],[5.311,51.959],[5.308,51.961],[5.304,51.962],[5.301,51.963],[5.297,51.964],[5.292,51.964],[5.288,51.964],[5.284,51.964],[5.278,51.965],[5.274,51.966],[5.271,51.967],[5.266,51.968],[5.263,51.97],[5.26,51.971],[5.257,51.973],[5.255,51.974],[5.248,51.979],[5.244,51.981],[5.24,51.981],[5.237,51.981],[5.231,51.979],[5.226,51.973],[5.223,51.969],[5.22,51.966],[5.218,51.964],[5.215,51.963],[5.212,51.961],[5.208,51.961],[5.205,51.961],[5.201,51.961],[5.198,51.962],[5.195,51.963],[5.19,51.965],[5.187,51.966],[5.179,51.969],[5.174,51.971],[5.166,51.972],[5.163,51.972],[5.158,51.972],[5.156,51.973],[5.155,51.973],[5.151,51.975],[5.151,51.975],[5.149,51.975],[5.146,51.975],[5.145,51.977],[5.143,51.98],[5.135,51.988],[5.133,51.991],[5.13,51.993],[5.126,51.996],[5.12,51.998],[5.116,51.999],[5.109,52.001],[5.105,52.002],[5.101,52.002],[5.097,52.002],[5.094,52.001],[5.091,52.001],[5.087,51.999],[5.083,51.998],[5.082,51.998],[5.077,51.996],[5.074,51.995],[5.073,51.993],[5.07,51.992],[5.067,51.992],[5.065,51.991],[5.064,51.989],[5.064,51.988],[5.063,51.986],[5.062,51.986],[5.06,51.985],[5.059,51.985],[5.058,51.986],[5.058,51.987],[5.055,51.986],[5.054,51.985],[5.05,51.983],[5.048,51.982],[5.045,51.98],[5.042,51.978],[5.042,51.978],[5.04,51.976],[5.04,51.974],[5.039,51.972],[5.037,51.971],[5.035,51.969],[5.032,51.968],[5.03,51.967],[5.027,51.967],[5.025,51.967],[5.022,51.968],[5.019,51.968],[5.017,51.97],[5.015,51.971],[5.012,51.973],[5.009,51.974],[5.007,51.976],[5.004,51.977],[5.001,51.977],[4.999,51.976],[5.003,51.977],[4.999,51.977],[4.995,51.977],[4.99,51.975],[4.986,51.974],[4.985,51.973],[4.981,51.969],[4.973,51.962],[4.968,51.96],[4.964,51.96],[4.96,51.96],[4.956,51.961],[4.952,51.963],[4.95,51.963],[4.947,51.962],[4.945,51.963],[4.944,51.963],[4.941,51.963],[4.939,51.962],[4.936,51.96],[4.935,51.959],[4.931,51.958],[4.929,51.957],[4.928,51.956],[4.927,51.956],[4.927,51.954],[4.926,51.953],[4.925,51.953],[4.922,51.95],[4.92,51.948],[4.916,51.944],[4.914,51.944],[4.909,51.943],[4.902,51.942],[4.893,51.942],[4.889,51.941],[4.882,51.94],[4.878,51.939],[4.873,51.939],[4.868,51.939],[4.866,51.94],[4.862,51.939],[4.859,51.94],[4.853,51.941],[4.851,51.941],[4.846,51.94],[4.838,51.939],[4.835,51.938],[4.833,51.937],[4.83,51.934],[4.824,51.931],[4.819,51.927],[4.775,51.915],[4.773,51.915],[4.771,51.915],[4.769,51.915],[4.766,51.914],[4.761,51.911],[4.759,51.911],[4.733,51.904],[4.732,51.903],[4.731,51.903],[4.727,51.901],[4.726,51.9],[4.723,51.899],[4.72,51.898],[4.716,51.898],[4.714,51.898],[4.704,51.899],[4.701,51.899],[4.698,51.899],[4.696,51.898],[4.693,51.897],[4.67,51.888],[4.658,51.888],[4.656,51.888],[4.653,51.888],[4.649,51.888],[4.646,51.889],[4.643,51.889],[4.64,51.889],[4.639,51.889],[4.635,51.889],[4.633,51.889],[4.631,51.888],[4.629,51.889],[4.628,51.888],[4.622,51.888],[4.617,51.888],[4.615,51.889],[4.614,51.89],[4.608,51.89],[4.604,51.891],[4.604,51.891],[4.599,51.891],[4.596,51.892],[4.593,51.893],[4.59,51.894],[4.589,51.894],[4.588,51.895],[4.585,51.897],[4.583,51.899],[4.581,51.9],[4.579,51.901],[4.576,51.901],[4.576,51.9],[4.573,51.9],[4.572,51.902],[4.57,51.901],[4.568,51.901],[4.566,51.901],[4.561,51.906],[4.568,51.91],[4.57,51.912],[4.572,51.913],[4.577,51.915],[4.58,51.918],[4.579,51.919],[4.579,51.921],[4.58,51.922],[4.581,51.922],[4.584,51.922],[4.587,51.923],[4.588,51.923],[4.589,51.924],[4.591,51.925],[4.593,51.926],[4.596,51.927],[4.6,51.928],[4.601,51.928],[4.606,51.928],[4.608,51.927],[4.609,51.927],[4.611,51.928],[4.611,51.928],[4.611,51.93],[4.611,51.931],[4.611,51.932],[4.616,51.934],[4.617,51.934],[4.619,51.937],[4.62,51.938],[4.621,51.938],[4.622,51.938],[4.624,51.938],[4.628,51.938],[4.631,51.938],[4.631,51.938],[4.633,51.942],[4.634,51.944],[4.635,51.947],[4.636,51.951],[4.637,51.952],[4.638,51.953],[4.64,51.954],[4.642,51.955],[4.642,51.955],[4.642,51.956],[4.64,51.959],[4.637,51.961],[4.635,51.962],[4.632,51.965],[4.633,51.969],[4.638,51.972],[4.642,51.973],[4.645,51.973],[4.648,51.974],[4.649,51.975],[4.653,51.977],[4.654,51.978],[4.658,51.978],[4.66,51.979],[4.664,51.98],[4.668,51.981],[4.668,51.982],[4.667,51.982],[4.668,51.983],[4.668,51.984],[4.67,51.986],[4.671,51.987],[4.674,51.989],[4.676,51.99],[4.678,51.992],[4.679,51.993],[4.683,51.995],[4.685,51.996],[4.687,51.998],[4.689,51.998],[4.69,51.999],[4.692,51.999],[4.693,52.004],[4.692,52.006],[4.691,52.008],[4.689,52.009],[4.687,52.011],[4.685,52.013],[4.683,52.016],[4.681,52.021],[4.677,52.022],[4.674,52.023],[4.672,52.023],[4.67,52.024],[4.669,52.026],[4.665,52.028],[4.661,52.032],[4.66,52.037],[4.66,52.041],[4.662,52.049],[4.664,52.059],[4.66,52.064],[4.659,52.07],[4.66,52.075],[4.661,52.082],[4.662,52.084],[4.662,52.087],[4.663,52.089],[4.663,52.091],[4.664,52.096],[4.665,52.1],[4.668,52.106],[4.671,52.111],[4.672,52.113],[4.673,52.115],[4.675,52.119],[4.673,52.12],[4.669,52.121],[4.668,52.121],[4.667,52.122],[4.665,52.124],[4.663,52.128],[4.664,52.131],[4.664,52.136],[4.663,52.139],[4.663,52.14],[4.662,52.141],[4.659,52.142],[4.657,52.142],[4.653,52.143],[4.651,52.143],[4.649,52.143],[4.647,52.143],[4.636,52.14],[4.632,52.14],[4.63,52.139],[4.627,52.138],[4.626,52.137],[4.623,52.135],[4.622,52.134],[4.621,52.132],[4.618,52.131],[4.615,52.13],[4.612,52.13],[4.599,52.132],[4.595,52.132],[4.591,52.132],[4.588,52.13],[4.584,52.129],[4.581,52.129],[4.572,52.129],[4.566,52.13],[4.561,52.132],[4.558,52.134],[4.553,52.137],[4.548,52.139],[4.543,52.141],[4.537,52.141],[4.534,52.142],[4.532,52.142],[4.53,52.143],[4.529,52.144],[4.526,52.145],[4.524,52.147],[4.522,52.154],[4.521,52.154],[4.52,52.155],[4.518,52.156],[4.513,52.157],[4.512,52.157],[4.511,52.157],[4.509,52.157],[4.504,52.157],[4.505,52.158],[4.505,52.159],[4.506,52.161],[4.506,52.161],[4.505,52.162],[4.504,52.162],[4.503,52.163],[4.5,52.163],[4.499,52.164],[4.494,52.164],[4.493,52.164],[4.492,52.164],[4.491,52.164],[4.49,52.164],[4.487,52.165],[4.485,52.164],[4.483,52.163],[4.481,52.161],[4.479,52.159],[4.476,52.159],[4.474,52.158],[4.472,52.157],[4.47,52.155],[4.468,52.154],[4.465,52.152],[4.463,52.153],[4.46,52.154],[4.457,52.156],[4.455,52.158],[4.45,52.161],[4.449,52.162],[4.448,52.163],[4.447,52.165],[4.447,52.167],[4.447,52.17],[4.447,52.171],[4.448,52.172],[4.449,52.173],[4.449,52.178],[4.447,52.179],[4.444,52.179],[4.441,52.18],[4.436,52.181],[4.434,52.183],[4.43,52.187],[4.427,52.189],[4.427,52.191],[4.426,52.192],[4.427,52.194],[4.428,52.194],[4.429,52.195],[4.431,52.196],[4.43,52.197],[4.421,52.203],[4.418,52.204],[4.409,52.207]],[[9.725,47.495],[9.708,47.501],[9.692,47.513],[9.654,47.521],[9.581,47.521],[9.521,47.526],[9.492,47.527],[9.461,47.542],[9.42,47.559],[9.397,47.581],[9.347,47.615],[9.271,47.646],[9.243,47.652],[9.21,47.66],[9.192,47.664],[9.173,47.67],[9.156,47.671],[9.141,47.67],[9.114,47.674],[9.082,47.682],[9.055,47.685],[9.021,47.687],[8.989,47.68],[8.965,47.668],[8.94,47.659],[8.922,47.655],[8.91,47.654],[8.897,47.654],[8.88,47.657],[8.858,47.663],[8.846,47.669],[8.835,47.677],[8.823,47.679],[8.814,47.68],[8.803,47.679],[8.788,47.681],[8.775,47.686],[8.764,47.691],[8.746,47.694],[8.724,47.694],[8.712,47.694],[8.702,47.696],[8.694,47.697],[8.686,47.694],[8.674,47.69],[8.67,47.689],[8.664,47.692],[8.654,47.699],[8.643,47.702],[8.632,47.702],[8.626,47.699],[8.624,47.692],[8.623,47.688],[8.617,47.684],[8.614,47.68],[8.613,47.672],[8.617,47.666],[8.623,47.658],[8.626,47.651],[8.627,47.646],[8.623,47.642],[8.615,47.641],[8.61,47.644],[8.609,47.648],[8.612,47.652],[8.611,47.655],[8.607,47.655],[8.602,47.652],[8.598,47.645],[8.598,47.64],[8.601,47.631],[8.604,47.626],[8.605,47.619],[8.603,47.611],[8.598,47.605],[8.593,47.599],[8.584,47.595],[8.579,47.591],[8.578,47.587],[8.575,47.581],[8.569,47.576],[8.568,47.573],[8.567,47.568],[8.565,47.563],[8.56,47.559],[8.555,47.56],[8.546,47.571],[8.54,47.575],[8.526,47.58],[8.521,47.582],[8.513,47.584],[8.501,47.586],[8.486,47.583],[8.473,47.581],[8.457,47.578],[8.447,47.577],[8.439,47.575],[8.433,47.574],[8.423,47.575],[8.41,47.579],[8.403,47.582],[8.396,47.581],[8.389,47.577],[8.383,47.573],[8.375,47.572],[8.363,47.573],[8.351,47.574],[8.338,47.576],[8.326,47.58],[8.321,47.586],[8.311,47.593],[8.304,47.595],[8.3,47.598],[8.298,47.602],[8.297,47.609],[8.295,47.612],[8.288,47.615],[8.275,47.616],[8.27,47.615],[8.263,47.617],[8.258,47.622],[8.254,47.623],[8.248,47.62],[8.236,47.617],[8.229,47.615],[8.225,47.617],[8.22,47.624],[8.213,47.628],[8.206,47.628],[8.202,47.624],[8.197,47.621],[8.189,47.614],[8.183,47.61],[8.176,47.606],[8.162,47.6],[8.148,47.598],[8.14,47.595],[8.135,47.592],[8.126,47.588],[8.114,47.587],[8.108,47.586],[8.105,47.583],[8.102,47.578],[8.1,47.573],[8.098,47.568],[8.095,47.565],[8.089,47.563],[8.082,47.565],[8.076,47.567],[8.069,47.569],[8.061,47.57],[8.057,47.568],[8.052,47.563],[8.048,47.561],[8.041,47.559],[8.033,47.557],[8.022,47.556],[8.012,47.555],[8.004,47.557],[7.998,47.56],[7.987,47.561],[7.969,47.56],[7.959,47.56],[7.954,47.559],[7.951,47.555],[7.946,47.551],[7.939,47.55],[7.93,47.551],[7.921,47.555],[7.915,47.558],[7.912,47.563],[7.911,47.572],[7.908,47.581],[7.903,47.586],[7.895,47.59],[7.882,47.592],[7.871,47.591],[7.857,47.589],[7.845,47.587],[7.837,47.589],[7.829,47.589],[7.821,47.589],[7.816,47.587],[7.814,47.584],[7.812,47.576],[7.807,47.572],[7.8,47.566],[7.792,47.561],[7.782,47.559],[7.765,47.555],[7.749,47.554],[7.736,47.551],[7.733,47.55],[7.731,47.549],[7.728,47.547],[7.727,47.545]],[[9.084,45.812],[9.075,45.814],[9.066,45.817],[9.061,45.82],[9.061,45.825],[9.063,45.83],[9.068,45.837],[9.069,45.842],[9.071,45.849],[9.072,45.852],[9.081,45.856],[9.086,45.859],[9.087,45.863],[9.09,45.866],[9.095,45.87],[9.105,45.875],[9.115,45.879],[9.122,45.882],[9.129,45.888],[9.132,45.891],[9.133,45.894],[9.132,45.899],[9.129,45.904],[9.126,45.908],[9.124,45.912],[9.125,45.918],[9.125,45.928],[9.123,45.935],[9.121,45.941],[9.121,45.947],[9.122,45.953],[9.129,45.959],[9.139,45.965],[9.154,45.971],[9.165,45.975],[9.177,45.978],[9.182,45.979],[9.187,45.979],[9.191,45.982],[9.196,45.986],[9.201,45.988],[9.205,45.99],[9.211,45.991],[9.217,45.992],[9.222,45.995],[9.226,45.998],[9.227,46.004],[9.228,46.017],[9.23,46.025],[9.229,46.032],[9.231,46.039],[9.231,46.042],[9.234,46.045],[9.238,46.047],[9.241,46.048],[9.245,46.051],[9.248,46.058],[9.251,46.061],[9.256,46.068],[9.261,46.071],[9.267,46.077],[9.268,46.082],[9.269,46.09],[9.269,46.093],[9.268,46.11],[9.268,46.116],[9.275,46.131],[9.28,46.139],[9.308,46.154],[9.319,46.163],[9.332,46.169],[9.349,46.176],[9.368,46.178],[9.38,46.179],[9.396,46.176],[9.405,46.171],[9.414,46.167],[9.432,46.177],[9.442,46.187],[9.444,46.203],[9.442,46.221],[9.435,46.233],[9.419,46.251],[9.412,46.262],[9.405,46.279],[9.4,46.296],[9.4,46.308],[9.395,46.315],[9.391,46.326],[9.388,46.331],[9.368,46.335],[9.352,46.35],[9.35,46.361],[9.352,46.376],[9.348,46.405],[9.344,46.417],[9.335,46.439],[9.329,46.462],[9.326,46.482],[9.324,46.503],[9.324,46.529],[9.327,46.543],[9.335,46.547],[9.35,46.552],[9.38,46.556],[9.398,46.561],[9.411,46.564],[9.43,46.572],[9.443,46.601],[9.454,46.624],[9.456,46.649],[9.457,46.669],[9.46,46.695],[9.46,46.714],[9.452,46.731],[9.439,46.756],[9.433,46.782],[9.427,46.793],[9.424,46.807],[9.433,46.823],[9.447,46.831],[9.464,46.837],[9.492,46.842],[9.508,46.848],[9.529,46.849]],[[9.086,45.812],[9.08,45.803],[9.085,45.793],[9.097,45.777],[9.116,45.757],[9.129,45.742],[9.153,45.724],[9.176,45.704],[9.187,45.692],[9.191,45.678],[9.198,45.654],[9.198,45.636],[9.197,45.618],[9.191,45.601],[9.185,45.58],[9.184,45.562],[9.183,45.535],[9.18,45.507],[9.18,45.488],[9.181,45.478],[9.188,45.464]],[[9.254,45.479],[9.257,45.472],[9.255,45.466],[9.258,45.459],[9.266,45.455],[9.268,45.446],[9.273,45.438],[9.276,45.432],[9.288,45.427],[9.298,45.42],[9.307,45.403],[9.314,45.388],[9.328,45.375],[9.334,45.371],[9.347,45.351],[9.37,45.323],[9.393,45.302],[9.39,45.297],[9.403,45.286],[9.403,45.282],[9.406,45.279],[9.409,45.27],[9.416,45.266],[9.415,45.261],[9.418,45.25],[9.423,45.246],[9.421,45.24],[9.425,45.238],[9.43,45.243],[9.443,45.24],[9.447,45.234],[9.453,45.232],[9.456,45.226],[9.46,45.223],[9.466,45.212],[9.482,45.2],[9.502,45.192],[9.517,45.191],[9.52,45.187],[9.526,45.185],[9.526,45.181],[9.531,45.179],[9.547,45.153],[9.538,45.13],[9.545,45.13],[9.55,45.127],[9.556,45.118],[9.562,45.107],[9.573,45.1],[9.584,45.101],[9.6,45.104],[9.61,45.109],[9.614,45.117],[9.614,45.13],[9.618,45.134],[9.629,45.124],[9.632,45.116],[9.632,45.105],[9.625,45.09],[9.63,45.083],[9.64,45.08],[9.655,45.08],[9.668,45.078],[9.681,45.077],[9.699,45.069],[9.709,45.066],[9.717,45.064],[9.737,45.074],[9.744,45.082],[9.745,45.086],[9.751,45.091],[9.752,45.095],[9.748,45.101],[9.742,45.103],[9.738,45.107],[9.741,45.114],[9.752,45.113],[9.762,45.111],[9.776,45.09],[9.789,45.086],[9.794,45.082],[9.799,45.081],[9.81,45.078],[9.815,45.074],[9.816,45.064],[9.822,45.057],[9.825,45.059],[9.826,45.088],[9.832,45.097],[9.845,45.098],[9.856,45.095],[9.867,45.088],[9.873,45.077],[9.88,45.075],[9.886,45.078],[9.891,45.084],[9.891,45.087],[9.897,45.093],[9.908,45.099],[9.92,45.102],[9.927,45.105],[9.936,45.112],[9.943,45.121],[9.959,45.126],[9.964,45.134],[9.97,45.137],[9.975,45.137],[9.987,45.134],[9.993,45.127],[10.003,45.122],[10.008,45.115],[10.019,45.104],[10.027,45.101],[10.031,45.086],[10.041,45.076],[10.042,45.068],[10.048,45.06],[10.054,45.043],[10.062,45.038],[10.062,45.033],[10.069,45.035],[10.08,45.033],[10.089,45.027],[10.096,45.026],[10.102,45.03],[10.106,45.031],[10.115,45.027],[10.13,45.03],[10.146,45.037],[10.151,45.042],[10.163,45.045],[10.177,45.043],[10.192,45.038],[10.229,45.027],[10.264,45.009],[10.313,44.983],[10.37,44.974],[10.389,44.978],[10.406,44.979],[10.416,44.979],[10.423,44.971],[10.43,44.961],[10.427,44.958],[10.428,44.956],[10.439,44.953],[10.447,44.947],[10.463,44.942],[10.466,44.94],[10.479,44.933],[10.483,44.934],[10.49,44.931],[10.495,44.931],[10.502,44.924],[10.53,44.917],[10.541,44.919],[10.553,44.92],[10.56,44.918],[10.567,44.919],[10.597,44.921],[10.608,44.923],[10.62,44.929],[10.63,44.938],[10.637,44.947],[10.645,44.956],[10.666,44.973],[10.69,44.983],[10.709,44.986],[10.722,44.991],[10.73,44.994],[10.735,44.993],[10.736,44.986],[10.742,44.979],[10.752,44.983],[10.762,44.988],[10.77,44.989],[10.779,44.986],[10.786,44.985],[10.793,44.987],[10.796,44.989],[10.8,44.994],[10.799,44.999],[10.794,45.003],[10.787,45.007],[10.78,45.01],[10.776,45.013],[10.773,45.018],[10.774,45.021],[10.777,45.025],[10.784,45.027],[10.788,45.026],[10.793,45.028],[10.797,45.03],[10.804,45.031],[10.81,45.03],[10.813,45.026],[10.819,45.02],[10.828,45.02],[10.836,45.021],[10.841,45.025],[10.843,45.029],[10.846,45.033],[10.85,45.034],[10.856,45.033],[10.867,45.03],[10.872,45.029],[10.88,45.03],[10.887,45.034],[10.893,45.04],[10.902,45.049],[10.902,45.051],[10.903,45.052],[10.907,45.056],[10.902,45.062],[10.905,45.073],[10.908,45.079],[10.918,45.081],[10.932,45.078],[10.947,45.073],[10.958,45.071],[10.971,45.072],[10.976,45.073],[10.995,45.067],[10.998,45.066],[11.003,45.063],[11.005,45.061],[11.012,45.056],[11.029,45.053],[11.036,45.047],[11.047,45.044],[11.055,45.042],[11.061,45.04],[11.072,45.042],[11.074,45.042],[11.086,45.05],[11.09,45.054],[11.101,45.058],[11.12,45.069],[11.128,45.069],[11.134,45.065],[11.14,45.056],[11.149,45.054],[11.162,45.044],[11.168,45.043],[11.169,45.043],[11.184,45.05],[11.198,45.054],[11.209,45.053],[11.215,45.053],[11.228,45.045],[11.239,45.036],[11.249,45.04],[11.251,45.047],[11.251,45.048],[11.255,45.049],[11.263,45.052],[11.263,45.049],[11.265,45.043],[11.258,45.033],[11.256,45.025],[11.264,45.016],[11.275,45.013],[11.29,45.011],[11.296,45.007],[11.302,45.003],[11.317,44.996],[11.331,44.986],[11.351,44.981],[11.368,44.971],[11.392,44.965],[11.414,44.963],[11.431,44.954],[11.43,44.95],[11.427,44.941],[11.428,44.932],[11.431,44.928],[11.438,44.931],[11.452,44.931],[11.469,44.937],[11.488,44.937],[11.497,44.94],[11.506,44.937],[11.529,44.939],[11.541,44.935],[11.546,44.932],[11.567,44.919],[11.574,44.914],[11.58,44.909],[11.585,44.904],[11.586,44.895],[11.59,44.886],[11.601,44.885],[11.597,44.872],[11.592,44.839],[11.594,44.837],[11.613,44.829],[11.625,44.821],[11.646,44.821],[11.658,44.821],[11.664,44.822],[11.685,44.83],[11.716,44.839],[11.726,44.846],[11.737,44.844],[11.752,44.844],[11.766,44.846],[11.777,44.84],[11.796,44.838],[11.812,44.833],[11.828,44.834],[11.834,44.833],[11.842,44.822],[11.849,44.82],[11.855,44.817],[11.859,44.809],[11.873,44.804],[11.877,44.802],[11.873,44.794],[11.874,44.787],[11.882,44.782],[11.894,44.777],[11.909,44.779],[11.918,44.771],[11.927,44.768],[11.937,44.77],[11.946,44.775],[11.953,44.773],[11.957,44.742],[11.961,44.741],[11.972,44.743],[11.995,44.736],[12,44.736],[12.009,44.734],[12.018,44.734],[12.036,44.728],[12.054,44.72],[12.077,44.717],[12.086,44.714],[12.098,44.699],[12.107,44.695],[12.116,44.695],[12.129,44.698],[12.136,44.696],[12.146,44.698],[12.156,44.696],[12.17,44.695],[12.176,44.687],[12.182,44.664],[12.169,44.657],[12.156,44.651],[12.116,44.654],[12.113,44.641],[12.108,44.63],[12.106,44.622],[12.106,44.607],[12.112,44.578],[12.132,44.563],[12.156,44.537],[12.173,44.517],[12.183,44.494],[12.198,44.469],[12.206,44.45],[12.207,44.44],[12.213,44.424]],[[9.726,47.496],[9.736,47.46],[9.74,47.442],[9.739,47.429],[9.735,47.409],[9.723,47.386],[9.712,47.37],[9.688,47.353],[9.666,47.34],[9.654,47.329],[9.64,47.304],[9.636,47.276],[9.623,47.26],[9.604,47.247],[9.558,47.208],[9.527,47.179],[9.514,47.169],[9.511,47.164],[9.51,47.154],[9.517,47.144],[9.529,47.11],[9.53,47.099],[9.527,47.093],[9.517,47.085],[9.511,47.082],[9.501,47.077],[9.497,47.072],[9.495,47.065],[9.496,47.054],[9.51,47.039],[9.529,47.018],[9.546,47.003],[9.549,46.996],[9.558,46.951],[9.566,46.926],[9.568,46.916],[9.566,46.908],[9.548,46.882],[9.534,46.863],[9.531,46.849]],[[12.06,37.97],[12.064,37.991]],[[12.064,37.991],[12.164,37.991],[12.264,37.891],[12.364,37.791]],[[12.287,41.754],[12.264,41.691],[12.164,41.591],[12.064,41.491],[12.064,41.391],[12.064,41.291],[12.064,41.191],[12.064,41.091],[12.064,40.991],[12.064,40.891],[12.064,40.791],[12.064,40.691],[12.064,40.591],[12.064,40.491],[12.064,40.391],[12.064,40.291],[12.064,40.191],[12.064,40.091],[12.064,39.991],[12.064,39.891],[12.064,39.791],[12.064,39.691],[12.064,39.591],[12.064,39.491],[12.064,39.391],[12.064,39.291],[12.064,39.191],[12.064,39.091],[12.064,38.991],[12.064,38.891],[12.064,38.791],[12.064,38.691],[12.064,38.591],[12.064,38.491],[12.064,38.391],[12.064,38.291],[12.064,38.191],[12.064,38.091],[12.064,37.991]],[[13.564,43.591],[13.464,43.691],[13.364,43.791],[13.264,43.891],[13.164,43.991],[13.064,44.091],[12.964,44.191],[12.864,44.291],[12.764,44.391],[12.664,44.391],[12.564,44.391],[12.464,44.391],[12.364,44.391],[12.212,44.423]],[[12.474,41.89],[12.474,41.89],[12.475,41.888],[12.469,41.882],[12.468,41.877],[12.472,41.868],[12.47,41.863],[12.461,41.858],[12.46,41.855],[12.46,41.854],[12.462,41.85],[12.444,41.834],[12.435,41.829],[12.426,41.831],[12.421,41.828],[12.418,41.822],[12.416,41.818],[12.411,41.809],[12.405,41.805],[12.394,41.805],[12.386,41.802],[12.375,41.804],[12.37,41.805],[12.364,41.807],[12.36,41.806],[12.352,41.806],[12.343,41.809],[12.339,41.806],[12.337,41.799],[12.332,41.798],[12.323,41.799],[12.317,41.799],[12.309,41.8],[12.302,41.797],[12.295,41.791],[12.284,41.789],[12.278,41.782],[12.273,41.773],[12.274,41.771],[12.274,41.768],[12.275,41.764],[12.28,41.758],[12.271,41.753]],[[12.437,37.798],[12.364,37.791]],[[12.364,37.791],[12.464,37.691],[12.564,37.591],[12.664,37.491],[12.764,37.491],[12.864,37.491],[12.964,37.491],[13.064,37.491],[13.164,37.391],[13.264,37.391],[13.364,37.291],[13.464,37.291],[13.564,37.191],[13.664,37.191],[13.764,37.091],[13.864,37.091],[13.964,37.091],[14.064,37.091],[14.164,37.091],[14.264,36.991],[14.364,36.891],[14.464,36.791],[14.564,36.691],[14.664,36.691],[14.764,36.691],[14.864,36.691],[14.964,36.691],[15.064,36.591],[15.164,36.691]],[[13.564,43.591],[13.518,43.615]],[[16.864,41.191],[16.864,41.291],[16.764,41.391],[16.664,41.491],[16.564,41.591],[16.464,41.691],[16.364,41.791],[16.264,41.891],[16.164,41.991],[16.064,42.091],[15.964,42.191],[15.864,42.191],[15.764,42.191],[15.664,42.191],[15.564,42.191],[15.464,42.191],[15.364,42.191],[15.264,42.191],[15.164,42.191],[15.064,42.191],[14.964,42.191],[14.864,42.291],[14.764,42.391],[14.664,42.491],[14.564,42.591],[14.464,42.691],[14.364,42.791],[14.264,42.891],[14.164,42.991],[14.064,43.091],[13.964,43.191],[13.864,43.291],[13.764,43.391],[13.664,43.491],[13.564,43.591]],[[15.164,36.691],[15.137,36.681]],[[15.164,36.691],[15.164,36.791],[15.264,36.891],[15.364,36.991],[15.364,37.091],[15.364,37.191],[15.364,37.291],[15.364,37.391],[15.364,37.491],[15.364,37.591],[15.364,37.691],[15.364,37.791],[15.364,37.891],[15.464,37.991],[15.564,38.091]],[[15.557,38.192],[15.564,38.091]],[[15.564,38.091],[15.643,38.108]],[[15.564,38.091],[15.564,37.991],[15.664,37.891],[15.764,37.891],[15.864,37.891],[15.964,37.891],[16.064,37.891]],[[16.06,37.93],[16.064,37.891]],[[16.064,37.891],[16.164,37.991],[16.164,38.091],[16.264,38.191]],[[16.26,38.24],[16.264,38.191]],[[16.264,38.191],[16.364,38.291],[16.464,38.291],[16.564,38.391],[16.664,38.491],[16.764,38.591],[16.864,38.691],[16.964,38.791],[17.064,38.891],[17.164,38.891],[17.264,38.991]],[[17.964,40.691],[17.864,40.791],[17.764,40.891],[17.664,40.991],[17.564,41.091],[17.464,41.191],[17.364,41.191],[17.264,41.191],[17.164,41.191],[17.064,41.191],[16.964,41.191],[16.864,41.191]],[[16.864,41.191],[16.869,41.128]],[[17.2,39.03],[17.264,38.991]],[[17.264,38.991],[17.364,39.091],[17.464,39.191],[17.564,39.291],[17.664,39.391],[17.764,39.491],[17.864,39.591],[17.964,39.691],[18.064,39.791],[18.164,39.791],[18.264,39.791],[18.364,39.791]],[[17.964,40.691],[17.938,40.635]],[[18.564,40.191],[18.464,40.291],[18.364,40.391],[18.264,40.491],[18.164,40.591],[18.064,40.691],[17.964,40.691]],[[18.364,39.791],[18.36,39.8]],[[18.364,39.791],[18.464,39.891],[18.464,39.991],[18.564,40.091],[18.564,40.191]],[[18.49,40.15],[18.564,40.191]]]},"pair": 50235,"direction": 0,"month": 2,"priority": 1,"expense": 18.244,"duration": 78.585,"length": 4403.533},{"type": "Feature", "geometry": {"type":"MultiLineString","coordinates":[[[-0.083,51.52],[0.464,51.491],[0.564,51.491],[0.664,51.491],[0.764,51.491],[0.864,51.491],[0.964,51.591],[1.064,51.691],[1.164,51.691],[1.264,51.791],[1.364,51.891],[1.464,51.991],[1.564,51.991],[1.664,52.091],[1.764,52.191],[1.864,52.191],[1.964,52.191],[2.064,52.191],[2.164,52.191],[2.264,52.191],[2.364,52.191],[2.464,52.191],[2.564,52.191],[2.664,52.191],[2.764,52.191],[2.864,52.191],[2.964,52.191],[3.064,52.191],[3.164,52.191],[3.264,52.191],[3.364,52.191],[3.464,52.191],[3.564,52.191],[3.664,52.191],[3.764,52.191],[3.864,52.191],[3.964,52.191],[4.064,52.191],[4.164,52.191],[4.264,52.191],[4.364,52.191],[4.398,52.198]],[[7.728,47.545],[7.719,47.544],[7.7,47.539],[7.694,47.538],[7.67,47.535],[7.668,47.535],[7.666,47.536],[7.665,47.537],[7.664,47.539],[7.663,47.541],[7.662,47.543],[7.661,47.545],[7.66,47.545],[7.657,47.545],[7.654,47.546],[7.652,47.546],[7.649,47.547],[7.646,47.551],[7.643,47.555],[7.642,47.555],[7.641,47.556],[7.639,47.558],[7.637,47.559],[7.634,47.559],[7.631,47.559],[7.629,47.559],[7.628,47.559],[7.626,47.558],[7.62,47.558],[7.618,47.558],[7.612,47.556],[7.606,47.555],[7.601,47.555],[7.599,47.555],[7.597,47.555],[7.594,47.557],[7.59,47.56],[7.586,47.564],[7.585,47.566],[7.584,47.569],[7.584,47.57],[7.582,47.575],[7.583,47.575],[7.584,47.576],[7.584,47.577],[7.584,47.58],[7.585,47.583],[7.586,47.585],[7.587,47.586],[7.587,47.587],[7.588,47.589],[7.588,47.59],[7.589,47.593],[7.589,47.593],[7.589,47.593],[7.59,47.595],[7.591,47.596],[7.592,47.597],[7.592,47.599],[7.592,47.6],[7.592,47.602],[7.591,47.603],[7.591,47.604],[7.589,47.605],[7.587,47.606],[7.586,47.607],[7.584,47.608],[7.583,47.609],[7.581,47.61],[7.58,47.61],[7.577,47.612],[7.572,47.614],[7.572,47.615],[7.568,47.617],[7.563,47.62],[7.557,47.625],[7.556,47.625],[7.551,47.63],[7.545,47.635],[7.54,47.639],[7.538,47.64],[7.536,47.641],[7.532,47.644],[7.525,47.649],[7.522,47.651],[7.521,47.652],[7.521,47.653],[7.52,47.653],[7.52,47.653],[7.519,47.654],[7.519,47.654],[7.518,47.655],[7.517,47.656],[7.517,47.657],[7.517,47.657],[7.517,47.658],[7.517,47.659],[7.516,47.66],[7.516,47.66],[7.515,47.661],[7.514,47.662],[7.514,47.663],[7.513,47.664],[7.513,47.666],[7.512,47.669],[7.512,47.672],[7.512,47.675],[7.512,47.677],[7.513,47.678],[7.513,47.68],[7.513,47.682],[7.513,47.684],[7.512,47.685],[7.512,47.687],[7.511,47.688],[7.51,47.689],[7.51,47.691],[7.509,47.693],[7.508,47.695],[7.507,47.697],[7.507,47.698],[7.507,47.698],[7.507,47.7],[7.508,47.701],[7.508,47.702],[7.511,47.707],[7.512,47.708],[7.513,47.708],[7.514,47.709],[7.515,47.709],[7.519,47.712],[7.521,47.714],[7.53,47.72],[7.532,47.722],[7.534,47.723],[7.535,47.724],[7.536,47.725],[7.537,47.726],[7.538,47.727],[7.539,47.73],[7.54,47.731],[7.54,47.733],[7.54,47.734],[7.54,47.738],[7.539,47.74],[7.538,47.741],[7.538,47.742],[7.536,47.744],[7.535,47.746],[7.534,47.748],[7.532,47.751],[7.531,47.752],[7.53,47.754],[7.528,47.758],[7.527,47.76],[7.526,47.76],[7.525,47.762],[7.524,47.764],[7.524,47.765],[7.523,47.767],[7.523,47.767],[7.522,47.77],[7.522,47.771],[7.522,47.773],[7.522,47.774],[7.522,47.775],[7.522,47.775],[7.524,47.776],[7.525,47.777],[7.524,47.778],[7.524,47.78],[7.524,47.781],[7.524,47.782],[7.524,47.784],[7.525,47.786],[7.525,47.788],[7.526,47.789],[7.526,47.789],[7.526,47.79],[7.527,47.791],[7.527,47.791],[7.528,47.792],[7.529,47.794],[7.53,47.795],[7.532,47.799],[7.537,47.804],[7.54,47.808],[7.542,47.811],[7.543,47.814],[7.545,47.817],[7.546,47.82],[7.546,47.822],[7.547,47.823],[7.547,47.824],[7.547,47.825],[7.548,47.825],[7.548,47.827],[7.549,47.828],[7.549,47.829],[7.551,47.832],[7.553,47.836],[7.554,47.837],[7.555,47.84],[7.556,47.842],[7.556,47.845],[7.556,47.846],[7.556,47.848],[7.556,47.849],[7.556,47.85],[7.556,47.853],[7.555,47.857],[7.555,47.857],[7.554,47.861],[7.553,47.865],[7.553,47.869],[7.552,47.871],[7.552,47.871],[7.552,47.872],[7.552,47.875],[7.552,47.877],[7.553,47.879],[7.559,47.89],[7.56,47.892],[7.561,47.895],[7.564,47.9],[7.564,47.901],[7.565,47.902],[7.565,47.903],[7.566,47.904],[7.567,47.909],[7.568,47.911],[7.57,47.916],[7.571,47.919],[7.572,47.92],[7.572,47.921],[7.573,47.923],[7.573,47.925],[7.574,47.926],[7.575,47.928],[7.575,47.929],[7.576,47.931],[7.577,47.932],[7.58,47.935],[7.58,47.936],[7.58,47.936],[7.581,47.937],[7.582,47.938],[7.582,47.939],[7.584,47.94],[7.586,47.942],[7.595,47.949],[7.596,47.95],[7.596,47.951],[7.598,47.952],[7.598,47.952],[7.598,47.953],[7.6,47.954],[7.603,47.957],[7.605,47.959],[7.606,47.96],[7.608,47.964],[7.61,47.967],[7.611,47.969],[7.611,47.97],[7.612,47.972],[7.612,47.973],[7.612,47.976],[7.612,47.978],[7.612,47.98],[7.612,47.982],[7.611,47.984],[7.61,47.986],[7.609,47.988],[7.608,47.99],[7.607,47.991],[7.606,47.993],[7.604,47.995],[7.603,47.996],[7.601,47.998],[7.6,47.999],[7.599,48],[7.599,48],[7.597,48.002],[7.589,48.008],[7.582,48.013],[7.579,48.016],[7.574,48.019],[7.573,48.02],[7.57,48.022],[7.569,48.024],[7.567,48.027],[7.567,48.028],[7.566,48.03],[7.567,48.033],[7.57,48.039],[7.573,48.046],[7.574,48.048],[7.574,48.054],[7.574,48.059],[7.573,48.062],[7.568,48.069],[7.57,48.078],[7.569,48.082],[7.57,48.085],[7.572,48.089],[7.575,48.092],[7.58,48.101],[7.58,48.105],[7.578,48.112],[7.578,48.116],[7.578,48.121],[7.578,48.122],[7.581,48.125],[7.584,48.127],[7.585,48.128],[7.587,48.129],[7.591,48.13],[7.595,48.132],[7.597,48.134],[7.598,48.137],[7.6,48.14],[7.599,48.143],[7.599,48.145],[7.598,48.147],[7.598,48.149],[7.599,48.15],[7.607,48.163],[7.611,48.169],[7.614,48.171],[7.619,48.175],[7.62,48.176],[7.625,48.181],[7.63,48.185],[7.631,48.187],[7.635,48.194],[7.638,48.2],[7.64,48.202],[7.641,48.205],[7.644,48.208],[7.645,48.209],[7.646,48.21],[7.648,48.212],[7.654,48.218],[7.658,48.223],[7.661,48.228],[7.663,48.235],[7.665,48.239],[7.669,48.245],[7.67,48.249],[7.676,48.252],[7.676,48.261],[7.677,48.264],[7.678,48.268],[7.68,48.269],[7.68,48.273],[7.681,48.273],[7.68,48.274],[7.681,48.275],[7.683,48.276],[7.683,48.277],[7.681,48.277],[7.681,48.278],[7.683,48.278],[7.684,48.278],[7.685,48.279],[7.685,48.28],[7.684,48.281],[7.689,48.294],[7.692,48.3],[7.697,48.305],[7.703,48.309],[7.709,48.311],[7.724,48.315],[7.731,48.316],[7.732,48.318],[7.734,48.318],[7.737,48.32],[7.739,48.322],[7.741,48.324],[7.742,48.325],[7.744,48.328],[7.744,48.331],[7.746,48.333],[7.749,48.336],[7.747,48.347],[7.743,48.371],[7.74,48.383],[7.737,48.394],[7.743,48.416],[7.745,48.422],[7.745,48.425],[7.752,48.444],[7.766,48.48],[7.771,48.492],[7.78,48.496],[7.795,48.502],[7.802,48.507],[7.805,48.514],[7.806,48.521],[7.805,48.53],[7.805,48.532],[7.805,48.548],[7.805,48.56],[7.803,48.57],[7.801,48.574],[7.801,48.572],[7.8,48.574],[7.799,48.576],[7.799,48.576],[7.799,48.577],[7.799,48.577],[7.798,48.579],[7.798,48.582],[7.798,48.583],[7.799,48.585],[7.8,48.587],[7.8,48.588],[7.801,48.59],[7.802,48.591],[7.802,48.592],[7.803,48.593],[7.803,48.594],[7.804,48.594],[7.806,48.597],[7.81,48.601],[7.811,48.602],[7.815,48.607],[7.817,48.609],[7.82,48.612],[7.823,48.615],[7.824,48.616],[7.826,48.618],[7.828,48.62],[7.829,48.622],[7.83,48.625],[7.831,48.629],[7.832,48.63],[7.832,48.633],[7.833,48.634],[7.834,48.637],[7.835,48.639],[7.836,48.641],[7.838,48.643],[7.839,48.644],[7.838,48.644],[7.841,48.646],[7.843,48.647],[7.845,48.648],[7.848,48.648],[7.85,48.649],[7.852,48.649],[7.853,48.65],[7.855,48.65],[7.858,48.651],[7.867,48.654],[7.871,48.656],[7.873,48.657],[7.874,48.657],[7.873,48.657],[7.877,48.658],[7.882,48.66],[7.885,48.661],[7.888,48.663],[7.889,48.664],[7.889,48.665],[7.89,48.666],[7.891,48.667],[7.895,48.669],[7.898,48.672],[7.899,48.673],[7.899,48.674],[7.9,48.676],[7.9,48.677],[7.902,48.679],[7.903,48.681],[7.903,48.681],[7.905,48.683],[7.905,48.683],[7.909,48.686],[7.911,48.688],[7.912,48.688],[7.913,48.688],[7.913,48.689],[7.914,48.689],[7.915,48.689],[7.915,48.69],[7.918,48.691],[7.923,48.694],[7.926,48.696],[7.927,48.697],[7.928,48.697],[7.931,48.698],[7.933,48.699],[7.935,48.7],[7.938,48.702],[7.94,48.703],[7.942,48.706],[7.951,48.713],[7.952,48.713],[7.952,48.714],[7.952,48.714],[7.955,48.716],[7.96,48.72],[7.963,48.723],[7.965,48.726],[7.965,48.727],[7.966,48.728],[7.966,48.731],[7.965,48.737],[7.965,48.741],[7.964,48.744],[7.964,48.746],[7.964,48.746],[7.964,48.746],[7.965,48.749],[7.966,48.751],[7.966,48.753],[7.967,48.755],[7.969,48.758],[7.971,48.759],[7.973,48.76],[7.975,48.76],[7.979,48.761],[7.981,48.761],[7.982,48.761],[7.984,48.761],[7.989,48.76],[7.992,48.76],[7.998,48.759],[8,48.759],[8.003,48.758],[8.006,48.759],[8.01,48.76],[8.014,48.761],[8.018,48.764],[8.021,48.767],[8.022,48.77],[8.022,48.772],[8.024,48.777],[8.024,48.778],[8.024,48.78],[8.024,48.782],[8.025,48.784],[8.025,48.785],[8.027,48.786],[8.029,48.787],[8.03,48.788],[8.03,48.789],[8.032,48.79],[8.035,48.792],[8.036,48.792],[8.038,48.791],[8.042,48.792],[8.046,48.792],[8.047,48.792],[8.051,48.792],[8.054,48.791],[8.055,48.791],[8.056,48.791],[8.058,48.79],[8.062,48.79],[8.065,48.791],[8.068,48.792],[8.069,48.793],[8.069,48.794],[8.069,48.794],[8.069,48.795],[8.069,48.795],[8.07,48.796],[8.071,48.796],[8.073,48.796],[8.074,48.796],[8.076,48.796],[8.077,48.797],[8.08,48.798],[8.081,48.799],[8.086,48.803],[8.091,48.807],[8.095,48.811],[8.097,48.812],[8.098,48.813],[8.101,48.817],[8.102,48.82],[8.103,48.824],[8.103,48.827],[8.103,48.831],[8.104,48.833],[8.105,48.835],[8.106,48.836],[8.106,48.837],[8.111,48.844],[8.111,48.844],[8.11,48.845],[8.11,48.845],[8.11,48.845],[8.109,48.845],[8.109,48.845],[8.109,48.845],[8.11,48.846],[8.11,48.846],[8.11,48.846],[8.11,48.847],[8.11,48.847],[8.11,48.848],[8.112,48.848],[8.113,48.849],[8.114,48.852],[8.114,48.852],[8.117,48.857],[8.119,48.864],[8.124,48.871],[8.125,48.874],[8.126,48.875],[8.127,48.876],[8.127,48.877],[8.133,48.886],[8.137,48.892],[8.137,48.893],[8.139,48.894],[8.139,48.895],[8.14,48.896],[8.142,48.898],[8.142,48.899],[8.143,48.9],[8.144,48.901],[8.15,48.908],[8.156,48.914],[8.158,48.916],[8.158,48.916],[8.159,48.918],[8.163,48.921],[8.167,48.925],[8.172,48.929],[8.175,48.932],[8.177,48.934],[8.178,48.935],[8.179,48.936],[8.182,48.94],[8.184,48.942],[8.183,48.942],[8.184,48.943],[8.186,48.945],[8.189,48.95],[8.19,48.951],[8.191,48.953],[8.194,48.956],[8.195,48.958],[8.197,48.959],[8.201,48.961],[8.208,48.963],[8.213,48.964],[8.214,48.964],[8.215,48.964],[8.218,48.965],[8.221,48.965],[8.221,48.966],[8.222,48.965],[8.224,48.966],[8.232,48.967],[8.232,48.968],[8.249,48.976],[8.261,48.982],[8.267,48.986],[8.27,48.989],[8.272,48.99],[8.279,48.993],[8.284,48.996],[8.29,49.001],[8.297,49.012],[8.3,49.02],[8.305,49.04],[8.306,49.043],[8.307,49.044],[8.316,49.061],[8.327,49.071],[8.334,49.074],[8.339,49.077],[8.344,49.08],[8.35,49.085],[8.355,49.092],[8.356,49.094],[8.359,49.099],[8.367,49.133],[8.37,49.144],[8.371,49.147],[8.371,49.154],[8.368,49.161],[8.367,49.165],[8.37,49.172],[8.375,49.177],[8.377,49.182],[8.384,49.194],[8.386,49.204],[8.386,49.209],[8.385,49.212],[8.384,49.216],[8.385,49.231],[8.394,49.243],[8.4,49.247],[8.409,49.251],[8.418,49.254],[8.438,49.263],[8.449,49.271],[8.449,49.271],[8.453,49.278],[8.458,49.282],[8.46,49.284],[8.463,49.285],[8.483,49.29],[8.488,49.293],[8.49,49.296],[8.49,49.3],[8.488,49.303],[8.484,49.305],[8.47,49.31],[8.466,49.311],[8.459,49.315],[8.452,49.319],[8.449,49.323],[8.452,49.331],[8.454,49.335],[8.459,49.339],[8.469,49.344],[8.475,49.347],[8.481,49.349],[8.489,49.357],[8.492,49.36],[8.497,49.366],[8.5,49.374],[8.502,49.381],[8.502,49.386],[8.502,49.391],[8.498,49.397],[8.496,49.404],[8.495,49.413],[8.503,49.425],[8.508,49.436],[8.504,49.439],[8.497,49.441],[8.491,49.445],[8.478,49.445],[8.472,49.445],[8.458,49.446],[8.453,49.447],[8.446,49.45],[8.44,49.455],[8.44,49.46],[8.451,49.464],[8.457,49.467],[8.462,49.475],[8.457,49.479],[8.451,49.483],[8.44,49.496],[8.438,49.502],[8.432,49.514],[8.428,49.522],[8.423,49.528],[8.421,49.534],[8.412,49.548],[8.41,49.554],[8.411,49.561],[8.42,49.572],[8.416,49.583],[8.413,49.587],[8.409,49.592],[8.41,49.594],[8.409,49.595],[8.407,49.601],[8.403,49.606],[8.397,49.61],[8.39,49.614],[8.38,49.623],[8.376,49.629],[8.372,49.638],[8.37,49.646],[8.37,49.661],[8.364,49.665],[8.36,49.67],[8.354,49.682],[8.354,49.688],[8.357,49.693],[8.362,49.7],[8.37,49.703],[8.381,49.707],[8.421,49.716],[8.426,49.717],[8.437,49.725],[8.458,49.738],[8.478,49.752],[8.479,49.756],[8.478,49.76],[8.473,49.765],[8.459,49.765],[8.442,49.762],[8.427,49.763],[8.421,49.768],[8.416,49.775],[8.412,49.783],[8.406,49.799],[8.401,49.804],[8.37,49.826],[8.371,49.835],[8.379,49.85],[8.38,49.852],[8.378,49.856],[8.372,49.86],[8.359,49.864],[8.355,49.866],[8.345,49.872],[8.34,49.879],[8.339,49.889],[8.347,49.911],[8.346,49.918],[8.344,49.925],[8.341,49.938],[8.339,49.945],[8.336,49.952],[8.315,49.973],[8.303,49.981],[8.299,49.983],[8.29,49.989],[8.285,49.99],[8.28,49.995],[8.273,50.001],[8.272,50.004],[8.272,50.007],[8.268,50.012],[8.265,50.015],[8.259,50.02],[8.236,50.028],[8.208,50.034],[8.201,50.034],[8.192,50.035],[8.168,50.032],[8.155,50.028],[8.118,50.02],[8.102,50.016],[8.027,50.001],[8.02,49.999],[8.003,49.993],[7.996,49.988],[7.988,49.987],[7.979,49.984],[7.967,49.98],[7.952,49.978],[7.941,49.978],[7.895,49.973],[7.875,49.974],[7.86,49.985],[7.859,49.989],[7.859,50],[7.854,50.009],[7.849,50.013],[7.844,50.016],[7.831,50.021],[7.817,50.032],[7.802,50.041],[7.788,50.046],[7.775,50.054],[7.774,50.058],[7.775,50.065],[7.775,50.068],[7.776,50.072],[7.774,50.077],[7.769,50.08],[7.758,50.088],[7.734,50.108],[7.727,50.11],[7.724,50.115],[7.726,50.118],[7.735,50.126],[7.737,50.134],[7.728,50.14],[7.725,50.148],[7.711,50.157],[7.702,50.166],[7.697,50.169],[7.69,50.171],[7.68,50.17],[7.67,50.173],[7.664,50.174],[7.648,50.181],[7.647,50.184],[7.649,50.19],[7.648,50.196],[7.645,50.198],[7.644,50.201],[7.627,50.211],[7.621,50.214],[7.618,50.222],[7.613,50.227],[7.604,50.232],[7.59,50.233],[7.585,50.233],[7.577,50.24],[7.58,50.247],[7.586,50.249],[7.591,50.25],[7.604,50.25],[7.618,50.248],[7.619,50.248],[7.636,50.247],[7.638,50.248],[7.646,50.252],[7.648,50.255],[7.649,50.26],[7.647,50.265],[7.634,50.277],[7.631,50.279],[7.628,50.281],[7.62,50.287],[7.614,50.29],[7.597,50.309],[7.595,50.309],[7.595,50.309],[7.594,50.311],[7.594,50.311],[7.593,50.314],[7.589,50.319],[7.592,50.327],[7.592,50.327],[7.594,50.333],[7.596,50.339],[7.605,50.355],[7.61,50.365],[7.615,50.375],[7.616,50.378],[7.619,50.384],[7.62,50.389],[7.616,50.395],[7.609,50.399],[7.594,50.404],[7.574,50.414],[7.554,50.422],[7.539,50.425],[7.528,50.425],[7.522,50.423],[7.518,50.422],[7.51,50.417],[7.502,50.415],[7.489,50.415],[7.478,50.416],[7.464,50.421],[7.458,50.425],[7.451,50.434],[7.445,50.441],[7.441,50.443],[7.436,50.444],[7.428,50.445],[7.418,50.443],[7.404,50.443],[7.393,50.445],[7.387,50.448],[7.379,50.452],[7.356,50.466],[7.352,50.471],[7.337,50.483],[7.325,50.494],[7.31,50.506],[7.299,50.517],[7.296,50.521],[7.292,50.527],[7.288,50.532],[7.285,50.537],[7.271,50.566],[7.267,50.571],[7.258,50.576],[7.235,50.58],[7.224,50.584],[7.214,50.59],[7.212,50.596],[7.214,50.6],[7.216,50.603],[7.216,50.608],[7.215,50.623],[7.214,50.635],[7.215,50.643],[7.212,50.649],[7.209,50.652],[7.207,50.658],[7.203,50.661],[7.198,50.662],[7.195,50.664],[7.184,50.678],[7.179,50.687],[7.173,50.692],[7.166,50.707],[7.161,50.712],[7.154,50.715],[7.134,50.721],[7.127,50.724],[7.122,50.727],[7.12,50.728],[7.113,50.739],[7.107,50.75],[7.105,50.755],[7.101,50.757],[7.09,50.762],[7.09,50.762],[7.088,50.763],[7.088,50.763],[7.066,50.773],[7.059,50.776],[7.057,50.776],[7.046,50.782],[7.037,50.788],[7.034,50.797],[7.034,50.798],[7.035,50.803],[7.034,50.809],[7.029,50.816],[7.027,50.818],[7.023,50.821],[7.021,50.822],[7.012,50.824],[7,50.826],[6.999,50.826],[6.988,50.829],[6.982,50.834],[6.982,50.839],[6.983,50.84],[6.986,50.842],[6.996,50.846],[7.012,50.854],[7.018,50.859],[7.022,50.863],[7.033,50.868],[7.042,50.87],[7.049,50.874],[7.052,50.88],[7.052,50.886],[7.047,50.89],[7.039,50.893],[7.029,50.894],[7.013,50.894],[7.012,50.894],[7.005,50.895],[6.997,50.897],[6.991,50.902],[6.989,50.903],[6.977,50.914],[6.974,50.918],[6.969,50.925],[6.965,50.932],[6.96,50.939],[6.966,50.948],[6.966,50.948],[6.971,50.952],[6.992,50.965],[6.995,50.971],[6.992,50.975],[6.986,50.979],[6.972,50.978],[6.965,50.985],[6.96,50.992],[6.959,50.998],[6.96,51.003],[6.969,51.015],[6.968,51.021],[6.959,51.029],[6.95,51.033],[6.948,51.034],[6.927,51.046],[6.911,51.052],[6.856,51.071],[6.854,51.072],[6.852,51.074],[6.852,51.075],[6.85,51.079],[6.851,51.081],[6.851,51.083],[6.853,51.085],[6.854,51.086],[6.864,51.091],[6.875,51.094],[6.879,51.1],[6.879,51.105],[6.877,51.108],[6.864,51.12],[6.861,51.122],[6.853,51.127],[6.847,51.131],[6.846,51.137],[6.848,51.144],[6.853,51.15],[6.853,51.154],[6.853,51.155],[6.853,51.155],[6.849,51.157],[6.841,51.158],[6.841,51.158],[6.836,51.159],[6.833,51.159],[6.815,51.144],[6.806,51.142],[6.799,51.145],[6.797,51.146],[6.795,51.152],[6.799,51.161],[6.799,51.169],[6.795,51.17],[6.795,51.171],[6.792,51.175],[6.792,51.176],[6.788,51.179],[6.78,51.181],[6.766,51.179],[6.764,51.179],[6.759,51.18],[6.755,51.18],[6.752,51.18],[6.737,51.184],[6.733,51.192],[6.729,51.203],[6.729,51.208],[6.726,51.217],[6.728,51.225],[6.732,51.226],[6.732,51.226],[6.742,51.226],[6.746,51.225],[6.755,51.22],[6.758,51.22],[6.763,51.222],[6.764,51.227],[6.764,51.227],[6.764,51.232],[6.763,51.238],[6.759,51.243],[6.751,51.247],[6.75,51.247],[6.746,51.252],[6.722,51.259],[6.716,51.261],[6.707,51.267],[6.705,51.271],[6.705,51.281],[6.712,51.286],[6.714,51.287],[6.731,51.303],[6.732,51.309],[6.732,51.316],[6.729,51.32],[6.722,51.327],[6.706,51.334],[6.664,51.345],[6.66,51.346],[6.656,51.351],[6.662,51.365],[6.664,51.366],[6.67,51.369],[6.68,51.372],[6.705,51.373],[6.712,51.376],[6.726,51.383],[6.739,51.392],[6.743,51.397],[6.744,51.401],[6.744,51.406],[6.74,51.41],[6.732,51.418],[6.718,51.427],[6.713,51.434],[6.712,51.439],[6.715,51.448],[6.724,51.455],[6.721,51.462],[6.715,51.466],[6.69,51.475],[6.686,51.481],[6.688,51.486],[6.702,51.494],[6.715,51.498],[6.723,51.508],[6.717,51.514],[6.713,51.52],[6.709,51.521],[6.691,51.528],[6.686,51.533],[6.681,51.54],[6.682,51.546],[6.689,51.553],[6.691,51.556],[6.691,51.56],[6.691,51.565],[6.687,51.571],[6.678,51.576],[6.662,51.578],[6.652,51.577],[6.642,51.574],[6.633,51.57],[6.63,51.569],[6.612,51.568],[6.606,51.57],[6.602,51.573],[6.601,51.583],[6.603,51.59],[6.6,51.596],[6.592,51.612],[6.59,51.619],[6.592,51.625],[6.599,51.63],[6.599,51.634],[6.602,51.636],[6.605,51.642],[6.603,51.652],[6.592,51.657],[6.585,51.66],[6.566,51.659],[6.56,51.659],[6.543,51.66],[6.523,51.662],[6.499,51.662],[6.486,51.667],[6.48,51.671],[6.477,51.675],[6.476,51.68],[6.475,51.687],[6.473,51.691],[6.468,51.697],[6.463,51.702],[6.461,51.703],[6.454,51.706],[6.443,51.708],[6.433,51.71],[6.429,51.71],[6.418,51.713],[6.411,51.719],[6.412,51.724],[6.418,51.731],[6.424,51.738],[6.422,51.747],[6.418,51.752],[6.41,51.755],[6.4,51.756],[6.391,51.756],[6.35,51.756],[6.335,51.767],[6.331,51.775],[6.327,51.784],[6.316,51.798],[6.306,51.806],[6.282,51.819],[6.252,51.827],[6.223,51.83],[6.183,51.839],[6.166,51.843],[6.163,51.844],[6.162,51.845],[6.156,51.846],[6.15,51.847],[6.148,51.848],[6.148,51.849],[6.146,51.849],[6.143,51.849],[6.141,51.849],[6.14,51.849],[6.134,51.85],[6.132,51.85],[6.131,51.85],[6.119,51.85],[6.115,51.85],[6.111,51.849],[6.107,51.85],[6.106,51.85],[6.102,51.851],[6.101,51.851],[6.099,51.852],[6.098,51.853],[6.095,51.853],[6.093,51.854],[6.092,51.854],[6.093,51.855],[6.093,51.856],[6.093,51.857],[6.091,51.858],[6.09,51.858],[6.089,51.858],[6.089,51.857],[6.088,51.857],[6.086,51.858],[6.086,51.858],[6.085,51.858],[6.084,51.859],[6.083,51.86],[6.079,51.862],[6.079,51.862],[6.076,51.862],[6.07,51.866],[6.067,51.867],[6.062,51.869],[6.058,51.87],[6.032,51.881],[6.024,51.892],[6.022,51.894],[6.022,51.896],[6.02,51.898],[6.017,51.9],[6.014,51.901],[6.012,51.902],[6.008,51.903],[6.002,51.905],[5.993,51.908],[5.99,51.91],[5.984,51.915],[5.978,51.921],[5.976,51.923],[5.968,51.928],[5.965,51.931],[5.963,51.932],[5.961,51.935],[5.96,51.939],[5.959,51.942],[5.958,51.944],[5.957,51.946],[5.954,51.948],[5.949,51.951],[5.942,51.954],[5.94,51.955],[5.938,51.956],[5.936,51.958],[5.934,51.96],[5.933,51.965],[5.932,51.966],[5.93,51.967],[5.928,51.968],[5.926,51.969],[5.923,51.97],[5.92,51.97],[5.917,51.971],[5.915,51.972],[5.913,51.973],[5.91,51.974],[5.907,51.975],[5.907,51.974],[5.904,51.975],[5.904,51.975],[5.9,51.98],[5.893,51.983],[5.889,51.983],[5.886,51.983],[5.883,51.983],[5.88,51.982],[5.875,51.981],[5.874,51.981],[5.872,51.98],[5.873,51.979],[5.872,51.978],[5.871,51.977],[5.869,51.975],[5.867,51.973],[5.866,51.973],[5.859,51.968],[5.858,51.968],[5.857,51.968],[5.855,51.968],[5.853,51.969],[5.853,51.969],[5.851,51.97],[5.843,51.972],[5.84,51.973],[5.836,51.973],[5.833,51.973],[5.83,51.973],[5.827,51.972],[5.825,51.972],[5.813,51.965],[5.81,51.964],[5.808,51.963],[5.801,51.962],[5.797,51.962],[5.793,51.961],[5.787,51.96],[5.785,51.959],[5.772,51.96],[5.771,51.96],[5.763,51.963],[5.757,51.965],[5.745,51.971],[5.74,51.971],[5.737,51.971],[5.731,51.969],[5.723,51.963],[5.72,51.963],[5.718,51.963],[5.714,51.962],[5.711,51.962],[5.705,51.962],[5.704,51.961],[5.702,51.961],[5.7,51.961],[5.694,51.96],[5.691,51.959],[5.69,51.959],[5.687,51.959],[5.684,51.959],[5.681,51.958],[5.676,51.956],[5.673,51.954],[5.669,51.952],[5.664,51.952],[5.656,51.953],[5.654,51.953],[5.652,51.953],[5.649,51.953],[5.646,51.952],[5.643,51.949],[5.642,51.948],[5.641,51.947],[5.64,51.947],[5.638,51.945],[5.635,51.943],[5.633,51.942],[5.63,51.942],[5.607,51.944],[5.603,51.945],[5.596,51.949],[5.593,51.95],[5.591,51.951],[5.585,51.951],[5.572,51.954],[5.57,51.954],[5.563,51.955],[5.56,51.956],[5.557,51.957],[5.558,51.958],[5.558,51.959],[5.555,51.961],[5.555,51.96],[5.555,51.959],[5.554,51.959],[5.552,51.96],[5.55,51.961],[5.547,51.963],[5.545,51.966],[5.541,51.966],[5.54,51.966],[5.529,51.969],[5.519,51.971],[5.509,51.973],[5.506,51.974],[5.504,51.975],[5.5,51.977],[5.497,51.979],[5.49,51.981],[5.486,51.983],[5.484,51.983],[5.482,51.983],[5.474,51.984],[5.471,51.984],[5.467,51.984],[5.458,51.985],[5.454,51.985],[5.451,51.986],[5.448,51.987],[5.445,51.987],[5.442,51.988],[5.44,51.988],[5.437,51.987],[5.435,51.987],[5.432,51.987],[5.433,51.985],[5.43,51.984],[5.429,51.985],[5.428,51.985],[5.426,51.984],[5.426,51.983],[5.425,51.982],[5.424,51.982],[5.421,51.98],[5.42,51.98],[5.414,51.978],[5.412,51.977],[5.41,51.977],[5.407,51.977],[5.405,51.976],[5.404,51.976],[5.401,51.975],[5.399,51.975],[5.397,51.974],[5.396,51.974],[5.394,51.974],[5.393,51.974],[5.392,51.973],[5.392,51.973],[5.393,51.972],[5.386,51.97],[5.383,51.97],[5.38,51.97],[5.375,51.97],[5.372,51.971],[5.37,51.971],[5.364,51.972],[5.362,51.972],[5.345,51.968],[5.34,51.963],[5.336,51.961],[5.336,51.96],[5.334,51.959],[5.332,51.958],[5.328,51.957],[5.324,51.956],[5.322,51.956],[5.319,51.956],[5.316,51.957],[5.314,51.958],[5.311,51.959],[5.308,51.961],[5.304,51.962],[5.301,51.963],[5.297,51.964],[5.292,51.964],[5.288,51.964],[5.284,51.964],[5.278,51.965],[5.274,51.966],[5.271,51.967],[5.266,51.968],[5.263,51.97],[5.26,51.971],[5.257,51.973],[5.255,51.974],[5.248,51.979],[5.244,51.981],[5.24,51.981],[5.237,51.981],[5.231,51.979],[5.226,51.973],[5.223,51.969],[5.22,51.966],[5.218,51.964],[5.215,51.963],[5.212,51.961],[5.208,51.961],[5.205,51.961],[5.201,51.961],[5.198,51.962],[5.195,51.963],[5.19,51.965],[5.187,51.966],[5.179,51.969],[5.174,51.971],[5.166,51.972],[5.163,51.972],[5.158,51.972],[5.156,51.973],[5.155,51.973],[5.151,51.975],[5.151,51.975],[5.149,51.975],[5.146,51.975],[5.145,51.977],[5.143,51.98],[5.135,51.988],[5.133,51.991],[5.13,51.993],[5.126,51.996],[5.12,51.998],[5.116,51.999],[5.109,52.001],[5.105,52.002],[5.101,52.002],[5.097,52.002],[5.094,52.001],[5.091,52.001],[5.087,51.999],[5.083,51.998],[5.082,51.998],[5.077,51.996],[5.074,51.995],[5.073,51.993],[5.07,51.992],[5.067,51.992],[5.065,51.991],[5.064,51.989],[5.064,51.988],[5.063,51.986],[5.062,51.986],[5.06,51.985],[5.059,51.985],[5.058,51.986],[5.058,51.987],[5.055,51.986],[5.054,51.985],[5.05,51.983],[5.048,51.982],[5.045,51.98],[5.042,51.978],[5.042,51.978],[5.04,51.976],[5.04,51.974],[5.039,51.972],[5.037,51.971],[5.035,51.969],[5.032,51.968],[5.03,51.967],[5.027,51.967],[5.025,51.967],[5.022,51.968],[5.019,51.968],[5.017,51.97],[5.015,51.971],[5.012,51.973],[5.009,51.974],[5.007,51.976],[5.004,51.977],[5.001,51.977],[4.999,51.976],[5.003,51.977],[4.999,51.977],[4.995,51.977],[4.99,51.975],[4.986,51.974],[4.985,51.973],[4.981,51.969],[4.973,51.962],[4.968,51.96],[4.964,51.96],[4.96,51.96],[4.956,51.961],[4.952,51.963],[4.95,51.963],[4.947,51.962],[4.945,51.963],[4.944,51.963],[4.941,51.963],[4.939,51.962],[4.936,51.96],[4.935,51.959],[4.931,51.958],[4.929,51.957],[4.928,51.956],[4.927,51.956],[4.927,51.954],[4.926,51.953],[4.925,51.953],[4.922,51.95],[4.92,51.948],[4.916,51.944],[4.914,51.944],[4.909,51.943],[4.902,51.942],[4.893,51.942],[4.889,51.941],[4.882,51.94],[4.878,51.939],[4.873,51.939],[4.868,51.939],[4.866,51.94],[4.862,51.939],[4.859,51.94],[4.853,51.941],[4.851,51.941],[4.846,51.94],[4.838,51.939],[4.835,51.938],[4.833,51.937],[4.83,51.934],[4.824,51.931],[4.819,51.927],[4.775,51.915],[4.773,51.915],[4.771,51.915],[4.769,51.915],[4.766,51.914],[4.761,51.911],[4.759,51.911],[4.733,51.904],[4.732,51.903],[4.731,51.903],[4.727,51.901],[4.726,51.9],[4.723,51.899],[4.72,51.898],[4.716,51.898],[4.714,51.898],[4.704,51.899],[4.701,51.899],[4.698,51.899],[4.696,51.898],[4.693,51.897],[4.67,51.888],[4.658,51.888],[4.656,51.888],[4.653,51.888],[4.649,51.888],[4.646,51.889],[4.643,51.889],[4.64,51.889],[4.639,51.889],[4.635,51.889],[4.633,51.889],[4.631,51.888],[4.629,51.889],[4.628,51.888],[4.622,51.888],[4.617,51.888],[4.615,51.889],[4.614,51.89],[4.608,51.89],[4.604,51.891],[4.604,51.891],[4.599,51.891],[4.596,51.892],[4.593,51.893],[4.59,51.894],[4.589,51.894],[4.588,51.895],[4.585,51.897],[4.583,51.899],[4.581,51.9],[4.579,51.901],[4.576,51.901],[4.576,51.9],[4.573,51.9],[4.572,51.902],[4.57,51.901],[4.568,51.901],[4.566,51.901],[4.561,51.906],[4.568,51.91],[4.57,51.912],[4.572,51.913],[4.577,51.915],[4.58,51.918],[4.579,51.919],[4.579,51.921],[4.58,51.922],[4.581,51.922],[4.584,51.922],[4.587,51.923],[4.588,51.923],[4.589,51.924],[4.591,51.925],[4.593,51.926],[4.596,51.927],[4.6,51.928],[4.601,51.928],[4.606,51.928],[4.608,51.927],[4.609,51.927],[4.611,51.928],[4.611,51.928],[4.611,51.93],[4.611,51.931],[4.611,51.932],[4.616,51.934],[4.617,51.934],[4.619,51.937],[4.62,51.938],[4.621,51.938],[4.622,51.938],[4.624,51.938],[4.628,51.938],[4.631,51.938],[4.631,51.938],[4.633,51.942],[4.634,51.944],[4.635,51.947],[4.636,51.951],[4.637,51.952],[4.638,51.953],[4.64,51.954],[4.642,51.955],[4.642,51.955],[4.642,51.956],[4.64,51.959],[4.637,51.961],[4.635,51.962],[4.632,51.965],[4.633,51.969],[4.638,51.972],[4.642,51.973],[4.645,51.973],[4.648,51.974],[4.649,51.975],[4.653,51.977],[4.654,51.978],[4.658,51.978],[4.66,51.979],[4.664,51.98],[4.668,51.981],[4.668,51.982],[4.667,51.982],[4.668,51.983],[4.668,51.984],[4.67,51.986],[4.671,51.987],[4.674,51.989],[4.676,51.99],[4.678,51.992],[4.679,51.993],[4.683,51.995],[4.685,51.996],[4.687,51.998],[4.689,51.998],[4.69,51.999],[4.692,51.999],[4.693,52.004],[4.692,52.006],[4.691,52.008],[4.689,52.009],[4.687,52.011],[4.685,52.013],[4.683,52.016],[4.681,52.021],[4.677,52.022],[4.674,52.023],[4.672,52.023],[4.67,52.024],[4.669,52.026],[4.665,52.028],[4.661,52.032],[4.66,52.037],[4.66,52.041],[4.662,52.049],[4.664,52.059],[4.66,52.064],[4.659,52.07],[4.66,52.075],[4.661,52.082],[4.662,52.084],[4.662,52.087],[4.663,52.089],[4.663,52.091],[4.664,52.096],[4.665,52.1],[4.668,52.106],[4.671,52.111],[4.672,52.113],[4.673,52.115],[4.675,52.119],[4.673,52.12],[4.669,52.121],[4.668,52.121],[4.667,52.122],[4.665,52.124],[4.663,52.128],[4.664,52.131],[4.664,52.136],[4.663,52.139],[4.663,52.14],[4.662,52.141],[4.659,52.142],[4.657,52.142],[4.653,52.143],[4.651,52.143],[4.649,52.143],[4.647,52.143],[4.636,52.14],[4.632,52.14],[4.63,52.139],[4.627,52.138],[4.626,52.137],[4.623,52.135],[4.622,52.134],[4.621,52.132],[4.618,52.131],[4.615,52.13],[4.612,52.13],[4.599,52.132],[4.595,52.132],[4.591,52.132],[4.588,52.13],[4.584,52.129],[4.581,52.129],[4.572,52.129],[4.566,52.13],[4.561,52.132],[4.558,52.134],[4.553,52.137],[4.548,52.139],[4.543,52.141],[4.537,52.141],[4.534,52.142],[4.532,52.142],[4.53,52.143],[4.529,52.144],[4.526,52.145],[4.524,52.147],[4.522,52.154],[4.521,52.154],[4.52,52.155],[4.518,52.156],[4.513,52.157],[4.512,52.157],[4.511,52.157],[4.509,52.157],[4.504,52.157],[4.505,52.158],[4.505,52.159],[4.506,52.161],[4.506,52.161],[4.505,52.162],[4.504,52.162],[4.503,52.163],[4.5,52.163],[4.499,52.164],[4.494,52.164],[4.493,52.164],[4.492,52.164],[4.491,52.164],[4.49,52.164],[4.487,52.165],[4.485,52.164],[4.483,52.163],[4.481,52.161],[4.479,52.159],[4.476,52.159],[4.474,52.158],[4.472,52.157],[4.47,52.155],[4.468,52.154],[4.465,52.152],[4.463,52.153],[4.46,52.154],[4.457,52.156],[4.455,52.158],[4.45,52.161],[4.449,52.162],[4.448,52.163],[4.447,52.165],[4.447,52.167],[4.447,52.17],[4.447,52.171],[4.448,52.172],[4.449,52.173],[4.449,52.178],[4.447,52.179],[4.444,52.179],[4.441,52.18],[4.436,52.181],[4.434,52.183],[4.43,52.187],[4.427,52.189],[4.427,52.191],[4.426,52.192],[4.427,52.194],[4.428,52.194],[4.429,52.195],[4.431,52.196],[4.43,52.197],[4.421,52.203],[4.418,52.204],[4.409,52.207]],[[9.725,47.495],[9.708,47.501],[9.692,47.513],[9.654,47.521],[9.581,47.521],[9.521,47.526],[9.492,47.527],[9.461,47.542],[9.42,47.559],[9.397,47.581],[9.347,47.615],[9.271,47.646],[9.243,47.652],[9.21,47.66],[9.192,47.664],[9.173,47.67],[9.156,47.671],[9.141,47.67],[9.114,47.674],[9.082,47.682],[9.055,47.685],[9.021,47.687],[8.989,47.68],[8.965,47.668],[8.94,47.659],[8.922,47.655],[8.91,47.654],[8.897,47.654],[8.88,47.657],[8.858,47.663],[8.846,47.669],[8.835,47.677],[8.823,47.679],[8.814,47.68],[8.803,47.679],[8.788,47.681],[8.775,47.686],[8.764,47.691],[8.746,47.694],[8.724,47.694],[8.712,47.694],[8.702,47.696],[8.694,47.697],[8.686,47.694],[8.674,47.69],[8.67,47.689],[8.664,47.692],[8.654,47.699],[8.643,47.702],[8.632,47.702],[8.626,47.699],[8.624,47.692],[8.623,47.688],[8.617,47.684],[8.614,47.68],[8.613,47.672],[8.617,47.666],[8.623,47.658],[8.626,47.651],[8.627,47.646],[8.623,47.642],[8.615,47.641],[8.61,47.644],[8.609,47.648],[8.612,47.652],[8.611,47.655],[8.607,47.655],[8.602,47.652],[8.598,47.645],[8.598,47.64],[8.601,47.631],[8.604,47.626],[8.605,47.619],[8.603,47.611],[8.598,47.605],[8.593,47.599],[8.584,47.595],[8.579,47.591],[8.578,47.587],[8.575,47.581],[8.569,47.576],[8.568,47.573],[8.567,47.568],[8.565,47.563],[8.56,47.559],[8.555,47.56],[8.546,47.571],[8.54,47.575],[8.526,47.58],[8.521,47.582],[8.513,47.584],[8.501,47.586],[8.486,47.583],[8.473,47.581],[8.457,47.578],[8.447,47.577],[8.439,47.575],[8.433,47.574],[8.423,47.575],[8.41,47.579],[8.403,47.582],[8.396,47.581],[8.389,47.577],[8.383,47.573],[8.375,47.572],[8.363,47.573],[8.351,47.574],[8.338,47.576],[8.326,47.58],[8.321,47.586],[8.311,47.593],[8.304,47.595],[8.3,47.598],[8.298,47.602],[8.297,47.609],[8.295,47.612],[8.288,47.615],[8.275,47.616],[8.27,47.615],[8.263,47.617],[8.258,47.622],[8.254,47.623],[8.248,47.62],[8.236,47.617],[8.229,47.615],[8.225,47.617],[8.22,47.624],[8.213,47.628],[8.206,47.628],[8.202,47.624],[8.197,47.621],[8.189,47.614],[8.183,47.61],[8.176,47.606],[8.162,47.6],[8.148,47.598],[8.14,47.595],[8.135,47.592],[8.126,47.588],[8.114,47.587],[8.108,47.586],[8.105,47.583],[8.102,47.578],[8.1,47.573],[8.098,47.568],[8.095,47.565],[8.089,47.563],[8.082,47.565],[8.076,47.567],[8.069,47.569],[8.061,47.57],[8.057,47.568],[8.052,47.563],[8.048,47.561],[8.041,47.559],[8.033,47.557],[8.022,47.556],[8.012,47.555],[8.004,47.557],[7.998,47.56],[7.987,47.561],[7.969,47.56],[7.959,47.56],[7.954,47.559],[7.951,47.555],[7.946,47.551],[7.939,47.55],[7.93,47.551],[7.921,47.555],[7.915,47.558],[7.912,47.563],[7.911,47.572],[7.908,47.581],[7.903,47.586],[7.895,47.59],[7.882,47.592],[7.871,47.591],[7.857,47.589],[7.845,47.587],[7.837,47.589],[7.829,47.589],[7.821,47.589],[7.816,47.587],[7.814,47.584],[7.812,47.576],[7.807,47.572],[7.8,47.566],[7.792,47.561],[7.782,47.559],[7.765,47.555],[7.749,47.554],[7.736,47.551],[7.733,47.55],[7.731,47.549],[7.728,47.547],[7.727,47.545]],[[9.084,45.812],[9.075,45.814],[9.066,45.817],[9.061,45.82],[9.061,45.825],[9.063,45.83],[9.068,45.837],[9.069,45.842],[9.071,45.849],[9.072,45.852],[9.081,45.856],[9.086,45.859],[9.087,45.863],[9.09,45.866],[9.095,45.87],[9.105,45.875],[9.115,45.879],[9.122,45.882],[9.129,45.888],[9.132,45.891],[9.133,45.894],[9.132,45.899],[9.129,45.904],[9.126,45.908],[9.124,45.912],[9.125,45.918],[9.125,45.928],[9.123,45.935],[9.121,45.941],[9.121,45.947],[9.122,45.953],[9.129,45.959],[9.139,45.965],[9.154,45.971],[9.165,45.975],[9.177,45.978],[9.182,45.979],[9.187,45.979],[9.191,45.982],[9.196,45.986],[9.201,45.988],[9.205,45.99],[9.211,45.991],[9.217,45.992],[9.222,45.995],[9.226,45.998],[9.227,46.004],[9.228,46.017],[9.23,46.025],[9.229,46.032],[9.231,46.039],[9.231,46.042],[9.234,46.045],[9.238,46.047],[9.241,46.048],[9.245,46.051],[9.248,46.058],[9.251,46.061],[9.256,46.068],[9.261,46.071],[9.267,46.077],[9.268,46.082],[9.269,46.09],[9.269,46.093],[9.268,46.11],[9.268,46.116],[9.275,46.131],[9.28,46.139],[9.308,46.154],[9.319,46.163],[9.332,46.169],[9.349,46.176],[9.368,46.178],[9.38,46.179],[9.396,46.176],[9.405,46.171],[9.414,46.167],[9.432,46.177],[9.442,46.187],[9.444,46.203],[9.442,46.221],[9.435,46.233],[9.419,46.251],[9.412,46.262],[9.405,46.279],[9.4,46.296],[9.4,46.308],[9.395,46.315],[9.391,46.326],[9.388,46.331],[9.368,46.335],[9.352,46.35],[9.35,46.361],[9.352,46.376],[9.348,46.405],[9.344,46.417],[9.335,46.439],[9.329,46.462],[9.326,46.482],[9.324,46.503],[9.324,46.529],[9.327,46.543],[9.335,46.547],[9.35,46.552],[9.38,46.556],[9.398,46.561],[9.411,46.564],[9.43,46.572],[9.443,46.601],[9.454,46.624],[9.456,46.649],[9.457,46.669],[9.46,46.695],[9.46,46.714],[9.452,46.731],[9.439,46.756],[9.433,46.782],[9.427,46.793],[9.424,46.807],[9.433,46.823],[9.447,46.831],[9.464,46.837],[9.492,46.842],[9.508,46.848],[9.529,46.849]],[[9.086,45.812],[9.08,45.803],[9.085,45.793],[9.097,45.777],[9.116,45.757],[9.129,45.742],[9.153,45.724],[9.176,45.704],[9.187,45.692],[9.191,45.678],[9.198,45.654],[9.198,45.636],[9.197,45.618],[9.191,45.601],[9.185,45.58],[9.184,45.562],[9.183,45.535],[9.18,45.507],[9.18,45.488],[9.181,45.478],[9.188,45.464]],[[9.254,45.479],[9.257,45.472],[9.255,45.466],[9.258,45.459],[9.266,45.455],[9.268,45.446],[9.273,45.438],[9.276,45.432],[9.288,45.427],[9.298,45.42],[9.307,45.403],[9.314,45.388],[9.328,45.375],[9.334,45.371],[9.347,45.351],[9.37,45.323],[9.393,45.302],[9.39,45.297],[9.403,45.286],[9.403,45.282],[9.406,45.279],[9.409,45.27],[9.416,45.266],[9.415,45.261],[9.418,45.25],[9.423,45.246],[9.421,45.24],[9.425,45.238],[9.43,45.243],[9.443,45.24],[9.447,45.234],[9.453,45.232],[9.456,45.226],[9.46,45.223],[9.466,45.212],[9.482,45.2],[9.502,45.192],[9.517,45.191],[9.52,45.187],[9.526,45.185],[9.526,45.181],[9.531,45.179],[9.547,45.153],[9.538,45.13],[9.545,45.13],[9.55,45.127],[9.556,45.118],[9.562,45.107],[9.573,45.1],[9.584,45.101],[9.6,45.104],[9.61,45.109],[9.614,45.117],[9.614,45.13],[9.618,45.134],[9.629,45.124],[9.632,45.116],[9.632,45.105],[9.625,45.09],[9.63,45.083],[9.64,45.08],[9.655,45.08],[9.668,45.078],[9.681,45.077],[9.699,45.069],[9.709,45.066],[9.717,45.064],[9.737,45.074],[9.744,45.082],[9.745,45.086],[9.751,45.091],[9.752,45.095],[9.748,45.101],[9.742,45.103],[9.738,45.107],[9.741,45.114],[9.752,45.113],[9.762,45.111],[9.776,45.09],[9.789,45.086],[9.794,45.082],[9.799,45.081],[9.81,45.078],[9.815,45.074],[9.816,45.064],[9.822,45.057],[9.825,45.059],[9.826,45.088],[9.832,45.097],[9.845,45.098],[9.856,45.095],[9.867,45.088],[9.873,45.077],[9.88,45.075],[9.886,45.078],[9.891,45.084],[9.891,45.087],[9.897,45.093],[9.908,45.099],[9.92,45.102],[9.927,45.105],[9.936,45.112],[9.943,45.121],[9.959,45.126],[9.964,45.134],[9.97,45.137],[9.975,45.137],[9.987,45.134],[9.993,45.127],[10.003,45.122],[10.008,45.115],[10.019,45.104],[10.027,45.101],[10.031,45.086],[10.041,45.076],[10.042,45.068],[10.048,45.06],[10.054,45.043],[10.062,45.038],[10.062,45.033],[10.069,45.035],[10.08,45.033],[10.089,45.027],[10.096,45.026],[10.102,45.03],[10.106,45.031],[10.115,45.027],[10.13,45.03],[10.146,45.037],[10.151,45.042],[10.163,45.045],[10.177,45.043],[10.192,45.038],[10.229,45.027],[10.264,45.009],[10.313,44.983],[10.37,44.974],[10.389,44.978],[10.406,44.979],[10.416,44.979],[10.423,44.971],[10.43,44.961],[10.427,44.958],[10.428,44.956],[10.439,44.953],[10.447,44.947],[10.463,44.942],[10.466,44.94],[10.479,44.933],[10.483,44.934],[10.49,44.931],[10.495,44.931],[10.502,44.924],[10.53,44.917],[10.541,44.919],[10.553,44.92],[10.56,44.918],[10.567,44.919],[10.597,44.921],[10.608,44.923],[10.62,44.929],[10.63,44.938],[10.637,44.947],[10.645,44.956],[10.666,44.973],[10.69,44.983],[10.709,44.986],[10.722,44.991],[10.73,44.994],[10.735,44.993],[10.736,44.986],[10.742,44.979],[10.752,44.983],[10.762,44.988],[10.77,44.989],[10.779,44.986],[10.786,44.985],[10.793,44.987],[10.796,44.989],[10.8,44.994],[10.799,44.999],[10.794,45.003],[10.787,45.007],[10.78,45.01],[10.776,45.013],[10.773,45.018],[10.774,45.021],[10.777,45.025],[10.784,45.027],[10.788,45.026],[10.793,45.028],[10.797,45.03],[10.804,45.031],[10.81,45.03],[10.813,45.026],[10.819,45.02],[10.828,45.02],[10.836,45.021],[10.841,45.025],[10.843,45.029],[10.846,45.033],[10.85,45.034],[10.856,45.033],[10.867,45.03],[10.872,45.029],[10.88,45.03],[10.887,45.034],[10.893,45.04],[10.902,45.049],[10.902,45.051],[10.903,45.052],[10.907,45.056],[10.902,45.062],[10.905,45.073],[10.908,45.079],[10.918,45.081],[10.932,45.078],[10.947,45.073],[10.958,45.071],[10.971,45.072],[10.976,45.073],[10.995,45.067],[10.998,45.066],[11.003,45.063],[11.005,45.061],[11.012,45.056],[11.029,45.053],[11.036,45.047],[11.047,45.044],[11.055,45.042],[11.061,45.04],[11.072,45.042],[11.074,45.042],[11.086,45.05],[11.09,45.054],[11.101,45.058],[11.12,45.069],[11.128,45.069],[11.134,45.065],[11.14,45.056],[11.149,45.054],[11.162,45.044],[11.168,45.043],[11.169,45.043],[11.184,45.05],[11.198,45.054],[11.209,45.053],[11.215,45.053],[11.228,45.045],[11.239,45.036],[11.249,45.04],[11.251,45.047],[11.251,45.048],[11.255,45.049],[11.263,45.052],[11.263,45.049],[11.265,45.043],[11.258,45.033],[11.256,45.025],[11.264,45.016],[11.275,45.013],[11.29,45.011],[11.296,45.007],[11.302,45.003],[11.317,44.996],[11.331,44.986],[11.351,44.981],[11.368,44.971],[11.392,44.965],[11.414,44.963],[11.431,44.954],[11.43,44.95],[11.427,44.941],[11.428,44.932],[11.431,44.928],[11.438,44.931],[11.452,44.931],[11.469,44.937],[11.488,44.937],[11.497,44.94],[11.506,44.937],[11.529,44.939],[11.541,44.935],[11.546,44.932],[11.567,44.919],[11.574,44.914],[11.58,44.909],[11.585,44.904],[11.586,44.895],[11.59,44.886],[11.601,44.885],[11.597,44.872],[11.592,44.839],[11.594,44.837],[11.613,44.829],[11.625,44.821],[11.646,44.821],[11.658,44.821],[11.664,44.822],[11.685,44.83],[11.716,44.839],[11.726,44.846],[11.737,44.844],[11.752,44.844],[11.766,44.846],[11.777,44.84],[11.796,44.838],[11.812,44.833],[11.828,44.834],[11.834,44.833],[11.842,44.822],[11.849,44.82],[11.855,44.817],[11.859,44.809],[11.873,44.804],[11.877,44.802],[11.873,44.794],[11.874,44.787],[11.882,44.782],[11.894,44.777],[11.909,44.779],[11.918,44.771],[11.927,44.768],[11.937,44.77],[11.946,44.775],[11.953,44.773],[11.957,44.742],[11.961,44.741],[11.972,44.743],[11.995,44.736],[12,44.736],[12.009,44.734],[12.018,44.734],[12.036,44.728],[12.054,44.72],[12.077,44.717],[12.086,44.714],[12.098,44.699],[12.107,44.695],[12.116,44.695],[12.129,44.698],[12.136,44.696],[12.146,44.698],[12.156,44.696],[12.17,44.695],[12.176,44.687],[12.182,44.664],[12.169,44.657],[12.156,44.651],[12.116,44.654],[12.113,44.641],[12.108,44.63],[12.106,44.622],[12.106,44.607],[12.112,44.578],[12.132,44.563],[12.156,44.537],[12.173,44.517],[12.183,44.494],[12.198,44.469],[12.206,44.45],[12.207,44.44],[12.213,44.424]],[[9.726,47.496],[9.736,47.46],[9.74,47.442],[9.739,47.429],[9.735,47.409],[9.723,47.386],[9.712,47.37],[9.688,47.353],[9.666,47.34],[9.654,47.329],[9.64,47.304],[9.636,47.276],[9.623,47.26],[9.604,47.247],[9.558,47.208],[9.527,47.179],[9.514,47.169],[9.511,47.164],[9.51,47.154],[9.517,47.144],[9.529,47.11],[9.53,47.099],[9.527,47.093],[9.517,47.085],[9.511,47.082],[9.501,47.077],[9.497,47.072],[9.495,47.065],[9.496,47.054],[9.51,47.039],[9.529,47.018],[9.546,47.003],[9.549,46.996],[9.558,46.951],[9.566,46.926],[9.568,46.916],[9.566,46.908],[9.548,46.882],[9.534,46.863],[9.531,46.849]],[[12.064,37.991],[12.06,37.97]],[[12.364,37.791],[12.264,37.891],[12.164,37.991],[12.064,37.991]],[[12.064,37.991],[12.064,38.091],[12.064,38.191],[12.064,38.291],[12.064,38.391],[12.064,38.491],[12.064,38.591],[12.064,38.691],[12.064,38.791],[12.064,38.891],[12.064,38.991],[12.064,39.091],[12.064,39.191],[12.064,39.291],[12.064,39.391],[12.064,39.491],[12.064,39.591],[12.064,39.691],[12.064,39.791],[12.064,39.891],[12.164,39.991],[12.264,40.091],[12.264,40.191],[12.264,40.291],[12.264,40.391],[12.264,40.491],[12.264,40.591],[12.264,40.691],[12.264,40.791],[12.264,40.891],[12.264,40.991],[12.264,41.091],[12.264,41.191],[12.264,41.291],[12.264,41.391],[12.264,41.491],[12.264,41.591],[12.264,41.691],[12.287,41.754]],[[12.212,44.423],[12.364,44.391],[12.464,44.391],[12.564,44.391],[12.664,44.391],[12.764,44.391],[12.864,44.291],[12.964,44.191],[13.064,44.091],[13.164,43.991],[13.264,43.891],[13.364,43.791],[13.464,43.691],[13.564,43.591]],[[12.474,41.89],[12.474,41.89],[12.475,41.888],[12.469,41.882],[12.468,41.877],[12.472,41.868],[12.47,41.863],[12.461,41.858],[12.46,41.855],[12.46,41.854],[12.462,41.85],[12.444,41.834],[12.435,41.829],[12.426,41.831],[12.421,41.828],[12.418,41.822],[12.416,41.818],[12.411,41.809],[12.405,41.805],[12.394,41.805],[12.386,41.802],[12.375,41.804],[12.37,41.805],[12.364,41.807],[12.36,41.806],[12.352,41.806],[12.343,41.809],[12.339,41.806],[12.337,41.799],[12.332,41.798],[12.323,41.799],[12.317,41.799],[12.309,41.8],[12.302,41.797],[12.295,41.791],[12.284,41.789],[12.278,41.782],[12.273,41.773],[12.274,41.771],[12.274,41.768],[12.275,41.764],[12.28,41.758],[12.271,41.753]],[[12.437,37.798],[12.364,37.791]],[[15.164,36.691],[15.064,36.591],[14.964,36.691],[14.864,36.691],[14.764,36.691],[14.664,36.691],[14.564,36.691],[14.464,36.791],[14.364,36.891],[14.264,36.991],[14.164,37.091],[14.064,37.091],[13.964,37.091],[13.864,37.091],[13.764,37.091],[13.664,37.191],[13.564,37.191],[13.464,37.291],[13.364,37.291],[13.264,37.391],[13.164,37.391],[13.064,37.491],[12.964,37.491],[12.864,37.491],[12.764,37.491],[12.664,37.491],[12.564,37.591],[12.464,37.691],[12.364,37.791]],[[13.564,43.591],[13.518,43.615]],[[13.564,43.591],[13.664,43.591],[13.764,43.591],[13.864,43.591],[13.964,43.591],[14.064,43.591],[14.164,43.591],[14.264,43.591],[14.364,43.591],[14.464,43.591],[14.564,43.591],[14.664,43.491],[14.764,43.391],[14.864,43.291],[14.964,43.191],[15.064,43.091],[15.164,42.991],[15.264,42.891],[15.364,42.791],[15.464,42.691],[15.564,42.591],[15.664,42.491],[15.764,42.391],[15.864,42.291],[15.964,42.191],[16.064,42.091],[16.164,41.991],[16.264,41.891],[16.364,41.791],[16.464,41.691],[16.564,41.591],[16.664,41.491],[16.764,41.391],[16.864,41.291],[16.864,41.191]],[[15.164,36.691],[15.137,36.681]],[[15.564,38.091],[15.464,37.991],[15.364,37.891],[15.364,37.791],[15.364,37.691],[15.364,37.591],[15.364,37.491],[15.364,37.391],[15.364,37.291],[15.364,37.191],[15.364,37.091],[15.364,36.991],[15.264,36.891],[15.164,36.791],[15.164,36.691]],[[15.557,38.192],[15.564,38.091]],[[15.564,38.091],[15.643,38.108]],[[16.064,37.891],[15.964,37.891],[15.864,37.891],[15.764,37.891],[15.664,37.891],[15.564,37.991],[15.564,38.091]],[[16.06,37.93],[16.064,37.891]],[[16.264,38.191],[16.164,38.091],[16.164,37.991],[16.064,37.891]],[[16.264,38.191],[16.26,38.24]],[[17.264,38.991],[17.164,38.891],[17.064,38.891],[16.964,38.791],[16.864,38.691],[16.764,38.591],[16.664,38.491],[16.564,38.391],[16.464,38.291],[16.364,38.291],[16.264,38.191]],[[16.864,41.191],[16.964,41.191],[17.064,41.191],[17.164,41.191],[17.264,41.191],[17.364,41.191],[17.464,41.191],[17.564,41.091],[17.664,40.991],[17.764,40.891],[17.864,40.791],[17.964,40.691]],[[16.869,41.128],[16.864,41.191]],[[17.264,38.991],[17.2,39.03]],[[18.364,39.791],[18.264,39.791],[18.164,39.791],[18.064,39.791],[17.964,39.691],[17.864,39.591],[17.764,39.491],[17.664,39.391],[17.564,39.291],[17.464,39.191],[17.364,39.091],[17.264,38.991]],[[17.938,40.635],[17.964,40.691]],[[17.964,40.691],[18.064,40.691],[18.164,40.591],[18.264,40.491],[18.364,40.391],[18.464,40.291],[18.564,40.191]],[[18.364,39.791],[18.36,39.8]],[[18.564,40.191],[18.564,40.091],[18.464,39.991],[18.464,39.891],[18.364,39.791]],[[18.49,40.15],[18.564,40.191]]]},"pair": 50235,"direction": 1,"month": 2,"priority": 1,"expense": 19.445,"duration": 97.448,"length": 4401.933},{"type": "Feature", "geometry": {"type":"MultiLineString","coordinates":[[[4.398,52.198],[4.364,52.191],[4.264,52.191],[4.164,52.191],[4.064,52.191],[3.964,52.191],[3.864,52.191],[3.764,52.191],[3.664,52.191],[3.564,52.191],[3.464,52.191],[3.364,52.191],[3.264,52.191],[3.164,52.191],[3.064,52.191],[2.964,52.191],[2.864,52.191],[2.764,52.191],[2.664,52.191],[2.564,52.191],[2.464,52.191],[2.364,52.191],[2.264,52.191],[2.164,52.191],[2.064,52.191],[1.964,52.191],[1.864,52.191],[1.764,52.191],[1.664,52.091],[1.564,51.991],[1.464,51.991],[1.364,51.891],[1.264,51.791],[1.164,51.691],[1.064,51.691],[0.964,51.591],[0.864,51.491],[0.764,51.491],[0.664,51.491],[0.564,51.491],[0.464,51.491],[-0.083,51.52]],[[7.512,47.669],[7.512,47.672],[7.512,47.675],[7.512,47.677],[7.513,47.678],[7.513,47.68],[7.513,47.682],[7.513,47.684],[7.512,47.685],[7.512,47.687],[7.511,47.688],[7.51,47.689],[7.51,47.691],[7.509,47.693],[7.508,47.695],[7.507,47.697],[7.507,47.698],[7.507,47.698],[7.507,47.7],[7.508,47.701],[7.508,47.702],[7.511,47.707],[7.512,47.708],[7.513,47.708],[7.514,47.709],[7.515,47.709],[7.519,47.712],[7.521,47.714],[7.53,47.72],[7.532,47.722],[7.534,47.723],[7.535,47.724],[7.536,47.725],[7.537,47.726],[7.538,47.727],[7.539,47.73],[7.54,47.731],[7.54,47.733],[7.54,47.734],[7.54,47.738],[7.539,47.74],[7.538,47.741],[7.538,47.742],[7.536,47.744],[7.535,47.746],[7.534,47.748],[7.532,47.751],[7.531,47.752],[7.53,47.754],[7.528,47.758],[7.527,47.76],[7.526,47.76],[7.525,47.762],[7.524,47.764],[7.524,47.765],[7.523,47.767],[7.523,47.767],[7.522,47.77],[7.522,47.771],[7.522,47.773],[7.522,47.774],[7.522,47.775],[7.522,47.775],[7.524,47.776],[7.525,47.777],[7.524,47.778],[7.524,47.78],[7.524,47.781],[7.524,47.782],[7.524,47.784],[7.525,47.786],[7.525,47.788],[7.526,47.789],[7.526,47.789],[7.526,47.79],[7.527,47.791],[7.527,47.791],[7.528,47.792],[7.529,47.794],[7.53,47.795],[7.532,47.799],[7.537,47.804],[7.54,47.808],[7.542,47.811],[7.543,47.814],[7.545,47.817],[7.546,47.82],[7.546,47.822],[7.547,47.823],[7.547,47.824],[7.547,47.825],[7.548,47.825],[7.548,47.827],[7.549,47.828],[7.549,47.829],[7.551,47.832],[7.553,47.836],[7.554,47.837],[7.555,47.84],[7.556,47.842],[7.556,47.845],[7.556,47.846],[7.556,47.848],[7.556,47.849],[7.556,47.85],[7.556,47.853],[7.555,47.857],[7.555,47.857],[7.554,47.861],[7.553,47.865],[7.553,47.869],[7.552,47.871],[7.552,47.871],[7.552,47.872],[7.552,47.875],[7.552,47.877],[7.553,47.879],[7.559,47.89],[7.56,47.892],[7.561,47.895],[7.564,47.9],[7.564,47.901],[7.565,47.902],[7.565,47.903],[7.566,47.904],[7.567,47.909],[7.568,47.911],[7.57,47.916],[7.571,47.919],[7.572,47.92],[7.572,47.921],[7.573,47.923],[7.573,47.925],[7.574,47.926],[7.575,47.928],[7.575,47.929],[7.576,47.931],[7.577,47.932],[7.58,47.935],[7.58,47.936],[7.58,47.936],[7.581,47.937],[7.582,47.938],[7.582,47.939],[7.584,47.94],[7.586,47.942],[7.595,47.949],[7.596,47.95],[7.596,47.951],[7.598,47.952],[7.598,47.952],[7.598,47.953],[7.6,47.954],[7.603,47.957],[7.605,47.959],[7.606,47.96],[7.608,47.964],[7.61,47.967],[7.611,47.969],[7.611,47.97],[7.612,47.972],[7.612,47.973],[7.612,47.976],[7.612,47.978],[7.612,47.98],[7.612,47.982],[7.611,47.984],[7.61,47.986],[7.609,47.988],[7.608,47.99],[7.607,47.991],[7.606,47.993],[7.604,47.995],[7.603,47.996],[7.601,47.998],[7.6,47.999],[7.599,48],[7.599,48],[7.597,48.002],[7.589,48.008],[7.582,48.013],[7.579,48.016],[7.574,48.019],[7.573,48.02],[7.57,48.022],[7.569,48.024],[7.567,48.027],[7.567,48.028],[7.566,48.03],[7.567,48.033],[7.57,48.039],[7.573,48.046],[7.574,48.048],[7.574,48.054],[7.574,48.059],[7.573,48.062],[7.568,48.069],[7.57,48.078],[7.569,48.082],[7.57,48.085],[7.572,48.089],[7.575,48.092],[7.58,48.101],[7.58,48.105],[7.578,48.112],[7.578,48.116],[7.578,48.121],[7.578,48.122],[7.581,48.125],[7.584,48.127],[7.585,48.128],[7.587,48.129],[7.591,48.13],[7.595,48.132],[7.597,48.134],[7.598,48.137],[7.6,48.14],[7.599,48.143],[7.599,48.145],[7.598,48.147],[7.598,48.149],[7.599,48.15],[7.607,48.163],[7.611,48.169],[7.614,48.171],[7.619,48.175],[7.62,48.176],[7.625,48.181],[7.63,48.185],[7.631,48.187],[7.635,48.194],[7.638,48.2],[7.64,48.202],[7.641,48.205],[7.644,48.208],[7.645,48.209],[7.646,48.21],[7.648,48.212],[7.654,48.218],[7.658,48.223],[7.661,48.228],[7.663,48.235],[7.665,48.239],[7.669,48.245],[7.67,48.249],[7.676,48.252],[7.676,48.261],[7.677,48.264],[7.678,48.268],[7.68,48.269],[7.68,48.273],[7.681,48.273],[7.68,48.274],[7.681,48.275],[7.683,48.276],[7.683,48.277],[7.681,48.277],[7.681,48.278],[7.683,48.278],[7.684,48.278],[7.685,48.279],[7.685,48.28],[7.684,48.281],[7.689,48.294],[7.692,48.3],[7.697,48.305],[7.703,48.309],[7.709,48.311],[7.724,48.315],[7.731,48.316],[7.732,48.318],[7.734,48.318],[7.737,48.32],[7.739,48.322],[7.741,48.324],[7.742,48.325],[7.744,48.328],[7.744,48.331],[7.746,48.333],[7.749,48.336],[7.747,48.347],[7.743,48.371],[7.74,48.383],[7.737,48.394],[7.743,48.416],[7.745,48.422],[7.745,48.425],[7.752,48.444],[7.766,48.48],[7.771,48.492],[7.78,48.496],[7.795,48.502],[7.802,48.507],[7.805,48.514],[7.806,48.521],[7.805,48.53],[7.805,48.532],[7.805,48.548],[7.805,48.56],[7.803,48.57],[7.801,48.574],[7.801,48.572],[7.8,48.574],[7.799,48.576],[7.799,48.576],[7.799,48.577],[7.799,48.577],[7.798,48.579],[7.798,48.582],[7.798,48.583],[7.799,48.585],[7.8,48.587],[7.8,48.588],[7.801,48.59],[7.802,48.591],[7.802,48.592],[7.803,48.593],[7.803,48.594],[7.804,48.594],[7.806,48.597],[7.81,48.601],[7.811,48.602],[7.815,48.607],[7.817,48.609],[7.82,48.612],[7.823,48.615],[7.824,48.616],[7.826,48.618],[7.828,48.62],[7.829,48.622],[7.83,48.625],[7.831,48.629],[7.832,48.63],[7.832,48.633],[7.833,48.634],[7.834,48.637],[7.835,48.639],[7.836,48.641],[7.838,48.643],[7.839,48.644],[7.838,48.644],[7.841,48.646],[7.843,48.647],[7.845,48.648],[7.848,48.648],[7.85,48.649],[7.852,48.649],[7.853,48.65],[7.855,48.65],[7.858,48.651],[7.867,48.654],[7.871,48.656],[7.873,48.657],[7.874,48.657],[7.873,48.657],[7.877,48.658],[7.882,48.66],[7.885,48.661],[7.888,48.663],[7.889,48.664],[7.889,48.665],[7.89,48.666],[7.891,48.667],[7.895,48.669],[7.898,48.672],[7.899,48.673],[7.899,48.674],[7.9,48.676],[7.9,48.677],[7.902,48.679],[7.903,48.681],[7.903,48.681],[7.905,48.683],[7.905,48.683],[7.909,48.686],[7.911,48.688],[7.912,48.688],[7.913,48.688],[7.913,48.689],[7.914,48.689],[7.915,48.689],[7.915,48.69],[7.918,48.691],[7.923,48.694],[7.926,48.696],[7.927,48.697],[7.928,48.697],[7.931,48.698],[7.933,48.699],[7.935,48.7],[7.938,48.702],[7.94,48.703],[7.942,48.706],[7.951,48.713],[7.952,48.713],[7.952,48.714],[7.952,48.714],[7.955,48.716],[7.96,48.72],[7.963,48.723],[7.965,48.726],[7.965,48.727],[7.966,48.728],[7.966,48.731],[7.965,48.737],[7.965,48.741],[7.964,48.744],[7.964,48.746],[7.964,48.746],[7.964,48.746],[7.965,48.749],[7.966,48.751],[7.966,48.753],[7.967,48.755],[7.969,48.758],[7.971,48.759],[7.973,48.76],[7.975,48.76],[7.979,48.761],[7.981,48.761],[7.982,48.761],[7.984,48.761],[7.989,48.76],[7.992,48.76],[7.998,48.759],[8,48.759],[8.003,48.758],[8.006,48.759],[8.01,48.76],[8.014,48.761],[8.018,48.764],[8.021,48.767],[8.022,48.77],[8.022,48.772],[8.024,48.777],[8.024,48.778],[8.024,48.78],[8.024,48.782],[8.025,48.784],[8.025,48.785],[8.027,48.786],[8.029,48.787],[8.03,48.788],[8.03,48.789],[8.032,48.79],[8.035,48.792],[8.036,48.792],[8.038,48.791],[8.042,48.792],[8.046,48.792],[8.047,48.792],[8.051,48.792],[8.054,48.791],[8.055,48.791],[8.056,48.791],[8.058,48.79],[8.062,48.79],[8.065,48.791],[8.068,48.792],[8.069,48.793],[8.069,48.794],[8.069,48.794],[8.069,48.795],[8.069,48.795],[8.07,48.796],[8.071,48.796],[8.073,48.796],[8.074,48.796],[8.076,48.796],[8.077,48.797],[8.08,48.798],[8.081,48.799],[8.086,48.803],[8.091,48.807],[8.095,48.811],[8.097,48.812],[8.098,48.813],[8.101,48.817],[8.102,48.82],[8.103,48.824],[8.103,48.827],[8.103,48.831],[8.104,48.833],[8.105,48.835],[8.106,48.836],[8.106,48.837],[8.111,48.844],[8.111,48.844],[8.11,48.845],[8.11,48.845],[8.11,48.845],[8.109,48.845],[8.109,48.845],[8.109,48.845],[8.11,48.846],[8.11,48.846],[8.11,48.846],[8.11,48.847],[8.11,48.847],[8.11,48.848],[8.112,48.848],[8.113,48.849],[8.114,48.852],[8.114,48.852],[8.117,48.857],[8.119,48.864],[8.124,48.871],[8.125,48.874],[8.126,48.875],[8.127,48.876],[8.127,48.877],[8.133,48.886],[8.137,48.892],[8.137,48.893],[8.139,48.894],[8.139,48.895],[8.14,48.896],[8.142,48.898],[8.142,48.899],[8.143,48.9],[8.144,48.901],[8.15,48.908],[8.156,48.914],[8.158,48.916],[8.158,48.916],[8.159,48.918],[8.163,48.921],[8.167,48.925],[8.172,48.929],[8.175,48.932],[8.177,48.934],[8.178,48.935],[8.179,48.936],[8.182,48.94],[8.184,48.942],[8.183,48.942],[8.184,48.943],[8.186,48.945],[8.189,48.95],[8.19,48.951],[8.191,48.953],[8.194,48.956],[8.195,48.958],[8.197,48.959],[8.201,48.961],[8.208,48.963],[8.213,48.964],[8.214,48.964],[8.215,48.964],[8.218,48.965],[8.221,48.965],[8.221,48.966],[8.222,48.965],[8.224,48.966],[8.232,48.967],[8.232,48.968],[8.249,48.976],[8.261,48.982],[8.267,48.986],[8.27,48.989],[8.272,48.99],[8.279,48.993],[8.284,48.996],[8.29,49.001],[8.297,49.012],[8.3,49.02],[8.305,49.04],[8.306,49.043],[8.307,49.044],[8.316,49.061],[8.327,49.071],[8.334,49.074],[8.339,49.077],[8.344,49.08],[8.35,49.085],[8.355,49.092],[8.356,49.094],[8.359,49.099],[8.367,49.133],[8.37,49.144],[8.371,49.147],[8.371,49.154],[8.368,49.161],[8.367,49.165],[8.37,49.172],[8.375,49.177],[8.377,49.182],[8.384,49.194],[8.386,49.204],[8.386,49.209],[8.385,49.212],[8.384,49.216],[8.385,49.231],[8.394,49.243],[8.4,49.247],[8.409,49.251],[8.418,49.254],[8.438,49.263],[8.449,49.271],[8.449,49.271],[8.453,49.278],[8.458,49.282],[8.46,49.284],[8.463,49.285],[8.483,49.29],[8.488,49.293],[8.49,49.296],[8.49,49.3],[8.488,49.303],[8.484,49.305],[8.47,49.31],[8.466,49.311],[8.459,49.315],[8.452,49.319],[8.449,49.323],[8.452,49.331],[8.454,49.335],[8.459,49.339],[8.469,49.344],[8.475,49.347],[8.481,49.349],[8.489,49.357],[8.492,49.36],[8.497,49.366],[8.5,49.374],[8.502,49.381],[8.502,49.386],[8.502,49.391],[8.498,49.397],[8.496,49.404],[8.495,49.413],[8.503,49.425],[8.508,49.436],[8.504,49.439],[8.497,49.441],[8.491,49.445],[8.478,49.445],[8.472,49.445],[8.458,49.446],[8.453,49.447],[8.446,49.45],[8.44,49.455],[8.44,49.46],[8.451,49.464],[8.457,49.467],[8.462,49.475],[8.457,49.479],[8.451,49.483],[8.44,49.496],[8.438,49.502],[8.432,49.514],[8.428,49.522],[8.423,49.528],[8.421,49.534],[8.412,49.548],[8.41,49.554],[8.411,49.561],[8.42,49.572],[8.416,49.583],[8.413,49.587],[8.409,49.592],[8.41,49.594],[8.409,49.595],[8.407,49.601],[8.403,49.606],[8.397,49.61],[8.39,49.614],[8.38,49.623],[8.376,49.629],[8.372,49.638],[8.37,49.646],[8.37,49.661],[8.364,49.665],[8.36,49.67],[8.354,49.682],[8.354,49.688],[8.357,49.693],[8.362,49.7],[8.37,49.703],[8.381,49.707],[8.421,49.716],[8.426,49.717],[8.437,49.725],[8.458,49.738],[8.478,49.752],[8.479,49.756],[8.478,49.76],[8.473,49.765],[8.459,49.765],[8.442,49.762],[8.427,49.763],[8.421,49.768],[8.416,49.775],[8.412,49.783],[8.406,49.799],[8.401,49.804],[8.37,49.826],[8.371,49.835],[8.379,49.85],[8.38,49.852],[8.378,49.856],[8.372,49.86],[8.359,49.864],[8.355,49.866],[8.345,49.872],[8.34,49.879],[8.339,49.889],[8.347,49.911],[8.346,49.918],[8.344,49.925],[8.341,49.938],[8.339,49.945],[8.336,49.952],[8.315,49.973],[8.303,49.981],[8.299,49.983],[8.29,49.989],[8.285,49.99],[8.28,49.995],[8.273,50.001],[8.272,50.004],[8.272,50.007],[8.268,50.012],[8.265,50.015],[8.259,50.02],[8.236,50.028],[8.208,50.034],[8.201,50.034],[8.192,50.035],[8.168,50.032],[8.155,50.028],[8.118,50.02],[8.102,50.016],[8.027,50.001],[8.02,49.999],[8.003,49.993],[7.996,49.988],[7.988,49.987],[7.979,49.984],[7.967,49.98],[7.952,49.978],[7.941,49.978],[7.895,49.973],[7.875,49.974],[7.86,49.985],[7.859,49.989],[7.859,50],[7.854,50.009],[7.849,50.013],[7.844,50.016],[7.831,50.021],[7.817,50.032],[7.802,50.041],[7.788,50.046],[7.775,50.054],[7.774,50.058],[7.775,50.065],[7.775,50.068],[7.776,50.072],[7.774,50.077],[7.769,50.08],[7.758,50.088],[7.734,50.108],[7.727,50.11],[7.724,50.115],[7.726,50.118],[7.735,50.126],[7.737,50.134],[7.728,50.14],[7.725,50.148],[7.711,50.157],[7.702,50.166],[7.697,50.169],[7.69,50.171],[7.68,50.17],[7.67,50.173],[7.664,50.174],[7.648,50.181],[7.647,50.184],[7.649,50.19],[7.648,50.196],[7.645,50.198],[7.644,50.201],[7.627,50.211],[7.621,50.214],[7.618,50.222],[7.613,50.227],[7.604,50.232],[7.59,50.233],[7.585,50.233],[7.577,50.24],[7.58,50.247],[7.586,50.249],[7.591,50.25],[7.604,50.25],[7.618,50.248],[7.619,50.248],[7.636,50.247],[7.638,50.248],[7.646,50.252],[7.648,50.255],[7.649,50.26],[7.647,50.265],[7.634,50.277],[7.631,50.279],[7.628,50.281],[7.62,50.287],[7.614,50.29],[7.597,50.309],[7.595,50.309],[7.595,50.309],[7.594,50.311],[7.594,50.311],[7.593,50.314],[7.589,50.319],[7.592,50.327],[7.592,50.327],[7.594,50.333],[7.596,50.339],[7.605,50.355],[7.61,50.365],[7.615,50.375],[7.616,50.378],[7.619,50.384],[7.62,50.389],[7.616,50.395],[7.609,50.399],[7.594,50.404],[7.574,50.414],[7.554,50.422],[7.539,50.425],[7.528,50.425],[7.522,50.423],[7.518,50.422],[7.51,50.417],[7.502,50.415],[7.489,50.415],[7.478,50.416],[7.464,50.421],[7.458,50.425],[7.451,50.434],[7.445,50.441],[7.441,50.443],[7.436,50.444],[7.428,50.445],[7.418,50.443],[7.404,50.443],[7.393,50.445],[7.387,50.448],[7.379,50.452],[7.356,50.466],[7.352,50.471],[7.337,50.483],[7.325,50.494],[7.31,50.506],[7.299,50.517],[7.296,50.521],[7.292,50.527],[7.288,50.532],[7.285,50.537],[7.271,50.566],[7.267,50.571],[7.258,50.576],[7.235,50.58],[7.224,50.584],[7.214,50.59],[7.212,50.596],[7.214,50.6],[7.216,50.603],[7.216,50.608],[7.215,50.623],[7.214,50.635],[7.215,50.643],[7.212,50.649],[7.209,50.652],[7.207,50.658],[7.203,50.661],[7.198,50.662],[7.195,50.664],[7.184,50.678],[7.179,50.687],[7.173,50.692],[7.166,50.707],[7.161,50.712],[7.154,50.715],[7.134,50.721],[7.127,50.724],[7.122,50.727],[7.12,50.728],[7.113,50.739],[7.107,50.75],[7.105,50.755],[7.101,50.757],[7.09,50.762],[7.09,50.762],[7.088,50.763],[7.088,50.763],[7.066,50.773],[7.059,50.776],[7.057,50.776],[7.046,50.782],[7.037,50.788],[7.034,50.797],[7.034,50.798],[7.035,50.803],[7.034,50.809],[7.029,50.816],[7.027,50.818],[7.023,50.821],[7.021,50.822],[7.012,50.824],[7,50.826],[6.999,50.826],[6.988,50.829],[6.982,50.834],[6.982,50.839],[6.983,50.84],[6.986,50.842],[6.996,50.846],[7.012,50.854],[7.018,50.859],[7.022,50.863],[7.033,50.868],[7.042,50.87],[7.049,50.874],[7.052,50.88],[7.052,50.886],[7.047,50.89],[7.039,50.893],[7.029,50.894],[7.013,50.894],[7.012,50.894],[7.005,50.895],[6.997,50.897],[6.991,50.902],[6.989,50.903],[6.977,50.914],[6.974,50.918],[6.969,50.925],[6.965,50.932],[6.96,50.939],[6.966,50.948],[6.966,50.948],[6.971,50.952],[6.992,50.965],[6.995,50.971],[6.992,50.975],[6.986,50.979],[6.972,50.978],[6.965,50.985],[6.96,50.992],[6.959,50.998],[6.96,51.003],[6.969,51.015],[6.968,51.021],[6.959,51.029],[6.95,51.033],[6.948,51.034],[6.927,51.046],[6.911,51.052],[6.856,51.071],[6.854,51.072],[6.852,51.074],[6.852,51.075],[6.85,51.079],[6.851,51.081],[6.851,51.083],[6.853,51.085],[6.854,51.086],[6.864,51.091],[6.875,51.094],[6.879,51.1],[6.879,51.105],[6.877,51.108],[6.864,51.12],[6.861,51.122],[6.853,51.127],[6.847,51.131],[6.846,51.137],[6.848,51.144],[6.853,51.15],[6.853,51.154],[6.853,51.155],[6.853,51.155],[6.849,51.157],[6.841,51.158],[6.841,51.158],[6.836,51.159],[6.833,51.159],[6.815,51.144],[6.806,51.142],[6.799,51.145],[6.797,51.146],[6.795,51.152],[6.799,51.161],[6.799,51.169],[6.795,51.17],[6.795,51.171],[6.792,51.175],[6.792,51.176],[6.788,51.179],[6.78,51.181],[6.766,51.179],[6.764,51.179],[6.759,51.18],[6.755,51.18],[6.752,51.18],[6.737,51.184],[6.733,51.192],[6.729,51.203],[6.729,51.208],[6.726,51.217],[6.728,51.225],[6.732,51.226],[6.732,51.226],[6.742,51.226],[6.746,51.225],[6.755,51.22],[6.758,51.22],[6.763,51.222],[6.764,51.227],[6.764,51.227],[6.764,51.232],[6.763,51.238],[6.759,51.243],[6.751,51.247],[6.75,51.247],[6.746,51.252],[6.722,51.259],[6.716,51.261],[6.707,51.267],[6.705,51.271],[6.705,51.281],[6.712,51.286],[6.714,51.287],[6.731,51.303],[6.732,51.309],[6.732,51.316],[6.729,51.32],[6.722,51.327],[6.706,51.334],[6.664,51.345],[6.66,51.346],[6.656,51.351],[6.662,51.365],[6.664,51.366],[6.67,51.369],[6.68,51.372],[6.705,51.373],[6.712,51.376],[6.726,51.383],[6.739,51.392],[6.743,51.397],[6.744,51.401],[6.744,51.406],[6.74,51.41],[6.732,51.418],[6.718,51.427],[6.713,51.434],[6.712,51.439],[6.715,51.448],[6.724,51.455],[6.721,51.462],[6.715,51.466],[6.69,51.475],[6.686,51.481],[6.688,51.486],[6.702,51.494],[6.715,51.498],[6.723,51.508],[6.717,51.514],[6.713,51.52],[6.709,51.521],[6.691,51.528],[6.686,51.533],[6.681,51.54],[6.682,51.546],[6.689,51.553],[6.691,51.556],[6.691,51.56],[6.691,51.565],[6.687,51.571],[6.678,51.576],[6.662,51.578],[6.652,51.577],[6.642,51.574],[6.633,51.57],[6.63,51.569],[6.612,51.568],[6.606,51.57],[6.602,51.573],[6.601,51.583],[6.603,51.59],[6.6,51.596],[6.592,51.612],[6.59,51.619],[6.592,51.625],[6.599,51.63],[6.599,51.634],[6.602,51.636],[6.605,51.642],[6.603,51.652],[6.592,51.657],[6.585,51.66],[6.566,51.659],[6.56,51.659],[6.543,51.66],[6.523,51.662],[6.499,51.662],[6.486,51.667],[6.48,51.671],[6.477,51.675],[6.476,51.68],[6.475,51.687],[6.473,51.691],[6.468,51.697],[6.463,51.702],[6.461,51.703],[6.454,51.706],[6.443,51.708],[6.433,51.71],[6.429,51.71],[6.418,51.713],[6.411,51.719],[6.412,51.724],[6.418,51.731],[6.424,51.738],[6.422,51.747],[6.418,51.752],[6.41,51.755],[6.4,51.756],[6.391,51.756],[6.35,51.756],[6.335,51.767],[6.331,51.775],[6.327,51.784],[6.316,51.798],[6.306,51.806],[6.282,51.819],[6.252,51.827],[6.223,51.83],[6.183,51.839],[6.166,51.843],[6.163,51.844],[6.162,51.845],[6.156,51.846],[6.15,51.847],[6.148,51.848],[6.148,51.849],[6.146,51.849],[6.143,51.849],[6.141,51.849],[6.14,51.849],[6.134,51.85],[6.132,51.85],[6.131,51.85],[6.119,51.85],[6.115,51.85],[6.111,51.849],[6.107,51.85],[6.106,51.85],[6.102,51.851],[6.101,51.851],[6.099,51.852],[6.098,51.853],[6.095,51.853],[6.093,51.854],[6.092,51.854],[6.093,51.855],[6.093,51.856],[6.093,51.857],[6.091,51.858],[6.09,51.858],[6.089,51.858],[6.089,51.857],[6.088,51.857],[6.086,51.858],[6.086,51.858],[6.085,51.858],[6.084,51.859],[6.083,51.86],[6.079,51.862],[6.079,51.862],[6.076,51.862],[6.07,51.866],[6.067,51.867],[6.062,51.869],[6.058,51.87],[6.032,51.881],[6.024,51.892],[6.022,51.894],[6.022,51.896],[6.02,51.898],[6.017,51.9],[6.014,51.901],[6.012,51.902],[6.008,51.903],[6.002,51.905],[5.993,51.908],[5.99,51.91],[5.984,51.915],[5.978,51.921],[5.976,51.923],[5.968,51.928],[5.965,51.931],[5.963,51.932],[5.961,51.935],[5.96,51.939],[5.959,51.942],[5.958,51.944],[5.957,51.946],[5.954,51.948],[5.949,51.951],[5.942,51.954],[5.94,51.955],[5.938,51.956],[5.936,51.958],[5.934,51.96],[5.933,51.965],[5.932,51.966],[5.93,51.967],[5.928,51.968],[5.926,51.969],[5.923,51.97],[5.92,51.97],[5.917,51.971],[5.915,51.972],[5.913,51.973],[5.91,51.974],[5.907,51.975],[5.907,51.974],[5.904,51.975],[5.904,51.975],[5.9,51.98],[5.893,51.983],[5.889,51.983],[5.886,51.983],[5.883,51.983],[5.88,51.982],[5.875,51.981],[5.874,51.981],[5.872,51.98],[5.873,51.979],[5.872,51.978],[5.871,51.977],[5.869,51.975],[5.867,51.973],[5.866,51.973],[5.859,51.968],[5.858,51.968],[5.857,51.968],[5.855,51.968],[5.853,51.969],[5.853,51.969],[5.851,51.97],[5.843,51.972],[5.84,51.973],[5.836,51.973],[5.833,51.973],[5.83,51.973],[5.827,51.972],[5.825,51.972],[5.813,51.965],[5.81,51.964],[5.808,51.963],[5.801,51.962],[5.797,51.962],[5.793,51.961],[5.787,51.96],[5.785,51.959],[5.772,51.96],[5.771,51.96],[5.763,51.963],[5.757,51.965],[5.745,51.971],[5.74,51.971],[5.737,51.971],[5.731,51.969],[5.723,51.963],[5.72,51.963],[5.718,51.963],[5.714,51.962],[5.711,51.962],[5.705,51.962],[5.704,51.961],[5.702,51.961],[5.7,51.961],[5.694,51.96],[5.691,51.959],[5.69,51.959],[5.687,51.959],[5.684,51.959],[5.681,51.958],[5.676,51.956],[5.673,51.954],[5.669,51.952],[5.664,51.952],[5.656,51.953],[5.654,51.953],[5.652,51.953],[5.649,51.953],[5.646,51.952],[5.643,51.949],[5.642,51.948],[5.641,51.947],[5.64,51.947],[5.638,51.945],[5.635,51.943],[5.633,51.942],[5.63,51.942],[5.607,51.944],[5.603,51.945],[5.596,51.949],[5.593,51.95],[5.591,51.951],[5.585,51.951],[5.572,51.954],[5.57,51.954],[5.563,51.955],[5.56,51.956],[5.557,51.957],[5.558,51.958],[5.558,51.959],[5.555,51.961],[5.555,51.96],[5.555,51.959],[5.554,51.959],[5.552,51.96],[5.55,51.961],[5.547,51.963],[5.545,51.966],[5.541,51.966],[5.54,51.966],[5.529,51.969],[5.519,51.971],[5.509,51.973],[5.506,51.974],[5.504,51.975],[5.5,51.977],[5.497,51.979],[5.49,51.981],[5.486,51.983],[5.484,51.983],[5.482,51.983],[5.474,51.984],[5.471,51.984],[5.467,51.984],[5.458,51.985],[5.454,51.985],[5.451,51.986],[5.448,51.987],[5.445,51.987],[5.442,51.988],[5.44,51.988],[5.437,51.987],[5.435,51.987],[5.432,51.987],[5.433,51.985],[5.43,51.984],[5.429,51.985],[5.428,51.985],[5.426,51.984],[5.426,51.983],[5.425,51.982],[5.424,51.982],[5.421,51.98],[5.42,51.98],[5.414,51.978],[5.412,51.977],[5.41,51.977],[5.407,51.977],[5.405,51.976],[5.404,51.976],[5.401,51.975],[5.399,51.975],[5.397,51.974],[5.396,51.974],[5.394,51.974],[5.393,51.974],[5.392,51.973],[5.392,51.973],[5.393,51.972],[5.386,51.97],[5.383,51.97],[5.38,51.97],[5.375,51.97],[5.372,51.971],[5.37,51.971],[5.364,51.972],[5.362,51.972],[5.345,51.968],[5.34,51.963],[5.336,51.961],[5.336,51.96],[5.334,51.959],[5.332,51.958],[5.328,51.957],[5.324,51.956],[5.322,51.956],[5.319,51.956],[5.316,51.957],[5.314,51.958],[5.311,51.959],[5.308,51.961],[5.304,51.962],[5.301,51.963],[5.297,51.964],[5.292,51.964],[5.288,51.964],[5.284,51.964],[5.278,51.965],[5.274,51.966],[5.271,51.967],[5.266,51.968],[5.263,51.97],[5.26,51.971],[5.257,51.973],[5.255,51.974],[5.248,51.979],[5.244,51.981],[5.24,51.981],[5.237,51.981],[5.231,51.979],[5.226,51.973],[5.223,51.969],[5.22,51.966],[5.218,51.964],[5.215,51.963],[5.212,51.961],[5.208,51.961],[5.205,51.961],[5.201,51.961],[5.198,51.962],[5.195,51.963],[5.19,51.965],[5.187,51.966],[5.179,51.969],[5.174,51.971],[5.166,51.972],[5.163,51.972],[5.158,51.972],[5.156,51.973],[5.155,51.973],[5.151,51.975],[5.151,51.975],[5.149,51.975],[5.146,51.975],[5.145,51.977],[5.143,51.98],[5.135,51.988],[5.133,51.991],[5.13,51.993],[5.126,51.996],[5.12,51.998],[5.116,51.999],[5.109,52.001],[5.105,52.002],[5.101,52.002],[5.097,52.002],[5.094,52.001],[5.091,52.001],[5.087,51.999],[5.083,51.998],[5.082,51.998],[5.077,51.996],[5.074,51.995],[5.073,51.993],[5.07,51.992],[5.067,51.992],[5.065,51.991],[5.064,51.989],[5.064,51.988],[5.063,51.986],[5.062,51.986],[5.06,51.985],[5.059,51.985],[5.058,51.986],[5.058,51.987],[5.055,51.986],[5.054,51.985],[5.05,51.983],[5.048,51.982],[5.045,51.98],[5.042,51.978],[5.042,51.978],[5.04,51.976],[5.04,51.974],[5.039,51.972],[5.037,51.971],[5.035,51.969],[5.032,51.968],[5.03,51.967],[5.027,51.967],[5.025,51.967],[5.022,51.968],[5.019,51.968],[5.017,51.97],[5.015,51.971],[5.012,51.973],[5.009,51.974],[5.007,51.976],[5.004,51.977],[5.001,51.977],[4.999,51.976],[5.003,51.977],[4.999,51.977],[4.995,51.977],[4.99,51.975],[4.986,51.974],[4.985,51.973],[4.981,51.969],[4.973,51.962],[4.968,51.96],[4.964,51.96],[4.96,51.96],[4.956,51.961],[4.952,51.963],[4.95,51.963],[4.947,51.962],[4.945,51.963],[4.944,51.963],[4.941,51.963],[4.939,51.962],[4.936,51.96],[4.935,51.959],[4.931,51.958],[4.929,51.957],[4.928,51.956],[4.927,51.956],[4.927,51.954],[4.926,51.953],[4.925,51.953],[4.922,51.95],[4.92,51.948],[4.916,51.944],[4.914,51.944],[4.909,51.943],[4.902,51.942],[4.893,51.942],[4.889,51.941],[4.882,51.94],[4.878,51.939],[4.873,51.939],[4.868,51.939],[4.866,51.94],[4.862,51.939],[4.859,51.94],[4.853,51.941],[4.851,51.941],[4.846,51.94],[4.838,51.939],[4.835,51.938],[4.833,51.937],[4.83,51.934],[4.824,51.931],[4.819,51.927],[4.775,51.915],[4.773,51.915],[4.771,51.915],[4.769,51.915],[4.766,51.914],[4.761,51.911],[4.759,51.911],[4.733,51.904],[4.732,51.903],[4.731,51.903],[4.727,51.901],[4.726,51.9],[4.723,51.899],[4.72,51.898],[4.716,51.898],[4.714,51.898],[4.704,51.899],[4.701,51.899],[4.698,51.899],[4.696,51.898],[4.693,51.897],[4.67,51.888],[4.658,51.888],[4.656,51.888],[4.653,51.888],[4.649,51.888],[4.646,51.889],[4.643,51.889],[4.64,51.889],[4.639,51.889],[4.635,51.889],[4.633,51.889],[4.631,51.888],[4.629,51.889],[4.628,51.888],[4.622,51.888],[4.617,51.888],[4.615,51.889],[4.614,51.89],[4.608,51.89],[4.604,51.891],[4.604,51.891],[4.599,51.891],[4.596,51.892],[4.593,51.893],[4.59,51.894],[4.589,51.894],[4.588,51.895],[4.585,51.897],[4.583,51.899],[4.581,51.9],[4.579,51.901],[4.576,51.901],[4.576,51.9],[4.573,51.9],[4.572,51.902],[4.57,51.901],[4.568,51.901],[4.566,51.901],[4.561,51.906],[4.568,51.91],[4.57,51.912],[4.572,51.913],[4.577,51.915],[4.58,51.918],[4.579,51.919],[4.579,51.921],[4.58,51.922],[4.581,51.922],[4.584,51.922],[4.587,51.923],[4.588,51.923],[4.589,51.924],[4.591,51.925],[4.593,51.926],[4.596,51.927],[4.6,51.928],[4.601,51.928],[4.606,51.928],[4.608,51.927],[4.609,51.927],[4.611,51.928],[4.611,51.928],[4.611,51.93],[4.611,51.931],[4.611,51.932],[4.616,51.934],[4.617,51.934],[4.619,51.937],[4.62,51.938],[4.621,51.938],[4.622,51.938],[4.624,51.938],[4.628,51.938],[4.631,51.938],[4.631,51.938],[4.633,51.942],[4.634,51.944],[4.635,51.947],[4.636,51.951],[4.637,51.952],[4.638,51.953],[4.64,51.954],[4.642,51.955],[4.642,51.955],[4.642,51.956],[4.64,51.959],[4.637,51.961],[4.635,51.962],[4.632,51.965],[4.633,51.969],[4.638,51.972],[4.642,51.973],[4.645,51.973],[4.648,51.974],[4.649,51.975],[4.653,51.977],[4.654,51.978],[4.658,51.978],[4.66,51.979],[4.664,51.98],[4.668,51.981],[4.668,51.982],[4.667,51.982],[4.668,51.983],[4.668,51.984],[4.67,51.986],[4.671,51.987],[4.674,51.989],[4.676,51.99],[4.678,51.992],[4.679,51.993],[4.683,51.995],[4.685,51.996],[4.687,51.998],[4.689,51.998],[4.69,51.999],[4.692,51.999],[4.693,52.004],[4.692,52.006],[4.691,52.008],[4.689,52.009],[4.687,52.011],[4.685,52.013],[4.683,52.016],[4.681,52.021],[4.677,52.022],[4.674,52.023],[4.672,52.023],[4.67,52.024],[4.669,52.026],[4.665,52.028],[4.661,52.032],[4.66,52.037],[4.66,52.041],[4.662,52.049],[4.664,52.059],[4.66,52.064],[4.659,52.07],[4.66,52.075],[4.661,52.082],[4.662,52.084],[4.662,52.087],[4.663,52.089],[4.663,52.091],[4.664,52.096],[4.665,52.1],[4.668,52.106],[4.671,52.111],[4.672,52.113],[4.673,52.115],[4.675,52.119],[4.673,52.12],[4.669,52.121],[4.668,52.121],[4.667,52.122],[4.665,52.124],[4.663,52.128],[4.664,52.131],[4.664,52.136],[4.663,52.139],[4.663,52.14],[4.662,52.141],[4.659,52.142],[4.657,52.142],[4.653,52.143],[4.651,52.143],[4.649,52.143],[4.647,52.143],[4.636,52.14],[4.632,52.14],[4.63,52.139],[4.627,52.138],[4.626,52.137],[4.623,52.135],[4.622,52.134],[4.621,52.132],[4.618,52.131],[4.615,52.13],[4.612,52.13],[4.599,52.132],[4.595,52.132],[4.591,52.132],[4.588,52.13],[4.584,52.129],[4.581,52.129],[4.572,52.129],[4.566,52.13],[4.561,52.132],[4.558,52.134],[4.553,52.137],[4.548,52.139],[4.543,52.141],[4.537,52.141],[4.534,52.142],[4.532,52.142],[4.53,52.143],[4.529,52.144],[4.526,52.145],[4.524,52.147],[4.522,52.154],[4.521,52.154],[4.52,52.155],[4.518,52.156],[4.513,52.157],[4.512,52.157],[4.511,52.157],[4.509,52.157],[4.504,52.157],[4.505,52.158],[4.505,52.159],[4.506,52.161],[4.506,52.161],[4.505,52.162],[4.504,52.162],[4.503,52.163],[4.5,52.163],[4.499,52.164],[4.494,52.164],[4.493,52.164],[4.492,52.164],[4.491,52.164],[4.49,52.164],[4.487,52.165],[4.485,52.164],[4.483,52.163],[4.481,52.161],[4.479,52.159],[4.476,52.159],[4.474,52.158],[4.472,52.157],[4.47,52.155],[4.468,52.154],[4.465,52.152],[4.463,52.153],[4.46,52.154],[4.457,52.156],[4.455,52.158],[4.45,52.161],[4.449,52.162],[4.448,52.163],[4.447,52.165],[4.447,52.167],[4.447,52.17],[4.447,52.171],[4.448,52.172],[4.449,52.173],[4.449,52.178],[4.447,52.179],[4.444,52.179],[4.441,52.18],[4.436,52.181],[4.434,52.183],[4.43,52.187],[4.427,52.189],[4.427,52.191],[4.426,52.192],[4.427,52.194],[4.428,52.194],[4.429,52.195],[4.431,52.196],[4.43,52.197],[4.421,52.203],[4.418,52.204],[4.409,52.207]],[[5.264,43.291],[5.164,43.291],[5.064,43.291],[4.964,43.291],[4.864,43.291],[4.764,43.291],[4.664,43.291],[4.564,43.391],[4.627,43.687]],[[4.717,44.125],[4.716,44.123],[4.717,44.122],[4.718,44.119],[4.719,44.117],[4.719,44.116],[4.72,44.114],[4.721,44.111],[4.721,44.11],[4.722,44.109],[4.724,44.108],[4.726,44.106],[4.727,44.105],[4.729,44.104],[4.728,44.102],[4.727,44.101],[4.726,44.1],[4.726,44.098],[4.726,44.097],[4.726,44.097],[4.726,44.097],[4.726,44.096],[4.727,44.095],[4.727,44.094],[4.729,44.092],[4.73,44.092],[4.732,44.091],[4.732,44.091],[4.734,44.09],[4.735,44.089],[4.737,44.089],[4.74,44.088],[4.746,44.087],[4.75,44.086],[4.752,44.085],[4.754,44.084],[4.757,44.083],[4.758,44.081],[4.76,44.079],[4.762,44.077],[4.765,44.075],[4.767,44.074],[4.769,44.073],[4.771,44.072],[4.775,44.072],[4.779,44.071],[4.779,44.071],[4.782,44.07],[4.787,44.069],[4.788,44.068],[4.79,44.066],[4.79,44.065],[4.791,44.063],[4.791,44.061],[4.791,44.06],[4.791,44.059],[4.79,44.058],[4.79,44.055],[4.79,44.054],[4.791,44.053],[4.793,44.051],[4.797,44.05],[4.798,44.049],[4.803,44.046],[4.806,44.044],[4.808,44.042],[4.81,44.04],[4.813,44.038],[4.815,44.036],[4.817,44.035],[4.818,44.033],[4.819,44.031],[4.82,44.028],[4.82,44.027],[4.821,44.022],[4.82,44.013],[4.821,44.01],[4.821,44.008],[4.822,44.006],[4.822,44.006],[4.821,44.003],[4.821,44],[4.821,43.999],[4.821,43.995],[4.821,43.992],[4.82,43.988],[4.819,43.982],[4.819,43.977],[4.818,43.976],[4.818,43.974],[4.818,43.972],[4.817,43.969],[4.817,43.966],[4.816,43.965],[4.816,43.964],[4.815,43.963],[4.814,43.962],[4.811,43.96],[4.807,43.959],[4.803,43.957],[4.8,43.956],[4.798,43.954],[4.796,43.953],[4.795,43.953],[4.795,43.952],[4.794,43.951],[4.792,43.949],[4.791,43.947],[4.79,43.946],[4.788,43.944],[4.787,43.943],[4.785,43.942],[4.785,43.942],[4.786,43.941],[4.771,43.938],[4.766,43.937],[4.759,43.936],[4.755,43.935],[4.75,43.934],[4.746,43.932],[4.743,43.929],[4.739,43.926],[4.736,43.923],[4.733,43.919],[4.729,43.915],[4.726,43.911],[4.723,43.909],[4.721,43.907],[4.718,43.906],[4.713,43.904],[4.706,43.902],[4.704,43.902],[4.701,43.9],[4.7,43.9],[4.697,43.898],[4.693,43.894],[4.69,43.89],[4.687,43.887],[4.685,43.886],[4.683,43.885],[4.675,43.883],[4.665,43.88],[4.661,43.879],[4.656,43.877],[4.65,43.874],[4.646,43.872],[4.643,43.871],[4.64,43.87],[4.634,43.87],[4.627,43.869],[4.625,43.868],[4.622,43.866],[4.621,43.865],[4.619,43.863],[4.619,43.861],[4.618,43.858],[4.618,43.853],[4.62,43.849],[4.623,43.843],[4.623,43.843],[4.622,43.843],[4.621,43.842],[4.622,43.841],[4.622,43.839],[4.623,43.836],[4.623,43.834],[4.624,43.833],[4.624,43.832],[4.624,43.83],[4.624,43.83],[4.625,43.828],[4.626,43.827],[4.627,43.826],[4.628,43.825],[4.628,43.825],[4.63,43.824],[4.632,43.823],[4.633,43.823],[4.634,43.823],[4.636,43.822],[4.638,43.821],[4.639,43.821],[4.641,43.819],[4.643,43.817],[4.644,43.816],[4.645,43.815],[4.646,43.814],[4.648,43.813],[4.648,43.811],[4.648,43.81],[4.649,43.809],[4.649,43.807],[4.649,43.806],[4.65,43.805],[4.65,43.805],[4.649,43.804],[4.649,43.804],[4.649,43.802],[4.649,43.801],[4.648,43.8],[4.648,43.799],[4.648,43.8],[4.647,43.8],[4.647,43.801],[4.647,43.801],[4.647,43.8],[4.648,43.798],[4.648,43.796],[4.647,43.795],[4.647,43.793],[4.648,43.791],[4.649,43.789],[4.649,43.788],[4.649,43.785],[4.647,43.782],[4.644,43.778],[4.64,43.776],[4.639,43.775],[4.638,43.774],[4.638,43.774],[4.637,43.773],[4.636,43.772],[4.635,43.772],[4.634,43.771],[4.633,43.77],[4.632,43.769],[4.63,43.767],[4.629,43.767],[4.629,43.767],[4.628,43.767],[4.628,43.767],[4.627,43.766],[4.626,43.766],[4.626,43.766],[4.625,43.765],[4.626,43.765],[4.628,43.764],[4.628,43.758],[4.628,43.756],[4.628,43.756],[4.627,43.755],[4.627,43.755],[4.627,43.754],[4.627,43.753],[4.626,43.753],[4.625,43.746],[4.625,43.745],[4.625,43.744],[4.624,43.743],[4.623,43.742],[4.623,43.742],[4.622,43.741],[4.622,43.74],[4.622,43.74],[4.621,43.739],[4.621,43.739],[4.62,43.736],[4.619,43.734],[4.619,43.733],[4.618,43.733],[4.618,43.733],[4.617,43.732],[4.617,43.731],[4.618,43.728],[4.618,43.727],[4.618,43.727],[4.618,43.725],[4.618,43.725],[4.619,43.725],[4.619,43.725],[4.619,43.724],[4.618,43.724],[4.618,43.723],[4.617,43.722],[4.617,43.721],[4.617,43.72],[4.617,43.72],[4.617,43.719],[4.617,43.717],[4.617,43.717],[4.618,43.717],[4.618,43.716],[4.617,43.715],[4.618,43.715],[4.618,43.714],[4.619,43.712],[4.619,43.71],[4.619,43.708],[4.62,43.707],[4.62,43.706],[4.62,43.705],[4.621,43.704],[4.622,43.702],[4.625,43.699],[4.626,43.699],[4.627,43.697],[4.628,43.695],[4.628,43.694],[4.628,43.694],[4.629,43.694],[4.629,43.694],[4.63,43.691],[4.63,43.69],[4.628,43.688]],[[4.801,44.159],[4.798,44.158],[4.797,44.157],[4.796,44.157],[4.796,44.156],[4.794,44.155],[4.793,44.154],[4.791,44.153],[4.789,44.152],[4.789,44.151],[4.788,44.15],[4.787,44.149],[4.785,44.148],[4.783,44.149],[4.782,44.149],[4.781,44.149],[4.78,44.15],[4.778,44.149],[4.777,44.149],[4.776,44.15],[4.775,44.15],[4.773,44.15],[4.772,44.149],[4.771,44.149],[4.769,44.15],[4.769,44.149],[4.768,44.147],[4.767,44.146],[4.766,44.146],[4.765,44.146],[4.764,44.146],[4.763,44.147],[4.761,44.147],[4.76,44.147],[4.758,44.146],[4.757,44.146],[4.755,44.145],[4.754,44.145],[4.753,44.145],[4.751,44.145],[4.751,44.146],[4.75,44.147],[4.749,44.148],[4.748,44.148],[4.747,44.148],[4.745,44.148],[4.744,44.148],[4.742,44.148],[4.739,44.148],[4.738,44.148],[4.737,44.148],[4.735,44.147],[4.734,44.147],[4.732,44.146],[4.731,44.146],[4.731,44.145],[4.731,44.145],[4.731,44.143],[4.731,44.143],[4.73,44.143],[4.73,44.142],[4.731,44.142],[4.731,44.142],[4.731,44.141],[4.731,44.141],[4.731,44.141],[4.733,44.139],[4.733,44.139],[4.734,44.137],[4.734,44.136],[4.734,44.135],[4.731,44.134],[4.731,44.133],[4.73,44.132],[4.727,44.131],[4.725,44.131],[4.723,44.13],[4.721,44.129],[4.719,44.128],[4.718,44.127],[4.717,44.125]],[[6.002,47.224],[6,47.222],[5.999,47.22],[5.997,47.219],[5.996,47.217],[5.995,47.216],[5.995,47.214],[5.995,47.214],[5.993,47.213],[5.992,47.212],[5.991,47.21],[5.99,47.21],[5.987,47.208],[5.986,47.208],[5.985,47.208],[5.984,47.209],[5.983,47.209],[5.981,47.209],[5.977,47.209],[5.974,47.209],[5.972,47.209],[5.97,47.209],[5.968,47.209],[5.965,47.209],[5.963,47.209],[5.963,47.209],[5.962,47.208],[5.961,47.207],[5.961,47.206],[5.96,47.204],[5.961,47.203],[5.962,47.203],[5.963,47.202],[5.965,47.2],[5.966,47.199],[5.966,47.199],[5.965,47.197],[5.964,47.196],[5.963,47.195],[5.962,47.195],[5.959,47.193],[5.958,47.193],[5.957,47.192],[5.955,47.192],[5.951,47.191],[5.949,47.19],[5.948,47.189],[5.944,47.186],[5.939,47.184],[5.934,47.182],[5.927,47.181],[5.921,47.179],[5.915,47.179],[5.908,47.181],[5.9,47.185],[5.894,47.19],[5.89,47.191],[5.885,47.19],[5.883,47.187],[5.885,47.184],[5.888,47.181],[5.894,47.18],[5.896,47.178],[5.897,47.176],[5.897,47.175],[5.896,47.172],[5.893,47.17],[5.887,47.169],[5.886,47.166],[5.886,47.165],[5.886,47.165],[5.886,47.164],[5.886,47.161],[5.886,47.16],[5.886,47.159],[5.887,47.158],[5.887,47.157],[5.887,47.156],[5.888,47.156],[5.889,47.154],[5.889,47.154],[5.889,47.153],[5.889,47.153],[5.889,47.152],[5.888,47.152],[5.887,47.152],[5.886,47.152],[5.885,47.151],[5.884,47.151],[5.883,47.15],[5.88,47.15],[5.877,47.15],[5.875,47.15],[5.872,47.15],[5.87,47.149],[5.869,47.149],[5.867,47.148],[5.865,47.147],[5.863,47.146],[5.862,47.145],[5.86,47.143],[5.857,47.142],[5.854,47.142],[5.852,47.142],[5.851,47.141],[5.849,47.141],[5.846,47.141],[5.844,47.141],[5.842,47.142],[5.84,47.143],[5.839,47.143],[5.839,47.144],[5.84,47.144],[5.841,47.144],[5.841,47.145],[5.842,47.146],[5.842,47.146],[5.842,47.147],[5.842,47.147],[5.843,47.148],[5.843,47.149],[5.842,47.149],[5.843,47.15],[5.843,47.151],[5.843,47.151],[5.845,47.152],[5.846,47.152],[5.847,47.153],[5.849,47.154],[5.85,47.154],[5.851,47.155],[5.852,47.156],[5.853,47.157],[5.853,47.158],[5.854,47.159],[5.856,47.16],[5.857,47.162],[5.857,47.163],[5.857,47.163],[5.857,47.165],[5.857,47.165],[5.857,47.166],[5.856,47.167],[5.855,47.168],[5.854,47.17],[5.853,47.171],[5.853,47.172],[5.852,47.172],[5.851,47.173],[5.85,47.174],[5.849,47.174],[5.847,47.174],[5.845,47.175],[5.843,47.175],[5.842,47.175],[5.84,47.176],[5.838,47.176],[5.837,47.176],[5.836,47.176],[5.834,47.176],[5.832,47.175],[5.831,47.175],[5.829,47.174],[5.828,47.175],[5.827,47.175],[5.826,47.174],[5.821,47.176],[5.815,47.177],[5.809,47.178],[5.803,47.179],[5.795,47.179],[5.788,47.178],[5.783,47.177],[5.778,47.174],[5.774,47.171],[5.772,47.169],[5.769,47.169],[5.769,47.168],[5.768,47.168],[5.768,47.167],[5.767,47.165],[5.767,47.163],[5.767,47.162],[5.765,47.162],[5.763,47.161],[5.762,47.16],[5.76,47.16],[5.759,47.159],[5.758,47.159],[5.756,47.158],[5.755,47.158],[5.753,47.157],[5.75,47.157],[5.749,47.158],[5.748,47.158],[5.746,47.158],[5.745,47.159],[5.744,47.159],[5.742,47.16],[5.741,47.16],[5.74,47.16],[5.736,47.159],[5.731,47.157],[5.73,47.156],[5.727,47.156],[5.726,47.156],[5.724,47.155],[5.723,47.153],[5.722,47.152],[5.722,47.152],[5.721,47.151],[5.719,47.15],[5.718,47.15],[5.716,47.149],[5.714,47.149],[5.712,47.148],[5.71,47.149],[5.708,47.149],[5.707,47.15],[5.706,47.15],[5.706,47.151],[5.706,47.152],[5.708,47.152],[5.709,47.152],[5.71,47.152],[5.711,47.152],[5.712,47.153],[5.713,47.153],[5.714,47.154],[5.715,47.156],[5.715,47.157],[5.715,47.158],[5.713,47.158],[5.708,47.158],[5.701,47.157],[5.694,47.157],[5.689,47.155],[5.685,47.153],[5.68,47.151],[5.676,47.149],[5.673,47.148],[5.672,47.147],[5.67,47.147],[5.667,47.147],[5.666,47.148],[5.664,47.148],[5.663,47.149],[5.662,47.15],[5.662,47.15],[5.662,47.151],[5.662,47.151],[5.663,47.152],[5.664,47.152],[5.664,47.153],[5.663,47.153],[5.662,47.154],[5.66,47.154],[5.654,47.154],[5.649,47.154],[5.645,47.155],[5.643,47.155],[5.642,47.155],[5.64,47.154],[5.638,47.153],[5.636,47.153],[5.635,47.152],[5.635,47.151],[5.635,47.149],[5.635,47.148],[5.635,47.147],[5.634,47.146],[5.633,47.146],[5.632,47.146],[5.63,47.146],[5.627,47.146],[5.624,47.146],[5.62,47.146],[5.617,47.146],[5.614,47.146],[5.612,47.147],[5.61,47.148],[5.609,47.148],[5.607,47.149],[5.606,47.148],[5.602,47.147],[5.6,47.147],[5.6,47.146],[5.601,47.145],[5.601,47.145],[5.601,47.144],[5.601,47.144],[5.6,47.143],[5.599,47.143],[5.598,47.143],[5.597,47.142],[5.596,47.141],[5.595,47.14],[5.594,47.14],[5.593,47.14],[5.593,47.14],[5.589,47.138],[5.588,47.138],[5.587,47.138],[5.586,47.139],[5.585,47.139],[5.584,47.14],[5.583,47.141],[5.582,47.142],[5.582,47.143],[5.58,47.142],[5.567,47.135],[5.567,47.134],[5.567,47.134],[5.564,47.131],[5.562,47.13],[5.561,47.129],[5.56,47.128],[5.559,47.127],[5.557,47.126],[5.554,47.124],[5.553,47.122],[5.552,47.121],[5.551,47.12],[5.55,47.119],[5.55,47.117],[5.55,47.116],[5.551,47.114],[5.551,47.111],[5.551,47.11],[5.551,47.109],[5.55,47.109],[5.549,47.108],[5.547,47.107],[5.545,47.107],[5.543,47.106],[5.54,47.105],[5.537,47.104],[5.534,47.102],[5.533,47.101],[5.532,47.1],[5.531,47.099],[5.531,47.098],[5.531,47.097],[5.532,47.095],[5.533,47.094],[5.534,47.093],[5.534,47.093],[5.532,47.092],[5.531,47.092],[5.531,47.093],[5.531,47.093],[5.529,47.093],[5.527,47.092],[5.525,47.091],[5.524,47.09],[5.522,47.09],[5.522,47.089],[5.52,47.089],[5.519,47.09],[5.518,47.09],[5.518,47.091],[5.517,47.092],[5.516,47.093],[5.513,47.094],[5.512,47.095],[5.505,47.097],[5.501,47.097],[5.5,47.097],[5.5,47.097],[5.499,47.097],[5.499,47.097],[5.499,47.098],[5.498,47.097],[5.497,47.097],[5.495,47.096],[5.493,47.096],[5.491,47.095],[5.487,47.093],[5.485,47.091],[5.484,47.09],[5.484,47.089],[5.484,47.088],[5.485,47.088],[5.486,47.087],[5.487,47.086],[5.487,47.083],[5.482,47.081],[5.479,47.08],[5.475,47.079],[5.472,47.078],[5.471,47.077],[5.471,47.076],[5.47,47.075],[5.47,47.075],[5.471,47.073],[5.473,47.071],[5.474,47.069],[5.477,47.068],[5.478,47.066],[5.478,47.065],[5.477,47.064],[5.475,47.064],[5.474,47.064],[5.469,47.065],[5.469,47.065],[5.467,47.065],[5.466,47.064],[5.464,47.063],[5.462,47.062],[5.459,47.06],[5.459,47.06],[5.457,47.059],[5.455,47.058],[5.453,47.058],[5.451,47.058],[5.448,47.058],[5.447,47.058],[5.447,47.057],[5.448,47.056],[5.449,47.056],[5.451,47.054],[5.452,47.054],[5.454,47.052],[5.455,47.051],[5.456,47.048],[5.456,47.047],[5.456,47.045],[5.455,47.045],[5.455,47.043],[5.454,47.042],[5.451,47.04],[5.45,47.039],[5.448,47.038],[5.447,47.037],[5.446,47.037],[5.447,47.036],[5.447,47.036],[5.446,47.035],[5.446,47.034],[5.446,47.034],[5.446,47.033],[5.448,47.032],[5.449,47.031],[5.449,47.03],[5.449,47.03],[5.45,47.027],[5.45,47.025],[5.45,47.022],[5.45,47.021],[5.45,47.02],[5.45,47.019],[5.45,47.018],[5.449,47.017],[5.448,47.016],[5.447,47.015],[5.445,47.014],[5.444,47.013],[5.443,47.013],[5.443,47.012],[5.442,47.011],[5.44,47.01],[5.439,47.01],[5.437,47.009],[5.434,47.01],[5.432,47.011],[5.43,47.011],[5.429,47.012],[5.428,47.012],[5.427,47.013],[5.427,47.014],[5.425,47.015],[5.425,47.016],[5.423,47.018],[5.421,47.02],[5.417,47.021],[5.415,47.021],[5.414,47.022],[5.412,47.022],[5.409,47.022],[5.407,47.022],[5.405,47.022],[5.404,47.022],[5.403,47.021],[5.401,47.018],[5.401,47.017],[5.4,47.015],[5.4,47.013],[5.398,47.011],[5.396,47.01],[5.395,47.01],[5.393,47.01],[5.392,47.01],[5.391,47.011],[5.389,47.011],[5.387,47.011],[5.384,47.011],[5.382,47.012],[5.381,47.012],[5.381,47.012],[5.379,47.011],[5.377,47.009],[5.377,47.009],[5.376,47.008],[5.375,47.006],[5.376,47.004],[5.376,47.003],[5.377,47.001],[5.377,47.001],[5.377,47],[5.377,47],[5.378,46.999],[5.379,46.998],[5.379,46.997],[5.38,46.996],[5.381,46.994],[5.381,46.993],[5.381,46.992],[5.38,46.991],[5.379,46.989],[5.378,46.988],[5.378,46.988],[5.377,46.988],[5.376,46.987],[5.376,46.986],[5.376,46.985],[5.376,46.984],[5.375,46.983],[5.375,46.982],[5.376,46.981],[5.377,46.98],[5.378,46.978],[5.378,46.977],[5.379,46.976],[5.38,46.975],[5.38,46.974],[5.381,46.973],[5.382,46.971],[5.382,46.971],[5.383,46.971],[5.383,46.97],[5.384,46.97],[5.384,46.969],[5.384,46.968],[5.385,46.967],[5.385,46.966],[5.385,46.965],[5.385,46.964],[5.385,46.963],[5.384,46.963],[5.383,46.963],[5.38,46.962],[5.379,46.961],[5.377,46.96],[5.373,46.959],[5.372,46.959],[5.372,46.958],[5.371,46.958],[5.371,46.958],[5.369,46.957],[5.369,46.957],[5.367,46.956],[5.366,46.955],[5.365,46.954],[5.364,46.953],[5.364,46.951],[5.364,46.95],[5.365,46.949],[5.365,46.949],[5.365,46.948],[5.365,46.947],[5.366,46.947],[5.366,46.946],[5.366,46.946],[5.365,46.943],[5.365,46.943],[5.367,46.942],[5.368,46.941],[5.369,46.941],[5.369,46.94],[5.368,46.94],[5.367,46.94],[5.366,46.941],[5.365,46.941],[5.364,46.94],[5.364,46.94],[5.364,46.939],[5.363,46.937],[5.363,46.936],[5.362,46.935],[5.361,46.934],[5.359,46.933],[5.358,46.932],[5.357,46.932],[5.357,46.932],[5.355,46.932],[5.354,46.932],[5.353,46.932],[5.353,46.931],[5.351,46.931],[5.348,46.932],[5.346,46.932],[5.344,46.932],[5.34,46.933],[5.336,46.933],[5.333,46.933],[5.33,46.933],[5.327,46.932],[5.322,46.932],[5.321,46.932],[5.319,46.932],[5.317,46.932],[5.317,46.933],[5.317,46.933],[5.315,46.933],[5.312,46.932],[5.309,46.932],[5.307,46.932],[5.306,46.933],[5.306,46.934],[5.306,46.935],[5.305,46.936],[5.305,46.936],[5.306,46.937],[5.304,46.938],[5.304,46.939],[5.303,46.941],[5.302,46.943],[5.302,46.944],[5.301,46.945],[5.301,46.946],[5.3,46.946],[5.299,46.947],[5.299,46.948],[5.297,46.948],[5.295,46.949],[5.294,46.949],[5.29,46.95],[5.289,46.949],[5.288,46.949],[5.287,46.948],[5.286,46.947],[5.285,46.946],[5.284,46.945],[5.283,46.945],[5.281,46.944],[5.28,46.943],[5.279,46.942],[5.277,46.941],[5.276,46.94],[5.274,46.938],[5.272,46.938],[5.272,46.938],[5.271,46.937],[5.27,46.937],[5.269,46.937],[5.268,46.937],[5.268,46.938],[5.267,46.938],[5.267,46.939],[5.264,46.941],[5.263,46.941],[5.261,46.941],[5.261,46.942],[5.26,46.94],[5.26,46.939],[5.259,46.939],[5.259,46.939],[5.258,46.94],[5.257,46.94],[5.255,46.941],[5.254,46.941],[5.253,46.94],[5.251,46.94],[5.25,46.94],[5.248,46.94],[5.247,46.939],[5.246,46.939],[5.245,46.939],[5.243,46.939],[5.242,46.939],[5.24,46.939],[5.239,46.938],[5.238,46.937],[5.237,46.937],[5.236,46.936],[5.236,46.935],[5.237,46.934],[5.237,46.933],[5.236,46.932],[5.235,46.932],[5.234,46.932],[5.233,46.932],[5.232,46.932],[5.231,46.932],[5.23,46.932],[5.229,46.932],[5.228,46.932],[5.227,46.932],[5.227,46.931],[5.226,46.93],[5.224,46.93],[5.222,46.93],[5.22,46.93],[5.219,46.931],[5.218,46.931],[5.216,46.932],[5.214,46.932],[5.212,46.932],[5.211,46.931],[5.21,46.931],[5.21,46.93],[5.209,46.93],[5.209,46.929],[5.209,46.929],[5.21,46.928],[5.209,46.928],[5.209,46.928],[5.208,46.928],[5.208,46.927],[5.208,46.924],[5.207,46.924],[5.207,46.924],[5.206,46.924],[5.205,46.924],[5.204,46.925],[5.203,46.927],[5.203,46.928],[5.201,46.929],[5.2,46.929],[5.199,46.93],[5.198,46.93],[5.198,46.931],[5.198,46.932],[5.196,46.934],[5.195,46.935],[5.193,46.936],[5.193,46.937],[5.191,46.938],[5.191,46.939],[5.191,46.94],[5.191,46.942],[5.192,46.943],[5.193,46.944],[5.193,46.945],[5.192,46.945],[5.192,46.945],[5.191,46.945],[5.189,46.944],[5.188,46.943],[5.187,46.942],[5.187,46.94],[5.186,46.938],[5.185,46.938],[5.184,46.937],[5.183,46.937],[5.182,46.937],[5.181,46.937],[5.18,46.937],[5.179,46.936],[5.177,46.936],[5.175,46.936],[5.173,46.936],[5.172,46.935],[5.171,46.935],[5.17,46.935],[5.168,46.935],[5.166,46.934],[5.164,46.935],[5.162,46.935],[5.159,46.936],[5.158,46.936],[5.157,46.937],[5.156,46.938],[5.156,46.938],[5.156,46.939],[5.156,46.94],[5.157,46.941],[5.157,46.942],[5.156,46.943],[5.156,46.944],[5.155,46.945],[5.154,46.945],[5.154,46.945],[5.151,46.947],[5.15,46.948],[5.149,46.948],[5.149,46.948],[5.149,46.948],[5.149,46.948],[5.148,46.949],[5.146,46.949],[5.145,46.949],[5.144,46.949],[5.144,46.949],[5.145,46.949],[5.145,46.949],[5.145,46.949],[5.144,46.948],[5.143,46.948],[5.142,46.948],[5.141,46.948],[5.139,46.948],[5.137,46.948],[5.135,46.948],[5.134,46.948],[5.132,46.948],[5.131,46.948],[5.13,46.948],[5.129,46.948],[5.127,46.948],[5.125,46.948],[5.124,46.948],[5.122,46.949],[5.121,46.949],[5.12,46.949],[5.119,46.948],[5.118,46.948],[5.117,46.946],[5.116,46.943],[5.115,46.942],[5.114,46.941],[5.112,46.939],[5.111,46.938],[5.109,46.937],[5.107,46.936],[5.104,46.935],[5.102,46.934],[5.101,46.933],[5.1,46.933],[5.099,46.933],[5.096,46.931],[5.094,46.93],[5.093,46.929],[5.092,46.928],[5.091,46.926],[5.09,46.924],[5.09,46.924],[5.09,46.923],[5.09,46.922],[5.088,46.921],[5.088,46.921],[5.088,46.921],[5.088,46.921],[5.087,46.921],[5.087,46.92],[5.086,46.92],[5.085,46.918],[5.085,46.917],[5.085,46.916],[5.086,46.914],[5.086,46.913],[5.086,46.912],[5.084,46.911],[5.083,46.91],[5.081,46.909],[5.079,46.908],[5.077,46.907],[5.076,46.907],[5.074,46.905],[5.072,46.904],[5.07,46.902],[5.069,46.901],[5.068,46.901],[5.067,46.901],[5.066,46.9],[5.065,46.901],[5.064,46.901],[5.063,46.901],[5.062,46.902],[5.061,46.902],[5.059,46.902],[5.058,46.902],[5.057,46.902],[5.055,46.903],[5.053,46.903],[5.05,46.903],[5.048,46.903],[5.044,46.903],[5.041,46.903],[5.039,46.903],[5.038,46.902],[5.036,46.902],[5.035,46.901],[5.033,46.901],[5.031,46.901],[5.03,46.901],[5.029,46.902],[5.028,46.903],[5.028,46.904],[5.028,46.905],[5.027,46.905],[5.027,46.905],[5.026,46.905],[5.025,46.905],[5.024,46.905],[5.023,46.904],[5.022,46.905],[5.021,46.905],[5.02,46.906],[5.019,46.906],[5.017,46.906],[5.015,46.907],[5.012,46.909],[5.012,46.91],[5.011,46.911],[5.01,46.913],[5.009,46.914],[5.007,46.915],[5.006,46.915],[5.004,46.915],[5.003,46.914],[5.002,46.914],[5.001,46.913],[5,46.912],[4.999,46.911],[4.997,46.909],[4.997,46.909],[4.996,46.909],[4.995,46.909],[4.995,46.908],[4.994,46.907],[4.994,46.907],[4.994,46.906],[4.993,46.906],[4.993,46.905],[4.992,46.905],[4.992,46.904],[4.991,46.904],[4.99,46.904],[4.989,46.904],[4.988,46.904],[4.986,46.904],[4.985,46.904],[4.983,46.904],[4.981,46.904],[4.98,46.905],[4.978,46.905],[4.976,46.905],[4.975,46.905],[4.974,46.905],[4.973,46.905],[4.972,46.905],[4.97,46.904],[4.969,46.904],[4.968,46.903],[4.966,46.902],[4.964,46.901],[4.964,46.901],[4.963,46.901],[4.962,46.901],[4.961,46.9],[4.96,46.9],[4.958,46.9],[4.957,46.9],[4.956,46.9],[4.954,46.899],[4.954,46.899],[4.953,46.899],[4.952,46.898],[4.951,46.898],[4.951,46.896],[4.95,46.895],[4.95,46.894],[4.95,46.893],[4.95,46.893],[4.95,46.891],[4.95,46.891],[4.95,46.89],[4.951,46.889],[4.951,46.888],[4.953,46.888],[4.954,46.887],[4.956,46.886],[4.957,46.885],[4.958,46.885],[4.96,46.884],[4.961,46.883],[4.962,46.883],[4.963,46.881],[4.963,46.88],[4.963,46.88],[4.963,46.879],[4.963,46.878],[4.962,46.878],[4.962,46.877],[4.961,46.877],[4.959,46.876],[4.958,46.875],[4.956,46.874],[4.955,46.874],[4.955,46.873],[4.954,46.872],[4.954,46.871],[4.953,46.871],[4.954,46.87],[4.954,46.87],[4.955,46.869],[4.955,46.868],[4.957,46.867],[4.958,46.867],[4.959,46.866],[4.96,46.866],[4.961,46.865],[4.962,46.864],[4.962,46.864],[4.962,46.863],[4.962,46.862],[4.962,46.861],[4.962,46.86],[4.962,46.86],[4.962,46.859],[4.961,46.858],[4.961,46.856],[4.961,46.854],[4.962,46.854],[4.962,46.853],[4.962,46.852],[4.962,46.852],[4.962,46.851],[4.961,46.85],[4.961,46.849],[4.96,46.848],[4.96,46.847],[4.96,46.847],[4.959,46.846],[4.959,46.846],[4.958,46.845],[4.957,46.844],[4.956,46.844],[4.955,46.843],[4.954,46.842],[4.952,46.841],[4.95,46.839],[4.949,46.838],[4.948,46.837],[4.947,46.837],[4.945,46.836],[4.944,46.836],[4.943,46.835],[4.943,46.834],[4.942,46.834],[4.942,46.833],[4.941,46.833],[4.94,46.832],[4.939,46.831],[4.938,46.83],[4.938,46.829],[4.937,46.828],[4.937,46.827],[4.937,46.826],[4.936,46.824],[4.936,46.824],[4.935,46.823],[4.935,46.822],[4.934,46.822],[4.933,46.822],[4.931,46.821],[4.93,46.821],[4.928,46.82],[4.926,46.819],[4.923,46.817],[4.92,46.815],[4.919,46.814],[4.918,46.814],[4.917,46.812],[4.917,46.811],[4.917,46.811],[4.916,46.81],[4.915,46.809],[4.914,46.808],[4.913,46.808],[4.912,46.807],[4.91,46.806],[4.909,46.805],[4.908,46.805],[4.906,46.804],[4.905,46.804],[4.903,46.804],[4.9,46.806],[4.898,46.806],[4.897,46.807],[4.897,46.807],[4.896,46.808],[4.894,46.809],[4.892,46.81],[4.891,46.811],[4.891,46.811],[4.89,46.811],[4.888,46.811],[4.886,46.811],[4.885,46.811],[4.884,46.811],[4.883,46.811],[4.882,46.81],[4.881,46.809],[4.879,46.809],[4.879,46.808],[4.878,46.807],[4.877,46.807],[4.877,46.807],[4.877,46.805],[4.877,46.805],[4.877,46.805],[4.876,46.805],[4.876,46.805],[4.876,46.805],[4.875,46.805],[4.875,46.804],[4.875,46.804],[4.875,46.804],[4.876,46.804],[4.876,46.804],[4.876,46.804],[4.877,46.803],[4.877,46.802],[4.877,46.802],[4.877,46.801],[4.877,46.801],[4.877,46.8],[4.877,46.8],[4.877,46.799],[4.877,46.799],[4.876,46.798],[4.875,46.798],[4.874,46.797],[4.873,46.796],[4.871,46.795],[4.869,46.795],[4.867,46.794],[4.865,46.793],[4.864,46.792],[4.863,46.792],[4.862,46.791],[4.861,46.791],[4.86,46.791],[4.86,46.79],[4.859,46.79],[4.857,46.789],[4.856,46.789],[4.855,46.788],[4.853,46.788],[4.852,46.787],[4.85,46.787],[4.849,46.786],[4.847,46.785],[4.846,46.785],[4.844,46.784],[4.843,46.783],[4.842,46.782],[4.841,46.781],[4.841,46.779],[4.841,46.778],[4.841,46.777],[4.841,46.776],[4.841,46.775],[4.841,46.774],[4.842,46.773],[4.843,46.773],[4.847,46.77],[4.851,46.768],[4.851,46.768],[4.852,46.768],[4.853,46.768],[4.855,46.767],[4.856,46.767],[4.857,46.767],[4.858,46.766],[4.86,46.765],[4.861,46.765],[4.863,46.764],[4.865,46.763],[4.866,46.763],[4.867,46.763],[4.869,46.763],[4.87,46.762],[4.871,46.762],[4.873,46.762],[4.874,46.761],[4.875,46.761],[4.875,46.761],[4.876,46.759],[4.877,46.758],[4.878,46.757],[4.879,46.756],[4.879,46.755],[4.88,46.754],[4.88,46.754],[4.88,46.753],[4.88,46.752],[4.88,46.751],[4.878,46.748],[4.878,46.747],[4.877,46.745],[4.877,46.744],[4.876,46.743],[4.877,46.743],[4.877,46.742],[4.878,46.741],[4.879,46.741],[4.88,46.74],[4.881,46.739],[4.882,46.738],[4.884,46.738],[4.886,46.738],[4.887,46.738],[4.888,46.738],[4.889,46.739],[4.891,46.739],[4.891,46.739],[4.892,46.739],[4.894,46.739],[4.895,46.739],[4.895,46.739],[4.896,46.738],[4.897,46.738],[4.898,46.737],[4.899,46.736],[4.9,46.735],[4.901,46.734],[4.902,46.733],[4.903,46.732],[4.904,46.731],[4.904,46.73],[4.905,46.729],[4.906,46.728],[4.906,46.728],[4.908,46.727],[4.91,46.726],[4.911,46.726],[4.912,46.725],[4.914,46.725],[4.915,46.724],[4.917,46.724],[4.918,46.724],[4.918,46.724],[4.919,46.723],[4.92,46.723],[4.921,46.722],[4.923,46.721],[4.924,46.72],[4.925,46.719],[4.927,46.719],[4.927,46.718],[4.928,46.718],[4.929,46.718],[4.93,46.717],[4.93,46.717],[4.931,46.716],[4.931,46.715],[4.931,46.714],[4.932,46.713],[4.932,46.712],[4.932,46.711],[4.932,46.71],[4.933,46.709],[4.934,46.709],[4.934,46.708],[4.934,46.708],[4.936,46.706],[4.937,46.704],[4.937,46.704],[4.938,46.703],[4.938,46.702],[4.939,46.701],[4.939,46.7],[4.939,46.699],[4.94,46.697],[4.94,46.695],[4.94,46.693],[4.941,46.692],[4.941,46.69],[4.942,46.688],[4.942,46.687],[4.943,46.685],[4.944,46.683],[4.944,46.681],[4.945,46.679],[4.946,46.678],[4.947,46.677],[4.946,46.675],[4.946,46.675],[4.946,46.674],[4.946,46.672],[4.946,46.671],[4.946,46.67],[4.947,46.669],[4.948,46.667],[4.949,46.666],[4.95,46.665],[4.95,46.663],[4.95,46.662],[4.95,46.66],[4.951,46.656],[4.951,46.655],[4.951,46.653],[4.951,46.652],[4.951,46.651],[4.951,46.649],[4.951,46.648],[4.952,46.646],[4.952,46.645],[4.952,46.644],[4.952,46.643],[4.952,46.641],[4.951,46.639],[4.951,46.638],[4.95,46.637],[4.949,46.635],[4.948,46.634],[4.947,46.633],[4.944,46.632],[4.944,46.631],[4.943,46.631],[4.942,46.63],[4.941,46.629],[4.941,46.628],[4.94,46.627],[4.94,46.626],[4.94,46.625],[4.939,46.625],[4.939,46.624],[4.939,46.623],[4.939,46.622],[4.936,46.618],[4.934,46.616],[4.934,46.615],[4.933,46.614],[4.932,46.614],[4.931,46.613],[4.93,46.612],[4.929,46.61],[4.928,46.61],[4.927,46.609],[4.927,46.608],[4.926,46.607],[4.925,46.606],[4.924,46.605],[4.924,46.604],[4.923,46.603],[4.921,46.601],[4.92,46.6],[4.919,46.599],[4.918,46.598],[4.917,46.598],[4.915,46.596],[4.913,46.595],[4.912,46.593],[4.911,46.592],[4.91,46.59],[4.909,46.589],[4.909,46.589],[4.909,46.587],[4.909,46.586],[4.909,46.585],[4.908,46.584],[4.909,46.583],[4.909,46.582],[4.909,46.581],[4.909,46.58],[4.909,46.58],[4.909,46.578],[4.909,46.577],[4.908,46.576],[4.908,46.575],[4.908,46.574],[4.908,46.573],[4.909,46.572],[4.909,46.571],[4.91,46.571],[4.911,46.57],[4.913,46.568],[4.914,46.567],[4.914,46.565],[4.915,46.564],[4.915,46.563],[4.915,46.562],[4.916,46.56],[4.917,46.559],[4.917,46.558],[4.917,46.557],[4.918,46.556],[4.918,46.556],[4.919,46.555],[4.919,46.554],[4.92,46.553],[4.921,46.553],[4.921,46.552],[4.921,46.552],[4.921,46.551],[4.922,46.551],[4.923,46.549],[4.923,46.547],[4.924,46.546],[4.924,46.546],[4.925,46.544],[4.926,46.542],[4.927,46.541],[4.929,46.539],[4.93,46.538],[4.931,46.536],[4.932,46.535],[4.933,46.533],[4.933,46.532],[4.933,46.531],[4.934,46.53],[4.935,46.53],[4.935,46.529],[4.934,46.527],[4.934,46.526],[4.934,46.525],[4.932,46.524],[4.931,46.523],[4.929,46.521],[4.928,46.519],[4.927,46.518],[4.926,46.516],[4.924,46.512],[4.924,46.512],[4.924,46.511],[4.923,46.509],[4.923,46.508],[4.922,46.507],[4.921,46.505],[4.919,46.503],[4.915,46.501],[4.912,46.499],[4.911,46.496],[4.91,46.492],[4.91,46.489],[4.91,46.488],[4.91,46.486],[4.911,46.485],[4.911,46.483],[4.911,46.481],[4.911,46.479],[4.911,46.473],[4.91,46.471],[4.909,46.47],[4.908,46.467],[4.903,46.464],[4.902,46.463],[4.9,46.463],[4.898,46.461],[4.896,46.46],[4.895,46.459],[4.894,46.458],[4.893,46.457],[4.891,46.456],[4.89,46.454],[4.889,46.452],[4.888,46.449],[4.887,46.448],[4.886,46.446],[4.886,46.445],[4.885,46.443],[4.885,46.442],[4.884,46.44],[4.886,46.437],[4.885,46.435],[4.885,46.431],[4.884,46.427],[4.884,46.426],[4.883,46.423],[4.883,46.419],[4.883,46.418],[4.884,46.418],[4.884,46.416],[4.886,46.41],[4.884,46.408],[4.881,46.405],[4.88,46.404],[4.879,46.402],[4.878,46.399],[4.876,46.397],[4.874,46.396],[4.873,46.394],[4.873,46.393],[4.872,46.392],[4.87,46.39],[4.869,46.388],[4.866,46.385],[4.863,46.383],[4.861,46.381],[4.858,46.378],[4.857,46.376],[4.854,46.373],[4.853,46.372],[4.853,46.371],[4.853,46.37],[4.852,46.369],[4.851,46.367],[4.85,46.366],[4.849,46.364],[4.849,46.361],[4.849,46.358],[4.851,46.354],[4.851,46.352],[4.851,46.348],[4.851,46.347],[4.851,46.346],[4.852,46.344],[4.852,46.342],[4.847,46.335],[4.846,46.332],[4.843,46.33],[4.841,46.327],[4.838,46.323],[4.835,46.319],[4.836,46.319],[4.835,46.318],[4.834,46.316],[4.833,46.314],[4.831,46.311],[4.83,46.31],[4.829,46.309],[4.829,46.308],[4.828,46.306],[4.828,46.306],[4.827,46.304],[4.827,46.303],[4.829,46.297],[4.828,46.295],[4.827,46.293],[4.826,46.29],[4.826,46.288],[4.825,46.285],[4.824,46.283],[4.824,46.283],[4.824,46.282],[4.822,46.28],[4.821,46.279],[4.82,46.277],[4.818,46.275],[4.815,46.273],[4.812,46.271],[4.812,46.27],[4.81,46.268],[4.809,46.266],[4.809,46.265],[4.809,46.261],[4.809,46.259],[4.809,46.256],[4.809,46.253],[4.808,46.251],[4.808,46.249],[4.808,46.248],[4.807,46.246],[4.807,46.245],[4.806,46.244],[4.804,46.243],[4.803,46.241],[4.799,46.238],[4.799,46.237],[4.798,46.236],[4.797,46.235],[4.796,46.233],[4.795,46.23],[4.794,46.228],[4.793,46.226],[4.792,46.224],[4.791,46.222],[4.791,46.219],[4.791,46.215],[4.791,46.21],[4.79,46.209],[4.788,46.208],[4.786,46.205],[4.785,46.204],[4.782,46.201],[4.78,46.199],[4.778,46.197],[4.778,46.195],[4.778,46.191],[4.778,46.188],[4.778,46.185],[4.779,46.182],[4.78,46.18],[4.781,46.178],[4.783,46.175],[4.786,46.173],[4.789,46.172],[4.797,46.169],[4.8,46.167],[4.801,46.165],[4.801,46.162],[4.801,46.159],[4.8,46.159],[4.799,46.157],[4.798,46.156],[4.798,46.154],[4.798,46.153],[4.797,46.152],[4.797,46.151],[4.796,46.15],[4.795,46.149],[4.794,46.148],[4.794,46.147],[4.793,46.147],[4.791,46.145],[4.79,46.144],[4.789,46.142],[4.786,46.14],[4.785,46.139],[4.784,46.138],[4.784,46.138],[4.783,46.137],[4.778,46.134],[4.775,46.131],[4.773,46.129],[4.772,46.128],[4.771,46.126],[4.77,46.125],[4.769,46.124],[4.769,46.122],[4.768,46.12],[4.768,46.118],[4.766,46.117],[4.765,46.115],[4.763,46.114],[4.762,46.112],[4.76,46.111],[4.758,46.109],[4.757,46.108],[4.755,46.107],[4.754,46.105],[4.753,46.104],[4.752,46.103],[4.751,46.102],[4.75,46.1],[4.75,46.099],[4.749,46.096],[4.748,46.094],[4.748,46.092],[4.749,46.091],[4.751,46.089],[4.754,46.087],[4.757,46.082],[4.758,46.079],[4.759,46.075],[4.759,46.072],[4.757,46.07],[4.756,46.068],[4.754,46.067],[4.752,46.065],[4.751,46.064],[4.75,46.063],[4.748,46.062],[4.747,46.061],[4.743,46.06],[4.742,46.059],[4.74,46.059],[4.738,46.058],[4.738,46.057],[4.736,46.055],[4.736,46.054],[4.737,46.052],[4.738,46.051],[4.74,46.049],[4.74,46.047],[4.742,46.045],[4.743,46.042],[4.744,46.041],[4.744,46.039],[4.744,46.037],[4.744,46.036],[4.744,46.035],[4.744,46.033],[4.743,46.032],[4.742,46.03],[4.741,46.028],[4.741,46.027],[4.741,46.025],[4.742,46.023],[4.743,46.022],[4.744,46.021],[4.745,46.02],[4.746,46.018],[4.746,46.015],[4.746,46.014],[4.748,46.012],[4.748,46.008],[4.747,46.007],[4.747,46.005],[4.748,46.001],[4.749,46],[4.748,45.998],[4.748,45.997],[4.748,45.994],[4.747,45.992],[4.748,45.992],[4.749,45.99],[4.75,45.989],[4.75,45.988],[4.751,45.986],[4.753,45.983],[4.753,45.982],[4.753,45.981],[4.753,45.98],[4.752,45.979],[4.752,45.978],[4.751,45.977],[4.751,45.976],[4.749,45.973],[4.748,45.971],[4.747,45.97],[4.745,45.968],[4.739,45.965],[4.737,45.963],[4.733,45.961],[4.732,45.96],[4.729,45.958],[4.728,45.957],[4.727,45.955],[4.726,45.954],[4.725,45.953],[4.726,45.952],[4.728,45.951],[4.728,45.95],[4.729,45.95],[4.731,45.949],[4.732,45.947],[4.733,45.947],[4.734,45.947],[4.735,45.947],[4.736,45.947],[4.739,45.946],[4.74,45.946],[4.742,45.946],[4.744,45.946],[4.746,45.945],[4.747,45.945],[4.749,45.944],[4.751,45.943],[4.753,45.943],[4.755,45.943],[4.756,45.943],[4.756,45.943],[4.759,45.943],[4.761,45.945],[4.762,45.945],[4.763,45.946],[4.764,45.946],[4.765,45.946],[4.766,45.947],[4.768,45.947],[4.769,45.947],[4.772,45.947],[4.774,45.947],[4.775,45.946],[4.777,45.945],[4.778,45.944],[4.78,45.941],[4.783,45.937],[4.785,45.934],[4.787,45.932],[4.788,45.932],[4.789,45.931],[4.791,45.931],[4.792,45.931],[4.793,45.931],[4.794,45.931],[4.795,45.931],[4.795,45.931],[4.796,45.931],[4.798,45.932],[4.799,45.932],[4.802,45.931],[4.803,45.931],[4.804,45.93],[4.805,45.93],[4.806,45.93],[4.807,45.929],[4.808,45.928],[4.808,45.927],[4.808,45.926],[4.809,45.925],[4.809,45.924],[4.809,45.923],[4.809,45.922],[4.808,45.922],[4.808,45.921],[4.808,45.92],[4.808,45.919],[4.808,45.918],[4.809,45.918],[4.809,45.917],[4.808,45.916],[4.808,45.915],[4.807,45.914],[4.806,45.913],[4.805,45.913],[4.805,45.912],[4.804,45.912],[4.802,45.91],[4.802,45.909],[4.801,45.908],[4.801,45.907],[4.802,45.906],[4.803,45.904],[4.804,45.903],[4.804,45.902],[4.805,45.9],[4.808,45.896],[4.81,45.894],[4.812,45.893],[4.815,45.891],[4.818,45.89],[4.819,45.89],[4.822,45.889],[4.824,45.888],[4.827,45.888],[4.829,45.888],[4.831,45.887],[4.833,45.887],[4.834,45.886],[4.834,45.885],[4.835,45.884],[4.835,45.883],[4.834,45.881],[4.834,45.88],[4.834,45.878],[4.834,45.877],[4.834,45.876],[4.835,45.874],[4.837,45.873],[4.837,45.872],[4.837,45.871],[4.837,45.87],[4.838,45.869],[4.838,45.869],[4.838,45.867],[4.838,45.866],[4.836,45.864],[4.835,45.862],[4.835,45.861],[4.835,45.86],[4.834,45.857],[4.829,45.852],[4.828,45.85],[4.828,45.848],[4.828,45.846],[4.829,45.845],[4.83,45.844],[4.832,45.843],[4.835,45.842],[4.837,45.841],[4.839,45.841],[4.841,45.84],[4.842,45.84],[4.842,45.84],[4.844,45.84],[4.848,45.837],[4.849,45.836],[4.849,45.836],[4.85,45.835],[4.851,45.832],[4.852,45.831],[4.852,45.829],[4.852,45.828],[4.851,45.827],[4.851,45.826],[4.849,45.825],[4.848,45.825],[4.846,45.824],[4.845,45.823],[4.843,45.822],[4.842,45.821],[4.842,45.821],[4.84,45.82],[4.839,45.819],[4.839,45.819],[4.839,45.817],[4.838,45.815],[4.838,45.813],[4.836,45.811],[4.836,45.81],[4.835,45.809],[4.833,45.808],[4.831,45.807],[4.829,45.807],[4.827,45.806],[4.826,45.805],[4.823,45.804],[4.819,45.802],[4.817,45.8],[4.812,45.796],[4.811,45.795],[4.809,45.793],[4.807,45.79],[4.805,45.787],[4.804,45.784],[4.805,45.783],[4.806,45.782],[4.807,45.781],[4.808,45.781],[4.809,45.779],[4.809,45.778],[4.809,45.777],[4.81,45.776],[4.811,45.775],[4.812,45.775],[4.813,45.775],[4.814,45.775],[4.816,45.775],[4.818,45.776],[4.82,45.776],[4.822,45.776],[4.823,45.776],[4.824,45.775],[4.825,45.775],[4.825,45.774],[4.826,45.772],[4.825,45.771],[4.824,45.769],[4.823,45.768],[4.822,45.765],[4.821,45.764],[4.82,45.763],[4.818,45.76],[4.815,45.758],[4.813,45.757],[4.812,45.756],[4.81,45.754],[4.81,45.753],[4.809,45.749],[4.808,45.747],[4.809,45.745],[4.81,45.742],[4.811,45.74],[4.812,45.739],[4.813,45.738],[4.813,45.737],[4.814,45.736],[4.817,45.727],[4.817,45.726],[4.818,45.721],[4.82,45.717],[4.821,45.716],[4.823,45.713],[4.825,45.712],[4.827,45.711],[4.83,45.71],[4.832,45.709],[4.834,45.708],[4.835,45.706],[4.837,45.704],[4.838,45.703],[4.839,45.7],[4.839,45.697],[4.838,45.696],[4.838,45.696],[4.838,45.695],[4.838,45.694],[4.837,45.693],[4.836,45.69],[4.836,45.689],[4.835,45.688],[4.835,45.686],[4.834,45.685],[4.834,45.684],[4.834,45.683],[4.833,45.683],[4.835,45.675],[4.834,45.675],[4.834,45.673],[4.834,45.673],[4.833,45.672],[4.833,45.671],[4.833,45.67],[4.832,45.669],[4.832,45.668],[4.832,45.666],[4.832,45.666],[4.831,45.665],[4.831,45.664],[4.831,45.663],[4.831,45.66],[4.83,45.659],[4.83,45.658],[4.83,45.657],[4.83,45.657],[4.83,45.656],[4.83,45.655],[4.829,45.654],[4.828,45.652],[4.827,45.651],[4.826,45.65],[4.824,45.649],[4.823,45.648],[4.82,45.647],[4.818,45.646],[4.817,45.645],[4.816,45.644],[4.815,45.644],[4.815,45.644],[4.815,45.643],[4.814,45.643],[4.814,45.643],[4.813,45.642],[4.813,45.642],[4.813,45.642],[4.812,45.641],[4.812,45.64],[4.811,45.639],[4.811,45.638],[4.81,45.638],[4.81,45.636],[4.809,45.635],[4.809,45.634],[4.808,45.633],[4.809,45.631],[4.808,45.629],[4.809,45.629],[4.809,45.628],[4.809,45.627],[4.809,45.627],[4.808,45.626],[4.808,45.624],[4.808,45.622],[4.808,45.621],[4.808,45.62],[4.808,45.62],[4.807,45.619],[4.807,45.619],[4.806,45.618],[4.806,45.618],[4.805,45.618],[4.805,45.618],[4.804,45.615],[4.803,45.614],[4.803,45.614],[4.803,45.613],[4.803,45.612],[4.803,45.612],[4.803,45.612],[4.796,45.603],[4.794,45.6],[4.793,45.599],[4.792,45.598],[4.791,45.597],[4.79,45.596],[4.788,45.595],[4.787,45.593],[4.786,45.593],[4.785,45.593],[4.782,45.591],[4.78,45.59],[4.779,45.59],[4.778,45.589],[4.777,45.588],[4.778,45.586],[4.779,45.581],[4.781,45.581],[4.787,45.578],[4.79,45.578],[4.791,45.577],[4.792,45.577],[4.793,45.577],[4.798,45.575],[4.799,45.575],[4.8,45.575],[4.802,45.574],[4.809,45.573],[4.812,45.572],[4.813,45.571],[4.814,45.57],[4.816,45.568],[4.817,45.566],[4.818,45.564],[4.819,45.563],[4.821,45.56],[4.822,45.559],[4.824,45.557],[4.827,45.554],[4.828,45.553],[4.829,45.552],[4.83,45.551],[4.833,45.547],[4.836,45.545],[4.837,45.545],[4.838,45.545],[4.837,45.544],[4.843,45.543],[4.853,45.541],[4.854,45.54],[4.857,45.539],[4.86,45.539],[4.864,45.538],[4.867,45.537],[4.87,45.536],[4.872,45.534],[4.873,45.533],[4.874,45.531],[4.874,45.53],[4.874,45.529],[4.872,45.526],[4.869,45.523],[4.866,45.52],[4.86,45.513],[4.858,45.511],[4.851,45.505],[4.849,45.504],[4.846,45.502],[4.845,45.502],[4.843,45.501],[4.841,45.5],[4.84,45.5],[4.838,45.499],[4.835,45.498],[4.833,45.496],[4.83,45.495],[4.828,45.496],[4.827,45.495],[4.826,45.495],[4.826,45.495],[4.826,45.494],[4.825,45.493],[4.822,45.49],[4.821,45.489],[4.819,45.487],[4.817,45.485],[4.815,45.484],[4.813,45.483],[4.803,45.479],[4.8,45.477],[4.798,45.476],[4.797,45.476],[4.795,45.475],[4.794,45.475],[4.792,45.474],[4.789,45.473],[4.786,45.472],[4.785,45.471],[4.783,45.47],[4.782,45.468],[4.782,45.466],[4.784,45.462],[4.784,45.461],[4.784,45.461],[4.783,45.461],[4.782,45.46],[4.781,45.46],[4.781,45.459],[4.78,45.459],[4.778,45.457],[4.775,45.456],[4.774,45.456],[4.767,45.456],[4.763,45.455],[4.761,45.454],[4.76,45.453],[4.76,45.451],[4.76,45.449],[4.761,45.445],[4.762,45.442],[4.763,45.439],[4.764,45.437],[4.764,45.435],[4.764,45.434],[4.763,45.432],[4.762,45.43],[4.761,45.43],[4.757,45.428],[4.754,45.427],[4.753,45.426],[4.749,45.42],[4.747,45.417],[4.747,45.415],[4.746,45.413],[4.747,45.411],[4.748,45.409],[4.749,45.408],[4.75,45.406],[4.752,45.404],[4.754,45.401],[4.756,45.4],[4.757,45.399],[4.758,45.397],[4.758,45.395],[4.759,45.394],[4.76,45.393],[4.757,45.386],[4.756,45.384],[4.755,45.382],[4.753,45.38],[4.753,45.379],[4.752,45.377],[4.751,45.376],[4.751,45.374],[4.752,45.373],[4.753,45.372],[4.753,45.37],[4.754,45.369],[4.754,45.368],[4.754,45.366],[4.755,45.365],[4.755,45.365],[4.76,45.361],[4.762,45.361],[4.762,45.36],[4.763,45.359],[4.764,45.359],[4.765,45.358],[4.766,45.358],[4.767,45.356],[4.768,45.354],[4.769,45.353],[4.769,45.352],[4.768,45.35],[4.767,45.349],[4.765,45.347],[4.764,45.341],[4.763,45.339],[4.763,45.338],[4.763,45.337],[4.763,45.336],[4.763,45.335],[4.763,45.331],[4.762,45.328],[4.763,45.326],[4.764,45.324],[4.765,45.323],[4.766,45.322],[4.766,45.321],[4.767,45.32],[4.768,45.319],[4.768,45.319],[4.769,45.318],[4.771,45.317],[4.772,45.316],[4.774,45.316],[4.775,45.315],[4.776,45.314],[4.777,45.314],[4.778,45.313],[4.779,45.313],[4.779,45.312],[4.78,45.312],[4.782,45.311],[4.783,45.311],[4.785,45.31],[4.786,45.309],[4.788,45.309],[4.79,45.307],[4.792,45.306],[4.793,45.305],[4.794,45.305],[4.795,45.304],[4.796,45.304],[4.796,45.303],[4.796,45.303],[4.797,45.303],[4.797,45.302],[4.798,45.302],[4.799,45.301],[4.799,45.3],[4.801,45.299],[4.802,45.299],[4.802,45.299],[4.803,45.299],[4.803,45.298],[4.803,45.298],[4.803,45.298],[4.802,45.298],[4.802,45.298],[4.802,45.298],[4.803,45.297],[4.804,45.296],[4.805,45.295],[4.807,45.294],[4.809,45.293],[4.809,45.292],[4.809,45.286],[4.809,45.285],[4.809,45.283],[4.809,45.281],[4.809,45.28],[4.809,45.279],[4.809,45.278],[4.809,45.275],[4.809,45.272],[4.809,45.269],[4.809,45.268],[4.809,45.267],[4.81,45.266],[4.81,45.263],[4.809,45.262],[4.809,45.26],[4.806,45.256],[4.805,45.254],[4.805,45.253],[4.804,45.252],[4.803,45.251],[4.802,45.25],[4.802,45.249],[4.802,45.248],[4.802,45.247],[4.802,45.246],[4.801,45.242],[4.801,45.24],[4.801,45.24],[4.801,45.239],[4.801,45.236],[4.801,45.236],[4.801,45.235],[4.801,45.234],[4.801,45.234],[4.801,45.234],[4.801,45.233],[4.801,45.233],[4.801,45.233],[4.801,45.232],[4.801,45.231],[4.801,45.229],[4.802,45.229],[4.802,45.228],[4.802,45.227],[4.802,45.226],[4.803,45.225],[4.804,45.224],[4.804,45.222],[4.804,45.221],[4.805,45.221],[4.805,45.219],[4.805,45.218],[4.806,45.217],[4.806,45.216],[4.807,45.214],[4.807,45.213],[4.807,45.212],[4.808,45.211],[4.808,45.21],[4.808,45.209],[4.809,45.208],[4.809,45.208],[4.809,45.207],[4.809,45.206],[4.809,45.205],[4.809,45.203],[4.808,45.202],[4.808,45.201],[4.807,45.2],[4.807,45.2],[4.806,45.199],[4.806,45.199],[4.806,45.198],[4.806,45.198],[4.805,45.197],[4.805,45.197],[4.804,45.196],[4.804,45.195],[4.804,45.194],[4.804,45.193],[4.804,45.192],[4.806,45.191],[4.806,45.189],[4.807,45.188],[4.811,45.185],[4.811,45.184],[4.812,45.182],[4.812,45.182],[4.812,45.182],[4.813,45.181],[4.812,45.18],[4.811,45.178],[4.811,45.177],[4.81,45.176],[4.808,45.167],[4.809,45.165],[4.81,45.164],[4.812,45.162],[4.814,45.161],[4.814,45.16],[4.816,45.16],[4.818,45.16],[4.82,45.159],[4.823,45.159],[4.825,45.159],[4.826,45.157],[4.827,45.156],[4.827,45.154],[4.826,45.153],[4.824,45.151],[4.822,45.148],[4.819,45.145],[4.814,45.142],[4.812,45.14],[4.808,45.136],[4.805,45.135],[4.804,45.135],[4.803,45.134],[4.803,45.131],[4.803,45.13],[4.802,45.128],[4.802,45.125],[4.802,45.124],[4.803,45.123],[4.803,45.122],[4.803,45.121],[4.804,45.121],[4.805,45.121],[4.806,45.12],[4.807,45.118],[4.807,45.118],[4.808,45.117],[4.81,45.116],[4.812,45.114],[4.812,45.113],[4.812,45.113],[4.811,45.113],[4.812,45.112],[4.813,45.112],[4.813,45.112],[4.813,45.112],[4.814,45.111],[4.815,45.11],[4.815,45.109],[4.816,45.108],[4.818,45.107],[4.818,45.107],[4.818,45.106],[4.82,45.105],[4.821,45.104],[4.822,45.104],[4.822,45.104],[4.822,45.104],[4.821,45.103],[4.822,45.102],[4.823,45.102],[4.823,45.1],[4.823,45.099],[4.824,45.099],[4.824,45.098],[4.824,45.097],[4.824,45.097],[4.827,45.096],[4.827,45.096],[4.828,45.096],[4.828,45.095],[4.828,45.095],[4.829,45.094],[4.829,45.093],[4.829,45.093],[4.829,45.092],[4.83,45.092],[4.83,45.091],[4.83,45.09],[4.831,45.09],[4.83,45.09],[4.83,45.089],[4.83,45.089],[4.831,45.089],[4.831,45.089],[4.83,45.088],[4.83,45.087],[4.83,45.086],[4.83,45.085],[4.83,45.084],[4.829,45.084],[4.829,45.084],[4.828,45.084],[4.828,45.082],[4.827,45.081],[4.826,45.08],[4.826,45.078],[4.826,45.077],[4.826,45.075],[4.826,45.075],[4.827,45.075],[4.827,45.074],[4.828,45.073],[4.829,45.073],[4.828,45.072],[4.828,45.072],[4.83,45.07],[4.832,45.069],[4.836,45.067],[4.838,45.066],[4.842,45.065],[4.843,45.065],[4.844,45.065],[4.847,45.064],[4.852,45.063],[4.853,45.062],[4.854,45.061],[4.856,45.06],[4.857,45.059],[4.857,45.057],[4.857,45.055],[4.856,45.052],[4.854,45.05],[4.851,45.047],[4.847,45.044],[4.845,45.043],[4.842,45.041],[4.84,45.038],[4.838,45.036],[4.837,45.035],[4.837,45.032],[4.838,45.029],[4.839,45.027],[4.839,45.026],[4.84,45.025],[4.842,45.024],[4.843,45.023],[4.844,45.021],[4.844,45.02],[4.843,45.018],[4.842,45.016],[4.839,45.014],[4.837,45.012],[4.835,45.011],[4.835,45.01],[4.835,45.01],[4.835,45.008],[4.835,45.007],[4.835,45.006],[4.836,45.006],[4.836,45.006],[4.837,45.005],[4.839,45.004],[4.84,45.003],[4.841,45.002],[4.842,45.002],[4.843,45.001],[4.844,45],[4.845,44.999],[4.846,44.998],[4.847,44.998],[4.849,44.996],[4.851,44.995],[4.851,44.994],[4.852,44.993],[4.852,44.991],[4.852,44.989],[4.852,44.987],[4.852,44.984],[4.852,44.98],[4.853,44.977],[4.853,44.975],[4.853,44.974],[4.855,44.973],[4.855,44.973],[4.855,44.972],[4.855,44.972],[4.856,44.971],[4.856,44.97],[4.857,44.97],[4.857,44.969],[4.858,44.968],[4.858,44.968],[4.857,44.967],[4.857,44.967],[4.858,44.966],[4.859,44.966],[4.859,44.965],[4.859,44.966],[4.86,44.966],[4.86,44.965],[4.86,44.965],[4.86,44.964],[4.86,44.964],[4.861,44.964],[4.861,44.964],[4.862,44.962],[4.864,44.961],[4.864,44.96],[4.865,44.96],[4.866,44.96],[4.868,44.959],[4.87,44.958],[4.872,44.957],[4.873,44.956],[4.875,44.955],[4.875,44.954],[4.876,44.953],[4.876,44.952],[4.876,44.952],[4.876,44.951],[4.877,44.949],[4.878,44.947],[4.879,44.945],[4.879,44.945],[4.881,44.943],[4.883,44.942],[4.884,44.94],[4.884,44.939],[4.885,44.937],[4.885,44.936],[4.884,44.935],[4.883,44.934],[4.882,44.933],[4.88,44.931],[4.878,44.929],[4.876,44.927],[4.874,44.925],[4.873,44.925],[4.872,44.922],[4.87,44.919],[4.87,44.918],[4.869,44.915],[4.868,44.913],[4.868,44.911],[4.867,44.91],[4.866,44.908],[4.863,44.906],[4.859,44.905],[4.857,44.904],[4.856,44.904],[4.855,44.904],[4.854,44.904],[4.853,44.902],[4.852,44.898],[4.852,44.896],[4.852,44.896],[4.853,44.894],[4.853,44.892],[4.854,44.89],[4.854,44.888],[4.856,44.887],[4.857,44.884],[4.858,44.882],[4.859,44.882],[4.859,44.881],[4.86,44.879],[4.86,44.878],[4.86,44.877],[4.859,44.875],[4.858,44.874],[4.857,44.873],[4.856,44.872],[4.851,44.868],[4.849,44.867],[4.848,44.865],[4.847,44.864],[4.846,44.862],[4.845,44.86],[4.844,44.86],[4.843,44.859],[4.841,44.856],[4.84,44.855],[4.839,44.854],[4.838,44.853],[4.838,44.853],[4.838,44.854],[4.837,44.854],[4.837,44.852],[4.837,44.852],[4.833,44.849],[4.828,44.846],[4.824,44.844],[4.823,44.843],[4.822,44.842],[4.819,44.839],[4.819,44.837],[4.816,44.833],[4.815,44.829],[4.813,44.826],[4.812,44.822],[4.81,44.819],[4.809,44.816],[4.809,44.815],[4.809,44.812],[4.808,44.811],[4.806,44.81],[4.806,44.809],[4.791,44.803],[4.787,44.802],[4.782,44.799],[4.78,44.797],[4.776,44.791],[4.772,44.787],[4.769,44.785],[4.767,44.782],[4.767,44.781],[4.766,44.78],[4.764,44.779],[4.763,44.777],[4.762,44.776],[4.762,44.775],[4.76,44.773],[4.759,44.773],[4.756,44.77],[4.755,44.769],[4.754,44.767],[4.752,44.763],[4.751,44.759],[4.75,44.758],[4.751,44.756],[4.751,44.754],[4.752,44.753],[4.756,44.748],[4.757,44.746],[4.759,44.741],[4.76,44.739],[4.761,44.738],[4.761,44.737],[4.762,44.736],[4.761,44.736],[4.764,44.727],[4.765,44.726],[4.764,44.724],[4.764,44.722],[4.764,44.719],[4.764,44.718],[4.764,44.718],[4.764,44.717],[4.765,44.715],[4.768,44.712],[4.769,44.711],[4.77,44.709],[4.77,44.709],[4.772,44.707],[4.773,44.706],[4.773,44.704],[4.774,44.703],[4.774,44.699],[4.774,44.696],[4.775,44.694],[4.776,44.692],[4.777,44.691],[4.777,44.69],[4.779,44.688],[4.781,44.685],[4.781,44.684],[4.782,44.678],[4.781,44.668],[4.781,44.664],[4.776,44.645],[4.772,44.644],[4.771,44.643],[4.771,44.643],[4.771,44.643],[4.771,44.642],[4.771,44.642],[4.768,44.634],[4.766,44.632],[4.762,44.627],[4.762,44.626],[4.761,44.624],[4.761,44.623],[4.758,44.62],[4.756,44.617],[4.755,44.616],[4.753,44.614],[4.751,44.613],[4.75,44.611],[4.748,44.608],[4.746,44.605],[4.745,44.604],[4.744,44.602],[4.739,44.596],[4.737,44.597],[4.736,44.597],[4.714,44.587],[4.713,44.586],[4.712,44.585],[4.71,44.584],[4.709,44.583],[4.707,44.58],[4.706,44.579],[4.706,44.578],[4.704,44.576],[4.702,44.573],[4.702,44.572],[4.702,44.571],[4.699,44.564],[4.696,44.561],[4.694,44.56],[4.694,44.559],[4.691,44.547],[4.693,44.544],[4.694,44.541],[4.696,44.538],[4.696,44.537],[4.698,44.534],[4.699,44.532],[4.699,44.531],[4.7,44.53],[4.7,44.529],[4.7,44.528],[4.7,44.526],[4.699,44.525],[4.698,44.524],[4.698,44.523],[4.697,44.522],[4.695,44.52],[4.694,44.52],[4.693,44.519],[4.691,44.517],[4.69,44.513],[4.689,44.51],[4.688,44.506],[4.687,44.502],[4.686,44.501],[4.686,44.5],[4.686,44.499],[4.687,44.496],[4.688,44.493],[4.688,44.492],[4.688,44.492],[4.698,44.486],[4.698,44.486],[4.7,44.482],[4.7,44.482],[4.701,44.481],[4.702,44.479],[4.702,44.478],[4.701,44.477],[4.701,44.476],[4.701,44.474],[4.701,44.473],[4.701,44.472],[4.702,44.472],[4.702,44.47],[4.702,44.468],[4.702,44.464],[4.702,44.459],[4.702,44.457],[4.7,44.453],[4.7,44.452],[4.699,44.452],[4.699,44.451],[4.699,44.449],[4.699,44.447],[4.698,44.446],[4.698,44.445],[4.696,44.443],[4.696,44.443],[4.695,44.443],[4.693,44.441],[4.691,44.44],[4.687,44.438],[4.684,44.438],[4.681,44.437],[4.675,44.436],[4.672,44.435],[4.67,44.434],[4.668,44.431],[4.667,44.427],[4.666,44.426],[4.666,44.425],[4.666,44.423],[4.665,44.421],[4.665,44.418],[4.665,44.415],[4.665,44.413],[4.665,44.412],[4.666,44.411],[4.666,44.41],[4.665,44.41],[4.665,44.41],[4.665,44.408],[4.664,44.407],[4.664,44.407],[4.664,44.404],[4.664,44.402],[4.665,44.401],[4.665,44.401],[4.665,44.4],[4.665,44.399],[4.666,44.398],[4.666,44.398],[4.666,44.397],[4.665,44.397],[4.665,44.396],[4.665,44.395],[4.655,44.385],[4.653,44.383],[4.652,44.381],[4.651,44.38],[4.651,44.379],[4.651,44.379],[4.651,44.378],[4.65,44.378],[4.65,44.377],[4.649,44.376],[4.649,44.373],[4.648,44.368],[4.647,44.366],[4.647,44.364],[4.647,44.364],[4.647,44.36],[4.647,44.358],[4.646,44.353],[4.646,44.352],[4.646,44.349],[4.647,44.342],[4.648,44.342],[4.648,44.339],[4.647,44.338],[4.649,44.336],[4.65,44.331],[4.652,44.321],[4.649,44.313],[4.653,44.302],[4.652,44.294],[4.652,44.294],[4.652,44.292],[4.651,44.288],[4.65,44.288],[4.65,44.287],[4.65,44.286],[4.65,44.285],[4.65,44.285],[4.651,44.287],[4.651,44.286],[4.651,44.283],[4.651,44.282],[4.65,44.282],[4.65,44.28],[4.65,44.276],[4.65,44.276],[4.649,44.274],[4.648,44.271],[4.648,44.267],[4.648,44.266],[4.646,44.266],[4.647,44.264],[4.648,44.262],[4.649,44.26],[4.651,44.258],[4.652,44.257],[4.653,44.255],[4.654,44.254],[4.656,44.252],[4.657,44.25],[4.66,44.248],[4.661,44.246],[4.663,44.246],[4.663,44.245],[4.664,44.244],[4.666,44.243],[4.668,44.242],[4.671,44.24],[4.672,44.239],[4.674,44.238],[4.675,44.236],[4.676,44.236],[4.677,44.234],[4.678,44.23],[4.677,44.227],[4.675,44.225],[4.674,44.224],[4.674,44.225],[4.674,44.225],[4.674,44.225],[4.673,44.224],[4.672,44.223],[4.675,44.213],[4.676,44.212],[4.677,44.211],[4.678,44.21],[4.681,44.21],[4.682,44.211],[4.684,44.212],[4.686,44.212],[4.687,44.212],[4.688,44.212],[4.69,44.212],[4.691,44.212],[4.691,44.213],[4.69,44.213],[4.69,44.213],[4.691,44.214],[4.694,44.215],[4.696,44.215],[4.698,44.215],[4.699,44.216],[4.701,44.215],[4.701,44.215],[4.7,44.215],[4.699,44.215],[4.699,44.214],[4.7,44.214],[4.7,44.214],[4.699,44.213],[4.7,44.213],[4.701,44.213],[4.701,44.214],[4.701,44.214],[4.702,44.214],[4.703,44.214],[4.705,44.214],[4.707,44.212],[4.708,44.21],[4.709,44.207],[4.707,44.206],[4.705,44.203],[4.703,44.202],[4.702,44.199],[4.702,44.197],[4.703,44.197],[4.703,44.196],[4.703,44.195],[4.703,44.194],[4.704,44.193],[4.705,44.191],[4.707,44.188],[4.707,44.187],[4.71,44.182],[4.712,44.18],[4.72,44.162],[4.721,44.154],[4.721,44.151],[4.722,44.15],[4.722,44.149],[4.722,44.147],[4.722,44.145],[4.722,44.143],[4.721,44.14],[4.72,44.139],[4.718,44.136],[4.717,44.136],[4.716,44.134],[4.715,44.133],[4.715,44.132],[4.715,44.128],[4.715,44.126],[4.717,44.125]],[[5.363,43.305],[5.264,43.291]],[[9.564,42.091],[9.564,42.191],[9.564,42.291],[9.564,42.391],[9.564,42.491],[9.564,42.591],[9.564,42.691],[9.564,42.791],[9.564,42.891],[9.464,42.991],[9.364,43.091],[9.264,43.091],[9.164,43.091],[9.064,43.091],[8.964,43.091],[8.864,43.091],[8.764,43.091],[8.664,43.091],[8.564,43.091],[8.464,43.091],[8.364,43.091],[8.264,43.091],[8.164,43.091],[8.064,43.091],[7.964,43.091],[7.864,43.091],[7.764,43.091],[7.664,43.091],[7.564,43.091],[7.464,43.091],[7.364,43.091],[7.264,43.091],[7.164,43.091],[7.064,43.091],[6.964,43.091],[6.864,43.091],[6.764,43.091],[6.664,43.091],[6.564,43.091],[6.464,43.091],[6.364,43.091],[6.264,43.091],[6.164,43.091],[6.064,43.091],[5.964,43.091],[5.864,42.991],[5.764,43.091],[5.664,43.191],[5.564,43.191],[5.464,43.191],[5.364,43.191],[5.264,43.291]],[[6.003,47.224],[6.043,47.252],[6.069,47.275],[6.127,47.299],[6.259,47.341],[6.385,47.381],[6.456,47.399],[6.569,47.419],[6.657,47.439],[6.72,47.448],[6.76,47.447],[6.786,47.445],[6.811,47.45],[6.859,47.466],[6.916,47.495],[7.019,47.529],[7.131,47.564],[7.235,47.594],[7.341,47.629],[7.414,47.651],[7.497,47.667]],[[9.564,42.091],[9.526,42.124]],[[10.264,42.691],[10.164,42.591],[10.064,42.491],[9.964,42.491],[9.864,42.391],[9.764,42.291],[9.664,42.191],[9.564,42.091]],[[10.264,42.691],[10.24,42.743]],[[10.464,42.991],[10.464,42.891],[10.464,42.791],[10.364,42.691],[10.264,42.691]],[[10.496,42.996],[10.464,42.991]],[[11.264,42.391],[11.164,42.491],[11.064,42.591],[10.964,42.691],[10.864,42.691],[10.764,42.791],[10.664,42.891],[10.564,42.891],[10.464,42.991]],[[12.287,41.754],[12.264,41.691],[12.164,41.791],[12.064,41.891],[11.964,41.991],[11.864,41.991],[11.764,42.091],[11.664,42.191],[11.564,42.291],[11.464,42.291],[11.364,42.391],[11.264,42.391]],[[11.264,42.391],[11.288,42.406]],[[12.474,41.89],[12.474,41.89],[12.475,41.888],[12.469,41.882],[12.468,41.877],[12.472,41.868],[12.47,41.863],[12.461,41.858],[12.46,41.855],[12.46,41.854],[12.462,41.85],[12.444,41.834],[12.435,41.829],[12.426,41.831],[12.421,41.828],[12.418,41.822],[12.416,41.818],[12.411,41.809],[12.405,41.805],[12.394,41.805],[12.386,41.802],[12.375,41.804],[12.37,41.805],[12.364,41.807],[12.36,41.806],[12.352,41.806],[12.343,41.809],[12.339,41.806],[12.337,41.799],[12.332,41.798],[12.323,41.799],[12.317,41.799],[12.309,41.8],[12.302,41.797],[12.295,41.791],[12.284,41.789],[12.278,41.782],[12.273,41.773],[12.274,41.771],[12.274,41.768],[12.275,41.764],[12.28,41.758],[12.271,41.753]]]},"pair": 50235,"direction": 0,"month": 3,"priority": 1,"expense": 12.375,"duration": 86.638,"length": 2947.752},{"type": "Feature", "geometry": {"type":"MultiLineString","coordinates":[[[-0.083,51.52],[0.464,51.491],[0.564,51.491],[0.664,51.491],[0.764,51.491],[0.864,51.491],[0.964,51.591],[1.064,51.691],[1.164,51.691],[1.264,51.791],[1.364,51.891],[1.464,51.991],[1.564,51.991],[1.664,52.091],[1.764,52.191],[1.864,52.191],[1.964,52.191],[2.064,52.191],[2.164,52.191],[2.264,52.191],[2.364,52.191],[2.464,52.191],[2.564,52.191],[2.664,52.191],[2.764,52.191],[2.864,52.191],[2.964,52.191],[3.064,52.191],[3.164,52.191],[3.264,52.191],[3.364,52.191],[3.464,52.191],[3.564,52.191],[3.664,52.191],[3.764,52.191],[3.864,52.191],[3.964,52.191],[4.064,52.191],[4.164,52.191],[4.264,52.191],[4.364,52.191],[4.398,52.198]],[[7.512,47.669],[7.512,47.672],[7.512,47.675],[7.512,47.677],[7.513,47.678],[7.513,47.68],[7.513,47.682],[7.513,47.684],[7.512,47.685],[7.512,47.687],[7.511,47.688],[7.51,47.689],[7.51,47.691],[7.509,47.693],[7.508,47.695],[7.507,47.697],[7.507,47.698],[7.507,47.698],[7.507,47.7],[7.508,47.701],[7.508,47.702],[7.511,47.707],[7.512,47.708],[7.513,47.708],[7.514,47.709],[7.515,47.709],[7.519,47.712],[7.521,47.714],[7.53,47.72],[7.532,47.722],[7.534,47.723],[7.535,47.724],[7.536,47.725],[7.537,47.726],[7.538,47.727],[7.539,47.73],[7.54,47.731],[7.54,47.733],[7.54,47.734],[7.54,47.738],[7.539,47.74],[7.538,47.741],[7.538,47.742],[7.536,47.744],[7.535,47.746],[7.534,47.748],[7.532,47.751],[7.531,47.752],[7.53,47.754],[7.528,47.758],[7.527,47.76],[7.526,47.76],[7.525,47.762],[7.524,47.764],[7.524,47.765],[7.523,47.767],[7.523,47.767],[7.522,47.77],[7.522,47.771],[7.522,47.773],[7.522,47.774],[7.522,47.775],[7.522,47.775],[7.524,47.776],[7.525,47.777],[7.524,47.778],[7.524,47.78],[7.524,47.781],[7.524,47.782],[7.524,47.784],[7.525,47.786],[7.525,47.788],[7.526,47.789],[7.526,47.789],[7.526,47.79],[7.527,47.791],[7.527,47.791],[7.528,47.792],[7.529,47.794],[7.53,47.795],[7.532,47.799],[7.537,47.804],[7.54,47.808],[7.542,47.811],[7.543,47.814],[7.545,47.817],[7.546,47.82],[7.546,47.822],[7.547,47.823],[7.547,47.824],[7.547,47.825],[7.548,47.825],[7.548,47.827],[7.549,47.828],[7.549,47.829],[7.551,47.832],[7.553,47.836],[7.554,47.837],[7.555,47.84],[7.556,47.842],[7.556,47.845],[7.556,47.846],[7.556,47.848],[7.556,47.849],[7.556,47.85],[7.556,47.853],[7.555,47.857],[7.555,47.857],[7.554,47.861],[7.553,47.865],[7.553,47.869],[7.552,47.871],[7.552,47.871],[7.552,47.872],[7.552,47.875],[7.552,47.877],[7.553,47.879],[7.559,47.89],[7.56,47.892],[7.561,47.895],[7.564,47.9],[7.564,47.901],[7.565,47.902],[7.565,47.903],[7.566,47.904],[7.567,47.909],[7.568,47.911],[7.57,47.916],[7.571,47.919],[7.572,47.92],[7.572,47.921],[7.573,47.923],[7.573,47.925],[7.574,47.926],[7.575,47.928],[7.575,47.929],[7.576,47.931],[7.577,47.932],[7.58,47.935],[7.58,47.936],[7.58,47.936],[7.581,47.937],[7.582,47.938],[7.582,47.939],[7.584,47.94],[7.586,47.942],[7.595,47.949],[7.596,47.95],[7.596,47.951],[7.598,47.952],[7.598,47.952],[7.598,47.953],[7.6,47.954],[7.603,47.957],[7.605,47.959],[7.606,47.96],[7.608,47.964],[7.61,47.967],[7.611,47.969],[7.611,47.97],[7.612,47.972],[7.612,47.973],[7.612,47.976],[7.612,47.978],[7.612,47.98],[7.612,47.982],[7.611,47.984],[7.61,47.986],[7.609,47.988],[7.608,47.99],[7.607,47.991],[7.606,47.993],[7.604,47.995],[7.603,47.996],[7.601,47.998],[7.6,47.999],[7.599,48],[7.599,48],[7.597,48.002],[7.589,48.008],[7.582,48.013],[7.579,48.016],[7.574,48.019],[7.573,48.02],[7.57,48.022],[7.569,48.024],[7.567,48.027],[7.567,48.028],[7.566,48.03],[7.567,48.033],[7.57,48.039],[7.573,48.046],[7.574,48.048],[7.574,48.054],[7.574,48.059],[7.573,48.062],[7.568,48.069],[7.57,48.078],[7.569,48.082],[7.57,48.085],[7.572,48.089],[7.575,48.092],[7.58,48.101],[7.58,48.105],[7.578,48.112],[7.578,48.116],[7.578,48.121],[7.578,48.122],[7.581,48.125],[7.584,48.127],[7.585,48.128],[7.587,48.129],[7.591,48.13],[7.595,48.132],[7.597,48.134],[7.598,48.137],[7.6,48.14],[7.599,48.143],[7.599,48.145],[7.598,48.147],[7.598,48.149],[7.599,48.15],[7.607,48.163],[7.611,48.169],[7.614,48.171],[7.619,48.175],[7.62,48.176],[7.625,48.181],[7.63,48.185],[7.631,48.187],[7.635,48.194],[7.638,48.2],[7.64,48.202],[7.641,48.205],[7.644,48.208],[7.645,48.209],[7.646,48.21],[7.648,48.212],[7.654,48.218],[7.658,48.223],[7.661,48.228],[7.663,48.235],[7.665,48.239],[7.669,48.245],[7.67,48.249],[7.676,48.252],[7.676,48.261],[7.677,48.264],[7.678,48.268],[7.68,48.269],[7.68,48.273],[7.681,48.273],[7.68,48.274],[7.681,48.275],[7.683,48.276],[7.683,48.277],[7.681,48.277],[7.681,48.278],[7.683,48.278],[7.684,48.278],[7.685,48.279],[7.685,48.28],[7.684,48.281],[7.689,48.294],[7.692,48.3],[7.697,48.305],[7.703,48.309],[7.709,48.311],[7.724,48.315],[7.731,48.316],[7.732,48.318],[7.734,48.318],[7.737,48.32],[7.739,48.322],[7.741,48.324],[7.742,48.325],[7.744,48.328],[7.744,48.331],[7.746,48.333],[7.749,48.336],[7.747,48.347],[7.743,48.371],[7.74,48.383],[7.737,48.394],[7.743,48.416],[7.745,48.422],[7.745,48.425],[7.752,48.444],[7.766,48.48],[7.771,48.492],[7.78,48.496],[7.795,48.502],[7.802,48.507],[7.805,48.514],[7.806,48.521],[7.805,48.53],[7.805,48.532],[7.805,48.548],[7.805,48.56],[7.803,48.57],[7.801,48.574],[7.801,48.572],[7.8,48.574],[7.799,48.576],[7.799,48.576],[7.799,48.577],[7.799,48.577],[7.798,48.579],[7.798,48.582],[7.798,48.583],[7.799,48.585],[7.8,48.587],[7.8,48.588],[7.801,48.59],[7.802,48.591],[7.802,48.592],[7.803,48.593],[7.803,48.594],[7.804,48.594],[7.806,48.597],[7.81,48.601],[7.811,48.602],[7.815,48.607],[7.817,48.609],[7.82,48.612],[7.823,48.615],[7.824,48.616],[7.826,48.618],[7.828,48.62],[7.829,48.622],[7.83,48.625],[7.831,48.629],[7.832,48.63],[7.832,48.633],[7.833,48.634],[7.834,48.637],[7.835,48.639],[7.836,48.641],[7.838,48.643],[7.839,48.644],[7.838,48.644],[7.841,48.646],[7.843,48.647],[7.845,48.648],[7.848,48.648],[7.85,48.649],[7.852,48.649],[7.853,48.65],[7.855,48.65],[7.858,48.651],[7.867,48.654],[7.871,48.656],[7.873,48.657],[7.874,48.657],[7.873,48.657],[7.877,48.658],[7.882,48.66],[7.885,48.661],[7.888,48.663],[7.889,48.664],[7.889,48.665],[7.89,48.666],[7.891,48.667],[7.895,48.669],[7.898,48.672],[7.899,48.673],[7.899,48.674],[7.9,48.676],[7.9,48.677],[7.902,48.679],[7.903,48.681],[7.903,48.681],[7.905,48.683],[7.905,48.683],[7.909,48.686],[7.911,48.688],[7.912,48.688],[7.913,48.688],[7.913,48.689],[7.914,48.689],[7.915,48.689],[7.915,48.69],[7.918,48.691],[7.923,48.694],[7.926,48.696],[7.927,48.697],[7.928,48.697],[7.931,48.698],[7.933,48.699],[7.935,48.7],[7.938,48.702],[7.94,48.703],[7.942,48.706],[7.951,48.713],[7.952,48.713],[7.952,48.714],[7.952,48.714],[7.955,48.716],[7.96,48.72],[7.963,48.723],[7.965,48.726],[7.965,48.727],[7.966,48.728],[7.966,48.731],[7.965,48.737],[7.965,48.741],[7.964,48.744],[7.964,48.746],[7.964,48.746],[7.964,48.746],[7.965,48.749],[7.966,48.751],[7.966,48.753],[7.967,48.755],[7.969,48.758],[7.971,48.759],[7.973,48.76],[7.975,48.76],[7.979,48.761],[7.981,48.761],[7.982,48.761],[7.984,48.761],[7.989,48.76],[7.992,48.76],[7.998,48.759],[8,48.759],[8.003,48.758],[8.006,48.759],[8.01,48.76],[8.014,48.761],[8.018,48.764],[8.021,48.767],[8.022,48.77],[8.022,48.772],[8.024,48.777],[8.024,48.778],[8.024,48.78],[8.024,48.782],[8.025,48.784],[8.025,48.785],[8.027,48.786],[8.029,48.787],[8.03,48.788],[8.03,48.789],[8.032,48.79],[8.035,48.792],[8.036,48.792],[8.038,48.791],[8.042,48.792],[8.046,48.792],[8.047,48.792],[8.051,48.792],[8.054,48.791],[8.055,48.791],[8.056,48.791],[8.058,48.79],[8.062,48.79],[8.065,48.791],[8.068,48.792],[8.069,48.793],[8.069,48.794],[8.069,48.794],[8.069,48.795],[8.069,48.795],[8.07,48.796],[8.071,48.796],[8.073,48.796],[8.074,48.796],[8.076,48.796],[8.077,48.797],[8.08,48.798],[8.081,48.799],[8.086,48.803],[8.091,48.807],[8.095,48.811],[8.097,48.812],[8.098,48.813],[8.101,48.817],[8.102,48.82],[8.103,48.824],[8.103,48.827],[8.103,48.831],[8.104,48.833],[8.105,48.835],[8.106,48.836],[8.106,48.837],[8.111,48.844],[8.111,48.844],[8.11,48.845],[8.11,48.845],[8.11,48.845],[8.109,48.845],[8.109,48.845],[8.109,48.845],[8.11,48.846],[8.11,48.846],[8.11,48.846],[8.11,48.847],[8.11,48.847],[8.11,48.848],[8.112,48.848],[8.113,48.849],[8.114,48.852],[8.114,48.852],[8.117,48.857],[8.119,48.864],[8.124,48.871],[8.125,48.874],[8.126,48.875],[8.127,48.876],[8.127,48.877],[8.133,48.886],[8.137,48.892],[8.137,48.893],[8.139,48.894],[8.139,48.895],[8.14,48.896],[8.142,48.898],[8.142,48.899],[8.143,48.9],[8.144,48.901],[8.15,48.908],[8.156,48.914],[8.158,48.916],[8.158,48.916],[8.159,48.918],[8.163,48.921],[8.167,48.925],[8.172,48.929],[8.175,48.932],[8.177,48.934],[8.178,48.935],[8.179,48.936],[8.182,48.94],[8.184,48.942],[8.183,48.942],[8.184,48.943],[8.186,48.945],[8.189,48.95],[8.19,48.951],[8.191,48.953],[8.194,48.956],[8.195,48.958],[8.197,48.959],[8.201,48.961],[8.208,48.963],[8.213,48.964],[8.214,48.964],[8.215,48.964],[8.218,48.965],[8.221,48.965],[8.221,48.966],[8.222,48.965],[8.224,48.966],[8.232,48.967],[8.232,48.968],[8.249,48.976],[8.261,48.982],[8.267,48.986],[8.27,48.989],[8.272,48.99],[8.279,48.993],[8.284,48.996],[8.29,49.001],[8.297,49.012],[8.3,49.02],[8.305,49.04],[8.306,49.043],[8.307,49.044],[8.316,49.061],[8.327,49.071],[8.334,49.074],[8.339,49.077],[8.344,49.08],[8.35,49.085],[8.355,49.092],[8.356,49.094],[8.359,49.099],[8.367,49.133],[8.37,49.144],[8.371,49.147],[8.371,49.154],[8.368,49.161],[8.367,49.165],[8.37,49.172],[8.375,49.177],[8.377,49.182],[8.384,49.194],[8.386,49.204],[8.386,49.209],[8.385,49.212],[8.384,49.216],[8.385,49.231],[8.394,49.243],[8.4,49.247],[8.409,49.251],[8.418,49.254],[8.438,49.263],[8.449,49.271],[8.449,49.271],[8.453,49.278],[8.458,49.282],[8.46,49.284],[8.463,49.285],[8.483,49.29],[8.488,49.293],[8.49,49.296],[8.49,49.3],[8.488,49.303],[8.484,49.305],[8.47,49.31],[8.466,49.311],[8.459,49.315],[8.452,49.319],[8.449,49.323],[8.452,49.331],[8.454,49.335],[8.459,49.339],[8.469,49.344],[8.475,49.347],[8.481,49.349],[8.489,49.357],[8.492,49.36],[8.497,49.366],[8.5,49.374],[8.502,49.381],[8.502,49.386],[8.502,49.391],[8.498,49.397],[8.496,49.404],[8.495,49.413],[8.503,49.425],[8.508,49.436],[8.504,49.439],[8.497,49.441],[8.491,49.445],[8.478,49.445],[8.472,49.445],[8.458,49.446],[8.453,49.447],[8.446,49.45],[8.44,49.455],[8.44,49.46],[8.451,49.464],[8.457,49.467],[8.462,49.475],[8.457,49.479],[8.451,49.483],[8.44,49.496],[8.438,49.502],[8.432,49.514],[8.428,49.522],[8.423,49.528],[8.421,49.534],[8.412,49.548],[8.41,49.554],[8.411,49.561],[8.42,49.572],[8.416,49.583],[8.413,49.587],[8.409,49.592],[8.41,49.594],[8.409,49.595],[8.407,49.601],[8.403,49.606],[8.397,49.61],[8.39,49.614],[8.38,49.623],[8.376,49.629],[8.372,49.638],[8.37,49.646],[8.37,49.661],[8.364,49.665],[8.36,49.67],[8.354,49.682],[8.354,49.688],[8.357,49.693],[8.362,49.7],[8.37,49.703],[8.381,49.707],[8.421,49.716],[8.426,49.717],[8.437,49.725],[8.458,49.738],[8.478,49.752],[8.479,49.756],[8.478,49.76],[8.473,49.765],[8.459,49.765],[8.442,49.762],[8.427,49.763],[8.421,49.768],[8.416,49.775],[8.412,49.783],[8.406,49.799],[8.401,49.804],[8.37,49.826],[8.371,49.835],[8.379,49.85],[8.38,49.852],[8.378,49.856],[8.372,49.86],[8.359,49.864],[8.355,49.866],[8.345,49.872],[8.34,49.879],[8.339,49.889],[8.347,49.911],[8.346,49.918],[8.344,49.925],[8.341,49.938],[8.339,49.945],[8.336,49.952],[8.315,49.973],[8.303,49.981],[8.299,49.983],[8.29,49.989],[8.285,49.99],[8.28,49.995],[8.273,50.001],[8.272,50.004],[8.272,50.007],[8.268,50.012],[8.265,50.015],[8.259,50.02],[8.236,50.028],[8.208,50.034],[8.201,50.034],[8.192,50.035],[8.168,50.032],[8.155,50.028],[8.118,50.02],[8.102,50.016],[8.027,50.001],[8.02,49.999],[8.003,49.993],[7.996,49.988],[7.988,49.987],[7.979,49.984],[7.967,49.98],[7.952,49.978],[7.941,49.978],[7.895,49.973],[7.875,49.974],[7.86,49.985],[7.859,49.989],[7.859,50],[7.854,50.009],[7.849,50.013],[7.844,50.016],[7.831,50.021],[7.817,50.032],[7.802,50.041],[7.788,50.046],[7.775,50.054],[7.774,50.058],[7.775,50.065],[7.775,50.068],[7.776,50.072],[7.774,50.077],[7.769,50.08],[7.758,50.088],[7.734,50.108],[7.727,50.11],[7.724,50.115],[7.726,50.118],[7.735,50.126],[7.737,50.134],[7.728,50.14],[7.725,50.148],[7.711,50.157],[7.702,50.166],[7.697,50.169],[7.69,50.171],[7.68,50.17],[7.67,50.173],[7.664,50.174],[7.648,50.181],[7.647,50.184],[7.649,50.19],[7.648,50.196],[7.645,50.198],[7.644,50.201],[7.627,50.211],[7.621,50.214],[7.618,50.222],[7.613,50.227],[7.604,50.232],[7.59,50.233],[7.585,50.233],[7.577,50.24],[7.58,50.247],[7.586,50.249],[7.591,50.25],[7.604,50.25],[7.618,50.248],[7.619,50.248],[7.636,50.247],[7.638,50.248],[7.646,50.252],[7.648,50.255],[7.649,50.26],[7.647,50.265],[7.634,50.277],[7.631,50.279],[7.628,50.281],[7.62,50.287],[7.614,50.29],[7.597,50.309],[7.595,50.309],[7.595,50.309],[7.594,50.311],[7.594,50.311],[7.593,50.314],[7.589,50.319],[7.592,50.327],[7.592,50.327],[7.594,50.333],[7.596,50.339],[7.605,50.355],[7.61,50.365],[7.615,50.375],[7.616,50.378],[7.619,50.384],[7.62,50.389],[7.616,50.395],[7.609,50.399],[7.594,50.404],[7.574,50.414],[7.554,50.422],[7.539,50.425],[7.528,50.425],[7.522,50.423],[7.518,50.422],[7.51,50.417],[7.502,50.415],[7.489,50.415],[7.478,50.416],[7.464,50.421],[7.458,50.425],[7.451,50.434],[7.445,50.441],[7.441,50.443],[7.436,50.444],[7.428,50.445],[7.418,50.443],[7.404,50.443],[7.393,50.445],[7.387,50.448],[7.379,50.452],[7.356,50.466],[7.352,50.471],[7.337,50.483],[7.325,50.494],[7.31,50.506],[7.299,50.517],[7.296,50.521],[7.292,50.527],[7.288,50.532],[7.285,50.537],[7.271,50.566],[7.267,50.571],[7.258,50.576],[7.235,50.58],[7.224,50.584],[7.214,50.59],[7.212,50.596],[7.214,50.6],[7.216,50.603],[7.216,50.608],[7.215,50.623],[7.214,50.635],[7.215,50.643],[7.212,50.649],[7.209,50.652],[7.207,50.658],[7.203,50.661],[7.198,50.662],[7.195,50.664],[7.184,50.678],[7.179,50.687],[7.173,50.692],[7.166,50.707],[7.161,50.712],[7.154,50.715],[7.134,50.721],[7.127,50.724],[7.122,50.727],[7.12,50.728],[7.113,50.739],[7.107,50.75],[7.105,50.755],[7.101,50.757],[7.09,50.762],[7.09,50.762],[7.088,50.763],[7.088,50.763],[7.066,50.773],[7.059,50.776],[7.057,50.776],[7.046,50.782],[7.037,50.788],[7.034,50.797],[7.034,50.798],[7.035,50.803],[7.034,50.809],[7.029,50.816],[7.027,50.818],[7.023,50.821],[7.021,50.822],[7.012,50.824],[7,50.826],[6.999,50.826],[6.988,50.829],[6.982,50.834],[6.982,50.839],[6.983,50.84],[6.986,50.842],[6.996,50.846],[7.012,50.854],[7.018,50.859],[7.022,50.863],[7.033,50.868],[7.042,50.87],[7.049,50.874],[7.052,50.88],[7.052,50.886],[7.047,50.89],[7.039,50.893],[7.029,50.894],[7.013,50.894],[7.012,50.894],[7.005,50.895],[6.997,50.897],[6.991,50.902],[6.989,50.903],[6.977,50.914],[6.974,50.918],[6.969,50.925],[6.965,50.932],[6.96,50.939],[6.966,50.948],[6.966,50.948],[6.971,50.952],[6.992,50.965],[6.995,50.971],[6.992,50.975],[6.986,50.979],[6.972,50.978],[6.965,50.985],[6.96,50.992],[6.959,50.998],[6.96,51.003],[6.969,51.015],[6.968,51.021],[6.959,51.029],[6.95,51.033],[6.948,51.034],[6.927,51.046],[6.911,51.052],[6.856,51.071],[6.854,51.072],[6.852,51.074],[6.852,51.075],[6.85,51.079],[6.851,51.081],[6.851,51.083],[6.853,51.085],[6.854,51.086],[6.864,51.091],[6.875,51.094],[6.879,51.1],[6.879,51.105],[6.877,51.108],[6.864,51.12],[6.861,51.122],[6.853,51.127],[6.847,51.131],[6.846,51.137],[6.848,51.144],[6.853,51.15],[6.853,51.154],[6.853,51.155],[6.853,51.155],[6.849,51.157],[6.841,51.158],[6.841,51.158],[6.836,51.159],[6.833,51.159],[6.815,51.144],[6.806,51.142],[6.799,51.145],[6.797,51.146],[6.795,51.152],[6.799,51.161],[6.799,51.169],[6.795,51.17],[6.795,51.171],[6.792,51.175],[6.792,51.176],[6.788,51.179],[6.78,51.181],[6.766,51.179],[6.764,51.179],[6.759,51.18],[6.755,51.18],[6.752,51.18],[6.737,51.184],[6.733,51.192],[6.729,51.203],[6.729,51.208],[6.726,51.217],[6.728,51.225],[6.732,51.226],[6.732,51.226],[6.742,51.226],[6.746,51.225],[6.755,51.22],[6.758,51.22],[6.763,51.222],[6.764,51.227],[6.764,51.227],[6.764,51.232],[6.763,51.238],[6.759,51.243],[6.751,51.247],[6.75,51.247],[6.746,51.252],[6.722,51.259],[6.716,51.261],[6.707,51.267],[6.705,51.271],[6.705,51.281],[6.712,51.286],[6.714,51.287],[6.731,51.303],[6.732,51.309],[6.732,51.316],[6.729,51.32],[6.722,51.327],[6.706,51.334],[6.664,51.345],[6.66,51.346],[6.656,51.351],[6.662,51.365],[6.664,51.366],[6.67,51.369],[6.68,51.372],[6.705,51.373],[6.712,51.376],[6.726,51.383],[6.739,51.392],[6.743,51.397],[6.744,51.401],[6.744,51.406],[6.74,51.41],[6.732,51.418],[6.718,51.427],[6.713,51.434],[6.712,51.439],[6.715,51.448],[6.724,51.455],[6.721,51.462],[6.715,51.466],[6.69,51.475],[6.686,51.481],[6.688,51.486],[6.702,51.494],[6.715,51.498],[6.723,51.508],[6.717,51.514],[6.713,51.52],[6.709,51.521],[6.691,51.528],[6.686,51.533],[6.681,51.54],[6.682,51.546],[6.689,51.553],[6.691,51.556],[6.691,51.56],[6.691,51.565],[6.687,51.571],[6.678,51.576],[6.662,51.578],[6.652,51.577],[6.642,51.574],[6.633,51.57],[6.63,51.569],[6.612,51.568],[6.606,51.57],[6.602,51.573],[6.601,51.583],[6.603,51.59],[6.6,51.596],[6.592,51.612],[6.59,51.619],[6.592,51.625],[6.599,51.63],[6.599,51.634],[6.602,51.636],[6.605,51.642],[6.603,51.652],[6.592,51.657],[6.585,51.66],[6.566,51.659],[6.56,51.659],[6.543,51.66],[6.523,51.662],[6.499,51.662],[6.486,51.667],[6.48,51.671],[6.477,51.675],[6.476,51.68],[6.475,51.687],[6.473,51.691],[6.468,51.697],[6.463,51.702],[6.461,51.703],[6.454,51.706],[6.443,51.708],[6.433,51.71],[6.429,51.71],[6.418,51.713],[6.411,51.719],[6.412,51.724],[6.418,51.731],[6.424,51.738],[6.422,51.747],[6.418,51.752],[6.41,51.755],[6.4,51.756],[6.391,51.756],[6.35,51.756],[6.335,51.767],[6.331,51.775],[6.327,51.784],[6.316,51.798],[6.306,51.806],[6.282,51.819],[6.252,51.827],[6.223,51.83],[6.183,51.839],[6.166,51.843],[6.163,51.844],[6.162,51.845],[6.156,51.846],[6.15,51.847],[6.148,51.848],[6.148,51.849],[6.146,51.849],[6.143,51.849],[6.141,51.849],[6.14,51.849],[6.134,51.85],[6.132,51.85],[6.131,51.85],[6.119,51.85],[6.115,51.85],[6.111,51.849],[6.107,51.85],[6.106,51.85],[6.102,51.851],[6.101,51.851],[6.099,51.852],[6.098,51.853],[6.095,51.853],[6.093,51.854],[6.092,51.854],[6.093,51.855],[6.093,51.856],[6.093,51.857],[6.091,51.858],[6.09,51.858],[6.089,51.858],[6.089,51.857],[6.088,51.857],[6.086,51.858],[6.086,51.858],[6.085,51.858],[6.084,51.859],[6.083,51.86],[6.079,51.862],[6.079,51.862],[6.076,51.862],[6.07,51.866],[6.067,51.867],[6.062,51.869],[6.058,51.87],[6.032,51.881],[6.024,51.892],[6.022,51.894],[6.022,51.896],[6.02,51.898],[6.017,51.9],[6.014,51.901],[6.012,51.902],[6.008,51.903],[6.002,51.905],[5.993,51.908],[5.99,51.91],[5.984,51.915],[5.978,51.921],[5.976,51.923],[5.968,51.928],[5.965,51.931],[5.963,51.932],[5.961,51.935],[5.96,51.939],[5.959,51.942],[5.958,51.944],[5.957,51.946],[5.954,51.948],[5.949,51.951],[5.942,51.954],[5.94,51.955],[5.938,51.956],[5.936,51.958],[5.934,51.96],[5.933,51.965],[5.932,51.966],[5.93,51.967],[5.928,51.968],[5.926,51.969],[5.923,51.97],[5.92,51.97],[5.917,51.971],[5.915,51.972],[5.913,51.973],[5.91,51.974],[5.907,51.975],[5.907,51.974],[5.904,51.975],[5.904,51.975],[5.9,51.98],[5.893,51.983],[5.889,51.983],[5.886,51.983],[5.883,51.983],[5.88,51.982],[5.875,51.981],[5.874,51.981],[5.872,51.98],[5.873,51.979],[5.872,51.978],[5.871,51.977],[5.869,51.975],[5.867,51.973],[5.866,51.973],[5.859,51.968],[5.858,51.968],[5.857,51.968],[5.855,51.968],[5.853,51.969],[5.853,51.969],[5.851,51.97],[5.843,51.972],[5.84,51.973],[5.836,51.973],[5.833,51.973],[5.83,51.973],[5.827,51.972],[5.825,51.972],[5.813,51.965],[5.81,51.964],[5.808,51.963],[5.801,51.962],[5.797,51.962],[5.793,51.961],[5.787,51.96],[5.785,51.959],[5.772,51.96],[5.771,51.96],[5.763,51.963],[5.757,51.965],[5.745,51.971],[5.74,51.971],[5.737,51.971],[5.731,51.969],[5.723,51.963],[5.72,51.963],[5.718,51.963],[5.714,51.962],[5.711,51.962],[5.705,51.962],[5.704,51.961],[5.702,51.961],[5.7,51.961],[5.694,51.96],[5.691,51.959],[5.69,51.959],[5.687,51.959],[5.684,51.959],[5.681,51.958],[5.676,51.956],[5.673,51.954],[5.669,51.952],[5.664,51.952],[5.656,51.953],[5.654,51.953],[5.652,51.953],[5.649,51.953],[5.646,51.952],[5.643,51.949],[5.642,51.948],[5.641,51.947],[5.64,51.947],[5.638,51.945],[5.635,51.943],[5.633,51.942],[5.63,51.942],[5.607,51.944],[5.603,51.945],[5.596,51.949],[5.593,51.95],[5.591,51.951],[5.585,51.951],[5.572,51.954],[5.57,51.954],[5.563,51.955],[5.56,51.956],[5.557,51.957],[5.558,51.958],[5.558,51.959],[5.555,51.961],[5.555,51.96],[5.555,51.959],[5.554,51.959],[5.552,51.96],[5.55,51.961],[5.547,51.963],[5.545,51.966],[5.541,51.966],[5.54,51.966],[5.529,51.969],[5.519,51.971],[5.509,51.973],[5.506,51.974],[5.504,51.975],[5.5,51.977],[5.497,51.979],[5.49,51.981],[5.486,51.983],[5.484,51.983],[5.482,51.983],[5.474,51.984],[5.471,51.984],[5.467,51.984],[5.458,51.985],[5.454,51.985],[5.451,51.986],[5.448,51.987],[5.445,51.987],[5.442,51.988],[5.44,51.988],[5.437,51.987],[5.435,51.987],[5.432,51.987],[5.433,51.985],[5.43,51.984],[5.429,51.985],[5.428,51.985],[5.426,51.984],[5.426,51.983],[5.425,51.982],[5.424,51.982],[5.421,51.98],[5.42,51.98],[5.414,51.978],[5.412,51.977],[5.41,51.977],[5.407,51.977],[5.405,51.976],[5.404,51.976],[5.401,51.975],[5.399,51.975],[5.397,51.974],[5.396,51.974],[5.394,51.974],[5.393,51.974],[5.392,51.973],[5.392,51.973],[5.393,51.972],[5.386,51.97],[5.383,51.97],[5.38,51.97],[5.375,51.97],[5.372,51.971],[5.37,51.971],[5.364,51.972],[5.362,51.972],[5.345,51.968],[5.34,51.963],[5.336,51.961],[5.336,51.96],[5.334,51.959],[5.332,51.958],[5.328,51.957],[5.324,51.956],[5.322,51.956],[5.319,51.956],[5.316,51.957],[5.314,51.958],[5.311,51.959],[5.308,51.961],[5.304,51.962],[5.301,51.963],[5.297,51.964],[5.292,51.964],[5.288,51.964],[5.284,51.964],[5.278,51.965],[5.274,51.966],[5.271,51.967],[5.266,51.968],[5.263,51.97],[5.26,51.971],[5.257,51.973],[5.255,51.974],[5.248,51.979],[5.244,51.981],[5.24,51.981],[5.237,51.981],[5.231,51.979],[5.226,51.973],[5.223,51.969],[5.22,51.966],[5.218,51.964],[5.215,51.963],[5.212,51.961],[5.208,51.961],[5.205,51.961],[5.201,51.961],[5.198,51.962],[5.195,51.963],[5.19,51.965],[5.187,51.966],[5.179,51.969],[5.174,51.971],[5.166,51.972],[5.163,51.972],[5.158,51.972],[5.156,51.973],[5.155,51.973],[5.151,51.975],[5.151,51.975],[5.149,51.975],[5.146,51.975],[5.145,51.977],[5.143,51.98],[5.135,51.988],[5.133,51.991],[5.13,51.993],[5.126,51.996],[5.12,51.998],[5.116,51.999],[5.109,52.001],[5.105,52.002],[5.101,52.002],[5.097,52.002],[5.094,52.001],[5.091,52.001],[5.087,51.999],[5.083,51.998],[5.082,51.998],[5.077,51.996],[5.074,51.995],[5.073,51.993],[5.07,51.992],[5.067,51.992],[5.065,51.991],[5.064,51.989],[5.064,51.988],[5.063,51.986],[5.062,51.986],[5.06,51.985],[5.059,51.985],[5.058,51.986],[5.058,51.987],[5.055,51.986],[5.054,51.985],[5.05,51.983],[5.048,51.982],[5.045,51.98],[5.042,51.978],[5.042,51.978],[5.04,51.976],[5.04,51.974],[5.039,51.972],[5.037,51.971],[5.035,51.969],[5.032,51.968],[5.03,51.967],[5.027,51.967],[5.025,51.967],[5.022,51.968],[5.019,51.968],[5.017,51.97],[5.015,51.971],[5.012,51.973],[5.009,51.974],[5.007,51.976],[5.004,51.977],[5.001,51.977],[4.999,51.976],[5.003,51.977],[4.999,51.977],[4.995,51.977],[4.99,51.975],[4.986,51.974],[4.985,51.973],[4.981,51.969],[4.973,51.962],[4.968,51.96],[4.964,51.96],[4.96,51.96],[4.956,51.961],[4.952,51.963],[4.95,51.963],[4.947,51.962],[4.945,51.963],[4.944,51.963],[4.941,51.963],[4.939,51.962],[4.936,51.96],[4.935,51.959],[4.931,51.958],[4.929,51.957],[4.928,51.956],[4.927,51.956],[4.927,51.954],[4.926,51.953],[4.925,51.953],[4.922,51.95],[4.92,51.948],[4.916,51.944],[4.914,51.944],[4.909,51.943],[4.902,51.942],[4.893,51.942],[4.889,51.941],[4.882,51.94],[4.878,51.939],[4.873,51.939],[4.868,51.939],[4.866,51.94],[4.862,51.939],[4.859,51.94],[4.853,51.941],[4.851,51.941],[4.846,51.94],[4.838,51.939],[4.835,51.938],[4.833,51.937],[4.83,51.934],[4.824,51.931],[4.819,51.927],[4.775,51.915],[4.773,51.915],[4.771,51.915],[4.769,51.915],[4.766,51.914],[4.761,51.911],[4.759,51.911],[4.733,51.904],[4.732,51.903],[4.731,51.903],[4.727,51.901],[4.726,51.9],[4.723,51.899],[4.72,51.898],[4.716,51.898],[4.714,51.898],[4.704,51.899],[4.701,51.899],[4.698,51.899],[4.696,51.898],[4.693,51.897],[4.67,51.888],[4.658,51.888],[4.656,51.888],[4.653,51.888],[4.649,51.888],[4.646,51.889],[4.643,51.889],[4.64,51.889],[4.639,51.889],[4.635,51.889],[4.633,51.889],[4.631,51.888],[4.629,51.889],[4.628,51.888],[4.622,51.888],[4.617,51.888],[4.615,51.889],[4.614,51.89],[4.608,51.89],[4.604,51.891],[4.604,51.891],[4.599,51.891],[4.596,51.892],[4.593,51.893],[4.59,51.894],[4.589,51.894],[4.588,51.895],[4.585,51.897],[4.583,51.899],[4.581,51.9],[4.579,51.901],[4.576,51.901],[4.576,51.9],[4.573,51.9],[4.572,51.902],[4.57,51.901],[4.568,51.901],[4.566,51.901],[4.561,51.906],[4.568,51.91],[4.57,51.912],[4.572,51.913],[4.577,51.915],[4.58,51.918],[4.579,51.919],[4.579,51.921],[4.58,51.922],[4.581,51.922],[4.584,51.922],[4.587,51.923],[4.588,51.923],[4.589,51.924],[4.591,51.925],[4.593,51.926],[4.596,51.927],[4.6,51.928],[4.601,51.928],[4.606,51.928],[4.608,51.927],[4.609,51.927],[4.611,51.928],[4.611,51.928],[4.611,51.93],[4.611,51.931],[4.611,51.932],[4.616,51.934],[4.617,51.934],[4.619,51.937],[4.62,51.938],[4.621,51.938],[4.622,51.938],[4.624,51.938],[4.628,51.938],[4.631,51.938],[4.631,51.938],[4.633,51.942],[4.634,51.944],[4.635,51.947],[4.636,51.951],[4.637,51.952],[4.638,51.953],[4.64,51.954],[4.642,51.955],[4.642,51.955],[4.642,51.956],[4.64,51.959],[4.637,51.961],[4.635,51.962],[4.632,51.965],[4.633,51.969],[4.638,51.972],[4.642,51.973],[4.645,51.973],[4.648,51.974],[4.649,51.975],[4.653,51.977],[4.654,51.978],[4.658,51.978],[4.66,51.979],[4.664,51.98],[4.668,51.981],[4.668,51.982],[4.667,51.982],[4.668,51.983],[4.668,51.984],[4.67,51.986],[4.671,51.987],[4.674,51.989],[4.676,51.99],[4.678,51.992],[4.679,51.993],[4.683,51.995],[4.685,51.996],[4.687,51.998],[4.689,51.998],[4.69,51.999],[4.692,51.999],[4.693,52.004],[4.692,52.006],[4.691,52.008],[4.689,52.009],[4.687,52.011],[4.685,52.013],[4.683,52.016],[4.681,52.021],[4.677,52.022],[4.674,52.023],[4.672,52.023],[4.67,52.024],[4.669,52.026],[4.665,52.028],[4.661,52.032],[4.66,52.037],[4.66,52.041],[4.662,52.049],[4.664,52.059],[4.66,52.064],[4.659,52.07],[4.66,52.075],[4.661,52.082],[4.662,52.084],[4.662,52.087],[4.663,52.089],[4.663,52.091],[4.664,52.096],[4.665,52.1],[4.668,52.106],[4.671,52.111],[4.672,52.113],[4.673,52.115],[4.675,52.119],[4.673,52.12],[4.669,52.121],[4.668,52.121],[4.667,52.122],[4.665,52.124],[4.663,52.128],[4.664,52.131],[4.664,52.136],[4.663,52.139],[4.663,52.14],[4.662,52.141],[4.659,52.142],[4.657,52.142],[4.653,52.143],[4.651,52.143],[4.649,52.143],[4.647,52.143],[4.636,52.14],[4.632,52.14],[4.63,52.139],[4.627,52.138],[4.626,52.137],[4.623,52.135],[4.622,52.134],[4.621,52.132],[4.618,52.131],[4.615,52.13],[4.612,52.13],[4.599,52.132],[4.595,52.132],[4.591,52.132],[4.588,52.13],[4.584,52.129],[4.581,52.129],[4.572,52.129],[4.566,52.13],[4.561,52.132],[4.558,52.134],[4.553,52.137],[4.548,52.139],[4.543,52.141],[4.537,52.141],[4.534,52.142],[4.532,52.142],[4.53,52.143],[4.529,52.144],[4.526,52.145],[4.524,52.147],[4.522,52.154],[4.521,52.154],[4.52,52.155],[4.518,52.156],[4.513,52.157],[4.512,52.157],[4.511,52.157],[4.509,52.157],[4.504,52.157],[4.505,52.158],[4.505,52.159],[4.506,52.161],[4.506,52.161],[4.505,52.162],[4.504,52.162],[4.503,52.163],[4.5,52.163],[4.499,52.164],[4.494,52.164],[4.493,52.164],[4.492,52.164],[4.491,52.164],[4.49,52.164],[4.487,52.165],[4.485,52.164],[4.483,52.163],[4.481,52.161],[4.479,52.159],[4.476,52.159],[4.474,52.158],[4.472,52.157],[4.47,52.155],[4.468,52.154],[4.465,52.152],[4.463,52.153],[4.46,52.154],[4.457,52.156],[4.455,52.158],[4.45,52.161],[4.449,52.162],[4.448,52.163],[4.447,52.165],[4.447,52.167],[4.447,52.17],[4.447,52.171],[4.448,52.172],[4.449,52.173],[4.449,52.178],[4.447,52.179],[4.444,52.179],[4.441,52.18],[4.436,52.181],[4.434,52.183],[4.43,52.187],[4.427,52.189],[4.427,52.191],[4.426,52.192],[4.427,52.194],[4.428,52.194],[4.429,52.195],[4.431,52.196],[4.43,52.197],[4.421,52.203],[4.418,52.204],[4.409,52.207]],[[4.627,43.687],[4.564,43.391],[4.664,43.291],[4.764,43.291],[4.864,43.291],[4.964,43.291],[5.064,43.291],[5.164,43.291],[5.264,43.291]],[[4.717,44.125],[4.716,44.123],[4.717,44.122],[4.718,44.119],[4.719,44.117],[4.719,44.116],[4.72,44.114],[4.721,44.111],[4.721,44.11],[4.722,44.109],[4.724,44.108],[4.726,44.106],[4.727,44.105],[4.729,44.104],[4.728,44.102],[4.727,44.101],[4.726,44.1],[4.726,44.098],[4.726,44.097],[4.726,44.097],[4.726,44.097],[4.726,44.096],[4.727,44.095],[4.727,44.094],[4.729,44.092],[4.73,44.092],[4.732,44.091],[4.732,44.091],[4.734,44.09],[4.735,44.089],[4.737,44.089],[4.74,44.088],[4.746,44.087],[4.75,44.086],[4.752,44.085],[4.754,44.084],[4.757,44.083],[4.758,44.081],[4.76,44.079],[4.762,44.077],[4.765,44.075],[4.767,44.074],[4.769,44.073],[4.771,44.072],[4.775,44.072],[4.779,44.071],[4.779,44.071],[4.782,44.07],[4.787,44.069],[4.788,44.068],[4.79,44.066],[4.79,44.065],[4.791,44.063],[4.791,44.061],[4.791,44.06],[4.791,44.059],[4.79,44.058],[4.79,44.055],[4.79,44.054],[4.791,44.053],[4.793,44.051],[4.797,44.05],[4.798,44.049],[4.803,44.046],[4.806,44.044],[4.808,44.042],[4.81,44.04],[4.813,44.038],[4.815,44.036],[4.817,44.035],[4.818,44.033],[4.819,44.031],[4.82,44.028],[4.82,44.027],[4.821,44.022],[4.82,44.013],[4.821,44.01],[4.821,44.008],[4.822,44.006],[4.822,44.006],[4.821,44.003],[4.821,44],[4.821,43.999],[4.821,43.995],[4.821,43.992],[4.82,43.988],[4.819,43.982],[4.819,43.977],[4.818,43.976],[4.818,43.974],[4.818,43.972],[4.817,43.969],[4.817,43.966],[4.816,43.965],[4.816,43.964],[4.815,43.963],[4.814,43.962],[4.811,43.96],[4.807,43.959],[4.803,43.957],[4.8,43.956],[4.798,43.954],[4.796,43.953],[4.795,43.953],[4.795,43.952],[4.794,43.951],[4.792,43.949],[4.791,43.947],[4.79,43.946],[4.788,43.944],[4.787,43.943],[4.785,43.942],[4.785,43.942],[4.786,43.941],[4.771,43.938],[4.766,43.937],[4.759,43.936],[4.755,43.935],[4.75,43.934],[4.746,43.932],[4.743,43.929],[4.739,43.926],[4.736,43.923],[4.733,43.919],[4.729,43.915],[4.726,43.911],[4.723,43.909],[4.721,43.907],[4.718,43.906],[4.713,43.904],[4.706,43.902],[4.704,43.902],[4.701,43.9],[4.7,43.9],[4.697,43.898],[4.693,43.894],[4.69,43.89],[4.687,43.887],[4.685,43.886],[4.683,43.885],[4.675,43.883],[4.665,43.88],[4.661,43.879],[4.656,43.877],[4.65,43.874],[4.646,43.872],[4.643,43.871],[4.64,43.87],[4.634,43.87],[4.627,43.869],[4.625,43.868],[4.622,43.866],[4.621,43.865],[4.619,43.863],[4.619,43.861],[4.618,43.858],[4.618,43.853],[4.62,43.849],[4.623,43.843],[4.623,43.843],[4.622,43.843],[4.621,43.842],[4.622,43.841],[4.622,43.839],[4.623,43.836],[4.623,43.834],[4.624,43.833],[4.624,43.832],[4.624,43.83],[4.624,43.83],[4.625,43.828],[4.626,43.827],[4.627,43.826],[4.628,43.825],[4.628,43.825],[4.63,43.824],[4.632,43.823],[4.633,43.823],[4.634,43.823],[4.636,43.822],[4.638,43.821],[4.639,43.821],[4.641,43.819],[4.643,43.817],[4.644,43.816],[4.645,43.815],[4.646,43.814],[4.648,43.813],[4.648,43.811],[4.648,43.81],[4.649,43.809],[4.649,43.807],[4.649,43.806],[4.65,43.805],[4.65,43.805],[4.649,43.804],[4.649,43.804],[4.649,43.802],[4.649,43.801],[4.648,43.8],[4.648,43.799],[4.648,43.8],[4.647,43.8],[4.647,43.801],[4.647,43.801],[4.647,43.8],[4.648,43.798],[4.648,43.796],[4.647,43.795],[4.647,43.793],[4.648,43.791],[4.649,43.789],[4.649,43.788],[4.649,43.785],[4.647,43.782],[4.644,43.778],[4.64,43.776],[4.639,43.775],[4.638,43.774],[4.638,43.774],[4.637,43.773],[4.636,43.772],[4.635,43.772],[4.634,43.771],[4.633,43.77],[4.632,43.769],[4.63,43.767],[4.629,43.767],[4.629,43.767],[4.628,43.767],[4.628,43.767],[4.627,43.766],[4.626,43.766],[4.626,43.766],[4.625,43.765],[4.626,43.765],[4.628,43.764],[4.628,43.758],[4.628,43.756],[4.628,43.756],[4.627,43.755],[4.627,43.755],[4.627,43.754],[4.627,43.753],[4.626,43.753],[4.625,43.746],[4.625,43.745],[4.625,43.744],[4.624,43.743],[4.623,43.742],[4.623,43.742],[4.622,43.741],[4.622,43.74],[4.622,43.74],[4.621,43.739],[4.621,43.739],[4.62,43.736],[4.619,43.734],[4.619,43.733],[4.618,43.733],[4.618,43.733],[4.617,43.732],[4.617,43.731],[4.618,43.728],[4.618,43.727],[4.618,43.727],[4.618,43.725],[4.618,43.725],[4.619,43.725],[4.619,43.725],[4.619,43.724],[4.618,43.724],[4.618,43.723],[4.617,43.722],[4.617,43.721],[4.617,43.72],[4.617,43.72],[4.617,43.719],[4.617,43.717],[4.617,43.717],[4.618,43.717],[4.618,43.716],[4.617,43.715],[4.618,43.715],[4.618,43.714],[4.619,43.712],[4.619,43.71],[4.619,43.708],[4.62,43.707],[4.62,43.706],[4.62,43.705],[4.621,43.704],[4.622,43.702],[4.625,43.699],[4.626,43.699],[4.627,43.697],[4.628,43.695],[4.628,43.694],[4.628,43.694],[4.629,43.694],[4.629,43.694],[4.63,43.691],[4.63,43.69],[4.628,43.688]],[[4.801,44.159],[4.798,44.158],[4.797,44.157],[4.796,44.157],[4.796,44.156],[4.794,44.155],[4.793,44.154],[4.791,44.153],[4.789,44.152],[4.789,44.151],[4.788,44.15],[4.787,44.149],[4.785,44.148],[4.783,44.149],[4.782,44.149],[4.781,44.149],[4.78,44.15],[4.778,44.149],[4.777,44.149],[4.776,44.15],[4.775,44.15],[4.773,44.15],[4.772,44.149],[4.771,44.149],[4.769,44.15],[4.769,44.149],[4.768,44.147],[4.767,44.146],[4.766,44.146],[4.765,44.146],[4.764,44.146],[4.763,44.147],[4.761,44.147],[4.76,44.147],[4.758,44.146],[4.757,44.146],[4.755,44.145],[4.754,44.145],[4.753,44.145],[4.751,44.145],[4.751,44.146],[4.75,44.147],[4.749,44.148],[4.748,44.148],[4.747,44.148],[4.745,44.148],[4.744,44.148],[4.742,44.148],[4.739,44.148],[4.738,44.148],[4.737,44.148],[4.735,44.147],[4.734,44.147],[4.732,44.146],[4.731,44.146],[4.731,44.145],[4.731,44.145],[4.731,44.143],[4.731,44.143],[4.73,44.143],[4.73,44.142],[4.731,44.142],[4.731,44.142],[4.731,44.141],[4.731,44.141],[4.731,44.141],[4.733,44.139],[4.733,44.139],[4.734,44.137],[4.734,44.136],[4.734,44.135],[4.731,44.134],[4.731,44.133],[4.73,44.132],[4.727,44.131],[4.725,44.131],[4.723,44.13],[4.721,44.129],[4.719,44.128],[4.718,44.127],[4.717,44.125]],[[6.002,47.224],[6,47.222],[5.999,47.22],[5.997,47.219],[5.996,47.217],[5.995,47.216],[5.995,47.214],[5.995,47.214],[5.993,47.213],[5.992,47.212],[5.991,47.21],[5.99,47.21],[5.987,47.208],[5.986,47.208],[5.985,47.208],[5.984,47.209],[5.983,47.209],[5.981,47.209],[5.977,47.209],[5.974,47.209],[5.972,47.209],[5.97,47.209],[5.968,47.209],[5.965,47.209],[5.963,47.209],[5.963,47.209],[5.962,47.208],[5.961,47.207],[5.961,47.206],[5.96,47.204],[5.961,47.203],[5.962,47.203],[5.963,47.202],[5.965,47.2],[5.966,47.199],[5.966,47.199],[5.965,47.197],[5.964,47.196],[5.963,47.195],[5.962,47.195],[5.959,47.193],[5.958,47.193],[5.957,47.192],[5.955,47.192],[5.951,47.191],[5.949,47.19],[5.948,47.189],[5.944,47.186],[5.939,47.184],[5.934,47.182],[5.927,47.181],[5.921,47.179],[5.915,47.179],[5.908,47.181],[5.9,47.185],[5.894,47.19],[5.89,47.191],[5.885,47.19],[5.883,47.187],[5.885,47.184],[5.888,47.181],[5.894,47.18],[5.896,47.178],[5.897,47.176],[5.897,47.175],[5.896,47.172],[5.893,47.17],[5.887,47.169],[5.886,47.166],[5.886,47.165],[5.886,47.165],[5.886,47.164],[5.886,47.161],[5.886,47.16],[5.886,47.159],[5.887,47.158],[5.887,47.157],[5.887,47.156],[5.888,47.156],[5.889,47.154],[5.889,47.154],[5.889,47.153],[5.889,47.153],[5.889,47.152],[5.888,47.152],[5.887,47.152],[5.886,47.152],[5.885,47.151],[5.884,47.151],[5.883,47.15],[5.88,47.15],[5.877,47.15],[5.875,47.15],[5.872,47.15],[5.87,47.149],[5.869,47.149],[5.867,47.148],[5.865,47.147],[5.863,47.146],[5.862,47.145],[5.86,47.143],[5.857,47.142],[5.854,47.142],[5.852,47.142],[5.851,47.141],[5.849,47.141],[5.846,47.141],[5.844,47.141],[5.842,47.142],[5.84,47.143],[5.839,47.143],[5.839,47.144],[5.84,47.144],[5.841,47.144],[5.841,47.145],[5.842,47.146],[5.842,47.146],[5.842,47.147],[5.842,47.147],[5.843,47.148],[5.843,47.149],[5.842,47.149],[5.843,47.15],[5.843,47.151],[5.843,47.151],[5.845,47.152],[5.846,47.152],[5.847,47.153],[5.849,47.154],[5.85,47.154],[5.851,47.155],[5.852,47.156],[5.853,47.157],[5.853,47.158],[5.854,47.159],[5.856,47.16],[5.857,47.162],[5.857,47.163],[5.857,47.163],[5.857,47.165],[5.857,47.165],[5.857,47.166],[5.856,47.167],[5.855,47.168],[5.854,47.17],[5.853,47.171],[5.853,47.172],[5.852,47.172],[5.851,47.173],[5.85,47.174],[5.849,47.174],[5.847,47.174],[5.845,47.175],[5.843,47.175],[5.842,47.175],[5.84,47.176],[5.838,47.176],[5.837,47.176],[5.836,47.176],[5.834,47.176],[5.832,47.175],[5.831,47.175],[5.829,47.174],[5.828,47.175],[5.827,47.175],[5.826,47.174],[5.821,47.176],[5.815,47.177],[5.809,47.178],[5.803,47.179],[5.795,47.179],[5.788,47.178],[5.783,47.177],[5.778,47.174],[5.774,47.171],[5.772,47.169],[5.769,47.169],[5.769,47.168],[5.768,47.168],[5.768,47.167],[5.767,47.165],[5.767,47.163],[5.767,47.162],[5.765,47.162],[5.763,47.161],[5.762,47.16],[5.76,47.16],[5.759,47.159],[5.758,47.159],[5.756,47.158],[5.755,47.158],[5.753,47.157],[5.75,47.157],[5.749,47.158],[5.748,47.158],[5.746,47.158],[5.745,47.159],[5.744,47.159],[5.742,47.16],[5.741,47.16],[5.74,47.16],[5.736,47.159],[5.731,47.157],[5.73,47.156],[5.727,47.156],[5.726,47.156],[5.724,47.155],[5.723,47.153],[5.722,47.152],[5.722,47.152],[5.721,47.151],[5.719,47.15],[5.718,47.15],[5.716,47.149],[5.714,47.149],[5.712,47.148],[5.71,47.149],[5.708,47.149],[5.707,47.15],[5.706,47.15],[5.706,47.151],[5.706,47.152],[5.708,47.152],[5.709,47.152],[5.71,47.152],[5.711,47.152],[5.712,47.153],[5.713,47.153],[5.714,47.154],[5.715,47.156],[5.715,47.157],[5.715,47.158],[5.713,47.158],[5.708,47.158],[5.701,47.157],[5.694,47.157],[5.689,47.155],[5.685,47.153],[5.68,47.151],[5.676,47.149],[5.673,47.148],[5.672,47.147],[5.67,47.147],[5.667,47.147],[5.666,47.148],[5.664,47.148],[5.663,47.149],[5.662,47.15],[5.662,47.15],[5.662,47.151],[5.662,47.151],[5.663,47.152],[5.664,47.152],[5.664,47.153],[5.663,47.153],[5.662,47.154],[5.66,47.154],[5.654,47.154],[5.649,47.154],[5.645,47.155],[5.643,47.155],[5.642,47.155],[5.64,47.154],[5.638,47.153],[5.636,47.153],[5.635,47.152],[5.635,47.151],[5.635,47.149],[5.635,47.148],[5.635,47.147],[5.634,47.146],[5.633,47.146],[5.632,47.146],[5.63,47.146],[5.627,47.146],[5.624,47.146],[5.62,47.146],[5.617,47.146],[5.614,47.146],[5.612,47.147],[5.61,47.148],[5.609,47.148],[5.607,47.149],[5.606,47.148],[5.602,47.147],[5.6,47.147],[5.6,47.146],[5.601,47.145],[5.601,47.145],[5.601,47.144],[5.601,47.144],[5.6,47.143],[5.599,47.143],[5.598,47.143],[5.597,47.142],[5.596,47.141],[5.595,47.14],[5.594,47.14],[5.593,47.14],[5.593,47.14],[5.589,47.138],[5.588,47.138],[5.587,47.138],[5.586,47.139],[5.585,47.139],[5.584,47.14],[5.583,47.141],[5.582,47.142],[5.582,47.143],[5.58,47.142],[5.567,47.135],[5.567,47.134],[5.567,47.134],[5.564,47.131],[5.562,47.13],[5.561,47.129],[5.56,47.128],[5.559,47.127],[5.557,47.126],[5.554,47.124],[5.553,47.122],[5.552,47.121],[5.551,47.12],[5.55,47.119],[5.55,47.117],[5.55,47.116],[5.551,47.114],[5.551,47.111],[5.551,47.11],[5.551,47.109],[5.55,47.109],[5.549,47.108],[5.547,47.107],[5.545,47.107],[5.543,47.106],[5.54,47.105],[5.537,47.104],[5.534,47.102],[5.533,47.101],[5.532,47.1],[5.531,47.099],[5.531,47.098],[5.531,47.097],[5.532,47.095],[5.533,47.094],[5.534,47.093],[5.534,47.093],[5.532,47.092],[5.531,47.092],[5.531,47.093],[5.531,47.093],[5.529,47.093],[5.527,47.092],[5.525,47.091],[5.524,47.09],[5.522,47.09],[5.522,47.089],[5.52,47.089],[5.519,47.09],[5.518,47.09],[5.518,47.091],[5.517,47.092],[5.516,47.093],[5.513,47.094],[5.512,47.095],[5.505,47.097],[5.501,47.097],[5.5,47.097],[5.5,47.097],[5.499,47.097],[5.499,47.097],[5.499,47.098],[5.498,47.097],[5.497,47.097],[5.495,47.096],[5.493,47.096],[5.491,47.095],[5.487,47.093],[5.485,47.091],[5.484,47.09],[5.484,47.089],[5.484,47.088],[5.485,47.088],[5.486,47.087],[5.487,47.086],[5.487,47.083],[5.482,47.081],[5.479,47.08],[5.475,47.079],[5.472,47.078],[5.471,47.077],[5.471,47.076],[5.47,47.075],[5.47,47.075],[5.471,47.073],[5.473,47.071],[5.474,47.069],[5.477,47.068],[5.478,47.066],[5.478,47.065],[5.477,47.064],[5.475,47.064],[5.474,47.064],[5.469,47.065],[5.469,47.065],[5.467,47.065],[5.466,47.064],[5.464,47.063],[5.462,47.062],[5.459,47.06],[5.459,47.06],[5.457,47.059],[5.455,47.058],[5.453,47.058],[5.451,47.058],[5.448,47.058],[5.447,47.058],[5.447,47.057],[5.448,47.056],[5.449,47.056],[5.451,47.054],[5.452,47.054],[5.454,47.052],[5.455,47.051],[5.456,47.048],[5.456,47.047],[5.456,47.045],[5.455,47.045],[5.455,47.043],[5.454,47.042],[5.451,47.04],[5.45,47.039],[5.448,47.038],[5.447,47.037],[5.446,47.037],[5.447,47.036],[5.447,47.036],[5.446,47.035],[5.446,47.034],[5.446,47.034],[5.446,47.033],[5.448,47.032],[5.449,47.031],[5.449,47.03],[5.449,47.03],[5.45,47.027],[5.45,47.025],[5.45,47.022],[5.45,47.021],[5.45,47.02],[5.45,47.019],[5.45,47.018],[5.449,47.017],[5.448,47.016],[5.447,47.015],[5.445,47.014],[5.444,47.013],[5.443,47.013],[5.443,47.012],[5.442,47.011],[5.44,47.01],[5.439,47.01],[5.437,47.009],[5.434,47.01],[5.432,47.011],[5.43,47.011],[5.429,47.012],[5.428,47.012],[5.427,47.013],[5.427,47.014],[5.425,47.015],[5.425,47.016],[5.423,47.018],[5.421,47.02],[5.417,47.021],[5.415,47.021],[5.414,47.022],[5.412,47.022],[5.409,47.022],[5.407,47.022],[5.405,47.022],[5.404,47.022],[5.403,47.021],[5.401,47.018],[5.401,47.017],[5.4,47.015],[5.4,47.013],[5.398,47.011],[5.396,47.01],[5.395,47.01],[5.393,47.01],[5.392,47.01],[5.391,47.011],[5.389,47.011],[5.387,47.011],[5.384,47.011],[5.382,47.012],[5.381,47.012],[5.381,47.012],[5.379,47.011],[5.377,47.009],[5.377,47.009],[5.376,47.008],[5.375,47.006],[5.376,47.004],[5.376,47.003],[5.377,47.001],[5.377,47.001],[5.377,47],[5.377,47],[5.378,46.999],[5.379,46.998],[5.379,46.997],[5.38,46.996],[5.381,46.994],[5.381,46.993],[5.381,46.992],[5.38,46.991],[5.379,46.989],[5.378,46.988],[5.378,46.988],[5.377,46.988],[5.376,46.987],[5.376,46.986],[5.376,46.985],[5.376,46.984],[5.375,46.983],[5.375,46.982],[5.376,46.981],[5.377,46.98],[5.378,46.978],[5.378,46.977],[5.379,46.976],[5.38,46.975],[5.38,46.974],[5.381,46.973],[5.382,46.971],[5.382,46.971],[5.383,46.971],[5.383,46.97],[5.384,46.97],[5.384,46.969],[5.384,46.968],[5.385,46.967],[5.385,46.966],[5.385,46.965],[5.385,46.964],[5.385,46.963],[5.384,46.963],[5.383,46.963],[5.38,46.962],[5.379,46.961],[5.377,46.96],[5.373,46.959],[5.372,46.959],[5.372,46.958],[5.371,46.958],[5.371,46.958],[5.369,46.957],[5.369,46.957],[5.367,46.956],[5.366,46.955],[5.365,46.954],[5.364,46.953],[5.364,46.951],[5.364,46.95],[5.365,46.949],[5.365,46.949],[5.365,46.948],[5.365,46.947],[5.366,46.947],[5.366,46.946],[5.366,46.946],[5.365,46.943],[5.365,46.943],[5.367,46.942],[5.368,46.941],[5.369,46.941],[5.369,46.94],[5.368,46.94],[5.367,46.94],[5.366,46.941],[5.365,46.941],[5.364,46.94],[5.364,46.94],[5.364,46.939],[5.363,46.937],[5.363,46.936],[5.362,46.935],[5.361,46.934],[5.359,46.933],[5.358,46.932],[5.357,46.932],[5.357,46.932],[5.355,46.932],[5.354,46.932],[5.353,46.932],[5.353,46.931],[5.351,46.931],[5.348,46.932],[5.346,46.932],[5.344,46.932],[5.34,46.933],[5.336,46.933],[5.333,46.933],[5.33,46.933],[5.327,46.932],[5.322,46.932],[5.321,46.932],[5.319,46.932],[5.317,46.932],[5.317,46.933],[5.317,46.933],[5.315,46.933],[5.312,46.932],[5.309,46.932],[5.307,46.932],[5.306,46.933],[5.306,46.934],[5.306,46.935],[5.305,46.936],[5.305,46.936],[5.306,46.937],[5.304,46.938],[5.304,46.939],[5.303,46.941],[5.302,46.943],[5.302,46.944],[5.301,46.945],[5.301,46.946],[5.3,46.946],[5.299,46.947],[5.299,46.948],[5.297,46.948],[5.295,46.949],[5.294,46.949],[5.29,46.95],[5.289,46.949],[5.288,46.949],[5.287,46.948],[5.286,46.947],[5.285,46.946],[5.284,46.945],[5.283,46.945],[5.281,46.944],[5.28,46.943],[5.279,46.942],[5.277,46.941],[5.276,46.94],[5.274,46.938],[5.272,46.938],[5.272,46.938],[5.271,46.937],[5.27,46.937],[5.269,46.937],[5.268,46.937],[5.268,46.938],[5.267,46.938],[5.267,46.939],[5.264,46.941],[5.263,46.941],[5.261,46.941],[5.261,46.942],[5.26,46.94],[5.26,46.939],[5.259,46.939],[5.259,46.939],[5.258,46.94],[5.257,46.94],[5.255,46.941],[5.254,46.941],[5.253,46.94],[5.251,46.94],[5.25,46.94],[5.248,46.94],[5.247,46.939],[5.246,46.939],[5.245,46.939],[5.243,46.939],[5.242,46.939],[5.24,46.939],[5.239,46.938],[5.238,46.937],[5.237,46.937],[5.236,46.936],[5.236,46.935],[5.237,46.934],[5.237,46.933],[5.236,46.932],[5.235,46.932],[5.234,46.932],[5.233,46.932],[5.232,46.932],[5.231,46.932],[5.23,46.932],[5.229,46.932],[5.228,46.932],[5.227,46.932],[5.227,46.931],[5.226,46.93],[5.224,46.93],[5.222,46.93],[5.22,46.93],[5.219,46.931],[5.218,46.931],[5.216,46.932],[5.214,46.932],[5.212,46.932],[5.211,46.931],[5.21,46.931],[5.21,46.93],[5.209,46.93],[5.209,46.929],[5.209,46.929],[5.21,46.928],[5.209,46.928],[5.209,46.928],[5.208,46.928],[5.208,46.927],[5.208,46.924],[5.207,46.924],[5.207,46.924],[5.206,46.924],[5.205,46.924],[5.204,46.925],[5.203,46.927],[5.203,46.928],[5.201,46.929],[5.2,46.929],[5.199,46.93],[5.198,46.93],[5.198,46.931],[5.198,46.932],[5.196,46.934],[5.195,46.935],[5.193,46.936],[5.193,46.937],[5.191,46.938],[5.191,46.939],[5.191,46.94],[5.191,46.942],[5.192,46.943],[5.193,46.944],[5.193,46.945],[5.192,46.945],[5.192,46.945],[5.191,46.945],[5.189,46.944],[5.188,46.943],[5.187,46.942],[5.187,46.94],[5.186,46.938],[5.185,46.938],[5.184,46.937],[5.183,46.937],[5.182,46.937],[5.181,46.937],[5.18,46.937],[5.179,46.936],[5.177,46.936],[5.175,46.936],[5.173,46.936],[5.172,46.935],[5.171,46.935],[5.17,46.935],[5.168,46.935],[5.166,46.934],[5.164,46.935],[5.162,46.935],[5.159,46.936],[5.158,46.936],[5.157,46.937],[5.156,46.938],[5.156,46.938],[5.156,46.939],[5.156,46.94],[5.157,46.941],[5.157,46.942],[5.156,46.943],[5.156,46.944],[5.155,46.945],[5.154,46.945],[5.154,46.945],[5.151,46.947],[5.15,46.948],[5.149,46.948],[5.149,46.948],[5.149,46.948],[5.149,46.948],[5.148,46.949],[5.146,46.949],[5.145,46.949],[5.144,46.949],[5.144,46.949],[5.145,46.949],[5.145,46.949],[5.145,46.949],[5.144,46.948],[5.143,46.948],[5.142,46.948],[5.141,46.948],[5.139,46.948],[5.137,46.948],[5.135,46.948],[5.134,46.948],[5.132,46.948],[5.131,46.948],[5.13,46.948],[5.129,46.948],[5.127,46.948],[5.125,46.948],[5.124,46.948],[5.122,46.949],[5.121,46.949],[5.12,46.949],[5.119,46.948],[5.118,46.948],[5.117,46.946],[5.116,46.943],[5.115,46.942],[5.114,46.941],[5.112,46.939],[5.111,46.938],[5.109,46.937],[5.107,46.936],[5.104,46.935],[5.102,46.934],[5.101,46.933],[5.1,46.933],[5.099,46.933],[5.096,46.931],[5.094,46.93],[5.093,46.929],[5.092,46.928],[5.091,46.926],[5.09,46.924],[5.09,46.924],[5.09,46.923],[5.09,46.922],[5.088,46.921],[5.088,46.921],[5.088,46.921],[5.088,46.921],[5.087,46.921],[5.087,46.92],[5.086,46.92],[5.085,46.918],[5.085,46.917],[5.085,46.916],[5.086,46.914],[5.086,46.913],[5.086,46.912],[5.084,46.911],[5.083,46.91],[5.081,46.909],[5.079,46.908],[5.077,46.907],[5.076,46.907],[5.074,46.905],[5.072,46.904],[5.07,46.902],[5.069,46.901],[5.068,46.901],[5.067,46.901],[5.066,46.9],[5.065,46.901],[5.064,46.901],[5.063,46.901],[5.062,46.902],[5.061,46.902],[5.059,46.902],[5.058,46.902],[5.057,46.902],[5.055,46.903],[5.053,46.903],[5.05,46.903],[5.048,46.903],[5.044,46.903],[5.041,46.903],[5.039,46.903],[5.038,46.902],[5.036,46.902],[5.035,46.901],[5.033,46.901],[5.031,46.901],[5.03,46.901],[5.029,46.902],[5.028,46.903],[5.028,46.904],[5.028,46.905],[5.027,46.905],[5.027,46.905],[5.026,46.905],[5.025,46.905],[5.024,46.905],[5.023,46.904],[5.022,46.905],[5.021,46.905],[5.02,46.906],[5.019,46.906],[5.017,46.906],[5.015,46.907],[5.012,46.909],[5.012,46.91],[5.011,46.911],[5.01,46.913],[5.009,46.914],[5.007,46.915],[5.006,46.915],[5.004,46.915],[5.003,46.914],[5.002,46.914],[5.001,46.913],[5,46.912],[4.999,46.911],[4.997,46.909],[4.997,46.909],[4.996,46.909],[4.995,46.909],[4.995,46.908],[4.994,46.907],[4.994,46.907],[4.994,46.906],[4.993,46.906],[4.993,46.905],[4.992,46.905],[4.992,46.904],[4.991,46.904],[4.99,46.904],[4.989,46.904],[4.988,46.904],[4.986,46.904],[4.985,46.904],[4.983,46.904],[4.981,46.904],[4.98,46.905],[4.978,46.905],[4.976,46.905],[4.975,46.905],[4.974,46.905],[4.973,46.905],[4.972,46.905],[4.97,46.904],[4.969,46.904],[4.968,46.903],[4.966,46.902],[4.964,46.901],[4.964,46.901],[4.963,46.901],[4.962,46.901],[4.961,46.9],[4.96,46.9],[4.958,46.9],[4.957,46.9],[4.956,46.9],[4.954,46.899],[4.954,46.899],[4.953,46.899],[4.952,46.898],[4.951,46.898],[4.951,46.896],[4.95,46.895],[4.95,46.894],[4.95,46.893],[4.95,46.893],[4.95,46.891],[4.95,46.891],[4.95,46.89],[4.951,46.889],[4.951,46.888],[4.953,46.888],[4.954,46.887],[4.956,46.886],[4.957,46.885],[4.958,46.885],[4.96,46.884],[4.961,46.883],[4.962,46.883],[4.963,46.881],[4.963,46.88],[4.963,46.88],[4.963,46.879],[4.963,46.878],[4.962,46.878],[4.962,46.877],[4.961,46.877],[4.959,46.876],[4.958,46.875],[4.956,46.874],[4.955,46.874],[4.955,46.873],[4.954,46.872],[4.954,46.871],[4.953,46.871],[4.954,46.87],[4.954,46.87],[4.955,46.869],[4.955,46.868],[4.957,46.867],[4.958,46.867],[4.959,46.866],[4.96,46.866],[4.961,46.865],[4.962,46.864],[4.962,46.864],[4.962,46.863],[4.962,46.862],[4.962,46.861],[4.962,46.86],[4.962,46.86],[4.962,46.859],[4.961,46.858],[4.961,46.856],[4.961,46.854],[4.962,46.854],[4.962,46.853],[4.962,46.852],[4.962,46.852],[4.962,46.851],[4.961,46.85],[4.961,46.849],[4.96,46.848],[4.96,46.847],[4.96,46.847],[4.959,46.846],[4.959,46.846],[4.958,46.845],[4.957,46.844],[4.956,46.844],[4.955,46.843],[4.954,46.842],[4.952,46.841],[4.95,46.839],[4.949,46.838],[4.948,46.837],[4.947,46.837],[4.945,46.836],[4.944,46.836],[4.943,46.835],[4.943,46.834],[4.942,46.834],[4.942,46.833],[4.941,46.833],[4.94,46.832],[4.939,46.831],[4.938,46.83],[4.938,46.829],[4.937,46.828],[4.937,46.827],[4.937,46.826],[4.936,46.824],[4.936,46.824],[4.935,46.823],[4.935,46.822],[4.934,46.822],[4.933,46.822],[4.931,46.821],[4.93,46.821],[4.928,46.82],[4.926,46.819],[4.923,46.817],[4.92,46.815],[4.919,46.814],[4.918,46.814],[4.917,46.812],[4.917,46.811],[4.917,46.811],[4.916,46.81],[4.915,46.809],[4.914,46.808],[4.913,46.808],[4.912,46.807],[4.91,46.806],[4.909,46.805],[4.908,46.805],[4.906,46.804],[4.905,46.804],[4.903,46.804],[4.9,46.806],[4.898,46.806],[4.897,46.807],[4.897,46.807],[4.896,46.808],[4.894,46.809],[4.892,46.81],[4.891,46.811],[4.891,46.811],[4.89,46.811],[4.888,46.811],[4.886,46.811],[4.885,46.811],[4.884,46.811],[4.883,46.811],[4.882,46.81],[4.881,46.809],[4.879,46.809],[4.879,46.808],[4.878,46.807],[4.877,46.807],[4.877,46.807],[4.877,46.805],[4.877,46.805],[4.877,46.805],[4.876,46.805],[4.876,46.805],[4.876,46.805],[4.875,46.805],[4.875,46.804],[4.875,46.804],[4.875,46.804],[4.876,46.804],[4.876,46.804],[4.876,46.804],[4.877,46.803],[4.877,46.802],[4.877,46.802],[4.877,46.801],[4.877,46.801],[4.877,46.8],[4.877,46.8],[4.877,46.799],[4.877,46.799],[4.876,46.798],[4.875,46.798],[4.874,46.797],[4.873,46.796],[4.871,46.795],[4.869,46.795],[4.867,46.794],[4.865,46.793],[4.864,46.792],[4.863,46.792],[4.862,46.791],[4.861,46.791],[4.86,46.791],[4.86,46.79],[4.859,46.79],[4.857,46.789],[4.856,46.789],[4.855,46.788],[4.853,46.788],[4.852,46.787],[4.85,46.787],[4.849,46.786],[4.847,46.785],[4.846,46.785],[4.844,46.784],[4.843,46.783],[4.842,46.782],[4.841,46.781],[4.841,46.779],[4.841,46.778],[4.841,46.777],[4.841,46.776],[4.841,46.775],[4.841,46.774],[4.842,46.773],[4.843,46.773],[4.847,46.77],[4.851,46.768],[4.851,46.768],[4.852,46.768],[4.853,46.768],[4.855,46.767],[4.856,46.767],[4.857,46.767],[4.858,46.766],[4.86,46.765],[4.861,46.765],[4.863,46.764],[4.865,46.763],[4.866,46.763],[4.867,46.763],[4.869,46.763],[4.87,46.762],[4.871,46.762],[4.873,46.762],[4.874,46.761],[4.875,46.761],[4.875,46.761],[4.876,46.759],[4.877,46.758],[4.878,46.757],[4.879,46.756],[4.879,46.755],[4.88,46.754],[4.88,46.754],[4.88,46.753],[4.88,46.752],[4.88,46.751],[4.878,46.748],[4.878,46.747],[4.877,46.745],[4.877,46.744],[4.876,46.743],[4.877,46.743],[4.877,46.742],[4.878,46.741],[4.879,46.741],[4.88,46.74],[4.881,46.739],[4.882,46.738],[4.884,46.738],[4.886,46.738],[4.887,46.738],[4.888,46.738],[4.889,46.739],[4.891,46.739],[4.891,46.739],[4.892,46.739],[4.894,46.739],[4.895,46.739],[4.895,46.739],[4.896,46.738],[4.897,46.738],[4.898,46.737],[4.899,46.736],[4.9,46.735],[4.901,46.734],[4.902,46.733],[4.903,46.732],[4.904,46.731],[4.904,46.73],[4.905,46.729],[4.906,46.728],[4.906,46.728],[4.908,46.727],[4.91,46.726],[4.911,46.726],[4.912,46.725],[4.914,46.725],[4.915,46.724],[4.917,46.724],[4.918,46.724],[4.918,46.724],[4.919,46.723],[4.92,46.723],[4.921,46.722],[4.923,46.721],[4.924,46.72],[4.925,46.719],[4.927,46.719],[4.927,46.718],[4.928,46.718],[4.929,46.718],[4.93,46.717],[4.93,46.717],[4.931,46.716],[4.931,46.715],[4.931,46.714],[4.932,46.713],[4.932,46.712],[4.932,46.711],[4.932,46.71],[4.933,46.709],[4.934,46.709],[4.934,46.708],[4.934,46.708],[4.936,46.706],[4.937,46.704],[4.937,46.704],[4.938,46.703],[4.938,46.702],[4.939,46.701],[4.939,46.7],[4.939,46.699],[4.94,46.697],[4.94,46.695],[4.94,46.693],[4.941,46.692],[4.941,46.69],[4.942,46.688],[4.942,46.687],[4.943,46.685],[4.944,46.683],[4.944,46.681],[4.945,46.679],[4.946,46.678],[4.947,46.677],[4.946,46.675],[4.946,46.675],[4.946,46.674],[4.946,46.672],[4.946,46.671],[4.946,46.67],[4.947,46.669],[4.948,46.667],[4.949,46.666],[4.95,46.665],[4.95,46.663],[4.95,46.662],[4.95,46.66],[4.951,46.656],[4.951,46.655],[4.951,46.653],[4.951,46.652],[4.951,46.651],[4.951,46.649],[4.951,46.648],[4.952,46.646],[4.952,46.645],[4.952,46.644],[4.952,46.643],[4.952,46.641],[4.951,46.639],[4.951,46.638],[4.95,46.637],[4.949,46.635],[4.948,46.634],[4.947,46.633],[4.944,46.632],[4.944,46.631],[4.943,46.631],[4.942,46.63],[4.941,46.629],[4.941,46.628],[4.94,46.627],[4.94,46.626],[4.94,46.625],[4.939,46.625],[4.939,46.624],[4.939,46.623],[4.939,46.622],[4.936,46.618],[4.934,46.616],[4.934,46.615],[4.933,46.614],[4.932,46.614],[4.931,46.613],[4.93,46.612],[4.929,46.61],[4.928,46.61],[4.927,46.609],[4.927,46.608],[4.926,46.607],[4.925,46.606],[4.924,46.605],[4.924,46.604],[4.923,46.603],[4.921,46.601],[4.92,46.6],[4.919,46.599],[4.918,46.598],[4.917,46.598],[4.915,46.596],[4.913,46.595],[4.912,46.593],[4.911,46.592],[4.91,46.59],[4.909,46.589],[4.909,46.589],[4.909,46.587],[4.909,46.586],[4.909,46.585],[4.908,46.584],[4.909,46.583],[4.909,46.582],[4.909,46.581],[4.909,46.58],[4.909,46.58],[4.909,46.578],[4.909,46.577],[4.908,46.576],[4.908,46.575],[4.908,46.574],[4.908,46.573],[4.909,46.572],[4.909,46.571],[4.91,46.571],[4.911,46.57],[4.913,46.568],[4.914,46.567],[4.914,46.565],[4.915,46.564],[4.915,46.563],[4.915,46.562],[4.916,46.56],[4.917,46.559],[4.917,46.558],[4.917,46.557],[4.918,46.556],[4.918,46.556],[4.919,46.555],[4.919,46.554],[4.92,46.553],[4.921,46.553],[4.921,46.552],[4.921,46.552],[4.921,46.551],[4.922,46.551],[4.923,46.549],[4.923,46.547],[4.924,46.546],[4.924,46.546],[4.925,46.544],[4.926,46.542],[4.927,46.541],[4.929,46.539],[4.93,46.538],[4.931,46.536],[4.932,46.535],[4.933,46.533],[4.933,46.532],[4.933,46.531],[4.934,46.53],[4.935,46.53],[4.935,46.529],[4.934,46.527],[4.934,46.526],[4.934,46.525],[4.932,46.524],[4.931,46.523],[4.929,46.521],[4.928,46.519],[4.927,46.518],[4.926,46.516],[4.924,46.512],[4.924,46.512],[4.924,46.511],[4.923,46.509],[4.923,46.508],[4.922,46.507],[4.921,46.505],[4.919,46.503],[4.915,46.501],[4.912,46.499],[4.911,46.496],[4.91,46.492],[4.91,46.489],[4.91,46.488],[4.91,46.486],[4.911,46.485],[4.911,46.483],[4.911,46.481],[4.911,46.479],[4.911,46.473],[4.91,46.471],[4.909,46.47],[4.908,46.467],[4.903,46.464],[4.902,46.463],[4.9,46.463],[4.898,46.461],[4.896,46.46],[4.895,46.459],[4.894,46.458],[4.893,46.457],[4.891,46.456],[4.89,46.454],[4.889,46.452],[4.888,46.449],[4.887,46.448],[4.886,46.446],[4.886,46.445],[4.885,46.443],[4.885,46.442],[4.884,46.44],[4.886,46.437],[4.885,46.435],[4.885,46.431],[4.884,46.427],[4.884,46.426],[4.883,46.423],[4.883,46.419],[4.883,46.418],[4.884,46.418],[4.884,46.416],[4.886,46.41],[4.884,46.408],[4.881,46.405],[4.88,46.404],[4.879,46.402],[4.878,46.399],[4.876,46.397],[4.874,46.396],[4.873,46.394],[4.873,46.393],[4.872,46.392],[4.87,46.39],[4.869,46.388],[4.866,46.385],[4.863,46.383],[4.861,46.381],[4.858,46.378],[4.857,46.376],[4.854,46.373],[4.853,46.372],[4.853,46.371],[4.853,46.37],[4.852,46.369],[4.851,46.367],[4.85,46.366],[4.849,46.364],[4.849,46.361],[4.849,46.358],[4.851,46.354],[4.851,46.352],[4.851,46.348],[4.851,46.347],[4.851,46.346],[4.852,46.344],[4.852,46.342],[4.847,46.335],[4.846,46.332],[4.843,46.33],[4.841,46.327],[4.838,46.323],[4.835,46.319],[4.836,46.319],[4.835,46.318],[4.834,46.316],[4.833,46.314],[4.831,46.311],[4.83,46.31],[4.829,46.309],[4.829,46.308],[4.828,46.306],[4.828,46.306],[4.827,46.304],[4.827,46.303],[4.829,46.297],[4.828,46.295],[4.827,46.293],[4.826,46.29],[4.826,46.288],[4.825,46.285],[4.824,46.283],[4.824,46.283],[4.824,46.282],[4.822,46.28],[4.821,46.279],[4.82,46.277],[4.818,46.275],[4.815,46.273],[4.812,46.271],[4.812,46.27],[4.81,46.268],[4.809,46.266],[4.809,46.265],[4.809,46.261],[4.809,46.259],[4.809,46.256],[4.809,46.253],[4.808,46.251],[4.808,46.249],[4.808,46.248],[4.807,46.246],[4.807,46.245],[4.806,46.244],[4.804,46.243],[4.803,46.241],[4.799,46.238],[4.799,46.237],[4.798,46.236],[4.797,46.235],[4.796,46.233],[4.795,46.23],[4.794,46.228],[4.793,46.226],[4.792,46.224],[4.791,46.222],[4.791,46.219],[4.791,46.215],[4.791,46.21],[4.79,46.209],[4.788,46.208],[4.786,46.205],[4.785,46.204],[4.782,46.201],[4.78,46.199],[4.778,46.197],[4.778,46.195],[4.778,46.191],[4.778,46.188],[4.778,46.185],[4.779,46.182],[4.78,46.18],[4.781,46.178],[4.783,46.175],[4.786,46.173],[4.789,46.172],[4.797,46.169],[4.8,46.167],[4.801,46.165],[4.801,46.162],[4.801,46.159],[4.8,46.159],[4.799,46.157],[4.798,46.156],[4.798,46.154],[4.798,46.153],[4.797,46.152],[4.797,46.151],[4.796,46.15],[4.795,46.149],[4.794,46.148],[4.794,46.147],[4.793,46.147],[4.791,46.145],[4.79,46.144],[4.789,46.142],[4.786,46.14],[4.785,46.139],[4.784,46.138],[4.784,46.138],[4.783,46.137],[4.778,46.134],[4.775,46.131],[4.773,46.129],[4.772,46.128],[4.771,46.126],[4.77,46.125],[4.769,46.124],[4.769,46.122],[4.768,46.12],[4.768,46.118],[4.766,46.117],[4.765,46.115],[4.763,46.114],[4.762,46.112],[4.76,46.111],[4.758,46.109],[4.757,46.108],[4.755,46.107],[4.754,46.105],[4.753,46.104],[4.752,46.103],[4.751,46.102],[4.75,46.1],[4.75,46.099],[4.749,46.096],[4.748,46.094],[4.748,46.092],[4.749,46.091],[4.751,46.089],[4.754,46.087],[4.757,46.082],[4.758,46.079],[4.759,46.075],[4.759,46.072],[4.757,46.07],[4.756,46.068],[4.754,46.067],[4.752,46.065],[4.751,46.064],[4.75,46.063],[4.748,46.062],[4.747,46.061],[4.743,46.06],[4.742,46.059],[4.74,46.059],[4.738,46.058],[4.738,46.057],[4.736,46.055],[4.736,46.054],[4.737,46.052],[4.738,46.051],[4.74,46.049],[4.74,46.047],[4.742,46.045],[4.743,46.042],[4.744,46.041],[4.744,46.039],[4.744,46.037],[4.744,46.036],[4.744,46.035],[4.744,46.033],[4.743,46.032],[4.742,46.03],[4.741,46.028],[4.741,46.027],[4.741,46.025],[4.742,46.023],[4.743,46.022],[4.744,46.021],[4.745,46.02],[4.746,46.018],[4.746,46.015],[4.746,46.014],[4.748,46.012],[4.748,46.008],[4.747,46.007],[4.747,46.005],[4.748,46.001],[4.749,46],[4.748,45.998],[4.748,45.997],[4.748,45.994],[4.747,45.992],[4.748,45.992],[4.749,45.99],[4.75,45.989],[4.75,45.988],[4.751,45.986],[4.753,45.983],[4.753,45.982],[4.753,45.981],[4.753,45.98],[4.752,45.979],[4.752,45.978],[4.751,45.977],[4.751,45.976],[4.749,45.973],[4.748,45.971],[4.747,45.97],[4.745,45.968],[4.739,45.965],[4.737,45.963],[4.733,45.961],[4.732,45.96],[4.729,45.958],[4.728,45.957],[4.727,45.955],[4.726,45.954],[4.725,45.953],[4.726,45.952],[4.728,45.951],[4.728,45.95],[4.729,45.95],[4.731,45.949],[4.732,45.947],[4.733,45.947],[4.734,45.947],[4.735,45.947],[4.736,45.947],[4.739,45.946],[4.74,45.946],[4.742,45.946],[4.744,45.946],[4.746,45.945],[4.747,45.945],[4.749,45.944],[4.751,45.943],[4.753,45.943],[4.755,45.943],[4.756,45.943],[4.756,45.943],[4.759,45.943],[4.761,45.945],[4.762,45.945],[4.763,45.946],[4.764,45.946],[4.765,45.946],[4.766,45.947],[4.768,45.947],[4.769,45.947],[4.772,45.947],[4.774,45.947],[4.775,45.946],[4.777,45.945],[4.778,45.944],[4.78,45.941],[4.783,45.937],[4.785,45.934],[4.787,45.932],[4.788,45.932],[4.789,45.931],[4.791,45.931],[4.792,45.931],[4.793,45.931],[4.794,45.931],[4.795,45.931],[4.795,45.931],[4.796,45.931],[4.798,45.932],[4.799,45.932],[4.802,45.931],[4.803,45.931],[4.804,45.93],[4.805,45.93],[4.806,45.93],[4.807,45.929],[4.808,45.928],[4.808,45.927],[4.808,45.926],[4.809,45.925],[4.809,45.924],[4.809,45.923],[4.809,45.922],[4.808,45.922],[4.808,45.921],[4.808,45.92],[4.808,45.919],[4.808,45.918],[4.809,45.918],[4.809,45.917],[4.808,45.916],[4.808,45.915],[4.807,45.914],[4.806,45.913],[4.805,45.913],[4.805,45.912],[4.804,45.912],[4.802,45.91],[4.802,45.909],[4.801,45.908],[4.801,45.907],[4.802,45.906],[4.803,45.904],[4.804,45.903],[4.804,45.902],[4.805,45.9],[4.808,45.896],[4.81,45.894],[4.812,45.893],[4.815,45.891],[4.818,45.89],[4.819,45.89],[4.822,45.889],[4.824,45.888],[4.827,45.888],[4.829,45.888],[4.831,45.887],[4.833,45.887],[4.834,45.886],[4.834,45.885],[4.835,45.884],[4.835,45.883],[4.834,45.881],[4.834,45.88],[4.834,45.878],[4.834,45.877],[4.834,45.876],[4.835,45.874],[4.837,45.873],[4.837,45.872],[4.837,45.871],[4.837,45.87],[4.838,45.869],[4.838,45.869],[4.838,45.867],[4.838,45.866],[4.836,45.864],[4.835,45.862],[4.835,45.861],[4.835,45.86],[4.834,45.857],[4.829,45.852],[4.828,45.85],[4.828,45.848],[4.828,45.846],[4.829,45.845],[4.83,45.844],[4.832,45.843],[4.835,45.842],[4.837,45.841],[4.839,45.841],[4.841,45.84],[4.842,45.84],[4.842,45.84],[4.844,45.84],[4.848,45.837],[4.849,45.836],[4.849,45.836],[4.85,45.835],[4.851,45.832],[4.852,45.831],[4.852,45.829],[4.852,45.828],[4.851,45.827],[4.851,45.826],[4.849,45.825],[4.848,45.825],[4.846,45.824],[4.845,45.823],[4.843,45.822],[4.842,45.821],[4.842,45.821],[4.84,45.82],[4.839,45.819],[4.839,45.819],[4.839,45.817],[4.838,45.815],[4.838,45.813],[4.836,45.811],[4.836,45.81],[4.835,45.809],[4.833,45.808],[4.831,45.807],[4.829,45.807],[4.827,45.806],[4.826,45.805],[4.823,45.804],[4.819,45.802],[4.817,45.8],[4.812,45.796],[4.811,45.795],[4.809,45.793],[4.807,45.79],[4.805,45.787],[4.804,45.784],[4.805,45.783],[4.806,45.782],[4.807,45.781],[4.808,45.781],[4.809,45.779],[4.809,45.778],[4.809,45.777],[4.81,45.776],[4.811,45.775],[4.812,45.775],[4.813,45.775],[4.814,45.775],[4.816,45.775],[4.818,45.776],[4.82,45.776],[4.822,45.776],[4.823,45.776],[4.824,45.775],[4.825,45.775],[4.825,45.774],[4.826,45.772],[4.825,45.771],[4.824,45.769],[4.823,45.768],[4.822,45.765],[4.821,45.764],[4.82,45.763],[4.818,45.76],[4.815,45.758],[4.813,45.757],[4.812,45.756],[4.81,45.754],[4.81,45.753],[4.809,45.749],[4.808,45.747],[4.809,45.745],[4.81,45.742],[4.811,45.74],[4.812,45.739],[4.813,45.738],[4.813,45.737],[4.814,45.736],[4.817,45.727],[4.817,45.726],[4.818,45.721],[4.82,45.717],[4.821,45.716],[4.823,45.713],[4.825,45.712],[4.827,45.711],[4.83,45.71],[4.832,45.709],[4.834,45.708],[4.835,45.706],[4.837,45.704],[4.838,45.703],[4.839,45.7],[4.839,45.697],[4.838,45.696],[4.838,45.696],[4.838,45.695],[4.838,45.694],[4.837,45.693],[4.836,45.69],[4.836,45.689],[4.835,45.688],[4.835,45.686],[4.834,45.685],[4.834,45.684],[4.834,45.683],[4.833,45.683],[4.835,45.675],[4.834,45.675],[4.834,45.673],[4.834,45.673],[4.833,45.672],[4.833,45.671],[4.833,45.67],[4.832,45.669],[4.832,45.668],[4.832,45.666],[4.832,45.666],[4.831,45.665],[4.831,45.664],[4.831,45.663],[4.831,45.66],[4.83,45.659],[4.83,45.658],[4.83,45.657],[4.83,45.657],[4.83,45.656],[4.83,45.655],[4.829,45.654],[4.828,45.652],[4.827,45.651],[4.826,45.65],[4.824,45.649],[4.823,45.648],[4.82,45.647],[4.818,45.646],[4.817,45.645],[4.816,45.644],[4.815,45.644],[4.815,45.644],[4.815,45.643],[4.814,45.643],[4.814,45.643],[4.813,45.642],[4.813,45.642],[4.813,45.642],[4.812,45.641],[4.812,45.64],[4.811,45.639],[4.811,45.638],[4.81,45.638],[4.81,45.636],[4.809,45.635],[4.809,45.634],[4.808,45.633],[4.809,45.631],[4.808,45.629],[4.809,45.629],[4.809,45.628],[4.809,45.627],[4.809,45.627],[4.808,45.626],[4.808,45.624],[4.808,45.622],[4.808,45.621],[4.808,45.62],[4.808,45.62],[4.807,45.619],[4.807,45.619],[4.806,45.618],[4.806,45.618],[4.805,45.618],[4.805,45.618],[4.804,45.615],[4.803,45.614],[4.803,45.614],[4.803,45.613],[4.803,45.612],[4.803,45.612],[4.803,45.612],[4.796,45.603],[4.794,45.6],[4.793,45.599],[4.792,45.598],[4.791,45.597],[4.79,45.596],[4.788,45.595],[4.787,45.593],[4.786,45.593],[4.785,45.593],[4.782,45.591],[4.78,45.59],[4.779,45.59],[4.778,45.589],[4.777,45.588],[4.778,45.586],[4.779,45.581],[4.781,45.581],[4.787,45.578],[4.79,45.578],[4.791,45.577],[4.792,45.577],[4.793,45.577],[4.798,45.575],[4.799,45.575],[4.8,45.575],[4.802,45.574],[4.809,45.573],[4.812,45.572],[4.813,45.571],[4.814,45.57],[4.816,45.568],[4.817,45.566],[4.818,45.564],[4.819,45.563],[4.821,45.56],[4.822,45.559],[4.824,45.557],[4.827,45.554],[4.828,45.553],[4.829,45.552],[4.83,45.551],[4.833,45.547],[4.836,45.545],[4.837,45.545],[4.838,45.545],[4.837,45.544],[4.843,45.543],[4.853,45.541],[4.854,45.54],[4.857,45.539],[4.86,45.539],[4.864,45.538],[4.867,45.537],[4.87,45.536],[4.872,45.534],[4.873,45.533],[4.874,45.531],[4.874,45.53],[4.874,45.529],[4.872,45.526],[4.869,45.523],[4.866,45.52],[4.86,45.513],[4.858,45.511],[4.851,45.505],[4.849,45.504],[4.846,45.502],[4.845,45.502],[4.843,45.501],[4.841,45.5],[4.84,45.5],[4.838,45.499],[4.835,45.498],[4.833,45.496],[4.83,45.495],[4.828,45.496],[4.827,45.495],[4.826,45.495],[4.826,45.495],[4.826,45.494],[4.825,45.493],[4.822,45.49],[4.821,45.489],[4.819,45.487],[4.817,45.485],[4.815,45.484],[4.813,45.483],[4.803,45.479],[4.8,45.477],[4.798,45.476],[4.797,45.476],[4.795,45.475],[4.794,45.475],[4.792,45.474],[4.789,45.473],[4.786,45.472],[4.785,45.471],[4.783,45.47],[4.782,45.468],[4.782,45.466],[4.784,45.462],[4.784,45.461],[4.784,45.461],[4.783,45.461],[4.782,45.46],[4.781,45.46],[4.781,45.459],[4.78,45.459],[4.778,45.457],[4.775,45.456],[4.774,45.456],[4.767,45.456],[4.763,45.455],[4.761,45.454],[4.76,45.453],[4.76,45.451],[4.76,45.449],[4.761,45.445],[4.762,45.442],[4.763,45.439],[4.764,45.437],[4.764,45.435],[4.764,45.434],[4.763,45.432],[4.762,45.43],[4.761,45.43],[4.757,45.428],[4.754,45.427],[4.753,45.426],[4.749,45.42],[4.747,45.417],[4.747,45.415],[4.746,45.413],[4.747,45.411],[4.748,45.409],[4.749,45.408],[4.75,45.406],[4.752,45.404],[4.754,45.401],[4.756,45.4],[4.757,45.399],[4.758,45.397],[4.758,45.395],[4.759,45.394],[4.76,45.393],[4.757,45.386],[4.756,45.384],[4.755,45.382],[4.753,45.38],[4.753,45.379],[4.752,45.377],[4.751,45.376],[4.751,45.374],[4.752,45.373],[4.753,45.372],[4.753,45.37],[4.754,45.369],[4.754,45.368],[4.754,45.366],[4.755,45.365],[4.755,45.365],[4.76,45.361],[4.762,45.361],[4.762,45.36],[4.763,45.359],[4.764,45.359],[4.765,45.358],[4.766,45.358],[4.767,45.356],[4.768,45.354],[4.769,45.353],[4.769,45.352],[4.768,45.35],[4.767,45.349],[4.765,45.347],[4.764,45.341],[4.763,45.339],[4.763,45.338],[4.763,45.337],[4.763,45.336],[4.763,45.335],[4.763,45.331],[4.762,45.328],[4.763,45.326],[4.764,45.324],[4.765,45.323],[4.766,45.322],[4.766,45.321],[4.767,45.32],[4.768,45.319],[4.768,45.319],[4.769,45.318],[4.771,45.317],[4.772,45.316],[4.774,45.316],[4.775,45.315],[4.776,45.314],[4.777,45.314],[4.778,45.313],[4.779,45.313],[4.779,45.312],[4.78,45.312],[4.782,45.311],[4.783,45.311],[4.785,45.31],[4.786,45.309],[4.788,45.309],[4.79,45.307],[4.792,45.306],[4.793,45.305],[4.794,45.305],[4.795,45.304],[4.796,45.304],[4.796,45.303],[4.796,45.303],[4.797,45.303],[4.797,45.302],[4.798,45.302],[4.799,45.301],[4.799,45.3],[4.801,45.299],[4.802,45.299],[4.802,45.299],[4.803,45.299],[4.803,45.298],[4.803,45.298],[4.803,45.298],[4.802,45.298],[4.802,45.298],[4.802,45.298],[4.803,45.297],[4.804,45.296],[4.805,45.295],[4.807,45.294],[4.809,45.293],[4.809,45.292],[4.809,45.286],[4.809,45.285],[4.809,45.283],[4.809,45.281],[4.809,45.28],[4.809,45.279],[4.809,45.278],[4.809,45.275],[4.809,45.272],[4.809,45.269],[4.809,45.268],[4.809,45.267],[4.81,45.266],[4.81,45.263],[4.809,45.262],[4.809,45.26],[4.806,45.256],[4.805,45.254],[4.805,45.253],[4.804,45.252],[4.803,45.251],[4.802,45.25],[4.802,45.249],[4.802,45.248],[4.802,45.247],[4.802,45.246],[4.801,45.242],[4.801,45.24],[4.801,45.24],[4.801,45.239],[4.801,45.236],[4.801,45.236],[4.801,45.235],[4.801,45.234],[4.801,45.234],[4.801,45.234],[4.801,45.233],[4.801,45.233],[4.801,45.233],[4.801,45.232],[4.801,45.231],[4.801,45.229],[4.802,45.229],[4.802,45.228],[4.802,45.227],[4.802,45.226],[4.803,45.225],[4.804,45.224],[4.804,45.222],[4.804,45.221],[4.805,45.221],[4.805,45.219],[4.805,45.218],[4.806,45.217],[4.806,45.216],[4.807,45.214],[4.807,45.213],[4.807,45.212],[4.808,45.211],[4.808,45.21],[4.808,45.209],[4.809,45.208],[4.809,45.208],[4.809,45.207],[4.809,45.206],[4.809,45.205],[4.809,45.203],[4.808,45.202],[4.808,45.201],[4.807,45.2],[4.807,45.2],[4.806,45.199],[4.806,45.199],[4.806,45.198],[4.806,45.198],[4.805,45.197],[4.805,45.197],[4.804,45.196],[4.804,45.195],[4.804,45.194],[4.804,45.193],[4.804,45.192],[4.806,45.191],[4.806,45.189],[4.807,45.188],[4.811,45.185],[4.811,45.184],[4.812,45.182],[4.812,45.182],[4.812,45.182],[4.813,45.181],[4.812,45.18],[4.811,45.178],[4.811,45.177],[4.81,45.176],[4.808,45.167],[4.809,45.165],[4.81,45.164],[4.812,45.162],[4.814,45.161],[4.814,45.16],[4.816,45.16],[4.818,45.16],[4.82,45.159],[4.823,45.159],[4.825,45.159],[4.826,45.157],[4.827,45.156],[4.827,45.154],[4.826,45.153],[4.824,45.151],[4.822,45.148],[4.819,45.145],[4.814,45.142],[4.812,45.14],[4.808,45.136],[4.805,45.135],[4.804,45.135],[4.803,45.134],[4.803,45.131],[4.803,45.13],[4.802,45.128],[4.802,45.125],[4.802,45.124],[4.803,45.123],[4.803,45.122],[4.803,45.121],[4.804,45.121],[4.805,45.121],[4.806,45.12],[4.807,45.118],[4.807,45.118],[4.808,45.117],[4.81,45.116],[4.812,45.114],[4.812,45.113],[4.812,45.113],[4.811,45.113],[4.812,45.112],[4.813,45.112],[4.813,45.112],[4.813,45.112],[4.814,45.111],[4.815,45.11],[4.815,45.109],[4.816,45.108],[4.818,45.107],[4.818,45.107],[4.818,45.106],[4.82,45.105],[4.821,45.104],[4.822,45.104],[4.822,45.104],[4.822,45.104],[4.821,45.103],[4.822,45.102],[4.823,45.102],[4.823,45.1],[4.823,45.099],[4.824,45.099],[4.824,45.098],[4.824,45.097],[4.824,45.097],[4.827,45.096],[4.827,45.096],[4.828,45.096],[4.828,45.095],[4.828,45.095],[4.829,45.094],[4.829,45.093],[4.829,45.093],[4.829,45.092],[4.83,45.092],[4.83,45.091],[4.83,45.09],[4.831,45.09],[4.83,45.09],[4.83,45.089],[4.83,45.089],[4.831,45.089],[4.831,45.089],[4.83,45.088],[4.83,45.087],[4.83,45.086],[4.83,45.085],[4.83,45.084],[4.829,45.084],[4.829,45.084],[4.828,45.084],[4.828,45.082],[4.827,45.081],[4.826,45.08],[4.826,45.078],[4.826,45.077],[4.826,45.075],[4.826,45.075],[4.827,45.075],[4.827,45.074],[4.828,45.073],[4.829,45.073],[4.828,45.072],[4.828,45.072],[4.83,45.07],[4.832,45.069],[4.836,45.067],[4.838,45.066],[4.842,45.065],[4.843,45.065],[4.844,45.065],[4.847,45.064],[4.852,45.063],[4.853,45.062],[4.854,45.061],[4.856,45.06],[4.857,45.059],[4.857,45.057],[4.857,45.055],[4.856,45.052],[4.854,45.05],[4.851,45.047],[4.847,45.044],[4.845,45.043],[4.842,45.041],[4.84,45.038],[4.838,45.036],[4.837,45.035],[4.837,45.032],[4.838,45.029],[4.839,45.027],[4.839,45.026],[4.84,45.025],[4.842,45.024],[4.843,45.023],[4.844,45.021],[4.844,45.02],[4.843,45.018],[4.842,45.016],[4.839,45.014],[4.837,45.012],[4.835,45.011],[4.835,45.01],[4.835,45.01],[4.835,45.008],[4.835,45.007],[4.835,45.006],[4.836,45.006],[4.836,45.006],[4.837,45.005],[4.839,45.004],[4.84,45.003],[4.841,45.002],[4.842,45.002],[4.843,45.001],[4.844,45],[4.845,44.999],[4.846,44.998],[4.847,44.998],[4.849,44.996],[4.851,44.995],[4.851,44.994],[4.852,44.993],[4.852,44.991],[4.852,44.989],[4.852,44.987],[4.852,44.984],[4.852,44.98],[4.853,44.977],[4.853,44.975],[4.853,44.974],[4.855,44.973],[4.855,44.973],[4.855,44.972],[4.855,44.972],[4.856,44.971],[4.856,44.97],[4.857,44.97],[4.857,44.969],[4.858,44.968],[4.858,44.968],[4.857,44.967],[4.857,44.967],[4.858,44.966],[4.859,44.966],[4.859,44.965],[4.859,44.966],[4.86,44.966],[4.86,44.965],[4.86,44.965],[4.86,44.964],[4.86,44.964],[4.861,44.964],[4.861,44.964],[4.862,44.962],[4.864,44.961],[4.864,44.96],[4.865,44.96],[4.866,44.96],[4.868,44.959],[4.87,44.958],[4.872,44.957],[4.873,44.956],[4.875,44.955],[4.875,44.954],[4.876,44.953],[4.876,44.952],[4.876,44.952],[4.876,44.951],[4.877,44.949],[4.878,44.947],[4.879,44.945],[4.879,44.945],[4.881,44.943],[4.883,44.942],[4.884,44.94],[4.884,44.939],[4.885,44.937],[4.885,44.936],[4.884,44.935],[4.883,44.934],[4.882,44.933],[4.88,44.931],[4.878,44.929],[4.876,44.927],[4.874,44.925],[4.873,44.925],[4.872,44.922],[4.87,44.919],[4.87,44.918],[4.869,44.915],[4.868,44.913],[4.868,44.911],[4.867,44.91],[4.866,44.908],[4.863,44.906],[4.859,44.905],[4.857,44.904],[4.856,44.904],[4.855,44.904],[4.854,44.904],[4.853,44.902],[4.852,44.898],[4.852,44.896],[4.852,44.896],[4.853,44.894],[4.853,44.892],[4.854,44.89],[4.854,44.888],[4.856,44.887],[4.857,44.884],[4.858,44.882],[4.859,44.882],[4.859,44.881],[4.86,44.879],[4.86,44.878],[4.86,44.877],[4.859,44.875],[4.858,44.874],[4.857,44.873],[4.856,44.872],[4.851,44.868],[4.849,44.867],[4.848,44.865],[4.847,44.864],[4.846,44.862],[4.845,44.86],[4.844,44.86],[4.843,44.859],[4.841,44.856],[4.84,44.855],[4.839,44.854],[4.838,44.853],[4.838,44.853],[4.838,44.854],[4.837,44.854],[4.837,44.852],[4.837,44.852],[4.833,44.849],[4.828,44.846],[4.824,44.844],[4.823,44.843],[4.822,44.842],[4.819,44.839],[4.819,44.837],[4.816,44.833],[4.815,44.829],[4.813,44.826],[4.812,44.822],[4.81,44.819],[4.809,44.816],[4.809,44.815],[4.809,44.812],[4.808,44.811],[4.806,44.81],[4.806,44.809],[4.791,44.803],[4.787,44.802],[4.782,44.799],[4.78,44.797],[4.776,44.791],[4.772,44.787],[4.769,44.785],[4.767,44.782],[4.767,44.781],[4.766,44.78],[4.764,44.779],[4.763,44.777],[4.762,44.776],[4.762,44.775],[4.76,44.773],[4.759,44.773],[4.756,44.77],[4.755,44.769],[4.754,44.767],[4.752,44.763],[4.751,44.759],[4.75,44.758],[4.751,44.756],[4.751,44.754],[4.752,44.753],[4.756,44.748],[4.757,44.746],[4.759,44.741],[4.76,44.739],[4.761,44.738],[4.761,44.737],[4.762,44.736],[4.761,44.736],[4.764,44.727],[4.765,44.726],[4.764,44.724],[4.764,44.722],[4.764,44.719],[4.764,44.718],[4.764,44.718],[4.764,44.717],[4.765,44.715],[4.768,44.712],[4.769,44.711],[4.77,44.709],[4.77,44.709],[4.772,44.707],[4.773,44.706],[4.773,44.704],[4.774,44.703],[4.774,44.699],[4.774,44.696],[4.775,44.694],[4.776,44.692],[4.777,44.691],[4.777,44.69],[4.779,44.688],[4.781,44.685],[4.781,44.684],[4.782,44.678],[4.781,44.668],[4.781,44.664],[4.776,44.645],[4.772,44.644],[4.771,44.643],[4.771,44.643],[4.771,44.643],[4.771,44.642],[4.771,44.642],[4.768,44.634],[4.766,44.632],[4.762,44.627],[4.762,44.626],[4.761,44.624],[4.761,44.623],[4.758,44.62],[4.756,44.617],[4.755,44.616],[4.753,44.614],[4.751,44.613],[4.75,44.611],[4.748,44.608],[4.746,44.605],[4.745,44.604],[4.744,44.602],[4.739,44.596],[4.737,44.597],[4.736,44.597],[4.714,44.587],[4.713,44.586],[4.712,44.585],[4.71,44.584],[4.709,44.583],[4.707,44.58],[4.706,44.579],[4.706,44.578],[4.704,44.576],[4.702,44.573],[4.702,44.572],[4.702,44.571],[4.699,44.564],[4.696,44.561],[4.694,44.56],[4.694,44.559],[4.691,44.547],[4.693,44.544],[4.694,44.541],[4.696,44.538],[4.696,44.537],[4.698,44.534],[4.699,44.532],[4.699,44.531],[4.7,44.53],[4.7,44.529],[4.7,44.528],[4.7,44.526],[4.699,44.525],[4.698,44.524],[4.698,44.523],[4.697,44.522],[4.695,44.52],[4.694,44.52],[4.693,44.519],[4.691,44.517],[4.69,44.513],[4.689,44.51],[4.688,44.506],[4.687,44.502],[4.686,44.501],[4.686,44.5],[4.686,44.499],[4.687,44.496],[4.688,44.493],[4.688,44.492],[4.688,44.492],[4.698,44.486],[4.698,44.486],[4.7,44.482],[4.7,44.482],[4.701,44.481],[4.702,44.479],[4.702,44.478],[4.701,44.477],[4.701,44.476],[4.701,44.474],[4.701,44.473],[4.701,44.472],[4.702,44.472],[4.702,44.47],[4.702,44.468],[4.702,44.464],[4.702,44.459],[4.702,44.457],[4.7,44.453],[4.7,44.452],[4.699,44.452],[4.699,44.451],[4.699,44.449],[4.699,44.447],[4.698,44.446],[4.698,44.445],[4.696,44.443],[4.696,44.443],[4.695,44.443],[4.693,44.441],[4.691,44.44],[4.687,44.438],[4.684,44.438],[4.681,44.437],[4.675,44.436],[4.672,44.435],[4.67,44.434],[4.668,44.431],[4.667,44.427],[4.666,44.426],[4.666,44.425],[4.666,44.423],[4.665,44.421],[4.665,44.418],[4.665,44.415],[4.665,44.413],[4.665,44.412],[4.666,44.411],[4.666,44.41],[4.665,44.41],[4.665,44.41],[4.665,44.408],[4.664,44.407],[4.664,44.407],[4.664,44.404],[4.664,44.402],[4.665,44.401],[4.665,44.401],[4.665,44.4],[4.665,44.399],[4.666,44.398],[4.666,44.398],[4.666,44.397],[4.665,44.397],[4.665,44.396],[4.665,44.395],[4.655,44.385],[4.653,44.383],[4.652,44.381],[4.651,44.38],[4.651,44.379],[4.651,44.379],[4.651,44.378],[4.65,44.378],[4.65,44.377],[4.649,44.376],[4.649,44.373],[4.648,44.368],[4.647,44.366],[4.647,44.364],[4.647,44.364],[4.647,44.36],[4.647,44.358],[4.646,44.353],[4.646,44.352],[4.646,44.349],[4.647,44.342],[4.648,44.342],[4.648,44.339],[4.647,44.338],[4.649,44.336],[4.65,44.331],[4.652,44.321],[4.649,44.313],[4.653,44.302],[4.652,44.294],[4.652,44.294],[4.652,44.292],[4.651,44.288],[4.65,44.288],[4.65,44.287],[4.65,44.286],[4.65,44.285],[4.65,44.285],[4.651,44.287],[4.651,44.286],[4.651,44.283],[4.651,44.282],[4.65,44.282],[4.65,44.28],[4.65,44.276],[4.65,44.276],[4.649,44.274],[4.648,44.271],[4.648,44.267],[4.648,44.266],[4.646,44.266],[4.647,44.264],[4.648,44.262],[4.649,44.26],[4.651,44.258],[4.652,44.257],[4.653,44.255],[4.654,44.254],[4.656,44.252],[4.657,44.25],[4.66,44.248],[4.661,44.246],[4.663,44.246],[4.663,44.245],[4.664,44.244],[4.666,44.243],[4.668,44.242],[4.671,44.24],[4.672,44.239],[4.674,44.238],[4.675,44.236],[4.676,44.236],[4.677,44.234],[4.678,44.23],[4.677,44.227],[4.675,44.225],[4.674,44.224],[4.674,44.225],[4.674,44.225],[4.674,44.225],[4.673,44.224],[4.672,44.223],[4.675,44.213],[4.676,44.212],[4.677,44.211],[4.678,44.21],[4.681,44.21],[4.682,44.211],[4.684,44.212],[4.686,44.212],[4.687,44.212],[4.688,44.212],[4.69,44.212],[4.691,44.212],[4.691,44.213],[4.69,44.213],[4.69,44.213],[4.691,44.214],[4.694,44.215],[4.696,44.215],[4.698,44.215],[4.699,44.216],[4.701,44.215],[4.701,44.215],[4.7,44.215],[4.699,44.215],[4.699,44.214],[4.7,44.214],[4.7,44.214],[4.699,44.213],[4.7,44.213],[4.701,44.213],[4.701,44.214],[4.701,44.214],[4.702,44.214],[4.703,44.214],[4.705,44.214],[4.707,44.212],[4.708,44.21],[4.709,44.207],[4.707,44.206],[4.705,44.203],[4.703,44.202],[4.702,44.199],[4.702,44.197],[4.703,44.197],[4.703,44.196],[4.703,44.195],[4.703,44.194],[4.704,44.193],[4.705,44.191],[4.707,44.188],[4.707,44.187],[4.71,44.182],[4.712,44.18],[4.72,44.162],[4.721,44.154],[4.721,44.151],[4.722,44.15],[4.722,44.149],[4.722,44.147],[4.722,44.145],[4.722,44.143],[4.721,44.14],[4.72,44.139],[4.718,44.136],[4.717,44.136],[4.716,44.134],[4.715,44.133],[4.715,44.132],[4.715,44.128],[4.715,44.126],[4.717,44.125]],[[5.264,43.291],[5.363,43.305]],[[5.264,43.291],[5.364,43.191],[5.464,43.191],[5.564,43.191],[5.664,43.191],[5.764,43.091],[5.864,42.991],[5.964,43.091],[6.064,43.091],[6.164,43.091],[6.264,43.091],[6.364,43.091],[6.464,43.091],[6.564,43.091],[6.664,43.091],[6.764,43.091],[6.864,43.091],[6.964,43.091],[7.064,43.091],[7.164,43.091],[7.264,43.091],[7.364,43.091],[7.464,43.091],[7.564,43.091],[7.664,43.091],[7.764,43.091],[7.864,43.091],[7.964,43.091],[8.064,43.091],[8.164,43.091],[8.264,43.091],[8.364,43.091],[8.464,43.091],[8.564,43.091],[8.664,43.091],[8.764,43.091],[8.864,43.091],[8.964,43.091],[9.064,43.091],[9.164,43.091],[9.264,43.091],[9.364,43.091],[9.464,42.991],[9.564,42.891],[9.564,42.791],[9.564,42.691],[9.564,42.591],[9.564,42.491],[9.564,42.391],[9.564,42.291],[9.564,42.191],[9.564,42.091]],[[6.003,47.224],[6.043,47.252],[6.069,47.275],[6.127,47.299],[6.259,47.341],[6.385,47.381],[6.456,47.399],[6.569,47.419],[6.657,47.439],[6.72,47.448],[6.76,47.447],[6.786,47.445],[6.811,47.45],[6.859,47.466],[6.916,47.495],[7.019,47.529],[7.131,47.564],[7.235,47.594],[7.341,47.629],[7.414,47.651],[7.497,47.667]],[[9.526,42.124],[9.564,42.091]],[[9.564,42.091],[9.664,42.191],[9.764,42.291],[9.864,42.391],[9.964,42.491],[10.064,42.491],[10.164,42.591],[10.264,42.691]],[[10.264,42.691],[10.24,42.743]],[[10.264,42.691],[10.364,42.691],[10.464,42.791],[10.464,42.891],[10.464,42.991]],[[10.496,42.996],[10.464,42.991]],[[10.464,42.991],[10.564,42.891],[10.664,42.891],[10.764,42.791],[10.864,42.691],[10.964,42.691],[11.064,42.591],[11.164,42.491],[11.264,42.391]],[[11.264,42.391],[11.364,42.391],[11.464,42.291],[11.564,42.291],[11.664,42.191],[11.764,42.091],[11.864,41.991],[11.964,41.991],[12.064,41.891],[12.164,41.791],[12.264,41.691],[12.287,41.754]],[[11.264,42.391],[11.288,42.406]],[[12.474,41.89],[12.474,41.89],[12.475,41.888],[12.469,41.882],[12.468,41.877],[12.472,41.868],[12.47,41.863],[12.461,41.858],[12.46,41.855],[12.46,41.854],[12.462,41.85],[12.444,41.834],[12.435,41.829],[12.426,41.831],[12.421,41.828],[12.418,41.822],[12.416,41.818],[12.411,41.809],[12.405,41.805],[12.394,41.805],[12.386,41.802],[12.375,41.804],[12.37,41.805],[12.364,41.807],[12.36,41.806],[12.352,41.806],[12.343,41.809],[12.339,41.806],[12.337,41.799],[12.332,41.798],[12.323,41.799],[12.317,41.799],[12.309,41.8],[12.302,41.797],[12.295,41.791],[12.284,41.789],[12.278,41.782],[12.273,41.773],[12.274,41.771],[12.274,41.768],[12.275,41.764],[12.28,41.758],[12.271,41.753]]]},"pair": 50235,"direction": 1,"month": 3,"priority": 1,"expense": 13.294,"duration": 82.143,"length": 2947.752},{"type": "Feature", "geometry": {"type":"MultiLineString","coordinates":[[[-1.558,47.214],[-1.936,47.291],[-2.136,47.291],[-2.236,47.191]],[[-2.236,47.191],[-2.336,47.191],[-2.436,47.191],[-2.536,47.291],[-2.636,47.391],[-2.736,47.391],[-2.836,47.391],[-2.936,47.391],[-3.036,47.391],[-3.136,47.391],[-3.236,47.491],[-3.336,47.591],[-3.436,47.691],[-3.536,47.691],[-3.636,47.691],[-3.736,47.791],[-3.836,47.791],[-3.936,47.791],[-4.036,47.791],[-4.136,47.791],[-4.236,47.791],[-4.336,47.791],[-4.436,47.891],[-4.536,47.991],[-4.536,48.091],[-4.636,48.191],[-4.736,48.291],[-4.836,48.391],[-4.836,48.491],[-4.736,48.591],[-4.636,48.691],[-4.536,48.791],[-4.436,48.891],[-4.336,48.991],[-4.236,49.091],[-4.136,49.191],[-4.036,49.291],[-3.936,49.391],[-3.836,49.491],[-3.736,49.591],[-3.636,49.691],[-3.536,49.791],[-3.436,49.791],[-3.336,49.791],[-3.236,49.791],[-3.136,49.791],[-3.036,49.791],[-2.936,49.791],[-2.836,49.791],[-2.736,49.791],[-2.636,49.791],[-2.536,49.791],[-2.436,49.791],[-2.336,49.791],[-2.236,49.791],[-2.136,49.791],[-2.036,49.791],[-1.936,49.791],[-1.836,49.791],[-1.736,49.791],[-1.636,49.791],[-1.536,49.791],[-1.436,49.791],[-1.336,49.791],[-1.236,49.791],[-1.136,49.791],[-1.036,49.791],[-0.936,49.791],[-0.836,49.791],[-0.736,49.791],[-0.636,49.791],[-0.536,49.791],[-0.436,49.791],[-0.336,49.791],[-0.236,49.791],[-0.136,49.791],[-0.036,49.791],[0.064,49.791],[0.164,49.791],[0.264,49.791],[0.364,49.791],[0.464,49.691],[0.564,49.591]],[[-0.586,44.856],[-1.136,44.691],[-1.236,44.691],[-1.336,44.791],[-1.336,44.891],[-1.336,44.991],[-1.336,45.091],[-1.336,45.191],[-1.336,45.291],[-1.336,45.391],[-1.336,45.491],[-1.336,45.591],[-1.336,45.691],[-1.336,45.791],[-1.336,45.891],[-1.436,45.991],[-1.436,46.091],[-1.536,46.191],[-1.636,46.291],[-1.736,46.391],[-1.836,46.491],[-1.936,46.591],[-2.036,46.691],[-2.136,46.791],[-2.136,46.891],[-2.136,46.991],[-2.136,47.091],[-2.236,47.191]],[[1.409,43.612],[1.407,43.613],[1.405,43.615],[1.403,43.619],[1.401,43.623],[1.402,43.625],[1.403,43.627],[1.404,43.63],[1.405,43.632],[1.405,43.633],[1.405,43.636],[1.405,43.638],[1.404,43.64],[1.404,43.642],[1.403,43.645],[1.402,43.648],[1.403,43.649],[1.405,43.651],[1.406,43.652],[1.408,43.654],[1.408,43.656],[1.408,43.657],[1.407,43.658],[1.407,43.659],[1.407,43.662],[1.406,43.662],[1.405,43.663],[1.404,43.665],[1.403,43.666],[1.401,43.666],[1.4,43.667],[1.398,43.667],[1.395,43.667],[1.393,43.667],[1.39,43.667],[1.386,43.667],[1.383,43.668],[1.381,43.67],[1.379,43.672],[1.376,43.675],[1.375,43.676],[1.373,43.677],[1.373,43.678],[1.373,43.677],[1.375,43.677],[1.375,43.677],[1.375,43.678],[1.373,43.678],[1.372,43.68],[1.372,43.68],[1.371,43.681],[1.369,43.683],[1.369,43.686],[1.368,43.688],[1.368,43.689],[1.369,43.693],[1.369,43.694],[1.369,43.696],[1.37,43.697],[1.37,43.698],[1.368,43.701],[1.367,43.703],[1.366,43.705],[1.364,43.706],[1.361,43.706],[1.358,43.707],[1.356,43.707],[1.348,43.709],[1.345,43.711],[1.343,43.712],[1.342,43.713],[1.341,43.714],[1.341,43.715],[1.341,43.716],[1.342,43.717],[1.343,43.718],[1.344,43.72],[1.344,43.721],[1.344,43.721],[1.343,43.722],[1.343,43.722],[1.342,43.723],[1.341,43.724],[1.339,43.724],[1.338,43.725],[1.335,43.725],[1.334,43.726],[1.333,43.727],[1.332,43.728],[1.331,43.728],[1.33,43.729],[1.329,43.729],[1.328,43.73],[1.327,43.731],[1.326,43.733],[1.325,43.733],[1.32,43.741],[1.319,43.741],[1.316,43.742],[1.313,43.743],[1.312,43.745],[1.312,43.746],[1.312,43.747],[1.313,43.749],[1.313,43.753],[1.314,43.754],[1.314,43.754],[1.315,43.755],[1.316,43.757],[1.316,43.758],[1.317,43.76],[1.318,43.761],[1.319,43.761],[1.32,43.762],[1.321,43.763],[1.324,43.768],[1.325,43.768],[1.325,43.769],[1.326,43.77],[1.327,43.77],[1.326,43.77],[1.326,43.77],[1.326,43.771],[1.325,43.772],[1.324,43.772],[1.323,43.773],[1.319,43.773],[1.318,43.773],[1.316,43.773],[1.313,43.774],[1.311,43.775],[1.308,43.776],[1.304,43.777],[1.303,43.778],[1.302,43.778],[1.299,43.779],[1.297,43.779],[1.294,43.78],[1.292,43.782],[1.291,43.783],[1.29,43.784],[1.29,43.785],[1.29,43.786],[1.288,43.789],[1.288,43.79],[1.287,43.791],[1.285,43.791],[1.284,43.792],[1.283,43.791],[1.282,43.791],[1.281,43.791],[1.28,43.791],[1.278,43.792],[1.277,43.793],[1.274,43.794],[1.274,43.794],[1.273,43.795],[1.272,43.796],[1.272,43.797],[1.272,43.798],[1.272,43.798],[1.273,43.799],[1.274,43.8],[1.275,43.801],[1.276,43.802],[1.278,43.802],[1.279,43.803],[1.279,43.803],[1.279,43.803],[1.279,43.804],[1.279,43.804],[1.279,43.804],[1.279,43.804],[1.28,43.805],[1.28,43.805],[1.279,43.806],[1.279,43.806],[1.278,43.806],[1.278,43.806],[1.279,43.806],[1.279,43.806],[1.279,43.807],[1.278,43.807],[1.276,43.807],[1.275,43.807],[1.275,43.806],[1.274,43.806],[1.274,43.806],[1.273,43.806],[1.272,43.806],[1.269,43.805],[1.268,43.805],[1.266,43.805],[1.265,43.805],[1.264,43.806],[1.263,43.806],[1.257,43.811],[1.256,43.814],[1.256,43.816],[1.255,43.817],[1.255,43.818],[1.256,43.819],[1.257,43.82],[1.257,43.822],[1.258,43.824],[1.257,43.825],[1.257,43.826],[1.256,43.827],[1.255,43.827],[1.254,43.828],[1.254,43.828],[1.249,43.831],[1.247,43.831],[1.246,43.831],[1.245,43.832],[1.246,43.833],[1.247,43.834],[1.249,43.836],[1.25,43.837],[1.251,43.84],[1.251,43.841],[1.251,43.843],[1.249,43.846],[1.248,43.846],[1.242,43.849],[1.242,43.849],[1.241,43.85],[1.242,43.852],[1.242,43.853],[1.242,43.855],[1.242,43.857],[1.242,43.858],[1.242,43.859],[1.242,43.859],[1.241,43.859],[1.24,43.86],[1.239,43.861],[1.238,43.862],[1.237,43.863],[1.236,43.863],[1.236,43.864],[1.235,43.865],[1.233,43.866],[1.232,43.867],[1.231,43.867],[1.229,43.867],[1.227,43.867],[1.226,43.866],[1.224,43.867],[1.223,43.868],[1.222,43.869],[1.222,43.87],[1.221,43.871],[1.221,43.871],[1.221,43.873],[1.22,43.874],[1.219,43.876],[1.219,43.878],[1.219,43.878],[1.219,43.88],[1.219,43.882],[1.219,43.883],[1.218,43.884],[1.215,43.885],[1.214,43.885],[1.212,43.886],[1.209,43.886],[1.207,43.886],[1.206,43.886],[1.205,43.887],[1.204,43.889],[1.205,43.892],[1.207,43.893],[1.209,43.895],[1.21,43.897],[1.21,43.899],[1.21,43.9],[1.209,43.901],[1.206,43.904],[1.204,43.907],[1.204,43.908],[1.202,43.909],[1.201,43.909],[1.199,43.909],[1.198,43.909],[1.197,43.909],[1.196,43.908],[1.193,43.907],[1.191,43.907],[1.189,43.907],[1.188,43.908],[1.187,43.91],[1.187,43.913],[1.187,43.915],[1.187,43.916],[1.186,43.917],[1.186,43.918],[1.186,43.919],[1.185,43.919],[1.184,43.92],[1.184,43.921],[1.185,43.923],[1.185,43.925],[1.185,43.926],[1.186,43.927],[1.187,43.929],[1.188,43.929],[1.188,43.93],[1.189,43.931],[1.19,43.932],[1.191,43.933],[1.192,43.934],[1.194,43.935],[1.195,43.936],[1.196,43.937],[1.197,43.938],[1.197,43.94],[1.196,43.94],[1.196,43.941],[1.195,43.941],[1.194,43.941],[1.194,43.94],[1.193,43.94],[1.192,43.94],[1.192,43.94],[1.191,43.941],[1.19,43.941],[1.189,43.941],[1.187,43.942],[1.185,43.944],[1.183,43.945],[1.182,43.946],[1.181,43.946],[1.181,43.946],[1.179,43.945],[1.178,43.944],[1.177,43.944],[1.175,43.944],[1.172,43.944],[1.171,43.944],[1.171,43.945],[1.171,43.945],[1.171,43.947],[1.171,43.95],[1.171,43.951],[1.171,43.952],[1.171,43.952],[1.172,43.954],[1.172,43.955],[1.172,43.956],[1.171,43.957],[1.17,43.959],[1.169,43.96],[1.166,43.964],[1.164,43.966],[1.163,43.967],[1.162,43.97],[1.162,43.972],[1.162,43.977],[1.162,43.979],[1.161,43.981],[1.161,43.983],[1.16,43.983],[1.146,43.989],[1.139,43.991],[1.135,43.993],[1.131,43.993],[1.13,43.994],[1.127,43.994],[1.127,43.994],[1.118,43.998],[1.118,43.998],[1.118,43.999],[1.118,44],[1.119,44.001],[1.118,44.002],[1.118,44.003],[1.116,44.004],[1.115,44.006],[1.115,44.008],[1.115,44.01],[1.114,44.01],[1.113,44.011],[1.112,44.011],[1.11,44.012],[1.108,44.013],[1.106,44.014],[1.106,44.015],[1.106,44.016],[1.105,44.017],[1.105,44.017],[1.103,44.02],[1.099,44.02],[1.097,44.019],[1.096,44.018],[1.093,44.017],[1.092,44.017],[1.09,44.018],[1.089,44.019],[1.088,44.02],[1.085,44.02],[1.084,44.021],[1.082,44.022],[1.08,44.022],[1.079,44.023],[1.077,44.023],[1.077,44.025],[1.077,44.027],[1.079,44.028],[1.081,44.029],[1.083,44.031],[1.085,44.032],[1.087,44.033],[1.087,44.034],[1.086,44.035],[1.085,44.035],[1.084,44.036],[1.082,44.037],[1.08,44.038],[1.078,44.038],[1.077,44.038],[1.075,44.039],[1.073,44.039],[1.071,44.04],[1.07,44.04],[1.068,44.041],[1.066,44.042],[1.065,44.043],[1.064,44.046],[1.064,44.047],[1.064,44.049],[1.063,44.05],[1.062,44.051],[1.061,44.053],[1.06,44.054],[1.06,44.055],[1.06,44.057],[1.06,44.058],[1.058,44.061],[1.057,44.062],[1.055,44.063],[1.054,44.064],[1.054,44.065],[1.054,44.066],[1.054,44.067],[1.056,44.069],[1.057,44.07],[1.058,44.071],[1.058,44.072],[1.058,44.074],[1.057,44.074],[1.056,44.075],[1.053,44.075],[1.051,44.075],[1.049,44.074],[1.048,44.074],[1.047,44.074],[1.045,44.074],[1.044,44.074],[1.042,44.074],[1.04,44.075],[1.04,44.076],[1.039,44.078],[1.038,44.079],[1.038,44.079],[1.037,44.08],[1.036,44.081],[1.035,44.082],[1.034,44.083],[1.033,44.084],[1.033,44.085],[1.033,44.087],[1.033,44.089],[1.033,44.09],[1.032,44.09],[1.031,44.091],[1.03,44.091],[1.028,44.092],[1.026,44.092],[1.025,44.092],[1.023,44.092],[1.022,44.091],[1.02,44.091],[1.017,44.09],[1.015,44.089],[1.012,44.089],[1.009,44.088],[1.004,44.088],[1.001,44.087],[0.999,44.087],[0.998,44.087],[0.997,44.086],[0.997,44.085],[0.996,44.085],[0.995,44.084],[0.994,44.084],[0.992,44.085],[0.991,44.085],[0.99,44.085],[0.989,44.084],[0.988,44.084],[0.987,44.083],[0.985,44.081],[0.981,44.079],[0.978,44.078],[0.977,44.077],[0.958,44.073],[0.955,44.073],[0.953,44.074],[0.95,44.074],[0.949,44.074],[0.946,44.073],[0.944,44.072],[0.943,44.071],[0.941,44.07],[0.939,44.069],[0.937,44.069],[0.936,44.069],[0.924,44.069],[0.922,44.07],[0.92,44.069],[0.916,44.068],[0.913,44.068],[0.91,44.068],[0.909,44.068],[0.907,44.069],[0.904,44.072],[0.903,44.073],[0.9,44.075],[0.899,44.076],[0.898,44.077],[0.897,44.078],[0.894,44.081],[0.892,44.083],[0.89,44.085],[0.886,44.087],[0.882,44.089],[0.877,44.091],[0.874,44.092],[0.872,44.093],[0.866,44.094],[0.857,44.096],[0.855,44.096],[0.849,44.096],[0.848,44.096],[0.847,44.096],[0.847,44.097],[0.846,44.098],[0.844,44.1],[0.843,44.102],[0.841,44.104],[0.84,44.105],[0.839,44.107],[0.836,44.111],[0.836,44.112],[0.835,44.113],[0.835,44.115],[0.835,44.116],[0.835,44.118],[0.834,44.118],[0.834,44.119],[0.832,44.119],[0.831,44.12],[0.83,44.12],[0.829,44.121],[0.828,44.122],[0.826,44.122],[0.824,44.123],[0.821,44.123],[0.818,44.123],[0.816,44.124],[0.815,44.124],[0.811,44.123],[0.805,44.123],[0.797,44.132],[0.789,44.141],[0.788,44.142],[0.787,44.142],[0.785,44.142],[0.782,44.142],[0.78,44.142],[0.779,44.142],[0.777,44.141],[0.775,44.14],[0.772,44.14],[0.771,44.139],[0.771,44.139],[0.76,44.139],[0.76,44.14],[0.753,44.143],[0.748,44.145],[0.743,44.148],[0.741,44.149],[0.736,44.151],[0.732,44.153],[0.729,44.154],[0.728,44.154],[0.71,44.157],[0.695,44.158],[0.694,44.158],[0.692,44.159],[0.691,44.159],[0.688,44.159],[0.686,44.16],[0.685,44.16],[0.677,44.162],[0.675,44.162],[0.672,44.163],[0.67,44.162],[0.669,44.162],[0.668,44.161],[0.667,44.161],[0.665,44.159],[0.663,44.157],[0.661,44.155],[0.661,44.155],[0.66,44.154],[0.658,44.153],[0.658,44.152],[0.657,44.152],[0.656,44.151],[0.655,44.15],[0.652,44.148],[0.65,44.147],[0.649,44.146],[0.647,44.146],[0.643,44.146],[0.638,44.148],[0.636,44.15],[0.634,44.151],[0.633,44.152],[0.63,44.154],[0.628,44.156],[0.626,44.158],[0.625,44.158],[0.622,44.16],[0.619,44.162],[0.619,44.163],[0.617,44.164],[0.616,44.165],[0.616,44.165],[0.616,44.169],[0.614,44.178],[0.614,44.18],[0.613,44.181],[0.613,44.184],[0.613,44.184],[0.612,44.188],[0.612,44.19],[0.612,44.191],[0.609,44.199],[0.609,44.199],[0.609,44.2],[0.607,44.207],[0.606,44.208],[0.605,44.211],[0.605,44.211],[0.604,44.212],[0.602,44.214],[0.6,44.215],[0.598,44.216],[0.596,44.216],[0.594,44.217],[0.593,44.217],[0.591,44.217],[0.588,44.217],[0.587,44.217],[0.586,44.217],[0.585,44.217],[0.583,44.217],[0.581,44.218],[0.58,44.218],[0.577,44.218],[0.567,44.218],[0.566,44.218],[0.563,44.219],[0.56,44.219],[0.559,44.219],[0.556,44.219],[0.555,44.218],[0.552,44.217],[0.551,44.217],[0.545,44.215],[0.542,44.214],[0.54,44.214],[0.538,44.214],[0.533,44.213],[0.529,44.214],[0.527,44.214],[0.525,44.214],[0.524,44.214],[0.522,44.215],[0.52,44.215],[0.518,44.216],[0.517,44.216],[0.516,44.217],[0.514,44.219],[0.511,44.221],[0.51,44.222],[0.51,44.223],[0.509,44.223],[0.508,44.224],[0.507,44.225],[0.506,44.226],[0.506,44.227],[0.505,44.227],[0.503,44.228],[0.502,44.229],[0.5,44.23],[0.498,44.233],[0.497,44.235],[0.495,44.236],[0.494,44.237],[0.492,44.238],[0.491,44.239],[0.49,44.239],[0.489,44.239],[0.488,44.239],[0.487,44.239],[0.486,44.239],[0.485,44.239],[0.482,44.238],[0.48,44.237],[0.478,44.237],[0.476,44.236],[0.473,44.236],[0.472,44.236],[0.47,44.236],[0.469,44.236],[0.467,44.236],[0.457,44.239],[0.455,44.239],[0.454,44.239],[0.454,44.239],[0.453,44.239],[0.452,44.238],[0.451,44.237],[0.448,44.236],[0.447,44.236],[0.446,44.235],[0.444,44.235],[0.443,44.234],[0.441,44.234],[0.441,44.234],[0.44,44.234],[0.44,44.234],[0.44,44.234],[0.439,44.234],[0.437,44.234],[0.436,44.234],[0.434,44.234],[0.432,44.234],[0.431,44.234],[0.43,44.234],[0.429,44.234],[0.428,44.234],[0.426,44.235],[0.425,44.235],[0.423,44.236],[0.422,44.236],[0.421,44.237],[0.42,44.237],[0.418,44.238],[0.416,44.24],[0.415,44.241],[0.413,44.242],[0.412,44.243],[0.411,44.244],[0.411,44.245],[0.41,44.245],[0.409,44.245],[0.409,44.246],[0.408,44.246],[0.407,44.247],[0.407,44.247],[0.406,44.248],[0.405,44.248],[0.405,44.249],[0.403,44.249],[0.402,44.249],[0.402,44.249],[0.401,44.249],[0.401,44.249],[0.398,44.249],[0.396,44.248],[0.394,44.248],[0.385,44.247],[0.383,44.246],[0.38,44.246],[0.379,44.245],[0.378,44.245],[0.378,44.244],[0.377,44.244],[0.375,44.243],[0.373,44.242],[0.372,44.242],[0.371,44.242],[0.369,44.242],[0.368,44.242],[0.366,44.242],[0.364,44.242],[0.362,44.242],[0.36,44.242],[0.358,44.242],[0.357,44.242],[0.355,44.243],[0.353,44.243],[0.352,44.243],[0.351,44.243],[0.349,44.244],[0.347,44.245],[0.346,44.245],[0.345,44.246],[0.343,44.247],[0.343,44.248],[0.342,44.249],[0.342,44.249],[0.341,44.25],[0.341,44.251],[0.341,44.254],[0.341,44.255],[0.341,44.257],[0.341,44.258],[0.341,44.259],[0.337,44.272],[0.332,44.28],[0.331,44.281],[0.331,44.282],[0.33,44.283],[0.328,44.285],[0.327,44.286],[0.326,44.287],[0.325,44.288],[0.325,44.29],[0.324,44.291],[0.324,44.292],[0.324,44.293],[0.324,44.294],[0.324,44.296],[0.324,44.297],[0.325,44.298],[0.325,44.299],[0.325,44.3],[0.325,44.3],[0.326,44.301],[0.327,44.303],[0.328,44.304],[0.329,44.305],[0.329,44.306],[0.33,44.306],[0.331,44.308],[0.331,44.309],[0.332,44.31],[0.332,44.311],[0.333,44.312],[0.336,44.321],[0.337,44.322],[0.336,44.322],[0.336,44.323],[0.336,44.324],[0.335,44.324],[0.334,44.325],[0.333,44.325],[0.332,44.326],[0.33,44.327],[0.327,44.329],[0.324,44.33],[0.323,44.331],[0.321,44.331],[0.32,44.332],[0.319,44.332],[0.317,44.333],[0.316,44.334],[0.315,44.334],[0.314,44.336],[0.314,44.337],[0.313,44.338],[0.313,44.339],[0.308,44.355],[0.303,44.362],[0.303,44.363],[0.302,44.365],[0.302,44.366],[0.302,44.366],[0.302,44.367],[0.305,44.377],[0.307,44.378],[0.308,44.378],[0.309,44.378],[0.311,44.379],[0.314,44.38],[0.315,44.38],[0.315,44.381],[0.316,44.381],[0.317,44.382],[0.317,44.383],[0.317,44.383],[0.317,44.383],[0.317,44.384],[0.317,44.385],[0.317,44.385],[0.316,44.386],[0.315,44.386],[0.313,44.386],[0.312,44.387],[0.31,44.387],[0.309,44.387],[0.307,44.388],[0.305,44.388],[0.303,44.389],[0.302,44.389],[0.301,44.39],[0.299,44.391],[0.297,44.392],[0.295,44.393],[0.294,44.395],[0.293,44.396],[0.293,44.397],[0.292,44.398],[0.291,44.399],[0.29,44.4],[0.285,44.41],[0.282,44.413],[0.28,44.413],[0.278,44.414],[0.277,44.415],[0.276,44.415],[0.275,44.415],[0.273,44.415],[0.271,44.416],[0.269,44.416],[0.268,44.415],[0.267,44.415],[0.266,44.415],[0.265,44.415],[0.263,44.414],[0.258,44.409],[0.256,44.408],[0.255,44.407],[0.254,44.406],[0.252,44.405],[0.25,44.404],[0.249,44.404],[0.248,44.403],[0.247,44.403],[0.246,44.403],[0.245,44.403],[0.245,44.403],[0.244,44.403],[0.244,44.403],[0.242,44.404],[0.241,44.404],[0.239,44.404],[0.238,44.404],[0.236,44.405],[0.235,44.406],[0.234,44.406],[0.232,44.407],[0.231,44.408],[0.23,44.409],[0.228,44.409],[0.227,44.41],[0.227,44.41],[0.226,44.411],[0.226,44.411],[0.224,44.413],[0.223,44.414],[0.222,44.415],[0.219,44.416],[0.218,44.417],[0.216,44.419],[0.216,44.419],[0.215,44.42],[0.214,44.421],[0.214,44.422],[0.214,44.423],[0.213,44.424],[0.213,44.425],[0.212,44.426],[0.212,44.426],[0.212,44.427],[0.212,44.429],[0.212,44.431],[0.212,44.432],[0.212,44.434],[0.211,44.442],[0.21,44.443],[0.21,44.443],[0.208,44.445],[0.207,44.445],[0.205,44.446],[0.204,44.447],[0.203,44.447],[0.201,44.447],[0.199,44.447],[0.198,44.447],[0.197,44.447],[0.197,44.447],[0.195,44.447],[0.194,44.447],[0.193,44.447],[0.191,44.447],[0.188,44.446],[0.185,44.446],[0.182,44.446],[0.18,44.446],[0.178,44.447],[0.173,44.448],[0.173,44.449],[0.173,44.45],[0.173,44.451],[0.173,44.452],[0.173,44.453],[0.173,44.454],[0.174,44.455],[0.174,44.456],[0.175,44.457],[0.176,44.458],[0.176,44.459],[0.177,44.46],[0.178,44.461],[0.179,44.462],[0.181,44.464],[0.182,44.465],[0.183,44.466],[0.184,44.467],[0.184,44.468],[0.185,44.468],[0.185,44.469],[0.185,44.47],[0.186,44.47],[0.186,44.47],[0.186,44.471],[0.185,44.472],[0.185,44.473],[0.185,44.474],[0.185,44.475],[0.184,44.483],[0.183,44.484],[0.181,44.485],[0.18,44.485],[0.179,44.486],[0.178,44.486],[0.175,44.486],[0.174,44.486],[0.17,44.485],[0.168,44.485],[0.167,44.485],[0.166,44.485],[0.164,44.486],[0.163,44.486],[0.161,44.487],[0.16,44.488],[0.16,44.488],[0.159,44.489],[0.159,44.489],[0.159,44.49],[0.159,44.49],[0.159,44.491],[0.159,44.493],[0.159,44.494],[0.16,44.496],[0.16,44.496],[0.161,44.497],[0.161,44.498],[0.161,44.499],[0.161,44.499],[0.161,44.5],[0.16,44.5],[0.158,44.501],[0.157,44.502],[0.155,44.502],[0.153,44.503],[0.152,44.503],[0.151,44.503],[0.151,44.503],[0.15,44.502],[0.147,44.502],[0.146,44.502],[0.144,44.503],[0.142,44.503],[0.141,44.503],[0.14,44.503],[0.139,44.503],[0.139,44.503],[0.138,44.503],[0.138,44.504],[0.138,44.504],[0.133,44.503],[0.13,44.503],[0.129,44.503],[0.128,44.502],[0.127,44.502],[0.126,44.501],[0.126,44.501],[0.124,44.5],[0.122,44.5],[0.119,44.5],[0.117,44.5],[0.115,44.501],[0.113,44.501],[0.111,44.501],[0.11,44.501],[0.108,44.501],[0.106,44.502],[0.104,44.502],[0.102,44.502],[0.1,44.503],[0.099,44.503],[0.097,44.503],[0.095,44.504],[0.092,44.505],[0.09,44.506],[0.088,44.507],[0.086,44.508],[0.085,44.509],[0.085,44.509],[0.084,44.51],[0.083,44.511],[0.083,44.511],[0.083,44.512],[0.083,44.512],[0.083,44.512],[0.083,44.513],[0.084,44.513],[0.084,44.514],[0.084,44.514],[0.084,44.514],[0.084,44.514],[0.084,44.515],[0.084,44.515],[0.083,44.515],[0.083,44.516],[0.083,44.517],[0.083,44.517],[0.083,44.518],[0.084,44.519],[0.085,44.52],[0.086,44.521],[0.086,44.522],[0.087,44.523],[0.089,44.527],[0.087,44.53],[0.087,44.53],[0.086,44.531],[0.085,44.531],[0.084,44.531],[0.083,44.532],[0.081,44.534],[0.081,44.535],[0.08,44.536],[0.08,44.537],[0.08,44.539],[0.08,44.539],[0.079,44.54],[0.079,44.541],[0.078,44.541],[0.077,44.541],[0.076,44.542],[0.074,44.542],[0.071,44.542],[0.069,44.542],[0.068,44.542],[0.066,44.542],[0.065,44.541],[0.064,44.541],[0.063,44.54],[0.062,44.54],[0.061,44.539],[0.061,44.538],[0.06,44.537],[0.059,44.536],[0.059,44.535],[0.059,44.533],[0.059,44.532],[0.059,44.531],[0.059,44.53],[0.059,44.529],[0.058,44.528],[0.058,44.527],[0.058,44.526],[0.057,44.526],[0.057,44.525],[0.056,44.524],[0.055,44.523],[0.054,44.522],[0.054,44.522],[0.053,44.521],[0.05,44.519],[0.048,44.519],[0.047,44.519],[0.046,44.519],[0.045,44.519],[0.045,44.52],[0.044,44.522],[0.043,44.524],[0.043,44.525],[0.042,44.526],[0.041,44.529],[0.041,44.53],[0.041,44.531],[0.04,44.532],[0.04,44.532],[0.04,44.533],[0.04,44.533],[0.039,44.537],[0.04,44.538],[0.041,44.539],[0.042,44.539],[0.043,44.54],[0.044,44.541],[0.044,44.542],[0.045,44.543],[0.045,44.543],[0.045,44.544],[0.045,44.544],[0.045,44.544],[0.044,44.544],[0.044,44.544],[0.044,44.545],[0.043,44.545],[0.042,44.545],[0.042,44.545],[0.04,44.544],[0.038,44.544],[0.037,44.544],[0.035,44.543],[0.034,44.543],[0.034,44.543],[0.033,44.542],[0.032,44.542],[0.031,44.542],[0.029,44.541],[0.028,44.541],[0.027,44.541],[0.025,44.541],[0.024,44.541],[0.023,44.542],[0.022,44.542],[0.021,44.542],[0.019,44.544],[0.017,44.545],[0.017,44.545],[0.015,44.546],[0.013,44.548],[0.011,44.549],[0.009,44.55],[0.007,44.551],[-0.006,44.555],[-0.01,44.557],[-0.01,44.557],[-0.01,44.558],[-0.01,44.559],[-0.011,44.56],[-0.011,44.561],[-0.011,44.562],[-0.012,44.564],[-0.012,44.565],[-0.013,44.566],[-0.013,44.567],[-0.015,44.569],[-0.016,44.57],[-0.017,44.571],[-0.018,44.572],[-0.018,44.573],[-0.019,44.574],[-0.019,44.575],[-0.02,44.576],[-0.021,44.577],[-0.022,44.578],[-0.023,44.578],[-0.024,44.579],[-0.024,44.579],[-0.026,44.579],[-0.029,44.579],[-0.031,44.579],[-0.035,44.579],[-0.037,44.579],[-0.041,44.579],[-0.043,44.579],[-0.045,44.579],[-0.048,44.578],[-0.051,44.578],[-0.054,44.579],[-0.056,44.578],[-0.057,44.578],[-0.058,44.578],[-0.059,44.578],[-0.06,44.578],[-0.061,44.577],[-0.063,44.576],[-0.065,44.575],[-0.066,44.574],[-0.066,44.574],[-0.066,44.574],[-0.066,44.574],[-0.067,44.573],[-0.069,44.573],[-0.07,44.573],[-0.072,44.572],[-0.074,44.572],[-0.075,44.572],[-0.077,44.573],[-0.08,44.573],[-0.082,44.573],[-0.083,44.573],[-0.084,44.573],[-0.086,44.574],[-0.087,44.574],[-0.088,44.574],[-0.089,44.574],[-0.09,44.575],[-0.091,44.575],[-0.093,44.576],[-0.094,44.577],[-0.095,44.578],[-0.097,44.58],[-0.097,44.58],[-0.098,44.581],[-0.099,44.581],[-0.1,44.582],[-0.102,44.583],[-0.103,44.583],[-0.104,44.583],[-0.106,44.582],[-0.107,44.582],[-0.107,44.582],[-0.108,44.581],[-0.109,44.58],[-0.11,44.58],[-0.111,44.579],[-0.112,44.577],[-0.113,44.576],[-0.113,44.575],[-0.113,44.574],[-0.114,44.574],[-0.114,44.573],[-0.115,44.572],[-0.116,44.571],[-0.117,44.571],[-0.118,44.57],[-0.118,44.57],[-0.12,44.57],[-0.121,44.57],[-0.122,44.57],[-0.122,44.57],[-0.123,44.571],[-0.124,44.571],[-0.125,44.572],[-0.126,44.572],[-0.127,44.573],[-0.128,44.574],[-0.128,44.575],[-0.128,44.575],[-0.129,44.576],[-0.129,44.577],[-0.13,44.577],[-0.131,44.578],[-0.131,44.578],[-0.132,44.578],[-0.133,44.578],[-0.133,44.578],[-0.134,44.578],[-0.134,44.577],[-0.134,44.577],[-0.134,44.576],[-0.134,44.575],[-0.134,44.575],[-0.134,44.574],[-0.135,44.573],[-0.135,44.572],[-0.136,44.572],[-0.136,44.571],[-0.137,44.57],[-0.138,44.57],[-0.14,44.569],[-0.141,44.568],[-0.143,44.568],[-0.144,44.567],[-0.147,44.566],[-0.149,44.566],[-0.15,44.565],[-0.151,44.564],[-0.152,44.564],[-0.153,44.564],[-0.153,44.564],[-0.154,44.564],[-0.155,44.564],[-0.156,44.565],[-0.157,44.565],[-0.158,44.565],[-0.159,44.565],[-0.159,44.565],[-0.161,44.565],[-0.162,44.565],[-0.163,44.566],[-0.164,44.566],[-0.165,44.567],[-0.167,44.567],[-0.168,44.567],[-0.175,44.569],[-0.176,44.569],[-0.178,44.569],[-0.18,44.568],[-0.181,44.568],[-0.183,44.568],[-0.185,44.567],[-0.187,44.567],[-0.19,44.567],[-0.191,44.567],[-0.194,44.567],[-0.198,44.567],[-0.2,44.567],[-0.203,44.567],[-0.205,44.567],[-0.207,44.567],[-0.208,44.566],[-0.209,44.566],[-0.212,44.566],[-0.214,44.565],[-0.215,44.565],[-0.217,44.564],[-0.219,44.563],[-0.22,44.563],[-0.222,44.562],[-0.224,44.561],[-0.224,44.561],[-0.225,44.561],[-0.226,44.561],[-0.227,44.561],[-0.229,44.561],[-0.23,44.56],[-0.231,44.56],[-0.233,44.56],[-0.234,44.56],[-0.236,44.559],[-0.237,44.559],[-0.237,44.559],[-0.246,44.557],[-0.249,44.558],[-0.251,44.558],[-0.252,44.559],[-0.252,44.559],[-0.253,44.56],[-0.254,44.561],[-0.256,44.562],[-0.256,44.563],[-0.257,44.564],[-0.258,44.565],[-0.26,44.566],[-0.261,44.567],[-0.262,44.568],[-0.264,44.569],[-0.265,44.569],[-0.265,44.57],[-0.266,44.571],[-0.267,44.571],[-0.268,44.571],[-0.269,44.572],[-0.27,44.573],[-0.271,44.574],[-0.278,44.582],[-0.289,44.588],[-0.291,44.589],[-0.291,44.589],[-0.292,44.59],[-0.293,44.59],[-0.294,44.591],[-0.294,44.593],[-0.295,44.594],[-0.296,44.596],[-0.296,44.596],[-0.296,44.597],[-0.297,44.599],[-0.297,44.6],[-0.299,44.602],[-0.3,44.603],[-0.301,44.604],[-0.302,44.605],[-0.302,44.605],[-0.302,44.606],[-0.303,44.607],[-0.303,44.608],[-0.303,44.608],[-0.302,44.61],[-0.301,44.611],[-0.301,44.612],[-0.301,44.614],[-0.301,44.615],[-0.301,44.615],[-0.301,44.616],[-0.302,44.618],[-0.302,44.619],[-0.303,44.62],[-0.304,44.621],[-0.305,44.622],[-0.306,44.623],[-0.307,44.624],[-0.308,44.625],[-0.31,44.627],[-0.314,44.63],[-0.327,44.636],[-0.328,44.636],[-0.33,44.637],[-0.331,44.638],[-0.331,44.638],[-0.332,44.639],[-0.333,44.64],[-0.334,44.641],[-0.334,44.642],[-0.334,44.643],[-0.335,44.645],[-0.335,44.646],[-0.335,44.647],[-0.335,44.648],[-0.336,44.649],[-0.336,44.649],[-0.338,44.65],[-0.339,44.651],[-0.339,44.651],[-0.34,44.651],[-0.341,44.652],[-0.342,44.652],[-0.343,44.653],[-0.344,44.653],[-0.345,44.653],[-0.347,44.654],[-0.348,44.654],[-0.354,44.655],[-0.358,44.659],[-0.359,44.661],[-0.36,44.662],[-0.361,44.663],[-0.362,44.665],[-0.363,44.667],[-0.364,44.668],[-0.365,44.669],[-0.366,44.67],[-0.366,44.671],[-0.369,44.676],[-0.369,44.678],[-0.37,44.679],[-0.37,44.68],[-0.371,44.682],[-0.371,44.682],[-0.372,44.684],[-0.373,44.685],[-0.373,44.685],[-0.373,44.685],[-0.373,44.686],[-0.374,44.686],[-0.375,44.687],[-0.376,44.687],[-0.377,44.688],[-0.379,44.688],[-0.38,44.689],[-0.381,44.689],[-0.381,44.689],[-0.382,44.689],[-0.383,44.689],[-0.384,44.689],[-0.385,44.689],[-0.388,44.688],[-0.391,44.688],[-0.393,44.688],[-0.395,44.688],[-0.397,44.687],[-0.398,44.687],[-0.399,44.687],[-0.4,44.687],[-0.401,44.687],[-0.402,44.688],[-0.403,44.688],[-0.404,44.688],[-0.406,44.691],[-0.404,44.693],[-0.402,44.695],[-0.401,44.696],[-0.4,44.696],[-0.398,44.697],[-0.398,44.699],[-0.397,44.7],[-0.397,44.7],[-0.396,44.701],[-0.396,44.701],[-0.396,44.702],[-0.397,44.702],[-0.397,44.703],[-0.398,44.703],[-0.4,44.704],[-0.402,44.704],[-0.404,44.705],[-0.406,44.706],[-0.409,44.707],[-0.411,44.707],[-0.413,44.707],[-0.414,44.707],[-0.416,44.706],[-0.418,44.706],[-0.42,44.705],[-0.422,44.704],[-0.424,44.703],[-0.427,44.702],[-0.428,44.702],[-0.429,44.702],[-0.43,44.701],[-0.432,44.702],[-0.435,44.702],[-0.437,44.703],[-0.438,44.704],[-0.439,44.705],[-0.441,44.707],[-0.442,44.708],[-0.444,44.71],[-0.444,44.711],[-0.445,44.711],[-0.445,44.713],[-0.446,44.714],[-0.446,44.716],[-0.447,44.717],[-0.449,44.72],[-0.45,44.721],[-0.457,44.728],[-0.462,44.73],[-0.464,44.73],[-0.466,44.731],[-0.466,44.732],[-0.468,44.733],[-0.469,44.734],[-0.471,44.734],[-0.472,44.735],[-0.474,44.736],[-0.475,44.736],[-0.476,44.736],[-0.478,44.737],[-0.48,44.737],[-0.482,44.737],[-0.485,44.738],[-0.486,44.738],[-0.488,44.739],[-0.491,44.74],[-0.493,44.741],[-0.495,44.742],[-0.496,44.742],[-0.497,44.743],[-0.498,44.744],[-0.499,44.745],[-0.5,44.746],[-0.5,44.747],[-0.5,44.747],[-0.501,44.748],[-0.501,44.749],[-0.503,44.75],[-0.503,44.751],[-0.504,44.751],[-0.505,44.752],[-0.506,44.753],[-0.507,44.754],[-0.508,44.755],[-0.509,44.756],[-0.51,44.757],[-0.51,44.758],[-0.51,44.758],[-0.51,44.76],[-0.51,44.76],[-0.51,44.761],[-0.51,44.763],[-0.51,44.764],[-0.514,44.772],[-0.514,44.774],[-0.514,44.775],[-0.515,44.776],[-0.517,44.777],[-0.517,44.779],[-0.519,44.781],[-0.521,44.784],[-0.523,44.787],[-0.525,44.79],[-0.526,44.792],[-0.527,44.793],[-0.528,44.795],[-0.528,44.797],[-0.529,44.8],[-0.529,44.803],[-0.53,44.805],[-0.528,44.807],[-0.53,44.808],[-0.531,44.809],[-0.532,44.81],[-0.535,44.814],[-0.537,44.818],[-0.538,44.819],[-0.54,44.822],[-0.559,44.838],[-0.563,44.842],[-0.565,44.843],[-0.565,44.843],[-0.565,44.844],[-0.565,44.845],[-0.565,44.846],[-0.566,44.847],[-0.566,44.847],[-0.565,44.848],[-0.565,44.849],[-0.564,44.85],[-0.564,44.851],[-0.562,44.852],[-0.56,44.853],[-0.559,44.854],[-0.557,44.854]],[[1.564,50.691],[1.564,50.791],[1.564,50.891],[1.564,50.991],[1.564,51.091],[1.564,51.191],[1.464,51.291],[1.364,51.391],[1.264,51.491],[1.164,51.491],[1.064,51.491],[0.964,51.491],[0.864,51.491],[0.764,51.491],[0.664,51.491],[0.564,51.491],[0.464,51.491],[-0.083,51.52]],[[0.537,49.525],[0.564,49.591]],[[0.564,49.591],[0.664,49.691],[0.764,49.791],[0.764,49.891],[0.864,49.991],[0.964,50.091],[1.064,50.191],[1.164,50.291],[1.264,50.391],[1.364,50.491],[1.464,50.591],[1.564,50.691]],[[1.435,43.617],[1.439,43.59],[1.472,43.565],[1.515,43.546],[1.548,43.528],[1.571,43.5],[1.6,43.471],[1.643,43.446],[1.686,43.427],[1.719,43.403],[1.733,43.397],[1.749,43.388],[1.769,43.381],[1.803,43.369],[1.834,43.357],[1.867,43.346],[1.89,43.335],[1.915,43.325],[1.955,43.316],[1.969,43.312],[1.985,43.3],[2.057,43.272],[2.103,43.256],[2.139,43.243],[2.182,43.232],[2.218,43.224],[2.286,43.219],[2.331,43.212],[2.375,43.201],[2.417,43.191],[2.464,43.181],[2.514,43.181],[2.559,43.178],[2.592,43.178],[2.63,43.177],[2.658,43.178],[2.706,43.183],[2.734,43.192],[2.753,43.195],[2.787,43.19],[2.833,43.182],[2.872,43.18],[2.969,43.185],[2.985,43.186],[2.99,43.193],[3.001,43.198]],[[1.614,50.724],[1.564,50.691]],[[9.064,41.391],[8.964,41.391],[8.864,41.491],[8.764,41.591],[8.664,41.691],[8.564,41.791],[8.464,41.891],[8.364,41.991],[8.264,42.091],[8.164,42.191],[8.064,42.291],[7.964,42.391],[7.864,42.491],[7.764,42.591],[7.664,42.691],[7.564,42.791],[7.464,42.891],[7.364,42.991],[7.264,42.991],[7.164,42.991],[7.064,42.991],[6.964,42.991],[6.864,42.991],[6.764,42.991],[6.664,42.991],[6.564,42.991],[6.464,42.991],[6.364,42.991],[6.264,42.991],[6.164,42.991],[6.064,42.991],[5.964,42.991],[5.864,42.991],[5.764,43.091],[5.664,43.091],[5.564,43.091],[5.464,43.091],[5.364,43.091],[5.264,43.091],[5.164,43.091],[5.064,43.091],[4.964,43.091],[4.864,43.091],[4.764,43.091],[4.664,43.091],[4.564,43.091],[4.464,43.091],[4.364,43.091],[4.264,43.091],[4.164,43.091],[4.064,43.091],[3.964,43.091],[3.864,43.091],[3.764,43.091],[3.664,43.091],[3.564,43.091],[3.464,43.091],[3.364,43.091],[3.264,43.091],[3.164,43.091],[3,43.197]],[[12.287,41.754],[12.264,41.691],[12.164,41.691],[12.064,41.691],[11.964,41.691],[11.864,41.691],[11.764,41.691],[11.664,41.691],[11.564,41.691],[11.464,41.691],[11.364,41.691],[11.264,41.691],[11.164,41.691],[11.064,41.691],[10.964,41.691],[10.864,41.691],[10.764,41.691],[10.664,41.691],[10.564,41.691],[10.464,41.691],[10.364,41.691],[10.264,41.691],[10.164,41.691],[10.064,41.691],[9.964,41.691],[9.864,41.691],[9.764,41.691],[9.664,41.691],[9.564,41.691],[9.464,41.591],[9.364,41.491],[9.264,41.391],[9.164,41.291],[9.064,41.391]],[[9.159,41.387],[9.064,41.391]],[[12.474,41.89],[12.474,41.89],[12.475,41.888],[12.469,41.882],[12.468,41.877],[12.472,41.868],[12.47,41.863],[12.461,41.858],[12.46,41.855],[12.46,41.854],[12.462,41.85],[12.444,41.834],[12.435,41.829],[12.426,41.831],[12.421,41.828],[12.418,41.822],[12.416,41.818],[12.411,41.809],[12.405,41.805],[12.394,41.805],[12.386,41.802],[12.375,41.804],[12.37,41.805],[12.364,41.807],[12.36,41.806],[12.352,41.806],[12.343,41.809],[12.339,41.806],[12.337,41.799],[12.332,41.798],[12.323,41.799],[12.317,41.799],[12.309,41.8],[12.302,41.797],[12.295,41.791],[12.284,41.789],[12.278,41.782],[12.273,41.773],[12.274,41.771],[12.274,41.768],[12.275,41.764],[12.28,41.758],[12.271,41.753]]]},"pair": 50235,"direction": 0,"month": 4,"priority": 1,"expense": 7.805,"duration": 26.510,"length": 2965.669},{"type": "Feature", "geometry": {"type":"MultiLineString","coordinates":[[[-1.336,50.591],[-1.436,50.591],[-1.536,50.591],[-1.636,50.591],[-1.736,50.591],[-1.836,50.591],[-1.936,50.591],[-2.036,50.591],[-2.136,50.591],[-2.236,50.591],[-2.336,50.591],[-2.436,50.591]],[[-2.436,50.591],[-2.435,50.71]],[[-2.436,50.591],[-2.536,50.591],[-2.636,50.591],[-2.736,50.591],[-2.836,50.491],[-2.936,50.391],[-3.036,50.291],[-3.136,50.191],[-3.236,50.091],[-3.336,49.991],[-3.436,49.891],[-3.536,49.791],[-3.636,49.691],[-3.736,49.591],[-3.836,49.491],[-3.936,49.391],[-4.036,49.291],[-4.136,49.191],[-4.236,49.091],[-4.336,48.991],[-4.436,48.891],[-4.536,48.791],[-4.636,48.691],[-4.736,48.591],[-4.836,48.491],[-4.836,48.391],[-4.736,48.291],[-4.636,48.191],[-4.536,48.091],[-4.536,47.991],[-4.436,47.891],[-4.336,47.791],[-4.236,47.791],[-4.136,47.791],[-4.036,47.791],[-3.936,47.791],[-3.836,47.791],[-3.736,47.791],[-3.636,47.691],[-3.536,47.691],[-3.436,47.691],[-3.336,47.591],[-3.236,47.491],[-3.136,47.391],[-3.036,47.391],[-2.936,47.391],[-2.836,47.391],[-2.736,47.391],[-2.636,47.391],[-2.536,47.291],[-2.436,47.191],[-2.336,47.191],[-2.236,47.191]],[[-1.558,47.214],[-1.936,47.291],[-2.136,47.291],[-2.236,47.191]],[[-2.236,47.191],[-2.136,47.091],[-2.136,46.991],[-2.136,46.891],[-2.136,46.791],[-2.036,46.691],[-1.936,46.591],[-1.836,46.491],[-1.736,46.391],[-1.636,46.291],[-1.536,46.191],[-1.436,46.091],[-1.436,45.991],[-1.336,45.891],[-1.336,45.791],[-1.336,45.691],[-1.336,45.591],[-1.336,45.491],[-1.336,45.391],[-1.336,45.291],[-1.336,45.191],[-1.336,45.091],[-1.336,44.991],[-1.336,44.891],[-1.336,44.791],[-1.236,44.691],[-1.136,44.691],[-0.586,44.856]],[[-1.323,51.068],[-1.336,50.791],[-1.336,50.591]],[[1.464,51.291],[1.464,51.191],[1.364,51.091],[1.264,51.091],[1.164,50.991],[1.064,50.991],[0.964,50.891],[0.864,50.891],[0.764,50.891],[0.664,50.791],[0.564,50.791],[0.464,50.791],[0.364,50.791],[0.264,50.691],[0.164,50.691],[0.064,50.691],[-0.036,50.691],[-0.136,50.691],[-0.236,50.691],[-0.336,50.691],[-0.436,50.691],[-0.536,50.691],[-0.636,50.691],[-0.736,50.691],[-0.836,50.691],[-0.936,50.691],[-1.036,50.691],[-1.136,50.591],[-1.236,50.491],[-1.336,50.591]],[[1.409,43.612],[1.407,43.613],[1.405,43.615],[1.403,43.619],[1.401,43.623],[1.402,43.625],[1.403,43.627],[1.404,43.63],[1.405,43.632],[1.405,43.633],[1.405,43.636],[1.405,43.638],[1.404,43.64],[1.404,43.642],[1.403,43.645],[1.402,43.648],[1.403,43.649],[1.405,43.651],[1.406,43.652],[1.408,43.654],[1.408,43.656],[1.408,43.657],[1.407,43.658],[1.407,43.659],[1.407,43.662],[1.406,43.662],[1.405,43.663],[1.404,43.665],[1.403,43.666],[1.401,43.666],[1.4,43.667],[1.398,43.667],[1.395,43.667],[1.393,43.667],[1.39,43.667],[1.386,43.667],[1.383,43.668],[1.381,43.67],[1.379,43.672],[1.376,43.675],[1.375,43.676],[1.373,43.677],[1.373,43.678],[1.373,43.677],[1.375,43.677],[1.375,43.677],[1.375,43.678],[1.373,43.678],[1.372,43.68],[1.372,43.68],[1.371,43.681],[1.369,43.683],[1.369,43.686],[1.368,43.688],[1.368,43.689],[1.369,43.693],[1.369,43.694],[1.369,43.696],[1.37,43.697],[1.37,43.698],[1.368,43.701],[1.367,43.703],[1.366,43.705],[1.364,43.706],[1.361,43.706],[1.358,43.707],[1.356,43.707],[1.348,43.709],[1.345,43.711],[1.343,43.712],[1.342,43.713],[1.341,43.714],[1.341,43.715],[1.341,43.716],[1.342,43.717],[1.343,43.718],[1.344,43.72],[1.344,43.721],[1.344,43.721],[1.343,43.722],[1.343,43.722],[1.342,43.723],[1.341,43.724],[1.339,43.724],[1.338,43.725],[1.335,43.725],[1.334,43.726],[1.333,43.727],[1.332,43.728],[1.331,43.728],[1.33,43.729],[1.329,43.729],[1.328,43.73],[1.327,43.731],[1.326,43.733],[1.325,43.733],[1.32,43.741],[1.319,43.741],[1.316,43.742],[1.313,43.743],[1.312,43.745],[1.312,43.746],[1.312,43.747],[1.313,43.749],[1.313,43.753],[1.314,43.754],[1.314,43.754],[1.315,43.755],[1.316,43.757],[1.316,43.758],[1.317,43.76],[1.318,43.761],[1.319,43.761],[1.32,43.762],[1.321,43.763],[1.324,43.768],[1.325,43.768],[1.325,43.769],[1.326,43.77],[1.327,43.77],[1.326,43.77],[1.326,43.77],[1.326,43.771],[1.325,43.772],[1.324,43.772],[1.323,43.773],[1.319,43.773],[1.318,43.773],[1.316,43.773],[1.313,43.774],[1.311,43.775],[1.308,43.776],[1.304,43.777],[1.303,43.778],[1.302,43.778],[1.299,43.779],[1.297,43.779],[1.294,43.78],[1.292,43.782],[1.291,43.783],[1.29,43.784],[1.29,43.785],[1.29,43.786],[1.288,43.789],[1.288,43.79],[1.287,43.791],[1.285,43.791],[1.284,43.792],[1.283,43.791],[1.282,43.791],[1.281,43.791],[1.28,43.791],[1.278,43.792],[1.277,43.793],[1.274,43.794],[1.274,43.794],[1.273,43.795],[1.272,43.796],[1.272,43.797],[1.272,43.798],[1.272,43.798],[1.273,43.799],[1.274,43.8],[1.275,43.801],[1.276,43.802],[1.278,43.802],[1.279,43.803],[1.279,43.803],[1.279,43.803],[1.279,43.804],[1.279,43.804],[1.279,43.804],[1.279,43.804],[1.28,43.805],[1.28,43.805],[1.279,43.806],[1.279,43.806],[1.278,43.806],[1.278,43.806],[1.279,43.806],[1.279,43.806],[1.279,43.807],[1.278,43.807],[1.276,43.807],[1.275,43.807],[1.275,43.806],[1.274,43.806],[1.274,43.806],[1.273,43.806],[1.272,43.806],[1.269,43.805],[1.268,43.805],[1.266,43.805],[1.265,43.805],[1.264,43.806],[1.263,43.806],[1.257,43.811],[1.256,43.814],[1.256,43.816],[1.255,43.817],[1.255,43.818],[1.256,43.819],[1.257,43.82],[1.257,43.822],[1.258,43.824],[1.257,43.825],[1.257,43.826],[1.256,43.827],[1.255,43.827],[1.254,43.828],[1.254,43.828],[1.249,43.831],[1.247,43.831],[1.246,43.831],[1.245,43.832],[1.246,43.833],[1.247,43.834],[1.249,43.836],[1.25,43.837],[1.251,43.84],[1.251,43.841],[1.251,43.843],[1.249,43.846],[1.248,43.846],[1.242,43.849],[1.242,43.849],[1.241,43.85],[1.242,43.852],[1.242,43.853],[1.242,43.855],[1.242,43.857],[1.242,43.858],[1.242,43.859],[1.242,43.859],[1.241,43.859],[1.24,43.86],[1.239,43.861],[1.238,43.862],[1.237,43.863],[1.236,43.863],[1.236,43.864],[1.235,43.865],[1.233,43.866],[1.232,43.867],[1.231,43.867],[1.229,43.867],[1.227,43.867],[1.226,43.866],[1.224,43.867],[1.223,43.868],[1.222,43.869],[1.222,43.87],[1.221,43.871],[1.221,43.871],[1.221,43.873],[1.22,43.874],[1.219,43.876],[1.219,43.878],[1.219,43.878],[1.219,43.88],[1.219,43.882],[1.219,43.883],[1.218,43.884],[1.215,43.885],[1.214,43.885],[1.212,43.886],[1.209,43.886],[1.207,43.886],[1.206,43.886],[1.205,43.887],[1.204,43.889],[1.205,43.892],[1.207,43.893],[1.209,43.895],[1.21,43.897],[1.21,43.899],[1.21,43.9],[1.209,43.901],[1.206,43.904],[1.204,43.907],[1.204,43.908],[1.202,43.909],[1.201,43.909],[1.199,43.909],[1.198,43.909],[1.197,43.909],[1.196,43.908],[1.193,43.907],[1.191,43.907],[1.189,43.907],[1.188,43.908],[1.187,43.91],[1.187,43.913],[1.187,43.915],[1.187,43.916],[1.186,43.917],[1.186,43.918],[1.186,43.919],[1.185,43.919],[1.184,43.92],[1.184,43.921],[1.185,43.923],[1.185,43.925],[1.185,43.926],[1.186,43.927],[1.187,43.929],[1.188,43.929],[1.188,43.93],[1.189,43.931],[1.19,43.932],[1.191,43.933],[1.192,43.934],[1.194,43.935],[1.195,43.936],[1.196,43.937],[1.197,43.938],[1.197,43.94],[1.196,43.94],[1.196,43.941],[1.195,43.941],[1.194,43.941],[1.194,43.94],[1.193,43.94],[1.192,43.94],[1.192,43.94],[1.191,43.941],[1.19,43.941],[1.189,43.941],[1.187,43.942],[1.185,43.944],[1.183,43.945],[1.182,43.946],[1.181,43.946],[1.181,43.946],[1.179,43.945],[1.178,43.944],[1.177,43.944],[1.175,43.944],[1.172,43.944],[1.171,43.944],[1.171,43.945],[1.171,43.945],[1.171,43.947],[1.171,43.95],[1.171,43.951],[1.171,43.952],[1.171,43.952],[1.172,43.954],[1.172,43.955],[1.172,43.956],[1.171,43.957],[1.17,43.959],[1.169,43.96],[1.166,43.964],[1.164,43.966],[1.163,43.967],[1.162,43.97],[1.162,43.972],[1.162,43.977],[1.162,43.979],[1.161,43.981],[1.161,43.983],[1.16,43.983],[1.146,43.989],[1.139,43.991],[1.135,43.993],[1.131,43.993],[1.13,43.994],[1.127,43.994],[1.127,43.994],[1.118,43.998],[1.118,43.998],[1.118,43.999],[1.118,44],[1.119,44.001],[1.118,44.002],[1.118,44.003],[1.116,44.004],[1.115,44.006],[1.115,44.008],[1.115,44.01],[1.114,44.01],[1.113,44.011],[1.112,44.011],[1.11,44.012],[1.108,44.013],[1.106,44.014],[1.106,44.015],[1.106,44.016],[1.105,44.017],[1.105,44.017],[1.103,44.02],[1.099,44.02],[1.097,44.019],[1.096,44.018],[1.093,44.017],[1.092,44.017],[1.09,44.018],[1.089,44.019],[1.088,44.02],[1.085,44.02],[1.084,44.021],[1.082,44.022],[1.08,44.022],[1.079,44.023],[1.077,44.023],[1.077,44.025],[1.077,44.027],[1.079,44.028],[1.081,44.029],[1.083,44.031],[1.085,44.032],[1.087,44.033],[1.087,44.034],[1.086,44.035],[1.085,44.035],[1.084,44.036],[1.082,44.037],[1.08,44.038],[1.078,44.038],[1.077,44.038],[1.075,44.039],[1.073,44.039],[1.071,44.04],[1.07,44.04],[1.068,44.041],[1.066,44.042],[1.065,44.043],[1.064,44.046],[1.064,44.047],[1.064,44.049],[1.063,44.05],[1.062,44.051],[1.061,44.053],[1.06,44.054],[1.06,44.055],[1.06,44.057],[1.06,44.058],[1.058,44.061],[1.057,44.062],[1.055,44.063],[1.054,44.064],[1.054,44.065],[1.054,44.066],[1.054,44.067],[1.056,44.069],[1.057,44.07],[1.058,44.071],[1.058,44.072],[1.058,44.074],[1.057,44.074],[1.056,44.075],[1.053,44.075],[1.051,44.075],[1.049,44.074],[1.048,44.074],[1.047,44.074],[1.045,44.074],[1.044,44.074],[1.042,44.074],[1.04,44.075],[1.04,44.076],[1.039,44.078],[1.038,44.079],[1.038,44.079],[1.037,44.08],[1.036,44.081],[1.035,44.082],[1.034,44.083],[1.033,44.084],[1.033,44.085],[1.033,44.087],[1.033,44.089],[1.033,44.09],[1.032,44.09],[1.031,44.091],[1.03,44.091],[1.028,44.092],[1.026,44.092],[1.025,44.092],[1.023,44.092],[1.022,44.091],[1.02,44.091],[1.017,44.09],[1.015,44.089],[1.012,44.089],[1.009,44.088],[1.004,44.088],[1.001,44.087],[0.999,44.087],[0.998,44.087],[0.997,44.086],[0.997,44.085],[0.996,44.085],[0.995,44.084],[0.994,44.084],[0.992,44.085],[0.991,44.085],[0.99,44.085],[0.989,44.084],[0.988,44.084],[0.987,44.083],[0.985,44.081],[0.981,44.079],[0.978,44.078],[0.977,44.077],[0.958,44.073],[0.955,44.073],[0.953,44.074],[0.95,44.074],[0.949,44.074],[0.946,44.073],[0.944,44.072],[0.943,44.071],[0.941,44.07],[0.939,44.069],[0.937,44.069],[0.936,44.069],[0.924,44.069],[0.922,44.07],[0.92,44.069],[0.916,44.068],[0.913,44.068],[0.91,44.068],[0.909,44.068],[0.907,44.069],[0.904,44.072],[0.903,44.073],[0.9,44.075],[0.899,44.076],[0.898,44.077],[0.897,44.078],[0.894,44.081],[0.892,44.083],[0.89,44.085],[0.886,44.087],[0.882,44.089],[0.877,44.091],[0.874,44.092],[0.872,44.093],[0.866,44.094],[0.857,44.096],[0.855,44.096],[0.849,44.096],[0.848,44.096],[0.847,44.096],[0.847,44.097],[0.846,44.098],[0.844,44.1],[0.843,44.102],[0.841,44.104],[0.84,44.105],[0.839,44.107],[0.836,44.111],[0.836,44.112],[0.835,44.113],[0.835,44.115],[0.835,44.116],[0.835,44.118],[0.834,44.118],[0.834,44.119],[0.832,44.119],[0.831,44.12],[0.83,44.12],[0.829,44.121],[0.828,44.122],[0.826,44.122],[0.824,44.123],[0.821,44.123],[0.818,44.123],[0.816,44.124],[0.815,44.124],[0.811,44.123],[0.805,44.123],[0.797,44.132],[0.789,44.141],[0.788,44.142],[0.787,44.142],[0.785,44.142],[0.782,44.142],[0.78,44.142],[0.779,44.142],[0.777,44.141],[0.775,44.14],[0.772,44.14],[0.771,44.139],[0.771,44.139],[0.76,44.139],[0.76,44.14],[0.753,44.143],[0.748,44.145],[0.743,44.148],[0.741,44.149],[0.736,44.151],[0.732,44.153],[0.729,44.154],[0.728,44.154],[0.71,44.157],[0.695,44.158],[0.694,44.158],[0.692,44.159],[0.691,44.159],[0.688,44.159],[0.686,44.16],[0.685,44.16],[0.677,44.162],[0.675,44.162],[0.672,44.163],[0.67,44.162],[0.669,44.162],[0.668,44.161],[0.667,44.161],[0.665,44.159],[0.663,44.157],[0.661,44.155],[0.661,44.155],[0.66,44.154],[0.658,44.153],[0.658,44.152],[0.657,44.152],[0.656,44.151],[0.655,44.15],[0.652,44.148],[0.65,44.147],[0.649,44.146],[0.647,44.146],[0.643,44.146],[0.638,44.148],[0.636,44.15],[0.634,44.151],[0.633,44.152],[0.63,44.154],[0.628,44.156],[0.626,44.158],[0.625,44.158],[0.622,44.16],[0.619,44.162],[0.619,44.163],[0.617,44.164],[0.616,44.165],[0.616,44.165],[0.616,44.169],[0.614,44.178],[0.614,44.18],[0.613,44.181],[0.613,44.184],[0.613,44.184],[0.612,44.188],[0.612,44.19],[0.612,44.191],[0.609,44.199],[0.609,44.199],[0.609,44.2],[0.607,44.207],[0.606,44.208],[0.605,44.211],[0.605,44.211],[0.604,44.212],[0.602,44.214],[0.6,44.215],[0.598,44.216],[0.596,44.216],[0.594,44.217],[0.593,44.217],[0.591,44.217],[0.588,44.217],[0.587,44.217],[0.586,44.217],[0.585,44.217],[0.583,44.217],[0.581,44.218],[0.58,44.218],[0.577,44.218],[0.567,44.218],[0.566,44.218],[0.563,44.219],[0.56,44.219],[0.559,44.219],[0.556,44.219],[0.555,44.218],[0.552,44.217],[0.551,44.217],[0.545,44.215],[0.542,44.214],[0.54,44.214],[0.538,44.214],[0.533,44.213],[0.529,44.214],[0.527,44.214],[0.525,44.214],[0.524,44.214],[0.522,44.215],[0.52,44.215],[0.518,44.216],[0.517,44.216],[0.516,44.217],[0.514,44.219],[0.511,44.221],[0.51,44.222],[0.51,44.223],[0.509,44.223],[0.508,44.224],[0.507,44.225],[0.506,44.226],[0.506,44.227],[0.505,44.227],[0.503,44.228],[0.502,44.229],[0.5,44.23],[0.498,44.233],[0.497,44.235],[0.495,44.236],[0.494,44.237],[0.492,44.238],[0.491,44.239],[0.49,44.239],[0.489,44.239],[0.488,44.239],[0.487,44.239],[0.486,44.239],[0.485,44.239],[0.482,44.238],[0.48,44.237],[0.478,44.237],[0.476,44.236],[0.473,44.236],[0.472,44.236],[0.47,44.236],[0.469,44.236],[0.467,44.236],[0.457,44.239],[0.455,44.239],[0.454,44.239],[0.454,44.239],[0.453,44.239],[0.452,44.238],[0.451,44.237],[0.448,44.236],[0.447,44.236],[0.446,44.235],[0.444,44.235],[0.443,44.234],[0.441,44.234],[0.441,44.234],[0.44,44.234],[0.44,44.234],[0.44,44.234],[0.439,44.234],[0.437,44.234],[0.436,44.234],[0.434,44.234],[0.432,44.234],[0.431,44.234],[0.43,44.234],[0.429,44.234],[0.428,44.234],[0.426,44.235],[0.425,44.235],[0.423,44.236],[0.422,44.236],[0.421,44.237],[0.42,44.237],[0.418,44.238],[0.416,44.24],[0.415,44.241],[0.413,44.242],[0.412,44.243],[0.411,44.244],[0.411,44.245],[0.41,44.245],[0.409,44.245],[0.409,44.246],[0.408,44.246],[0.407,44.247],[0.407,44.247],[0.406,44.248],[0.405,44.248],[0.405,44.249],[0.403,44.249],[0.402,44.249],[0.402,44.249],[0.401,44.249],[0.401,44.249],[0.398,44.249],[0.396,44.248],[0.394,44.248],[0.385,44.247],[0.383,44.246],[0.38,44.246],[0.379,44.245],[0.378,44.245],[0.378,44.244],[0.377,44.244],[0.375,44.243],[0.373,44.242],[0.372,44.242],[0.371,44.242],[0.369,44.242],[0.368,44.242],[0.366,44.242],[0.364,44.242],[0.362,44.242],[0.36,44.242],[0.358,44.242],[0.357,44.242],[0.355,44.243],[0.353,44.243],[0.352,44.243],[0.351,44.243],[0.349,44.244],[0.347,44.245],[0.346,44.245],[0.345,44.246],[0.343,44.247],[0.343,44.248],[0.342,44.249],[0.342,44.249],[0.341,44.25],[0.341,44.251],[0.341,44.254],[0.341,44.255],[0.341,44.257],[0.341,44.258],[0.341,44.259],[0.337,44.272],[0.332,44.28],[0.331,44.281],[0.331,44.282],[0.33,44.283],[0.328,44.285],[0.327,44.286],[0.326,44.287],[0.325,44.288],[0.325,44.29],[0.324,44.291],[0.324,44.292],[0.324,44.293],[0.324,44.294],[0.324,44.296],[0.324,44.297],[0.325,44.298],[0.325,44.299],[0.325,44.3],[0.325,44.3],[0.326,44.301],[0.327,44.303],[0.328,44.304],[0.329,44.305],[0.329,44.306],[0.33,44.306],[0.331,44.308],[0.331,44.309],[0.332,44.31],[0.332,44.311],[0.333,44.312],[0.336,44.321],[0.337,44.322],[0.336,44.322],[0.336,44.323],[0.336,44.324],[0.335,44.324],[0.334,44.325],[0.333,44.325],[0.332,44.326],[0.33,44.327],[0.327,44.329],[0.324,44.33],[0.323,44.331],[0.321,44.331],[0.32,44.332],[0.319,44.332],[0.317,44.333],[0.316,44.334],[0.315,44.334],[0.314,44.336],[0.314,44.337],[0.313,44.338],[0.313,44.339],[0.308,44.355],[0.303,44.362],[0.303,44.363],[0.302,44.365],[0.302,44.366],[0.302,44.366],[0.302,44.367],[0.305,44.377],[0.307,44.378],[0.308,44.378],[0.309,44.378],[0.311,44.379],[0.314,44.38],[0.315,44.38],[0.315,44.381],[0.316,44.381],[0.317,44.382],[0.317,44.383],[0.317,44.383],[0.317,44.383],[0.317,44.384],[0.317,44.385],[0.317,44.385],[0.316,44.386],[0.315,44.386],[0.313,44.386],[0.312,44.387],[0.31,44.387],[0.309,44.387],[0.307,44.388],[0.305,44.388],[0.303,44.389],[0.302,44.389],[0.301,44.39],[0.299,44.391],[0.297,44.392],[0.295,44.393],[0.294,44.395],[0.293,44.396],[0.293,44.397],[0.292,44.398],[0.291,44.399],[0.29,44.4],[0.285,44.41],[0.282,44.413],[0.28,44.413],[0.278,44.414],[0.277,44.415],[0.276,44.415],[0.275,44.415],[0.273,44.415],[0.271,44.416],[0.269,44.416],[0.268,44.415],[0.267,44.415],[0.266,44.415],[0.265,44.415],[0.263,44.414],[0.258,44.409],[0.256,44.408],[0.255,44.407],[0.254,44.406],[0.252,44.405],[0.25,44.404],[0.249,44.404],[0.248,44.403],[0.247,44.403],[0.246,44.403],[0.245,44.403],[0.245,44.403],[0.244,44.403],[0.244,44.403],[0.242,44.404],[0.241,44.404],[0.239,44.404],[0.238,44.404],[0.236,44.405],[0.235,44.406],[0.234,44.406],[0.232,44.407],[0.231,44.408],[0.23,44.409],[0.228,44.409],[0.227,44.41],[0.227,44.41],[0.226,44.411],[0.226,44.411],[0.224,44.413],[0.223,44.414],[0.222,44.415],[0.219,44.416],[0.218,44.417],[0.216,44.419],[0.216,44.419],[0.215,44.42],[0.214,44.421],[0.214,44.422],[0.214,44.423],[0.213,44.424],[0.213,44.425],[0.212,44.426],[0.212,44.426],[0.212,44.427],[0.212,44.429],[0.212,44.431],[0.212,44.432],[0.212,44.434],[0.211,44.442],[0.21,44.443],[0.21,44.443],[0.208,44.445],[0.207,44.445],[0.205,44.446],[0.204,44.447],[0.203,44.447],[0.201,44.447],[0.199,44.447],[0.198,44.447],[0.197,44.447],[0.197,44.447],[0.195,44.447],[0.194,44.447],[0.193,44.447],[0.191,44.447],[0.188,44.446],[0.185,44.446],[0.182,44.446],[0.18,44.446],[0.178,44.447],[0.173,44.448],[0.173,44.449],[0.173,44.45],[0.173,44.451],[0.173,44.452],[0.173,44.453],[0.173,44.454],[0.174,44.455],[0.174,44.456],[0.175,44.457],[0.176,44.458],[0.176,44.459],[0.177,44.46],[0.178,44.461],[0.179,44.462],[0.181,44.464],[0.182,44.465],[0.183,44.466],[0.184,44.467],[0.184,44.468],[0.185,44.468],[0.185,44.469],[0.185,44.47],[0.186,44.47],[0.186,44.47],[0.186,44.471],[0.185,44.472],[0.185,44.473],[0.185,44.474],[0.185,44.475],[0.184,44.483],[0.183,44.484],[0.181,44.485],[0.18,44.485],[0.179,44.486],[0.178,44.486],[0.175,44.486],[0.174,44.486],[0.17,44.485],[0.168,44.485],[0.167,44.485],[0.166,44.485],[0.164,44.486],[0.163,44.486],[0.161,44.487],[0.16,44.488],[0.16,44.488],[0.159,44.489],[0.159,44.489],[0.159,44.49],[0.159,44.49],[0.159,44.491],[0.159,44.493],[0.159,44.494],[0.16,44.496],[0.16,44.496],[0.161,44.497],[0.161,44.498],[0.161,44.499],[0.161,44.499],[0.161,44.5],[0.16,44.5],[0.158,44.501],[0.157,44.502],[0.155,44.502],[0.153,44.503],[0.152,44.503],[0.151,44.503],[0.151,44.503],[0.15,44.502],[0.147,44.502],[0.146,44.502],[0.144,44.503],[0.142,44.503],[0.141,44.503],[0.14,44.503],[0.139,44.503],[0.139,44.503],[0.138,44.503],[0.138,44.504],[0.138,44.504],[0.133,44.503],[0.13,44.503],[0.129,44.503],[0.128,44.502],[0.127,44.502],[0.126,44.501],[0.126,44.501],[0.124,44.5],[0.122,44.5],[0.119,44.5],[0.117,44.5],[0.115,44.501],[0.113,44.501],[0.111,44.501],[0.11,44.501],[0.108,44.501],[0.106,44.502],[0.104,44.502],[0.102,44.502],[0.1,44.503],[0.099,44.503],[0.097,44.503],[0.095,44.504],[0.092,44.505],[0.09,44.506],[0.088,44.507],[0.086,44.508],[0.085,44.509],[0.085,44.509],[0.084,44.51],[0.083,44.511],[0.083,44.511],[0.083,44.512],[0.083,44.512],[0.083,44.512],[0.083,44.513],[0.084,44.513],[0.084,44.514],[0.084,44.514],[0.084,44.514],[0.084,44.514],[0.084,44.515],[0.084,44.515],[0.083,44.515],[0.083,44.516],[0.083,44.517],[0.083,44.517],[0.083,44.518],[0.084,44.519],[0.085,44.52],[0.086,44.521],[0.086,44.522],[0.087,44.523],[0.089,44.527],[0.087,44.53],[0.087,44.53],[0.086,44.531],[0.085,44.531],[0.084,44.531],[0.083,44.532],[0.081,44.534],[0.081,44.535],[0.08,44.536],[0.08,44.537],[0.08,44.539],[0.08,44.539],[0.079,44.54],[0.079,44.541],[0.078,44.541],[0.077,44.541],[0.076,44.542],[0.074,44.542],[0.071,44.542],[0.069,44.542],[0.068,44.542],[0.066,44.542],[0.065,44.541],[0.064,44.541],[0.063,44.54],[0.062,44.54],[0.061,44.539],[0.061,44.538],[0.06,44.537],[0.059,44.536],[0.059,44.535],[0.059,44.533],[0.059,44.532],[0.059,44.531],[0.059,44.53],[0.059,44.529],[0.058,44.528],[0.058,44.527],[0.058,44.526],[0.057,44.526],[0.057,44.525],[0.056,44.524],[0.055,44.523],[0.054,44.522],[0.054,44.522],[0.053,44.521],[0.05,44.519],[0.048,44.519],[0.047,44.519],[0.046,44.519],[0.045,44.519],[0.045,44.52],[0.044,44.522],[0.043,44.524],[0.043,44.525],[0.042,44.526],[0.041,44.529],[0.041,44.53],[0.041,44.531],[0.04,44.532],[0.04,44.532],[0.04,44.533],[0.04,44.533],[0.039,44.537],[0.04,44.538],[0.041,44.539],[0.042,44.539],[0.043,44.54],[0.044,44.541],[0.044,44.542],[0.045,44.543],[0.045,44.543],[0.045,44.544],[0.045,44.544],[0.045,44.544],[0.044,44.544],[0.044,44.544],[0.044,44.545],[0.043,44.545],[0.042,44.545],[0.042,44.545],[0.04,44.544],[0.038,44.544],[0.037,44.544],[0.035,44.543],[0.034,44.543],[0.034,44.543],[0.033,44.542],[0.032,44.542],[0.031,44.542],[0.029,44.541],[0.028,44.541],[0.027,44.541],[0.025,44.541],[0.024,44.541],[0.023,44.542],[0.022,44.542],[0.021,44.542],[0.019,44.544],[0.017,44.545],[0.017,44.545],[0.015,44.546],[0.013,44.548],[0.011,44.549],[0.009,44.55],[0.007,44.551],[-0.006,44.555],[-0.01,44.557],[-0.01,44.557],[-0.01,44.558],[-0.01,44.559],[-0.011,44.56],[-0.011,44.561],[-0.011,44.562],[-0.012,44.564],[-0.012,44.565],[-0.013,44.566],[-0.013,44.567],[-0.015,44.569],[-0.016,44.57],[-0.017,44.571],[-0.018,44.572],[-0.018,44.573],[-0.019,44.574],[-0.019,44.575],[-0.02,44.576],[-0.021,44.577],[-0.022,44.578],[-0.023,44.578],[-0.024,44.579],[-0.024,44.579],[-0.026,44.579],[-0.029,44.579],[-0.031,44.579],[-0.035,44.579],[-0.037,44.579],[-0.041,44.579],[-0.043,44.579],[-0.045,44.579],[-0.048,44.578],[-0.051,44.578],[-0.054,44.579],[-0.056,44.578],[-0.057,44.578],[-0.058,44.578],[-0.059,44.578],[-0.06,44.578],[-0.061,44.577],[-0.063,44.576],[-0.065,44.575],[-0.066,44.574],[-0.066,44.574],[-0.066,44.574],[-0.066,44.574],[-0.067,44.573],[-0.069,44.573],[-0.07,44.573],[-0.072,44.572],[-0.074,44.572],[-0.075,44.572],[-0.077,44.573],[-0.08,44.573],[-0.082,44.573],[-0.083,44.573],[-0.084,44.573],[-0.086,44.574],[-0.087,44.574],[-0.088,44.574],[-0.089,44.574],[-0.09,44.575],[-0.091,44.575],[-0.093,44.576],[-0.094,44.577],[-0.095,44.578],[-0.097,44.58],[-0.097,44.58],[-0.098,44.581],[-0.099,44.581],[-0.1,44.582],[-0.102,44.583],[-0.103,44.583],[-0.104,44.583],[-0.106,44.582],[-0.107,44.582],[-0.107,44.582],[-0.108,44.581],[-0.109,44.58],[-0.11,44.58],[-0.111,44.579],[-0.112,44.577],[-0.113,44.576],[-0.113,44.575],[-0.113,44.574],[-0.114,44.574],[-0.114,44.573],[-0.115,44.572],[-0.116,44.571],[-0.117,44.571],[-0.118,44.57],[-0.118,44.57],[-0.12,44.57],[-0.121,44.57],[-0.122,44.57],[-0.122,44.57],[-0.123,44.571],[-0.124,44.571],[-0.125,44.572],[-0.126,44.572],[-0.127,44.573],[-0.128,44.574],[-0.128,44.575],[-0.128,44.575],[-0.129,44.576],[-0.129,44.577],[-0.13,44.577],[-0.131,44.578],[-0.131,44.578],[-0.132,44.578],[-0.133,44.578],[-0.133,44.578],[-0.134,44.578],[-0.134,44.577],[-0.134,44.577],[-0.134,44.576],[-0.134,44.575],[-0.134,44.575],[-0.134,44.574],[-0.135,44.573],[-0.135,44.572],[-0.136,44.572],[-0.136,44.571],[-0.137,44.57],[-0.138,44.57],[-0.14,44.569],[-0.141,44.568],[-0.143,44.568],[-0.144,44.567],[-0.147,44.566],[-0.149,44.566],[-0.15,44.565],[-0.151,44.564],[-0.152,44.564],[-0.153,44.564],[-0.153,44.564],[-0.154,44.564],[-0.155,44.564],[-0.156,44.565],[-0.157,44.565],[-0.158,44.565],[-0.159,44.565],[-0.159,44.565],[-0.161,44.565],[-0.162,44.565],[-0.163,44.566],[-0.164,44.566],[-0.165,44.567],[-0.167,44.567],[-0.168,44.567],[-0.175,44.569],[-0.176,44.569],[-0.178,44.569],[-0.18,44.568],[-0.181,44.568],[-0.183,44.568],[-0.185,44.567],[-0.187,44.567],[-0.19,44.567],[-0.191,44.567],[-0.194,44.567],[-0.198,44.567],[-0.2,44.567],[-0.203,44.567],[-0.205,44.567],[-0.207,44.567],[-0.208,44.566],[-0.209,44.566],[-0.212,44.566],[-0.214,44.565],[-0.215,44.565],[-0.217,44.564],[-0.219,44.563],[-0.22,44.563],[-0.222,44.562],[-0.224,44.561],[-0.224,44.561],[-0.225,44.561],[-0.226,44.561],[-0.227,44.561],[-0.229,44.561],[-0.23,44.56],[-0.231,44.56],[-0.233,44.56],[-0.234,44.56],[-0.236,44.559],[-0.237,44.559],[-0.237,44.559],[-0.246,44.557],[-0.249,44.558],[-0.251,44.558],[-0.252,44.559],[-0.252,44.559],[-0.253,44.56],[-0.254,44.561],[-0.256,44.562],[-0.256,44.563],[-0.257,44.564],[-0.258,44.565],[-0.26,44.566],[-0.261,44.567],[-0.262,44.568],[-0.264,44.569],[-0.265,44.569],[-0.265,44.57],[-0.266,44.571],[-0.267,44.571],[-0.268,44.571],[-0.269,44.572],[-0.27,44.573],[-0.271,44.574],[-0.278,44.582],[-0.289,44.588],[-0.291,44.589],[-0.291,44.589],[-0.292,44.59],[-0.293,44.59],[-0.294,44.591],[-0.294,44.593],[-0.295,44.594],[-0.296,44.596],[-0.296,44.596],[-0.296,44.597],[-0.297,44.599],[-0.297,44.6],[-0.299,44.602],[-0.3,44.603],[-0.301,44.604],[-0.302,44.605],[-0.302,44.605],[-0.302,44.606],[-0.303,44.607],[-0.303,44.608],[-0.303,44.608],[-0.302,44.61],[-0.301,44.611],[-0.301,44.612],[-0.301,44.614],[-0.301,44.615],[-0.301,44.615],[-0.301,44.616],[-0.302,44.618],[-0.302,44.619],[-0.303,44.62],[-0.304,44.621],[-0.305,44.622],[-0.306,44.623],[-0.307,44.624],[-0.308,44.625],[-0.31,44.627],[-0.314,44.63],[-0.327,44.636],[-0.328,44.636],[-0.33,44.637],[-0.331,44.638],[-0.331,44.638],[-0.332,44.639],[-0.333,44.64],[-0.334,44.641],[-0.334,44.642],[-0.334,44.643],[-0.335,44.645],[-0.335,44.646],[-0.335,44.647],[-0.335,44.648],[-0.336,44.649],[-0.336,44.649],[-0.338,44.65],[-0.339,44.651],[-0.339,44.651],[-0.34,44.651],[-0.341,44.652],[-0.342,44.652],[-0.343,44.653],[-0.344,44.653],[-0.345,44.653],[-0.347,44.654],[-0.348,44.654],[-0.354,44.655],[-0.358,44.659],[-0.359,44.661],[-0.36,44.662],[-0.361,44.663],[-0.362,44.665],[-0.363,44.667],[-0.364,44.668],[-0.365,44.669],[-0.366,44.67],[-0.366,44.671],[-0.369,44.676],[-0.369,44.678],[-0.37,44.679],[-0.37,44.68],[-0.371,44.682],[-0.371,44.682],[-0.372,44.684],[-0.373,44.685],[-0.373,44.685],[-0.373,44.685],[-0.373,44.686],[-0.374,44.686],[-0.375,44.687],[-0.376,44.687],[-0.377,44.688],[-0.379,44.688],[-0.38,44.689],[-0.381,44.689],[-0.381,44.689],[-0.382,44.689],[-0.383,44.689],[-0.384,44.689],[-0.385,44.689],[-0.388,44.688],[-0.391,44.688],[-0.393,44.688],[-0.395,44.688],[-0.397,44.687],[-0.398,44.687],[-0.399,44.687],[-0.4,44.687],[-0.401,44.687],[-0.402,44.688],[-0.403,44.688],[-0.404,44.688],[-0.406,44.691],[-0.404,44.693],[-0.402,44.695],[-0.401,44.696],[-0.4,44.696],[-0.398,44.697],[-0.398,44.699],[-0.397,44.7],[-0.397,44.7],[-0.396,44.701],[-0.396,44.701],[-0.396,44.702],[-0.397,44.702],[-0.397,44.703],[-0.398,44.703],[-0.4,44.704],[-0.402,44.704],[-0.404,44.705],[-0.406,44.706],[-0.409,44.707],[-0.411,44.707],[-0.413,44.707],[-0.414,44.707],[-0.416,44.706],[-0.418,44.706],[-0.42,44.705],[-0.422,44.704],[-0.424,44.703],[-0.427,44.702],[-0.428,44.702],[-0.429,44.702],[-0.43,44.701],[-0.432,44.702],[-0.435,44.702],[-0.437,44.703],[-0.438,44.704],[-0.439,44.705],[-0.441,44.707],[-0.442,44.708],[-0.444,44.71],[-0.444,44.711],[-0.445,44.711],[-0.445,44.713],[-0.446,44.714],[-0.446,44.716],[-0.447,44.717],[-0.449,44.72],[-0.45,44.721],[-0.457,44.728],[-0.462,44.73],[-0.464,44.73],[-0.466,44.731],[-0.466,44.732],[-0.468,44.733],[-0.469,44.734],[-0.471,44.734],[-0.472,44.735],[-0.474,44.736],[-0.475,44.736],[-0.476,44.736],[-0.478,44.737],[-0.48,44.737],[-0.482,44.737],[-0.485,44.738],[-0.486,44.738],[-0.488,44.739],[-0.491,44.74],[-0.493,44.741],[-0.495,44.742],[-0.496,44.742],[-0.497,44.743],[-0.498,44.744],[-0.499,44.745],[-0.5,44.746],[-0.5,44.747],[-0.5,44.747],[-0.501,44.748],[-0.501,44.749],[-0.503,44.75],[-0.503,44.751],[-0.504,44.751],[-0.505,44.752],[-0.506,44.753],[-0.507,44.754],[-0.508,44.755],[-0.509,44.756],[-0.51,44.757],[-0.51,44.758],[-0.51,44.758],[-0.51,44.76],[-0.51,44.76],[-0.51,44.761],[-0.51,44.763],[-0.51,44.764],[-0.514,44.772],[-0.514,44.774],[-0.514,44.775],[-0.515,44.776],[-0.517,44.777],[-0.517,44.779],[-0.519,44.781],[-0.521,44.784],[-0.523,44.787],[-0.525,44.79],[-0.526,44.792],[-0.527,44.793],[-0.528,44.795],[-0.528,44.797],[-0.529,44.8],[-0.529,44.803],[-0.53,44.805],[-0.528,44.807],[-0.53,44.808],[-0.531,44.809],[-0.532,44.81],[-0.535,44.814],[-0.537,44.818],[-0.538,44.819],[-0.54,44.822],[-0.559,44.838],[-0.563,44.842],[-0.565,44.843],[-0.565,44.843],[-0.565,44.844],[-0.565,44.845],[-0.565,44.846],[-0.566,44.847],[-0.566,44.847],[-0.565,44.848],[-0.565,44.849],[-0.564,44.85],[-0.564,44.851],[-0.562,44.852],[-0.56,44.853],[-0.559,44.854],[-0.557,44.854]],[[-0.083,51.52],[0.464,51.491],[0.564,51.491],[0.664,51.491],[0.764,51.491],[0.864,51.491],[0.964,51.491],[1.064,51.491],[1.164,51.491],[1.264,51.491],[1.364,51.391],[1.464,51.291]],[[1.318,51.302],[1.464,51.291]],[[1.435,43.617],[1.439,43.59],[1.472,43.565],[1.515,43.546],[1.548,43.528],[1.571,43.5],[1.6,43.471],[1.643,43.446],[1.686,43.427],[1.719,43.403],[1.733,43.397],[1.749,43.388],[1.769,43.381],[1.803,43.369],[1.834,43.357],[1.867,43.346],[1.89,43.335],[1.915,43.325],[1.955,43.316],[1.969,43.312],[1.985,43.3],[2.057,43.272],[2.103,43.256],[2.139,43.243],[2.182,43.232],[2.218,43.224],[2.286,43.219],[2.331,43.212],[2.375,43.201],[2.417,43.191],[2.464,43.181],[2.514,43.181],[2.559,43.178],[2.592,43.178],[2.63,43.177],[2.658,43.178],[2.706,43.183],[2.734,43.192],[2.753,43.195],[2.787,43.19],[2.833,43.182],[2.872,43.18],[2.969,43.185],[2.985,43.186],[2.99,43.193],[3.001,43.198]],[[3,43.197],[3.164,43.091],[3.264,43.091],[3.364,43.091],[3.464,42.991],[3.564,42.891],[3.664,42.791],[3.764,42.691],[3.864,42.591],[3.964,42.491],[4.064,42.391],[4.164,42.291],[4.264,42.191],[4.364,42.091],[4.464,41.991],[4.564,41.891],[4.664,41.791],[4.764,41.691],[4.864,41.591],[4.964,41.491],[5.064,41.391],[5.164,41.391],[5.264,41.391],[5.364,41.391],[5.464,41.391],[5.564,41.391],[5.664,41.391],[5.764,41.391],[5.864,41.391],[5.964,41.391],[6.064,41.391],[6.164,41.391],[6.264,41.391],[6.364,41.391],[6.464,41.391],[6.564,41.391],[6.664,41.391],[6.764,41.391],[6.864,41.391],[6.964,41.391],[7.064,41.391],[7.164,41.391],[7.264,41.391],[7.364,41.391],[7.464,41.391],[7.564,41.391],[7.664,41.391],[7.764,41.391],[7.864,41.391],[7.964,41.391],[8.064,41.391],[8.164,41.391],[8.264,41.391],[8.364,41.391],[8.464,41.391],[8.564,41.391],[8.664,41.391],[8.764,41.391],[8.864,41.391],[8.964,41.391],[9.064,41.391]],[[9.064,41.391],[9.164,41.291],[9.264,41.391],[9.364,41.491],[9.464,41.591],[9.564,41.691],[9.664,41.691],[9.764,41.691],[9.864,41.691],[9.964,41.691],[10.064,41.691],[10.164,41.691],[10.264,41.691],[10.364,41.691],[10.464,41.691],[10.564,41.691],[10.664,41.691],[10.764,41.691],[10.864,41.691],[10.964,41.691],[11.064,41.691],[11.164,41.691],[11.264,41.691],[11.364,41.691],[11.464,41.691],[11.564,41.691],[11.664,41.691],[11.764,41.691],[11.864,41.691],[11.964,41.691],[12.064,41.691],[12.164,41.691],[12.264,41.691],[12.287,41.754]],[[9.159,41.387],[9.064,41.391]],[[12.474,41.89],[12.474,41.89],[12.475,41.888],[12.469,41.882],[12.468,41.877],[12.472,41.868],[12.47,41.863],[12.461,41.858],[12.46,41.855],[12.46,41.854],[12.462,41.85],[12.444,41.834],[12.435,41.829],[12.426,41.831],[12.421,41.828],[12.418,41.822],[12.416,41.818],[12.411,41.809],[12.405,41.805],[12.394,41.805],[12.386,41.802],[12.375,41.804],[12.37,41.805],[12.364,41.807],[12.36,41.806],[12.352,41.806],[12.343,41.809],[12.339,41.806],[12.337,41.799],[12.332,41.798],[12.323,41.799],[12.317,41.799],[12.309,41.8],[12.302,41.797],[12.295,41.791],[12.284,41.789],[12.278,41.782],[12.273,41.773],[12.274,41.771],[12.274,41.768],[12.275,41.764],[12.28,41.758],[12.271,41.753]]]},"pair": 50235,"direction": 1,"month": 4,"priority": 1,"expense": 8.724,"duration": 37.138,"length": 3045.206},{"type": "Feature", "geometry": {"type":"MultiLineString","coordinates":[[[-9.145,38.726],[-9.136,38.691]],[[-9.136,38.691],[-9.236,38.691],[-9.336,38.591],[-9.436,38.691],[-9.536,38.791],[-9.536,38.891],[-9.536,38.991],[-9.536,39.091],[-9.536,39.191],[-9.536,39.291],[-9.536,39.391],[-9.536,39.491],[-9.536,39.591],[-9.536,39.691],[-9.536,39.791],[-9.436,39.891],[-9.336,39.991],[-9.336,40.091],[-9.336,40.191],[-9.336,40.291],[-9.336,40.391],[-9.336,40.491],[-9.336,40.591],[-9.336,40.691],[-9.336,40.791],[-9.336,40.891],[-9.336,40.991],[-9.336,41.091],[-9.336,41.191],[-9.336,41.291],[-9.336,41.391],[-9.336,41.491],[-9.336,41.591],[-9.336,41.691],[-9.336,41.791],[-9.336,41.891],[-9.336,41.991],[-9.336,42.091],[-9.336,42.191],[-9.336,42.291],[-9.336,42.391],[-9.336,42.491],[-9.336,42.591],[-9.336,42.691],[-9.336,42.791],[-9.336,42.891],[-9.336,42.991],[-9.336,43.091],[-9.236,43.191],[-9.136,43.291],[-9.036,43.391],[-8.936,43.391],[-8.836,43.391],[-8.736,43.391],[-8.636,43.391],[-8.536,43.391],[-8.436,43.391]],[[-6.336,36.491],[-6.436,36.591],[-6.536,36.691],[-6.636,36.791],[-6.736,36.891],[-6.836,36.991],[-6.936,36.991],[-7.036,36.991],[-7.136,36.991],[-7.236,36.991],[-7.336,36.991],[-7.436,36.991],[-7.536,36.991],[-7.636,36.991],[-7.736,36.991],[-7.836,36.991],[-7.936,36.991],[-8.036,36.991],[-8.136,36.991],[-8.236,36.991],[-8.336,36.991],[-8.436,36.991],[-8.536,36.991],[-8.636,36.991],[-8.736,36.991],[-8.836,36.991],[-8.936,36.991],[-9.036,37.091],[-9.036,37.191],[-9.036,37.291],[-9.036,37.391],[-9.036,37.491],[-9.036,37.591],[-9.036,37.691],[-9.036,37.791],[-9.036,37.891],[-9.036,37.991],[-9.036,38.091],[-9.036,38.191],[-9.036,38.291],[-9.136,38.391],[-9.236,38.491],[-9.236,38.591],[-9.136,38.691]],[[-8.436,43.391],[-8.336,43.491],[-8.236,43.591],[-8.136,43.691],[-8.036,43.791],[-7.936,43.791],[-7.836,43.791],[-7.736,43.791],[-7.636,43.791],[-7.536,43.791],[-7.436,43.791],[-7.336,43.791],[-7.236,43.791],[-7.136,43.791],[-7.036,43.791],[-6.936,43.791],[-6.836,43.791],[-6.736,43.791],[-6.636,43.791],[-6.536,43.791],[-6.436,43.791],[-6.336,43.791],[-6.236,43.791],[-6.136,43.791],[-6.036,43.791],[-5.936,43.791],[-5.836,43.791],[-5.736,43.791],[-5.636,43.791],[-5.536,43.791],[-5.436,43.791],[-5.336,43.791],[-5.236,43.791],[-5.136,43.791],[-5.036,43.791],[-4.936,43.791],[-4.836,43.791],[-4.736,43.791],[-4.636,43.791],[-4.536,43.791],[-4.436,43.791],[-4.336,43.791],[-4.236,43.691],[-4.136,43.591],[-4.036,43.491]],[[-8.397,43.37],[-8.436,43.391]],[[-6.336,36.491],[-6.293,36.529]],[[9.064,39.191],[9.064,39.091],[9.064,38.991],[8.964,38.891],[8.864,38.791],[8.764,38.791],[8.664,38.791],[8.564,38.791],[8.464,38.791],[8.364,38.791],[8.264,38.791],[8.164,38.791],[8.064,38.791],[7.964,38.791],[7.864,38.791],[7.764,38.791],[7.664,38.791],[7.564,38.791],[7.464,38.791],[7.364,38.791],[7.264,38.791],[7.164,38.791],[7.064,38.791],[6.964,38.791],[6.864,38.791],[6.764,38.791],[6.664,38.691],[6.564,38.591],[6.464,38.491],[6.364,38.391],[6.264,38.291],[6.164,38.191],[6.064,38.091],[5.964,37.991],[5.864,37.891],[5.764,37.791],[5.664,37.691],[5.564,37.591],[5.464,37.491],[5.364,37.391],[5.264,37.291],[5.164,37.191],[5.064,37.091],[4.964,36.991],[4.864,36.991],[4.764,36.991],[4.664,36.991],[4.564,36.991],[4.464,36.991],[4.364,36.991],[4.264,36.991],[4.164,36.991],[4.064,36.991],[3.964,36.991],[3.864,36.991],[3.764,36.991],[3.664,36.991],[3.564,36.991],[3.464,36.991],[3.364,36.991],[3.264,36.991],[3.164,36.991],[3.064,36.991],[2.964,36.991],[2.864,36.991],[2.764,36.991],[2.664,36.991],[2.564,36.991],[2.464,36.991],[2.364,36.991],[2.264,36.991],[2.164,36.991],[2.064,36.991],[1.964,36.991],[1.864,36.991],[1.764,36.991],[1.664,36.991],[1.564,36.991],[1.464,36.991],[1.364,36.991],[1.264,36.991],[1.164,36.991],[1.064,36.991],[0.964,36.991],[0.864,36.991],[0.764,36.991],[0.664,36.991],[0.564,36.991],[0.464,36.991],[0.364,36.991],[0.264,36.991],[0.164,36.991],[0.064,36.991],[-0.036,36.991],[-0.136,36.991],[-0.236,36.991],[-0.336,36.991],[-0.436,36.991],[-0.536,36.991],[-0.636,36.991],[-0.736,36.991],[-0.836,36.991],[-0.936,36.991],[-1.036,36.991],[-1.136,36.991],[-1.236,36.991],[-1.336,36.991],[-1.436,36.991],[-1.536,36.991],[-1.636,36.991],[-1.736,36.991],[-1.836,36.991],[-1.936,36.891],[-2.036,36.791],[-2.136,36.691],[-2.236,36.691],[-2.336,36.691],[-2.436,36.691],[-2.536,36.691],[-2.636,36.691],[-2.736,36.691],[-2.836,36.691],[-2.936,36.691],[-3.036,36.691],[-3.136,36.691],[-3.236,36.691],[-3.336,36.691],[-3.436,36.691],[-3.536,36.691],[-3.636,36.691],[-3.736,36.691],[-3.836,36.691],[-3.936,36.691],[-4.036,36.691],[-4.136,36.691],[-4.236,36.691],[-4.336,36.691],[-4.436,36.691],[-4.536,36.591],[-4.636,36.491],[-4.736,36.491],[-4.836,36.491],[-4.936,36.491],[-5.036,36.391],[-5.136,36.391],[-5.236,36.291],[-5.336,36.191],[-5.436,36.091],[-5.536,35.991],[-5.636,35.991],[-5.736,35.991],[-5.836,36.091],[-5.936,36.091],[-6.036,36.091],[-6.136,36.191],[-6.136,36.291],[-6.236,36.391],[-6.336,36.491]],[[-4.036,43.491],[-4.043,43.432]],[[-4.036,43.491],[-3.936,43.591],[-3.836,43.691],[-3.736,43.791],[-3.636,43.891],[-3.536,43.991],[-3.436,44.091],[-3.336,44.191],[-3.236,44.291],[-3.136,44.391],[-3.036,44.491],[-2.936,44.591],[-2.836,44.691],[-2.736,44.791],[-2.636,44.891],[-2.536,44.991],[-2.436,45.091],[-2.436,45.191],[-2.436,45.291],[-2.436,45.391],[-2.436,45.491],[-2.436,45.591],[-2.436,45.691],[-2.436,45.791],[-2.436,45.891],[-2.436,45.991],[-2.436,46.091],[-2.436,46.191],[-2.436,46.291],[-2.436,46.391],[-2.436,46.491],[-2.436,46.591],[-2.436,46.691],[-2.436,46.791],[-2.436,46.891],[-2.436,46.991],[-2.336,47.091],[-2.236,47.191]],[[-1.558,47.214],[-1.936,47.291],[-2.136,47.291],[-2.236,47.191]],[[-2.236,47.191],[-2.336,47.191],[-2.436,47.191],[-2.536,47.291],[-2.636,47.391],[-2.736,47.391],[-2.836,47.391],[-2.936,47.391],[-3.036,47.391],[-3.136,47.391],[-3.236,47.491],[-3.336,47.591],[-3.436,47.691],[-3.536,47.691],[-3.636,47.691],[-3.736,47.791],[-3.836,47.791],[-3.936,47.791],[-4.036,47.791],[-4.136,47.791],[-4.236,47.791],[-4.336,47.791],[-4.436,47.891],[-4.536,47.991],[-4.536,48.091],[-4.636,48.191],[-4.736,48.291],[-4.836,48.391],[-4.836,48.491],[-4.736,48.591],[-4.636,48.691],[-4.536,48.791],[-4.436,48.891],[-4.336,48.991],[-4.236,49.091],[-4.136,49.191],[-4.036,49.291],[-3.936,49.391],[-3.836,49.491],[-3.736,49.591],[-3.636,49.691],[-3.536,49.791],[-3.436,49.791],[-3.336,49.791],[-3.236,49.791],[-3.136,49.791],[-3.036,49.791],[-2.936,49.791],[-2.836,49.791],[-2.736,49.791],[-2.636,49.791],[-2.536,49.791],[-2.436,49.791],[-2.336,49.791],[-2.236,49.791],[-2.136,49.791],[-2.036,49.791],[-1.936,49.791],[-1.836,49.791],[-1.736,49.791],[-1.636,49.791],[-1.536,49.791],[-1.436,49.791],[-1.336,49.791],[-1.236,49.791],[-1.136,49.791],[-1.036,49.791],[-0.936,49.791],[-0.836,49.791],[-0.736,49.791],[-0.636,49.791],[-0.536,49.791],[-0.436,49.791],[-0.336,49.791],[-0.236,49.791],[-0.136,49.791],[-0.036,49.791],[0.064,49.791],[0.164,49.791],[0.264,49.791],[0.364,49.791],[0.464,49.691],[0.564,49.591]],[[1.564,50.691],[1.564,50.791],[1.564,50.891],[1.564,50.991],[1.564,51.091],[1.564,51.191],[1.464,51.291],[1.364,51.391],[1.264,51.491],[1.164,51.491],[1.064,51.491],[0.964,51.491],[0.864,51.491],[0.764,51.491],[0.664,51.491],[0.564,51.491],[0.464,51.491],[-0.083,51.52]],[[0.537,49.525],[0.564,49.591]],[[0.564,49.591],[0.664,49.691],[0.764,49.791],[0.764,49.891],[0.864,49.991],[0.964,50.091],[1.064,50.191],[1.164,50.291],[1.264,50.391],[1.364,50.491],[1.464,50.591],[1.564,50.691]],[[1.614,50.724],[1.564,50.691]],[[9.11,39.215],[9.064,39.191]],[[12.287,41.754],[12.264,41.691],[12.164,41.591],[12.064,41.491],[11.964,41.391],[11.864,41.291],[11.764,41.191],[11.664,41.091],[11.564,40.991],[11.464,40.891],[11.364,40.791],[11.264,40.691],[11.164,40.591],[11.064,40.491],[10.964,40.391],[10.864,40.291],[10.764,40.191],[10.664,40.091],[10.564,39.991],[10.464,39.891],[10.364,39.891],[10.264,39.791],[10.164,39.691],[10.064,39.591],[9.964,39.491],[9.864,39.391],[9.764,39.291],[9.664,39.191],[9.564,39.091],[9.464,39.091],[9.364,39.091],[9.264,39.091],[9.164,39.091],[9.064,39.191]],[[12.474,41.89],[12.474,41.89],[12.475,41.888],[12.469,41.882],[12.468,41.877],[12.472,41.868],[12.47,41.863],[12.461,41.858],[12.46,41.855],[12.46,41.854],[12.462,41.85],[12.444,41.834],[12.435,41.829],[12.426,41.831],[12.421,41.828],[12.418,41.822],[12.416,41.818],[12.411,41.809],[12.405,41.805],[12.394,41.805],[12.386,41.802],[12.375,41.804],[12.37,41.805],[12.364,41.807],[12.36,41.806],[12.352,41.806],[12.343,41.809],[12.339,41.806],[12.337,41.799],[12.332,41.798],[12.323,41.799],[12.317,41.799],[12.309,41.8],[12.302,41.797],[12.295,41.791],[12.284,41.789],[12.278,41.782],[12.273,41.773],[12.274,41.771],[12.274,41.768],[12.275,41.764],[12.28,41.758],[12.271,41.753]]]},"pair": 50235,"direction": 0,"month": 5,"priority": 1,"expense": 3.894,"duration": 38.405,"length": 5259.283},{"type": "Feature", "geometry": {"type":"MultiLineString","coordinates":[[[-9.136,38.691],[-9.145,38.726]],[[-8.436,43.391],[-8.536,43.391],[-8.636,43.391],[-8.736,43.391],[-8.836,43.391],[-8.936,43.391],[-9.036,43.391],[-9.136,43.291],[-9.236,43.191],[-9.336,43.091],[-9.336,42.991],[-9.336,42.891],[-9.336,42.791],[-9.336,42.691],[-9.336,42.591],[-9.336,42.491],[-9.336,42.391],[-9.336,42.291],[-9.336,42.191],[-9.336,42.091],[-9.336,41.991],[-9.336,41.891],[-9.336,41.791],[-9.336,41.691],[-9.336,41.591],[-9.336,41.491],[-9.336,41.391],[-9.336,41.291],[-9.336,41.191],[-9.336,41.091],[-9.336,40.991],[-9.336,40.891],[-9.336,40.791],[-9.336,40.691],[-9.336,40.591],[-9.336,40.491],[-9.336,40.391],[-9.336,40.291],[-9.336,40.191],[-9.336,40.091],[-9.336,39.991],[-9.336,39.891],[-9.436,39.791],[-9.536,39.691],[-9.536,39.591],[-9.536,39.491],[-9.536,39.391],[-9.536,39.291],[-9.536,39.191],[-9.536,39.091],[-9.536,38.991],[-9.536,38.891],[-9.536,38.791],[-9.436,38.691],[-9.336,38.591],[-9.236,38.691],[-9.136,38.691]],[[-9.136,38.691],[-9.236,38.591],[-9.236,38.491],[-9.136,38.391],[-9.036,38.291],[-9.036,38.191],[-9.036,38.091],[-9.036,37.991],[-9.036,37.891],[-9.036,37.791],[-9.036,37.691],[-9.036,37.591],[-9.036,37.491],[-9.036,37.391],[-9.036,37.291],[-9.036,37.191],[-9.036,37.091],[-8.936,36.991],[-8.836,36.991],[-8.736,36.991],[-8.636,36.991],[-8.536,36.991],[-8.436,36.991],[-8.336,36.991],[-8.236,36.991],[-8.136,36.991],[-8.036,36.991],[-7.936,36.991],[-7.836,36.991],[-7.736,36.991],[-7.636,36.991],[-7.536,36.991],[-7.436,36.991],[-7.336,36.991],[-7.236,36.991],[-7.136,36.991],[-7.036,36.991],[-6.936,36.991],[-6.836,36.991],[-6.736,36.891],[-6.636,36.791],[-6.536,36.691],[-6.436,36.591],[-6.336,36.491]],[[-4.036,43.491],[-4.136,43.491],[-4.236,43.491],[-4.336,43.491],[-4.436,43.491],[-4.536,43.491],[-4.636,43.491],[-4.736,43.491],[-4.836,43.491],[-4.936,43.491],[-5.036,43.491],[-5.136,43.591],[-5.236,43.691],[-5.336,43.791],[-5.436,43.791],[-5.536,43.791],[-5.636,43.791],[-5.736,43.791],[-5.836,43.791],[-5.936,43.791],[-6.036,43.791],[-6.136,43.791],[-6.236,43.791],[-6.336,43.791],[-6.436,43.791],[-6.536,43.791],[-6.636,43.791],[-6.736,43.791],[-6.836,43.791],[-6.936,43.791],[-7.036,43.791],[-7.136,43.791],[-7.236,43.791],[-7.336,43.791],[-7.436,43.791],[-7.536,43.791],[-7.636,43.791],[-7.736,43.791],[-7.836,43.791],[-7.936,43.791],[-8.036,43.791],[-8.136,43.691],[-8.236,43.591],[-8.336,43.491],[-8.436,43.391]],[[-8.436,43.391],[-8.397,43.37]],[[-6.336,36.491],[-6.293,36.529]],[[-6.336,36.491],[-6.236,36.391],[-6.136,36.291],[-6.136,36.191],[-6.036,36.091],[-5.936,36.091],[-5.836,36.091],[-5.736,35.991],[-5.636,35.891],[-5.536,35.991],[-5.436,35.991],[-5.336,35.991],[-5.236,35.991],[-5.136,35.991],[-5.036,35.991],[-4.936,35.991],[-4.836,35.991],[-4.736,35.991],[-4.636,35.991],[-4.536,35.991],[-4.436,35.991],[-4.336,35.991],[-4.236,35.991],[-4.136,35.991],[-4.036,35.991],[-3.936,35.991],[-3.836,35.991],[-3.736,35.991],[-3.636,35.991],[-3.536,35.991],[-3.436,35.991],[-3.336,35.991],[-3.236,35.991],[-3.136,35.991],[-3.036,35.991],[-2.936,35.991],[-2.836,35.991],[-2.736,35.991],[-2.636,35.991],[-2.536,35.991],[-2.436,35.991],[-2.336,36.091],[-2.236,36.191],[-2.136,36.291],[-2.036,36.391],[-1.936,36.491],[-1.836,36.591],[-1.736,36.691],[-1.636,36.791],[-1.536,36.891],[-1.436,36.991],[-1.336,37.091],[-1.236,37.191],[-1.136,37.291],[-1.036,37.391],[-0.936,37.491],[-0.836,37.491],[-0.736,37.591],[-0.636,37.691],[-0.536,37.791],[-0.436,37.891],[-0.336,37.991],[-0.236,38.091],[-0.136,38.191],[-0.036,38.291],[0.064,38.391],[0.164,38.491],[0.264,38.591],[0.364,38.591],[0.464,38.591],[0.564,38.591],[0.664,38.591],[0.764,38.591],[0.864,38.591],[0.964,38.591],[1.064,38.591],[1.164,38.591],[1.264,38.591],[1.364,38.591],[1.464,38.591],[1.564,38.591],[1.664,38.591],[1.764,38.591],[1.864,38.591],[1.964,38.591],[2.064,38.591],[2.164,38.591],[2.264,38.591],[2.364,38.591],[2.464,38.591],[2.564,38.591],[2.664,38.591],[2.764,38.591],[2.864,38.591],[2.964,38.591],[3.064,38.591],[3.164,38.591],[3.264,38.591],[3.364,38.591],[3.464,38.591],[3.564,38.591],[3.664,38.591],[3.764,38.591],[3.864,38.591],[3.964,38.591],[4.064,38.591],[4.164,38.591],[4.264,38.591],[4.364,38.591],[4.464,38.591],[4.564,38.591],[4.664,38.591],[4.764,38.591],[4.864,38.591],[4.964,38.591],[5.064,38.591],[5.164,38.691],[5.264,38.791],[5.364,38.791],[5.464,38.791],[5.564,38.791],[5.664,38.791],[5.764,38.791],[5.864,38.791],[5.964,38.791],[6.064,38.791],[6.164,38.791],[6.264,38.791],[6.364,38.791],[6.464,38.791],[6.564,38.791],[6.664,38.791],[6.764,38.791],[6.864,38.791],[6.964,38.791],[7.064,38.791],[7.164,38.791],[7.264,38.791],[7.364,38.791],[7.464,38.791],[7.564,38.791],[7.664,38.791],[7.764,38.791],[7.864,38.791],[7.964,38.791],[8.064,38.791],[8.164,38.791],[8.264,38.791],[8.364,38.791],[8.464,38.791],[8.564,38.791],[8.664,38.791],[8.764,38.791],[8.864,38.791],[8.964,38.891],[9.064,38.991],[9.064,39.091],[9.064,39.191]],[[-4.043,43.432],[-4.036,43.491]],[[-2.236,47.191],[-2.336,47.091],[-2.436,46.991],[-2.536,46.891],[-2.536,46.791],[-2.536,46.691],[-2.536,46.591],[-2.536,46.491],[-2.536,46.391],[-2.536,46.291],[-2.536,46.191],[-2.536,46.091],[-2.536,45.991],[-2.536,45.891],[-2.536,45.791],[-2.536,45.691],[-2.536,45.591],[-2.536,45.491],[-2.536,45.391],[-2.536,45.291],[-2.536,45.191],[-2.536,45.091],[-2.536,44.991],[-2.636,44.891],[-2.736,44.791],[-2.836,44.691],[-2.936,44.591],[-3.036,44.491],[-3.136,44.391],[-3.236,44.291],[-3.336,44.191],[-3.436,44.091],[-3.536,43.991],[-3.636,43.891],[-3.736,43.791],[-3.836,43.691],[-3.936,43.591],[-4.036,43.491]],[[-1.336,50.591],[-1.436,50.591],[-1.536,50.591],[-1.636,50.591],[-1.736,50.591],[-1.836,50.591],[-1.936,50.591],[-2.036,50.591],[-2.136,50.591],[-2.236,50.591],[-2.336,50.591],[-2.436,50.591]],[[-2.436,50.591],[-2.435,50.71]],[[-2.436,50.591],[-2.536,50.591],[-2.636,50.591],[-2.736,50.591],[-2.836,50.491],[-2.936,50.391],[-3.036,50.291],[-3.136,50.191],[-3.236,50.091],[-3.336,49.991],[-3.436,49.891],[-3.536,49.791],[-3.636,49.691],[-3.736,49.591],[-3.836,49.491],[-3.936,49.391],[-4.036,49.291],[-4.136,49.191],[-4.236,49.091],[-4.336,48.991],[-4.436,48.891],[-4.536,48.791],[-4.636,48.691],[-4.736,48.591],[-4.836,48.491],[-4.836,48.391],[-4.736,48.291],[-4.636,48.191],[-4.536,48.091],[-4.536,47.991],[-4.436,47.891],[-4.336,47.791],[-4.236,47.791],[-4.136,47.791],[-4.036,47.791],[-3.936,47.791],[-3.836,47.791],[-3.736,47.791],[-3.636,47.691],[-3.536,47.691],[-3.436,47.691],[-3.336,47.591],[-3.236,47.491],[-3.136,47.391],[-3.036,47.391],[-2.936,47.391],[-2.836,47.391],[-2.736,47.391],[-2.636,47.391],[-2.536,47.291],[-2.436,47.191],[-2.336,47.191],[-2.236,47.191]],[[-2.236,47.191],[-2.136,47.291],[-1.936,47.291],[-1.558,47.214]],[[-1.323,51.068],[-1.336,50.791],[-1.336,50.591]],[[1.464,51.291],[1.464,51.191],[1.364,51.091],[1.264,51.091],[1.164,50.991],[1.064,50.991],[0.964,50.891],[0.864,50.891],[0.764,50.891],[0.664,50.791],[0.564,50.791],[0.464,50.791],[0.364,50.791],[0.264,50.691],[0.164,50.691],[0.064,50.691],[-0.036,50.691],[-0.136,50.691],[-0.236,50.691],[-0.336,50.691],[-0.436,50.691],[-0.536,50.691],[-0.636,50.691],[-0.736,50.691],[-0.836,50.691],[-0.936,50.691],[-1.036,50.691],[-1.136,50.591],[-1.236,50.491],[-1.336,50.591]],[[-0.083,51.52],[0.464,51.491],[0.564,51.491],[0.664,51.491],[0.764,51.491],[0.864,51.491],[0.964,51.491],[1.064,51.491],[1.164,51.491],[1.264,51.491],[1.364,51.391],[1.464,51.291]],[[1.318,51.302],[1.464,51.291]],[[9.11,39.215],[9.064,39.191]],[[9.064,39.191],[9.164,39.091],[9.264,39.091],[9.364,39.091],[9.464,39.091],[9.564,39.091],[9.664,39.191],[9.764,39.291],[9.864,39.391],[9.964,39.491],[10.064,39.591],[10.164,39.691],[10.264,39.791],[10.364,39.891],[10.464,39.991],[10.564,40.091],[10.664,40.191],[10.764,40.291],[10.864,40.391],[10.964,40.491],[11.064,40.591],[11.164,40.691],[11.264,40.791],[11.364,40.891],[11.464,40.991],[11.564,41.091],[11.664,41.191],[11.764,41.291],[11.864,41.391],[11.964,41.491],[12.064,41.591],[12.164,41.691],[12.264,41.691],[12.287,41.754]],[[12.474,41.89],[12.474,41.89],[12.475,41.888],[12.469,41.882],[12.468,41.877],[12.472,41.868],[12.47,41.863],[12.461,41.858],[12.46,41.855],[12.46,41.854],[12.462,41.85],[12.444,41.834],[12.435,41.829],[12.426,41.831],[12.421,41.828],[12.418,41.822],[12.416,41.818],[12.411,41.809],[12.405,41.805],[12.394,41.805],[12.386,41.802],[12.375,41.804],[12.37,41.805],[12.364,41.807],[12.36,41.806],[12.352,41.806],[12.343,41.809],[12.339,41.806],[12.337,41.799],[12.332,41.798],[12.323,41.799],[12.317,41.799],[12.309,41.8],[12.302,41.797],[12.295,41.791],[12.284,41.789],[12.278,41.782],[12.273,41.773],[12.274,41.771],[12.274,41.768],[12.275,41.764],[12.28,41.758],[12.271,41.753]]]},"pair": 50235,"direction": 1,"month": 5,"priority": 1,"expense": 3.599,"duration": 36.911,"length": 5331.121},{"type": "Feature", "geometry": {"type":"MultiLineString","coordinates":[[[-9.145,38.726],[-9.136,38.691]],[[-9.136,38.691],[-9.236,38.691],[-9.336,38.591],[-9.436,38.691],[-9.536,38.791],[-9.536,38.891],[-9.536,38.991],[-9.536,39.091],[-9.536,39.191],[-9.536,39.291],[-9.536,39.391],[-9.436,39.491],[-9.336,39.591],[-9.236,39.691],[-9.136,39.791],[-9.036,39.891],[-8.936,39.991],[-8.936,40.091],[-8.936,40.191],[-8.936,40.291],[-8.936,40.391],[-8.936,40.491],[-8.936,40.591],[-8.936,40.691],[-8.936,40.791],[-8.936,40.891],[-8.936,40.991],[-8.936,41.091],[-8.936,41.191],[-8.936,41.291],[-8.936,41.391],[-8.936,41.491],[-8.936,41.591],[-8.936,41.691],[-8.936,41.791],[-8.936,41.891],[-8.936,41.991],[-8.936,42.091],[-8.936,42.191],[-8.936,42.291],[-8.936,42.391],[-9.036,42.491],[-9.136,42.591],[-9.136,42.691],[-9.136,42.791],[-9.236,42.891],[-9.336,42.991],[-9.336,43.091],[-9.236,43.191],[-9.136,43.291],[-9.036,43.391],[-8.936,43.391],[-8.836,43.391],[-8.736,43.391],[-8.636,43.391],[-8.536,43.391],[-8.436,43.391]],[[-6.336,36.491],[-6.436,36.591],[-6.536,36.691],[-6.636,36.791],[-6.736,36.891],[-6.836,36.991],[-6.936,36.991],[-7.036,36.991],[-7.136,36.991],[-7.236,36.991],[-7.336,36.991],[-7.436,36.991],[-7.536,36.991],[-7.636,36.991],[-7.736,36.991],[-7.836,36.991],[-7.936,36.991],[-8.036,36.991],[-8.136,36.991],[-8.236,36.991],[-8.336,36.991],[-8.436,36.991],[-8.536,36.991],[-8.636,36.991],[-8.736,36.991],[-8.836,36.991],[-8.936,36.991],[-9.036,37.091],[-9.036,37.191],[-9.036,37.291],[-9.036,37.391],[-9.036,37.491],[-9.036,37.591],[-9.036,37.691],[-9.036,37.791],[-9.036,37.891],[-9.036,37.991],[-9.036,38.091],[-9.036,38.191],[-9.036,38.291],[-9.136,38.391],[-9.236,38.491],[-9.236,38.591],[-9.136,38.691]],[[-8.436,43.391],[-8.336,43.491],[-8.236,43.591],[-8.136,43.691],[-8.036,43.791],[-7.936,43.791],[-7.836,43.791],[-7.736,43.791],[-7.636,43.791],[-7.536,43.791],[-7.436,43.791],[-7.336,43.791],[-7.236,43.791],[-7.136,43.791],[-7.036,43.791],[-6.936,43.791],[-6.836,43.791],[-6.736,43.791],[-6.636,43.791],[-6.536,43.791],[-6.436,43.791],[-6.336,43.791],[-6.236,43.791],[-6.136,43.791],[-6.036,43.791],[-5.936,43.791],[-5.836,43.791],[-5.736,43.791],[-5.636,43.791],[-5.536,43.791],[-5.436,43.791],[-5.336,43.791],[-5.236,43.791],[-5.136,43.691],[-5.036,43.591],[-4.936,43.491],[-4.836,43.491],[-4.736,43.491],[-4.636,43.491],[-4.536,43.491],[-4.436,43.491],[-4.336,43.491],[-4.236,43.491],[-4.136,43.491],[-4.036,43.491]],[[-8.436,43.391],[-8.397,43.37]],[[-6.336,36.491],[-6.293,36.529]],[[9.064,39.191],[9.064,39.091],[9.064,38.991],[8.964,38.891],[8.864,38.791],[8.764,38.791],[8.664,38.791],[8.564,38.791],[8.464,38.791],[8.364,38.791],[8.264,38.791],[8.164,38.791],[8.064,38.791],[7.964,38.791],[7.864,38.791],[7.764,38.791],[7.664,38.791],[7.564,38.791],[7.464,38.791],[7.364,38.791],[7.264,38.791],[7.164,38.791],[7.064,38.791],[6.964,38.791],[6.864,38.791],[6.764,38.791],[6.664,38.691],[6.564,38.591],[6.464,38.491],[6.364,38.391],[6.264,38.291],[6.164,38.191],[6.064,38.091],[5.964,37.991],[5.864,37.891],[5.764,37.791],[5.664,37.691],[5.564,37.591],[5.464,37.491],[5.364,37.391],[5.264,37.291],[5.164,37.191],[5.064,37.091],[4.964,36.991],[4.864,36.991],[4.764,36.991],[4.664,36.991],[4.564,36.991],[4.464,36.991],[4.364,36.991],[4.264,36.991],[4.164,36.991],[4.064,36.991],[3.964,36.991],[3.864,36.991],[3.764,36.991],[3.664,36.991],[3.564,36.991],[3.464,36.991],[3.364,36.991],[3.264,36.991],[3.164,36.991],[3.064,36.991],[2.964,36.991],[2.864,36.991],[2.764,36.991],[2.664,36.991],[2.564,36.991],[2.464,36.991],[2.364,36.991],[2.264,36.991],[2.164,36.991],[2.064,36.991],[1.964,36.991],[1.864,36.991],[1.764,36.991],[1.664,36.991],[1.564,36.991],[1.464,36.991],[1.364,36.991],[1.264,36.991],[1.164,36.991],[1.064,36.991],[0.964,36.991],[0.864,36.991],[0.764,36.991],[0.664,36.991],[0.564,36.991],[0.464,36.991],[0.364,36.991],[0.264,36.991],[0.164,36.891],[0.064,36.791],[-0.036,36.691],[-0.136,36.691],[-0.236,36.691],[-0.336,36.691],[-0.436,36.691],[-0.536,36.691],[-0.636,36.691],[-0.736,36.691],[-0.836,36.691],[-0.936,36.691],[-1.036,36.691],[-1.136,36.691],[-1.236,36.691],[-1.336,36.691],[-1.436,36.691],[-1.536,36.691],[-1.636,36.691],[-1.736,36.691],[-1.836,36.691],[-1.936,36.691],[-2.036,36.691],[-2.136,36.691],[-2.236,36.691],[-2.336,36.691],[-2.436,36.691],[-2.536,36.691],[-2.636,36.691],[-2.736,36.691],[-2.836,36.691],[-2.936,36.691],[-3.036,36.691],[-3.136,36.691],[-3.236,36.691],[-3.336,36.691],[-3.436,36.691],[-3.536,36.691],[-3.636,36.691],[-3.736,36.691],[-3.836,36.691],[-3.936,36.691],[-4.036,36.691],[-4.136,36.691],[-4.236,36.691],[-4.336,36.691],[-4.436,36.691],[-4.536,36.591],[-4.636,36.491],[-4.736,36.491],[-4.836,36.491],[-4.936,36.491],[-5.036,36.391],[-5.136,36.391],[-5.236,36.291],[-5.336,36.191],[-5.436,36.091],[-5.536,35.991],[-5.636,35.991],[-5.736,35.991],[-5.836,36.091],[-5.936,36.091],[-6.036,36.091],[-6.136,36.191],[-6.136,36.291],[-6.236,36.391],[-6.336,36.491]],[[-4.036,43.491],[-4.043,43.432]],[[-4.036,43.491],[-4.036,43.591],[-4.036,43.691],[-4.036,43.791],[-4.036,43.891],[-4.036,43.991],[-4.036,44.091],[-4.036,44.191],[-4.036,44.291],[-4.036,44.391],[-4.036,44.491],[-4.036,44.591],[-4.036,44.691],[-4.036,44.791],[-4.036,44.891],[-4.036,44.991],[-4.036,45.091],[-4.036,45.191],[-4.036,45.291],[-4.036,45.391],[-3.936,45.491],[-3.836,45.591],[-3.736,45.691],[-3.636,45.791],[-3.536,45.891],[-3.436,45.991],[-3.336,46.091],[-3.236,46.191],[-3.136,46.291],[-3.036,46.391],[-2.936,46.491],[-2.836,46.591],[-2.736,46.691],[-2.636,46.791],[-2.536,46.891],[-2.436,46.991],[-2.336,47.091],[-2.236,47.191]],[[-1.558,47.214],[-1.936,47.291],[-2.136,47.291],[-2.236,47.191]],[[-2.236,47.191],[-2.336,47.191],[-2.436,47.191],[-2.536,47.291],[-2.636,47.391],[-2.736,47.391],[-2.836,47.391],[-2.936,47.391],[-3.036,47.391],[-3.136,47.391],[-3.236,47.491],[-3.336,47.591],[-3.436,47.691],[-3.536,47.691],[-3.636,47.691],[-3.736,47.791],[-3.836,47.791],[-3.936,47.791],[-4.036,47.791],[-4.136,47.791],[-4.236,47.791],[-4.336,47.791],[-4.436,47.891],[-4.536,47.991],[-4.536,48.091],[-4.636,48.191],[-4.736,48.291],[-4.836,48.391],[-4.836,48.491],[-4.736,48.591],[-4.636,48.691],[-4.536,48.791],[-4.436,48.891],[-4.336,48.991],[-4.236,49.091],[-4.136,49.191],[-4.036,49.291],[-3.936,49.391],[-3.836,49.491],[-3.736,49.591],[-3.636,49.691],[-3.536,49.791],[-3.436,49.791],[-3.336,49.791],[-3.236,49.791],[-3.136,49.791],[-3.036,49.791],[-2.936,49.791],[-2.836,49.791],[-2.736,49.791],[-2.636,49.791],[-2.536,49.791],[-2.436,49.791],[-2.336,49.791],[-2.236,49.791],[-2.136,49.791],[-2.036,49.791],[-1.936,49.791],[-1.836,49.791],[-1.736,49.791],[-1.636,49.791],[-1.536,49.791],[-1.436,49.791],[-1.336,49.791],[-1.236,49.791],[-1.136,49.791],[-1.036,49.791],[-0.936,49.791],[-0.836,49.791],[-0.736,49.791],[-0.636,49.791],[-0.536,49.791],[-0.436,49.791],[-0.336,49.791],[-0.236,49.791],[-0.136,49.791],[-0.036,49.791],[0.064,49.791],[0.164,49.791],[0.264,49.791],[0.364,49.791],[0.464,49.691],[0.564,49.591]],[[1.564,50.691],[1.564,50.791],[1.564,50.891],[1.564,50.991],[1.564,51.091],[1.564,51.191],[1.464,51.291],[1.364,51.391],[1.264,51.491],[1.164,51.491],[1.064,51.491],[0.964,51.491],[0.864,51.491],[0.764,51.491],[0.664,51.491],[0.564,51.491],[0.464,51.491],[-0.083,51.52]],[[0.537,49.525],[0.564,49.591]],[[0.564,49.591],[0.664,49.691],[0.764,49.791],[0.764,49.891],[0.864,49.991],[0.964,50.091],[1.064,50.191],[1.164,50.291],[1.264,50.391],[1.364,50.491],[1.464,50.591],[1.564,50.691]],[[1.614,50.724],[1.564,50.691]],[[9.11,39.215],[9.064,39.191]],[[12.287,41.754],[12.264,41.691],[12.164,41.591],[12.064,41.491],[11.964,41.391],[11.864,41.291],[11.764,41.191],[11.664,41.091],[11.564,40.991],[11.464,40.891],[11.364,40.791],[11.264,40.691],[11.164,40.591],[11.064,40.591],[10.964,40.491],[10.864,40.391],[10.764,40.291],[10.664,40.191],[10.564,40.091],[10.464,39.991],[10.364,39.891],[10.264,39.791],[10.164,39.691],[10.064,39.591],[9.964,39.491],[9.864,39.391],[9.764,39.291],[9.664,39.191],[9.564,39.091],[9.464,39.091],[9.364,39.091],[9.264,39.091],[9.164,39.091],[9.064,39.191]],[[12.474,41.89],[12.474,41.89],[12.475,41.888],[12.469,41.882],[12.468,41.877],[12.472,41.868],[12.47,41.863],[12.461,41.858],[12.46,41.855],[12.46,41.854],[12.462,41.85],[12.444,41.834],[12.435,41.829],[12.426,41.831],[12.421,41.828],[12.418,41.822],[12.416,41.818],[12.411,41.809],[12.405,41.805],[12.394,41.805],[12.386,41.802],[12.375,41.804],[12.37,41.805],[12.364,41.807],[12.36,41.806],[12.352,41.806],[12.343,41.809],[12.339,41.806],[12.337,41.799],[12.332,41.798],[12.323,41.799],[12.317,41.799],[12.309,41.8],[12.302,41.797],[12.295,41.791],[12.284,41.789],[12.278,41.782],[12.273,41.773],[12.274,41.771],[12.274,41.768],[12.275,41.764],[12.28,41.758],[12.271,41.753]]]},"pair": 50235,"direction": 0,"month": 6,"priority": 1,"expense": 3.874,"duration": 38.207,"length": 5280.385},{"type": "Feature", "geometry": {"type":"MultiLineString","coordinates":[[[-9.136,38.691],[-9.145,38.726]],[[-8.436,43.391],[-8.536,43.391],[-8.636,43.391],[-8.736,43.391],[-8.836,43.391],[-8.936,43.391],[-9.036,43.391],[-9.136,43.291],[-9.236,43.191],[-9.336,43.091],[-9.436,42.991],[-9.536,42.891],[-9.536,42.791],[-9.536,42.691],[-9.536,42.591],[-9.536,42.491],[-9.536,42.391],[-9.536,42.291],[-9.536,42.191],[-9.536,42.091],[-9.536,41.991],[-9.536,41.891],[-9.536,41.791],[-9.536,41.691],[-9.536,41.591],[-9.536,41.491],[-9.536,41.391],[-9.536,41.291],[-9.536,41.191],[-9.536,41.091],[-9.536,40.991],[-9.536,40.891],[-9.536,40.791],[-9.536,40.691],[-9.536,40.591],[-9.536,40.491],[-9.536,40.391],[-9.536,40.291],[-9.536,40.191],[-9.536,40.091],[-9.536,39.991],[-9.536,39.891],[-9.536,39.791],[-9.536,39.691],[-9.536,39.591],[-9.536,39.491],[-9.536,39.391],[-9.536,39.291],[-9.536,39.191],[-9.536,39.091],[-9.536,38.991],[-9.536,38.891],[-9.536,38.791],[-9.436,38.691],[-9.336,38.591],[-9.236,38.691],[-9.136,38.691]],[[-9.136,38.691],[-9.236,38.591],[-9.236,38.491],[-9.136,38.391],[-9.036,38.291],[-9.036,38.191],[-9.036,38.091],[-9.036,37.991],[-9.036,37.891],[-9.036,37.791],[-9.036,37.691],[-9.036,37.591],[-9.036,37.491],[-9.036,37.391],[-9.036,37.291],[-9.036,37.191],[-9.036,37.091],[-8.936,36.991],[-8.836,36.991],[-8.736,36.991],[-8.636,36.991],[-8.536,36.991],[-8.436,36.991],[-8.336,36.991],[-8.236,36.991],[-8.136,36.991],[-8.036,36.991],[-7.936,36.991],[-7.836,36.991],[-7.736,36.991],[-7.636,36.991],[-7.536,36.991],[-7.436,36.991],[-7.336,36.991],[-7.236,36.991],[-7.136,36.991],[-7.036,36.991],[-6.936,36.991],[-6.836,36.991],[-6.736,36.891],[-6.636,36.791],[-6.536,36.691],[-6.436,36.591],[-6.336,36.491]],[[-4.036,43.491],[-4.136,43.491],[-4.236,43.491],[-4.336,43.491],[-4.436,43.491],[-4.536,43.491],[-4.636,43.491],[-4.736,43.491],[-4.836,43.491],[-4.936,43.491],[-5.036,43.491],[-5.136,43.591],[-5.236,43.691],[-5.336,43.791],[-5.436,43.791],[-5.536,43.791],[-5.636,43.791],[-5.736,43.791],[-5.836,43.791],[-5.936,43.791],[-6.036,43.791],[-6.136,43.791],[-6.236,43.791],[-6.336,43.791],[-6.436,43.791],[-6.536,43.791],[-6.636,43.791],[-6.736,43.791],[-6.836,43.791],[-6.936,43.791],[-7.036,43.791],[-7.136,43.791],[-7.236,43.791],[-7.336,43.791],[-7.436,43.791],[-7.536,43.791],[-7.636,43.791],[-7.736,43.791],[-7.836,43.791],[-7.936,43.791],[-8.036,43.791],[-8.136,43.691],[-8.236,43.591],[-8.336,43.491],[-8.436,43.391]],[[-8.436,43.391],[-8.397,43.37]],[[-6.336,36.491],[-6.293,36.529]],[[-6.336,36.491],[-6.236,36.391],[-6.136,36.291],[-6.136,36.191],[-6.036,36.091],[-5.936,36.091],[-5.836,36.091],[-5.736,35.991],[-5.636,35.991],[-5.536,35.991],[-5.436,36.091],[-5.336,36.191],[-5.236,36.291],[-5.136,36.391],[-5.036,36.391],[-4.936,36.491],[-4.836,36.491],[-4.736,36.491],[-4.636,36.491],[-4.536,36.591],[-4.436,36.691],[-4.336,36.691],[-4.236,36.691],[-4.136,36.691],[-4.036,36.691],[-3.936,36.691],[-3.836,36.691],[-3.736,36.691],[-3.636,36.691],[-3.536,36.691],[-3.436,36.691],[-3.336,36.691],[-3.236,36.691],[-3.136,36.691],[-3.036,36.691],[-2.936,36.691],[-2.836,36.691],[-2.736,36.691],[-2.636,36.691],[-2.536,36.691],[-2.436,36.691],[-2.336,36.691],[-2.236,36.691],[-2.136,36.691],[-2.036,36.791],[-1.936,36.891],[-1.836,36.991],[-1.736,37.091],[-1.636,37.191],[-1.536,37.291],[-1.436,37.391],[-1.336,37.491],[-1.236,37.491],[-1.136,37.491],[-1.036,37.491],[-0.936,37.491],[-0.836,37.491],[-0.736,37.591],[-0.636,37.691],[-0.536,37.791],[-0.436,37.891],[-0.336,37.991],[-0.236,38.091],[-0.136,38.191],[-0.036,38.291],[0.064,38.391],[0.164,38.491],[0.264,38.591],[0.364,38.691],[0.464,38.791],[0.564,38.891],[0.664,38.991],[0.764,39.091],[0.864,39.191],[0.964,39.291],[1.064,39.391],[1.164,39.491],[1.264,39.591],[1.364,39.691],[1.464,39.791],[1.564,39.891],[1.664,39.991],[1.764,40.091],[1.864,40.091],[1.964,40.091],[2.064,40.091],[2.164,40.091],[2.264,40.091],[2.364,40.091],[2.464,40.091],[2.564,40.091],[2.664,40.091],[2.764,40.091],[2.864,40.091],[2.964,40.091],[3.064,40.091],[3.164,40.091],[3.264,40.091],[3.364,40.091],[3.464,40.091],[3.564,40.091],[3.664,40.091],[3.764,40.091],[3.864,40.091],[3.964,40.091],[4.064,40.091],[4.164,40.091],[4.264,40.091],[4.364,40.091],[4.464,40.091],[4.564,40.091],[4.664,40.091],[4.764,40.091],[4.864,40.091],[4.964,40.091],[5.064,40.091],[5.164,40.091],[5.264,40.091],[5.364,40.091],[5.464,40.091],[5.564,40.091],[5.664,40.091],[5.764,40.091],[5.864,40.091],[5.964,40.091],[6.064,40.091],[6.164,40.091],[6.264,40.091],[6.364,40.091],[6.464,40.091],[6.564,40.091],[6.664,40.091],[6.764,40.091],[6.864,40.091],[6.964,40.091],[7.064,40.091],[7.164,40.091],[7.264,40.091],[7.364,40.091],[7.464,40.091],[7.564,39.991],[7.664,39.891],[7.764,39.791],[7.864,39.691],[7.964,39.591],[8.064,39.491],[8.164,39.391],[8.264,39.291],[8.364,39.191],[8.464,39.091],[8.564,38.991],[8.664,38.891],[8.764,38.891],[8.864,38.791],[8.964,38.891],[9.064,38.991],[9.064,39.091],[9.064,39.191]],[[-4.043,43.432],[-4.036,43.491]],[[-2.236,47.191],[-2.336,47.091],[-2.436,46.991],[-2.536,46.891],[-2.536,46.791],[-2.536,46.691],[-2.536,46.591],[-2.536,46.491],[-2.536,46.391],[-2.536,46.291],[-2.536,46.191],[-2.536,46.091],[-2.536,45.991],[-2.536,45.891],[-2.536,45.791],[-2.536,45.691],[-2.536,45.591],[-2.536,45.491],[-2.536,45.391],[-2.536,45.291],[-2.536,45.191],[-2.536,45.091],[-2.536,44.991],[-2.636,44.891],[-2.736,44.791],[-2.836,44.691],[-2.936,44.591],[-3.036,44.491],[-3.136,44.391],[-3.236,44.291],[-3.336,44.191],[-3.436,44.091],[-3.536,43.991],[-3.636,43.891],[-3.736,43.791],[-3.836,43.691],[-3.936,43.591],[-4.036,43.491]],[[-1.336,50.591],[-1.436,50.591],[-1.536,50.591],[-1.636,50.591],[-1.736,50.591],[-1.836,50.591],[-1.936,50.591],[-2.036,50.591],[-2.136,50.591],[-2.236,50.591],[-2.336,50.591],[-2.436,50.591]],[[-2.436,50.591],[-2.435,50.71]],[[-2.436,50.591],[-2.536,50.591],[-2.636,50.591],[-2.736,50.591],[-2.836,50.491],[-2.936,50.391],[-3.036,50.291],[-3.136,50.191],[-3.236,50.091],[-3.336,49.991],[-3.436,49.891],[-3.536,49.791],[-3.636,49.691],[-3.736,49.591],[-3.836,49.491],[-3.936,49.391],[-4.036,49.291],[-4.136,49.191],[-4.236,49.091],[-4.336,48.991],[-4.436,48.891],[-4.536,48.791],[-4.636,48.691],[-4.736,48.591],[-4.836,48.491],[-4.836,48.391],[-4.736,48.291],[-4.636,48.191],[-4.536,48.091],[-4.536,47.991],[-4.436,47.891],[-4.336,47.791],[-4.236,47.791],[-4.136,47.791],[-4.036,47.791],[-3.936,47.791],[-3.836,47.791],[-3.736,47.791],[-3.636,47.691],[-3.536,47.691],[-3.436,47.691],[-3.336,47.591],[-3.236,47.491],[-3.136,47.391],[-3.036,47.391],[-2.936,47.391],[-2.836,47.391],[-2.736,47.391],[-2.636,47.391],[-2.536,47.291],[-2.436,47.191],[-2.336,47.191],[-2.236,47.191]],[[-2.236,47.191],[-2.136,47.291],[-1.936,47.291],[-1.558,47.214]],[[-1.323,51.068],[-1.336,50.791],[-1.336,50.591]],[[1.464,51.291],[1.464,51.191],[1.364,51.091],[1.264,51.091],[1.164,50.991],[1.064,50.991],[0.964,50.891],[0.864,50.891],[0.764,50.891],[0.664,50.791],[0.564,50.791],[0.464,50.791],[0.364,50.791],[0.264,50.691],[0.164,50.691],[0.064,50.691],[-0.036,50.691],[-0.136,50.691],[-0.236,50.691],[-0.336,50.691],[-0.436,50.691],[-0.536,50.691],[-0.636,50.691],[-0.736,50.691],[-0.836,50.691],[-0.936,50.691],[-1.036,50.691],[-1.136,50.591],[-1.236,50.491],[-1.336,50.591]],[[-0.083,51.52],[0.464,51.491],[0.564,51.491],[0.664,51.491],[0.764,51.491],[0.864,51.491],[0.964,51.491],[1.064,51.491],[1.164,51.491],[1.264,51.491],[1.364,51.391],[1.464,51.291]],[[1.318,51.302],[1.464,51.291]],[[9.11,39.215],[9.064,39.191]],[[9.064,39.191],[9.164,39.091],[9.264,39.091],[9.364,39.091],[9.464,39.091],[9.564,39.091],[9.664,39.191],[9.764,39.291],[9.864,39.391],[9.964,39.491],[10.064,39.591],[10.164,39.691],[10.264,39.791],[10.364,39.891],[10.464,39.991],[10.564,40.091],[10.664,40.191],[10.764,40.291],[10.864,40.391],[10.964,40.491],[11.064,40.591],[11.164,40.591],[11.264,40.691],[11.364,40.791],[11.464,40.891],[11.564,40.991],[11.664,41.091],[11.764,41.191],[11.864,41.291],[11.964,41.391],[12.064,41.491],[12.164,41.591],[12.264,41.691],[12.287,41.754]],[[12.474,41.89],[12.474,41.89],[12.475,41.888],[12.469,41.882],[12.468,41.877],[12.472,41.868],[12.47,41.863],[12.461,41.858],[12.46,41.855],[12.46,41.854],[12.462,41.85],[12.444,41.834],[12.435,41.829],[12.426,41.831],[12.421,41.828],[12.418,41.822],[12.416,41.818],[12.411,41.809],[12.405,41.805],[12.394,41.805],[12.386,41.802],[12.375,41.804],[12.37,41.805],[12.364,41.807],[12.36,41.806],[12.352,41.806],[12.343,41.809],[12.339,41.806],[12.337,41.799],[12.332,41.798],[12.323,41.799],[12.317,41.799],[12.309,41.8],[12.302,41.797],[12.295,41.791],[12.284,41.789],[12.278,41.782],[12.273,41.773],[12.274,41.771],[12.274,41.768],[12.275,41.764],[12.28,41.758],[12.271,41.753]]]},"pair": 50235,"direction": 1,"month": 6,"priority": 1,"expense": 3.872,"duration": 39.643,"length": 5446.520},{"type": "Feature", "geometry": {"type":"MultiLineString","coordinates":[[[-9.145,38.726],[-9.136,38.691]],[[-9.136,38.691],[-9.236,38.691],[-9.336,38.591],[-9.436,38.691],[-9.536,38.791],[-9.636,38.891],[-9.736,38.991],[-9.836,39.091],[-9.936,39.191],[-10.036,39.291],[-10.136,39.391],[-10.036,39.491],[-10.136,39.591],[-10.236,39.691],[-10.336,39.791],[-10.436,39.891],[-10.536,39.991],[-10.536,40.091],[-10.436,40.191],[-10.336,40.291],[-10.236,40.391],[-10.136,40.491],[-10.036,40.591],[-9.936,40.691],[-10.036,40.791],[-9.936,40.891],[-10.036,40.991],[-9.936,41.091],[-10.036,41.191],[-9.936,41.291],[-10.036,41.391],[-9.936,41.491],[-10.036,41.591],[-9.936,41.691],[-10.036,41.791],[-9.936,41.891],[-10.036,41.991],[-9.936,42.091],[-10.036,42.191],[-9.936,42.291],[-10.036,42.391],[-9.936,42.491],[-9.836,42.591],[-9.736,42.691],[-9.636,42.791],[-9.536,42.891],[-9.436,42.991],[-9.336,43.091],[-9.236,43.191],[-9.136,43.291],[-9.036,43.391],[-8.936,43.391],[-8.836,43.391],[-8.736,43.391],[-8.636,43.391],[-8.536,43.391],[-8.436,43.391]],[[-6.336,36.491],[-6.436,36.591],[-6.536,36.691],[-6.636,36.791],[-6.736,36.891],[-6.836,36.991],[-6.936,36.991],[-7.036,36.991],[-7.136,36.991],[-7.236,36.991],[-7.336,36.991],[-7.436,36.991],[-7.536,36.991],[-7.636,36.991],[-7.736,36.991],[-7.836,36.991],[-7.936,36.991],[-8.036,36.991],[-8.136,36.991],[-8.236,36.991],[-8.336,36.991],[-8.436,36.991],[-8.536,36.991],[-8.636,36.991],[-8.736,36.991],[-8.836,36.991],[-8.936,36.991],[-9.036,37.091],[-9.036,37.191],[-8.936,37.291],[-8.836,37.391],[-8.936,37.491],[-8.836,37.591],[-8.936,37.691],[-8.836,37.791],[-8.936,37.891],[-9.036,37.991],[-8.936,38.091],[-9.036,38.191],[-9.136,38.291],[-9.236,38.391],[-9.336,38.491],[-9.236,38.591],[-9.136,38.691]],[[-8.436,43.391],[-8.336,43.491],[-8.236,43.591],[-8.136,43.691],[-8.036,43.791],[-7.936,43.791],[-7.836,43.791],[-7.736,43.791],[-7.636,43.791],[-7.536,43.791],[-7.436,43.791],[-7.336,43.791],[-7.236,43.791],[-7.136,43.791],[-7.036,43.791],[-6.936,43.791],[-6.836,43.791],[-6.736,43.791],[-6.636,43.791],[-6.536,43.791],[-6.436,43.791],[-6.336,43.791],[-6.236,43.791],[-6.136,43.791],[-6.036,43.791],[-5.936,43.791],[-5.836,43.791],[-5.736,43.791],[-5.636,43.791],[-5.536,43.791],[-5.436,43.791],[-5.336,43.791],[-5.236,43.791],[-5.136,43.691],[-5.036,43.591],[-4.936,43.491],[-4.836,43.491],[-4.736,43.491],[-4.636,43.491],[-4.536,43.491],[-4.436,43.491],[-4.336,43.491],[-4.236,43.491],[-4.136,43.491],[-4.036,43.491]],[[-8.436,43.391],[-8.397,43.37]],[[-6.336,36.491],[-6.293,36.529]],[[9.064,39.191],[9.064,39.091],[9.064,38.991],[8.964,38.891],[8.864,38.791],[8.764,38.791],[8.664,38.791],[8.564,38.791],[8.464,38.791],[8.364,38.791],[8.264,38.791],[8.164,38.791],[8.064,38.791],[7.964,38.791],[7.864,38.791],[7.764,38.791],[7.664,38.791],[7.564,38.791],[7.464,38.791],[7.364,38.791],[7.264,38.791],[7.164,38.791],[7.064,38.791],[6.964,38.791],[6.864,38.791],[6.764,38.791],[6.664,38.691],[6.564,38.591],[6.464,38.491],[6.364,38.391],[6.264,38.291],[6.164,38.191],[6.064,38.091],[5.964,37.991],[5.864,37.891],[5.764,37.791],[5.664,37.691],[5.564,37.591],[5.464,37.491],[5.364,37.391],[5.264,37.291],[5.164,37.191],[5.064,37.091],[4.964,36.991],[4.864,36.991],[4.764,36.991],[4.664,36.991],[4.564,36.991],[4.464,36.991],[4.364,36.991],[4.264,36.991],[4.164,36.991],[4.064,36.991],[3.964,36.991],[3.864,36.991],[3.764,36.991],[3.664,36.991],[3.564,36.991],[3.464,36.991],[3.364,36.991],[3.264,36.991],[3.164,36.991],[3.064,36.991],[2.964,36.991],[2.864,36.991],[2.764,36.991],[2.664,36.991],[2.564,36.991],[2.464,36.991],[2.364,36.991],[2.264,36.991],[2.164,36.991],[2.064,36.991],[1.964,36.991],[1.864,36.991],[1.764,36.991],[1.664,36.991],[1.564,36.991],[1.464,36.991],[1.364,36.991],[1.264,36.991],[1.164,36.991],[1.064,36.991],[0.964,36.991],[0.864,36.991],[0.764,36.991],[0.664,36.991],[0.564,36.991],[0.464,36.891],[0.364,36.791],[0.264,36.691],[0.164,36.591],[0.064,36.491],[-0.036,36.391],[-0.136,36.391],[-0.236,36.391],[-0.336,36.391],[-0.436,36.391],[-0.536,36.391],[-0.636,36.391],[-0.736,36.391],[-0.836,36.391],[-0.936,36.391],[-1.036,36.391],[-1.136,36.391],[-1.236,36.391],[-1.336,36.391],[-1.436,36.391],[-1.536,36.391],[-1.636,36.391],[-1.736,36.391],[-1.836,36.391],[-1.936,36.391],[-2.036,36.391],[-2.136,36.391],[-2.236,36.391],[-2.336,36.391],[-2.436,36.391],[-2.536,36.391],[-2.636,36.391],[-2.736,36.391],[-2.836,36.391],[-2.936,36.391],[-3.036,36.391],[-3.136,36.391],[-3.236,36.391],[-3.336,36.391],[-3.436,36.391],[-3.536,36.391],[-3.636,36.391],[-3.736,36.391],[-3.836,36.391],[-3.936,36.391],[-4.036,36.391],[-4.136,36.391],[-4.236,36.391],[-4.336,36.391],[-4.436,36.391],[-4.536,36.391],[-4.636,36.391],[-4.736,36.391],[-4.836,36.391],[-4.936,36.391],[-5.036,36.391],[-5.136,36.391],[-5.236,36.291],[-5.336,36.191],[-5.436,36.091],[-5.536,35.991],[-5.636,35.991],[-5.736,35.991],[-5.836,36.091],[-5.936,36.091],[-6.036,36.091],[-6.136,36.191],[-6.136,36.291],[-6.236,36.391],[-6.336,36.491]],[[-4.036,43.491],[-4.043,43.432]],[[-4.036,43.491],[-4.036,43.591],[-4.036,43.691],[-4.036,43.791],[-4.036,43.891],[-4.036,43.991],[-4.036,44.091],[-4.036,44.191],[-4.036,44.291],[-4.036,44.391],[-4.036,44.491],[-4.036,44.591],[-4.036,44.691],[-4.036,44.791],[-4.036,44.891],[-4.036,44.991],[-4.036,45.091],[-4.036,45.191],[-4.036,45.291],[-4.036,45.391],[-3.936,45.491],[-3.836,45.591],[-3.736,45.691],[-3.636,45.791],[-3.536,45.891],[-3.436,45.991],[-3.336,46.091],[-3.236,46.191],[-3.136,46.291],[-3.036,46.391],[-2.936,46.491],[-2.836,46.591],[-2.736,46.691],[-2.636,46.791],[-2.536,46.891],[-2.436,46.991],[-2.336,47.091],[-2.236,47.191]],[[-1.558,47.214],[-1.936,47.291],[-2.136,47.291],[-2.236,47.191]],[[-2.236,47.191],[-2.336,47.191],[-2.436,47.191],[-2.536,47.291],[-2.636,47.391],[-2.736,47.391],[-2.836,47.391],[-2.936,47.391],[-3.036,47.391],[-3.136,47.391],[-3.236,47.491],[-3.336,47.591],[-3.436,47.691],[-3.536,47.691],[-3.636,47.691],[-3.736,47.791],[-3.836,47.791],[-3.936,47.791],[-4.036,47.791],[-4.136,47.791],[-4.236,47.791],[-4.336,47.791],[-4.436,47.891],[-4.536,47.991],[-4.536,48.091],[-4.636,48.191],[-4.736,48.291],[-4.836,48.391],[-4.836,48.491],[-4.736,48.591],[-4.636,48.691],[-4.536,48.791],[-4.436,48.891],[-4.336,48.991],[-4.236,49.091],[-4.136,49.191],[-4.036,49.291],[-3.936,49.391],[-3.836,49.491],[-3.736,49.591],[-3.636,49.691],[-3.536,49.791],[-3.436,49.791],[-3.336,49.791],[-3.236,49.791],[-3.136,49.791],[-3.036,49.791],[-2.936,49.791],[-2.836,49.791],[-2.736,49.791],[-2.636,49.791],[-2.536,49.791],[-2.436,49.791],[-2.336,49.791],[-2.236,49.791],[-2.136,49.791],[-2.036,49.791],[-1.936,49.791],[-1.836,49.791],[-1.736,49.791],[-1.636,49.791],[-1.536,49.791],[-1.436,49.791],[-1.336,49.791],[-1.236,49.791],[-1.136,49.791],[-1.036,49.791],[-0.936,49.791],[-0.836,49.791],[-0.736,49.791],[-0.636,49.791],[-0.536,49.791],[-0.436,49.791],[-0.336,49.791],[-0.236,49.791],[-0.136,49.791],[-0.036,49.791],[0.064,49.791],[0.164,49.791],[0.264,49.791],[0.364,49.791],[0.464,49.691],[0.564,49.591]],[[1.564,50.691],[1.564,50.791],[1.564,50.891],[1.564,50.991],[1.564,51.091],[1.564,51.191],[1.464,51.291],[1.364,51.391],[1.264,51.491],[1.164,51.491],[1.064,51.491],[0.964,51.491],[0.864,51.491],[0.764,51.491],[0.664,51.491],[0.564,51.491],[0.464,51.491],[-0.083,51.52]],[[0.537,49.525],[0.564,49.591]],[[0.564,49.591],[0.664,49.691],[0.764,49.791],[0.764,49.891],[0.864,49.991],[0.964,50.091],[1.064,50.191],[1.164,50.291],[1.264,50.391],[1.364,50.491],[1.464,50.591],[1.564,50.691]],[[1.614,50.724],[1.564,50.691]],[[9.11,39.215],[9.064,39.191]],[[12.287,41.754],[12.264,41.691],[12.164,41.591],[12.064,41.491],[11.964,41.391],[11.864,41.291],[11.764,41.191],[11.664,41.091],[11.564,40.991],[11.464,40.891],[11.364,40.791],[11.264,40.691],[11.164,40.591],[11.064,40.491],[10.964,40.391],[10.864,40.291],[10.764,40.191],[10.664,40.091],[10.564,39.991],[10.464,39.891],[10.364,39.791],[10.264,39.691],[10.164,39.591],[10.064,39.491],[9.964,39.391],[9.864,39.391],[9.764,39.291],[9.664,39.191],[9.564,39.091],[9.464,39.091],[9.364,39.091],[9.264,39.091],[9.164,39.091],[9.064,39.191]],[[12.474,41.89],[12.474,41.89],[12.475,41.888],[12.469,41.882],[12.468,41.877],[12.472,41.868],[12.47,41.863],[12.461,41.858],[12.46,41.855],[12.46,41.854],[12.462,41.85],[12.444,41.834],[12.435,41.829],[12.426,41.831],[12.421,41.828],[12.418,41.822],[12.416,41.818],[12.411,41.809],[12.405,41.805],[12.394,41.805],[12.386,41.802],[12.375,41.804],[12.37,41.805],[12.364,41.807],[12.36,41.806],[12.352,41.806],[12.343,41.809],[12.339,41.806],[12.337,41.799],[12.332,41.798],[12.323,41.799],[12.317,41.799],[12.309,41.8],[12.302,41.797],[12.295,41.791],[12.284,41.789],[12.278,41.782],[12.273,41.773],[12.274,41.771],[12.274,41.768],[12.275,41.764],[12.28,41.758],[12.271,41.753]]]},"pair": 50235,"direction": 0,"month": 7,"priority": 1,"expense": 3.977,"duration": 39.230,"length": 5409.619},{"type": "Feature", "geometry": {"type":"MultiLineString","coordinates":[[[-9.136,38.691],[-9.145,38.726]],[[-8.436,43.391],[-8.536,43.391],[-8.636,43.391],[-8.736,43.391],[-8.836,43.391],[-8.936,43.391],[-9.036,43.391],[-9.136,43.291],[-9.236,43.191],[-9.336,43.091],[-9.336,42.991],[-9.336,42.891],[-9.336,42.791],[-9.336,42.691],[-9.336,42.591],[-9.336,42.491],[-9.336,42.391],[-9.336,42.291],[-9.336,42.191],[-9.336,42.091],[-9.336,41.991],[-9.336,41.891],[-9.336,41.791],[-9.336,41.691],[-9.336,41.591],[-9.336,41.491],[-9.336,41.391],[-9.336,41.291],[-9.336,41.191],[-9.336,41.091],[-9.336,40.991],[-9.336,40.891],[-9.336,40.791],[-9.336,40.691],[-9.336,40.591],[-9.336,40.491],[-9.336,40.391],[-9.336,40.291],[-9.336,40.191],[-9.336,40.091],[-9.336,39.991],[-9.336,39.891],[-9.436,39.791],[-9.536,39.691],[-9.536,39.591],[-9.536,39.491],[-9.536,39.391],[-9.536,39.291],[-9.536,39.191],[-9.536,39.091],[-9.536,38.991],[-9.536,38.891],[-9.536,38.791],[-9.436,38.691],[-9.336,38.591],[-9.236,38.691],[-9.136,38.691]],[[-9.136,38.691],[-9.236,38.591],[-9.236,38.491],[-9.136,38.391],[-9.036,38.291],[-9.036,38.191],[-9.036,38.091],[-9.036,37.991],[-9.036,37.891],[-9.036,37.791],[-9.036,37.691],[-9.036,37.591],[-9.036,37.491],[-9.036,37.391],[-9.036,37.291],[-9.036,37.191],[-9.036,37.091],[-8.936,36.991],[-8.836,36.991],[-8.736,36.991],[-8.636,36.991],[-8.536,36.991],[-8.436,36.991],[-8.336,36.991],[-8.236,36.991],[-8.136,36.991],[-8.036,36.991],[-7.936,36.991],[-7.836,36.991],[-7.736,36.991],[-7.636,36.991],[-7.536,36.991],[-7.436,36.991],[-7.336,36.991],[-7.236,36.991],[-7.136,36.991],[-7.036,36.991],[-6.936,36.991],[-6.836,36.991],[-6.736,36.891],[-6.636,36.791],[-6.536,36.691],[-6.436,36.591],[-6.336,36.491]],[[-4.036,43.491],[-4.136,43.591],[-4.236,43.691],[-4.336,43.791],[-4.436,43.791],[-4.536,43.791],[-4.636,43.791],[-4.736,43.791],[-4.836,43.791],[-4.936,43.791],[-5.036,43.791],[-5.136,43.791],[-5.236,43.791],[-5.336,43.791],[-5.436,43.791],[-5.536,43.791],[-5.636,43.791],[-5.736,43.791],[-5.836,43.791],[-5.936,43.791],[-6.036,43.791],[-6.136,43.791],[-6.236,43.791],[-6.336,43.791],[-6.436,43.791],[-6.536,43.791],[-6.636,43.791],[-6.736,43.791],[-6.836,43.791],[-6.936,43.791],[-7.036,43.791],[-7.136,43.791],[-7.236,43.791],[-7.336,43.791],[-7.436,43.791],[-7.536,43.791],[-7.636,43.791],[-7.736,43.791],[-7.836,43.791],[-7.936,43.791],[-8.036,43.791],[-8.136,43.691],[-8.236,43.591],[-8.336,43.491],[-8.436,43.391]],[[-8.436,43.391],[-8.397,43.37]],[[-6.293,36.529],[-6.336,36.491]],[[-6.336,36.491],[-6.236,36.391],[-6.136,36.291],[-6.136,36.191],[-6.036,36.091],[-5.936,36.091],[-5.836,36.091],[-5.736,35.991],[-5.636,35.991],[-5.536,35.991],[-5.436,36.091],[-5.336,36.191],[-5.236,36.191],[-5.136,36.191],[-5.036,36.191],[-4.936,36.191],[-4.836,36.291],[-4.736,36.391],[-4.636,36.491],[-4.536,36.591],[-4.436,36.691]],[[-4.436,36.691],[-4.336,36.691],[-4.236,36.691],[-4.136,36.691],[-4.036,36.691],[-3.936,36.691],[-3.836,36.691],[-3.736,36.691],[-3.636,36.691],[-3.536,36.691],[-3.436,36.691],[-3.336,36.691],[-3.236,36.691],[-3.136,36.691],[-3.036,36.691],[-2.936,36.691],[-2.836,36.691],[-2.736,36.691],[-2.636,36.691],[-2.536,36.691],[-2.436,36.691],[-2.336,36.691],[-2.236,36.691],[-2.136,36.691],[-2.036,36.791],[-1.936,36.891],[-1.836,36.991],[-1.736,37.091],[-1.636,37.191],[-1.536,37.291],[-1.436,37.391],[-1.336,37.491],[-1.236,37.491],[-1.136,37.491],[-1.036,37.491]],[[-4.422,36.715],[-4.436,36.691]],[[-4.043,43.432],[-4.036,43.491]],[[-2.236,47.191],[-2.336,47.091],[-2.436,46.991],[-2.536,46.891],[-2.536,46.791],[-2.536,46.691],[-2.536,46.591],[-2.536,46.491],[-2.536,46.391],[-2.536,46.291],[-2.536,46.191],[-2.536,46.091],[-2.536,45.991],[-2.536,45.891],[-2.536,45.791],[-2.536,45.691],[-2.536,45.591],[-2.536,45.491],[-2.536,45.391],[-2.536,45.291],[-2.536,45.191],[-2.536,45.091],[-2.536,44.991],[-2.636,44.891],[-2.736,44.791],[-2.836,44.691],[-2.936,44.591],[-3.036,44.491],[-3.136,44.391],[-3.236,44.291],[-3.336,44.191],[-3.436,44.091],[-3.536,43.991],[-3.636,43.891],[-3.736,43.791],[-3.836,43.691],[-3.936,43.591],[-4.036,43.491]],[[-2.236,47.191],[-2.136,47.291],[-1.936,47.291],[-1.558,47.214]],[[0.564,49.591],[0.464,49.691],[0.364,49.791],[0.264,49.791],[0.164,49.791],[0.064,49.791],[-0.036,49.791],[-0.136,49.791],[-0.236,49.791],[-0.336,49.791],[-0.436,49.791],[-0.536,49.791],[-0.636,49.791],[-0.736,49.791],[-0.836,49.791],[-0.936,49.791],[-1.036,49.791],[-1.136,49.791],[-1.236,49.791],[-1.336,49.791],[-1.436,49.791],[-1.536,49.791],[-1.636,49.791],[-1.736,49.791],[-1.836,49.791],[-1.936,49.791],[-2.036,49.791],[-2.136,49.791],[-2.236,49.791],[-2.336,49.791],[-2.436,49.791],[-2.536,49.791],[-2.636,49.791],[-2.736,49.791],[-2.836,49.791],[-2.936,49.791],[-3.036,49.791],[-3.136,49.791],[-3.236,49.791],[-3.336,49.791],[-3.436,49.791],[-3.536,49.791],[-3.636,49.691],[-3.736,49.591],[-3.836,49.491],[-3.936,49.391],[-4.036,49.291],[-4.136,49.191],[-4.236,49.091],[-4.336,48.991],[-4.436,48.891],[-4.536,48.791],[-4.636,48.691],[-4.736,48.591],[-4.836,48.491],[-4.836,48.391],[-4.736,48.291],[-4.636,48.191],[-4.536,48.091],[-4.536,47.991],[-4.436,47.891],[-4.336,47.791],[-4.236,47.791],[-4.136,47.791],[-4.036,47.791],[-3.936,47.791],[-3.836,47.791],[-3.736,47.791],[-3.636,47.691],[-3.536,47.691],[-3.436,47.691],[-3.336,47.591],[-3.236,47.491],[-3.136,47.391],[-3.036,47.391],[-2.936,47.391],[-2.836,47.391],[-2.736,47.391],[-2.636,47.391],[-2.536,47.291],[-2.436,47.191],[-2.336,47.191],[-2.236,47.191]],[[-1.036,37.491],[-0.936,37.491],[-0.836,37.491],[-0.736,37.591],[-0.636,37.691],[-0.536,37.791],[-0.436,37.891],[-0.336,37.991],[-0.236,38.091],[-0.136,38.191],[-0.036,38.291],[0.064,38.391],[0.064,38.491],[0.064,38.591],[0.164,38.691],[0.264,38.791],[0.164,38.891],[0.064,38.891]],[[-1.036,37.491],[-0.992,37.605]],[[-0.236,39.591],[-0.269,39.666]],[[-0.236,39.591],[-0.136,39.691],[-0.036,39.791],[0.064,39.891],[0.164,39.991],[0.264,40.091],[0.364,40.191],[0.464,40.291],[0.564,40.391],[0.664,40.491],[0.764,40.591],[0.864,40.691],[0.964,40.791],[1.064,40.891],[1.164,40.991],[1.264,41.091]],[[0.064,38.891],[0.064,38.991],[0.064,39.091],[0.064,39.191],[0.064,39.291],[-0.036,39.391],[-0.136,39.491],[-0.236,39.591]],[[-0.083,51.52],[0.464,51.491],[0.564,51.491],[0.664,51.491],[0.764,51.491],[0.864,51.491],[0.964,51.491],[1.064,51.491],[1.164,51.491],[1.264,51.491],[1.364,51.391],[1.464,51.291],[1.564,51.191],[1.564,51.091],[1.564,50.991],[1.564,50.891],[1.564,50.791],[1.564,50.691]],[[0.099,38.837],[0.064,38.891]],[[0.564,49.591],[0.537,49.525]],[[1.564,50.691],[1.464,50.591],[1.364,50.491],[1.264,50.391],[1.164,50.291],[1.064,50.191],[0.964,50.091],[0.864,49.991],[0.764,49.891],[0.664,49.791],[0.564,49.691],[0.564,49.591]],[[1.264,41.091],[1.25,41.119]],[[1.264,41.091],[1.364,41.091],[1.464,41.091],[1.564,41.091],[1.664,41.091],[1.764,41.091],[1.864,41.091],[1.964,41.091],[2.064,41.091],[2.164,41.091],[2.264,41.091],[2.364,41.091],[2.464,41.091],[2.564,41.091],[2.664,41.091],[2.764,41.091],[2.864,41.091],[2.964,41.091],[3.064,41.091],[3.164,41.091],[3.264,41.091],[3.364,41.091],[3.464,41.091],[3.564,41.091],[3.664,41.091],[3.764,41.091],[3.864,41.091],[3.964,41.091],[4.064,41.091],[4.164,41.091],[4.264,41.091],[4.364,41.091],[4.464,41.091],[4.564,41.091],[4.664,41.091],[4.764,41.091],[4.864,41.091],[4.964,41.091],[5.064,41.091],[5.164,41.191],[5.264,41.291],[5.364,41.391],[5.464,41.391],[5.564,41.391],[5.664,41.391],[5.764,41.391],[5.864,41.391],[5.964,41.391],[6.064,41.391],[6.164,41.391],[6.264,41.391],[6.364,41.391],[6.464,41.391],[6.564,41.391],[6.664,41.391],[6.764,41.391],[6.864,41.391],[6.964,41.391],[7.064,41.391],[7.164,41.391],[7.264,41.391],[7.364,41.391],[7.464,41.391],[7.564,41.391],[7.664,41.391],[7.764,41.391],[7.864,41.391],[7.964,41.391],[8.064,41.391],[8.164,41.391],[8.264,41.391],[8.364,41.391],[8.464,41.391],[8.564,41.391],[8.664,41.391],[8.764,41.391],[8.864,41.391],[8.964,41.391],[9.064,41.391]],[[1.614,50.724],[1.564,50.691]],[[9.064,41.391],[9.164,41.291],[9.264,41.391],[9.364,41.491],[9.464,41.591],[9.564,41.691],[9.664,41.691],[9.764,41.691],[9.864,41.691],[9.964,41.691],[10.064,41.691],[10.164,41.691],[10.264,41.691],[10.364,41.691],[10.464,41.691],[10.564,41.691],[10.664,41.691],[10.764,41.691],[10.864,41.691],[10.964,41.691],[11.064,41.691],[11.164,41.691],[11.264,41.691],[11.364,41.691],[11.464,41.691],[11.564,41.691],[11.664,41.691],[11.764,41.691],[11.864,41.691],[11.964,41.691],[12.064,41.691],[12.164,41.691],[12.264,41.691],[12.287,41.754]],[[9.159,41.387],[9.064,41.391]],[[12.474,41.89],[12.474,41.89],[12.475,41.888],[12.469,41.882],[12.468,41.877],[12.472,41.868],[12.47,41.863],[12.461,41.858],[12.46,41.855],[12.46,41.854],[12.462,41.85],[12.444,41.834],[12.435,41.829],[12.426,41.831],[12.421,41.828],[12.418,41.822],[12.416,41.818],[12.411,41.809],[12.405,41.805],[12.394,41.805],[12.386,41.802],[12.375,41.804],[12.37,41.805],[12.364,41.807],[12.36,41.806],[12.352,41.806],[12.343,41.809],[12.339,41.806],[12.337,41.799],[12.332,41.798],[12.323,41.799],[12.317,41.799],[12.309,41.8],[12.302,41.797],[12.295,41.791],[12.284,41.789],[12.278,41.782],[12.273,41.773],[12.274,41.771],[12.274,41.768],[12.275,41.764],[12.28,41.758],[12.271,41.753]]]},"pair": 50235,"direction": 1,"month": 7,"priority": 1,"expense": 3.999,"duration": 40.916,"length": 5399.007},{"type": "Feature", "geometry": {"type":"MultiLineString","coordinates":[[[-9.145,38.726],[-9.136,38.691]],[[-9.136,38.691],[-9.236,38.691],[-9.336,38.591],[-9.436,38.691],[-9.536,38.791],[-9.636,38.891],[-9.736,38.991],[-9.836,39.091],[-9.936,39.191],[-10.036,39.291],[-10.136,39.391],[-10.236,39.491],[-10.336,39.591],[-10.436,39.691],[-10.536,39.791],[-10.636,39.891],[-10.536,39.991],[-10.436,40.091],[-10.336,40.191],[-10.236,40.291],[-10.136,40.391],[-10.036,40.491],[-9.936,40.591],[-9.936,40.691],[-9.936,40.791],[-9.936,40.891],[-9.936,40.991],[-9.936,41.091],[-9.936,41.191],[-9.936,41.291],[-9.936,41.391],[-9.936,41.491],[-9.936,41.591],[-9.936,41.691],[-9.936,41.791],[-9.936,41.891],[-9.936,41.991],[-9.936,42.091],[-9.936,42.191],[-9.936,42.291],[-9.936,42.391],[-9.936,42.491],[-9.836,42.591],[-9.736,42.691],[-9.636,42.791],[-9.536,42.891],[-9.436,42.991],[-9.336,43.091],[-9.236,43.191],[-9.136,43.291],[-9.036,43.391],[-8.936,43.391],[-8.836,43.391],[-8.736,43.391],[-8.636,43.391],[-8.536,43.391],[-8.436,43.391]],[[-6.336,36.491],[-6.436,36.591],[-6.536,36.691],[-6.636,36.791],[-6.736,36.891],[-6.836,36.991],[-6.936,36.991],[-7.036,36.991],[-7.136,36.991],[-7.236,36.991],[-7.336,36.991],[-7.436,36.991],[-7.536,36.991],[-7.636,36.991],[-7.736,36.991],[-7.836,36.991],[-7.936,36.991],[-8.036,36.991],[-8.136,36.991],[-8.236,36.991],[-8.336,36.991],[-8.436,36.991],[-8.536,36.991],[-8.636,36.991],[-8.736,36.991],[-8.836,36.991],[-8.936,36.991],[-9.036,37.091],[-9.036,37.191],[-8.936,37.291],[-8.836,37.391],[-8.936,37.491],[-8.836,37.591],[-8.936,37.691],[-8.836,37.791],[-8.936,37.891],[-9.036,37.991],[-8.936,38.091],[-9.036,38.191],[-9.136,38.291],[-9.236,38.391],[-9.336,38.491],[-9.236,38.591],[-9.136,38.691]],[[-8.436,43.391],[-8.336,43.491],[-8.236,43.591],[-8.136,43.691],[-8.036,43.791],[-7.936,43.791],[-7.836,43.791],[-7.736,43.791],[-7.636,43.791],[-7.536,43.791],[-7.436,43.791],[-7.336,43.791],[-7.236,43.791],[-7.136,43.791],[-7.036,43.791],[-6.936,43.791],[-6.836,43.791],[-6.736,43.791],[-6.636,43.791],[-6.536,43.791],[-6.436,43.791],[-6.336,43.791],[-6.236,43.791],[-6.136,43.791],[-6.036,43.791],[-5.936,43.791],[-5.836,43.791],[-5.736,43.791],[-5.636,43.791],[-5.536,43.791],[-5.436,43.791],[-5.336,43.791],[-5.236,43.791],[-5.136,43.791],[-5.036,43.791],[-4.936,43.791],[-4.836,43.791],[-4.736,43.791],[-4.636,43.791],[-4.536,43.791],[-4.436,43.791],[-4.336,43.791],[-4.236,43.691],[-4.136,43.591],[-4.036,43.491]],[[-8.436,43.391],[-8.397,43.37]],[[-6.336,36.491],[-6.293,36.529]],[[9.064,39.191],[9.064,39.091],[9.064,38.991],[8.964,38.891],[8.864,38.791],[8.764,38.791],[8.664,38.791],[8.564,38.791],[8.464,38.791],[8.364,38.791],[8.264,38.791],[8.164,38.791],[8.064,38.791],[7.964,38.791],[7.864,38.791],[7.764,38.791],[7.664,38.791],[7.564,38.791],[7.464,38.791],[7.364,38.791],[7.264,38.791],[7.164,38.791],[7.064,38.791],[6.964,38.791],[6.864,38.791],[6.764,38.791],[6.664,38.691],[6.564,38.591],[6.464,38.491],[6.364,38.391],[6.264,38.291],[6.164,38.191],[6.064,38.091],[5.964,37.991],[5.864,37.891],[5.764,37.791],[5.664,37.691],[5.564,37.591],[5.464,37.491],[5.364,37.391],[5.264,37.291],[5.164,37.191],[5.064,37.091],[4.964,36.991],[4.864,36.991],[4.764,36.991],[4.664,36.991],[4.564,36.991],[4.464,36.991],[4.364,36.991],[4.264,36.991],[4.164,36.991],[4.064,36.991],[3.964,36.991],[3.864,36.991],[3.764,36.991],[3.664,36.991],[3.564,36.991],[3.464,36.991],[3.364,36.991],[3.264,36.991],[3.164,36.991],[3.064,36.991],[2.964,36.991],[2.864,36.991],[2.764,36.991],[2.664,36.991],[2.564,36.991],[2.464,36.991],[2.364,36.991],[2.264,36.991],[2.164,36.991],[2.064,36.991],[1.964,36.991],[1.864,36.991],[1.764,36.991],[1.664,36.991],[1.564,36.991],[1.464,36.991],[1.364,36.991],[1.264,36.991],[1.164,36.991],[1.064,36.991],[0.964,36.991],[0.864,36.991],[0.764,36.991],[0.664,36.991],[0.564,36.991],[0.464,36.891],[0.364,36.791],[0.264,36.691],[0.164,36.591],[0.064,36.491],[-0.036,36.391],[-0.136,36.391],[-0.236,36.391],[-0.336,36.391],[-0.436,36.391],[-0.536,36.391],[-0.636,36.391],[-0.736,36.391],[-0.836,36.391],[-0.936,36.391],[-1.036,36.391],[-1.136,36.391],[-1.236,36.391],[-1.336,36.391],[-1.436,36.391],[-1.536,36.391],[-1.636,36.391],[-1.736,36.391],[-1.836,36.391],[-1.936,36.391],[-2.036,36.391],[-2.136,36.391],[-2.236,36.391],[-2.336,36.391],[-2.436,36.391],[-2.536,36.391],[-2.636,36.391],[-2.736,36.391],[-2.836,36.391],[-2.936,36.391],[-3.036,36.391],[-3.136,36.391],[-3.236,36.391],[-3.336,36.391],[-3.436,36.391],[-3.536,36.391],[-3.636,36.391],[-3.736,36.391],[-3.836,36.391],[-3.936,36.391],[-4.036,36.391],[-4.136,36.391],[-4.236,36.391],[-4.336,36.391],[-4.436,36.391],[-4.536,36.391],[-4.636,36.391],[-4.736,36.391],[-4.836,36.391],[-4.936,36.391],[-5.036,36.391],[-5.136,36.391],[-5.236,36.291],[-5.336,36.191],[-5.436,36.091],[-5.536,35.991],[-5.636,35.991],[-5.736,35.991],[-5.836,36.091],[-5.936,36.091],[-6.036,36.091],[-6.136,36.191],[-6.136,36.291],[-6.236,36.391],[-6.336,36.491]],[[-4.036,43.491],[-4.043,43.432]],[[-4.036,43.491],[-4.036,43.591],[-4.036,43.691],[-4.036,43.791],[-4.036,43.891],[-4.036,43.991],[-4.036,44.091],[-4.036,44.191],[-4.036,44.291],[-4.036,44.391],[-4.036,44.491],[-4.036,44.591],[-4.036,44.691],[-4.036,44.791],[-4.036,44.891],[-4.036,44.991],[-4.036,45.091],[-4.036,45.191],[-4.036,45.291],[-4.036,45.391],[-3.936,45.491],[-3.836,45.591],[-3.736,45.691],[-3.636,45.791],[-3.536,45.891],[-3.436,45.991],[-3.336,46.091],[-3.236,46.191],[-3.136,46.291],[-3.036,46.391],[-2.936,46.491],[-2.836,46.591],[-2.736,46.691],[-2.636,46.791],[-2.536,46.891],[-2.436,46.991],[-2.336,47.091],[-2.236,47.191]],[[-2.436,50.591],[-2.336,50.591],[-2.236,50.591],[-2.136,50.591],[-2.036,50.591],[-1.936,50.591],[-1.836,50.591],[-1.736,50.591],[-1.636,50.591],[-1.536,50.591],[-1.436,50.591],[-1.336,50.591]],[[-2.435,50.71],[-2.436,50.591]],[[-2.236,47.191],[-2.336,47.191],[-2.436,47.191],[-2.536,47.291],[-2.636,47.391],[-2.736,47.391],[-2.836,47.391],[-2.936,47.391],[-3.036,47.391],[-3.136,47.391],[-3.236,47.491],[-3.336,47.591],[-3.436,47.691],[-3.536,47.691],[-3.636,47.691],[-3.736,47.791],[-3.836,47.791],[-3.936,47.791],[-4.036,47.791],[-4.136,47.791],[-4.236,47.791],[-4.336,47.791],[-4.436,47.891],[-4.536,47.991],[-4.536,48.091],[-4.636,48.191],[-4.736,48.291],[-4.836,48.391],[-4.836,48.491],[-4.736,48.591],[-4.636,48.691],[-4.536,48.791],[-4.436,48.891],[-4.336,48.991],[-4.236,49.091],[-4.136,49.191],[-4.036,49.291],[-3.936,49.391],[-3.836,49.491],[-3.736,49.591],[-3.636,49.691],[-3.536,49.791],[-3.436,49.891],[-3.336,49.991],[-3.236,50.091],[-3.136,50.191],[-3.036,50.291],[-2.936,50.391],[-2.836,50.491],[-2.736,50.591],[-2.636,50.591],[-2.536,50.591],[-2.436,50.591]],[[-2.236,47.191],[-2.136,47.291],[-1.936,47.291],[-1.558,47.214]],[[-1.323,51.068],[-1.336,50.791],[-1.336,50.591]],[[-1.336,50.591],[-1.236,50.491],[-1.136,50.591],[-1.036,50.691],[-0.936,50.691],[-0.836,50.691],[-0.736,50.691],[-0.636,50.691],[-0.536,50.691],[-0.436,50.691],[-0.336,50.691],[-0.236,50.691],[-0.136,50.691],[-0.036,50.691],[0.064,50.691],[0.164,50.691],[0.264,50.691],[0.364,50.791],[0.464,50.791],[0.564,50.791],[0.664,50.791],[0.764,50.891],[0.864,50.891],[0.964,50.891],[1.064,50.991],[1.164,50.991],[1.264,51.091],[1.364,51.091],[1.464,51.191],[1.464,51.291]],[[1.464,51.291],[1.364,51.391],[1.264,51.491],[1.164,51.491],[1.064,51.491],[0.964,51.491],[0.864,51.491],[0.764,51.491],[0.664,51.491],[0.564,51.491],[0.464,51.491],[-0.083,51.52]],[[1.464,51.291],[1.318,51.302]],[[9.11,39.215],[9.064,39.191]],[[12.287,41.754],[12.264,41.691],[12.164,41.591],[12.064,41.491],[11.964,41.391],[11.864,41.291],[11.764,41.191],[11.664,41.091],[11.564,40.991],[11.464,40.891],[11.364,40.791],[11.264,40.691],[11.164,40.591],[11.064,40.491],[10.964,40.391],[10.864,40.291],[10.764,40.191],[10.664,40.091],[10.564,39.991],[10.464,39.891],[10.364,39.791],[10.264,39.691],[10.164,39.591],[10.064,39.491],[9.964,39.391],[9.864,39.391],[9.764,39.291],[9.664,39.191],[9.564,39.091],[9.464,39.091],[9.364,39.091],[9.264,39.091],[9.164,39.091],[9.064,39.191]],[[12.474,41.89],[12.474,41.89],[12.475,41.888],[12.469,41.882],[12.468,41.877],[12.472,41.868],[12.47,41.863],[12.461,41.858],[12.46,41.855],[12.46,41.854],[12.462,41.85],[12.444,41.834],[12.435,41.829],[12.426,41.831],[12.421,41.828],[12.418,41.822],[12.416,41.818],[12.411,41.809],[12.405,41.805],[12.394,41.805],[12.386,41.802],[12.375,41.804],[12.37,41.805],[12.364,41.807],[12.36,41.806],[12.352,41.806],[12.343,41.809],[12.339,41.806],[12.337,41.799],[12.332,41.798],[12.323,41.799],[12.317,41.799],[12.309,41.8],[12.302,41.797],[12.295,41.791],[12.284,41.789],[12.278,41.782],[12.273,41.773],[12.274,41.771],[12.274,41.768],[12.275,41.764],[12.28,41.758],[12.271,41.753]]]},"pair": 50235,"direction": 0,"month": 8,"priority": 1,"expense": 3.864,"duration": 38.117,"length": 5430.334},{"type": "Feature", "geometry": {"type":"MultiLineString","coordinates":[[[-9.136,38.691],[-9.145,38.726]],[[-8.436,43.391],[-8.536,43.391],[-8.636,43.391],[-8.736,43.391],[-8.836,43.391],[-8.936,43.391],[-9.036,43.391],[-9.136,43.291],[-9.236,43.191],[-9.336,43.091],[-9.336,42.991],[-9.336,42.891],[-9.336,42.791],[-9.336,42.691],[-9.336,42.591],[-9.336,42.491],[-9.336,42.391],[-9.336,42.291],[-9.336,42.191],[-9.336,42.091],[-9.336,41.991],[-9.336,41.891],[-9.336,41.791],[-9.336,41.691],[-9.336,41.591],[-9.336,41.491],[-9.336,41.391],[-9.336,41.291],[-9.336,41.191],[-9.336,41.091],[-9.336,40.991],[-9.336,40.891],[-9.336,40.791],[-9.336,40.691],[-9.336,40.591],[-9.336,40.491],[-9.336,40.391],[-9.336,40.291],[-9.336,40.191],[-9.336,40.091],[-9.336,39.991],[-9.336,39.891],[-9.436,39.791],[-9.536,39.691],[-9.536,39.591],[-9.536,39.491],[-9.536,39.391],[-9.536,39.291],[-9.536,39.191],[-9.536,39.091],[-9.536,38.991],[-9.536,38.891],[-9.536,38.791],[-9.436,38.691],[-9.336,38.591],[-9.236,38.691],[-9.136,38.691]],[[-9.136,38.691],[-9.236,38.591],[-9.236,38.491],[-9.136,38.391],[-9.036,38.291],[-9.036,38.191],[-9.036,38.091],[-9.036,37.991],[-9.036,37.891],[-9.036,37.791],[-9.036,37.691],[-9.036,37.591],[-9.036,37.491],[-9.036,37.391],[-9.036,37.291],[-9.036,37.191],[-9.036,37.091],[-8.936,36.991],[-8.836,36.991],[-8.736,36.991],[-8.636,36.991],[-8.536,36.991],[-8.436,36.991],[-8.336,36.991],[-8.236,36.991],[-8.136,36.991],[-8.036,36.991],[-7.936,36.991],[-7.836,36.991],[-7.736,36.991],[-7.636,36.991],[-7.536,36.991],[-7.436,36.991],[-7.336,36.991],[-7.236,36.991],[-7.136,36.991],[-7.036,36.991],[-6.936,36.991],[-6.836,36.991],[-6.736,36.891],[-6.636,36.791],[-6.536,36.691],[-6.436,36.591],[-6.336,36.491]],[[-4.036,43.491],[-4.136,43.591],[-4.236,43.691],[-4.336,43.791],[-4.436,43.791],[-4.536,43.791],[-4.636,43.791],[-4.736,43.791],[-4.836,43.791],[-4.936,43.791],[-5.036,43.791],[-5.136,43.791],[-5.236,43.791],[-5.336,43.791],[-5.436,43.791],[-5.536,43.791],[-5.636,43.791],[-5.736,43.791],[-5.836,43.791],[-5.936,43.791],[-6.036,43.791],[-6.136,43.791],[-6.236,43.791],[-6.336,43.791],[-6.436,43.791],[-6.536,43.791],[-6.636,43.791],[-6.736,43.791],[-6.836,43.791],[-6.936,43.791],[-7.036,43.791],[-7.136,43.791],[-7.236,43.791],[-7.336,43.791],[-7.436,43.791],[-7.536,43.791],[-7.636,43.791],[-7.736,43.791],[-7.836,43.791],[-7.936,43.791],[-8.036,43.791],[-8.136,43.691],[-8.236,43.591],[-8.336,43.491],[-8.436,43.391]],[[-8.436,43.391],[-8.397,43.37]],[[-6.336,36.491],[-6.293,36.529]],[[-6.336,36.491],[-6.236,36.391],[-6.136,36.291],[-6.136,36.191],[-6.036,36.091],[-5.936,36.091],[-5.836,36.091],[-5.736,35.991],[-5.636,35.991],[-5.536,35.991],[-5.436,35.991],[-5.336,35.991],[-5.236,35.991],[-5.136,35.991],[-5.036,35.991],[-4.936,35.991],[-4.836,36.091],[-4.736,36.191],[-4.636,36.291],[-4.536,36.391],[-4.436,36.491],[-4.336,36.591],[-4.236,36.691],[-4.136,36.691],[-4.036,36.691],[-3.936,36.691],[-3.836,36.691],[-3.736,36.691],[-3.636,36.691],[-3.536,36.691],[-3.436,36.691],[-3.336,36.691],[-3.236,36.691],[-3.136,36.691],[-3.036,36.691],[-2.936,36.691],[-2.836,36.691],[-2.736,36.691],[-2.636,36.691],[-2.536,36.691],[-2.436,36.691],[-2.336,36.691],[-2.236,36.691],[-2.136,36.691],[-2.036,36.791],[-1.936,36.891],[-1.836,36.991],[-1.736,37.091],[-1.636,37.191],[-1.536,37.291],[-1.436,37.391],[-1.336,37.491],[-1.236,37.491],[-1.136,37.491],[-1.036,37.491],[-0.936,37.491],[-0.836,37.491],[-0.736,37.591],[-0.636,37.691],[-0.536,37.791],[-0.436,37.891],[-0.336,37.991],[-0.236,38.091],[-0.136,38.191],[-0.036,38.291],[0.064,38.391],[0.164,38.491],[0.264,38.591],[0.364,38.691],[0.464,38.791],[0.564,38.891],[0.664,38.991],[0.764,39.091],[0.864,39.191],[0.964,39.291],[1.064,39.391],[1.164,39.491],[1.264,39.591],[1.364,39.691],[1.464,39.791],[1.564,39.891],[1.664,39.991],[1.764,40.091],[1.864,40.091],[1.964,40.091],[2.064,40.091],[2.164,40.091],[2.264,40.091],[2.364,40.091],[2.464,40.091],[2.564,40.091],[2.664,40.091],[2.764,40.091],[2.864,40.091],[2.964,40.091],[3.064,40.091],[3.164,40.091],[3.264,40.091],[3.364,40.091],[3.464,40.091],[3.564,40.091],[3.664,40.091],[3.764,40.091],[3.864,40.091],[3.964,40.091],[4.064,40.091],[4.164,40.091],[4.264,40.091],[4.364,40.091],[4.464,40.091],[4.564,40.091],[4.664,40.091],[4.764,40.091],[4.864,40.091],[4.964,40.091],[5.064,40.091],[5.164,40.091],[5.264,40.091],[5.364,40.091],[5.464,40.091],[5.564,40.091],[5.664,40.091],[5.764,40.091],[5.864,40.091],[5.964,40.091],[6.064,40.091],[6.164,40.091],[6.264,40.091],[6.364,40.091],[6.464,40.091],[6.564,40.091],[6.664,40.091],[6.764,40.091],[6.864,40.091],[6.964,40.091],[7.064,40.091],[7.164,40.091],[7.264,40.091],[7.364,40.091],[7.464,40.091],[7.564,39.991],[7.664,39.891],[7.764,39.791],[7.864,39.691],[7.964,39.591],[8.064,39.491],[8.164,39.391],[8.264,39.291],[8.364,39.191],[8.464,39.091],[8.564,38.991],[8.664,38.891],[8.764,38.891],[8.864,38.791],[8.964,38.891],[9.064,38.991],[9.064,39.091],[9.064,39.191]],[[-4.043,43.432],[-4.036,43.491]],[[-2.236,47.191],[-2.336,47.091],[-2.436,46.991],[-2.536,46.891],[-2.536,46.791],[-2.536,46.691],[-2.536,46.591],[-2.536,46.491],[-2.536,46.391],[-2.536,46.291],[-2.536,46.191],[-2.536,46.091],[-2.536,45.991],[-2.536,45.891],[-2.536,45.791],[-2.536,45.691],[-2.536,45.591],[-2.536,45.491],[-2.536,45.391],[-2.536,45.291],[-2.536,45.191],[-2.536,45.091],[-2.536,44.991],[-2.636,44.891],[-2.736,44.791],[-2.836,44.691],[-2.936,44.591],[-3.036,44.491],[-3.136,44.391],[-3.236,44.291],[-3.336,44.191],[-3.436,44.091],[-3.536,43.991],[-3.636,43.891],[-3.736,43.791],[-3.836,43.691],[-3.936,43.591],[-4.036,43.491]],[[-2.236,47.191],[-2.136,47.291],[-1.936,47.291],[-1.558,47.214]],[[0.564,49.591],[0.464,49.691],[0.364,49.791],[0.264,49.791],[0.164,49.791],[0.064,49.791],[-0.036,49.791],[-0.136,49.791],[-0.236,49.791],[-0.336,49.791],[-0.436,49.791],[-0.536,49.791],[-0.636,49.791],[-0.736,49.791],[-0.836,49.791],[-0.936,49.791],[-1.036,49.791],[-1.136,49.791],[-1.236,49.791],[-1.336,49.791],[-1.436,49.791],[-1.536,49.791],[-1.636,49.791],[-1.736,49.791],[-1.836,49.791],[-1.936,49.791],[-2.036,49.791],[-2.136,49.791],[-2.236,49.791],[-2.336,49.791],[-2.436,49.791],[-2.536,49.791],[-2.636,49.791],[-2.736,49.791],[-2.836,49.791],[-2.936,49.791],[-3.036,49.791],[-3.136,49.791],[-3.236,49.791],[-3.336,49.791],[-3.436,49.791],[-3.536,49.791],[-3.636,49.691],[-3.736,49.591],[-3.836,49.491],[-3.936,49.391],[-4.036,49.291],[-4.136,49.191],[-4.236,49.091],[-4.336,48.991],[-4.436,48.891],[-4.536,48.791],[-4.636,48.691],[-4.736,48.591],[-4.836,48.491],[-4.836,48.391],[-4.736,48.291],[-4.636,48.191],[-4.536,48.091],[-4.536,47.991],[-4.436,47.891],[-4.336,47.791],[-4.236,47.791],[-4.136,47.791],[-4.036,47.791],[-3.936,47.791],[-3.836,47.791],[-3.736,47.791],[-3.636,47.691],[-3.536,47.691],[-3.436,47.691],[-3.336,47.591],[-3.236,47.491],[-3.136,47.391],[-3.036,47.391],[-2.936,47.391],[-2.836,47.391],[-2.736,47.391],[-2.636,47.391],[-2.536,47.291],[-2.436,47.191],[-2.336,47.191],[-2.236,47.191]],[[-0.083,51.52],[0.464,51.491],[0.564,51.491],[0.664,51.491],[0.764,51.491],[0.864,51.491],[0.964,51.491],[1.064,51.491],[1.164,51.491],[1.264,51.491],[1.364,51.391],[1.464,51.291],[1.564,51.191],[1.564,51.091],[1.564,50.991],[1.564,50.891],[1.564,50.791],[1.564,50.691]],[[0.564,49.591],[0.537,49.525]],[[1.564,50.691],[1.464,50.591],[1.364,50.491],[1.264,50.391],[1.164,50.291],[1.064,50.191],[0.964,50.091],[0.864,49.991],[0.764,49.891],[0.664,49.791],[0.664,49.691],[0.564,49.591]],[[1.614,50.724],[1.564,50.691]],[[9.11,39.215],[9.064,39.191]],[[9.064,39.191],[9.164,39.091],[9.264,39.091],[9.364,39.091],[9.464,39.091],[9.564,39.091],[9.664,39.191],[9.764,39.291],[9.864,39.391],[9.964,39.491],[10.064,39.591],[10.164,39.691],[10.264,39.791],[10.364,39.891],[10.464,39.991],[10.564,40.091],[10.664,40.191],[10.764,40.291],[10.864,40.391],[10.964,40.491],[11.064,40.591],[11.164,40.691],[11.264,40.791],[11.364,40.891],[11.464,40.991],[11.564,41.091],[11.664,41.191],[11.764,41.291],[11.864,41.391],[11.964,41.491],[12.064,41.591],[12.164,41.691],[12.264,41.691],[12.287,41.754]],[[12.474,41.89],[12.474,41.89],[12.475,41.888],[12.469,41.882],[12.468,41.877],[12.472,41.868],[12.47,41.863],[12.461,41.858],[12.46,41.855],[12.46,41.854],[12.462,41.85],[12.444,41.834],[12.435,41.829],[12.426,41.831],[12.421,41.828],[12.418,41.822],[12.416,41.818],[12.411,41.809],[12.405,41.805],[12.394,41.805],[12.386,41.802],[12.375,41.804],[12.37,41.805],[12.364,41.807],[12.36,41.806],[12.352,41.806],[12.343,41.809],[12.339,41.806],[12.337,41.799],[12.332,41.798],[12.323,41.799],[12.317,41.799],[12.309,41.8],[12.302,41.797],[12.295,41.791],[12.284,41.789],[12.278,41.782],[12.273,41.773],[12.274,41.771],[12.274,41.768],[12.275,41.764],[12.28,41.758],[12.271,41.753]]]},"pair": 50235,"direction": 1,"month": 8,"priority": 1,"expense": 4.023,"duration": 41.155,"length": 5375.749},{"type": "Feature", "geometry": {"type":"MultiLineString","coordinates":[[[-9.145,38.726],[-9.136,38.691]],[[-9.136,38.691],[-9.236,38.691],[-9.336,38.591],[-9.436,38.691],[-9.536,38.791],[-9.536,38.891],[-9.536,38.991],[-9.536,39.091],[-9.536,39.191],[-9.536,39.291],[-9.536,39.391],[-9.436,39.491],[-9.336,39.591],[-9.236,39.691],[-9.136,39.791],[-9.036,39.891],[-8.936,39.991],[-8.936,40.091],[-8.936,40.191],[-8.936,40.291],[-8.936,40.391],[-8.936,40.491],[-8.936,40.591],[-8.936,40.691],[-8.936,40.791],[-8.936,40.891],[-8.936,40.991],[-8.936,41.091],[-8.936,41.191],[-8.936,41.291],[-8.936,41.391],[-8.936,41.491],[-8.936,41.591],[-8.936,41.691],[-8.936,41.791],[-8.936,41.891],[-8.936,41.991],[-8.936,42.091],[-8.936,42.191],[-8.936,42.291],[-8.936,42.391],[-9.036,42.491],[-9.136,42.591],[-9.136,42.691],[-9.136,42.791],[-9.236,42.891],[-9.336,42.991],[-9.336,43.091],[-9.236,43.191],[-9.136,43.291],[-9.036,43.391],[-8.936,43.391],[-8.836,43.391],[-8.736,43.391],[-8.636,43.391],[-8.536,43.391],[-8.436,43.391]],[[-6.336,36.491],[-6.436,36.591],[-6.536,36.691],[-6.636,36.791],[-6.736,36.891],[-6.836,36.991],[-6.936,36.991],[-7.036,36.991],[-7.136,36.991],[-7.236,36.991],[-7.336,36.991],[-7.436,36.991],[-7.536,36.991],[-7.636,36.991],[-7.736,36.991],[-7.836,36.991],[-7.936,36.991],[-8.036,36.991],[-8.136,36.991],[-8.236,36.991],[-8.336,36.991],[-8.436,36.991],[-8.536,36.991],[-8.636,36.991],[-8.736,36.991],[-8.836,36.991],[-8.936,36.991],[-9.036,37.091],[-9.036,37.191],[-9.036,37.291],[-9.036,37.391],[-9.036,37.491],[-9.036,37.591],[-9.036,37.691],[-9.036,37.791],[-9.036,37.891],[-9.036,37.991],[-9.036,38.091],[-9.036,38.191],[-9.036,38.291],[-9.136,38.391],[-9.236,38.491],[-9.236,38.591],[-9.136,38.691]],[[-8.436,43.391],[-8.336,43.491],[-8.236,43.591],[-8.136,43.691],[-8.036,43.791],[-7.936,43.791],[-7.836,43.791],[-7.736,43.791],[-7.636,43.791],[-7.536,43.791],[-7.436,43.791],[-7.336,43.791],[-7.236,43.791],[-7.136,43.791],[-7.036,43.791],[-6.936,43.791],[-6.836,43.791],[-6.736,43.791],[-6.636,43.791],[-6.536,43.791],[-6.436,43.791],[-6.336,43.791],[-6.236,43.791],[-6.136,43.791],[-6.036,43.791],[-5.936,43.791],[-5.836,43.791],[-5.736,43.791],[-5.636,43.791],[-5.536,43.791],[-5.436,43.791],[-5.336,43.791],[-5.236,43.791],[-5.136,43.791],[-5.036,43.791],[-4.936,43.791],[-4.836,43.791],[-4.736,43.791],[-4.636,43.791],[-4.536,43.791],[-4.436,43.791],[-4.336,43.791],[-4.236,43.691],[-4.136,43.591],[-4.036,43.491]],[[-8.436,43.391],[-8.397,43.37]],[[-6.336,36.491],[-6.293,36.529]],[[9.064,39.191],[9.064,39.091],[9.064,38.991],[8.964,38.891],[8.864,38.791],[8.764,38.791],[8.664,38.791],[8.564,38.791],[8.464,38.791],[8.364,38.791],[8.264,38.791],[8.164,38.791],[8.064,38.791],[7.964,38.791],[7.864,38.791],[7.764,38.791],[7.664,38.791],[7.564,38.791],[7.464,38.791],[7.364,38.791],[7.264,38.791],[7.164,38.791],[7.064,38.791],[6.964,38.791],[6.864,38.791],[6.764,38.791],[6.664,38.691],[6.564,38.591],[6.464,38.491],[6.364,38.391],[6.264,38.291],[6.164,38.191],[6.064,38.091],[5.964,37.991],[5.864,37.891],[5.764,37.791],[5.664,37.691],[5.564,37.591],[5.464,37.491],[5.364,37.391],[5.264,37.291],[5.164,37.191],[5.064,37.091],[4.964,36.991],[4.864,36.991],[4.764,36.991],[4.664,36.991],[4.564,36.991],[4.464,36.991],[4.364,36.991],[4.264,36.991],[4.164,36.991],[4.064,36.991],[3.964,36.991],[3.864,36.991],[3.764,36.991],[3.664,36.991],[3.564,36.991],[3.464,36.991],[3.364,36.991],[3.264,36.991],[3.164,36.991],[3.064,36.991],[2.964,36.991],[2.864,36.991],[2.764,36.991],[2.664,36.991],[2.564,36.991],[2.464,36.991],[2.364,36.991],[2.264,36.991],[2.164,36.991],[2.064,36.991],[1.964,36.991],[1.864,36.991],[1.764,36.991],[1.664,36.991],[1.564,36.991],[1.464,36.991],[1.364,36.991],[1.264,36.991],[1.164,36.991],[1.064,36.991],[0.964,36.991],[0.864,36.991],[0.764,36.991],[0.664,36.991],[0.564,36.991],[0.464,36.891],[0.364,36.791],[0.264,36.691],[0.164,36.591],[0.064,36.491],[-0.036,36.391],[-0.136,36.391],[-0.236,36.391],[-0.336,36.391],[-0.436,36.391],[-0.536,36.391],[-0.636,36.391],[-0.736,36.391],[-0.836,36.391],[-0.936,36.391],[-1.036,36.391],[-1.136,36.391],[-1.236,36.391],[-1.336,36.391],[-1.436,36.391],[-1.536,36.391],[-1.636,36.391],[-1.736,36.391],[-1.836,36.391],[-1.936,36.391],[-2.036,36.391],[-2.136,36.391],[-2.236,36.391],[-2.336,36.391],[-2.436,36.391],[-2.536,36.391],[-2.636,36.391],[-2.736,36.391],[-2.836,36.391],[-2.936,36.391],[-3.036,36.391],[-3.136,36.391],[-3.236,36.391],[-3.336,36.391],[-3.436,36.391],[-3.536,36.391],[-3.636,36.391],[-3.736,36.391],[-3.836,36.391],[-3.936,36.391],[-4.036,36.391],[-4.136,36.391],[-4.236,36.391],[-4.336,36.391],[-4.436,36.391],[-4.536,36.391],[-4.636,36.391],[-4.736,36.391],[-4.836,36.391],[-4.936,36.391],[-5.036,36.391],[-5.136,36.391],[-5.236,36.291],[-5.336,36.191],[-5.436,36.091],[-5.536,35.991],[-5.636,35.991],[-5.736,35.991],[-5.836,36.091],[-5.936,36.091],[-6.036,36.091],[-6.136,36.191],[-6.136,36.291],[-6.236,36.391],[-6.336,36.491]],[[-4.036,43.491],[-4.043,43.432]],[[-4.036,43.491],[-3.936,43.591],[-3.836,43.691],[-3.736,43.791],[-3.636,43.891],[-3.536,43.991],[-3.436,44.091],[-3.336,44.191],[-3.336,44.291],[-3.336,44.391],[-3.336,44.491],[-3.336,44.591],[-3.336,44.691],[-3.336,44.791],[-3.336,44.891],[-3.336,44.991],[-3.336,45.091],[-3.336,45.191],[-3.336,45.291],[-3.336,45.391],[-3.336,45.491],[-3.336,45.591],[-3.336,45.691],[-3.336,45.791],[-3.336,45.891],[-3.336,45.991],[-3.336,46.091],[-3.236,46.191],[-3.136,46.291],[-3.036,46.391],[-2.936,46.491],[-2.836,46.591],[-2.736,46.691],[-2.636,46.791],[-2.536,46.891],[-2.436,46.991],[-2.336,47.091],[-2.236,47.191]],[[-1.558,47.214],[-1.936,47.291],[-2.136,47.291],[-2.236,47.191]],[[-2.236,47.191],[-2.336,47.191],[-2.436,47.191],[-2.536,47.291],[-2.636,47.391],[-2.736,47.391],[-2.836,47.391],[-2.936,47.391],[-3.036,47.391],[-3.136,47.391],[-3.236,47.491],[-3.336,47.591],[-3.436,47.691],[-3.536,47.691],[-3.636,47.691],[-3.736,47.791],[-3.836,47.791],[-3.936,47.791],[-4.036,47.791],[-4.136,47.791],[-4.236,47.791],[-4.336,47.791],[-4.436,47.891],[-4.536,47.991],[-4.536,48.091],[-4.636,48.191],[-4.736,48.291],[-4.836,48.391],[-4.836,48.491],[-4.736,48.591],[-4.636,48.691],[-4.536,48.791],[-4.436,48.891],[-4.336,48.991],[-4.236,49.091],[-4.136,49.191],[-4.036,49.291],[-3.936,49.391],[-3.836,49.491],[-3.736,49.591],[-3.636,49.691],[-3.536,49.791],[-3.436,49.791],[-3.336,49.791],[-3.236,49.791],[-3.136,49.791],[-3.036,49.791],[-2.936,49.791],[-2.836,49.791],[-2.736,49.791],[-2.636,49.791],[-2.536,49.791],[-2.436,49.791],[-2.336,49.791],[-2.236,49.791],[-2.136,49.791],[-2.036,49.791],[-1.936,49.791],[-1.836,49.791],[-1.736,49.791],[-1.636,49.791],[-1.536,49.791],[-1.436,49.791],[-1.336,49.791],[-1.236,49.791],[-1.136,49.791],[-1.036,49.791],[-0.936,49.791],[-0.836,49.791],[-0.736,49.791],[-0.636,49.791],[-0.536,49.791],[-0.436,49.791],[-0.336,49.791],[-0.236,49.791],[-0.136,49.791],[-0.036,49.791],[0.064,49.791],[0.164,49.791],[0.264,49.791],[0.364,49.791],[0.464,49.691],[0.564,49.591]],[[1.564,50.691],[1.564,50.791],[1.564,50.891],[1.564,50.991],[1.564,51.091],[1.564,51.191],[1.464,51.291],[1.364,51.391],[1.264,51.491],[1.164,51.491],[1.064,51.491],[0.964,51.491],[0.864,51.491],[0.764,51.491],[0.664,51.491],[0.564,51.491],[0.464,51.491],[-0.083,51.52]],[[0.537,49.525],[0.564,49.591]],[[0.564,49.591],[0.564,49.691],[0.664,49.791],[0.764,49.891],[0.864,49.991],[0.964,50.091],[1.064,50.191],[1.164,50.291],[1.264,50.391],[1.364,50.491],[1.464,50.591],[1.564,50.691]],[[1.614,50.724],[1.564,50.691]],[[9.11,39.215],[9.064,39.191]],[[12.287,41.754],[12.264,41.691],[12.164,41.591],[12.064,41.491],[11.964,41.391],[11.864,41.291],[11.764,41.191],[11.664,41.091],[11.564,40.991],[11.464,40.891],[11.364,40.791],[11.264,40.691],[11.164,40.591],[11.064,40.491],[10.964,40.391],[10.864,40.291],[10.764,40.191],[10.664,40.091],[10.564,39.991],[10.464,39.891],[10.364,39.891],[10.264,39.791],[10.164,39.691],[10.064,39.591],[9.964,39.491],[9.864,39.391],[9.764,39.291],[9.664,39.191],[9.564,39.091],[9.464,39.091],[9.364,39.091],[9.264,39.091],[9.164,39.091],[9.064,39.191]],[[12.474,41.89],[12.474,41.89],[12.475,41.888],[12.469,41.882],[12.468,41.877],[12.472,41.868],[12.47,41.863],[12.461,41.858],[12.46,41.855],[12.46,41.854],[12.462,41.85],[12.444,41.834],[12.435,41.829],[12.426,41.831],[12.421,41.828],[12.418,41.822],[12.416,41.818],[12.411,41.809],[12.405,41.805],[12.394,41.805],[12.386,41.802],[12.375,41.804],[12.37,41.805],[12.364,41.807],[12.36,41.806],[12.352,41.806],[12.343,41.809],[12.339,41.806],[12.337,41.799],[12.332,41.798],[12.323,41.799],[12.317,41.799],[12.309,41.8],[12.302,41.797],[12.295,41.791],[12.284,41.789],[12.278,41.782],[12.273,41.773],[12.274,41.771],[12.274,41.768],[12.275,41.764],[12.28,41.758],[12.271,41.753]]]},"pair": 50235,"direction": 0,"month": 9,"priority": 1,"expense": 3.789,"duration": 37.341,"length": 5282.920},{"type": "Feature", "geometry": {"type":"MultiLineString","coordinates":[[[-9.136,38.691],[-9.145,38.726]],[[-8.436,43.391],[-8.536,43.391],[-8.636,43.391],[-8.736,43.391],[-8.836,43.391],[-8.936,43.391],[-9.036,43.391],[-9.136,43.291],[-9.236,43.191],[-9.336,43.091],[-9.436,42.991],[-9.536,42.891],[-9.536,42.791],[-9.536,42.691],[-9.536,42.591],[-9.536,42.491],[-9.536,42.391],[-9.536,42.291],[-9.536,42.191],[-9.536,42.091],[-9.536,41.991],[-9.536,41.891],[-9.536,41.791],[-9.536,41.691],[-9.536,41.591],[-9.536,41.491],[-9.536,41.391],[-9.536,41.291],[-9.536,41.191],[-9.536,41.091],[-9.536,40.991],[-9.536,40.891],[-9.536,40.791],[-9.536,40.691],[-9.536,40.591],[-9.536,40.491],[-9.536,40.391],[-9.536,40.291],[-9.536,40.191],[-9.536,40.091],[-9.536,39.991],[-9.536,39.891],[-9.536,39.791],[-9.536,39.691],[-9.536,39.591],[-9.536,39.491],[-9.536,39.391],[-9.536,39.291],[-9.536,39.191],[-9.536,39.091],[-9.536,38.991],[-9.536,38.891],[-9.536,38.791],[-9.436,38.691],[-9.336,38.591],[-9.236,38.691],[-9.136,38.691]],[[-9.136,38.691],[-9.236,38.591],[-9.236,38.491],[-9.136,38.391],[-9.036,38.291],[-9.036,38.191],[-9.036,38.091],[-9.036,37.991],[-9.036,37.891],[-9.036,37.791],[-9.036,37.691],[-9.036,37.591],[-9.036,37.491],[-9.036,37.391],[-9.036,37.291],[-9.036,37.191],[-9.036,37.091],[-8.936,36.991],[-8.836,36.991],[-8.736,36.991],[-8.636,36.991],[-8.536,36.991],[-8.436,36.991],[-8.336,36.991],[-8.236,36.991],[-8.136,36.991],[-8.036,36.991],[-7.936,36.991],[-7.836,36.991],[-7.736,36.991],[-7.636,36.991],[-7.536,36.991],[-7.436,36.991],[-7.336,36.991],[-7.236,36.991],[-7.136,36.991],[-7.036,36.991],[-6.936,36.991],[-6.836,36.991],[-6.736,36.891],[-6.636,36.791],[-6.536,36.691],[-6.436,36.591],[-6.336,36.491]],[[-4.036,43.491],[-4.136,43.591],[-4.236,43.691],[-4.336,43.791],[-4.436,43.791],[-4.536,43.791],[-4.636,43.791],[-4.736,43.791],[-4.836,43.791],[-4.936,43.791],[-5.036,43.791],[-5.136,43.791],[-5.236,43.791],[-5.336,43.791],[-5.436,43.791],[-5.536,43.791],[-5.636,43.791],[-5.736,43.791],[-5.836,43.791],[-5.936,43.791],[-6.036,43.791],[-6.136,43.791],[-6.236,43.791],[-6.336,43.791],[-6.436,43.791],[-6.536,43.791],[-6.636,43.791],[-6.736,43.791],[-6.836,43.791],[-6.936,43.791],[-7.036,43.791],[-7.136,43.791],[-7.236,43.791],[-7.336,43.791],[-7.436,43.791],[-7.536,43.791],[-7.636,43.791],[-7.736,43.791],[-7.836,43.791],[-7.936,43.791],[-8.036,43.791],[-8.136,43.691],[-8.236,43.591],[-8.336,43.491],[-8.436,43.391]],[[-8.436,43.391],[-8.397,43.37]],[[-6.336,36.491],[-6.293,36.529]],[[-6.336,36.491],[-6.236,36.391],[-6.136,36.291],[-6.136,36.191],[-6.036,36.091],[-5.936,36.091],[-5.836,36.091],[-5.736,35.991],[-5.636,35.891],[-5.536,35.991],[-5.436,35.991],[-5.336,35.991],[-5.236,35.991],[-5.136,35.991],[-5.036,35.991],[-4.936,35.991],[-4.836,35.991],[-4.736,35.991],[-4.636,35.991],[-4.536,35.991],[-4.436,35.991],[-4.336,35.991],[-4.236,35.991],[-4.136,35.991],[-4.036,35.991],[-3.936,35.991],[-3.836,35.991],[-3.736,35.991],[-3.636,35.991],[-3.536,35.991],[-3.436,35.991],[-3.336,35.991],[-3.236,35.991],[-3.136,35.991],[-3.036,35.991],[-2.936,35.991],[-2.836,35.991],[-2.736,35.991],[-2.636,35.991],[-2.536,35.991],[-2.436,35.991],[-2.336,35.991],[-2.236,35.991],[-2.136,35.991],[-2.036,35.991],[-1.936,35.991],[-1.836,35.991],[-1.736,35.991],[-1.636,35.991],[-1.536,35.991],[-1.436,35.991],[-1.336,35.991],[-1.236,35.991],[-1.136,35.991],[-1.036,35.991],[-0.936,35.991],[-0.836,35.991],[-0.736,35.991],[-0.636,35.991],[-0.536,35.991],[-0.436,35.991],[-0.336,35.991],[-0.236,35.991],[-0.136,35.991],[-0.036,35.991],[0.064,35.991],[0.164,36.091],[0.264,36.191],[0.364,36.291],[0.464,36.391],[0.564,36.491],[0.664,36.591],[0.764,36.691],[0.864,36.791],[0.964,36.891],[1.064,36.991],[1.164,37.091],[1.264,37.191],[1.364,37.291],[1.464,37.391],[1.564,37.491],[1.664,37.591],[1.764,37.691],[1.864,37.791],[1.964,37.891],[2.064,37.991],[2.164,38.091],[2.264,38.191],[2.364,38.291],[2.464,38.391],[2.564,38.491],[2.664,38.591],[2.764,38.691],[2.864,38.791],[2.964,38.791],[3.064,38.791],[3.164,38.791],[3.264,38.791],[3.364,38.791],[3.464,38.791],[3.564,38.791],[3.664,38.791],[3.764,38.791],[3.864,38.791],[3.964,38.791],[4.064,38.791],[4.164,38.791],[4.264,38.791],[4.364,38.791],[4.464,38.791],[4.564,38.791],[4.664,38.791],[4.764,38.791],[4.864,38.791],[4.964,38.791],[5.064,38.791],[5.164,38.791],[5.264,38.791],[5.364,38.791],[5.464,38.791],[5.564,38.791],[5.664,38.791],[5.764,38.791],[5.864,38.791],[5.964,38.791],[6.064,38.791],[6.164,38.791],[6.264,38.791],[6.364,38.791],[6.464,38.791],[6.564,38.791],[6.664,38.791],[6.764,38.791],[6.864,38.791],[6.964,38.791],[7.064,38.791],[7.164,38.791],[7.264,38.791],[7.364,38.791],[7.464,38.791],[7.564,38.791],[7.664,38.791],[7.764,38.791],[7.864,38.791],[7.964,38.791],[8.064,38.791],[8.164,38.791],[8.264,38.791],[8.364,38.791],[8.464,38.791],[8.564,38.791],[8.664,38.791],[8.764,38.791],[8.864,38.791],[8.964,38.891],[9.064,38.991],[9.064,39.091],[9.064,39.191]],[[-4.043,43.432],[-4.036,43.491]],[[-2.236,47.191],[-2.336,47.091],[-2.436,46.991],[-2.536,46.891],[-2.636,46.791],[-2.736,46.691],[-2.836,46.591],[-2.936,46.491],[-3.036,46.391],[-3.136,46.291],[-3.236,46.191],[-3.336,46.091],[-3.436,45.991],[-3.436,45.891],[-3.436,45.791],[-3.436,45.691],[-3.436,45.591],[-3.436,45.491],[-3.436,45.391],[-3.436,45.291],[-3.436,45.191],[-3.436,45.091],[-3.436,44.991],[-3.436,44.891],[-3.436,44.791],[-3.436,44.691],[-3.436,44.591],[-3.436,44.491],[-3.436,44.391],[-3.436,44.291],[-3.436,44.191],[-3.436,44.091],[-3.536,43.991],[-3.636,43.891],[-3.736,43.791],[-3.836,43.691],[-3.936,43.591],[-4.036,43.491]],[[-2.236,47.191],[-2.136,47.291],[-1.936,47.291],[-1.558,47.214]],[[0.564,49.591],[0.464,49.691],[0.364,49.791],[0.264,49.791],[0.164,49.791],[0.064,49.791],[-0.036,49.791],[-0.136,49.791],[-0.236,49.791],[-0.336,49.791],[-0.436,49.791],[-0.536,49.791],[-0.636,49.791],[-0.736,49.791],[-0.836,49.791],[-0.936,49.791],[-1.036,49.791],[-1.136,49.791],[-1.236,49.791],[-1.336,49.791],[-1.436,49.791],[-1.536,49.791],[-1.636,49.791],[-1.736,49.791],[-1.836,49.791],[-1.936,49.791],[-2.036,49.791],[-2.136,49.791],[-2.236,49.791],[-2.336,49.791],[-2.436,49.791],[-2.536,49.791],[-2.636,49.791],[-2.736,49.791],[-2.836,49.791],[-2.936,49.791],[-3.036,49.791],[-3.136,49.791],[-3.236,49.791],[-3.336,49.791],[-3.436,49.791],[-3.536,49.791],[-3.636,49.691],[-3.736,49.591],[-3.836,49.491],[-3.936,49.391],[-4.036,49.291],[-4.136,49.191],[-4.236,49.091],[-4.336,48.991],[-4.436,48.891],[-4.536,48.791],[-4.636,48.691],[-4.736,48.591],[-4.836,48.491],[-4.836,48.391],[-4.736,48.291],[-4.636,48.191],[-4.536,48.091],[-4.536,47.991],[-4.436,47.891],[-4.336,47.791],[-4.236,47.791],[-4.136,47.791],[-4.036,47.791],[-3.936,47.791],[-3.836,47.791],[-3.736,47.791],[-3.636,47.691],[-3.536,47.691],[-3.436,47.691],[-3.336,47.591],[-3.236,47.491],[-3.136,47.391],[-3.036,47.391],[-2.936,47.391],[-2.836,47.391],[-2.736,47.391],[-2.636,47.391],[-2.536,47.291],[-2.436,47.191],[-2.336,47.191],[-2.236,47.191]],[[-0.083,51.52],[0.464,51.491],[0.564,51.491],[0.664,51.491],[0.764,51.491],[0.864,51.491],[0.964,51.491],[1.064,51.491],[1.164,51.491],[1.264,51.491],[1.364,51.391],[1.464,51.291],[1.564,51.191],[1.564,51.091],[1.564,50.991],[1.564,50.891],[1.564,50.791],[1.564,50.691]],[[0.564,49.591],[0.537,49.525]],[[1.564,50.691],[1.464,50.591],[1.364,50.491],[1.264,50.391],[1.164,50.291],[1.064,50.191],[0.964,50.091],[0.864,49.991],[0.764,49.891],[0.664,49.791],[0.664,49.691],[0.564,49.591]],[[1.614,50.724],[1.564,50.691]],[[9.11,39.215],[9.064,39.191]],[[9.064,39.191],[9.164,39.091],[9.264,39.091],[9.364,39.091],[9.464,39.091],[9.564,39.091],[9.664,39.191],[9.764,39.291],[9.864,39.391],[9.964,39.491],[10.064,39.591],[10.164,39.691],[10.264,39.791],[10.364,39.891],[10.464,39.891],[10.564,39.991],[10.664,40.091],[10.764,40.191],[10.864,40.291],[10.964,40.391],[11.064,40.491],[11.164,40.591],[11.264,40.691],[11.364,40.791],[11.464,40.891],[11.564,40.991],[11.664,41.091],[11.764,41.191],[11.864,41.291],[11.964,41.391],[12.064,41.491],[12.164,41.591],[12.264,41.691],[12.287,41.754]],[[12.474,41.89],[12.474,41.89],[12.475,41.888],[12.469,41.882],[12.468,41.877],[12.472,41.868],[12.47,41.863],[12.461,41.858],[12.46,41.855],[12.46,41.854],[12.462,41.85],[12.444,41.834],[12.435,41.829],[12.426,41.831],[12.421,41.828],[12.418,41.822],[12.416,41.818],[12.411,41.809],[12.405,41.805],[12.394,41.805],[12.386,41.802],[12.375,41.804],[12.37,41.805],[12.364,41.807],[12.36,41.806],[12.352,41.806],[12.343,41.809],[12.339,41.806],[12.337,41.799],[12.332,41.798],[12.323,41.799],[12.317,41.799],[12.309,41.8],[12.302,41.797],[12.295,41.791],[12.284,41.789],[12.278,41.782],[12.273,41.773],[12.274,41.771],[12.274,41.768],[12.275,41.764],[12.28,41.758],[12.271,41.753]]]},"pair": 50235,"direction": 1,"month": 9,"priority": 1,"expense": 3.734,"duration": 38.285,"length": 5264.898},{"type": "Feature", "geometry": {"type":"MultiLineString","coordinates":[[[4.398,52.198],[4.364,52.191],[4.264,52.191],[4.164,52.191],[4.064,52.191],[3.964,52.191],[3.864,52.191],[3.764,52.191],[3.664,52.191],[3.564,52.191],[3.464,52.191],[3.364,52.191],[3.264,52.191],[3.164,52.191],[3.064,52.191],[2.964,52.191],[2.864,52.191],[2.764,52.191],[2.664,52.191],[2.564,52.191],[2.464,52.191],[2.364,52.191],[2.264,52.191],[2.164,52.191],[2.064,52.191],[1.964,52.191],[1.864,52.191],[1.764,52.191],[1.664,52.091],[1.564,51.991],[1.464,51.991],[1.364,51.891],[1.264,51.791],[1.164,51.691],[1.064,51.691],[0.964,51.591],[0.864,51.491],[0.764,51.491],[0.664,51.491],[0.564,51.491],[0.464,51.491],[-0.083,51.52]],[[7.512,47.669],[7.512,47.672],[7.512,47.675],[7.512,47.677],[7.513,47.678],[7.513,47.68],[7.513,47.682],[7.513,47.684],[7.512,47.685],[7.512,47.687],[7.511,47.688],[7.51,47.689],[7.51,47.691],[7.509,47.693],[7.508,47.695],[7.507,47.697],[7.507,47.698],[7.507,47.698],[7.507,47.7],[7.508,47.701],[7.508,47.702],[7.511,47.707],[7.512,47.708],[7.513,47.708],[7.514,47.709],[7.515,47.709],[7.519,47.712],[7.521,47.714],[7.53,47.72],[7.532,47.722],[7.534,47.723],[7.535,47.724],[7.536,47.725],[7.537,47.726],[7.538,47.727],[7.539,47.73],[7.54,47.731],[7.54,47.733],[7.54,47.734],[7.54,47.738],[7.539,47.74],[7.538,47.741],[7.538,47.742],[7.536,47.744],[7.535,47.746],[7.534,47.748],[7.532,47.751],[7.531,47.752],[7.53,47.754],[7.528,47.758],[7.527,47.76],[7.526,47.76],[7.525,47.762],[7.524,47.764],[7.524,47.765],[7.523,47.767],[7.523,47.767],[7.522,47.77],[7.522,47.771],[7.522,47.773],[7.522,47.774],[7.522,47.775],[7.522,47.775],[7.524,47.776],[7.525,47.777],[7.524,47.778],[7.524,47.78],[7.524,47.781],[7.524,47.782],[7.524,47.784],[7.525,47.786],[7.525,47.788],[7.526,47.789],[7.526,47.789],[7.526,47.79],[7.527,47.791],[7.527,47.791],[7.528,47.792],[7.529,47.794],[7.53,47.795],[7.532,47.799],[7.537,47.804],[7.54,47.808],[7.542,47.811],[7.543,47.814],[7.545,47.817],[7.546,47.82],[7.546,47.822],[7.547,47.823],[7.547,47.824],[7.547,47.825],[7.548,47.825],[7.548,47.827],[7.549,47.828],[7.549,47.829],[7.551,47.832],[7.553,47.836],[7.554,47.837],[7.555,47.84],[7.556,47.842],[7.556,47.845],[7.556,47.846],[7.556,47.848],[7.556,47.849],[7.556,47.85],[7.556,47.853],[7.555,47.857],[7.555,47.857],[7.554,47.861],[7.553,47.865],[7.553,47.869],[7.552,47.871],[7.552,47.871],[7.552,47.872],[7.552,47.875],[7.552,47.877],[7.553,47.879],[7.559,47.89],[7.56,47.892],[7.561,47.895],[7.564,47.9],[7.564,47.901],[7.565,47.902],[7.565,47.903],[7.566,47.904],[7.567,47.909],[7.568,47.911],[7.57,47.916],[7.571,47.919],[7.572,47.92],[7.572,47.921],[7.573,47.923],[7.573,47.925],[7.574,47.926],[7.575,47.928],[7.575,47.929],[7.576,47.931],[7.577,47.932],[7.58,47.935],[7.58,47.936],[7.58,47.936],[7.581,47.937],[7.582,47.938],[7.582,47.939],[7.584,47.94],[7.586,47.942],[7.595,47.949],[7.596,47.95],[7.596,47.951],[7.598,47.952],[7.598,47.952],[7.598,47.953],[7.6,47.954],[7.603,47.957],[7.605,47.959],[7.606,47.96],[7.608,47.964],[7.61,47.967],[7.611,47.969],[7.611,47.97],[7.612,47.972],[7.612,47.973],[7.612,47.976],[7.612,47.978],[7.612,47.98],[7.612,47.982],[7.611,47.984],[7.61,47.986],[7.609,47.988],[7.608,47.99],[7.607,47.991],[7.606,47.993],[7.604,47.995],[7.603,47.996],[7.601,47.998],[7.6,47.999],[7.599,48],[7.599,48],[7.597,48.002],[7.589,48.008],[7.582,48.013],[7.579,48.016],[7.574,48.019],[7.573,48.02],[7.57,48.022],[7.569,48.024],[7.567,48.027],[7.567,48.028],[7.566,48.03],[7.567,48.033],[7.57,48.039],[7.573,48.046],[7.574,48.048],[7.574,48.054],[7.574,48.059],[7.573,48.062],[7.568,48.069],[7.57,48.078],[7.569,48.082],[7.57,48.085],[7.572,48.089],[7.575,48.092],[7.58,48.101],[7.58,48.105],[7.578,48.112],[7.578,48.116],[7.578,48.121],[7.578,48.122],[7.581,48.125],[7.584,48.127],[7.585,48.128],[7.587,48.129],[7.591,48.13],[7.595,48.132],[7.597,48.134],[7.598,48.137],[7.6,48.14],[7.599,48.143],[7.599,48.145],[7.598,48.147],[7.598,48.149],[7.599,48.15],[7.607,48.163],[7.611,48.169],[7.614,48.171],[7.619,48.175],[7.62,48.176],[7.625,48.181],[7.63,48.185],[7.631,48.187],[7.635,48.194],[7.638,48.2],[7.64,48.202],[7.641,48.205],[7.644,48.208],[7.645,48.209],[7.646,48.21],[7.648,48.212],[7.654,48.218],[7.658,48.223],[7.661,48.228],[7.663,48.235],[7.665,48.239],[7.669,48.245],[7.67,48.249],[7.676,48.252],[7.676,48.261],[7.677,48.264],[7.678,48.268],[7.68,48.269],[7.68,48.273],[7.681,48.273],[7.68,48.274],[7.681,48.275],[7.683,48.276],[7.683,48.277],[7.681,48.277],[7.681,48.278],[7.683,48.278],[7.684,48.278],[7.685,48.279],[7.685,48.28],[7.684,48.281],[7.689,48.294],[7.692,48.3],[7.697,48.305],[7.703,48.309],[7.709,48.311],[7.724,48.315],[7.731,48.316],[7.732,48.318],[7.734,48.318],[7.737,48.32],[7.739,48.322],[7.741,48.324],[7.742,48.325],[7.744,48.328],[7.744,48.331],[7.746,48.333],[7.749,48.336],[7.747,48.347],[7.743,48.371],[7.74,48.383],[7.737,48.394],[7.743,48.416],[7.745,48.422],[7.745,48.425],[7.752,48.444],[7.766,48.48],[7.771,48.492],[7.78,48.496],[7.795,48.502],[7.802,48.507],[7.805,48.514],[7.806,48.521],[7.805,48.53],[7.805,48.532],[7.805,48.548],[7.805,48.56],[7.803,48.57],[7.801,48.574],[7.801,48.572],[7.8,48.574],[7.799,48.576],[7.799,48.576],[7.799,48.577],[7.799,48.577],[7.798,48.579],[7.798,48.582],[7.798,48.583],[7.799,48.585],[7.8,48.587],[7.8,48.588],[7.801,48.59],[7.802,48.591],[7.802,48.592],[7.803,48.593],[7.803,48.594],[7.804,48.594],[7.806,48.597],[7.81,48.601],[7.811,48.602],[7.815,48.607],[7.817,48.609],[7.82,48.612],[7.823,48.615],[7.824,48.616],[7.826,48.618],[7.828,48.62],[7.829,48.622],[7.83,48.625],[7.831,48.629],[7.832,48.63],[7.832,48.633],[7.833,48.634],[7.834,48.637],[7.835,48.639],[7.836,48.641],[7.838,48.643],[7.839,48.644],[7.838,48.644],[7.841,48.646],[7.843,48.647],[7.845,48.648],[7.848,48.648],[7.85,48.649],[7.852,48.649],[7.853,48.65],[7.855,48.65],[7.858,48.651],[7.867,48.654],[7.871,48.656],[7.873,48.657],[7.874,48.657],[7.873,48.657],[7.877,48.658],[7.882,48.66],[7.885,48.661],[7.888,48.663],[7.889,48.664],[7.889,48.665],[7.89,48.666],[7.891,48.667],[7.895,48.669],[7.898,48.672],[7.899,48.673],[7.899,48.674],[7.9,48.676],[7.9,48.677],[7.902,48.679],[7.903,48.681],[7.903,48.681],[7.905,48.683],[7.905,48.683],[7.909,48.686],[7.911,48.688],[7.912,48.688],[7.913,48.688],[7.913,48.689],[7.914,48.689],[7.915,48.689],[7.915,48.69],[7.918,48.691],[7.923,48.694],[7.926,48.696],[7.927,48.697],[7.928,48.697],[7.931,48.698],[7.933,48.699],[7.935,48.7],[7.938,48.702],[7.94,48.703],[7.942,48.706],[7.951,48.713],[7.952,48.713],[7.952,48.714],[7.952,48.714],[7.955,48.716],[7.96,48.72],[7.963,48.723],[7.965,48.726],[7.965,48.727],[7.966,48.728],[7.966,48.731],[7.965,48.737],[7.965,48.741],[7.964,48.744],[7.964,48.746],[7.964,48.746],[7.964,48.746],[7.965,48.749],[7.966,48.751],[7.966,48.753],[7.967,48.755],[7.969,48.758],[7.971,48.759],[7.973,48.76],[7.975,48.76],[7.979,48.761],[7.981,48.761],[7.982,48.761],[7.984,48.761],[7.989,48.76],[7.992,48.76],[7.998,48.759],[8,48.759],[8.003,48.758],[8.006,48.759],[8.01,48.76],[8.014,48.761],[8.018,48.764],[8.021,48.767],[8.022,48.77],[8.022,48.772],[8.024,48.777],[8.024,48.778],[8.024,48.78],[8.024,48.782],[8.025,48.784],[8.025,48.785],[8.027,48.786],[8.029,48.787],[8.03,48.788],[8.03,48.789],[8.032,48.79],[8.035,48.792],[8.036,48.792],[8.038,48.791],[8.042,48.792],[8.046,48.792],[8.047,48.792],[8.051,48.792],[8.054,48.791],[8.055,48.791],[8.056,48.791],[8.058,48.79],[8.062,48.79],[8.065,48.791],[8.068,48.792],[8.069,48.793],[8.069,48.794],[8.069,48.794],[8.069,48.795],[8.069,48.795],[8.07,48.796],[8.071,48.796],[8.073,48.796],[8.074,48.796],[8.076,48.796],[8.077,48.797],[8.08,48.798],[8.081,48.799],[8.086,48.803],[8.091,48.807],[8.095,48.811],[8.097,48.812],[8.098,48.813],[8.101,48.817],[8.102,48.82],[8.103,48.824],[8.103,48.827],[8.103,48.831],[8.104,48.833],[8.105,48.835],[8.106,48.836],[8.106,48.837],[8.111,48.844],[8.111,48.844],[8.11,48.845],[8.11,48.845],[8.11,48.845],[8.109,48.845],[8.109,48.845],[8.109,48.845],[8.11,48.846],[8.11,48.846],[8.11,48.846],[8.11,48.847],[8.11,48.847],[8.11,48.848],[8.112,48.848],[8.113,48.849],[8.114,48.852],[8.114,48.852],[8.117,48.857],[8.119,48.864],[8.124,48.871],[8.125,48.874],[8.126,48.875],[8.127,48.876],[8.127,48.877],[8.133,48.886],[8.137,48.892],[8.137,48.893],[8.139,48.894],[8.139,48.895],[8.14,48.896],[8.142,48.898],[8.142,48.899],[8.143,48.9],[8.144,48.901],[8.15,48.908],[8.156,48.914],[8.158,48.916],[8.158,48.916],[8.159,48.918],[8.163,48.921],[8.167,48.925],[8.172,48.929],[8.175,48.932],[8.177,48.934],[8.178,48.935],[8.179,48.936],[8.182,48.94],[8.184,48.942],[8.183,48.942],[8.184,48.943],[8.186,48.945],[8.189,48.95],[8.19,48.951],[8.191,48.953],[8.194,48.956],[8.195,48.958],[8.197,48.959],[8.201,48.961],[8.208,48.963],[8.213,48.964],[8.214,48.964],[8.215,48.964],[8.218,48.965],[8.221,48.965],[8.221,48.966],[8.222,48.965],[8.224,48.966],[8.232,48.967],[8.232,48.968],[8.249,48.976],[8.261,48.982],[8.267,48.986],[8.27,48.989],[8.272,48.99],[8.279,48.993],[8.284,48.996],[8.29,49.001],[8.297,49.012],[8.3,49.02],[8.305,49.04],[8.306,49.043],[8.307,49.044],[8.316,49.061],[8.327,49.071],[8.334,49.074],[8.339,49.077],[8.344,49.08],[8.35,49.085],[8.355,49.092],[8.356,49.094],[8.359,49.099],[8.367,49.133],[8.37,49.144],[8.371,49.147],[8.371,49.154],[8.368,49.161],[8.367,49.165],[8.37,49.172],[8.375,49.177],[8.377,49.182],[8.384,49.194],[8.386,49.204],[8.386,49.209],[8.385,49.212],[8.384,49.216],[8.385,49.231],[8.394,49.243],[8.4,49.247],[8.409,49.251],[8.418,49.254],[8.438,49.263],[8.449,49.271],[8.449,49.271],[8.453,49.278],[8.458,49.282],[8.46,49.284],[8.463,49.285],[8.483,49.29],[8.488,49.293],[8.49,49.296],[8.49,49.3],[8.488,49.303],[8.484,49.305],[8.47,49.31],[8.466,49.311],[8.459,49.315],[8.452,49.319],[8.449,49.323],[8.452,49.331],[8.454,49.335],[8.459,49.339],[8.469,49.344],[8.475,49.347],[8.481,49.349],[8.489,49.357],[8.492,49.36],[8.497,49.366],[8.5,49.374],[8.502,49.381],[8.502,49.386],[8.502,49.391],[8.498,49.397],[8.496,49.404],[8.495,49.413],[8.503,49.425],[8.508,49.436],[8.504,49.439],[8.497,49.441],[8.491,49.445],[8.478,49.445],[8.472,49.445],[8.458,49.446],[8.453,49.447],[8.446,49.45],[8.44,49.455],[8.44,49.46],[8.451,49.464],[8.457,49.467],[8.462,49.475],[8.457,49.479],[8.451,49.483],[8.44,49.496],[8.438,49.502],[8.432,49.514],[8.428,49.522],[8.423,49.528],[8.421,49.534],[8.412,49.548],[8.41,49.554],[8.411,49.561],[8.42,49.572],[8.416,49.583],[8.413,49.587],[8.409,49.592],[8.41,49.594],[8.409,49.595],[8.407,49.601],[8.403,49.606],[8.397,49.61],[8.39,49.614],[8.38,49.623],[8.376,49.629],[8.372,49.638],[8.37,49.646],[8.37,49.661],[8.364,49.665],[8.36,49.67],[8.354,49.682],[8.354,49.688],[8.357,49.693],[8.362,49.7],[8.37,49.703],[8.381,49.707],[8.421,49.716],[8.426,49.717],[8.437,49.725],[8.458,49.738],[8.478,49.752],[8.479,49.756],[8.478,49.76],[8.473,49.765],[8.459,49.765],[8.442,49.762],[8.427,49.763],[8.421,49.768],[8.416,49.775],[8.412,49.783],[8.406,49.799],[8.401,49.804],[8.37,49.826],[8.371,49.835],[8.379,49.85],[8.38,49.852],[8.378,49.856],[8.372,49.86],[8.359,49.864],[8.355,49.866],[8.345,49.872],[8.34,49.879],[8.339,49.889],[8.347,49.911],[8.346,49.918],[8.344,49.925],[8.341,49.938],[8.339,49.945],[8.336,49.952],[8.315,49.973],[8.303,49.981],[8.299,49.983],[8.29,49.989],[8.285,49.99],[8.28,49.995],[8.273,50.001],[8.272,50.004],[8.272,50.007],[8.268,50.012],[8.265,50.015],[8.259,50.02],[8.236,50.028],[8.208,50.034],[8.201,50.034],[8.192,50.035],[8.168,50.032],[8.155,50.028],[8.118,50.02],[8.102,50.016],[8.027,50.001],[8.02,49.999],[8.003,49.993],[7.996,49.988],[7.988,49.987],[7.979,49.984],[7.967,49.98],[7.952,49.978],[7.941,49.978],[7.895,49.973],[7.875,49.974],[7.86,49.985],[7.859,49.989],[7.859,50],[7.854,50.009],[7.849,50.013],[7.844,50.016],[7.831,50.021],[7.817,50.032],[7.802,50.041],[7.788,50.046],[7.775,50.054],[7.774,50.058],[7.775,50.065],[7.775,50.068],[7.776,50.072],[7.774,50.077],[7.769,50.08],[7.758,50.088],[7.734,50.108],[7.727,50.11],[7.724,50.115],[7.726,50.118],[7.735,50.126],[7.737,50.134],[7.728,50.14],[7.725,50.148],[7.711,50.157],[7.702,50.166],[7.697,50.169],[7.69,50.171],[7.68,50.17],[7.67,50.173],[7.664,50.174],[7.648,50.181],[7.647,50.184],[7.649,50.19],[7.648,50.196],[7.645,50.198],[7.644,50.201],[7.627,50.211],[7.621,50.214],[7.618,50.222],[7.613,50.227],[7.604,50.232],[7.59,50.233],[7.585,50.233],[7.577,50.24],[7.58,50.247],[7.586,50.249],[7.591,50.25],[7.604,50.25],[7.618,50.248],[7.619,50.248],[7.636,50.247],[7.638,50.248],[7.646,50.252],[7.648,50.255],[7.649,50.26],[7.647,50.265],[7.634,50.277],[7.631,50.279],[7.628,50.281],[7.62,50.287],[7.614,50.29],[7.597,50.309],[7.595,50.309],[7.595,50.309],[7.594,50.311],[7.594,50.311],[7.593,50.314],[7.589,50.319],[7.592,50.327],[7.592,50.327],[7.594,50.333],[7.596,50.339],[7.605,50.355],[7.61,50.365],[7.615,50.375],[7.616,50.378],[7.619,50.384],[7.62,50.389],[7.616,50.395],[7.609,50.399],[7.594,50.404],[7.574,50.414],[7.554,50.422],[7.539,50.425],[7.528,50.425],[7.522,50.423],[7.518,50.422],[7.51,50.417],[7.502,50.415],[7.489,50.415],[7.478,50.416],[7.464,50.421],[7.458,50.425],[7.451,50.434],[7.445,50.441],[7.441,50.443],[7.436,50.444],[7.428,50.445],[7.418,50.443],[7.404,50.443],[7.393,50.445],[7.387,50.448],[7.379,50.452],[7.356,50.466],[7.352,50.471],[7.337,50.483],[7.325,50.494],[7.31,50.506],[7.299,50.517],[7.296,50.521],[7.292,50.527],[7.288,50.532],[7.285,50.537],[7.271,50.566],[7.267,50.571],[7.258,50.576],[7.235,50.58],[7.224,50.584],[7.214,50.59],[7.212,50.596],[7.214,50.6],[7.216,50.603],[7.216,50.608],[7.215,50.623],[7.214,50.635],[7.215,50.643],[7.212,50.649],[7.209,50.652],[7.207,50.658],[7.203,50.661],[7.198,50.662],[7.195,50.664],[7.184,50.678],[7.179,50.687],[7.173,50.692],[7.166,50.707],[7.161,50.712],[7.154,50.715],[7.134,50.721],[7.127,50.724],[7.122,50.727],[7.12,50.728],[7.113,50.739],[7.107,50.75],[7.105,50.755],[7.101,50.757],[7.09,50.762],[7.09,50.762],[7.088,50.763],[7.088,50.763],[7.066,50.773],[7.059,50.776],[7.057,50.776],[7.046,50.782],[7.037,50.788],[7.034,50.797],[7.034,50.798],[7.035,50.803],[7.034,50.809],[7.029,50.816],[7.027,50.818],[7.023,50.821],[7.021,50.822],[7.012,50.824],[7,50.826],[6.999,50.826],[6.988,50.829],[6.982,50.834],[6.982,50.839],[6.983,50.84],[6.986,50.842],[6.996,50.846],[7.012,50.854],[7.018,50.859],[7.022,50.863],[7.033,50.868],[7.042,50.87],[7.049,50.874],[7.052,50.88],[7.052,50.886],[7.047,50.89],[7.039,50.893],[7.029,50.894],[7.013,50.894],[7.012,50.894],[7.005,50.895],[6.997,50.897],[6.991,50.902],[6.989,50.903],[6.977,50.914],[6.974,50.918],[6.969,50.925],[6.965,50.932],[6.96,50.939],[6.966,50.948],[6.966,50.948],[6.971,50.952],[6.992,50.965],[6.995,50.971],[6.992,50.975],[6.986,50.979],[6.972,50.978],[6.965,50.985],[6.96,50.992],[6.959,50.998],[6.96,51.003],[6.969,51.015],[6.968,51.021],[6.959,51.029],[6.95,51.033],[6.948,51.034],[6.927,51.046],[6.911,51.052],[6.856,51.071],[6.854,51.072],[6.852,51.074],[6.852,51.075],[6.85,51.079],[6.851,51.081],[6.851,51.083],[6.853,51.085],[6.854,51.086],[6.864,51.091],[6.875,51.094],[6.879,51.1],[6.879,51.105],[6.877,51.108],[6.864,51.12],[6.861,51.122],[6.853,51.127],[6.847,51.131],[6.846,51.137],[6.848,51.144],[6.853,51.15],[6.853,51.154],[6.853,51.155],[6.853,51.155],[6.849,51.157],[6.841,51.158],[6.841,51.158],[6.836,51.159],[6.833,51.159],[6.815,51.144],[6.806,51.142],[6.799,51.145],[6.797,51.146],[6.795,51.152],[6.799,51.161],[6.799,51.169],[6.795,51.17],[6.795,51.171],[6.792,51.175],[6.792,51.176],[6.788,51.179],[6.78,51.181],[6.766,51.179],[6.764,51.179],[6.759,51.18],[6.755,51.18],[6.752,51.18],[6.737,51.184],[6.733,51.192],[6.729,51.203],[6.729,51.208],[6.726,51.217],[6.728,51.225],[6.732,51.226],[6.732,51.226],[6.742,51.226],[6.746,51.225],[6.755,51.22],[6.758,51.22],[6.763,51.222],[6.764,51.227],[6.764,51.227],[6.764,51.232],[6.763,51.238],[6.759,51.243],[6.751,51.247],[6.75,51.247],[6.746,51.252],[6.722,51.259],[6.716,51.261],[6.707,51.267],[6.705,51.271],[6.705,51.281],[6.712,51.286],[6.714,51.287],[6.731,51.303],[6.732,51.309],[6.732,51.316],[6.729,51.32],[6.722,51.327],[6.706,51.334],[6.664,51.345],[6.66,51.346],[6.656,51.351],[6.662,51.365],[6.664,51.366],[6.67,51.369],[6.68,51.372],[6.705,51.373],[6.712,51.376],[6.726,51.383],[6.739,51.392],[6.743,51.397],[6.744,51.401],[6.744,51.406],[6.74,51.41],[6.732,51.418],[6.718,51.427],[6.713,51.434],[6.712,51.439],[6.715,51.448],[6.724,51.455],[6.721,51.462],[6.715,51.466],[6.69,51.475],[6.686,51.481],[6.688,51.486],[6.702,51.494],[6.715,51.498],[6.723,51.508],[6.717,51.514],[6.713,51.52],[6.709,51.521],[6.691,51.528],[6.686,51.533],[6.681,51.54],[6.682,51.546],[6.689,51.553],[6.691,51.556],[6.691,51.56],[6.691,51.565],[6.687,51.571],[6.678,51.576],[6.662,51.578],[6.652,51.577],[6.642,51.574],[6.633,51.57],[6.63,51.569],[6.612,51.568],[6.606,51.57],[6.602,51.573],[6.601,51.583],[6.603,51.59],[6.6,51.596],[6.592,51.612],[6.59,51.619],[6.592,51.625],[6.599,51.63],[6.599,51.634],[6.602,51.636],[6.605,51.642],[6.603,51.652],[6.592,51.657],[6.585,51.66],[6.566,51.659],[6.56,51.659],[6.543,51.66],[6.523,51.662],[6.499,51.662],[6.486,51.667],[6.48,51.671],[6.477,51.675],[6.476,51.68],[6.475,51.687],[6.473,51.691],[6.468,51.697],[6.463,51.702],[6.461,51.703],[6.454,51.706],[6.443,51.708],[6.433,51.71],[6.429,51.71],[6.418,51.713],[6.411,51.719],[6.412,51.724],[6.418,51.731],[6.424,51.738],[6.422,51.747],[6.418,51.752],[6.41,51.755],[6.4,51.756],[6.391,51.756],[6.35,51.756],[6.335,51.767],[6.331,51.775],[6.327,51.784],[6.316,51.798],[6.306,51.806],[6.282,51.819],[6.252,51.827],[6.223,51.83],[6.183,51.839],[6.166,51.843],[6.163,51.844],[6.162,51.845],[6.156,51.846],[6.15,51.847],[6.148,51.848],[6.148,51.849],[6.146,51.849],[6.143,51.849],[6.141,51.849],[6.14,51.849],[6.134,51.85],[6.132,51.85],[6.131,51.85],[6.119,51.85],[6.115,51.85],[6.111,51.849],[6.107,51.85],[6.106,51.85],[6.102,51.851],[6.101,51.851],[6.099,51.852],[6.098,51.853],[6.095,51.853],[6.093,51.854],[6.092,51.854],[6.093,51.855],[6.093,51.856],[6.093,51.857],[6.091,51.858],[6.09,51.858],[6.089,51.858],[6.089,51.857],[6.088,51.857],[6.086,51.858],[6.086,51.858],[6.085,51.858],[6.084,51.859],[6.083,51.86],[6.079,51.862],[6.079,51.862],[6.076,51.862],[6.07,51.866],[6.067,51.867],[6.062,51.869],[6.058,51.87],[6.032,51.881],[6.024,51.892],[6.022,51.894],[6.022,51.896],[6.02,51.898],[6.017,51.9],[6.014,51.901],[6.012,51.902],[6.008,51.903],[6.002,51.905],[5.993,51.908],[5.99,51.91],[5.984,51.915],[5.978,51.921],[5.976,51.923],[5.968,51.928],[5.965,51.931],[5.963,51.932],[5.961,51.935],[5.96,51.939],[5.959,51.942],[5.958,51.944],[5.957,51.946],[5.954,51.948],[5.949,51.951],[5.942,51.954],[5.94,51.955],[5.938,51.956],[5.936,51.958],[5.934,51.96],[5.933,51.965],[5.932,51.966],[5.93,51.967],[5.928,51.968],[5.926,51.969],[5.923,51.97],[5.92,51.97],[5.917,51.971],[5.915,51.972],[5.913,51.973],[5.91,51.974],[5.907,51.975],[5.907,51.974],[5.904,51.975],[5.904,51.975],[5.9,51.98],[5.893,51.983],[5.889,51.983],[5.886,51.983],[5.883,51.983],[5.88,51.982],[5.875,51.981],[5.874,51.981],[5.872,51.98],[5.873,51.979],[5.872,51.978],[5.871,51.977],[5.869,51.975],[5.867,51.973],[5.866,51.973],[5.859,51.968],[5.858,51.968],[5.857,51.968],[5.855,51.968],[5.853,51.969],[5.853,51.969],[5.851,51.97],[5.843,51.972],[5.84,51.973],[5.836,51.973],[5.833,51.973],[5.83,51.973],[5.827,51.972],[5.825,51.972],[5.813,51.965],[5.81,51.964],[5.808,51.963],[5.801,51.962],[5.797,51.962],[5.793,51.961],[5.787,51.96],[5.785,51.959],[5.772,51.96],[5.771,51.96],[5.763,51.963],[5.757,51.965],[5.745,51.971],[5.74,51.971],[5.737,51.971],[5.731,51.969],[5.723,51.963],[5.72,51.963],[5.718,51.963],[5.714,51.962],[5.711,51.962],[5.705,51.962],[5.704,51.961],[5.702,51.961],[5.7,51.961],[5.694,51.96],[5.691,51.959],[5.69,51.959],[5.687,51.959],[5.684,51.959],[5.681,51.958],[5.676,51.956],[5.673,51.954],[5.669,51.952],[5.664,51.952],[5.656,51.953],[5.654,51.953],[5.652,51.953],[5.649,51.953],[5.646,51.952],[5.643,51.949],[5.642,51.948],[5.641,51.947],[5.64,51.947],[5.638,51.945],[5.635,51.943],[5.633,51.942],[5.63,51.942],[5.607,51.944],[5.603,51.945],[5.596,51.949],[5.593,51.95],[5.591,51.951],[5.585,51.951],[5.572,51.954],[5.57,51.954],[5.563,51.955],[5.56,51.956],[5.557,51.957],[5.558,51.958],[5.558,51.959],[5.555,51.961],[5.555,51.96],[5.555,51.959],[5.554,51.959],[5.552,51.96],[5.55,51.961],[5.547,51.963],[5.545,51.966],[5.541,51.966],[5.54,51.966],[5.529,51.969],[5.519,51.971],[5.509,51.973],[5.506,51.974],[5.504,51.975],[5.5,51.977],[5.497,51.979],[5.49,51.981],[5.486,51.983],[5.484,51.983],[5.482,51.983],[5.474,51.984],[5.471,51.984],[5.467,51.984],[5.458,51.985],[5.454,51.985],[5.451,51.986],[5.448,51.987],[5.445,51.987],[5.442,51.988],[5.44,51.988],[5.437,51.987],[5.435,51.987],[5.432,51.987],[5.433,51.985],[5.43,51.984],[5.429,51.985],[5.428,51.985],[5.426,51.984],[5.426,51.983],[5.425,51.982],[5.424,51.982],[5.421,51.98],[5.42,51.98],[5.414,51.978],[5.412,51.977],[5.41,51.977],[5.407,51.977],[5.405,51.976],[5.404,51.976],[5.401,51.975],[5.399,51.975],[5.397,51.974],[5.396,51.974],[5.394,51.974],[5.393,51.974],[5.392,51.973],[5.392,51.973],[5.393,51.972],[5.386,51.97],[5.383,51.97],[5.38,51.97],[5.375,51.97],[5.372,51.971],[5.37,51.971],[5.364,51.972],[5.362,51.972],[5.345,51.968],[5.34,51.963],[5.336,51.961],[5.336,51.96],[5.334,51.959],[5.332,51.958],[5.328,51.957],[5.324,51.956],[5.322,51.956],[5.319,51.956],[5.316,51.957],[5.314,51.958],[5.311,51.959],[5.308,51.961],[5.304,51.962],[5.301,51.963],[5.297,51.964],[5.292,51.964],[5.288,51.964],[5.284,51.964],[5.278,51.965],[5.274,51.966],[5.271,51.967],[5.266,51.968],[5.263,51.97],[5.26,51.971],[5.257,51.973],[5.255,51.974],[5.248,51.979],[5.244,51.981],[5.24,51.981],[5.237,51.981],[5.231,51.979],[5.226,51.973],[5.223,51.969],[5.22,51.966],[5.218,51.964],[5.215,51.963],[5.212,51.961],[5.208,51.961],[5.205,51.961],[5.201,51.961],[5.198,51.962],[5.195,51.963],[5.19,51.965],[5.187,51.966],[5.179,51.969],[5.174,51.971],[5.166,51.972],[5.163,51.972],[5.158,51.972],[5.156,51.973],[5.155,51.973],[5.151,51.975],[5.151,51.975],[5.149,51.975],[5.146,51.975],[5.145,51.977],[5.143,51.98],[5.135,51.988],[5.133,51.991],[5.13,51.993],[5.126,51.996],[5.12,51.998],[5.116,51.999],[5.109,52.001],[5.105,52.002],[5.101,52.002],[5.097,52.002],[5.094,52.001],[5.091,52.001],[5.087,51.999],[5.083,51.998],[5.082,51.998],[5.077,51.996],[5.074,51.995],[5.073,51.993],[5.07,51.992],[5.067,51.992],[5.065,51.991],[5.064,51.989],[5.064,51.988],[5.063,51.986],[5.062,51.986],[5.06,51.985],[5.059,51.985],[5.058,51.986],[5.058,51.987],[5.055,51.986],[5.054,51.985],[5.05,51.983],[5.048,51.982],[5.045,51.98],[5.042,51.978],[5.042,51.978],[5.04,51.976],[5.04,51.974],[5.039,51.972],[5.037,51.971],[5.035,51.969],[5.032,51.968],[5.03,51.967],[5.027,51.967],[5.025,51.967],[5.022,51.968],[5.019,51.968],[5.017,51.97],[5.015,51.971],[5.012,51.973],[5.009,51.974],[5.007,51.976],[5.004,51.977],[5.001,51.977],[4.999,51.976],[5.003,51.977],[4.999,51.977],[4.995,51.977],[4.99,51.975],[4.986,51.974],[4.985,51.973],[4.981,51.969],[4.973,51.962],[4.968,51.96],[4.964,51.96],[4.96,51.96],[4.956,51.961],[4.952,51.963],[4.95,51.963],[4.947,51.962],[4.945,51.963],[4.944,51.963],[4.941,51.963],[4.939,51.962],[4.936,51.96],[4.935,51.959],[4.931,51.958],[4.929,51.957],[4.928,51.956],[4.927,51.956],[4.927,51.954],[4.926,51.953],[4.925,51.953],[4.922,51.95],[4.92,51.948],[4.916,51.944],[4.914,51.944],[4.909,51.943],[4.902,51.942],[4.893,51.942],[4.889,51.941],[4.882,51.94],[4.878,51.939],[4.873,51.939],[4.868,51.939],[4.866,51.94],[4.862,51.939],[4.859,51.94],[4.853,51.941],[4.851,51.941],[4.846,51.94],[4.838,51.939],[4.835,51.938],[4.833,51.937],[4.83,51.934],[4.824,51.931],[4.819,51.927],[4.775,51.915],[4.773,51.915],[4.771,51.915],[4.769,51.915],[4.766,51.914],[4.761,51.911],[4.759,51.911],[4.733,51.904],[4.732,51.903],[4.731,51.903],[4.727,51.901],[4.726,51.9],[4.723,51.899],[4.72,51.898],[4.716,51.898],[4.714,51.898],[4.704,51.899],[4.701,51.899],[4.698,51.899],[4.696,51.898],[4.693,51.897],[4.67,51.888],[4.658,51.888],[4.656,51.888],[4.653,51.888],[4.649,51.888],[4.646,51.889],[4.643,51.889],[4.64,51.889],[4.639,51.889],[4.635,51.889],[4.633,51.889],[4.631,51.888],[4.629,51.889],[4.628,51.888],[4.622,51.888],[4.617,51.888],[4.615,51.889],[4.614,51.89],[4.608,51.89],[4.604,51.891],[4.604,51.891],[4.599,51.891],[4.596,51.892],[4.593,51.893],[4.59,51.894],[4.589,51.894],[4.588,51.895],[4.585,51.897],[4.583,51.899],[4.581,51.9],[4.579,51.901],[4.576,51.901],[4.576,51.9],[4.573,51.9],[4.572,51.902],[4.57,51.901],[4.568,51.901],[4.566,51.901],[4.561,51.906],[4.568,51.91],[4.57,51.912],[4.572,51.913],[4.577,51.915],[4.58,51.918],[4.579,51.919],[4.579,51.921],[4.58,51.922],[4.581,51.922],[4.584,51.922],[4.587,51.923],[4.588,51.923],[4.589,51.924],[4.591,51.925],[4.593,51.926],[4.596,51.927],[4.6,51.928],[4.601,51.928],[4.606,51.928],[4.608,51.927],[4.609,51.927],[4.611,51.928],[4.611,51.928],[4.611,51.93],[4.611,51.931],[4.611,51.932],[4.616,51.934],[4.617,51.934],[4.619,51.937],[4.62,51.938],[4.621,51.938],[4.622,51.938],[4.624,51.938],[4.628,51.938],[4.631,51.938],[4.631,51.938],[4.633,51.942],[4.634,51.944],[4.635,51.947],[4.636,51.951],[4.637,51.952],[4.638,51.953],[4.64,51.954],[4.642,51.955],[4.642,51.955],[4.642,51.956],[4.64,51.959],[4.637,51.961],[4.635,51.962],[4.632,51.965],[4.633,51.969],[4.638,51.972],[4.642,51.973],[4.645,51.973],[4.648,51.974],[4.649,51.975],[4.653,51.977],[4.654,51.978],[4.658,51.978],[4.66,51.979],[4.664,51.98],[4.668,51.981],[4.668,51.982],[4.667,51.982],[4.668,51.983],[4.668,51.984],[4.67,51.986],[4.671,51.987],[4.674,51.989],[4.676,51.99],[4.678,51.992],[4.679,51.993],[4.683,51.995],[4.685,51.996],[4.687,51.998],[4.689,51.998],[4.69,51.999],[4.692,51.999],[4.693,52.004],[4.692,52.006],[4.691,52.008],[4.689,52.009],[4.687,52.011],[4.685,52.013],[4.683,52.016],[4.681,52.021],[4.677,52.022],[4.674,52.023],[4.672,52.023],[4.67,52.024],[4.669,52.026],[4.665,52.028],[4.661,52.032],[4.66,52.037],[4.66,52.041],[4.662,52.049],[4.664,52.059],[4.66,52.064],[4.659,52.07],[4.66,52.075],[4.661,52.082],[4.662,52.084],[4.662,52.087],[4.663,52.089],[4.663,52.091],[4.664,52.096],[4.665,52.1],[4.668,52.106],[4.671,52.111],[4.672,52.113],[4.673,52.115],[4.675,52.119],[4.673,52.12],[4.669,52.121],[4.668,52.121],[4.667,52.122],[4.665,52.124],[4.663,52.128],[4.664,52.131],[4.664,52.136],[4.663,52.139],[4.663,52.14],[4.662,52.141],[4.659,52.142],[4.657,52.142],[4.653,52.143],[4.651,52.143],[4.649,52.143],[4.647,52.143],[4.636,52.14],[4.632,52.14],[4.63,52.139],[4.627,52.138],[4.626,52.137],[4.623,52.135],[4.622,52.134],[4.621,52.132],[4.618,52.131],[4.615,52.13],[4.612,52.13],[4.599,52.132],[4.595,52.132],[4.591,52.132],[4.588,52.13],[4.584,52.129],[4.581,52.129],[4.572,52.129],[4.566,52.13],[4.561,52.132],[4.558,52.134],[4.553,52.137],[4.548,52.139],[4.543,52.141],[4.537,52.141],[4.534,52.142],[4.532,52.142],[4.53,52.143],[4.529,52.144],[4.526,52.145],[4.524,52.147],[4.522,52.154],[4.521,52.154],[4.52,52.155],[4.518,52.156],[4.513,52.157],[4.512,52.157],[4.511,52.157],[4.509,52.157],[4.504,52.157],[4.505,52.158],[4.505,52.159],[4.506,52.161],[4.506,52.161],[4.505,52.162],[4.504,52.162],[4.503,52.163],[4.5,52.163],[4.499,52.164],[4.494,52.164],[4.493,52.164],[4.492,52.164],[4.491,52.164],[4.49,52.164],[4.487,52.165],[4.485,52.164],[4.483,52.163],[4.481,52.161],[4.479,52.159],[4.476,52.159],[4.474,52.158],[4.472,52.157],[4.47,52.155],[4.468,52.154],[4.465,52.152],[4.463,52.153],[4.46,52.154],[4.457,52.156],[4.455,52.158],[4.45,52.161],[4.449,52.162],[4.448,52.163],[4.447,52.165],[4.447,52.167],[4.447,52.17],[4.447,52.171],[4.448,52.172],[4.449,52.173],[4.449,52.178],[4.447,52.179],[4.444,52.179],[4.441,52.18],[4.436,52.181],[4.434,52.183],[4.43,52.187],[4.427,52.189],[4.427,52.191],[4.426,52.192],[4.427,52.194],[4.428,52.194],[4.429,52.195],[4.431,52.196],[4.43,52.197],[4.421,52.203],[4.418,52.204],[4.409,52.207]],[[5.264,43.291],[5.164,43.291],[5.064,43.291],[4.964,43.291],[4.864,43.291],[4.764,43.291],[4.664,43.291],[4.564,43.391],[4.627,43.687]],[[4.717,44.125],[4.716,44.123],[4.717,44.122],[4.718,44.119],[4.719,44.117],[4.719,44.116],[4.72,44.114],[4.721,44.111],[4.721,44.11],[4.722,44.109],[4.724,44.108],[4.726,44.106],[4.727,44.105],[4.729,44.104],[4.728,44.102],[4.727,44.101],[4.726,44.1],[4.726,44.098],[4.726,44.097],[4.726,44.097],[4.726,44.097],[4.726,44.096],[4.727,44.095],[4.727,44.094],[4.729,44.092],[4.73,44.092],[4.732,44.091],[4.732,44.091],[4.734,44.09],[4.735,44.089],[4.737,44.089],[4.74,44.088],[4.746,44.087],[4.75,44.086],[4.752,44.085],[4.754,44.084],[4.757,44.083],[4.758,44.081],[4.76,44.079],[4.762,44.077],[4.765,44.075],[4.767,44.074],[4.769,44.073],[4.771,44.072],[4.775,44.072],[4.779,44.071],[4.779,44.071],[4.782,44.07],[4.787,44.069],[4.788,44.068],[4.79,44.066],[4.79,44.065],[4.791,44.063],[4.791,44.061],[4.791,44.06],[4.791,44.059],[4.79,44.058],[4.79,44.055],[4.79,44.054],[4.791,44.053],[4.793,44.051],[4.797,44.05],[4.798,44.049],[4.803,44.046],[4.806,44.044],[4.808,44.042],[4.81,44.04],[4.813,44.038],[4.815,44.036],[4.817,44.035],[4.818,44.033],[4.819,44.031],[4.82,44.028],[4.82,44.027],[4.821,44.022],[4.82,44.013],[4.821,44.01],[4.821,44.008],[4.822,44.006],[4.822,44.006],[4.821,44.003],[4.821,44],[4.821,43.999],[4.821,43.995],[4.821,43.992],[4.82,43.988],[4.819,43.982],[4.819,43.977],[4.818,43.976],[4.818,43.974],[4.818,43.972],[4.817,43.969],[4.817,43.966],[4.816,43.965],[4.816,43.964],[4.815,43.963],[4.814,43.962],[4.811,43.96],[4.807,43.959],[4.803,43.957],[4.8,43.956],[4.798,43.954],[4.796,43.953],[4.795,43.953],[4.795,43.952],[4.794,43.951],[4.792,43.949],[4.791,43.947],[4.79,43.946],[4.788,43.944],[4.787,43.943],[4.785,43.942],[4.785,43.942],[4.786,43.941],[4.771,43.938],[4.766,43.937],[4.759,43.936],[4.755,43.935],[4.75,43.934],[4.746,43.932],[4.743,43.929],[4.739,43.926],[4.736,43.923],[4.733,43.919],[4.729,43.915],[4.726,43.911],[4.723,43.909],[4.721,43.907],[4.718,43.906],[4.713,43.904],[4.706,43.902],[4.704,43.902],[4.701,43.9],[4.7,43.9],[4.697,43.898],[4.693,43.894],[4.69,43.89],[4.687,43.887],[4.685,43.886],[4.683,43.885],[4.675,43.883],[4.665,43.88],[4.661,43.879],[4.656,43.877],[4.65,43.874],[4.646,43.872],[4.643,43.871],[4.64,43.87],[4.634,43.87],[4.627,43.869],[4.625,43.868],[4.622,43.866],[4.621,43.865],[4.619,43.863],[4.619,43.861],[4.618,43.858],[4.618,43.853],[4.62,43.849],[4.623,43.843],[4.623,43.843],[4.622,43.843],[4.621,43.842],[4.622,43.841],[4.622,43.839],[4.623,43.836],[4.623,43.834],[4.624,43.833],[4.624,43.832],[4.624,43.83],[4.624,43.83],[4.625,43.828],[4.626,43.827],[4.627,43.826],[4.628,43.825],[4.628,43.825],[4.63,43.824],[4.632,43.823],[4.633,43.823],[4.634,43.823],[4.636,43.822],[4.638,43.821],[4.639,43.821],[4.641,43.819],[4.643,43.817],[4.644,43.816],[4.645,43.815],[4.646,43.814],[4.648,43.813],[4.648,43.811],[4.648,43.81],[4.649,43.809],[4.649,43.807],[4.649,43.806],[4.65,43.805],[4.65,43.805],[4.649,43.804],[4.649,43.804],[4.649,43.802],[4.649,43.801],[4.648,43.8],[4.648,43.799],[4.648,43.8],[4.647,43.8],[4.647,43.801],[4.647,43.801],[4.647,43.8],[4.648,43.798],[4.648,43.796],[4.647,43.795],[4.647,43.793],[4.648,43.791],[4.649,43.789],[4.649,43.788],[4.649,43.785],[4.647,43.782],[4.644,43.778],[4.64,43.776],[4.639,43.775],[4.638,43.774],[4.638,43.774],[4.637,43.773],[4.636,43.772],[4.635,43.772],[4.634,43.771],[4.633,43.77],[4.632,43.769],[4.63,43.767],[4.629,43.767],[4.629,43.767],[4.628,43.767],[4.628,43.767],[4.627,43.766],[4.626,43.766],[4.626,43.766],[4.625,43.765],[4.626,43.765],[4.628,43.764],[4.628,43.758],[4.628,43.756],[4.628,43.756],[4.627,43.755],[4.627,43.755],[4.627,43.754],[4.627,43.753],[4.626,43.753],[4.625,43.746],[4.625,43.745],[4.625,43.744],[4.624,43.743],[4.623,43.742],[4.623,43.742],[4.622,43.741],[4.622,43.74],[4.622,43.74],[4.621,43.739],[4.621,43.739],[4.62,43.736],[4.619,43.734],[4.619,43.733],[4.618,43.733],[4.618,43.733],[4.617,43.732],[4.617,43.731],[4.618,43.728],[4.618,43.727],[4.618,43.727],[4.618,43.725],[4.618,43.725],[4.619,43.725],[4.619,43.725],[4.619,43.724],[4.618,43.724],[4.618,43.723],[4.617,43.722],[4.617,43.721],[4.617,43.72],[4.617,43.72],[4.617,43.719],[4.617,43.717],[4.617,43.717],[4.618,43.717],[4.618,43.716],[4.617,43.715],[4.618,43.715],[4.618,43.714],[4.619,43.712],[4.619,43.71],[4.619,43.708],[4.62,43.707],[4.62,43.706],[4.62,43.705],[4.621,43.704],[4.622,43.702],[4.625,43.699],[4.626,43.699],[4.627,43.697],[4.628,43.695],[4.628,43.694],[4.628,43.694],[4.629,43.694],[4.629,43.694],[4.63,43.691],[4.63,43.69],[4.628,43.688]],[[4.801,44.159],[4.798,44.158],[4.797,44.157],[4.796,44.157],[4.796,44.156],[4.794,44.155],[4.793,44.154],[4.791,44.153],[4.789,44.152],[4.789,44.151],[4.788,44.15],[4.787,44.149],[4.785,44.148],[4.783,44.149],[4.782,44.149],[4.781,44.149],[4.78,44.15],[4.778,44.149],[4.777,44.149],[4.776,44.15],[4.775,44.15],[4.773,44.15],[4.772,44.149],[4.771,44.149],[4.769,44.15],[4.769,44.149],[4.768,44.147],[4.767,44.146],[4.766,44.146],[4.765,44.146],[4.764,44.146],[4.763,44.147],[4.761,44.147],[4.76,44.147],[4.758,44.146],[4.757,44.146],[4.755,44.145],[4.754,44.145],[4.753,44.145],[4.751,44.145],[4.751,44.146],[4.75,44.147],[4.749,44.148],[4.748,44.148],[4.747,44.148],[4.745,44.148],[4.744,44.148],[4.742,44.148],[4.739,44.148],[4.738,44.148],[4.737,44.148],[4.735,44.147],[4.734,44.147],[4.732,44.146],[4.731,44.146],[4.731,44.145],[4.731,44.145],[4.731,44.143],[4.731,44.143],[4.73,44.143],[4.73,44.142],[4.731,44.142],[4.731,44.142],[4.731,44.141],[4.731,44.141],[4.731,44.141],[4.733,44.139],[4.733,44.139],[4.734,44.137],[4.734,44.136],[4.734,44.135],[4.731,44.134],[4.731,44.133],[4.73,44.132],[4.727,44.131],[4.725,44.131],[4.723,44.13],[4.721,44.129],[4.719,44.128],[4.718,44.127],[4.717,44.125]],[[6.002,47.224],[6,47.222],[5.999,47.22],[5.997,47.219],[5.996,47.217],[5.995,47.216],[5.995,47.214],[5.995,47.214],[5.993,47.213],[5.992,47.212],[5.991,47.21],[5.99,47.21],[5.987,47.208],[5.986,47.208],[5.985,47.208],[5.984,47.209],[5.983,47.209],[5.981,47.209],[5.977,47.209],[5.974,47.209],[5.972,47.209],[5.97,47.209],[5.968,47.209],[5.965,47.209],[5.963,47.209],[5.963,47.209],[5.962,47.208],[5.961,47.207],[5.961,47.206],[5.96,47.204],[5.961,47.203],[5.962,47.203],[5.963,47.202],[5.965,47.2],[5.966,47.199],[5.966,47.199],[5.965,47.197],[5.964,47.196],[5.963,47.195],[5.962,47.195],[5.959,47.193],[5.958,47.193],[5.957,47.192],[5.955,47.192],[5.951,47.191],[5.949,47.19],[5.948,47.189],[5.944,47.186],[5.939,47.184],[5.934,47.182],[5.927,47.181],[5.921,47.179],[5.915,47.179],[5.908,47.181],[5.9,47.185],[5.894,47.19],[5.89,47.191],[5.885,47.19],[5.883,47.187],[5.885,47.184],[5.888,47.181],[5.894,47.18],[5.896,47.178],[5.897,47.176],[5.897,47.175],[5.896,47.172],[5.893,47.17],[5.887,47.169],[5.886,47.166],[5.886,47.165],[5.886,47.165],[5.886,47.164],[5.886,47.161],[5.886,47.16],[5.886,47.159],[5.887,47.158],[5.887,47.157],[5.887,47.156],[5.888,47.156],[5.889,47.154],[5.889,47.154],[5.889,47.153],[5.889,47.153],[5.889,47.152],[5.888,47.152],[5.887,47.152],[5.886,47.152],[5.885,47.151],[5.884,47.151],[5.883,47.15],[5.88,47.15],[5.877,47.15],[5.875,47.15],[5.872,47.15],[5.87,47.149],[5.869,47.149],[5.867,47.148],[5.865,47.147],[5.863,47.146],[5.862,47.145],[5.86,47.143],[5.857,47.142],[5.854,47.142],[5.852,47.142],[5.851,47.141],[5.849,47.141],[5.846,47.141],[5.844,47.141],[5.842,47.142],[5.84,47.143],[5.839,47.143],[5.839,47.144],[5.84,47.144],[5.841,47.144],[5.841,47.145],[5.842,47.146],[5.842,47.146],[5.842,47.147],[5.842,47.147],[5.843,47.148],[5.843,47.149],[5.842,47.149],[5.843,47.15],[5.843,47.151],[5.843,47.151],[5.845,47.152],[5.846,47.152],[5.847,47.153],[5.849,47.154],[5.85,47.154],[5.851,47.155],[5.852,47.156],[5.853,47.157],[5.853,47.158],[5.854,47.159],[5.856,47.16],[5.857,47.162],[5.857,47.163],[5.857,47.163],[5.857,47.165],[5.857,47.165],[5.857,47.166],[5.856,47.167],[5.855,47.168],[5.854,47.17],[5.853,47.171],[5.853,47.172],[5.852,47.172],[5.851,47.173],[5.85,47.174],[5.849,47.174],[5.847,47.174],[5.845,47.175],[5.843,47.175],[5.842,47.175],[5.84,47.176],[5.838,47.176],[5.837,47.176],[5.836,47.176],[5.834,47.176],[5.832,47.175],[5.831,47.175],[5.829,47.174],[5.828,47.175],[5.827,47.175],[5.826,47.174],[5.821,47.176],[5.815,47.177],[5.809,47.178],[5.803,47.179],[5.795,47.179],[5.788,47.178],[5.783,47.177],[5.778,47.174],[5.774,47.171],[5.772,47.169],[5.769,47.169],[5.769,47.168],[5.768,47.168],[5.768,47.167],[5.767,47.165],[5.767,47.163],[5.767,47.162],[5.765,47.162],[5.763,47.161],[5.762,47.16],[5.76,47.16],[5.759,47.159],[5.758,47.159],[5.756,47.158],[5.755,47.158],[5.753,47.157],[5.75,47.157],[5.749,47.158],[5.748,47.158],[5.746,47.158],[5.745,47.159],[5.744,47.159],[5.742,47.16],[5.741,47.16],[5.74,47.16],[5.736,47.159],[5.731,47.157],[5.73,47.156],[5.727,47.156],[5.726,47.156],[5.724,47.155],[5.723,47.153],[5.722,47.152],[5.722,47.152],[5.721,47.151],[5.719,47.15],[5.718,47.15],[5.716,47.149],[5.714,47.149],[5.712,47.148],[5.71,47.149],[5.708,47.149],[5.707,47.15],[5.706,47.15],[5.706,47.151],[5.706,47.152],[5.708,47.152],[5.709,47.152],[5.71,47.152],[5.711,47.152],[5.712,47.153],[5.713,47.153],[5.714,47.154],[5.715,47.156],[5.715,47.157],[5.715,47.158],[5.713,47.158],[5.708,47.158],[5.701,47.157],[5.694,47.157],[5.689,47.155],[5.685,47.153],[5.68,47.151],[5.676,47.149],[5.673,47.148],[5.672,47.147],[5.67,47.147],[5.667,47.147],[5.666,47.148],[5.664,47.148],[5.663,47.149],[5.662,47.15],[5.662,47.15],[5.662,47.151],[5.662,47.151],[5.663,47.152],[5.664,47.152],[5.664,47.153],[5.663,47.153],[5.662,47.154],[5.66,47.154],[5.654,47.154],[5.649,47.154],[5.645,47.155],[5.643,47.155],[5.642,47.155],[5.64,47.154],[5.638,47.153],[5.636,47.153],[5.635,47.152],[5.635,47.151],[5.635,47.149],[5.635,47.148],[5.635,47.147],[5.634,47.146],[5.633,47.146],[5.632,47.146],[5.63,47.146],[5.627,47.146],[5.624,47.146],[5.62,47.146],[5.617,47.146],[5.614,47.146],[5.612,47.147],[5.61,47.148],[5.609,47.148],[5.607,47.149],[5.606,47.148],[5.602,47.147],[5.6,47.147],[5.6,47.146],[5.601,47.145],[5.601,47.145],[5.601,47.144],[5.601,47.144],[5.6,47.143],[5.599,47.143],[5.598,47.143],[5.597,47.142],[5.596,47.141],[5.595,47.14],[5.594,47.14],[5.593,47.14],[5.593,47.14],[5.589,47.138],[5.588,47.138],[5.587,47.138],[5.586,47.139],[5.585,47.139],[5.584,47.14],[5.583,47.141],[5.582,47.142],[5.582,47.143],[5.58,47.142],[5.567,47.135],[5.567,47.134],[5.567,47.134],[5.564,47.131],[5.562,47.13],[5.561,47.129],[5.56,47.128],[5.559,47.127],[5.557,47.126],[5.554,47.124],[5.553,47.122],[5.552,47.121],[5.551,47.12],[5.55,47.119],[5.55,47.117],[5.55,47.116],[5.551,47.114],[5.551,47.111],[5.551,47.11],[5.551,47.109],[5.55,47.109],[5.549,47.108],[5.547,47.107],[5.545,47.107],[5.543,47.106],[5.54,47.105],[5.537,47.104],[5.534,47.102],[5.533,47.101],[5.532,47.1],[5.531,47.099],[5.531,47.098],[5.531,47.097],[5.532,47.095],[5.533,47.094],[5.534,47.093],[5.534,47.093],[5.532,47.092],[5.531,47.092],[5.531,47.093],[5.531,47.093],[5.529,47.093],[5.527,47.092],[5.525,47.091],[5.524,47.09],[5.522,47.09],[5.522,47.089],[5.52,47.089],[5.519,47.09],[5.518,47.09],[5.518,47.091],[5.517,47.092],[5.516,47.093],[5.513,47.094],[5.512,47.095],[5.505,47.097],[5.501,47.097],[5.5,47.097],[5.5,47.097],[5.499,47.097],[5.499,47.097],[5.499,47.098],[5.498,47.097],[5.497,47.097],[5.495,47.096],[5.493,47.096],[5.491,47.095],[5.487,47.093],[5.485,47.091],[5.484,47.09],[5.484,47.089],[5.484,47.088],[5.485,47.088],[5.486,47.087],[5.487,47.086],[5.487,47.083],[5.482,47.081],[5.479,47.08],[5.475,47.079],[5.472,47.078],[5.471,47.077],[5.471,47.076],[5.47,47.075],[5.47,47.075],[5.471,47.073],[5.473,47.071],[5.474,47.069],[5.477,47.068],[5.478,47.066],[5.478,47.065],[5.477,47.064],[5.475,47.064],[5.474,47.064],[5.469,47.065],[5.469,47.065],[5.467,47.065],[5.466,47.064],[5.464,47.063],[5.462,47.062],[5.459,47.06],[5.459,47.06],[5.457,47.059],[5.455,47.058],[5.453,47.058],[5.451,47.058],[5.448,47.058],[5.447,47.058],[5.447,47.057],[5.448,47.056],[5.449,47.056],[5.451,47.054],[5.452,47.054],[5.454,47.052],[5.455,47.051],[5.456,47.048],[5.456,47.047],[5.456,47.045],[5.455,47.045],[5.455,47.043],[5.454,47.042],[5.451,47.04],[5.45,47.039],[5.448,47.038],[5.447,47.037],[5.446,47.037],[5.447,47.036],[5.447,47.036],[5.446,47.035],[5.446,47.034],[5.446,47.034],[5.446,47.033],[5.448,47.032],[5.449,47.031],[5.449,47.03],[5.449,47.03],[5.45,47.027],[5.45,47.025],[5.45,47.022],[5.45,47.021],[5.45,47.02],[5.45,47.019],[5.45,47.018],[5.449,47.017],[5.448,47.016],[5.447,47.015],[5.445,47.014],[5.444,47.013],[5.443,47.013],[5.443,47.012],[5.442,47.011],[5.44,47.01],[5.439,47.01],[5.437,47.009],[5.434,47.01],[5.432,47.011],[5.43,47.011],[5.429,47.012],[5.428,47.012],[5.427,47.013],[5.427,47.014],[5.425,47.015],[5.425,47.016],[5.423,47.018],[5.421,47.02],[5.417,47.021],[5.415,47.021],[5.414,47.022],[5.412,47.022],[5.409,47.022],[5.407,47.022],[5.405,47.022],[5.404,47.022],[5.403,47.021],[5.401,47.018],[5.401,47.017],[5.4,47.015],[5.4,47.013],[5.398,47.011],[5.396,47.01],[5.395,47.01],[5.393,47.01],[5.392,47.01],[5.391,47.011],[5.389,47.011],[5.387,47.011],[5.384,47.011],[5.382,47.012],[5.381,47.012],[5.381,47.012],[5.379,47.011],[5.377,47.009],[5.377,47.009],[5.376,47.008],[5.375,47.006],[5.376,47.004],[5.376,47.003],[5.377,47.001],[5.377,47.001],[5.377,47],[5.377,47],[5.378,46.999],[5.379,46.998],[5.379,46.997],[5.38,46.996],[5.381,46.994],[5.381,46.993],[5.381,46.992],[5.38,46.991],[5.379,46.989],[5.378,46.988],[5.378,46.988],[5.377,46.988],[5.376,46.987],[5.376,46.986],[5.376,46.985],[5.376,46.984],[5.375,46.983],[5.375,46.982],[5.376,46.981],[5.377,46.98],[5.378,46.978],[5.378,46.977],[5.379,46.976],[5.38,46.975],[5.38,46.974],[5.381,46.973],[5.382,46.971],[5.382,46.971],[5.383,46.971],[5.383,46.97],[5.384,46.97],[5.384,46.969],[5.384,46.968],[5.385,46.967],[5.385,46.966],[5.385,46.965],[5.385,46.964],[5.385,46.963],[5.384,46.963],[5.383,46.963],[5.38,46.962],[5.379,46.961],[5.377,46.96],[5.373,46.959],[5.372,46.959],[5.372,46.958],[5.371,46.958],[5.371,46.958],[5.369,46.957],[5.369,46.957],[5.367,46.956],[5.366,46.955],[5.365,46.954],[5.364,46.953],[5.364,46.951],[5.364,46.95],[5.365,46.949],[5.365,46.949],[5.365,46.948],[5.365,46.947],[5.366,46.947],[5.366,46.946],[5.366,46.946],[5.365,46.943],[5.365,46.943],[5.367,46.942],[5.368,46.941],[5.369,46.941],[5.369,46.94],[5.368,46.94],[5.367,46.94],[5.366,46.941],[5.365,46.941],[5.364,46.94],[5.364,46.94],[5.364,46.939],[5.363,46.937],[5.363,46.936],[5.362,46.935],[5.361,46.934],[5.359,46.933],[5.358,46.932],[5.357,46.932],[5.357,46.932],[5.355,46.932],[5.354,46.932],[5.353,46.932],[5.353,46.931],[5.351,46.931],[5.348,46.932],[5.346,46.932],[5.344,46.932],[5.34,46.933],[5.336,46.933],[5.333,46.933],[5.33,46.933],[5.327,46.932],[5.322,46.932],[5.321,46.932],[5.319,46.932],[5.317,46.932],[5.317,46.933],[5.317,46.933],[5.315,46.933],[5.312,46.932],[5.309,46.932],[5.307,46.932],[5.306,46.933],[5.306,46.934],[5.306,46.935],[5.305,46.936],[5.305,46.936],[5.306,46.937],[5.304,46.938],[5.304,46.939],[5.303,46.941],[5.302,46.943],[5.302,46.944],[5.301,46.945],[5.301,46.946],[5.3,46.946],[5.299,46.947],[5.299,46.948],[5.297,46.948],[5.295,46.949],[5.294,46.949],[5.29,46.95],[5.289,46.949],[5.288,46.949],[5.287,46.948],[5.286,46.947],[5.285,46.946],[5.284,46.945],[5.283,46.945],[5.281,46.944],[5.28,46.943],[5.279,46.942],[5.277,46.941],[5.276,46.94],[5.274,46.938],[5.272,46.938],[5.272,46.938],[5.271,46.937],[5.27,46.937],[5.269,46.937],[5.268,46.937],[5.268,46.938],[5.267,46.938],[5.267,46.939],[5.264,46.941],[5.263,46.941],[5.261,46.941],[5.261,46.942],[5.26,46.94],[5.26,46.939],[5.259,46.939],[5.259,46.939],[5.258,46.94],[5.257,46.94],[5.255,46.941],[5.254,46.941],[5.253,46.94],[5.251,46.94],[5.25,46.94],[5.248,46.94],[5.247,46.939],[5.246,46.939],[5.245,46.939],[5.243,46.939],[5.242,46.939],[5.24,46.939],[5.239,46.938],[5.238,46.937],[5.237,46.937],[5.236,46.936],[5.236,46.935],[5.237,46.934],[5.237,46.933],[5.236,46.932],[5.235,46.932],[5.234,46.932],[5.233,46.932],[5.232,46.932],[5.231,46.932],[5.23,46.932],[5.229,46.932],[5.228,46.932],[5.227,46.932],[5.227,46.931],[5.226,46.93],[5.224,46.93],[5.222,46.93],[5.22,46.93],[5.219,46.931],[5.218,46.931],[5.216,46.932],[5.214,46.932],[5.212,46.932],[5.211,46.931],[5.21,46.931],[5.21,46.93],[5.209,46.93],[5.209,46.929],[5.209,46.929],[5.21,46.928],[5.209,46.928],[5.209,46.928],[5.208,46.928],[5.208,46.927],[5.208,46.924],[5.207,46.924],[5.207,46.924],[5.206,46.924],[5.205,46.924],[5.204,46.925],[5.203,46.927],[5.203,46.928],[5.201,46.929],[5.2,46.929],[5.199,46.93],[5.198,46.93],[5.198,46.931],[5.198,46.932],[5.196,46.934],[5.195,46.935],[5.193,46.936],[5.193,46.937],[5.191,46.938],[5.191,46.939],[5.191,46.94],[5.191,46.942],[5.192,46.943],[5.193,46.944],[5.193,46.945],[5.192,46.945],[5.192,46.945],[5.191,46.945],[5.189,46.944],[5.188,46.943],[5.187,46.942],[5.187,46.94],[5.186,46.938],[5.185,46.938],[5.184,46.937],[5.183,46.937],[5.182,46.937],[5.181,46.937],[5.18,46.937],[5.179,46.936],[5.177,46.936],[5.175,46.936],[5.173,46.936],[5.172,46.935],[5.171,46.935],[5.17,46.935],[5.168,46.935],[5.166,46.934],[5.164,46.935],[5.162,46.935],[5.159,46.936],[5.158,46.936],[5.157,46.937],[5.156,46.938],[5.156,46.938],[5.156,46.939],[5.156,46.94],[5.157,46.941],[5.157,46.942],[5.156,46.943],[5.156,46.944],[5.155,46.945],[5.154,46.945],[5.154,46.945],[5.151,46.947],[5.15,46.948],[5.149,46.948],[5.149,46.948],[5.149,46.948],[5.149,46.948],[5.148,46.949],[5.146,46.949],[5.145,46.949],[5.144,46.949],[5.144,46.949],[5.145,46.949],[5.145,46.949],[5.145,46.949],[5.144,46.948],[5.143,46.948],[5.142,46.948],[5.141,46.948],[5.139,46.948],[5.137,46.948],[5.135,46.948],[5.134,46.948],[5.132,46.948],[5.131,46.948],[5.13,46.948],[5.129,46.948],[5.127,46.948],[5.125,46.948],[5.124,46.948],[5.122,46.949],[5.121,46.949],[5.12,46.949],[5.119,46.948],[5.118,46.948],[5.117,46.946],[5.116,46.943],[5.115,46.942],[5.114,46.941],[5.112,46.939],[5.111,46.938],[5.109,46.937],[5.107,46.936],[5.104,46.935],[5.102,46.934],[5.101,46.933],[5.1,46.933],[5.099,46.933],[5.096,46.931],[5.094,46.93],[5.093,46.929],[5.092,46.928],[5.091,46.926],[5.09,46.924],[5.09,46.924],[5.09,46.923],[5.09,46.922],[5.088,46.921],[5.088,46.921],[5.088,46.921],[5.088,46.921],[5.087,46.921],[5.087,46.92],[5.086,46.92],[5.085,46.918],[5.085,46.917],[5.085,46.916],[5.086,46.914],[5.086,46.913],[5.086,46.912],[5.084,46.911],[5.083,46.91],[5.081,46.909],[5.079,46.908],[5.077,46.907],[5.076,46.907],[5.074,46.905],[5.072,46.904],[5.07,46.902],[5.069,46.901],[5.068,46.901],[5.067,46.901],[5.066,46.9],[5.065,46.901],[5.064,46.901],[5.063,46.901],[5.062,46.902],[5.061,46.902],[5.059,46.902],[5.058,46.902],[5.057,46.902],[5.055,46.903],[5.053,46.903],[5.05,46.903],[5.048,46.903],[5.044,46.903],[5.041,46.903],[5.039,46.903],[5.038,46.902],[5.036,46.902],[5.035,46.901],[5.033,46.901],[5.031,46.901],[5.03,46.901],[5.029,46.902],[5.028,46.903],[5.028,46.904],[5.028,46.905],[5.027,46.905],[5.027,46.905],[5.026,46.905],[5.025,46.905],[5.024,46.905],[5.023,46.904],[5.022,46.905],[5.021,46.905],[5.02,46.906],[5.019,46.906],[5.017,46.906],[5.015,46.907],[5.012,46.909],[5.012,46.91],[5.011,46.911],[5.01,46.913],[5.009,46.914],[5.007,46.915],[5.006,46.915],[5.004,46.915],[5.003,46.914],[5.002,46.914],[5.001,46.913],[5,46.912],[4.999,46.911],[4.997,46.909],[4.997,46.909],[4.996,46.909],[4.995,46.909],[4.995,46.908],[4.994,46.907],[4.994,46.907],[4.994,46.906],[4.993,46.906],[4.993,46.905],[4.992,46.905],[4.992,46.904],[4.991,46.904],[4.99,46.904],[4.989,46.904],[4.988,46.904],[4.986,46.904],[4.985,46.904],[4.983,46.904],[4.981,46.904],[4.98,46.905],[4.978,46.905],[4.976,46.905],[4.975,46.905],[4.974,46.905],[4.973,46.905],[4.972,46.905],[4.97,46.904],[4.969,46.904],[4.968,46.903],[4.966,46.902],[4.964,46.901],[4.964,46.901],[4.963,46.901],[4.962,46.901],[4.961,46.9],[4.96,46.9],[4.958,46.9],[4.957,46.9],[4.956,46.9],[4.954,46.899],[4.954,46.899],[4.953,46.899],[4.952,46.898],[4.951,46.898],[4.951,46.896],[4.95,46.895],[4.95,46.894],[4.95,46.893],[4.95,46.893],[4.95,46.891],[4.95,46.891],[4.95,46.89],[4.951,46.889],[4.951,46.888],[4.953,46.888],[4.954,46.887],[4.956,46.886],[4.957,46.885],[4.958,46.885],[4.96,46.884],[4.961,46.883],[4.962,46.883],[4.963,46.881],[4.963,46.88],[4.963,46.88],[4.963,46.879],[4.963,46.878],[4.962,46.878],[4.962,46.877],[4.961,46.877],[4.959,46.876],[4.958,46.875],[4.956,46.874],[4.955,46.874],[4.955,46.873],[4.954,46.872],[4.954,46.871],[4.953,46.871],[4.954,46.87],[4.954,46.87],[4.955,46.869],[4.955,46.868],[4.957,46.867],[4.958,46.867],[4.959,46.866],[4.96,46.866],[4.961,46.865],[4.962,46.864],[4.962,46.864],[4.962,46.863],[4.962,46.862],[4.962,46.861],[4.962,46.86],[4.962,46.86],[4.962,46.859],[4.961,46.858],[4.961,46.856],[4.961,46.854],[4.962,46.854],[4.962,46.853],[4.962,46.852],[4.962,46.852],[4.962,46.851],[4.961,46.85],[4.961,46.849],[4.96,46.848],[4.96,46.847],[4.96,46.847],[4.959,46.846],[4.959,46.846],[4.958,46.845],[4.957,46.844],[4.956,46.844],[4.955,46.843],[4.954,46.842],[4.952,46.841],[4.95,46.839],[4.949,46.838],[4.948,46.837],[4.947,46.837],[4.945,46.836],[4.944,46.836],[4.943,46.835],[4.943,46.834],[4.942,46.834],[4.942,46.833],[4.941,46.833],[4.94,46.832],[4.939,46.831],[4.938,46.83],[4.938,46.829],[4.937,46.828],[4.937,46.827],[4.937,46.826],[4.936,46.824],[4.936,46.824],[4.935,46.823],[4.935,46.822],[4.934,46.822],[4.933,46.822],[4.931,46.821],[4.93,46.821],[4.928,46.82],[4.926,46.819],[4.923,46.817],[4.92,46.815],[4.919,46.814],[4.918,46.814],[4.917,46.812],[4.917,46.811],[4.917,46.811],[4.916,46.81],[4.915,46.809],[4.914,46.808],[4.913,46.808],[4.912,46.807],[4.91,46.806],[4.909,46.805],[4.908,46.805],[4.906,46.804],[4.905,46.804],[4.903,46.804],[4.9,46.806],[4.898,46.806],[4.897,46.807],[4.897,46.807],[4.896,46.808],[4.894,46.809],[4.892,46.81],[4.891,46.811],[4.891,46.811],[4.89,46.811],[4.888,46.811],[4.886,46.811],[4.885,46.811],[4.884,46.811],[4.883,46.811],[4.882,46.81],[4.881,46.809],[4.879,46.809],[4.879,46.808],[4.878,46.807],[4.877,46.807],[4.877,46.807],[4.877,46.805],[4.877,46.805],[4.877,46.805],[4.876,46.805],[4.876,46.805],[4.876,46.805],[4.875,46.805],[4.875,46.804],[4.875,46.804],[4.875,46.804],[4.876,46.804],[4.876,46.804],[4.876,46.804],[4.877,46.803],[4.877,46.802],[4.877,46.802],[4.877,46.801],[4.877,46.801],[4.877,46.8],[4.877,46.8],[4.877,46.799],[4.877,46.799],[4.876,46.798],[4.875,46.798],[4.874,46.797],[4.873,46.796],[4.871,46.795],[4.869,46.795],[4.867,46.794],[4.865,46.793],[4.864,46.792],[4.863,46.792],[4.862,46.791],[4.861,46.791],[4.86,46.791],[4.86,46.79],[4.859,46.79],[4.857,46.789],[4.856,46.789],[4.855,46.788],[4.853,46.788],[4.852,46.787],[4.85,46.787],[4.849,46.786],[4.847,46.785],[4.846,46.785],[4.844,46.784],[4.843,46.783],[4.842,46.782],[4.841,46.781],[4.841,46.779],[4.841,46.778],[4.841,46.777],[4.841,46.776],[4.841,46.775],[4.841,46.774],[4.842,46.773],[4.843,46.773],[4.847,46.77],[4.851,46.768],[4.851,46.768],[4.852,46.768],[4.853,46.768],[4.855,46.767],[4.856,46.767],[4.857,46.767],[4.858,46.766],[4.86,46.765],[4.861,46.765],[4.863,46.764],[4.865,46.763],[4.866,46.763],[4.867,46.763],[4.869,46.763],[4.87,46.762],[4.871,46.762],[4.873,46.762],[4.874,46.761],[4.875,46.761],[4.875,46.761],[4.876,46.759],[4.877,46.758],[4.878,46.757],[4.879,46.756],[4.879,46.755],[4.88,46.754],[4.88,46.754],[4.88,46.753],[4.88,46.752],[4.88,46.751],[4.878,46.748],[4.878,46.747],[4.877,46.745],[4.877,46.744],[4.876,46.743],[4.877,46.743],[4.877,46.742],[4.878,46.741],[4.879,46.741],[4.88,46.74],[4.881,46.739],[4.882,46.738],[4.884,46.738],[4.886,46.738],[4.887,46.738],[4.888,46.738],[4.889,46.739],[4.891,46.739],[4.891,46.739],[4.892,46.739],[4.894,46.739],[4.895,46.739],[4.895,46.739],[4.896,46.738],[4.897,46.738],[4.898,46.737],[4.899,46.736],[4.9,46.735],[4.901,46.734],[4.902,46.733],[4.903,46.732],[4.904,46.731],[4.904,46.73],[4.905,46.729],[4.906,46.728],[4.906,46.728],[4.908,46.727],[4.91,46.726],[4.911,46.726],[4.912,46.725],[4.914,46.725],[4.915,46.724],[4.917,46.724],[4.918,46.724],[4.918,46.724],[4.919,46.723],[4.92,46.723],[4.921,46.722],[4.923,46.721],[4.924,46.72],[4.925,46.719],[4.927,46.719],[4.927,46.718],[4.928,46.718],[4.929,46.718],[4.93,46.717],[4.93,46.717],[4.931,46.716],[4.931,46.715],[4.931,46.714],[4.932,46.713],[4.932,46.712],[4.932,46.711],[4.932,46.71],[4.933,46.709],[4.934,46.709],[4.934,46.708],[4.934,46.708],[4.936,46.706],[4.937,46.704],[4.937,46.704],[4.938,46.703],[4.938,46.702],[4.939,46.701],[4.939,46.7],[4.939,46.699],[4.94,46.697],[4.94,46.695],[4.94,46.693],[4.941,46.692],[4.941,46.69],[4.942,46.688],[4.942,46.687],[4.943,46.685],[4.944,46.683],[4.944,46.681],[4.945,46.679],[4.946,46.678],[4.947,46.677],[4.946,46.675],[4.946,46.675],[4.946,46.674],[4.946,46.672],[4.946,46.671],[4.946,46.67],[4.947,46.669],[4.948,46.667],[4.949,46.666],[4.95,46.665],[4.95,46.663],[4.95,46.662],[4.95,46.66],[4.951,46.656],[4.951,46.655],[4.951,46.653],[4.951,46.652],[4.951,46.651],[4.951,46.649],[4.951,46.648],[4.952,46.646],[4.952,46.645],[4.952,46.644],[4.952,46.643],[4.952,46.641],[4.951,46.639],[4.951,46.638],[4.95,46.637],[4.949,46.635],[4.948,46.634],[4.947,46.633],[4.944,46.632],[4.944,46.631],[4.943,46.631],[4.942,46.63],[4.941,46.629],[4.941,46.628],[4.94,46.627],[4.94,46.626],[4.94,46.625],[4.939,46.625],[4.939,46.624],[4.939,46.623],[4.939,46.622],[4.936,46.618],[4.934,46.616],[4.934,46.615],[4.933,46.614],[4.932,46.614],[4.931,46.613],[4.93,46.612],[4.929,46.61],[4.928,46.61],[4.927,46.609],[4.927,46.608],[4.926,46.607],[4.925,46.606],[4.924,46.605],[4.924,46.604],[4.923,46.603],[4.921,46.601],[4.92,46.6],[4.919,46.599],[4.918,46.598],[4.917,46.598],[4.915,46.596],[4.913,46.595],[4.912,46.593],[4.911,46.592],[4.91,46.59],[4.909,46.589],[4.909,46.589],[4.909,46.587],[4.909,46.586],[4.909,46.585],[4.908,46.584],[4.909,46.583],[4.909,46.582],[4.909,46.581],[4.909,46.58],[4.909,46.58],[4.909,46.578],[4.909,46.577],[4.908,46.576],[4.908,46.575],[4.908,46.574],[4.908,46.573],[4.909,46.572],[4.909,46.571],[4.91,46.571],[4.911,46.57],[4.913,46.568],[4.914,46.567],[4.914,46.565],[4.915,46.564],[4.915,46.563],[4.915,46.562],[4.916,46.56],[4.917,46.559],[4.917,46.558],[4.917,46.557],[4.918,46.556],[4.918,46.556],[4.919,46.555],[4.919,46.554],[4.92,46.553],[4.921,46.553],[4.921,46.552],[4.921,46.552],[4.921,46.551],[4.922,46.551],[4.923,46.549],[4.923,46.547],[4.924,46.546],[4.924,46.546],[4.925,46.544],[4.926,46.542],[4.927,46.541],[4.929,46.539],[4.93,46.538],[4.931,46.536],[4.932,46.535],[4.933,46.533],[4.933,46.532],[4.933,46.531],[4.934,46.53],[4.935,46.53],[4.935,46.529],[4.934,46.527],[4.934,46.526],[4.934,46.525],[4.932,46.524],[4.931,46.523],[4.929,46.521],[4.928,46.519],[4.927,46.518],[4.926,46.516],[4.924,46.512],[4.924,46.512],[4.924,46.511],[4.923,46.509],[4.923,46.508],[4.922,46.507],[4.921,46.505],[4.919,46.503],[4.915,46.501],[4.912,46.499],[4.911,46.496],[4.91,46.492],[4.91,46.489],[4.91,46.488],[4.91,46.486],[4.911,46.485],[4.911,46.483],[4.911,46.481],[4.911,46.479],[4.911,46.473],[4.91,46.471],[4.909,46.47],[4.908,46.467],[4.903,46.464],[4.902,46.463],[4.9,46.463],[4.898,46.461],[4.896,46.46],[4.895,46.459],[4.894,46.458],[4.893,46.457],[4.891,46.456],[4.89,46.454],[4.889,46.452],[4.888,46.449],[4.887,46.448],[4.886,46.446],[4.886,46.445],[4.885,46.443],[4.885,46.442],[4.884,46.44],[4.886,46.437],[4.885,46.435],[4.885,46.431],[4.884,46.427],[4.884,46.426],[4.883,46.423],[4.883,46.419],[4.883,46.418],[4.884,46.418],[4.884,46.416],[4.886,46.41],[4.884,46.408],[4.881,46.405],[4.88,46.404],[4.879,46.402],[4.878,46.399],[4.876,46.397],[4.874,46.396],[4.873,46.394],[4.873,46.393],[4.872,46.392],[4.87,46.39],[4.869,46.388],[4.866,46.385],[4.863,46.383],[4.861,46.381],[4.858,46.378],[4.857,46.376],[4.854,46.373],[4.853,46.372],[4.853,46.371],[4.853,46.37],[4.852,46.369],[4.851,46.367],[4.85,46.366],[4.849,46.364],[4.849,46.361],[4.849,46.358],[4.851,46.354],[4.851,46.352],[4.851,46.348],[4.851,46.347],[4.851,46.346],[4.852,46.344],[4.852,46.342],[4.847,46.335],[4.846,46.332],[4.843,46.33],[4.841,46.327],[4.838,46.323],[4.835,46.319],[4.836,46.319],[4.835,46.318],[4.834,46.316],[4.833,46.314],[4.831,46.311],[4.83,46.31],[4.829,46.309],[4.829,46.308],[4.828,46.306],[4.828,46.306],[4.827,46.304],[4.827,46.303],[4.829,46.297],[4.828,46.295],[4.827,46.293],[4.826,46.29],[4.826,46.288],[4.825,46.285],[4.824,46.283],[4.824,46.283],[4.824,46.282],[4.822,46.28],[4.821,46.279],[4.82,46.277],[4.818,46.275],[4.815,46.273],[4.812,46.271],[4.812,46.27],[4.81,46.268],[4.809,46.266],[4.809,46.265],[4.809,46.261],[4.809,46.259],[4.809,46.256],[4.809,46.253],[4.808,46.251],[4.808,46.249],[4.808,46.248],[4.807,46.246],[4.807,46.245],[4.806,46.244],[4.804,46.243],[4.803,46.241],[4.799,46.238],[4.799,46.237],[4.798,46.236],[4.797,46.235],[4.796,46.233],[4.795,46.23],[4.794,46.228],[4.793,46.226],[4.792,46.224],[4.791,46.222],[4.791,46.219],[4.791,46.215],[4.791,46.21],[4.79,46.209],[4.788,46.208],[4.786,46.205],[4.785,46.204],[4.782,46.201],[4.78,46.199],[4.778,46.197],[4.778,46.195],[4.778,46.191],[4.778,46.188],[4.778,46.185],[4.779,46.182],[4.78,46.18],[4.781,46.178],[4.783,46.175],[4.786,46.173],[4.789,46.172],[4.797,46.169],[4.8,46.167],[4.801,46.165],[4.801,46.162],[4.801,46.159],[4.8,46.159],[4.799,46.157],[4.798,46.156],[4.798,46.154],[4.798,46.153],[4.797,46.152],[4.797,46.151],[4.796,46.15],[4.795,46.149],[4.794,46.148],[4.794,46.147],[4.793,46.147],[4.791,46.145],[4.79,46.144],[4.789,46.142],[4.786,46.14],[4.785,46.139],[4.784,46.138],[4.784,46.138],[4.783,46.137],[4.778,46.134],[4.775,46.131],[4.773,46.129],[4.772,46.128],[4.771,46.126],[4.77,46.125],[4.769,46.124],[4.769,46.122],[4.768,46.12],[4.768,46.118],[4.766,46.117],[4.765,46.115],[4.763,46.114],[4.762,46.112],[4.76,46.111],[4.758,46.109],[4.757,46.108],[4.755,46.107],[4.754,46.105],[4.753,46.104],[4.752,46.103],[4.751,46.102],[4.75,46.1],[4.75,46.099],[4.749,46.096],[4.748,46.094],[4.748,46.092],[4.749,46.091],[4.751,46.089],[4.754,46.087],[4.757,46.082],[4.758,46.079],[4.759,46.075],[4.759,46.072],[4.757,46.07],[4.756,46.068],[4.754,46.067],[4.752,46.065],[4.751,46.064],[4.75,46.063],[4.748,46.062],[4.747,46.061],[4.743,46.06],[4.742,46.059],[4.74,46.059],[4.738,46.058],[4.738,46.057],[4.736,46.055],[4.736,46.054],[4.737,46.052],[4.738,46.051],[4.74,46.049],[4.74,46.047],[4.742,46.045],[4.743,46.042],[4.744,46.041],[4.744,46.039],[4.744,46.037],[4.744,46.036],[4.744,46.035],[4.744,46.033],[4.743,46.032],[4.742,46.03],[4.741,46.028],[4.741,46.027],[4.741,46.025],[4.742,46.023],[4.743,46.022],[4.744,46.021],[4.745,46.02],[4.746,46.018],[4.746,46.015],[4.746,46.014],[4.748,46.012],[4.748,46.008],[4.747,46.007],[4.747,46.005],[4.748,46.001],[4.749,46],[4.748,45.998],[4.748,45.997],[4.748,45.994],[4.747,45.992],[4.748,45.992],[4.749,45.99],[4.75,45.989],[4.75,45.988],[4.751,45.986],[4.753,45.983],[4.753,45.982],[4.753,45.981],[4.753,45.98],[4.752,45.979],[4.752,45.978],[4.751,45.977],[4.751,45.976],[4.749,45.973],[4.748,45.971],[4.747,45.97],[4.745,45.968],[4.739,45.965],[4.737,45.963],[4.733,45.961],[4.732,45.96],[4.729,45.958],[4.728,45.957],[4.727,45.955],[4.726,45.954],[4.725,45.953],[4.726,45.952],[4.728,45.951],[4.728,45.95],[4.729,45.95],[4.731,45.949],[4.732,45.947],[4.733,45.947],[4.734,45.947],[4.735,45.947],[4.736,45.947],[4.739,45.946],[4.74,45.946],[4.742,45.946],[4.744,45.946],[4.746,45.945],[4.747,45.945],[4.749,45.944],[4.751,45.943],[4.753,45.943],[4.755,45.943],[4.756,45.943],[4.756,45.943],[4.759,45.943],[4.761,45.945],[4.762,45.945],[4.763,45.946],[4.764,45.946],[4.765,45.946],[4.766,45.947],[4.768,45.947],[4.769,45.947],[4.772,45.947],[4.774,45.947],[4.775,45.946],[4.777,45.945],[4.778,45.944],[4.78,45.941],[4.783,45.937],[4.785,45.934],[4.787,45.932],[4.788,45.932],[4.789,45.931],[4.791,45.931],[4.792,45.931],[4.793,45.931],[4.794,45.931],[4.795,45.931],[4.795,45.931],[4.796,45.931],[4.798,45.932],[4.799,45.932],[4.802,45.931],[4.803,45.931],[4.804,45.93],[4.805,45.93],[4.806,45.93],[4.807,45.929],[4.808,45.928],[4.808,45.927],[4.808,45.926],[4.809,45.925],[4.809,45.924],[4.809,45.923],[4.809,45.922],[4.808,45.922],[4.808,45.921],[4.808,45.92],[4.808,45.919],[4.808,45.918],[4.809,45.918],[4.809,45.917],[4.808,45.916],[4.808,45.915],[4.807,45.914],[4.806,45.913],[4.805,45.913],[4.805,45.912],[4.804,45.912],[4.802,45.91],[4.802,45.909],[4.801,45.908],[4.801,45.907],[4.802,45.906],[4.803,45.904],[4.804,45.903],[4.804,45.902],[4.805,45.9],[4.808,45.896],[4.81,45.894],[4.812,45.893],[4.815,45.891],[4.818,45.89],[4.819,45.89],[4.822,45.889],[4.824,45.888],[4.827,45.888],[4.829,45.888],[4.831,45.887],[4.833,45.887],[4.834,45.886],[4.834,45.885],[4.835,45.884],[4.835,45.883],[4.834,45.881],[4.834,45.88],[4.834,45.878],[4.834,45.877],[4.834,45.876],[4.835,45.874],[4.837,45.873],[4.837,45.872],[4.837,45.871],[4.837,45.87],[4.838,45.869],[4.838,45.869],[4.838,45.867],[4.838,45.866],[4.836,45.864],[4.835,45.862],[4.835,45.861],[4.835,45.86],[4.834,45.857],[4.829,45.852],[4.828,45.85],[4.828,45.848],[4.828,45.846],[4.829,45.845],[4.83,45.844],[4.832,45.843],[4.835,45.842],[4.837,45.841],[4.839,45.841],[4.841,45.84],[4.842,45.84],[4.842,45.84],[4.844,45.84],[4.848,45.837],[4.849,45.836],[4.849,45.836],[4.85,45.835],[4.851,45.832],[4.852,45.831],[4.852,45.829],[4.852,45.828],[4.851,45.827],[4.851,45.826],[4.849,45.825],[4.848,45.825],[4.846,45.824],[4.845,45.823],[4.843,45.822],[4.842,45.821],[4.842,45.821],[4.84,45.82],[4.839,45.819],[4.839,45.819],[4.839,45.817],[4.838,45.815],[4.838,45.813],[4.836,45.811],[4.836,45.81],[4.835,45.809],[4.833,45.808],[4.831,45.807],[4.829,45.807],[4.827,45.806],[4.826,45.805],[4.823,45.804],[4.819,45.802],[4.817,45.8],[4.812,45.796],[4.811,45.795],[4.809,45.793],[4.807,45.79],[4.805,45.787],[4.804,45.784],[4.805,45.783],[4.806,45.782],[4.807,45.781],[4.808,45.781],[4.809,45.779],[4.809,45.778],[4.809,45.777],[4.81,45.776],[4.811,45.775],[4.812,45.775],[4.813,45.775],[4.814,45.775],[4.816,45.775],[4.818,45.776],[4.82,45.776],[4.822,45.776],[4.823,45.776],[4.824,45.775],[4.825,45.775],[4.825,45.774],[4.826,45.772],[4.825,45.771],[4.824,45.769],[4.823,45.768],[4.822,45.765],[4.821,45.764],[4.82,45.763],[4.818,45.76],[4.815,45.758],[4.813,45.757],[4.812,45.756],[4.81,45.754],[4.81,45.753],[4.809,45.749],[4.808,45.747],[4.809,45.745],[4.81,45.742],[4.811,45.74],[4.812,45.739],[4.813,45.738],[4.813,45.737],[4.814,45.736],[4.817,45.727],[4.817,45.726],[4.818,45.721],[4.82,45.717],[4.821,45.716],[4.823,45.713],[4.825,45.712],[4.827,45.711],[4.83,45.71],[4.832,45.709],[4.834,45.708],[4.835,45.706],[4.837,45.704],[4.838,45.703],[4.839,45.7],[4.839,45.697],[4.838,45.696],[4.838,45.696],[4.838,45.695],[4.838,45.694],[4.837,45.693],[4.836,45.69],[4.836,45.689],[4.835,45.688],[4.835,45.686],[4.834,45.685],[4.834,45.684],[4.834,45.683],[4.833,45.683],[4.835,45.675],[4.834,45.675],[4.834,45.673],[4.834,45.673],[4.833,45.672],[4.833,45.671],[4.833,45.67],[4.832,45.669],[4.832,45.668],[4.832,45.666],[4.832,45.666],[4.831,45.665],[4.831,45.664],[4.831,45.663],[4.831,45.66],[4.83,45.659],[4.83,45.658],[4.83,45.657],[4.83,45.657],[4.83,45.656],[4.83,45.655],[4.829,45.654],[4.828,45.652],[4.827,45.651],[4.826,45.65],[4.824,45.649],[4.823,45.648],[4.82,45.647],[4.818,45.646],[4.817,45.645],[4.816,45.644],[4.815,45.644],[4.815,45.644],[4.815,45.643],[4.814,45.643],[4.814,45.643],[4.813,45.642],[4.813,45.642],[4.813,45.642],[4.812,45.641],[4.812,45.64],[4.811,45.639],[4.811,45.638],[4.81,45.638],[4.81,45.636],[4.809,45.635],[4.809,45.634],[4.808,45.633],[4.809,45.631],[4.808,45.629],[4.809,45.629],[4.809,45.628],[4.809,45.627],[4.809,45.627],[4.808,45.626],[4.808,45.624],[4.808,45.622],[4.808,45.621],[4.808,45.62],[4.808,45.62],[4.807,45.619],[4.807,45.619],[4.806,45.618],[4.806,45.618],[4.805,45.618],[4.805,45.618],[4.804,45.615],[4.803,45.614],[4.803,45.614],[4.803,45.613],[4.803,45.612],[4.803,45.612],[4.803,45.612],[4.796,45.603],[4.794,45.6],[4.793,45.599],[4.792,45.598],[4.791,45.597],[4.79,45.596],[4.788,45.595],[4.787,45.593],[4.786,45.593],[4.785,45.593],[4.782,45.591],[4.78,45.59],[4.779,45.59],[4.778,45.589],[4.777,45.588],[4.778,45.586],[4.779,45.581],[4.781,45.581],[4.787,45.578],[4.79,45.578],[4.791,45.577],[4.792,45.577],[4.793,45.577],[4.798,45.575],[4.799,45.575],[4.8,45.575],[4.802,45.574],[4.809,45.573],[4.812,45.572],[4.813,45.571],[4.814,45.57],[4.816,45.568],[4.817,45.566],[4.818,45.564],[4.819,45.563],[4.821,45.56],[4.822,45.559],[4.824,45.557],[4.827,45.554],[4.828,45.553],[4.829,45.552],[4.83,45.551],[4.833,45.547],[4.836,45.545],[4.837,45.545],[4.838,45.545],[4.837,45.544],[4.843,45.543],[4.853,45.541],[4.854,45.54],[4.857,45.539],[4.86,45.539],[4.864,45.538],[4.867,45.537],[4.87,45.536],[4.872,45.534],[4.873,45.533],[4.874,45.531],[4.874,45.53],[4.874,45.529],[4.872,45.526],[4.869,45.523],[4.866,45.52],[4.86,45.513],[4.858,45.511],[4.851,45.505],[4.849,45.504],[4.846,45.502],[4.845,45.502],[4.843,45.501],[4.841,45.5],[4.84,45.5],[4.838,45.499],[4.835,45.498],[4.833,45.496],[4.83,45.495],[4.828,45.496],[4.827,45.495],[4.826,45.495],[4.826,45.495],[4.826,45.494],[4.825,45.493],[4.822,45.49],[4.821,45.489],[4.819,45.487],[4.817,45.485],[4.815,45.484],[4.813,45.483],[4.803,45.479],[4.8,45.477],[4.798,45.476],[4.797,45.476],[4.795,45.475],[4.794,45.475],[4.792,45.474],[4.789,45.473],[4.786,45.472],[4.785,45.471],[4.783,45.47],[4.782,45.468],[4.782,45.466],[4.784,45.462],[4.784,45.461],[4.784,45.461],[4.783,45.461],[4.782,45.46],[4.781,45.46],[4.781,45.459],[4.78,45.459],[4.778,45.457],[4.775,45.456],[4.774,45.456],[4.767,45.456],[4.763,45.455],[4.761,45.454],[4.76,45.453],[4.76,45.451],[4.76,45.449],[4.761,45.445],[4.762,45.442],[4.763,45.439],[4.764,45.437],[4.764,45.435],[4.764,45.434],[4.763,45.432],[4.762,45.43],[4.761,45.43],[4.757,45.428],[4.754,45.427],[4.753,45.426],[4.749,45.42],[4.747,45.417],[4.747,45.415],[4.746,45.413],[4.747,45.411],[4.748,45.409],[4.749,45.408],[4.75,45.406],[4.752,45.404],[4.754,45.401],[4.756,45.4],[4.757,45.399],[4.758,45.397],[4.758,45.395],[4.759,45.394],[4.76,45.393],[4.757,45.386],[4.756,45.384],[4.755,45.382],[4.753,45.38],[4.753,45.379],[4.752,45.377],[4.751,45.376],[4.751,45.374],[4.752,45.373],[4.753,45.372],[4.753,45.37],[4.754,45.369],[4.754,45.368],[4.754,45.366],[4.755,45.365],[4.755,45.365],[4.76,45.361],[4.762,45.361],[4.762,45.36],[4.763,45.359],[4.764,45.359],[4.765,45.358],[4.766,45.358],[4.767,45.356],[4.768,45.354],[4.769,45.353],[4.769,45.352],[4.768,45.35],[4.767,45.349],[4.765,45.347],[4.764,45.341],[4.763,45.339],[4.763,45.338],[4.763,45.337],[4.763,45.336],[4.763,45.335],[4.763,45.331],[4.762,45.328],[4.763,45.326],[4.764,45.324],[4.765,45.323],[4.766,45.322],[4.766,45.321],[4.767,45.32],[4.768,45.319],[4.768,45.319],[4.769,45.318],[4.771,45.317],[4.772,45.316],[4.774,45.316],[4.775,45.315],[4.776,45.314],[4.777,45.314],[4.778,45.313],[4.779,45.313],[4.779,45.312],[4.78,45.312],[4.782,45.311],[4.783,45.311],[4.785,45.31],[4.786,45.309],[4.788,45.309],[4.79,45.307],[4.792,45.306],[4.793,45.305],[4.794,45.305],[4.795,45.304],[4.796,45.304],[4.796,45.303],[4.796,45.303],[4.797,45.303],[4.797,45.302],[4.798,45.302],[4.799,45.301],[4.799,45.3],[4.801,45.299],[4.802,45.299],[4.802,45.299],[4.803,45.299],[4.803,45.298],[4.803,45.298],[4.803,45.298],[4.802,45.298],[4.802,45.298],[4.802,45.298],[4.803,45.297],[4.804,45.296],[4.805,45.295],[4.807,45.294],[4.809,45.293],[4.809,45.292],[4.809,45.286],[4.809,45.285],[4.809,45.283],[4.809,45.281],[4.809,45.28],[4.809,45.279],[4.809,45.278],[4.809,45.275],[4.809,45.272],[4.809,45.269],[4.809,45.268],[4.809,45.267],[4.81,45.266],[4.81,45.263],[4.809,45.262],[4.809,45.26],[4.806,45.256],[4.805,45.254],[4.805,45.253],[4.804,45.252],[4.803,45.251],[4.802,45.25],[4.802,45.249],[4.802,45.248],[4.802,45.247],[4.802,45.246],[4.801,45.242],[4.801,45.24],[4.801,45.24],[4.801,45.239],[4.801,45.236],[4.801,45.236],[4.801,45.235],[4.801,45.234],[4.801,45.234],[4.801,45.234],[4.801,45.233],[4.801,45.233],[4.801,45.233],[4.801,45.232],[4.801,45.231],[4.801,45.229],[4.802,45.229],[4.802,45.228],[4.802,45.227],[4.802,45.226],[4.803,45.225],[4.804,45.224],[4.804,45.222],[4.804,45.221],[4.805,45.221],[4.805,45.219],[4.805,45.218],[4.806,45.217],[4.806,45.216],[4.807,45.214],[4.807,45.213],[4.807,45.212],[4.808,45.211],[4.808,45.21],[4.808,45.209],[4.809,45.208],[4.809,45.208],[4.809,45.207],[4.809,45.206],[4.809,45.205],[4.809,45.203],[4.808,45.202],[4.808,45.201],[4.807,45.2],[4.807,45.2],[4.806,45.199],[4.806,45.199],[4.806,45.198],[4.806,45.198],[4.805,45.197],[4.805,45.197],[4.804,45.196],[4.804,45.195],[4.804,45.194],[4.804,45.193],[4.804,45.192],[4.806,45.191],[4.806,45.189],[4.807,45.188],[4.811,45.185],[4.811,45.184],[4.812,45.182],[4.812,45.182],[4.812,45.182],[4.813,45.181],[4.812,45.18],[4.811,45.178],[4.811,45.177],[4.81,45.176],[4.808,45.167],[4.809,45.165],[4.81,45.164],[4.812,45.162],[4.814,45.161],[4.814,45.16],[4.816,45.16],[4.818,45.16],[4.82,45.159],[4.823,45.159],[4.825,45.159],[4.826,45.157],[4.827,45.156],[4.827,45.154],[4.826,45.153],[4.824,45.151],[4.822,45.148],[4.819,45.145],[4.814,45.142],[4.812,45.14],[4.808,45.136],[4.805,45.135],[4.804,45.135],[4.803,45.134],[4.803,45.131],[4.803,45.13],[4.802,45.128],[4.802,45.125],[4.802,45.124],[4.803,45.123],[4.803,45.122],[4.803,45.121],[4.804,45.121],[4.805,45.121],[4.806,45.12],[4.807,45.118],[4.807,45.118],[4.808,45.117],[4.81,45.116],[4.812,45.114],[4.812,45.113],[4.812,45.113],[4.811,45.113],[4.812,45.112],[4.813,45.112],[4.813,45.112],[4.813,45.112],[4.814,45.111],[4.815,45.11],[4.815,45.109],[4.816,45.108],[4.818,45.107],[4.818,45.107],[4.818,45.106],[4.82,45.105],[4.821,45.104],[4.822,45.104],[4.822,45.104],[4.822,45.104],[4.821,45.103],[4.822,45.102],[4.823,45.102],[4.823,45.1],[4.823,45.099],[4.824,45.099],[4.824,45.098],[4.824,45.097],[4.824,45.097],[4.827,45.096],[4.827,45.096],[4.828,45.096],[4.828,45.095],[4.828,45.095],[4.829,45.094],[4.829,45.093],[4.829,45.093],[4.829,45.092],[4.83,45.092],[4.83,45.091],[4.83,45.09],[4.831,45.09],[4.83,45.09],[4.83,45.089],[4.83,45.089],[4.831,45.089],[4.831,45.089],[4.83,45.088],[4.83,45.087],[4.83,45.086],[4.83,45.085],[4.83,45.084],[4.829,45.084],[4.829,45.084],[4.828,45.084],[4.828,45.082],[4.827,45.081],[4.826,45.08],[4.826,45.078],[4.826,45.077],[4.826,45.075],[4.826,45.075],[4.827,45.075],[4.827,45.074],[4.828,45.073],[4.829,45.073],[4.828,45.072],[4.828,45.072],[4.83,45.07],[4.832,45.069],[4.836,45.067],[4.838,45.066],[4.842,45.065],[4.843,45.065],[4.844,45.065],[4.847,45.064],[4.852,45.063],[4.853,45.062],[4.854,45.061],[4.856,45.06],[4.857,45.059],[4.857,45.057],[4.857,45.055],[4.856,45.052],[4.854,45.05],[4.851,45.047],[4.847,45.044],[4.845,45.043],[4.842,45.041],[4.84,45.038],[4.838,45.036],[4.837,45.035],[4.837,45.032],[4.838,45.029],[4.839,45.027],[4.839,45.026],[4.84,45.025],[4.842,45.024],[4.843,45.023],[4.844,45.021],[4.844,45.02],[4.843,45.018],[4.842,45.016],[4.839,45.014],[4.837,45.012],[4.835,45.011],[4.835,45.01],[4.835,45.01],[4.835,45.008],[4.835,45.007],[4.835,45.006],[4.836,45.006],[4.836,45.006],[4.837,45.005],[4.839,45.004],[4.84,45.003],[4.841,45.002],[4.842,45.002],[4.843,45.001],[4.844,45],[4.845,44.999],[4.846,44.998],[4.847,44.998],[4.849,44.996],[4.851,44.995],[4.851,44.994],[4.852,44.993],[4.852,44.991],[4.852,44.989],[4.852,44.987],[4.852,44.984],[4.852,44.98],[4.853,44.977],[4.853,44.975],[4.853,44.974],[4.855,44.973],[4.855,44.973],[4.855,44.972],[4.855,44.972],[4.856,44.971],[4.856,44.97],[4.857,44.97],[4.857,44.969],[4.858,44.968],[4.858,44.968],[4.857,44.967],[4.857,44.967],[4.858,44.966],[4.859,44.966],[4.859,44.965],[4.859,44.966],[4.86,44.966],[4.86,44.965],[4.86,44.965],[4.86,44.964],[4.86,44.964],[4.861,44.964],[4.861,44.964],[4.862,44.962],[4.864,44.961],[4.864,44.96],[4.865,44.96],[4.866,44.96],[4.868,44.959],[4.87,44.958],[4.872,44.957],[4.873,44.956],[4.875,44.955],[4.875,44.954],[4.876,44.953],[4.876,44.952],[4.876,44.952],[4.876,44.951],[4.877,44.949],[4.878,44.947],[4.879,44.945],[4.879,44.945],[4.881,44.943],[4.883,44.942],[4.884,44.94],[4.884,44.939],[4.885,44.937],[4.885,44.936],[4.884,44.935],[4.883,44.934],[4.882,44.933],[4.88,44.931],[4.878,44.929],[4.876,44.927],[4.874,44.925],[4.873,44.925],[4.872,44.922],[4.87,44.919],[4.87,44.918],[4.869,44.915],[4.868,44.913],[4.868,44.911],[4.867,44.91],[4.866,44.908],[4.863,44.906],[4.859,44.905],[4.857,44.904],[4.856,44.904],[4.855,44.904],[4.854,44.904],[4.853,44.902],[4.852,44.898],[4.852,44.896],[4.852,44.896],[4.853,44.894],[4.853,44.892],[4.854,44.89],[4.854,44.888],[4.856,44.887],[4.857,44.884],[4.858,44.882],[4.859,44.882],[4.859,44.881],[4.86,44.879],[4.86,44.878],[4.86,44.877],[4.859,44.875],[4.858,44.874],[4.857,44.873],[4.856,44.872],[4.851,44.868],[4.849,44.867],[4.848,44.865],[4.847,44.864],[4.846,44.862],[4.845,44.86],[4.844,44.86],[4.843,44.859],[4.841,44.856],[4.84,44.855],[4.839,44.854],[4.838,44.853],[4.838,44.853],[4.838,44.854],[4.837,44.854],[4.837,44.852],[4.837,44.852],[4.833,44.849],[4.828,44.846],[4.824,44.844],[4.823,44.843],[4.822,44.842],[4.819,44.839],[4.819,44.837],[4.816,44.833],[4.815,44.829],[4.813,44.826],[4.812,44.822],[4.81,44.819],[4.809,44.816],[4.809,44.815],[4.809,44.812],[4.808,44.811],[4.806,44.81],[4.806,44.809],[4.791,44.803],[4.787,44.802],[4.782,44.799],[4.78,44.797],[4.776,44.791],[4.772,44.787],[4.769,44.785],[4.767,44.782],[4.767,44.781],[4.766,44.78],[4.764,44.779],[4.763,44.777],[4.762,44.776],[4.762,44.775],[4.76,44.773],[4.759,44.773],[4.756,44.77],[4.755,44.769],[4.754,44.767],[4.752,44.763],[4.751,44.759],[4.75,44.758],[4.751,44.756],[4.751,44.754],[4.752,44.753],[4.756,44.748],[4.757,44.746],[4.759,44.741],[4.76,44.739],[4.761,44.738],[4.761,44.737],[4.762,44.736],[4.761,44.736],[4.764,44.727],[4.765,44.726],[4.764,44.724],[4.764,44.722],[4.764,44.719],[4.764,44.718],[4.764,44.718],[4.764,44.717],[4.765,44.715],[4.768,44.712],[4.769,44.711],[4.77,44.709],[4.77,44.709],[4.772,44.707],[4.773,44.706],[4.773,44.704],[4.774,44.703],[4.774,44.699],[4.774,44.696],[4.775,44.694],[4.776,44.692],[4.777,44.691],[4.777,44.69],[4.779,44.688],[4.781,44.685],[4.781,44.684],[4.782,44.678],[4.781,44.668],[4.781,44.664],[4.776,44.645],[4.772,44.644],[4.771,44.643],[4.771,44.643],[4.771,44.643],[4.771,44.642],[4.771,44.642],[4.768,44.634],[4.766,44.632],[4.762,44.627],[4.762,44.626],[4.761,44.624],[4.761,44.623],[4.758,44.62],[4.756,44.617],[4.755,44.616],[4.753,44.614],[4.751,44.613],[4.75,44.611],[4.748,44.608],[4.746,44.605],[4.745,44.604],[4.744,44.602],[4.739,44.596],[4.737,44.597],[4.736,44.597],[4.714,44.587],[4.713,44.586],[4.712,44.585],[4.71,44.584],[4.709,44.583],[4.707,44.58],[4.706,44.579],[4.706,44.578],[4.704,44.576],[4.702,44.573],[4.702,44.572],[4.702,44.571],[4.699,44.564],[4.696,44.561],[4.694,44.56],[4.694,44.559],[4.691,44.547],[4.693,44.544],[4.694,44.541],[4.696,44.538],[4.696,44.537],[4.698,44.534],[4.699,44.532],[4.699,44.531],[4.7,44.53],[4.7,44.529],[4.7,44.528],[4.7,44.526],[4.699,44.525],[4.698,44.524],[4.698,44.523],[4.697,44.522],[4.695,44.52],[4.694,44.52],[4.693,44.519],[4.691,44.517],[4.69,44.513],[4.689,44.51],[4.688,44.506],[4.687,44.502],[4.686,44.501],[4.686,44.5],[4.686,44.499],[4.687,44.496],[4.688,44.493],[4.688,44.492],[4.688,44.492],[4.698,44.486],[4.698,44.486],[4.7,44.482],[4.7,44.482],[4.701,44.481],[4.702,44.479],[4.702,44.478],[4.701,44.477],[4.701,44.476],[4.701,44.474],[4.701,44.473],[4.701,44.472],[4.702,44.472],[4.702,44.47],[4.702,44.468],[4.702,44.464],[4.702,44.459],[4.702,44.457],[4.7,44.453],[4.7,44.452],[4.699,44.452],[4.699,44.451],[4.699,44.449],[4.699,44.447],[4.698,44.446],[4.698,44.445],[4.696,44.443],[4.696,44.443],[4.695,44.443],[4.693,44.441],[4.691,44.44],[4.687,44.438],[4.684,44.438],[4.681,44.437],[4.675,44.436],[4.672,44.435],[4.67,44.434],[4.668,44.431],[4.667,44.427],[4.666,44.426],[4.666,44.425],[4.666,44.423],[4.665,44.421],[4.665,44.418],[4.665,44.415],[4.665,44.413],[4.665,44.412],[4.666,44.411],[4.666,44.41],[4.665,44.41],[4.665,44.41],[4.665,44.408],[4.664,44.407],[4.664,44.407],[4.664,44.404],[4.664,44.402],[4.665,44.401],[4.665,44.401],[4.665,44.4],[4.665,44.399],[4.666,44.398],[4.666,44.398],[4.666,44.397],[4.665,44.397],[4.665,44.396],[4.665,44.395],[4.655,44.385],[4.653,44.383],[4.652,44.381],[4.651,44.38],[4.651,44.379],[4.651,44.379],[4.651,44.378],[4.65,44.378],[4.65,44.377],[4.649,44.376],[4.649,44.373],[4.648,44.368],[4.647,44.366],[4.647,44.364],[4.647,44.364],[4.647,44.36],[4.647,44.358],[4.646,44.353],[4.646,44.352],[4.646,44.349],[4.647,44.342],[4.648,44.342],[4.648,44.339],[4.647,44.338],[4.649,44.336],[4.65,44.331],[4.652,44.321],[4.649,44.313],[4.653,44.302],[4.652,44.294],[4.652,44.294],[4.652,44.292],[4.651,44.288],[4.65,44.288],[4.65,44.287],[4.65,44.286],[4.65,44.285],[4.65,44.285],[4.651,44.287],[4.651,44.286],[4.651,44.283],[4.651,44.282],[4.65,44.282],[4.65,44.28],[4.65,44.276],[4.65,44.276],[4.649,44.274],[4.648,44.271],[4.648,44.267],[4.648,44.266],[4.646,44.266],[4.647,44.264],[4.648,44.262],[4.649,44.26],[4.651,44.258],[4.652,44.257],[4.653,44.255],[4.654,44.254],[4.656,44.252],[4.657,44.25],[4.66,44.248],[4.661,44.246],[4.663,44.246],[4.663,44.245],[4.664,44.244],[4.666,44.243],[4.668,44.242],[4.671,44.24],[4.672,44.239],[4.674,44.238],[4.675,44.236],[4.676,44.236],[4.677,44.234],[4.678,44.23],[4.677,44.227],[4.675,44.225],[4.674,44.224],[4.674,44.225],[4.674,44.225],[4.674,44.225],[4.673,44.224],[4.672,44.223],[4.675,44.213],[4.676,44.212],[4.677,44.211],[4.678,44.21],[4.681,44.21],[4.682,44.211],[4.684,44.212],[4.686,44.212],[4.687,44.212],[4.688,44.212],[4.69,44.212],[4.691,44.212],[4.691,44.213],[4.69,44.213],[4.69,44.213],[4.691,44.214],[4.694,44.215],[4.696,44.215],[4.698,44.215],[4.699,44.216],[4.701,44.215],[4.701,44.215],[4.7,44.215],[4.699,44.215],[4.699,44.214],[4.7,44.214],[4.7,44.214],[4.699,44.213],[4.7,44.213],[4.701,44.213],[4.701,44.214],[4.701,44.214],[4.702,44.214],[4.703,44.214],[4.705,44.214],[4.707,44.212],[4.708,44.21],[4.709,44.207],[4.707,44.206],[4.705,44.203],[4.703,44.202],[4.702,44.199],[4.702,44.197],[4.703,44.197],[4.703,44.196],[4.703,44.195],[4.703,44.194],[4.704,44.193],[4.705,44.191],[4.707,44.188],[4.707,44.187],[4.71,44.182],[4.712,44.18],[4.72,44.162],[4.721,44.154],[4.721,44.151],[4.722,44.15],[4.722,44.149],[4.722,44.147],[4.722,44.145],[4.722,44.143],[4.721,44.14],[4.72,44.139],[4.718,44.136],[4.717,44.136],[4.716,44.134],[4.715,44.133],[4.715,44.132],[4.715,44.128],[4.715,44.126],[4.717,44.125]],[[5.363,43.305],[5.264,43.291]],[[9.564,42.091],[9.564,42.191],[9.564,42.291],[9.564,42.391],[9.564,42.491],[9.564,42.591],[9.564,42.691],[9.564,42.791],[9.564,42.891],[9.464,42.991],[9.364,43.091],[9.264,43.091],[9.164,43.091],[9.064,43.091],[8.964,43.091],[8.864,43.091],[8.764,43.091],[8.664,43.091],[8.564,43.091],[8.464,43.091],[8.364,43.091],[8.264,43.091],[8.164,43.091],[8.064,43.091],[7.964,43.091],[7.864,43.091],[7.764,43.091],[7.664,43.091],[7.564,43.091],[7.464,43.091],[7.364,43.091],[7.264,43.091],[7.164,43.091],[7.064,43.091],[6.964,43.091],[6.864,43.091],[6.764,43.091],[6.664,43.091],[6.564,43.091],[6.464,43.091],[6.364,43.091],[6.264,43.091],[6.164,43.091],[6.064,43.091],[5.964,43.091],[5.864,42.991],[5.764,43.091],[5.664,43.191],[5.564,43.191],[5.464,43.191],[5.364,43.191],[5.264,43.291]],[[6.003,47.224],[6.043,47.252],[6.069,47.275],[6.127,47.299],[6.259,47.341],[6.385,47.381],[6.456,47.399],[6.569,47.419],[6.657,47.439],[6.72,47.448],[6.76,47.447],[6.786,47.445],[6.811,47.45],[6.859,47.466],[6.916,47.495],[7.019,47.529],[7.131,47.564],[7.235,47.594],[7.341,47.629],[7.414,47.651],[7.497,47.667]],[[9.564,42.091],[9.526,42.124]],[[10.264,42.691],[10.164,42.591],[10.064,42.491],[9.964,42.491],[9.864,42.391],[9.764,42.291],[9.664,42.191],[9.564,42.091]],[[10.264,42.691],[10.24,42.743]],[[10.464,42.991],[10.464,42.891],[10.464,42.791],[10.364,42.691],[10.264,42.691]],[[10.496,42.996],[10.464,42.991]],[[11.264,42.391],[11.164,42.491],[11.064,42.591],[10.964,42.691],[10.864,42.691],[10.764,42.791],[10.664,42.891],[10.564,42.891],[10.464,42.991]],[[12.287,41.754],[12.264,41.691],[12.164,41.791],[12.064,41.891],[11.964,41.991],[11.864,41.991],[11.764,42.091],[11.664,42.191],[11.564,42.291],[11.464,42.291],[11.364,42.391],[11.264,42.391]],[[11.264,42.391],[11.288,42.406]],[[12.474,41.89],[12.474,41.89],[12.475,41.888],[12.469,41.882],[12.468,41.877],[12.472,41.868],[12.47,41.863],[12.461,41.858],[12.46,41.855],[12.46,41.854],[12.462,41.85],[12.444,41.834],[12.435,41.829],[12.426,41.831],[12.421,41.828],[12.418,41.822],[12.416,41.818],[12.411,41.809],[12.405,41.805],[12.394,41.805],[12.386,41.802],[12.375,41.804],[12.37,41.805],[12.364,41.807],[12.36,41.806],[12.352,41.806],[12.343,41.809],[12.339,41.806],[12.337,41.799],[12.332,41.798],[12.323,41.799],[12.317,41.799],[12.309,41.8],[12.302,41.797],[12.295,41.791],[12.284,41.789],[12.278,41.782],[12.273,41.773],[12.274,41.771],[12.274,41.768],[12.275,41.764],[12.28,41.758],[12.271,41.753]]]},"pair": 50235,"direction": 0,"month": 10,"priority": 1,"expense": 12.372,"duration": 86.601,"length": 2947.752},{"type": "Feature", "geometry": {"type":"MultiLineString","coordinates":[[[-0.083,51.52],[0.464,51.491],[0.564,51.491],[0.664,51.491],[0.764,51.491],[0.864,51.491],[0.964,51.591],[1.064,51.691],[1.164,51.691],[1.264,51.791],[1.364,51.891],[1.464,51.991],[1.564,51.991],[1.664,52.091],[1.764,52.191],[1.864,52.191],[1.964,52.191],[2.064,52.191],[2.164,52.191],[2.264,52.191],[2.364,52.191],[2.464,52.191],[2.564,52.191],[2.664,52.191],[2.764,52.191],[2.864,52.191],[2.964,52.191],[3.064,52.191],[3.164,52.191],[3.264,52.191],[3.364,52.191],[3.464,52.191],[3.564,52.191],[3.664,52.191],[3.764,52.191],[3.864,52.191],[3.964,52.191],[4.064,52.191],[4.164,52.191],[4.264,52.191],[4.364,52.191],[4.398,52.198]],[[7.512,47.669],[7.512,47.672],[7.512,47.675],[7.512,47.677],[7.513,47.678],[7.513,47.68],[7.513,47.682],[7.513,47.684],[7.512,47.685],[7.512,47.687],[7.511,47.688],[7.51,47.689],[7.51,47.691],[7.509,47.693],[7.508,47.695],[7.507,47.697],[7.507,47.698],[7.507,47.698],[7.507,47.7],[7.508,47.701],[7.508,47.702],[7.511,47.707],[7.512,47.708],[7.513,47.708],[7.514,47.709],[7.515,47.709],[7.519,47.712],[7.521,47.714],[7.53,47.72],[7.532,47.722],[7.534,47.723],[7.535,47.724],[7.536,47.725],[7.537,47.726],[7.538,47.727],[7.539,47.73],[7.54,47.731],[7.54,47.733],[7.54,47.734],[7.54,47.738],[7.539,47.74],[7.538,47.741],[7.538,47.742],[7.536,47.744],[7.535,47.746],[7.534,47.748],[7.532,47.751],[7.531,47.752],[7.53,47.754],[7.528,47.758],[7.527,47.76],[7.526,47.76],[7.525,47.762],[7.524,47.764],[7.524,47.765],[7.523,47.767],[7.523,47.767],[7.522,47.77],[7.522,47.771],[7.522,47.773],[7.522,47.774],[7.522,47.775],[7.522,47.775],[7.524,47.776],[7.525,47.777],[7.524,47.778],[7.524,47.78],[7.524,47.781],[7.524,47.782],[7.524,47.784],[7.525,47.786],[7.525,47.788],[7.526,47.789],[7.526,47.789],[7.526,47.79],[7.527,47.791],[7.527,47.791],[7.528,47.792],[7.529,47.794],[7.53,47.795],[7.532,47.799],[7.537,47.804],[7.54,47.808],[7.542,47.811],[7.543,47.814],[7.545,47.817],[7.546,47.82],[7.546,47.822],[7.547,47.823],[7.547,47.824],[7.547,47.825],[7.548,47.825],[7.548,47.827],[7.549,47.828],[7.549,47.829],[7.551,47.832],[7.553,47.836],[7.554,47.837],[7.555,47.84],[7.556,47.842],[7.556,47.845],[7.556,47.846],[7.556,47.848],[7.556,47.849],[7.556,47.85],[7.556,47.853],[7.555,47.857],[7.555,47.857],[7.554,47.861],[7.553,47.865],[7.553,47.869],[7.552,47.871],[7.552,47.871],[7.552,47.872],[7.552,47.875],[7.552,47.877],[7.553,47.879],[7.559,47.89],[7.56,47.892],[7.561,47.895],[7.564,47.9],[7.564,47.901],[7.565,47.902],[7.565,47.903],[7.566,47.904],[7.567,47.909],[7.568,47.911],[7.57,47.916],[7.571,47.919],[7.572,47.92],[7.572,47.921],[7.573,47.923],[7.573,47.925],[7.574,47.926],[7.575,47.928],[7.575,47.929],[7.576,47.931],[7.577,47.932],[7.58,47.935],[7.58,47.936],[7.58,47.936],[7.581,47.937],[7.582,47.938],[7.582,47.939],[7.584,47.94],[7.586,47.942],[7.595,47.949],[7.596,47.95],[7.596,47.951],[7.598,47.952],[7.598,47.952],[7.598,47.953],[7.6,47.954],[7.603,47.957],[7.605,47.959],[7.606,47.96],[7.608,47.964],[7.61,47.967],[7.611,47.969],[7.611,47.97],[7.612,47.972],[7.612,47.973],[7.612,47.976],[7.612,47.978],[7.612,47.98],[7.612,47.982],[7.611,47.984],[7.61,47.986],[7.609,47.988],[7.608,47.99],[7.607,47.991],[7.606,47.993],[7.604,47.995],[7.603,47.996],[7.601,47.998],[7.6,47.999],[7.599,48],[7.599,48],[7.597,48.002],[7.589,48.008],[7.582,48.013],[7.579,48.016],[7.574,48.019],[7.573,48.02],[7.57,48.022],[7.569,48.024],[7.567,48.027],[7.567,48.028],[7.566,48.03],[7.567,48.033],[7.57,48.039],[7.573,48.046],[7.574,48.048],[7.574,48.054],[7.574,48.059],[7.573,48.062],[7.568,48.069],[7.57,48.078],[7.569,48.082],[7.57,48.085],[7.572,48.089],[7.575,48.092],[7.58,48.101],[7.58,48.105],[7.578,48.112],[7.578,48.116],[7.578,48.121],[7.578,48.122],[7.581,48.125],[7.584,48.127],[7.585,48.128],[7.587,48.129],[7.591,48.13],[7.595,48.132],[7.597,48.134],[7.598,48.137],[7.6,48.14],[7.599,48.143],[7.599,48.145],[7.598,48.147],[7.598,48.149],[7.599,48.15],[7.607,48.163],[7.611,48.169],[7.614,48.171],[7.619,48.175],[7.62,48.176],[7.625,48.181],[7.63,48.185],[7.631,48.187],[7.635,48.194],[7.638,48.2],[7.64,48.202],[7.641,48.205],[7.644,48.208],[7.645,48.209],[7.646,48.21],[7.648,48.212],[7.654,48.218],[7.658,48.223],[7.661,48.228],[7.663,48.235],[7.665,48.239],[7.669,48.245],[7.67,48.249],[7.676,48.252],[7.676,48.261],[7.677,48.264],[7.678,48.268],[7.68,48.269],[7.68,48.273],[7.681,48.273],[7.68,48.274],[7.681,48.275],[7.683,48.276],[7.683,48.277],[7.681,48.277],[7.681,48.278],[7.683,48.278],[7.684,48.278],[7.685,48.279],[7.685,48.28],[7.684,48.281],[7.689,48.294],[7.692,48.3],[7.697,48.305],[7.703,48.309],[7.709,48.311],[7.724,48.315],[7.731,48.316],[7.732,48.318],[7.734,48.318],[7.737,48.32],[7.739,48.322],[7.741,48.324],[7.742,48.325],[7.744,48.328],[7.744,48.331],[7.746,48.333],[7.749,48.336],[7.747,48.347],[7.743,48.371],[7.74,48.383],[7.737,48.394],[7.743,48.416],[7.745,48.422],[7.745,48.425],[7.752,48.444],[7.766,48.48],[7.771,48.492],[7.78,48.496],[7.795,48.502],[7.802,48.507],[7.805,48.514],[7.806,48.521],[7.805,48.53],[7.805,48.532],[7.805,48.548],[7.805,48.56],[7.803,48.57],[7.801,48.574],[7.801,48.572],[7.8,48.574],[7.799,48.576],[7.799,48.576],[7.799,48.577],[7.799,48.577],[7.798,48.579],[7.798,48.582],[7.798,48.583],[7.799,48.585],[7.8,48.587],[7.8,48.588],[7.801,48.59],[7.802,48.591],[7.802,48.592],[7.803,48.593],[7.803,48.594],[7.804,48.594],[7.806,48.597],[7.81,48.601],[7.811,48.602],[7.815,48.607],[7.817,48.609],[7.82,48.612],[7.823,48.615],[7.824,48.616],[7.826,48.618],[7.828,48.62],[7.829,48.622],[7.83,48.625],[7.831,48.629],[7.832,48.63],[7.832,48.633],[7.833,48.634],[7.834,48.637],[7.835,48.639],[7.836,48.641],[7.838,48.643],[7.839,48.644],[7.838,48.644],[7.841,48.646],[7.843,48.647],[7.845,48.648],[7.848,48.648],[7.85,48.649],[7.852,48.649],[7.853,48.65],[7.855,48.65],[7.858,48.651],[7.867,48.654],[7.871,48.656],[7.873,48.657],[7.874,48.657],[7.873,48.657],[7.877,48.658],[7.882,48.66],[7.885,48.661],[7.888,48.663],[7.889,48.664],[7.889,48.665],[7.89,48.666],[7.891,48.667],[7.895,48.669],[7.898,48.672],[7.899,48.673],[7.899,48.674],[7.9,48.676],[7.9,48.677],[7.902,48.679],[7.903,48.681],[7.903,48.681],[7.905,48.683],[7.905,48.683],[7.909,48.686],[7.911,48.688],[7.912,48.688],[7.913,48.688],[7.913,48.689],[7.914,48.689],[7.915,48.689],[7.915,48.69],[7.918,48.691],[7.923,48.694],[7.926,48.696],[7.927,48.697],[7.928,48.697],[7.931,48.698],[7.933,48.699],[7.935,48.7],[7.938,48.702],[7.94,48.703],[7.942,48.706],[7.951,48.713],[7.952,48.713],[7.952,48.714],[7.952,48.714],[7.955,48.716],[7.96,48.72],[7.963,48.723],[7.965,48.726],[7.965,48.727],[7.966,48.728],[7.966,48.731],[7.965,48.737],[7.965,48.741],[7.964,48.744],[7.964,48.746],[7.964,48.746],[7.964,48.746],[7.965,48.749],[7.966,48.751],[7.966,48.753],[7.967,48.755],[7.969,48.758],[7.971,48.759],[7.973,48.76],[7.975,48.76],[7.979,48.761],[7.981,48.761],[7.982,48.761],[7.984,48.761],[7.989,48.76],[7.992,48.76],[7.998,48.759],[8,48.759],[8.003,48.758],[8.006,48.759],[8.01,48.76],[8.014,48.761],[8.018,48.764],[8.021,48.767],[8.022,48.77],[8.022,48.772],[8.024,48.777],[8.024,48.778],[8.024,48.78],[8.024,48.782],[8.025,48.784],[8.025,48.785],[8.027,48.786],[8.029,48.787],[8.03,48.788],[8.03,48.789],[8.032,48.79],[8.035,48.792],[8.036,48.792],[8.038,48.791],[8.042,48.792],[8.046,48.792],[8.047,48.792],[8.051,48.792],[8.054,48.791],[8.055,48.791],[8.056,48.791],[8.058,48.79],[8.062,48.79],[8.065,48.791],[8.068,48.792],[8.069,48.793],[8.069,48.794],[8.069,48.794],[8.069,48.795],[8.069,48.795],[8.07,48.796],[8.071,48.796],[8.073,48.796],[8.074,48.796],[8.076,48.796],[8.077,48.797],[8.08,48.798],[8.081,48.799],[8.086,48.803],[8.091,48.807],[8.095,48.811],[8.097,48.812],[8.098,48.813],[8.101,48.817],[8.102,48.82],[8.103,48.824],[8.103,48.827],[8.103,48.831],[8.104,48.833],[8.105,48.835],[8.106,48.836],[8.106,48.837],[8.111,48.844],[8.111,48.844],[8.11,48.845],[8.11,48.845],[8.11,48.845],[8.109,48.845],[8.109,48.845],[8.109,48.845],[8.11,48.846],[8.11,48.846],[8.11,48.846],[8.11,48.847],[8.11,48.847],[8.11,48.848],[8.112,48.848],[8.113,48.849],[8.114,48.852],[8.114,48.852],[8.117,48.857],[8.119,48.864],[8.124,48.871],[8.125,48.874],[8.126,48.875],[8.127,48.876],[8.127,48.877],[8.133,48.886],[8.137,48.892],[8.137,48.893],[8.139,48.894],[8.139,48.895],[8.14,48.896],[8.142,48.898],[8.142,48.899],[8.143,48.9],[8.144,48.901],[8.15,48.908],[8.156,48.914],[8.158,48.916],[8.158,48.916],[8.159,48.918],[8.163,48.921],[8.167,48.925],[8.172,48.929],[8.175,48.932],[8.177,48.934],[8.178,48.935],[8.179,48.936],[8.182,48.94],[8.184,48.942],[8.183,48.942],[8.184,48.943],[8.186,48.945],[8.189,48.95],[8.19,48.951],[8.191,48.953],[8.194,48.956],[8.195,48.958],[8.197,48.959],[8.201,48.961],[8.208,48.963],[8.213,48.964],[8.214,48.964],[8.215,48.964],[8.218,48.965],[8.221,48.965],[8.221,48.966],[8.222,48.965],[8.224,48.966],[8.232,48.967],[8.232,48.968],[8.249,48.976],[8.261,48.982],[8.267,48.986],[8.27,48.989],[8.272,48.99],[8.279,48.993],[8.284,48.996],[8.29,49.001],[8.297,49.012],[8.3,49.02],[8.305,49.04],[8.306,49.043],[8.307,49.044],[8.316,49.061],[8.327,49.071],[8.334,49.074],[8.339,49.077],[8.344,49.08],[8.35,49.085],[8.355,49.092],[8.356,49.094],[8.359,49.099],[8.367,49.133],[8.37,49.144],[8.371,49.147],[8.371,49.154],[8.368,49.161],[8.367,49.165],[8.37,49.172],[8.375,49.177],[8.377,49.182],[8.384,49.194],[8.386,49.204],[8.386,49.209],[8.385,49.212],[8.384,49.216],[8.385,49.231],[8.394,49.243],[8.4,49.247],[8.409,49.251],[8.418,49.254],[8.438,49.263],[8.449,49.271],[8.449,49.271],[8.453,49.278],[8.458,49.282],[8.46,49.284],[8.463,49.285],[8.483,49.29],[8.488,49.293],[8.49,49.296],[8.49,49.3],[8.488,49.303],[8.484,49.305],[8.47,49.31],[8.466,49.311],[8.459,49.315],[8.452,49.319],[8.449,49.323],[8.452,49.331],[8.454,49.335],[8.459,49.339],[8.469,49.344],[8.475,49.347],[8.481,49.349],[8.489,49.357],[8.492,49.36],[8.497,49.366],[8.5,49.374],[8.502,49.381],[8.502,49.386],[8.502,49.391],[8.498,49.397],[8.496,49.404],[8.495,49.413],[8.503,49.425],[8.508,49.436],[8.504,49.439],[8.497,49.441],[8.491,49.445],[8.478,49.445],[8.472,49.445],[8.458,49.446],[8.453,49.447],[8.446,49.45],[8.44,49.455],[8.44,49.46],[8.451,49.464],[8.457,49.467],[8.462,49.475],[8.457,49.479],[8.451,49.483],[8.44,49.496],[8.438,49.502],[8.432,49.514],[8.428,49.522],[8.423,49.528],[8.421,49.534],[8.412,49.548],[8.41,49.554],[8.411,49.561],[8.42,49.572],[8.416,49.583],[8.413,49.587],[8.409,49.592],[8.41,49.594],[8.409,49.595],[8.407,49.601],[8.403,49.606],[8.397,49.61],[8.39,49.614],[8.38,49.623],[8.376,49.629],[8.372,49.638],[8.37,49.646],[8.37,49.661],[8.364,49.665],[8.36,49.67],[8.354,49.682],[8.354,49.688],[8.357,49.693],[8.362,49.7],[8.37,49.703],[8.381,49.707],[8.421,49.716],[8.426,49.717],[8.437,49.725],[8.458,49.738],[8.478,49.752],[8.479,49.756],[8.478,49.76],[8.473,49.765],[8.459,49.765],[8.442,49.762],[8.427,49.763],[8.421,49.768],[8.416,49.775],[8.412,49.783],[8.406,49.799],[8.401,49.804],[8.37,49.826],[8.371,49.835],[8.379,49.85],[8.38,49.852],[8.378,49.856],[8.372,49.86],[8.359,49.864],[8.355,49.866],[8.345,49.872],[8.34,49.879],[8.339,49.889],[8.347,49.911],[8.346,49.918],[8.344,49.925],[8.341,49.938],[8.339,49.945],[8.336,49.952],[8.315,49.973],[8.303,49.981],[8.299,49.983],[8.29,49.989],[8.285,49.99],[8.28,49.995],[8.273,50.001],[8.272,50.004],[8.272,50.007],[8.268,50.012],[8.265,50.015],[8.259,50.02],[8.236,50.028],[8.208,50.034],[8.201,50.034],[8.192,50.035],[8.168,50.032],[8.155,50.028],[8.118,50.02],[8.102,50.016],[8.027,50.001],[8.02,49.999],[8.003,49.993],[7.996,49.988],[7.988,49.987],[7.979,49.984],[7.967,49.98],[7.952,49.978],[7.941,49.978],[7.895,49.973],[7.875,49.974],[7.86,49.985],[7.859,49.989],[7.859,50],[7.854,50.009],[7.849,50.013],[7.844,50.016],[7.831,50.021],[7.817,50.032],[7.802,50.041],[7.788,50.046],[7.775,50.054],[7.774,50.058],[7.775,50.065],[7.775,50.068],[7.776,50.072],[7.774,50.077],[7.769,50.08],[7.758,50.088],[7.734,50.108],[7.727,50.11],[7.724,50.115],[7.726,50.118],[7.735,50.126],[7.737,50.134],[7.728,50.14],[7.725,50.148],[7.711,50.157],[7.702,50.166],[7.697,50.169],[7.69,50.171],[7.68,50.17],[7.67,50.173],[7.664,50.174],[7.648,50.181],[7.647,50.184],[7.649,50.19],[7.648,50.196],[7.645,50.198],[7.644,50.201],[7.627,50.211],[7.621,50.214],[7.618,50.222],[7.613,50.227],[7.604,50.232],[7.59,50.233],[7.585,50.233],[7.577,50.24],[7.58,50.247],[7.586,50.249],[7.591,50.25],[7.604,50.25],[7.618,50.248],[7.619,50.248],[7.636,50.247],[7.638,50.248],[7.646,50.252],[7.648,50.255],[7.649,50.26],[7.647,50.265],[7.634,50.277],[7.631,50.279],[7.628,50.281],[7.62,50.287],[7.614,50.29],[7.597,50.309],[7.595,50.309],[7.595,50.309],[7.594,50.311],[7.594,50.311],[7.593,50.314],[7.589,50.319],[7.592,50.327],[7.592,50.327],[7.594,50.333],[7.596,50.339],[7.605,50.355],[7.61,50.365],[7.615,50.375],[7.616,50.378],[7.619,50.384],[7.62,50.389],[7.616,50.395],[7.609,50.399],[7.594,50.404],[7.574,50.414],[7.554,50.422],[7.539,50.425],[7.528,50.425],[7.522,50.423],[7.518,50.422],[7.51,50.417],[7.502,50.415],[7.489,50.415],[7.478,50.416],[7.464,50.421],[7.458,50.425],[7.451,50.434],[7.445,50.441],[7.441,50.443],[7.436,50.444],[7.428,50.445],[7.418,50.443],[7.404,50.443],[7.393,50.445],[7.387,50.448],[7.379,50.452],[7.356,50.466],[7.352,50.471],[7.337,50.483],[7.325,50.494],[7.31,50.506],[7.299,50.517],[7.296,50.521],[7.292,50.527],[7.288,50.532],[7.285,50.537],[7.271,50.566],[7.267,50.571],[7.258,50.576],[7.235,50.58],[7.224,50.584],[7.214,50.59],[7.212,50.596],[7.214,50.6],[7.216,50.603],[7.216,50.608],[7.215,50.623],[7.214,50.635],[7.215,50.643],[7.212,50.649],[7.209,50.652],[7.207,50.658],[7.203,50.661],[7.198,50.662],[7.195,50.664],[7.184,50.678],[7.179,50.687],[7.173,50.692],[7.166,50.707],[7.161,50.712],[7.154,50.715],[7.134,50.721],[7.127,50.724],[7.122,50.727],[7.12,50.728],[7.113,50.739],[7.107,50.75],[7.105,50.755],[7.101,50.757],[7.09,50.762],[7.09,50.762],[7.088,50.763],[7.088,50.763],[7.066,50.773],[7.059,50.776],[7.057,50.776],[7.046,50.782],[7.037,50.788],[7.034,50.797],[7.034,50.798],[7.035,50.803],[7.034,50.809],[7.029,50.816],[7.027,50.818],[7.023,50.821],[7.021,50.822],[7.012,50.824],[7,50.826],[6.999,50.826],[6.988,50.829],[6.982,50.834],[6.982,50.839],[6.983,50.84],[6.986,50.842],[6.996,50.846],[7.012,50.854],[7.018,50.859],[7.022,50.863],[7.033,50.868],[7.042,50.87],[7.049,50.874],[7.052,50.88],[7.052,50.886],[7.047,50.89],[7.039,50.893],[7.029,50.894],[7.013,50.894],[7.012,50.894],[7.005,50.895],[6.997,50.897],[6.991,50.902],[6.989,50.903],[6.977,50.914],[6.974,50.918],[6.969,50.925],[6.965,50.932],[6.96,50.939],[6.966,50.948],[6.966,50.948],[6.971,50.952],[6.992,50.965],[6.995,50.971],[6.992,50.975],[6.986,50.979],[6.972,50.978],[6.965,50.985],[6.96,50.992],[6.959,50.998],[6.96,51.003],[6.969,51.015],[6.968,51.021],[6.959,51.029],[6.95,51.033],[6.948,51.034],[6.927,51.046],[6.911,51.052],[6.856,51.071],[6.854,51.072],[6.852,51.074],[6.852,51.075],[6.85,51.079],[6.851,51.081],[6.851,51.083],[6.853,51.085],[6.854,51.086],[6.864,51.091],[6.875,51.094],[6.879,51.1],[6.879,51.105],[6.877,51.108],[6.864,51.12],[6.861,51.122],[6.853,51.127],[6.847,51.131],[6.846,51.137],[6.848,51.144],[6.853,51.15],[6.853,51.154],[6.853,51.155],[6.853,51.155],[6.849,51.157],[6.841,51.158],[6.841,51.158],[6.836,51.159],[6.833,51.159],[6.815,51.144],[6.806,51.142],[6.799,51.145],[6.797,51.146],[6.795,51.152],[6.799,51.161],[6.799,51.169],[6.795,51.17],[6.795,51.171],[6.792,51.175],[6.792,51.176],[6.788,51.179],[6.78,51.181],[6.766,51.179],[6.764,51.179],[6.759,51.18],[6.755,51.18],[6.752,51.18],[6.737,51.184],[6.733,51.192],[6.729,51.203],[6.729,51.208],[6.726,51.217],[6.728,51.225],[6.732,51.226],[6.732,51.226],[6.742,51.226],[6.746,51.225],[6.755,51.22],[6.758,51.22],[6.763,51.222],[6.764,51.227],[6.764,51.227],[6.764,51.232],[6.763,51.238],[6.759,51.243],[6.751,51.247],[6.75,51.247],[6.746,51.252],[6.722,51.259],[6.716,51.261],[6.707,51.267],[6.705,51.271],[6.705,51.281],[6.712,51.286],[6.714,51.287],[6.731,51.303],[6.732,51.309],[6.732,51.316],[6.729,51.32],[6.722,51.327],[6.706,51.334],[6.664,51.345],[6.66,51.346],[6.656,51.351],[6.662,51.365],[6.664,51.366],[6.67,51.369],[6.68,51.372],[6.705,51.373],[6.712,51.376],[6.726,51.383],[6.739,51.392],[6.743,51.397],[6.744,51.401],[6.744,51.406],[6.74,51.41],[6.732,51.418],[6.718,51.427],[6.713,51.434],[6.712,51.439],[6.715,51.448],[6.724,51.455],[6.721,51.462],[6.715,51.466],[6.69,51.475],[6.686,51.481],[6.688,51.486],[6.702,51.494],[6.715,51.498],[6.723,51.508],[6.717,51.514],[6.713,51.52],[6.709,51.521],[6.691,51.528],[6.686,51.533],[6.681,51.54],[6.682,51.546],[6.689,51.553],[6.691,51.556],[6.691,51.56],[6.691,51.565],[6.687,51.571],[6.678,51.576],[6.662,51.578],[6.652,51.577],[6.642,51.574],[6.633,51.57],[6.63,51.569],[6.612,51.568],[6.606,51.57],[6.602,51.573],[6.601,51.583],[6.603,51.59],[6.6,51.596],[6.592,51.612],[6.59,51.619],[6.592,51.625],[6.599,51.63],[6.599,51.634],[6.602,51.636],[6.605,51.642],[6.603,51.652],[6.592,51.657],[6.585,51.66],[6.566,51.659],[6.56,51.659],[6.543,51.66],[6.523,51.662],[6.499,51.662],[6.486,51.667],[6.48,51.671],[6.477,51.675],[6.476,51.68],[6.475,51.687],[6.473,51.691],[6.468,51.697],[6.463,51.702],[6.461,51.703],[6.454,51.706],[6.443,51.708],[6.433,51.71],[6.429,51.71],[6.418,51.713],[6.411,51.719],[6.412,51.724],[6.418,51.731],[6.424,51.738],[6.422,51.747],[6.418,51.752],[6.41,51.755],[6.4,51.756],[6.391,51.756],[6.35,51.756],[6.335,51.767],[6.331,51.775],[6.327,51.784],[6.316,51.798],[6.306,51.806],[6.282,51.819],[6.252,51.827],[6.223,51.83],[6.183,51.839],[6.166,51.843],[6.163,51.844],[6.162,51.845],[6.156,51.846],[6.15,51.847],[6.148,51.848],[6.148,51.849],[6.146,51.849],[6.143,51.849],[6.141,51.849],[6.14,51.849],[6.134,51.85],[6.132,51.85],[6.131,51.85],[6.119,51.85],[6.115,51.85],[6.111,51.849],[6.107,51.85],[6.106,51.85],[6.102,51.851],[6.101,51.851],[6.099,51.852],[6.098,51.853],[6.095,51.853],[6.093,51.854],[6.092,51.854],[6.093,51.855],[6.093,51.856],[6.093,51.857],[6.091,51.858],[6.09,51.858],[6.089,51.858],[6.089,51.857],[6.088,51.857],[6.086,51.858],[6.086,51.858],[6.085,51.858],[6.084,51.859],[6.083,51.86],[6.079,51.862],[6.079,51.862],[6.076,51.862],[6.07,51.866],[6.067,51.867],[6.062,51.869],[6.058,51.87],[6.032,51.881],[6.024,51.892],[6.022,51.894],[6.022,51.896],[6.02,51.898],[6.017,51.9],[6.014,51.901],[6.012,51.902],[6.008,51.903],[6.002,51.905],[5.993,51.908],[5.99,51.91],[5.984,51.915],[5.978,51.921],[5.976,51.923],[5.968,51.928],[5.965,51.931],[5.963,51.932],[5.961,51.935],[5.96,51.939],[5.959,51.942],[5.958,51.944],[5.957,51.946],[5.954,51.948],[5.949,51.951],[5.942,51.954],[5.94,51.955],[5.938,51.956],[5.936,51.958],[5.934,51.96],[5.933,51.965],[5.932,51.966],[5.93,51.967],[5.928,51.968],[5.926,51.969],[5.923,51.97],[5.92,51.97],[5.917,51.971],[5.915,51.972],[5.913,51.973],[5.91,51.974],[5.907,51.975],[5.907,51.974],[5.904,51.975],[5.904,51.975],[5.9,51.98],[5.893,51.983],[5.889,51.983],[5.886,51.983],[5.883,51.983],[5.88,51.982],[5.875,51.981],[5.874,51.981],[5.872,51.98],[5.873,51.979],[5.872,51.978],[5.871,51.977],[5.869,51.975],[5.867,51.973],[5.866,51.973],[5.859,51.968],[5.858,51.968],[5.857,51.968],[5.855,51.968],[5.853,51.969],[5.853,51.969],[5.851,51.97],[5.843,51.972],[5.84,51.973],[5.836,51.973],[5.833,51.973],[5.83,51.973],[5.827,51.972],[5.825,51.972],[5.813,51.965],[5.81,51.964],[5.808,51.963],[5.801,51.962],[5.797,51.962],[5.793,51.961],[5.787,51.96],[5.785,51.959],[5.772,51.96],[5.771,51.96],[5.763,51.963],[5.757,51.965],[5.745,51.971],[5.74,51.971],[5.737,51.971],[5.731,51.969],[5.723,51.963],[5.72,51.963],[5.718,51.963],[5.714,51.962],[5.711,51.962],[5.705,51.962],[5.704,51.961],[5.702,51.961],[5.7,51.961],[5.694,51.96],[5.691,51.959],[5.69,51.959],[5.687,51.959],[5.684,51.959],[5.681,51.958],[5.676,51.956],[5.673,51.954],[5.669,51.952],[5.664,51.952],[5.656,51.953],[5.654,51.953],[5.652,51.953],[5.649,51.953],[5.646,51.952],[5.643,51.949],[5.642,51.948],[5.641,51.947],[5.64,51.947],[5.638,51.945],[5.635,51.943],[5.633,51.942],[5.63,51.942],[5.607,51.944],[5.603,51.945],[5.596,51.949],[5.593,51.95],[5.591,51.951],[5.585,51.951],[5.572,51.954],[5.57,51.954],[5.563,51.955],[5.56,51.956],[5.557,51.957],[5.558,51.958],[5.558,51.959],[5.555,51.961],[5.555,51.96],[5.555,51.959],[5.554,51.959],[5.552,51.96],[5.55,51.961],[5.547,51.963],[5.545,51.966],[5.541,51.966],[5.54,51.966],[5.529,51.969],[5.519,51.971],[5.509,51.973],[5.506,51.974],[5.504,51.975],[5.5,51.977],[5.497,51.979],[5.49,51.981],[5.486,51.983],[5.484,51.983],[5.482,51.983],[5.474,51.984],[5.471,51.984],[5.467,51.984],[5.458,51.985],[5.454,51.985],[5.451,51.986],[5.448,51.987],[5.445,51.987],[5.442,51.988],[5.44,51.988],[5.437,51.987],[5.435,51.987],[5.432,51.987],[5.433,51.985],[5.43,51.984],[5.429,51.985],[5.428,51.985],[5.426,51.984],[5.426,51.983],[5.425,51.982],[5.424,51.982],[5.421,51.98],[5.42,51.98],[5.414,51.978],[5.412,51.977],[5.41,51.977],[5.407,51.977],[5.405,51.976],[5.404,51.976],[5.401,51.975],[5.399,51.975],[5.397,51.974],[5.396,51.974],[5.394,51.974],[5.393,51.974],[5.392,51.973],[5.392,51.973],[5.393,51.972],[5.386,51.97],[5.383,51.97],[5.38,51.97],[5.375,51.97],[5.372,51.971],[5.37,51.971],[5.364,51.972],[5.362,51.972],[5.345,51.968],[5.34,51.963],[5.336,51.961],[5.336,51.96],[5.334,51.959],[5.332,51.958],[5.328,51.957],[5.324,51.956],[5.322,51.956],[5.319,51.956],[5.316,51.957],[5.314,51.958],[5.311,51.959],[5.308,51.961],[5.304,51.962],[5.301,51.963],[5.297,51.964],[5.292,51.964],[5.288,51.964],[5.284,51.964],[5.278,51.965],[5.274,51.966],[5.271,51.967],[5.266,51.968],[5.263,51.97],[5.26,51.971],[5.257,51.973],[5.255,51.974],[5.248,51.979],[5.244,51.981],[5.24,51.981],[5.237,51.981],[5.231,51.979],[5.226,51.973],[5.223,51.969],[5.22,51.966],[5.218,51.964],[5.215,51.963],[5.212,51.961],[5.208,51.961],[5.205,51.961],[5.201,51.961],[5.198,51.962],[5.195,51.963],[5.19,51.965],[5.187,51.966],[5.179,51.969],[5.174,51.971],[5.166,51.972],[5.163,51.972],[5.158,51.972],[5.156,51.973],[5.155,51.973],[5.151,51.975],[5.151,51.975],[5.149,51.975],[5.146,51.975],[5.145,51.977],[5.143,51.98],[5.135,51.988],[5.133,51.991],[5.13,51.993],[5.126,51.996],[5.12,51.998],[5.116,51.999],[5.109,52.001],[5.105,52.002],[5.101,52.002],[5.097,52.002],[5.094,52.001],[5.091,52.001],[5.087,51.999],[5.083,51.998],[5.082,51.998],[5.077,51.996],[5.074,51.995],[5.073,51.993],[5.07,51.992],[5.067,51.992],[5.065,51.991],[5.064,51.989],[5.064,51.988],[5.063,51.986],[5.062,51.986],[5.06,51.985],[5.059,51.985],[5.058,51.986],[5.058,51.987],[5.055,51.986],[5.054,51.985],[5.05,51.983],[5.048,51.982],[5.045,51.98],[5.042,51.978],[5.042,51.978],[5.04,51.976],[5.04,51.974],[5.039,51.972],[5.037,51.971],[5.035,51.969],[5.032,51.968],[5.03,51.967],[5.027,51.967],[5.025,51.967],[5.022,51.968],[5.019,51.968],[5.017,51.97],[5.015,51.971],[5.012,51.973],[5.009,51.974],[5.007,51.976],[5.004,51.977],[5.001,51.977],[4.999,51.976],[5.003,51.977],[4.999,51.977],[4.995,51.977],[4.99,51.975],[4.986,51.974],[4.985,51.973],[4.981,51.969],[4.973,51.962],[4.968,51.96],[4.964,51.96],[4.96,51.96],[4.956,51.961],[4.952,51.963],[4.95,51.963],[4.947,51.962],[4.945,51.963],[4.944,51.963],[4.941,51.963],[4.939,51.962],[4.936,51.96],[4.935,51.959],[4.931,51.958],[4.929,51.957],[4.928,51.956],[4.927,51.956],[4.927,51.954],[4.926,51.953],[4.925,51.953],[4.922,51.95],[4.92,51.948],[4.916,51.944],[4.914,51.944],[4.909,51.943],[4.902,51.942],[4.893,51.942],[4.889,51.941],[4.882,51.94],[4.878,51.939],[4.873,51.939],[4.868,51.939],[4.866,51.94],[4.862,51.939],[4.859,51.94],[4.853,51.941],[4.851,51.941],[4.846,51.94],[4.838,51.939],[4.835,51.938],[4.833,51.937],[4.83,51.934],[4.824,51.931],[4.819,51.927],[4.775,51.915],[4.773,51.915],[4.771,51.915],[4.769,51.915],[4.766,51.914],[4.761,51.911],[4.759,51.911],[4.733,51.904],[4.732,51.903],[4.731,51.903],[4.727,51.901],[4.726,51.9],[4.723,51.899],[4.72,51.898],[4.716,51.898],[4.714,51.898],[4.704,51.899],[4.701,51.899],[4.698,51.899],[4.696,51.898],[4.693,51.897],[4.67,51.888],[4.658,51.888],[4.656,51.888],[4.653,51.888],[4.649,51.888],[4.646,51.889],[4.643,51.889],[4.64,51.889],[4.639,51.889],[4.635,51.889],[4.633,51.889],[4.631,51.888],[4.629,51.889],[4.628,51.888],[4.622,51.888],[4.617,51.888],[4.615,51.889],[4.614,51.89],[4.608,51.89],[4.604,51.891],[4.604,51.891],[4.599,51.891],[4.596,51.892],[4.593,51.893],[4.59,51.894],[4.589,51.894],[4.588,51.895],[4.585,51.897],[4.583,51.899],[4.581,51.9],[4.579,51.901],[4.576,51.901],[4.576,51.9],[4.573,51.9],[4.572,51.902],[4.57,51.901],[4.568,51.901],[4.566,51.901],[4.561,51.906],[4.568,51.91],[4.57,51.912],[4.572,51.913],[4.577,51.915],[4.58,51.918],[4.579,51.919],[4.579,51.921],[4.58,51.922],[4.581,51.922],[4.584,51.922],[4.587,51.923],[4.588,51.923],[4.589,51.924],[4.591,51.925],[4.593,51.926],[4.596,51.927],[4.6,51.928],[4.601,51.928],[4.606,51.928],[4.608,51.927],[4.609,51.927],[4.611,51.928],[4.611,51.928],[4.611,51.93],[4.611,51.931],[4.611,51.932],[4.616,51.934],[4.617,51.934],[4.619,51.937],[4.62,51.938],[4.621,51.938],[4.622,51.938],[4.624,51.938],[4.628,51.938],[4.631,51.938],[4.631,51.938],[4.633,51.942],[4.634,51.944],[4.635,51.947],[4.636,51.951],[4.637,51.952],[4.638,51.953],[4.64,51.954],[4.642,51.955],[4.642,51.955],[4.642,51.956],[4.64,51.959],[4.637,51.961],[4.635,51.962],[4.632,51.965],[4.633,51.969],[4.638,51.972],[4.642,51.973],[4.645,51.973],[4.648,51.974],[4.649,51.975],[4.653,51.977],[4.654,51.978],[4.658,51.978],[4.66,51.979],[4.664,51.98],[4.668,51.981],[4.668,51.982],[4.667,51.982],[4.668,51.983],[4.668,51.984],[4.67,51.986],[4.671,51.987],[4.674,51.989],[4.676,51.99],[4.678,51.992],[4.679,51.993],[4.683,51.995],[4.685,51.996],[4.687,51.998],[4.689,51.998],[4.69,51.999],[4.692,51.999],[4.693,52.004],[4.692,52.006],[4.691,52.008],[4.689,52.009],[4.687,52.011],[4.685,52.013],[4.683,52.016],[4.681,52.021],[4.677,52.022],[4.674,52.023],[4.672,52.023],[4.67,52.024],[4.669,52.026],[4.665,52.028],[4.661,52.032],[4.66,52.037],[4.66,52.041],[4.662,52.049],[4.664,52.059],[4.66,52.064],[4.659,52.07],[4.66,52.075],[4.661,52.082],[4.662,52.084],[4.662,52.087],[4.663,52.089],[4.663,52.091],[4.664,52.096],[4.665,52.1],[4.668,52.106],[4.671,52.111],[4.672,52.113],[4.673,52.115],[4.675,52.119],[4.673,52.12],[4.669,52.121],[4.668,52.121],[4.667,52.122],[4.665,52.124],[4.663,52.128],[4.664,52.131],[4.664,52.136],[4.663,52.139],[4.663,52.14],[4.662,52.141],[4.659,52.142],[4.657,52.142],[4.653,52.143],[4.651,52.143],[4.649,52.143],[4.647,52.143],[4.636,52.14],[4.632,52.14],[4.63,52.139],[4.627,52.138],[4.626,52.137],[4.623,52.135],[4.622,52.134],[4.621,52.132],[4.618,52.131],[4.615,52.13],[4.612,52.13],[4.599,52.132],[4.595,52.132],[4.591,52.132],[4.588,52.13],[4.584,52.129],[4.581,52.129],[4.572,52.129],[4.566,52.13],[4.561,52.132],[4.558,52.134],[4.553,52.137],[4.548,52.139],[4.543,52.141],[4.537,52.141],[4.534,52.142],[4.532,52.142],[4.53,52.143],[4.529,52.144],[4.526,52.145],[4.524,52.147],[4.522,52.154],[4.521,52.154],[4.52,52.155],[4.518,52.156],[4.513,52.157],[4.512,52.157],[4.511,52.157],[4.509,52.157],[4.504,52.157],[4.505,52.158],[4.505,52.159],[4.506,52.161],[4.506,52.161],[4.505,52.162],[4.504,52.162],[4.503,52.163],[4.5,52.163],[4.499,52.164],[4.494,52.164],[4.493,52.164],[4.492,52.164],[4.491,52.164],[4.49,52.164],[4.487,52.165],[4.485,52.164],[4.483,52.163],[4.481,52.161],[4.479,52.159],[4.476,52.159],[4.474,52.158],[4.472,52.157],[4.47,52.155],[4.468,52.154],[4.465,52.152],[4.463,52.153],[4.46,52.154],[4.457,52.156],[4.455,52.158],[4.45,52.161],[4.449,52.162],[4.448,52.163],[4.447,52.165],[4.447,52.167],[4.447,52.17],[4.447,52.171],[4.448,52.172],[4.449,52.173],[4.449,52.178],[4.447,52.179],[4.444,52.179],[4.441,52.18],[4.436,52.181],[4.434,52.183],[4.43,52.187],[4.427,52.189],[4.427,52.191],[4.426,52.192],[4.427,52.194],[4.428,52.194],[4.429,52.195],[4.431,52.196],[4.43,52.197],[4.421,52.203],[4.418,52.204],[4.409,52.207]],[[4.627,43.687],[4.564,43.391],[4.664,43.291],[4.764,43.291],[4.864,43.291],[4.964,43.291],[5.064,43.291],[5.164,43.291],[5.264,43.291]],[[4.717,44.125],[4.716,44.123],[4.717,44.122],[4.718,44.119],[4.719,44.117],[4.719,44.116],[4.72,44.114],[4.721,44.111],[4.721,44.11],[4.722,44.109],[4.724,44.108],[4.726,44.106],[4.727,44.105],[4.729,44.104],[4.728,44.102],[4.727,44.101],[4.726,44.1],[4.726,44.098],[4.726,44.097],[4.726,44.097],[4.726,44.097],[4.726,44.096],[4.727,44.095],[4.727,44.094],[4.729,44.092],[4.73,44.092],[4.732,44.091],[4.732,44.091],[4.734,44.09],[4.735,44.089],[4.737,44.089],[4.74,44.088],[4.746,44.087],[4.75,44.086],[4.752,44.085],[4.754,44.084],[4.757,44.083],[4.758,44.081],[4.76,44.079],[4.762,44.077],[4.765,44.075],[4.767,44.074],[4.769,44.073],[4.771,44.072],[4.775,44.072],[4.779,44.071],[4.779,44.071],[4.782,44.07],[4.787,44.069],[4.788,44.068],[4.79,44.066],[4.79,44.065],[4.791,44.063],[4.791,44.061],[4.791,44.06],[4.791,44.059],[4.79,44.058],[4.79,44.055],[4.79,44.054],[4.791,44.053],[4.793,44.051],[4.797,44.05],[4.798,44.049],[4.803,44.046],[4.806,44.044],[4.808,44.042],[4.81,44.04],[4.813,44.038],[4.815,44.036],[4.817,44.035],[4.818,44.033],[4.819,44.031],[4.82,44.028],[4.82,44.027],[4.821,44.022],[4.82,44.013],[4.821,44.01],[4.821,44.008],[4.822,44.006],[4.822,44.006],[4.821,44.003],[4.821,44],[4.821,43.999],[4.821,43.995],[4.821,43.992],[4.82,43.988],[4.819,43.982],[4.819,43.977],[4.818,43.976],[4.818,43.974],[4.818,43.972],[4.817,43.969],[4.817,43.966],[4.816,43.965],[4.816,43.964],[4.815,43.963],[4.814,43.962],[4.811,43.96],[4.807,43.959],[4.803,43.957],[4.8,43.956],[4.798,43.954],[4.796,43.953],[4.795,43.953],[4.795,43.952],[4.794,43.951],[4.792,43.949],[4.791,43.947],[4.79,43.946],[4.788,43.944],[4.787,43.943],[4.785,43.942],[4.785,43.942],[4.786,43.941],[4.771,43.938],[4.766,43.937],[4.759,43.936],[4.755,43.935],[4.75,43.934],[4.746,43.932],[4.743,43.929],[4.739,43.926],[4.736,43.923],[4.733,43.919],[4.729,43.915],[4.726,43.911],[4.723,43.909],[4.721,43.907],[4.718,43.906],[4.713,43.904],[4.706,43.902],[4.704,43.902],[4.701,43.9],[4.7,43.9],[4.697,43.898],[4.693,43.894],[4.69,43.89],[4.687,43.887],[4.685,43.886],[4.683,43.885],[4.675,43.883],[4.665,43.88],[4.661,43.879],[4.656,43.877],[4.65,43.874],[4.646,43.872],[4.643,43.871],[4.64,43.87],[4.634,43.87],[4.627,43.869],[4.625,43.868],[4.622,43.866],[4.621,43.865],[4.619,43.863],[4.619,43.861],[4.618,43.858],[4.618,43.853],[4.62,43.849],[4.623,43.843],[4.623,43.843],[4.622,43.843],[4.621,43.842],[4.622,43.841],[4.622,43.839],[4.623,43.836],[4.623,43.834],[4.624,43.833],[4.624,43.832],[4.624,43.83],[4.624,43.83],[4.625,43.828],[4.626,43.827],[4.627,43.826],[4.628,43.825],[4.628,43.825],[4.63,43.824],[4.632,43.823],[4.633,43.823],[4.634,43.823],[4.636,43.822],[4.638,43.821],[4.639,43.821],[4.641,43.819],[4.643,43.817],[4.644,43.816],[4.645,43.815],[4.646,43.814],[4.648,43.813],[4.648,43.811],[4.648,43.81],[4.649,43.809],[4.649,43.807],[4.649,43.806],[4.65,43.805],[4.65,43.805],[4.649,43.804],[4.649,43.804],[4.649,43.802],[4.649,43.801],[4.648,43.8],[4.648,43.799],[4.648,43.8],[4.647,43.8],[4.647,43.801],[4.647,43.801],[4.647,43.8],[4.648,43.798],[4.648,43.796],[4.647,43.795],[4.647,43.793],[4.648,43.791],[4.649,43.789],[4.649,43.788],[4.649,43.785],[4.647,43.782],[4.644,43.778],[4.64,43.776],[4.639,43.775],[4.638,43.774],[4.638,43.774],[4.637,43.773],[4.636,43.772],[4.635,43.772],[4.634,43.771],[4.633,43.77],[4.632,43.769],[4.63,43.767],[4.629,43.767],[4.629,43.767],[4.628,43.767],[4.628,43.767],[4.627,43.766],[4.626,43.766],[4.626,43.766],[4.625,43.765],[4.626,43.765],[4.628,43.764],[4.628,43.758],[4.628,43.756],[4.628,43.756],[4.627,43.755],[4.627,43.755],[4.627,43.754],[4.627,43.753],[4.626,43.753],[4.625,43.746],[4.625,43.745],[4.625,43.744],[4.624,43.743],[4.623,43.742],[4.623,43.742],[4.622,43.741],[4.622,43.74],[4.622,43.74],[4.621,43.739],[4.621,43.739],[4.62,43.736],[4.619,43.734],[4.619,43.733],[4.618,43.733],[4.618,43.733],[4.617,43.732],[4.617,43.731],[4.618,43.728],[4.618,43.727],[4.618,43.727],[4.618,43.725],[4.618,43.725],[4.619,43.725],[4.619,43.725],[4.619,43.724],[4.618,43.724],[4.618,43.723],[4.617,43.722],[4.617,43.721],[4.617,43.72],[4.617,43.72],[4.617,43.719],[4.617,43.717],[4.617,43.717],[4.618,43.717],[4.618,43.716],[4.617,43.715],[4.618,43.715],[4.618,43.714],[4.619,43.712],[4.619,43.71],[4.619,43.708],[4.62,43.707],[4.62,43.706],[4.62,43.705],[4.621,43.704],[4.622,43.702],[4.625,43.699],[4.626,43.699],[4.627,43.697],[4.628,43.695],[4.628,43.694],[4.628,43.694],[4.629,43.694],[4.629,43.694],[4.63,43.691],[4.63,43.69],[4.628,43.688]],[[4.801,44.159],[4.798,44.158],[4.797,44.157],[4.796,44.157],[4.796,44.156],[4.794,44.155],[4.793,44.154],[4.791,44.153],[4.789,44.152],[4.789,44.151],[4.788,44.15],[4.787,44.149],[4.785,44.148],[4.783,44.149],[4.782,44.149],[4.781,44.149],[4.78,44.15],[4.778,44.149],[4.777,44.149],[4.776,44.15],[4.775,44.15],[4.773,44.15],[4.772,44.149],[4.771,44.149],[4.769,44.15],[4.769,44.149],[4.768,44.147],[4.767,44.146],[4.766,44.146],[4.765,44.146],[4.764,44.146],[4.763,44.147],[4.761,44.147],[4.76,44.147],[4.758,44.146],[4.757,44.146],[4.755,44.145],[4.754,44.145],[4.753,44.145],[4.751,44.145],[4.751,44.146],[4.75,44.147],[4.749,44.148],[4.748,44.148],[4.747,44.148],[4.745,44.148],[4.744,44.148],[4.742,44.148],[4.739,44.148],[4.738,44.148],[4.737,44.148],[4.735,44.147],[4.734,44.147],[4.732,44.146],[4.731,44.146],[4.731,44.145],[4.731,44.145],[4.731,44.143],[4.731,44.143],[4.73,44.143],[4.73,44.142],[4.731,44.142],[4.731,44.142],[4.731,44.141],[4.731,44.141],[4.731,44.141],[4.733,44.139],[4.733,44.139],[4.734,44.137],[4.734,44.136],[4.734,44.135],[4.731,44.134],[4.731,44.133],[4.73,44.132],[4.727,44.131],[4.725,44.131],[4.723,44.13],[4.721,44.129],[4.719,44.128],[4.718,44.127],[4.717,44.125]],[[6.002,47.224],[6,47.222],[5.999,47.22],[5.997,47.219],[5.996,47.217],[5.995,47.216],[5.995,47.214],[5.995,47.214],[5.993,47.213],[5.992,47.212],[5.991,47.21],[5.99,47.21],[5.987,47.208],[5.986,47.208],[5.985,47.208],[5.984,47.209],[5.983,47.209],[5.981,47.209],[5.977,47.209],[5.974,47.209],[5.972,47.209],[5.97,47.209],[5.968,47.209],[5.965,47.209],[5.963,47.209],[5.963,47.209],[5.962,47.208],[5.961,47.207],[5.961,47.206],[5.96,47.204],[5.961,47.203],[5.962,47.203],[5.963,47.202],[5.965,47.2],[5.966,47.199],[5.966,47.199],[5.965,47.197],[5.964,47.196],[5.963,47.195],[5.962,47.195],[5.959,47.193],[5.958,47.193],[5.957,47.192],[5.955,47.192],[5.951,47.191],[5.949,47.19],[5.948,47.189],[5.944,47.186],[5.939,47.184],[5.934,47.182],[5.927,47.181],[5.921,47.179],[5.915,47.179],[5.908,47.181],[5.9,47.185],[5.894,47.19],[5.89,47.191],[5.885,47.19],[5.883,47.187],[5.885,47.184],[5.888,47.181],[5.894,47.18],[5.896,47.178],[5.897,47.176],[5.897,47.175],[5.896,47.172],[5.893,47.17],[5.887,47.169],[5.886,47.166],[5.886,47.165],[5.886,47.165],[5.886,47.164],[5.886,47.161],[5.886,47.16],[5.886,47.159],[5.887,47.158],[5.887,47.157],[5.887,47.156],[5.888,47.156],[5.889,47.154],[5.889,47.154],[5.889,47.153],[5.889,47.153],[5.889,47.152],[5.888,47.152],[5.887,47.152],[5.886,47.152],[5.885,47.151],[5.884,47.151],[5.883,47.15],[5.88,47.15],[5.877,47.15],[5.875,47.15],[5.872,47.15],[5.87,47.149],[5.869,47.149],[5.867,47.148],[5.865,47.147],[5.863,47.146],[5.862,47.145],[5.86,47.143],[5.857,47.142],[5.854,47.142],[5.852,47.142],[5.851,47.141],[5.849,47.141],[5.846,47.141],[5.844,47.141],[5.842,47.142],[5.84,47.143],[5.839,47.143],[5.839,47.144],[5.84,47.144],[5.841,47.144],[5.841,47.145],[5.842,47.146],[5.842,47.146],[5.842,47.147],[5.842,47.147],[5.843,47.148],[5.843,47.149],[5.842,47.149],[5.843,47.15],[5.843,47.151],[5.843,47.151],[5.845,47.152],[5.846,47.152],[5.847,47.153],[5.849,47.154],[5.85,47.154],[5.851,47.155],[5.852,47.156],[5.853,47.157],[5.853,47.158],[5.854,47.159],[5.856,47.16],[5.857,47.162],[5.857,47.163],[5.857,47.163],[5.857,47.165],[5.857,47.165],[5.857,47.166],[5.856,47.167],[5.855,47.168],[5.854,47.17],[5.853,47.171],[5.853,47.172],[5.852,47.172],[5.851,47.173],[5.85,47.174],[5.849,47.174],[5.847,47.174],[5.845,47.175],[5.843,47.175],[5.842,47.175],[5.84,47.176],[5.838,47.176],[5.837,47.176],[5.836,47.176],[5.834,47.176],[5.832,47.175],[5.831,47.175],[5.829,47.174],[5.828,47.175],[5.827,47.175],[5.826,47.174],[5.821,47.176],[5.815,47.177],[5.809,47.178],[5.803,47.179],[5.795,47.179],[5.788,47.178],[5.783,47.177],[5.778,47.174],[5.774,47.171],[5.772,47.169],[5.769,47.169],[5.769,47.168],[5.768,47.168],[5.768,47.167],[5.767,47.165],[5.767,47.163],[5.767,47.162],[5.765,47.162],[5.763,47.161],[5.762,47.16],[5.76,47.16],[5.759,47.159],[5.758,47.159],[5.756,47.158],[5.755,47.158],[5.753,47.157],[5.75,47.157],[5.749,47.158],[5.748,47.158],[5.746,47.158],[5.745,47.159],[5.744,47.159],[5.742,47.16],[5.741,47.16],[5.74,47.16],[5.736,47.159],[5.731,47.157],[5.73,47.156],[5.727,47.156],[5.726,47.156],[5.724,47.155],[5.723,47.153],[5.722,47.152],[5.722,47.152],[5.721,47.151],[5.719,47.15],[5.718,47.15],[5.716,47.149],[5.714,47.149],[5.712,47.148],[5.71,47.149],[5.708,47.149],[5.707,47.15],[5.706,47.15],[5.706,47.151],[5.706,47.152],[5.708,47.152],[5.709,47.152],[5.71,47.152],[5.711,47.152],[5.712,47.153],[5.713,47.153],[5.714,47.154],[5.715,47.156],[5.715,47.157],[5.715,47.158],[5.713,47.158],[5.708,47.158],[5.701,47.157],[5.694,47.157],[5.689,47.155],[5.685,47.153],[5.68,47.151],[5.676,47.149],[5.673,47.148],[5.672,47.147],[5.67,47.147],[5.667,47.147],[5.666,47.148],[5.664,47.148],[5.663,47.149],[5.662,47.15],[5.662,47.15],[5.662,47.151],[5.662,47.151],[5.663,47.152],[5.664,47.152],[5.664,47.153],[5.663,47.153],[5.662,47.154],[5.66,47.154],[5.654,47.154],[5.649,47.154],[5.645,47.155],[5.643,47.155],[5.642,47.155],[5.64,47.154],[5.638,47.153],[5.636,47.153],[5.635,47.152],[5.635,47.151],[5.635,47.149],[5.635,47.148],[5.635,47.147],[5.634,47.146],[5.633,47.146],[5.632,47.146],[5.63,47.146],[5.627,47.146],[5.624,47.146],[5.62,47.146],[5.617,47.146],[5.614,47.146],[5.612,47.147],[5.61,47.148],[5.609,47.148],[5.607,47.149],[5.606,47.148],[5.602,47.147],[5.6,47.147],[5.6,47.146],[5.601,47.145],[5.601,47.145],[5.601,47.144],[5.601,47.144],[5.6,47.143],[5.599,47.143],[5.598,47.143],[5.597,47.142],[5.596,47.141],[5.595,47.14],[5.594,47.14],[5.593,47.14],[5.593,47.14],[5.589,47.138],[5.588,47.138],[5.587,47.138],[5.586,47.139],[5.585,47.139],[5.584,47.14],[5.583,47.141],[5.582,47.142],[5.582,47.143],[5.58,47.142],[5.567,47.135],[5.567,47.134],[5.567,47.134],[5.564,47.131],[5.562,47.13],[5.561,47.129],[5.56,47.128],[5.559,47.127],[5.557,47.126],[5.554,47.124],[5.553,47.122],[5.552,47.121],[5.551,47.12],[5.55,47.119],[5.55,47.117],[5.55,47.116],[5.551,47.114],[5.551,47.111],[5.551,47.11],[5.551,47.109],[5.55,47.109],[5.549,47.108],[5.547,47.107],[5.545,47.107],[5.543,47.106],[5.54,47.105],[5.537,47.104],[5.534,47.102],[5.533,47.101],[5.532,47.1],[5.531,47.099],[5.531,47.098],[5.531,47.097],[5.532,47.095],[5.533,47.094],[5.534,47.093],[5.534,47.093],[5.532,47.092],[5.531,47.092],[5.531,47.093],[5.531,47.093],[5.529,47.093],[5.527,47.092],[5.525,47.091],[5.524,47.09],[5.522,47.09],[5.522,47.089],[5.52,47.089],[5.519,47.09],[5.518,47.09],[5.518,47.091],[5.517,47.092],[5.516,47.093],[5.513,47.094],[5.512,47.095],[5.505,47.097],[5.501,47.097],[5.5,47.097],[5.5,47.097],[5.499,47.097],[5.499,47.097],[5.499,47.098],[5.498,47.097],[5.497,47.097],[5.495,47.096],[5.493,47.096],[5.491,47.095],[5.487,47.093],[5.485,47.091],[5.484,47.09],[5.484,47.089],[5.484,47.088],[5.485,47.088],[5.486,47.087],[5.487,47.086],[5.487,47.083],[5.482,47.081],[5.479,47.08],[5.475,47.079],[5.472,47.078],[5.471,47.077],[5.471,47.076],[5.47,47.075],[5.47,47.075],[5.471,47.073],[5.473,47.071],[5.474,47.069],[5.477,47.068],[5.478,47.066],[5.478,47.065],[5.477,47.064],[5.475,47.064],[5.474,47.064],[5.469,47.065],[5.469,47.065],[5.467,47.065],[5.466,47.064],[5.464,47.063],[5.462,47.062],[5.459,47.06],[5.459,47.06],[5.457,47.059],[5.455,47.058],[5.453,47.058],[5.451,47.058],[5.448,47.058],[5.447,47.058],[5.447,47.057],[5.448,47.056],[5.449,47.056],[5.451,47.054],[5.452,47.054],[5.454,47.052],[5.455,47.051],[5.456,47.048],[5.456,47.047],[5.456,47.045],[5.455,47.045],[5.455,47.043],[5.454,47.042],[5.451,47.04],[5.45,47.039],[5.448,47.038],[5.447,47.037],[5.446,47.037],[5.447,47.036],[5.447,47.036],[5.446,47.035],[5.446,47.034],[5.446,47.034],[5.446,47.033],[5.448,47.032],[5.449,47.031],[5.449,47.03],[5.449,47.03],[5.45,47.027],[5.45,47.025],[5.45,47.022],[5.45,47.021],[5.45,47.02],[5.45,47.019],[5.45,47.018],[5.449,47.017],[5.448,47.016],[5.447,47.015],[5.445,47.014],[5.444,47.013],[5.443,47.013],[5.443,47.012],[5.442,47.011],[5.44,47.01],[5.439,47.01],[5.437,47.009],[5.434,47.01],[5.432,47.011],[5.43,47.011],[5.429,47.012],[5.428,47.012],[5.427,47.013],[5.427,47.014],[5.425,47.015],[5.425,47.016],[5.423,47.018],[5.421,47.02],[5.417,47.021],[5.415,47.021],[5.414,47.022],[5.412,47.022],[5.409,47.022],[5.407,47.022],[5.405,47.022],[5.404,47.022],[5.403,47.021],[5.401,47.018],[5.401,47.017],[5.4,47.015],[5.4,47.013],[5.398,47.011],[5.396,47.01],[5.395,47.01],[5.393,47.01],[5.392,47.01],[5.391,47.011],[5.389,47.011],[5.387,47.011],[5.384,47.011],[5.382,47.012],[5.381,47.012],[5.381,47.012],[5.379,47.011],[5.377,47.009],[5.377,47.009],[5.376,47.008],[5.375,47.006],[5.376,47.004],[5.376,47.003],[5.377,47.001],[5.377,47.001],[5.377,47],[5.377,47],[5.378,46.999],[5.379,46.998],[5.379,46.997],[5.38,46.996],[5.381,46.994],[5.381,46.993],[5.381,46.992],[5.38,46.991],[5.379,46.989],[5.378,46.988],[5.378,46.988],[5.377,46.988],[5.376,46.987],[5.376,46.986],[5.376,46.985],[5.376,46.984],[5.375,46.983],[5.375,46.982],[5.376,46.981],[5.377,46.98],[5.378,46.978],[5.378,46.977],[5.379,46.976],[5.38,46.975],[5.38,46.974],[5.381,46.973],[5.382,46.971],[5.382,46.971],[5.383,46.971],[5.383,46.97],[5.384,46.97],[5.384,46.969],[5.384,46.968],[5.385,46.967],[5.385,46.966],[5.385,46.965],[5.385,46.964],[5.385,46.963],[5.384,46.963],[5.383,46.963],[5.38,46.962],[5.379,46.961],[5.377,46.96],[5.373,46.959],[5.372,46.959],[5.372,46.958],[5.371,46.958],[5.371,46.958],[5.369,46.957],[5.369,46.957],[5.367,46.956],[5.366,46.955],[5.365,46.954],[5.364,46.953],[5.364,46.951],[5.364,46.95],[5.365,46.949],[5.365,46.949],[5.365,46.948],[5.365,46.947],[5.366,46.947],[5.366,46.946],[5.366,46.946],[5.365,46.943],[5.365,46.943],[5.367,46.942],[5.368,46.941],[5.369,46.941],[5.369,46.94],[5.368,46.94],[5.367,46.94],[5.366,46.941],[5.365,46.941],[5.364,46.94],[5.364,46.94],[5.364,46.939],[5.363,46.937],[5.363,46.936],[5.362,46.935],[5.361,46.934],[5.359,46.933],[5.358,46.932],[5.357,46.932],[5.357,46.932],[5.355,46.932],[5.354,46.932],[5.353,46.932],[5.353,46.931],[5.351,46.931],[5.348,46.932],[5.346,46.932],[5.344,46.932],[5.34,46.933],[5.336,46.933],[5.333,46.933],[5.33,46.933],[5.327,46.932],[5.322,46.932],[5.321,46.932],[5.319,46.932],[5.317,46.932],[5.317,46.933],[5.317,46.933],[5.315,46.933],[5.312,46.932],[5.309,46.932],[5.307,46.932],[5.306,46.933],[5.306,46.934],[5.306,46.935],[5.305,46.936],[5.305,46.936],[5.306,46.937],[5.304,46.938],[5.304,46.939],[5.303,46.941],[5.302,46.943],[5.302,46.944],[5.301,46.945],[5.301,46.946],[5.3,46.946],[5.299,46.947],[5.299,46.948],[5.297,46.948],[5.295,46.949],[5.294,46.949],[5.29,46.95],[5.289,46.949],[5.288,46.949],[5.287,46.948],[5.286,46.947],[5.285,46.946],[5.284,46.945],[5.283,46.945],[5.281,46.944],[5.28,46.943],[5.279,46.942],[5.277,46.941],[5.276,46.94],[5.274,46.938],[5.272,46.938],[5.272,46.938],[5.271,46.937],[5.27,46.937],[5.269,46.937],[5.268,46.937],[5.268,46.938],[5.267,46.938],[5.267,46.939],[5.264,46.941],[5.263,46.941],[5.261,46.941],[5.261,46.942],[5.26,46.94],[5.26,46.939],[5.259,46.939],[5.259,46.939],[5.258,46.94],[5.257,46.94],[5.255,46.941],[5.254,46.941],[5.253,46.94],[5.251,46.94],[5.25,46.94],[5.248,46.94],[5.247,46.939],[5.246,46.939],[5.245,46.939],[5.243,46.939],[5.242,46.939],[5.24,46.939],[5.239,46.938],[5.238,46.937],[5.237,46.937],[5.236,46.936],[5.236,46.935],[5.237,46.934],[5.237,46.933],[5.236,46.932],[5.235,46.932],[5.234,46.932],[5.233,46.932],[5.232,46.932],[5.231,46.932],[5.23,46.932],[5.229,46.932],[5.228,46.932],[5.227,46.932],[5.227,46.931],[5.226,46.93],[5.224,46.93],[5.222,46.93],[5.22,46.93],[5.219,46.931],[5.218,46.931],[5.216,46.932],[5.214,46.932],[5.212,46.932],[5.211,46.931],[5.21,46.931],[5.21,46.93],[5.209,46.93],[5.209,46.929],[5.209,46.929],[5.21,46.928],[5.209,46.928],[5.209,46.928],[5.208,46.928],[5.208,46.927],[5.208,46.924],[5.207,46.924],[5.207,46.924],[5.206,46.924],[5.205,46.924],[5.204,46.925],[5.203,46.927],[5.203,46.928],[5.201,46.929],[5.2,46.929],[5.199,46.93],[5.198,46.93],[5.198,46.931],[5.198,46.932],[5.196,46.934],[5.195,46.935],[5.193,46.936],[5.193,46.937],[5.191,46.938],[5.191,46.939],[5.191,46.94],[5.191,46.942],[5.192,46.943],[5.193,46.944],[5.193,46.945],[5.192,46.945],[5.192,46.945],[5.191,46.945],[5.189,46.944],[5.188,46.943],[5.187,46.942],[5.187,46.94],[5.186,46.938],[5.185,46.938],[5.184,46.937],[5.183,46.937],[5.182,46.937],[5.181,46.937],[5.18,46.937],[5.179,46.936],[5.177,46.936],[5.175,46.936],[5.173,46.936],[5.172,46.935],[5.171,46.935],[5.17,46.935],[5.168,46.935],[5.166,46.934],[5.164,46.935],[5.162,46.935],[5.159,46.936],[5.158,46.936],[5.157,46.937],[5.156,46.938],[5.156,46.938],[5.156,46.939],[5.156,46.94],[5.157,46.941],[5.157,46.942],[5.156,46.943],[5.156,46.944],[5.155,46.945],[5.154,46.945],[5.154,46.945],[5.151,46.947],[5.15,46.948],[5.149,46.948],[5.149,46.948],[5.149,46.948],[5.149,46.948],[5.148,46.949],[5.146,46.949],[5.145,46.949],[5.144,46.949],[5.144,46.949],[5.145,46.949],[5.145,46.949],[5.145,46.949],[5.144,46.948],[5.143,46.948],[5.142,46.948],[5.141,46.948],[5.139,46.948],[5.137,46.948],[5.135,46.948],[5.134,46.948],[5.132,46.948],[5.131,46.948],[5.13,46.948],[5.129,46.948],[5.127,46.948],[5.125,46.948],[5.124,46.948],[5.122,46.949],[5.121,46.949],[5.12,46.949],[5.119,46.948],[5.118,46.948],[5.117,46.946],[5.116,46.943],[5.115,46.942],[5.114,46.941],[5.112,46.939],[5.111,46.938],[5.109,46.937],[5.107,46.936],[5.104,46.935],[5.102,46.934],[5.101,46.933],[5.1,46.933],[5.099,46.933],[5.096,46.931],[5.094,46.93],[5.093,46.929],[5.092,46.928],[5.091,46.926],[5.09,46.924],[5.09,46.924],[5.09,46.923],[5.09,46.922],[5.088,46.921],[5.088,46.921],[5.088,46.921],[5.088,46.921],[5.087,46.921],[5.087,46.92],[5.086,46.92],[5.085,46.918],[5.085,46.917],[5.085,46.916],[5.086,46.914],[5.086,46.913],[5.086,46.912],[5.084,46.911],[5.083,46.91],[5.081,46.909],[5.079,46.908],[5.077,46.907],[5.076,46.907],[5.074,46.905],[5.072,46.904],[5.07,46.902],[5.069,46.901],[5.068,46.901],[5.067,46.901],[5.066,46.9],[5.065,46.901],[5.064,46.901],[5.063,46.901],[5.062,46.902],[5.061,46.902],[5.059,46.902],[5.058,46.902],[5.057,46.902],[5.055,46.903],[5.053,46.903],[5.05,46.903],[5.048,46.903],[5.044,46.903],[5.041,46.903],[5.039,46.903],[5.038,46.902],[5.036,46.902],[5.035,46.901],[5.033,46.901],[5.031,46.901],[5.03,46.901],[5.029,46.902],[5.028,46.903],[5.028,46.904],[5.028,46.905],[5.027,46.905],[5.027,46.905],[5.026,46.905],[5.025,46.905],[5.024,46.905],[5.023,46.904],[5.022,46.905],[5.021,46.905],[5.02,46.906],[5.019,46.906],[5.017,46.906],[5.015,46.907],[5.012,46.909],[5.012,46.91],[5.011,46.911],[5.01,46.913],[5.009,46.914],[5.007,46.915],[5.006,46.915],[5.004,46.915],[5.003,46.914],[5.002,46.914],[5.001,46.913],[5,46.912],[4.999,46.911],[4.997,46.909],[4.997,46.909],[4.996,46.909],[4.995,46.909],[4.995,46.908],[4.994,46.907],[4.994,46.907],[4.994,46.906],[4.993,46.906],[4.993,46.905],[4.992,46.905],[4.992,46.904],[4.991,46.904],[4.99,46.904],[4.989,46.904],[4.988,46.904],[4.986,46.904],[4.985,46.904],[4.983,46.904],[4.981,46.904],[4.98,46.905],[4.978,46.905],[4.976,46.905],[4.975,46.905],[4.974,46.905],[4.973,46.905],[4.972,46.905],[4.97,46.904],[4.969,46.904],[4.968,46.903],[4.966,46.902],[4.964,46.901],[4.964,46.901],[4.963,46.901],[4.962,46.901],[4.961,46.9],[4.96,46.9],[4.958,46.9],[4.957,46.9],[4.956,46.9],[4.954,46.899],[4.954,46.899],[4.953,46.899],[4.952,46.898],[4.951,46.898],[4.951,46.896],[4.95,46.895],[4.95,46.894],[4.95,46.893],[4.95,46.893],[4.95,46.891],[4.95,46.891],[4.95,46.89],[4.951,46.889],[4.951,46.888],[4.953,46.888],[4.954,46.887],[4.956,46.886],[4.957,46.885],[4.958,46.885],[4.96,46.884],[4.961,46.883],[4.962,46.883],[4.963,46.881],[4.963,46.88],[4.963,46.88],[4.963,46.879],[4.963,46.878],[4.962,46.878],[4.962,46.877],[4.961,46.877],[4.959,46.876],[4.958,46.875],[4.956,46.874],[4.955,46.874],[4.955,46.873],[4.954,46.872],[4.954,46.871],[4.953,46.871],[4.954,46.87],[4.954,46.87],[4.955,46.869],[4.955,46.868],[4.957,46.867],[4.958,46.867],[4.959,46.866],[4.96,46.866],[4.961,46.865],[4.962,46.864],[4.962,46.864],[4.962,46.863],[4.962,46.862],[4.962,46.861],[4.962,46.86],[4.962,46.86],[4.962,46.859],[4.961,46.858],[4.961,46.856],[4.961,46.854],[4.962,46.854],[4.962,46.853],[4.962,46.852],[4.962,46.852],[4.962,46.851],[4.961,46.85],[4.961,46.849],[4.96,46.848],[4.96,46.847],[4.96,46.847],[4.959,46.846],[4.959,46.846],[4.958,46.845],[4.957,46.844],[4.956,46.844],[4.955,46.843],[4.954,46.842],[4.952,46.841],[4.95,46.839],[4.949,46.838],[4.948,46.837],[4.947,46.837],[4.945,46.836],[4.944,46.836],[4.943,46.835],[4.943,46.834],[4.942,46.834],[4.942,46.833],[4.941,46.833],[4.94,46.832],[4.939,46.831],[4.938,46.83],[4.938,46.829],[4.937,46.828],[4.937,46.827],[4.937,46.826],[4.936,46.824],[4.936,46.824],[4.935,46.823],[4.935,46.822],[4.934,46.822],[4.933,46.822],[4.931,46.821],[4.93,46.821],[4.928,46.82],[4.926,46.819],[4.923,46.817],[4.92,46.815],[4.919,46.814],[4.918,46.814],[4.917,46.812],[4.917,46.811],[4.917,46.811],[4.916,46.81],[4.915,46.809],[4.914,46.808],[4.913,46.808],[4.912,46.807],[4.91,46.806],[4.909,46.805],[4.908,46.805],[4.906,46.804],[4.905,46.804],[4.903,46.804],[4.9,46.806],[4.898,46.806],[4.897,46.807],[4.897,46.807],[4.896,46.808],[4.894,46.809],[4.892,46.81],[4.891,46.811],[4.891,46.811],[4.89,46.811],[4.888,46.811],[4.886,46.811],[4.885,46.811],[4.884,46.811],[4.883,46.811],[4.882,46.81],[4.881,46.809],[4.879,46.809],[4.879,46.808],[4.878,46.807],[4.877,46.807],[4.877,46.807],[4.877,46.805],[4.877,46.805],[4.877,46.805],[4.876,46.805],[4.876,46.805],[4.876,46.805],[4.875,46.805],[4.875,46.804],[4.875,46.804],[4.875,46.804],[4.876,46.804],[4.876,46.804],[4.876,46.804],[4.877,46.803],[4.877,46.802],[4.877,46.802],[4.877,46.801],[4.877,46.801],[4.877,46.8],[4.877,46.8],[4.877,46.799],[4.877,46.799],[4.876,46.798],[4.875,46.798],[4.874,46.797],[4.873,46.796],[4.871,46.795],[4.869,46.795],[4.867,46.794],[4.865,46.793],[4.864,46.792],[4.863,46.792],[4.862,46.791],[4.861,46.791],[4.86,46.791],[4.86,46.79],[4.859,46.79],[4.857,46.789],[4.856,46.789],[4.855,46.788],[4.853,46.788],[4.852,46.787],[4.85,46.787],[4.849,46.786],[4.847,46.785],[4.846,46.785],[4.844,46.784],[4.843,46.783],[4.842,46.782],[4.841,46.781],[4.841,46.779],[4.841,46.778],[4.841,46.777],[4.841,46.776],[4.841,46.775],[4.841,46.774],[4.842,46.773],[4.843,46.773],[4.847,46.77],[4.851,46.768],[4.851,46.768],[4.852,46.768],[4.853,46.768],[4.855,46.767],[4.856,46.767],[4.857,46.767],[4.858,46.766],[4.86,46.765],[4.861,46.765],[4.863,46.764],[4.865,46.763],[4.866,46.763],[4.867,46.763],[4.869,46.763],[4.87,46.762],[4.871,46.762],[4.873,46.762],[4.874,46.761],[4.875,46.761],[4.875,46.761],[4.876,46.759],[4.877,46.758],[4.878,46.757],[4.879,46.756],[4.879,46.755],[4.88,46.754],[4.88,46.754],[4.88,46.753],[4.88,46.752],[4.88,46.751],[4.878,46.748],[4.878,46.747],[4.877,46.745],[4.877,46.744],[4.876,46.743],[4.877,46.743],[4.877,46.742],[4.878,46.741],[4.879,46.741],[4.88,46.74],[4.881,46.739],[4.882,46.738],[4.884,46.738],[4.886,46.738],[4.887,46.738],[4.888,46.738],[4.889,46.739],[4.891,46.739],[4.891,46.739],[4.892,46.739],[4.894,46.739],[4.895,46.739],[4.895,46.739],[4.896,46.738],[4.897,46.738],[4.898,46.737],[4.899,46.736],[4.9,46.735],[4.901,46.734],[4.902,46.733],[4.903,46.732],[4.904,46.731],[4.904,46.73],[4.905,46.729],[4.906,46.728],[4.906,46.728],[4.908,46.727],[4.91,46.726],[4.911,46.726],[4.912,46.725],[4.914,46.725],[4.915,46.724],[4.917,46.724],[4.918,46.724],[4.918,46.724],[4.919,46.723],[4.92,46.723],[4.921,46.722],[4.923,46.721],[4.924,46.72],[4.925,46.719],[4.927,46.719],[4.927,46.718],[4.928,46.718],[4.929,46.718],[4.93,46.717],[4.93,46.717],[4.931,46.716],[4.931,46.715],[4.931,46.714],[4.932,46.713],[4.932,46.712],[4.932,46.711],[4.932,46.71],[4.933,46.709],[4.934,46.709],[4.934,46.708],[4.934,46.708],[4.936,46.706],[4.937,46.704],[4.937,46.704],[4.938,46.703],[4.938,46.702],[4.939,46.701],[4.939,46.7],[4.939,46.699],[4.94,46.697],[4.94,46.695],[4.94,46.693],[4.941,46.692],[4.941,46.69],[4.942,46.688],[4.942,46.687],[4.943,46.685],[4.944,46.683],[4.944,46.681],[4.945,46.679],[4.946,46.678],[4.947,46.677],[4.946,46.675],[4.946,46.675],[4.946,46.674],[4.946,46.672],[4.946,46.671],[4.946,46.67],[4.947,46.669],[4.948,46.667],[4.949,46.666],[4.95,46.665],[4.95,46.663],[4.95,46.662],[4.95,46.66],[4.951,46.656],[4.951,46.655],[4.951,46.653],[4.951,46.652],[4.951,46.651],[4.951,46.649],[4.951,46.648],[4.952,46.646],[4.952,46.645],[4.952,46.644],[4.952,46.643],[4.952,46.641],[4.951,46.639],[4.951,46.638],[4.95,46.637],[4.949,46.635],[4.948,46.634],[4.947,46.633],[4.944,46.632],[4.944,46.631],[4.943,46.631],[4.942,46.63],[4.941,46.629],[4.941,46.628],[4.94,46.627],[4.94,46.626],[4.94,46.625],[4.939,46.625],[4.939,46.624],[4.939,46.623],[4.939,46.622],[4.936,46.618],[4.934,46.616],[4.934,46.615],[4.933,46.614],[4.932,46.614],[4.931,46.613],[4.93,46.612],[4.929,46.61],[4.928,46.61],[4.927,46.609],[4.927,46.608],[4.926,46.607],[4.925,46.606],[4.924,46.605],[4.924,46.604],[4.923,46.603],[4.921,46.601],[4.92,46.6],[4.919,46.599],[4.918,46.598],[4.917,46.598],[4.915,46.596],[4.913,46.595],[4.912,46.593],[4.911,46.592],[4.91,46.59],[4.909,46.589],[4.909,46.589],[4.909,46.587],[4.909,46.586],[4.909,46.585],[4.908,46.584],[4.909,46.583],[4.909,46.582],[4.909,46.581],[4.909,46.58],[4.909,46.58],[4.909,46.578],[4.909,46.577],[4.908,46.576],[4.908,46.575],[4.908,46.574],[4.908,46.573],[4.909,46.572],[4.909,46.571],[4.91,46.571],[4.911,46.57],[4.913,46.568],[4.914,46.567],[4.914,46.565],[4.915,46.564],[4.915,46.563],[4.915,46.562],[4.916,46.56],[4.917,46.559],[4.917,46.558],[4.917,46.557],[4.918,46.556],[4.918,46.556],[4.919,46.555],[4.919,46.554],[4.92,46.553],[4.921,46.553],[4.921,46.552],[4.921,46.552],[4.921,46.551],[4.922,46.551],[4.923,46.549],[4.923,46.547],[4.924,46.546],[4.924,46.546],[4.925,46.544],[4.926,46.542],[4.927,46.541],[4.929,46.539],[4.93,46.538],[4.931,46.536],[4.932,46.535],[4.933,46.533],[4.933,46.532],[4.933,46.531],[4.934,46.53],[4.935,46.53],[4.935,46.529],[4.934,46.527],[4.934,46.526],[4.934,46.525],[4.932,46.524],[4.931,46.523],[4.929,46.521],[4.928,46.519],[4.927,46.518],[4.926,46.516],[4.924,46.512],[4.924,46.512],[4.924,46.511],[4.923,46.509],[4.923,46.508],[4.922,46.507],[4.921,46.505],[4.919,46.503],[4.915,46.501],[4.912,46.499],[4.911,46.496],[4.91,46.492],[4.91,46.489],[4.91,46.488],[4.91,46.486],[4.911,46.485],[4.911,46.483],[4.911,46.481],[4.911,46.479],[4.911,46.473],[4.91,46.471],[4.909,46.47],[4.908,46.467],[4.903,46.464],[4.902,46.463],[4.9,46.463],[4.898,46.461],[4.896,46.46],[4.895,46.459],[4.894,46.458],[4.893,46.457],[4.891,46.456],[4.89,46.454],[4.889,46.452],[4.888,46.449],[4.887,46.448],[4.886,46.446],[4.886,46.445],[4.885,46.443],[4.885,46.442],[4.884,46.44],[4.886,46.437],[4.885,46.435],[4.885,46.431],[4.884,46.427],[4.884,46.426],[4.883,46.423],[4.883,46.419],[4.883,46.418],[4.884,46.418],[4.884,46.416],[4.886,46.41],[4.884,46.408],[4.881,46.405],[4.88,46.404],[4.879,46.402],[4.878,46.399],[4.876,46.397],[4.874,46.396],[4.873,46.394],[4.873,46.393],[4.872,46.392],[4.87,46.39],[4.869,46.388],[4.866,46.385],[4.863,46.383],[4.861,46.381],[4.858,46.378],[4.857,46.376],[4.854,46.373],[4.853,46.372],[4.853,46.371],[4.853,46.37],[4.852,46.369],[4.851,46.367],[4.85,46.366],[4.849,46.364],[4.849,46.361],[4.849,46.358],[4.851,46.354],[4.851,46.352],[4.851,46.348],[4.851,46.347],[4.851,46.346],[4.852,46.344],[4.852,46.342],[4.847,46.335],[4.846,46.332],[4.843,46.33],[4.841,46.327],[4.838,46.323],[4.835,46.319],[4.836,46.319],[4.835,46.318],[4.834,46.316],[4.833,46.314],[4.831,46.311],[4.83,46.31],[4.829,46.309],[4.829,46.308],[4.828,46.306],[4.828,46.306],[4.827,46.304],[4.827,46.303],[4.829,46.297],[4.828,46.295],[4.827,46.293],[4.826,46.29],[4.826,46.288],[4.825,46.285],[4.824,46.283],[4.824,46.283],[4.824,46.282],[4.822,46.28],[4.821,46.279],[4.82,46.277],[4.818,46.275],[4.815,46.273],[4.812,46.271],[4.812,46.27],[4.81,46.268],[4.809,46.266],[4.809,46.265],[4.809,46.261],[4.809,46.259],[4.809,46.256],[4.809,46.253],[4.808,46.251],[4.808,46.249],[4.808,46.248],[4.807,46.246],[4.807,46.245],[4.806,46.244],[4.804,46.243],[4.803,46.241],[4.799,46.238],[4.799,46.237],[4.798,46.236],[4.797,46.235],[4.796,46.233],[4.795,46.23],[4.794,46.228],[4.793,46.226],[4.792,46.224],[4.791,46.222],[4.791,46.219],[4.791,46.215],[4.791,46.21],[4.79,46.209],[4.788,46.208],[4.786,46.205],[4.785,46.204],[4.782,46.201],[4.78,46.199],[4.778,46.197],[4.778,46.195],[4.778,46.191],[4.778,46.188],[4.778,46.185],[4.779,46.182],[4.78,46.18],[4.781,46.178],[4.783,46.175],[4.786,46.173],[4.789,46.172],[4.797,46.169],[4.8,46.167],[4.801,46.165],[4.801,46.162],[4.801,46.159],[4.8,46.159],[4.799,46.157],[4.798,46.156],[4.798,46.154],[4.798,46.153],[4.797,46.152],[4.797,46.151],[4.796,46.15],[4.795,46.149],[4.794,46.148],[4.794,46.147],[4.793,46.147],[4.791,46.145],[4.79,46.144],[4.789,46.142],[4.786,46.14],[4.785,46.139],[4.784,46.138],[4.784,46.138],[4.783,46.137],[4.778,46.134],[4.775,46.131],[4.773,46.129],[4.772,46.128],[4.771,46.126],[4.77,46.125],[4.769,46.124],[4.769,46.122],[4.768,46.12],[4.768,46.118],[4.766,46.117],[4.765,46.115],[4.763,46.114],[4.762,46.112],[4.76,46.111],[4.758,46.109],[4.757,46.108],[4.755,46.107],[4.754,46.105],[4.753,46.104],[4.752,46.103],[4.751,46.102],[4.75,46.1],[4.75,46.099],[4.749,46.096],[4.748,46.094],[4.748,46.092],[4.749,46.091],[4.751,46.089],[4.754,46.087],[4.757,46.082],[4.758,46.079],[4.759,46.075],[4.759,46.072],[4.757,46.07],[4.756,46.068],[4.754,46.067],[4.752,46.065],[4.751,46.064],[4.75,46.063],[4.748,46.062],[4.747,46.061],[4.743,46.06],[4.742,46.059],[4.74,46.059],[4.738,46.058],[4.738,46.057],[4.736,46.055],[4.736,46.054],[4.737,46.052],[4.738,46.051],[4.74,46.049],[4.74,46.047],[4.742,46.045],[4.743,46.042],[4.744,46.041],[4.744,46.039],[4.744,46.037],[4.744,46.036],[4.744,46.035],[4.744,46.033],[4.743,46.032],[4.742,46.03],[4.741,46.028],[4.741,46.027],[4.741,46.025],[4.742,46.023],[4.743,46.022],[4.744,46.021],[4.745,46.02],[4.746,46.018],[4.746,46.015],[4.746,46.014],[4.748,46.012],[4.748,46.008],[4.747,46.007],[4.747,46.005],[4.748,46.001],[4.749,46],[4.748,45.998],[4.748,45.997],[4.748,45.994],[4.747,45.992],[4.748,45.992],[4.749,45.99],[4.75,45.989],[4.75,45.988],[4.751,45.986],[4.753,45.983],[4.753,45.982],[4.753,45.981],[4.753,45.98],[4.752,45.979],[4.752,45.978],[4.751,45.977],[4.751,45.976],[4.749,45.973],[4.748,45.971],[4.747,45.97],[4.745,45.968],[4.739,45.965],[4.737,45.963],[4.733,45.961],[4.732,45.96],[4.729,45.958],[4.728,45.957],[4.727,45.955],[4.726,45.954],[4.725,45.953],[4.726,45.952],[4.728,45.951],[4.728,45.95],[4.729,45.95],[4.731,45.949],[4.732,45.947],[4.733,45.947],[4.734,45.947],[4.735,45.947],[4.736,45.947],[4.739,45.946],[4.74,45.946],[4.742,45.946],[4.744,45.946],[4.746,45.945],[4.747,45.945],[4.749,45.944],[4.751,45.943],[4.753,45.943],[4.755,45.943],[4.756,45.943],[4.756,45.943],[4.759,45.943],[4.761,45.945],[4.762,45.945],[4.763,45.946],[4.764,45.946],[4.765,45.946],[4.766,45.947],[4.768,45.947],[4.769,45.947],[4.772,45.947],[4.774,45.947],[4.775,45.946],[4.777,45.945],[4.778,45.944],[4.78,45.941],[4.783,45.937],[4.785,45.934],[4.787,45.932],[4.788,45.932],[4.789,45.931],[4.791,45.931],[4.792,45.931],[4.793,45.931],[4.794,45.931],[4.795,45.931],[4.795,45.931],[4.796,45.931],[4.798,45.932],[4.799,45.932],[4.802,45.931],[4.803,45.931],[4.804,45.93],[4.805,45.93],[4.806,45.93],[4.807,45.929],[4.808,45.928],[4.808,45.927],[4.808,45.926],[4.809,45.925],[4.809,45.924],[4.809,45.923],[4.809,45.922],[4.808,45.922],[4.808,45.921],[4.808,45.92],[4.808,45.919],[4.808,45.918],[4.809,45.918],[4.809,45.917],[4.808,45.916],[4.808,45.915],[4.807,45.914],[4.806,45.913],[4.805,45.913],[4.805,45.912],[4.804,45.912],[4.802,45.91],[4.802,45.909],[4.801,45.908],[4.801,45.907],[4.802,45.906],[4.803,45.904],[4.804,45.903],[4.804,45.902],[4.805,45.9],[4.808,45.896],[4.81,45.894],[4.812,45.893],[4.815,45.891],[4.818,45.89],[4.819,45.89],[4.822,45.889],[4.824,45.888],[4.827,45.888],[4.829,45.888],[4.831,45.887],[4.833,45.887],[4.834,45.886],[4.834,45.885],[4.835,45.884],[4.835,45.883],[4.834,45.881],[4.834,45.88],[4.834,45.878],[4.834,45.877],[4.834,45.876],[4.835,45.874],[4.837,45.873],[4.837,45.872],[4.837,45.871],[4.837,45.87],[4.838,45.869],[4.838,45.869],[4.838,45.867],[4.838,45.866],[4.836,45.864],[4.835,45.862],[4.835,45.861],[4.835,45.86],[4.834,45.857],[4.829,45.852],[4.828,45.85],[4.828,45.848],[4.828,45.846],[4.829,45.845],[4.83,45.844],[4.832,45.843],[4.835,45.842],[4.837,45.841],[4.839,45.841],[4.841,45.84],[4.842,45.84],[4.842,45.84],[4.844,45.84],[4.848,45.837],[4.849,45.836],[4.849,45.836],[4.85,45.835],[4.851,45.832],[4.852,45.831],[4.852,45.829],[4.852,45.828],[4.851,45.827],[4.851,45.826],[4.849,45.825],[4.848,45.825],[4.846,45.824],[4.845,45.823],[4.843,45.822],[4.842,45.821],[4.842,45.821],[4.84,45.82],[4.839,45.819],[4.839,45.819],[4.839,45.817],[4.838,45.815],[4.838,45.813],[4.836,45.811],[4.836,45.81],[4.835,45.809],[4.833,45.808],[4.831,45.807],[4.829,45.807],[4.827,45.806],[4.826,45.805],[4.823,45.804],[4.819,45.802],[4.817,45.8],[4.812,45.796],[4.811,45.795],[4.809,45.793],[4.807,45.79],[4.805,45.787],[4.804,45.784],[4.805,45.783],[4.806,45.782],[4.807,45.781],[4.808,45.781],[4.809,45.779],[4.809,45.778],[4.809,45.777],[4.81,45.776],[4.811,45.775],[4.812,45.775],[4.813,45.775],[4.814,45.775],[4.816,45.775],[4.818,45.776],[4.82,45.776],[4.822,45.776],[4.823,45.776],[4.824,45.775],[4.825,45.775],[4.825,45.774],[4.826,45.772],[4.825,45.771],[4.824,45.769],[4.823,45.768],[4.822,45.765],[4.821,45.764],[4.82,45.763],[4.818,45.76],[4.815,45.758],[4.813,45.757],[4.812,45.756],[4.81,45.754],[4.81,45.753],[4.809,45.749],[4.808,45.747],[4.809,45.745],[4.81,45.742],[4.811,45.74],[4.812,45.739],[4.813,45.738],[4.813,45.737],[4.814,45.736],[4.817,45.727],[4.817,45.726],[4.818,45.721],[4.82,45.717],[4.821,45.716],[4.823,45.713],[4.825,45.712],[4.827,45.711],[4.83,45.71],[4.832,45.709],[4.834,45.708],[4.835,45.706],[4.837,45.704],[4.838,45.703],[4.839,45.7],[4.839,45.697],[4.838,45.696],[4.838,45.696],[4.838,45.695],[4.838,45.694],[4.837,45.693],[4.836,45.69],[4.836,45.689],[4.835,45.688],[4.835,45.686],[4.834,45.685],[4.834,45.684],[4.834,45.683],[4.833,45.683],[4.835,45.675],[4.834,45.675],[4.834,45.673],[4.834,45.673],[4.833,45.672],[4.833,45.671],[4.833,45.67],[4.832,45.669],[4.832,45.668],[4.832,45.666],[4.832,45.666],[4.831,45.665],[4.831,45.664],[4.831,45.663],[4.831,45.66],[4.83,45.659],[4.83,45.658],[4.83,45.657],[4.83,45.657],[4.83,45.656],[4.83,45.655],[4.829,45.654],[4.828,45.652],[4.827,45.651],[4.826,45.65],[4.824,45.649],[4.823,45.648],[4.82,45.647],[4.818,45.646],[4.817,45.645],[4.816,45.644],[4.815,45.644],[4.815,45.644],[4.815,45.643],[4.814,45.643],[4.814,45.643],[4.813,45.642],[4.813,45.642],[4.813,45.642],[4.812,45.641],[4.812,45.64],[4.811,45.639],[4.811,45.638],[4.81,45.638],[4.81,45.636],[4.809,45.635],[4.809,45.634],[4.808,45.633],[4.809,45.631],[4.808,45.629],[4.809,45.629],[4.809,45.628],[4.809,45.627],[4.809,45.627],[4.808,45.626],[4.808,45.624],[4.808,45.622],[4.808,45.621],[4.808,45.62],[4.808,45.62],[4.807,45.619],[4.807,45.619],[4.806,45.618],[4.806,45.618],[4.805,45.618],[4.805,45.618],[4.804,45.615],[4.803,45.614],[4.803,45.614],[4.803,45.613],[4.803,45.612],[4.803,45.612],[4.803,45.612],[4.796,45.603],[4.794,45.6],[4.793,45.599],[4.792,45.598],[4.791,45.597],[4.79,45.596],[4.788,45.595],[4.787,45.593],[4.786,45.593],[4.785,45.593],[4.782,45.591],[4.78,45.59],[4.779,45.59],[4.778,45.589],[4.777,45.588],[4.778,45.586],[4.779,45.581],[4.781,45.581],[4.787,45.578],[4.79,45.578],[4.791,45.577],[4.792,45.577],[4.793,45.577],[4.798,45.575],[4.799,45.575],[4.8,45.575],[4.802,45.574],[4.809,45.573],[4.812,45.572],[4.813,45.571],[4.814,45.57],[4.816,45.568],[4.817,45.566],[4.818,45.564],[4.819,45.563],[4.821,45.56],[4.822,45.559],[4.824,45.557],[4.827,45.554],[4.828,45.553],[4.829,45.552],[4.83,45.551],[4.833,45.547],[4.836,45.545],[4.837,45.545],[4.838,45.545],[4.837,45.544],[4.843,45.543],[4.853,45.541],[4.854,45.54],[4.857,45.539],[4.86,45.539],[4.864,45.538],[4.867,45.537],[4.87,45.536],[4.872,45.534],[4.873,45.533],[4.874,45.531],[4.874,45.53],[4.874,45.529],[4.872,45.526],[4.869,45.523],[4.866,45.52],[4.86,45.513],[4.858,45.511],[4.851,45.505],[4.849,45.504],[4.846,45.502],[4.845,45.502],[4.843,45.501],[4.841,45.5],[4.84,45.5],[4.838,45.499],[4.835,45.498],[4.833,45.496],[4.83,45.495],[4.828,45.496],[4.827,45.495],[4.826,45.495],[4.826,45.495],[4.826,45.494],[4.825,45.493],[4.822,45.49],[4.821,45.489],[4.819,45.487],[4.817,45.485],[4.815,45.484],[4.813,45.483],[4.803,45.479],[4.8,45.477],[4.798,45.476],[4.797,45.476],[4.795,45.475],[4.794,45.475],[4.792,45.474],[4.789,45.473],[4.786,45.472],[4.785,45.471],[4.783,45.47],[4.782,45.468],[4.782,45.466],[4.784,45.462],[4.784,45.461],[4.784,45.461],[4.783,45.461],[4.782,45.46],[4.781,45.46],[4.781,45.459],[4.78,45.459],[4.778,45.457],[4.775,45.456],[4.774,45.456],[4.767,45.456],[4.763,45.455],[4.761,45.454],[4.76,45.453],[4.76,45.451],[4.76,45.449],[4.761,45.445],[4.762,45.442],[4.763,45.439],[4.764,45.437],[4.764,45.435],[4.764,45.434],[4.763,45.432],[4.762,45.43],[4.761,45.43],[4.757,45.428],[4.754,45.427],[4.753,45.426],[4.749,45.42],[4.747,45.417],[4.747,45.415],[4.746,45.413],[4.747,45.411],[4.748,45.409],[4.749,45.408],[4.75,45.406],[4.752,45.404],[4.754,45.401],[4.756,45.4],[4.757,45.399],[4.758,45.397],[4.758,45.395],[4.759,45.394],[4.76,45.393],[4.757,45.386],[4.756,45.384],[4.755,45.382],[4.753,45.38],[4.753,45.379],[4.752,45.377],[4.751,45.376],[4.751,45.374],[4.752,45.373],[4.753,45.372],[4.753,45.37],[4.754,45.369],[4.754,45.368],[4.754,45.366],[4.755,45.365],[4.755,45.365],[4.76,45.361],[4.762,45.361],[4.762,45.36],[4.763,45.359],[4.764,45.359],[4.765,45.358],[4.766,45.358],[4.767,45.356],[4.768,45.354],[4.769,45.353],[4.769,45.352],[4.768,45.35],[4.767,45.349],[4.765,45.347],[4.764,45.341],[4.763,45.339],[4.763,45.338],[4.763,45.337],[4.763,45.336],[4.763,45.335],[4.763,45.331],[4.762,45.328],[4.763,45.326],[4.764,45.324],[4.765,45.323],[4.766,45.322],[4.766,45.321],[4.767,45.32],[4.768,45.319],[4.768,45.319],[4.769,45.318],[4.771,45.317],[4.772,45.316],[4.774,45.316],[4.775,45.315],[4.776,45.314],[4.777,45.314],[4.778,45.313],[4.779,45.313],[4.779,45.312],[4.78,45.312],[4.782,45.311],[4.783,45.311],[4.785,45.31],[4.786,45.309],[4.788,45.309],[4.79,45.307],[4.792,45.306],[4.793,45.305],[4.794,45.305],[4.795,45.304],[4.796,45.304],[4.796,45.303],[4.796,45.303],[4.797,45.303],[4.797,45.302],[4.798,45.302],[4.799,45.301],[4.799,45.3],[4.801,45.299],[4.802,45.299],[4.802,45.299],[4.803,45.299],[4.803,45.298],[4.803,45.298],[4.803,45.298],[4.802,45.298],[4.802,45.298],[4.802,45.298],[4.803,45.297],[4.804,45.296],[4.805,45.295],[4.807,45.294],[4.809,45.293],[4.809,45.292],[4.809,45.286],[4.809,45.285],[4.809,45.283],[4.809,45.281],[4.809,45.28],[4.809,45.279],[4.809,45.278],[4.809,45.275],[4.809,45.272],[4.809,45.269],[4.809,45.268],[4.809,45.267],[4.81,45.266],[4.81,45.263],[4.809,45.262],[4.809,45.26],[4.806,45.256],[4.805,45.254],[4.805,45.253],[4.804,45.252],[4.803,45.251],[4.802,45.25],[4.802,45.249],[4.802,45.248],[4.802,45.247],[4.802,45.246],[4.801,45.242],[4.801,45.24],[4.801,45.24],[4.801,45.239],[4.801,45.236],[4.801,45.236],[4.801,45.235],[4.801,45.234],[4.801,45.234],[4.801,45.234],[4.801,45.233],[4.801,45.233],[4.801,45.233],[4.801,45.232],[4.801,45.231],[4.801,45.229],[4.802,45.229],[4.802,45.228],[4.802,45.227],[4.802,45.226],[4.803,45.225],[4.804,45.224],[4.804,45.222],[4.804,45.221],[4.805,45.221],[4.805,45.219],[4.805,45.218],[4.806,45.217],[4.806,45.216],[4.807,45.214],[4.807,45.213],[4.807,45.212],[4.808,45.211],[4.808,45.21],[4.808,45.209],[4.809,45.208],[4.809,45.208],[4.809,45.207],[4.809,45.206],[4.809,45.205],[4.809,45.203],[4.808,45.202],[4.808,45.201],[4.807,45.2],[4.807,45.2],[4.806,45.199],[4.806,45.199],[4.806,45.198],[4.806,45.198],[4.805,45.197],[4.805,45.197],[4.804,45.196],[4.804,45.195],[4.804,45.194],[4.804,45.193],[4.804,45.192],[4.806,45.191],[4.806,45.189],[4.807,45.188],[4.811,45.185],[4.811,45.184],[4.812,45.182],[4.812,45.182],[4.812,45.182],[4.813,45.181],[4.812,45.18],[4.811,45.178],[4.811,45.177],[4.81,45.176],[4.808,45.167],[4.809,45.165],[4.81,45.164],[4.812,45.162],[4.814,45.161],[4.814,45.16],[4.816,45.16],[4.818,45.16],[4.82,45.159],[4.823,45.159],[4.825,45.159],[4.826,45.157],[4.827,45.156],[4.827,45.154],[4.826,45.153],[4.824,45.151],[4.822,45.148],[4.819,45.145],[4.814,45.142],[4.812,45.14],[4.808,45.136],[4.805,45.135],[4.804,45.135],[4.803,45.134],[4.803,45.131],[4.803,45.13],[4.802,45.128],[4.802,45.125],[4.802,45.124],[4.803,45.123],[4.803,45.122],[4.803,45.121],[4.804,45.121],[4.805,45.121],[4.806,45.12],[4.807,45.118],[4.807,45.118],[4.808,45.117],[4.81,45.116],[4.812,45.114],[4.812,45.113],[4.812,45.113],[4.811,45.113],[4.812,45.112],[4.813,45.112],[4.813,45.112],[4.813,45.112],[4.814,45.111],[4.815,45.11],[4.815,45.109],[4.816,45.108],[4.818,45.107],[4.818,45.107],[4.818,45.106],[4.82,45.105],[4.821,45.104],[4.822,45.104],[4.822,45.104],[4.822,45.104],[4.821,45.103],[4.822,45.102],[4.823,45.102],[4.823,45.1],[4.823,45.099],[4.824,45.099],[4.824,45.098],[4.824,45.097],[4.824,45.097],[4.827,45.096],[4.827,45.096],[4.828,45.096],[4.828,45.095],[4.828,45.095],[4.829,45.094],[4.829,45.093],[4.829,45.093],[4.829,45.092],[4.83,45.092],[4.83,45.091],[4.83,45.09],[4.831,45.09],[4.83,45.09],[4.83,45.089],[4.83,45.089],[4.831,45.089],[4.831,45.089],[4.83,45.088],[4.83,45.087],[4.83,45.086],[4.83,45.085],[4.83,45.084],[4.829,45.084],[4.829,45.084],[4.828,45.084],[4.828,45.082],[4.827,45.081],[4.826,45.08],[4.826,45.078],[4.826,45.077],[4.826,45.075],[4.826,45.075],[4.827,45.075],[4.827,45.074],[4.828,45.073],[4.829,45.073],[4.828,45.072],[4.828,45.072],[4.83,45.07],[4.832,45.069],[4.836,45.067],[4.838,45.066],[4.842,45.065],[4.843,45.065],[4.844,45.065],[4.847,45.064],[4.852,45.063],[4.853,45.062],[4.854,45.061],[4.856,45.06],[4.857,45.059],[4.857,45.057],[4.857,45.055],[4.856,45.052],[4.854,45.05],[4.851,45.047],[4.847,45.044],[4.845,45.043],[4.842,45.041],[4.84,45.038],[4.838,45.036],[4.837,45.035],[4.837,45.032],[4.838,45.029],[4.839,45.027],[4.839,45.026],[4.84,45.025],[4.842,45.024],[4.843,45.023],[4.844,45.021],[4.844,45.02],[4.843,45.018],[4.842,45.016],[4.839,45.014],[4.837,45.012],[4.835,45.011],[4.835,45.01],[4.835,45.01],[4.835,45.008],[4.835,45.007],[4.835,45.006],[4.836,45.006],[4.836,45.006],[4.837,45.005],[4.839,45.004],[4.84,45.003],[4.841,45.002],[4.842,45.002],[4.843,45.001],[4.844,45],[4.845,44.999],[4.846,44.998],[4.847,44.998],[4.849,44.996],[4.851,44.995],[4.851,44.994],[4.852,44.993],[4.852,44.991],[4.852,44.989],[4.852,44.987],[4.852,44.984],[4.852,44.98],[4.853,44.977],[4.853,44.975],[4.853,44.974],[4.855,44.973],[4.855,44.973],[4.855,44.972],[4.855,44.972],[4.856,44.971],[4.856,44.97],[4.857,44.97],[4.857,44.969],[4.858,44.968],[4.858,44.968],[4.857,44.967],[4.857,44.967],[4.858,44.966],[4.859,44.966],[4.859,44.965],[4.859,44.966],[4.86,44.966],[4.86,44.965],[4.86,44.965],[4.86,44.964],[4.86,44.964],[4.861,44.964],[4.861,44.964],[4.862,44.962],[4.864,44.961],[4.864,44.96],[4.865,44.96],[4.866,44.96],[4.868,44.959],[4.87,44.958],[4.872,44.957],[4.873,44.956],[4.875,44.955],[4.875,44.954],[4.876,44.953],[4.876,44.952],[4.876,44.952],[4.876,44.951],[4.877,44.949],[4.878,44.947],[4.879,44.945],[4.879,44.945],[4.881,44.943],[4.883,44.942],[4.884,44.94],[4.884,44.939],[4.885,44.937],[4.885,44.936],[4.884,44.935],[4.883,44.934],[4.882,44.933],[4.88,44.931],[4.878,44.929],[4.876,44.927],[4.874,44.925],[4.873,44.925],[4.872,44.922],[4.87,44.919],[4.87,44.918],[4.869,44.915],[4.868,44.913],[4.868,44.911],[4.867,44.91],[4.866,44.908],[4.863,44.906],[4.859,44.905],[4.857,44.904],[4.856,44.904],[4.855,44.904],[4.854,44.904],[4.853,44.902],[4.852,44.898],[4.852,44.896],[4.852,44.896],[4.853,44.894],[4.853,44.892],[4.854,44.89],[4.854,44.888],[4.856,44.887],[4.857,44.884],[4.858,44.882],[4.859,44.882],[4.859,44.881],[4.86,44.879],[4.86,44.878],[4.86,44.877],[4.859,44.875],[4.858,44.874],[4.857,44.873],[4.856,44.872],[4.851,44.868],[4.849,44.867],[4.848,44.865],[4.847,44.864],[4.846,44.862],[4.845,44.86],[4.844,44.86],[4.843,44.859],[4.841,44.856],[4.84,44.855],[4.839,44.854],[4.838,44.853],[4.838,44.853],[4.838,44.854],[4.837,44.854],[4.837,44.852],[4.837,44.852],[4.833,44.849],[4.828,44.846],[4.824,44.844],[4.823,44.843],[4.822,44.842],[4.819,44.839],[4.819,44.837],[4.816,44.833],[4.815,44.829],[4.813,44.826],[4.812,44.822],[4.81,44.819],[4.809,44.816],[4.809,44.815],[4.809,44.812],[4.808,44.811],[4.806,44.81],[4.806,44.809],[4.791,44.803],[4.787,44.802],[4.782,44.799],[4.78,44.797],[4.776,44.791],[4.772,44.787],[4.769,44.785],[4.767,44.782],[4.767,44.781],[4.766,44.78],[4.764,44.779],[4.763,44.777],[4.762,44.776],[4.762,44.775],[4.76,44.773],[4.759,44.773],[4.756,44.77],[4.755,44.769],[4.754,44.767],[4.752,44.763],[4.751,44.759],[4.75,44.758],[4.751,44.756],[4.751,44.754],[4.752,44.753],[4.756,44.748],[4.757,44.746],[4.759,44.741],[4.76,44.739],[4.761,44.738],[4.761,44.737],[4.762,44.736],[4.761,44.736],[4.764,44.727],[4.765,44.726],[4.764,44.724],[4.764,44.722],[4.764,44.719],[4.764,44.718],[4.764,44.718],[4.764,44.717],[4.765,44.715],[4.768,44.712],[4.769,44.711],[4.77,44.709],[4.77,44.709],[4.772,44.707],[4.773,44.706],[4.773,44.704],[4.774,44.703],[4.774,44.699],[4.774,44.696],[4.775,44.694],[4.776,44.692],[4.777,44.691],[4.777,44.69],[4.779,44.688],[4.781,44.685],[4.781,44.684],[4.782,44.678],[4.781,44.668],[4.781,44.664],[4.776,44.645],[4.772,44.644],[4.771,44.643],[4.771,44.643],[4.771,44.643],[4.771,44.642],[4.771,44.642],[4.768,44.634],[4.766,44.632],[4.762,44.627],[4.762,44.626],[4.761,44.624],[4.761,44.623],[4.758,44.62],[4.756,44.617],[4.755,44.616],[4.753,44.614],[4.751,44.613],[4.75,44.611],[4.748,44.608],[4.746,44.605],[4.745,44.604],[4.744,44.602],[4.739,44.596],[4.737,44.597],[4.736,44.597],[4.714,44.587],[4.713,44.586],[4.712,44.585],[4.71,44.584],[4.709,44.583],[4.707,44.58],[4.706,44.579],[4.706,44.578],[4.704,44.576],[4.702,44.573],[4.702,44.572],[4.702,44.571],[4.699,44.564],[4.696,44.561],[4.694,44.56],[4.694,44.559],[4.691,44.547],[4.693,44.544],[4.694,44.541],[4.696,44.538],[4.696,44.537],[4.698,44.534],[4.699,44.532],[4.699,44.531],[4.7,44.53],[4.7,44.529],[4.7,44.528],[4.7,44.526],[4.699,44.525],[4.698,44.524],[4.698,44.523],[4.697,44.522],[4.695,44.52],[4.694,44.52],[4.693,44.519],[4.691,44.517],[4.69,44.513],[4.689,44.51],[4.688,44.506],[4.687,44.502],[4.686,44.501],[4.686,44.5],[4.686,44.499],[4.687,44.496],[4.688,44.493],[4.688,44.492],[4.688,44.492],[4.698,44.486],[4.698,44.486],[4.7,44.482],[4.7,44.482],[4.701,44.481],[4.702,44.479],[4.702,44.478],[4.701,44.477],[4.701,44.476],[4.701,44.474],[4.701,44.473],[4.701,44.472],[4.702,44.472],[4.702,44.47],[4.702,44.468],[4.702,44.464],[4.702,44.459],[4.702,44.457],[4.7,44.453],[4.7,44.452],[4.699,44.452],[4.699,44.451],[4.699,44.449],[4.699,44.447],[4.698,44.446],[4.698,44.445],[4.696,44.443],[4.696,44.443],[4.695,44.443],[4.693,44.441],[4.691,44.44],[4.687,44.438],[4.684,44.438],[4.681,44.437],[4.675,44.436],[4.672,44.435],[4.67,44.434],[4.668,44.431],[4.667,44.427],[4.666,44.426],[4.666,44.425],[4.666,44.423],[4.665,44.421],[4.665,44.418],[4.665,44.415],[4.665,44.413],[4.665,44.412],[4.666,44.411],[4.666,44.41],[4.665,44.41],[4.665,44.41],[4.665,44.408],[4.664,44.407],[4.664,44.407],[4.664,44.404],[4.664,44.402],[4.665,44.401],[4.665,44.401],[4.665,44.4],[4.665,44.399],[4.666,44.398],[4.666,44.398],[4.666,44.397],[4.665,44.397],[4.665,44.396],[4.665,44.395],[4.655,44.385],[4.653,44.383],[4.652,44.381],[4.651,44.38],[4.651,44.379],[4.651,44.379],[4.651,44.378],[4.65,44.378],[4.65,44.377],[4.649,44.376],[4.649,44.373],[4.648,44.368],[4.647,44.366],[4.647,44.364],[4.647,44.364],[4.647,44.36],[4.647,44.358],[4.646,44.353],[4.646,44.352],[4.646,44.349],[4.647,44.342],[4.648,44.342],[4.648,44.339],[4.647,44.338],[4.649,44.336],[4.65,44.331],[4.652,44.321],[4.649,44.313],[4.653,44.302],[4.652,44.294],[4.652,44.294],[4.652,44.292],[4.651,44.288],[4.65,44.288],[4.65,44.287],[4.65,44.286],[4.65,44.285],[4.65,44.285],[4.651,44.287],[4.651,44.286],[4.651,44.283],[4.651,44.282],[4.65,44.282],[4.65,44.28],[4.65,44.276],[4.65,44.276],[4.649,44.274],[4.648,44.271],[4.648,44.267],[4.648,44.266],[4.646,44.266],[4.647,44.264],[4.648,44.262],[4.649,44.26],[4.651,44.258],[4.652,44.257],[4.653,44.255],[4.654,44.254],[4.656,44.252],[4.657,44.25],[4.66,44.248],[4.661,44.246],[4.663,44.246],[4.663,44.245],[4.664,44.244],[4.666,44.243],[4.668,44.242],[4.671,44.24],[4.672,44.239],[4.674,44.238],[4.675,44.236],[4.676,44.236],[4.677,44.234],[4.678,44.23],[4.677,44.227],[4.675,44.225],[4.674,44.224],[4.674,44.225],[4.674,44.225],[4.674,44.225],[4.673,44.224],[4.672,44.223],[4.675,44.213],[4.676,44.212],[4.677,44.211],[4.678,44.21],[4.681,44.21],[4.682,44.211],[4.684,44.212],[4.686,44.212],[4.687,44.212],[4.688,44.212],[4.69,44.212],[4.691,44.212],[4.691,44.213],[4.69,44.213],[4.69,44.213],[4.691,44.214],[4.694,44.215],[4.696,44.215],[4.698,44.215],[4.699,44.216],[4.701,44.215],[4.701,44.215],[4.7,44.215],[4.699,44.215],[4.699,44.214],[4.7,44.214],[4.7,44.214],[4.699,44.213],[4.7,44.213],[4.701,44.213],[4.701,44.214],[4.701,44.214],[4.702,44.214],[4.703,44.214],[4.705,44.214],[4.707,44.212],[4.708,44.21],[4.709,44.207],[4.707,44.206],[4.705,44.203],[4.703,44.202],[4.702,44.199],[4.702,44.197],[4.703,44.197],[4.703,44.196],[4.703,44.195],[4.703,44.194],[4.704,44.193],[4.705,44.191],[4.707,44.188],[4.707,44.187],[4.71,44.182],[4.712,44.18],[4.72,44.162],[4.721,44.154],[4.721,44.151],[4.722,44.15],[4.722,44.149],[4.722,44.147],[4.722,44.145],[4.722,44.143],[4.721,44.14],[4.72,44.139],[4.718,44.136],[4.717,44.136],[4.716,44.134],[4.715,44.133],[4.715,44.132],[4.715,44.128],[4.715,44.126],[4.717,44.125]],[[5.264,43.291],[5.363,43.305]],[[5.264,43.291],[5.364,43.191],[5.464,43.191],[5.564,43.191],[5.664,43.191],[5.764,43.091],[5.864,42.991],[5.964,43.091],[6.064,43.091],[6.164,43.091],[6.264,43.091],[6.364,43.091],[6.464,43.091],[6.564,43.091],[6.664,43.091],[6.764,43.091],[6.864,43.091],[6.964,43.091],[7.064,43.091],[7.164,43.091],[7.264,43.091],[7.364,43.091],[7.464,43.091],[7.564,43.091],[7.664,43.091],[7.764,43.091],[7.864,43.091],[7.964,43.091],[8.064,43.091],[8.164,43.091],[8.264,43.091],[8.364,43.091],[8.464,43.091],[8.564,43.091],[8.664,43.091],[8.764,43.091],[8.864,43.091],[8.964,43.091],[9.064,43.091],[9.164,43.091],[9.264,43.091],[9.364,43.091],[9.464,42.991],[9.564,42.891],[9.564,42.791],[9.564,42.691],[9.564,42.591],[9.564,42.491],[9.564,42.391],[9.564,42.291],[9.564,42.191],[9.564,42.091]],[[6.003,47.224],[6.043,47.252],[6.069,47.275],[6.127,47.299],[6.259,47.341],[6.385,47.381],[6.456,47.399],[6.569,47.419],[6.657,47.439],[6.72,47.448],[6.76,47.447],[6.786,47.445],[6.811,47.45],[6.859,47.466],[6.916,47.495],[7.019,47.529],[7.131,47.564],[7.235,47.594],[7.341,47.629],[7.414,47.651],[7.497,47.667]],[[9.526,42.124],[9.564,42.091]],[[9.564,42.091],[9.664,42.191],[9.764,42.291],[9.864,42.391],[9.964,42.491],[10.064,42.491],[10.164,42.591],[10.264,42.691]],[[10.264,42.691],[10.24,42.743]],[[10.264,42.691],[10.364,42.691],[10.464,42.791],[10.464,42.891],[10.464,42.991]],[[10.496,42.996],[10.464,42.991]],[[10.464,42.991],[10.564,42.891],[10.664,42.891],[10.764,42.791],[10.864,42.691],[10.964,42.691],[11.064,42.591],[11.164,42.491],[11.264,42.391]],[[11.264,42.391],[11.364,42.391],[11.464,42.291],[11.564,42.291],[11.664,42.191],[11.764,42.091],[11.864,41.991],[11.964,41.991],[12.064,41.891],[12.164,41.791],[12.264,41.691],[12.287,41.754]],[[11.264,42.391],[11.288,42.406]],[[12.474,41.89],[12.474,41.89],[12.475,41.888],[12.469,41.882],[12.468,41.877],[12.472,41.868],[12.47,41.863],[12.461,41.858],[12.46,41.855],[12.46,41.854],[12.462,41.85],[12.444,41.834],[12.435,41.829],[12.426,41.831],[12.421,41.828],[12.418,41.822],[12.416,41.818],[12.411,41.809],[12.405,41.805],[12.394,41.805],[12.386,41.802],[12.375,41.804],[12.37,41.805],[12.364,41.807],[12.36,41.806],[12.352,41.806],[12.343,41.809],[12.339,41.806],[12.337,41.799],[12.332,41.798],[12.323,41.799],[12.317,41.799],[12.309,41.8],[12.302,41.797],[12.295,41.791],[12.284,41.789],[12.278,41.782],[12.273,41.773],[12.274,41.771],[12.274,41.768],[12.275,41.764],[12.28,41.758],[12.271,41.753]]]},"pair": 50235,"direction": 1,"month": 10,"priority": 1,"expense": 13.304,"duration": 82.246,"length": 2947.752},{"type": "Feature", "geometry": {"type":"MultiLineString","coordinates":[[[4.398,52.198],[4.364,52.191],[4.264,52.191],[4.164,52.191],[4.064,52.191],[3.964,52.191],[3.864,52.191],[3.764,52.191],[3.664,52.191],[3.564,52.191],[3.464,52.191],[3.364,52.191],[3.264,52.191],[3.164,52.191],[3.064,52.191],[2.964,52.191],[2.864,52.191],[2.764,52.191],[2.664,52.191],[2.564,52.191],[2.464,52.191],[2.364,52.191],[2.264,52.191],[2.164,52.191],[2.064,52.191],[1.964,52.191],[1.864,52.191],[1.764,52.191],[1.664,52.091],[1.564,51.991],[1.464,51.991],[1.364,51.891],[1.264,51.791],[1.164,51.691],[1.064,51.691],[0.964,51.591],[0.864,51.491],[0.764,51.491],[0.664,51.491],[0.564,51.491],[0.464,51.491],[-0.083,51.52]],[[7.512,47.669],[7.512,47.672],[7.512,47.675],[7.512,47.677],[7.513,47.678],[7.513,47.68],[7.513,47.682],[7.513,47.684],[7.512,47.685],[7.512,47.687],[7.511,47.688],[7.51,47.689],[7.51,47.691],[7.509,47.693],[7.508,47.695],[7.507,47.697],[7.507,47.698],[7.507,47.698],[7.507,47.7],[7.508,47.701],[7.508,47.702],[7.511,47.707],[7.512,47.708],[7.513,47.708],[7.514,47.709],[7.515,47.709],[7.519,47.712],[7.521,47.714],[7.53,47.72],[7.532,47.722],[7.534,47.723],[7.535,47.724],[7.536,47.725],[7.537,47.726],[7.538,47.727],[7.539,47.73],[7.54,47.731],[7.54,47.733],[7.54,47.734],[7.54,47.738],[7.539,47.74],[7.538,47.741],[7.538,47.742],[7.536,47.744],[7.535,47.746],[7.534,47.748],[7.532,47.751],[7.531,47.752],[7.53,47.754],[7.528,47.758],[7.527,47.76],[7.526,47.76],[7.525,47.762],[7.524,47.764],[7.524,47.765],[7.523,47.767],[7.523,47.767],[7.522,47.77],[7.522,47.771],[7.522,47.773],[7.522,47.774],[7.522,47.775],[7.522,47.775],[7.524,47.776],[7.525,47.777],[7.524,47.778],[7.524,47.78],[7.524,47.781],[7.524,47.782],[7.524,47.784],[7.525,47.786],[7.525,47.788],[7.526,47.789],[7.526,47.789],[7.526,47.79],[7.527,47.791],[7.527,47.791],[7.528,47.792],[7.529,47.794],[7.53,47.795],[7.532,47.799],[7.537,47.804],[7.54,47.808],[7.542,47.811],[7.543,47.814],[7.545,47.817],[7.546,47.82],[7.546,47.822],[7.547,47.823],[7.547,47.824],[7.547,47.825],[7.548,47.825],[7.548,47.827],[7.549,47.828],[7.549,47.829],[7.551,47.832],[7.553,47.836],[7.554,47.837],[7.555,47.84],[7.556,47.842],[7.556,47.845],[7.556,47.846],[7.556,47.848],[7.556,47.849],[7.556,47.85],[7.556,47.853],[7.555,47.857],[7.555,47.857],[7.554,47.861],[7.553,47.865],[7.553,47.869],[7.552,47.871],[7.552,47.871],[7.552,47.872],[7.552,47.875],[7.552,47.877],[7.553,47.879],[7.559,47.89],[7.56,47.892],[7.561,47.895],[7.564,47.9],[7.564,47.901],[7.565,47.902],[7.565,47.903],[7.566,47.904],[7.567,47.909],[7.568,47.911],[7.57,47.916],[7.571,47.919],[7.572,47.92],[7.572,47.921],[7.573,47.923],[7.573,47.925],[7.574,47.926],[7.575,47.928],[7.575,47.929],[7.576,47.931],[7.577,47.932],[7.58,47.935],[7.58,47.936],[7.58,47.936],[7.581,47.937],[7.582,47.938],[7.582,47.939],[7.584,47.94],[7.586,47.942],[7.595,47.949],[7.596,47.95],[7.596,47.951],[7.598,47.952],[7.598,47.952],[7.598,47.953],[7.6,47.954],[7.603,47.957],[7.605,47.959],[7.606,47.96],[7.608,47.964],[7.61,47.967],[7.611,47.969],[7.611,47.97],[7.612,47.972],[7.612,47.973],[7.612,47.976],[7.612,47.978],[7.612,47.98],[7.612,47.982],[7.611,47.984],[7.61,47.986],[7.609,47.988],[7.608,47.99],[7.607,47.991],[7.606,47.993],[7.604,47.995],[7.603,47.996],[7.601,47.998],[7.6,47.999],[7.599,48],[7.599,48],[7.597,48.002],[7.589,48.008],[7.582,48.013],[7.579,48.016],[7.574,48.019],[7.573,48.02],[7.57,48.022],[7.569,48.024],[7.567,48.027],[7.567,48.028],[7.566,48.03],[7.567,48.033],[7.57,48.039],[7.573,48.046],[7.574,48.048],[7.574,48.054],[7.574,48.059],[7.573,48.062],[7.568,48.069],[7.57,48.078],[7.569,48.082],[7.57,48.085],[7.572,48.089],[7.575,48.092],[7.58,48.101],[7.58,48.105],[7.578,48.112],[7.578,48.116],[7.578,48.121],[7.578,48.122],[7.581,48.125],[7.584,48.127],[7.585,48.128],[7.587,48.129],[7.591,48.13],[7.595,48.132],[7.597,48.134],[7.598,48.137],[7.6,48.14],[7.599,48.143],[7.599,48.145],[7.598,48.147],[7.598,48.149],[7.599,48.15],[7.607,48.163],[7.611,48.169],[7.614,48.171],[7.619,48.175],[7.62,48.176],[7.625,48.181],[7.63,48.185],[7.631,48.187],[7.635,48.194],[7.638,48.2],[7.64,48.202],[7.641,48.205],[7.644,48.208],[7.645,48.209],[7.646,48.21],[7.648,48.212],[7.654,48.218],[7.658,48.223],[7.661,48.228],[7.663,48.235],[7.665,48.239],[7.669,48.245],[7.67,48.249],[7.676,48.252],[7.676,48.261],[7.677,48.264],[7.678,48.268],[7.68,48.269],[7.68,48.273],[7.681,48.273],[7.68,48.274],[7.681,48.275],[7.683,48.276],[7.683,48.277],[7.681,48.277],[7.681,48.278],[7.683,48.278],[7.684,48.278],[7.685,48.279],[7.685,48.28],[7.684,48.281],[7.689,48.294],[7.692,48.3],[7.697,48.305],[7.703,48.309],[7.709,48.311],[7.724,48.315],[7.731,48.316],[7.732,48.318],[7.734,48.318],[7.737,48.32],[7.739,48.322],[7.741,48.324],[7.742,48.325],[7.744,48.328],[7.744,48.331],[7.746,48.333],[7.749,48.336],[7.747,48.347],[7.743,48.371],[7.74,48.383],[7.737,48.394],[7.743,48.416],[7.745,48.422],[7.745,48.425],[7.752,48.444],[7.766,48.48],[7.771,48.492],[7.78,48.496],[7.795,48.502],[7.802,48.507],[7.805,48.514],[7.806,48.521],[7.805,48.53],[7.805,48.532],[7.805,48.548],[7.805,48.56],[7.803,48.57],[7.801,48.574],[7.801,48.572],[7.8,48.574],[7.799,48.576],[7.799,48.576],[7.799,48.577],[7.799,48.577],[7.798,48.579],[7.798,48.582],[7.798,48.583],[7.799,48.585],[7.8,48.587],[7.8,48.588],[7.801,48.59],[7.802,48.591],[7.802,48.592],[7.803,48.593],[7.803,48.594],[7.804,48.594],[7.806,48.597],[7.81,48.601],[7.811,48.602],[7.815,48.607],[7.817,48.609],[7.82,48.612],[7.823,48.615],[7.824,48.616],[7.826,48.618],[7.828,48.62],[7.829,48.622],[7.83,48.625],[7.831,48.629],[7.832,48.63],[7.832,48.633],[7.833,48.634],[7.834,48.637],[7.835,48.639],[7.836,48.641],[7.838,48.643],[7.839,48.644],[7.838,48.644],[7.841,48.646],[7.843,48.647],[7.845,48.648],[7.848,48.648],[7.85,48.649],[7.852,48.649],[7.853,48.65],[7.855,48.65],[7.858,48.651],[7.867,48.654],[7.871,48.656],[7.873,48.657],[7.874,48.657],[7.873,48.657],[7.877,48.658],[7.882,48.66],[7.885,48.661],[7.888,48.663],[7.889,48.664],[7.889,48.665],[7.89,48.666],[7.891,48.667],[7.895,48.669],[7.898,48.672],[7.899,48.673],[7.899,48.674],[7.9,48.676],[7.9,48.677],[7.902,48.679],[7.903,48.681],[7.903,48.681],[7.905,48.683],[7.905,48.683],[7.909,48.686],[7.911,48.688],[7.912,48.688],[7.913,48.688],[7.913,48.689],[7.914,48.689],[7.915,48.689],[7.915,48.69],[7.918,48.691],[7.923,48.694],[7.926,48.696],[7.927,48.697],[7.928,48.697],[7.931,48.698],[7.933,48.699],[7.935,48.7],[7.938,48.702],[7.94,48.703],[7.942,48.706],[7.951,48.713],[7.952,48.713],[7.952,48.714],[7.952,48.714],[7.955,48.716],[7.96,48.72],[7.963,48.723],[7.965,48.726],[7.965,48.727],[7.966,48.728],[7.966,48.731],[7.965,48.737],[7.965,48.741],[7.964,48.744],[7.964,48.746],[7.964,48.746],[7.964,48.746],[7.965,48.749],[7.966,48.751],[7.966,48.753],[7.967,48.755],[7.969,48.758],[7.971,48.759],[7.973,48.76],[7.975,48.76],[7.979,48.761],[7.981,48.761],[7.982,48.761],[7.984,48.761],[7.989,48.76],[7.992,48.76],[7.998,48.759],[8,48.759],[8.003,48.758],[8.006,48.759],[8.01,48.76],[8.014,48.761],[8.018,48.764],[8.021,48.767],[8.022,48.77],[8.022,48.772],[8.024,48.777],[8.024,48.778],[8.024,48.78],[8.024,48.782],[8.025,48.784],[8.025,48.785],[8.027,48.786],[8.029,48.787],[8.03,48.788],[8.03,48.789],[8.032,48.79],[8.035,48.792],[8.036,48.792],[8.038,48.791],[8.042,48.792],[8.046,48.792],[8.047,48.792],[8.051,48.792],[8.054,48.791],[8.055,48.791],[8.056,48.791],[8.058,48.79],[8.062,48.79],[8.065,48.791],[8.068,48.792],[8.069,48.793],[8.069,48.794],[8.069,48.794],[8.069,48.795],[8.069,48.795],[8.07,48.796],[8.071,48.796],[8.073,48.796],[8.074,48.796],[8.076,48.796],[8.077,48.797],[8.08,48.798],[8.081,48.799],[8.086,48.803],[8.091,48.807],[8.095,48.811],[8.097,48.812],[8.098,48.813],[8.101,48.817],[8.102,48.82],[8.103,48.824],[8.103,48.827],[8.103,48.831],[8.104,48.833],[8.105,48.835],[8.106,48.836],[8.106,48.837],[8.111,48.844],[8.111,48.844],[8.11,48.845],[8.11,48.845],[8.11,48.845],[8.109,48.845],[8.109,48.845],[8.109,48.845],[8.11,48.846],[8.11,48.846],[8.11,48.846],[8.11,48.847],[8.11,48.847],[8.11,48.848],[8.112,48.848],[8.113,48.849],[8.114,48.852],[8.114,48.852],[8.117,48.857],[8.119,48.864],[8.124,48.871],[8.125,48.874],[8.126,48.875],[8.127,48.876],[8.127,48.877],[8.133,48.886],[8.137,48.892],[8.137,48.893],[8.139,48.894],[8.139,48.895],[8.14,48.896],[8.142,48.898],[8.142,48.899],[8.143,48.9],[8.144,48.901],[8.15,48.908],[8.156,48.914],[8.158,48.916],[8.158,48.916],[8.159,48.918],[8.163,48.921],[8.167,48.925],[8.172,48.929],[8.175,48.932],[8.177,48.934],[8.178,48.935],[8.179,48.936],[8.182,48.94],[8.184,48.942],[8.183,48.942],[8.184,48.943],[8.186,48.945],[8.189,48.95],[8.19,48.951],[8.191,48.953],[8.194,48.956],[8.195,48.958],[8.197,48.959],[8.201,48.961],[8.208,48.963],[8.213,48.964],[8.214,48.964],[8.215,48.964],[8.218,48.965],[8.221,48.965],[8.221,48.966],[8.222,48.965],[8.224,48.966],[8.232,48.967],[8.232,48.968],[8.249,48.976],[8.261,48.982],[8.267,48.986],[8.27,48.989],[8.272,48.99],[8.279,48.993],[8.284,48.996],[8.29,49.001],[8.297,49.012],[8.3,49.02],[8.305,49.04],[8.306,49.043],[8.307,49.044],[8.316,49.061],[8.327,49.071],[8.334,49.074],[8.339,49.077],[8.344,49.08],[8.35,49.085],[8.355,49.092],[8.356,49.094],[8.359,49.099],[8.367,49.133],[8.37,49.144],[8.371,49.147],[8.371,49.154],[8.368,49.161],[8.367,49.165],[8.37,49.172],[8.375,49.177],[8.377,49.182],[8.384,49.194],[8.386,49.204],[8.386,49.209],[8.385,49.212],[8.384,49.216],[8.385,49.231],[8.394,49.243],[8.4,49.247],[8.409,49.251],[8.418,49.254],[8.438,49.263],[8.449,49.271],[8.449,49.271],[8.453,49.278],[8.458,49.282],[8.46,49.284],[8.463,49.285],[8.483,49.29],[8.488,49.293],[8.49,49.296],[8.49,49.3],[8.488,49.303],[8.484,49.305],[8.47,49.31],[8.466,49.311],[8.459,49.315],[8.452,49.319],[8.449,49.323],[8.452,49.331],[8.454,49.335],[8.459,49.339],[8.469,49.344],[8.475,49.347],[8.481,49.349],[8.489,49.357],[8.492,49.36],[8.497,49.366],[8.5,49.374],[8.502,49.381],[8.502,49.386],[8.502,49.391],[8.498,49.397],[8.496,49.404],[8.495,49.413],[8.503,49.425],[8.508,49.436],[8.504,49.439],[8.497,49.441],[8.491,49.445],[8.478,49.445],[8.472,49.445],[8.458,49.446],[8.453,49.447],[8.446,49.45],[8.44,49.455],[8.44,49.46],[8.451,49.464],[8.457,49.467],[8.462,49.475],[8.457,49.479],[8.451,49.483],[8.44,49.496],[8.438,49.502],[8.432,49.514],[8.428,49.522],[8.423,49.528],[8.421,49.534],[8.412,49.548],[8.41,49.554],[8.411,49.561],[8.42,49.572],[8.416,49.583],[8.413,49.587],[8.409,49.592],[8.41,49.594],[8.409,49.595],[8.407,49.601],[8.403,49.606],[8.397,49.61],[8.39,49.614],[8.38,49.623],[8.376,49.629],[8.372,49.638],[8.37,49.646],[8.37,49.661],[8.364,49.665],[8.36,49.67],[8.354,49.682],[8.354,49.688],[8.357,49.693],[8.362,49.7],[8.37,49.703],[8.381,49.707],[8.421,49.716],[8.426,49.717],[8.437,49.725],[8.458,49.738],[8.478,49.752],[8.479,49.756],[8.478,49.76],[8.473,49.765],[8.459,49.765],[8.442,49.762],[8.427,49.763],[8.421,49.768],[8.416,49.775],[8.412,49.783],[8.406,49.799],[8.401,49.804],[8.37,49.826],[8.371,49.835],[8.379,49.85],[8.38,49.852],[8.378,49.856],[8.372,49.86],[8.359,49.864],[8.355,49.866],[8.345,49.872],[8.34,49.879],[8.339,49.889],[8.347,49.911],[8.346,49.918],[8.344,49.925],[8.341,49.938],[8.339,49.945],[8.336,49.952],[8.315,49.973],[8.303,49.981],[8.299,49.983],[8.29,49.989],[8.285,49.99],[8.28,49.995],[8.273,50.001],[8.272,50.004],[8.272,50.007],[8.268,50.012],[8.265,50.015],[8.259,50.02],[8.236,50.028],[8.208,50.034],[8.201,50.034],[8.192,50.035],[8.168,50.032],[8.155,50.028],[8.118,50.02],[8.102,50.016],[8.027,50.001],[8.02,49.999],[8.003,49.993],[7.996,49.988],[7.988,49.987],[7.979,49.984],[7.967,49.98],[7.952,49.978],[7.941,49.978],[7.895,49.973],[7.875,49.974],[7.86,49.985],[7.859,49.989],[7.859,50],[7.854,50.009],[7.849,50.013],[7.844,50.016],[7.831,50.021],[7.817,50.032],[7.802,50.041],[7.788,50.046],[7.775,50.054],[7.774,50.058],[7.775,50.065],[7.775,50.068],[7.776,50.072],[7.774,50.077],[7.769,50.08],[7.758,50.088],[7.734,50.108],[7.727,50.11],[7.724,50.115],[7.726,50.118],[7.735,50.126],[7.737,50.134],[7.728,50.14],[7.725,50.148],[7.711,50.157],[7.702,50.166],[7.697,50.169],[7.69,50.171],[7.68,50.17],[7.67,50.173],[7.664,50.174],[7.648,50.181],[7.647,50.184],[7.649,50.19],[7.648,50.196],[7.645,50.198],[7.644,50.201],[7.627,50.211],[7.621,50.214],[7.618,50.222],[7.613,50.227],[7.604,50.232],[7.59,50.233],[7.585,50.233],[7.577,50.24],[7.58,50.247],[7.586,50.249],[7.591,50.25],[7.604,50.25],[7.618,50.248],[7.619,50.248],[7.636,50.247],[7.638,50.248],[7.646,50.252],[7.648,50.255],[7.649,50.26],[7.647,50.265],[7.634,50.277],[7.631,50.279],[7.628,50.281],[7.62,50.287],[7.614,50.29],[7.597,50.309],[7.595,50.309],[7.595,50.309],[7.594,50.311],[7.594,50.311],[7.593,50.314],[7.589,50.319],[7.592,50.327],[7.592,50.327],[7.594,50.333],[7.596,50.339],[7.605,50.355],[7.61,50.365],[7.615,50.375],[7.616,50.378],[7.619,50.384],[7.62,50.389],[7.616,50.395],[7.609,50.399],[7.594,50.404],[7.574,50.414],[7.554,50.422],[7.539,50.425],[7.528,50.425],[7.522,50.423],[7.518,50.422],[7.51,50.417],[7.502,50.415],[7.489,50.415],[7.478,50.416],[7.464,50.421],[7.458,50.425],[7.451,50.434],[7.445,50.441],[7.441,50.443],[7.436,50.444],[7.428,50.445],[7.418,50.443],[7.404,50.443],[7.393,50.445],[7.387,50.448],[7.379,50.452],[7.356,50.466],[7.352,50.471],[7.337,50.483],[7.325,50.494],[7.31,50.506],[7.299,50.517],[7.296,50.521],[7.292,50.527],[7.288,50.532],[7.285,50.537],[7.271,50.566],[7.267,50.571],[7.258,50.576],[7.235,50.58],[7.224,50.584],[7.214,50.59],[7.212,50.596],[7.214,50.6],[7.216,50.603],[7.216,50.608],[7.215,50.623],[7.214,50.635],[7.215,50.643],[7.212,50.649],[7.209,50.652],[7.207,50.658],[7.203,50.661],[7.198,50.662],[7.195,50.664],[7.184,50.678],[7.179,50.687],[7.173,50.692],[7.166,50.707],[7.161,50.712],[7.154,50.715],[7.134,50.721],[7.127,50.724],[7.122,50.727],[7.12,50.728],[7.113,50.739],[7.107,50.75],[7.105,50.755],[7.101,50.757],[7.09,50.762],[7.09,50.762],[7.088,50.763],[7.088,50.763],[7.066,50.773],[7.059,50.776],[7.057,50.776],[7.046,50.782],[7.037,50.788],[7.034,50.797],[7.034,50.798],[7.035,50.803],[7.034,50.809],[7.029,50.816],[7.027,50.818],[7.023,50.821],[7.021,50.822],[7.012,50.824],[7,50.826],[6.999,50.826],[6.988,50.829],[6.982,50.834],[6.982,50.839],[6.983,50.84],[6.986,50.842],[6.996,50.846],[7.012,50.854],[7.018,50.859],[7.022,50.863],[7.033,50.868],[7.042,50.87],[7.049,50.874],[7.052,50.88],[7.052,50.886],[7.047,50.89],[7.039,50.893],[7.029,50.894],[7.013,50.894],[7.012,50.894],[7.005,50.895],[6.997,50.897],[6.991,50.902],[6.989,50.903],[6.977,50.914],[6.974,50.918],[6.969,50.925],[6.965,50.932],[6.96,50.939],[6.966,50.948],[6.966,50.948],[6.971,50.952],[6.992,50.965],[6.995,50.971],[6.992,50.975],[6.986,50.979],[6.972,50.978],[6.965,50.985],[6.96,50.992],[6.959,50.998],[6.96,51.003],[6.969,51.015],[6.968,51.021],[6.959,51.029],[6.95,51.033],[6.948,51.034],[6.927,51.046],[6.911,51.052],[6.856,51.071],[6.854,51.072],[6.852,51.074],[6.852,51.075],[6.85,51.079],[6.851,51.081],[6.851,51.083],[6.853,51.085],[6.854,51.086],[6.864,51.091],[6.875,51.094],[6.879,51.1],[6.879,51.105],[6.877,51.108],[6.864,51.12],[6.861,51.122],[6.853,51.127],[6.847,51.131],[6.846,51.137],[6.848,51.144],[6.853,51.15],[6.853,51.154],[6.853,51.155],[6.853,51.155],[6.849,51.157],[6.841,51.158],[6.841,51.158],[6.836,51.159],[6.833,51.159],[6.815,51.144],[6.806,51.142],[6.799,51.145],[6.797,51.146],[6.795,51.152],[6.799,51.161],[6.799,51.169],[6.795,51.17],[6.795,51.171],[6.792,51.175],[6.792,51.176],[6.788,51.179],[6.78,51.181],[6.766,51.179],[6.764,51.179],[6.759,51.18],[6.755,51.18],[6.752,51.18],[6.737,51.184],[6.733,51.192],[6.729,51.203],[6.729,51.208],[6.726,51.217],[6.728,51.225],[6.732,51.226],[6.732,51.226],[6.742,51.226],[6.746,51.225],[6.755,51.22],[6.758,51.22],[6.763,51.222],[6.764,51.227],[6.764,51.227],[6.764,51.232],[6.763,51.238],[6.759,51.243],[6.751,51.247],[6.75,51.247],[6.746,51.252],[6.722,51.259],[6.716,51.261],[6.707,51.267],[6.705,51.271],[6.705,51.281],[6.712,51.286],[6.714,51.287],[6.731,51.303],[6.732,51.309],[6.732,51.316],[6.729,51.32],[6.722,51.327],[6.706,51.334],[6.664,51.345],[6.66,51.346],[6.656,51.351],[6.662,51.365],[6.664,51.366],[6.67,51.369],[6.68,51.372],[6.705,51.373],[6.712,51.376],[6.726,51.383],[6.739,51.392],[6.743,51.397],[6.744,51.401],[6.744,51.406],[6.74,51.41],[6.732,51.418],[6.718,51.427],[6.713,51.434],[6.712,51.439],[6.715,51.448],[6.724,51.455],[6.721,51.462],[6.715,51.466],[6.69,51.475],[6.686,51.481],[6.688,51.486],[6.702,51.494],[6.715,51.498],[6.723,51.508],[6.717,51.514],[6.713,51.52],[6.709,51.521],[6.691,51.528],[6.686,51.533],[6.681,51.54],[6.682,51.546],[6.689,51.553],[6.691,51.556],[6.691,51.56],[6.691,51.565],[6.687,51.571],[6.678,51.576],[6.662,51.578],[6.652,51.577],[6.642,51.574],[6.633,51.57],[6.63,51.569],[6.612,51.568],[6.606,51.57],[6.602,51.573],[6.601,51.583],[6.603,51.59],[6.6,51.596],[6.592,51.612],[6.59,51.619],[6.592,51.625],[6.599,51.63],[6.599,51.634],[6.602,51.636],[6.605,51.642],[6.603,51.652],[6.592,51.657],[6.585,51.66],[6.566,51.659],[6.56,51.659],[6.543,51.66],[6.523,51.662],[6.499,51.662],[6.486,51.667],[6.48,51.671],[6.477,51.675],[6.476,51.68],[6.475,51.687],[6.473,51.691],[6.468,51.697],[6.463,51.702],[6.461,51.703],[6.454,51.706],[6.443,51.708],[6.433,51.71],[6.429,51.71],[6.418,51.713],[6.411,51.719],[6.412,51.724],[6.418,51.731],[6.424,51.738],[6.422,51.747],[6.418,51.752],[6.41,51.755],[6.4,51.756],[6.391,51.756],[6.35,51.756],[6.335,51.767],[6.331,51.775],[6.327,51.784],[6.316,51.798],[6.306,51.806],[6.282,51.819],[6.252,51.827],[6.223,51.83],[6.183,51.839],[6.166,51.843],[6.163,51.844],[6.162,51.845],[6.156,51.846],[6.15,51.847],[6.148,51.848],[6.148,51.849],[6.146,51.849],[6.143,51.849],[6.141,51.849],[6.14,51.849],[6.134,51.85],[6.132,51.85],[6.131,51.85],[6.119,51.85],[6.115,51.85],[6.111,51.849],[6.107,51.85],[6.106,51.85],[6.102,51.851],[6.101,51.851],[6.099,51.852],[6.098,51.853],[6.095,51.853],[6.093,51.854],[6.092,51.854],[6.093,51.855],[6.093,51.856],[6.093,51.857],[6.091,51.858],[6.09,51.858],[6.089,51.858],[6.089,51.857],[6.088,51.857],[6.086,51.858],[6.086,51.858],[6.085,51.858],[6.084,51.859],[6.083,51.86],[6.079,51.862],[6.079,51.862],[6.076,51.862],[6.07,51.866],[6.067,51.867],[6.062,51.869],[6.058,51.87],[6.032,51.881],[6.024,51.892],[6.022,51.894],[6.022,51.896],[6.02,51.898],[6.017,51.9],[6.014,51.901],[6.012,51.902],[6.008,51.903],[6.002,51.905],[5.993,51.908],[5.99,51.91],[5.984,51.915],[5.978,51.921],[5.976,51.923],[5.968,51.928],[5.965,51.931],[5.963,51.932],[5.961,51.935],[5.96,51.939],[5.959,51.942],[5.958,51.944],[5.957,51.946],[5.954,51.948],[5.949,51.951],[5.942,51.954],[5.94,51.955],[5.938,51.956],[5.936,51.958],[5.934,51.96],[5.933,51.965],[5.932,51.966],[5.93,51.967],[5.928,51.968],[5.926,51.969],[5.923,51.97],[5.92,51.97],[5.917,51.971],[5.915,51.972],[5.913,51.973],[5.91,51.974],[5.907,51.975],[5.907,51.974],[5.904,51.975],[5.904,51.975],[5.9,51.98],[5.893,51.983],[5.889,51.983],[5.886,51.983],[5.883,51.983],[5.88,51.982],[5.875,51.981],[5.874,51.981],[5.872,51.98],[5.873,51.979],[5.872,51.978],[5.871,51.977],[5.869,51.975],[5.867,51.973],[5.866,51.973],[5.859,51.968],[5.858,51.968],[5.857,51.968],[5.855,51.968],[5.853,51.969],[5.853,51.969],[5.851,51.97],[5.843,51.972],[5.84,51.973],[5.836,51.973],[5.833,51.973],[5.83,51.973],[5.827,51.972],[5.825,51.972],[5.813,51.965],[5.81,51.964],[5.808,51.963],[5.801,51.962],[5.797,51.962],[5.793,51.961],[5.787,51.96],[5.785,51.959],[5.772,51.96],[5.771,51.96],[5.763,51.963],[5.757,51.965],[5.745,51.971],[5.74,51.971],[5.737,51.971],[5.731,51.969],[5.723,51.963],[5.72,51.963],[5.718,51.963],[5.714,51.962],[5.711,51.962],[5.705,51.962],[5.704,51.961],[5.702,51.961],[5.7,51.961],[5.694,51.96],[5.691,51.959],[5.69,51.959],[5.687,51.959],[5.684,51.959],[5.681,51.958],[5.676,51.956],[5.673,51.954],[5.669,51.952],[5.664,51.952],[5.656,51.953],[5.654,51.953],[5.652,51.953],[5.649,51.953],[5.646,51.952],[5.643,51.949],[5.642,51.948],[5.641,51.947],[5.64,51.947],[5.638,51.945],[5.635,51.943],[5.633,51.942],[5.63,51.942],[5.607,51.944],[5.603,51.945],[5.596,51.949],[5.593,51.95],[5.591,51.951],[5.585,51.951],[5.572,51.954],[5.57,51.954],[5.563,51.955],[5.56,51.956],[5.557,51.957],[5.558,51.958],[5.558,51.959],[5.555,51.961],[5.555,51.96],[5.555,51.959],[5.554,51.959],[5.552,51.96],[5.55,51.961],[5.547,51.963],[5.545,51.966],[5.541,51.966],[5.54,51.966],[5.529,51.969],[5.519,51.971],[5.509,51.973],[5.506,51.974],[5.504,51.975],[5.5,51.977],[5.497,51.979],[5.49,51.981],[5.486,51.983],[5.484,51.983],[5.482,51.983],[5.474,51.984],[5.471,51.984],[5.467,51.984],[5.458,51.985],[5.454,51.985],[5.451,51.986],[5.448,51.987],[5.445,51.987],[5.442,51.988],[5.44,51.988],[5.437,51.987],[5.435,51.987],[5.432,51.987],[5.433,51.985],[5.43,51.984],[5.429,51.985],[5.428,51.985],[5.426,51.984],[5.426,51.983],[5.425,51.982],[5.424,51.982],[5.421,51.98],[5.42,51.98],[5.414,51.978],[5.412,51.977],[5.41,51.977],[5.407,51.977],[5.405,51.976],[5.404,51.976],[5.401,51.975],[5.399,51.975],[5.397,51.974],[5.396,51.974],[5.394,51.974],[5.393,51.974],[5.392,51.973],[5.392,51.973],[5.393,51.972],[5.386,51.97],[5.383,51.97],[5.38,51.97],[5.375,51.97],[5.372,51.971],[5.37,51.971],[5.364,51.972],[5.362,51.972],[5.345,51.968],[5.34,51.963],[5.336,51.961],[5.336,51.96],[5.334,51.959],[5.332,51.958],[5.328,51.957],[5.324,51.956],[5.322,51.956],[5.319,51.956],[5.316,51.957],[5.314,51.958],[5.311,51.959],[5.308,51.961],[5.304,51.962],[5.301,51.963],[5.297,51.964],[5.292,51.964],[5.288,51.964],[5.284,51.964],[5.278,51.965],[5.274,51.966],[5.271,51.967],[5.266,51.968],[5.263,51.97],[5.26,51.971],[5.257,51.973],[5.255,51.974],[5.248,51.979],[5.244,51.981],[5.24,51.981],[5.237,51.981],[5.231,51.979],[5.226,51.973],[5.223,51.969],[5.22,51.966],[5.218,51.964],[5.215,51.963],[5.212,51.961],[5.208,51.961],[5.205,51.961],[5.201,51.961],[5.198,51.962],[5.195,51.963],[5.19,51.965],[5.187,51.966],[5.179,51.969],[5.174,51.971],[5.166,51.972],[5.163,51.972],[5.158,51.972],[5.156,51.973],[5.155,51.973],[5.151,51.975],[5.151,51.975],[5.149,51.975],[5.146,51.975],[5.145,51.977],[5.143,51.98],[5.135,51.988],[5.133,51.991],[5.13,51.993],[5.126,51.996],[5.12,51.998],[5.116,51.999],[5.109,52.001],[5.105,52.002],[5.101,52.002],[5.097,52.002],[5.094,52.001],[5.091,52.001],[5.087,51.999],[5.083,51.998],[5.082,51.998],[5.077,51.996],[5.074,51.995],[5.073,51.993],[5.07,51.992],[5.067,51.992],[5.065,51.991],[5.064,51.989],[5.064,51.988],[5.063,51.986],[5.062,51.986],[5.06,51.985],[5.059,51.985],[5.058,51.986],[5.058,51.987],[5.055,51.986],[5.054,51.985],[5.05,51.983],[5.048,51.982],[5.045,51.98],[5.042,51.978],[5.042,51.978],[5.04,51.976],[5.04,51.974],[5.039,51.972],[5.037,51.971],[5.035,51.969],[5.032,51.968],[5.03,51.967],[5.027,51.967],[5.025,51.967],[5.022,51.968],[5.019,51.968],[5.017,51.97],[5.015,51.971],[5.012,51.973],[5.009,51.974],[5.007,51.976],[5.004,51.977],[5.001,51.977],[4.999,51.976],[5.003,51.977],[4.999,51.977],[4.995,51.977],[4.99,51.975],[4.986,51.974],[4.985,51.973],[4.981,51.969],[4.973,51.962],[4.968,51.96],[4.964,51.96],[4.96,51.96],[4.956,51.961],[4.952,51.963],[4.95,51.963],[4.947,51.962],[4.945,51.963],[4.944,51.963],[4.941,51.963],[4.939,51.962],[4.936,51.96],[4.935,51.959],[4.931,51.958],[4.929,51.957],[4.928,51.956],[4.927,51.956],[4.927,51.954],[4.926,51.953],[4.925,51.953],[4.922,51.95],[4.92,51.948],[4.916,51.944],[4.914,51.944],[4.909,51.943],[4.902,51.942],[4.893,51.942],[4.889,51.941],[4.882,51.94],[4.878,51.939],[4.873,51.939],[4.868,51.939],[4.866,51.94],[4.862,51.939],[4.859,51.94],[4.853,51.941],[4.851,51.941],[4.846,51.94],[4.838,51.939],[4.835,51.938],[4.833,51.937],[4.83,51.934],[4.824,51.931],[4.819,51.927],[4.775,51.915],[4.773,51.915],[4.771,51.915],[4.769,51.915],[4.766,51.914],[4.761,51.911],[4.759,51.911],[4.733,51.904],[4.732,51.903],[4.731,51.903],[4.727,51.901],[4.726,51.9],[4.723,51.899],[4.72,51.898],[4.716,51.898],[4.714,51.898],[4.704,51.899],[4.701,51.899],[4.698,51.899],[4.696,51.898],[4.693,51.897],[4.67,51.888],[4.658,51.888],[4.656,51.888],[4.653,51.888],[4.649,51.888],[4.646,51.889],[4.643,51.889],[4.64,51.889],[4.639,51.889],[4.635,51.889],[4.633,51.889],[4.631,51.888],[4.629,51.889],[4.628,51.888],[4.622,51.888],[4.617,51.888],[4.615,51.889],[4.614,51.89],[4.608,51.89],[4.604,51.891],[4.604,51.891],[4.599,51.891],[4.596,51.892],[4.593,51.893],[4.59,51.894],[4.589,51.894],[4.588,51.895],[4.585,51.897],[4.583,51.899],[4.581,51.9],[4.579,51.901],[4.576,51.901],[4.576,51.9],[4.573,51.9],[4.572,51.902],[4.57,51.901],[4.568,51.901],[4.566,51.901],[4.561,51.906],[4.568,51.91],[4.57,51.912],[4.572,51.913],[4.577,51.915],[4.58,51.918],[4.579,51.919],[4.579,51.921],[4.58,51.922],[4.581,51.922],[4.584,51.922],[4.587,51.923],[4.588,51.923],[4.589,51.924],[4.591,51.925],[4.593,51.926],[4.596,51.927],[4.6,51.928],[4.601,51.928],[4.606,51.928],[4.608,51.927],[4.609,51.927],[4.611,51.928],[4.611,51.928],[4.611,51.93],[4.611,51.931],[4.611,51.932],[4.616,51.934],[4.617,51.934],[4.619,51.937],[4.62,51.938],[4.621,51.938],[4.622,51.938],[4.624,51.938],[4.628,51.938],[4.631,51.938],[4.631,51.938],[4.633,51.942],[4.634,51.944],[4.635,51.947],[4.636,51.951],[4.637,51.952],[4.638,51.953],[4.64,51.954],[4.642,51.955],[4.642,51.955],[4.642,51.956],[4.64,51.959],[4.637,51.961],[4.635,51.962],[4.632,51.965],[4.633,51.969],[4.638,51.972],[4.642,51.973],[4.645,51.973],[4.648,51.974],[4.649,51.975],[4.653,51.977],[4.654,51.978],[4.658,51.978],[4.66,51.979],[4.664,51.98],[4.668,51.981],[4.668,51.982],[4.667,51.982],[4.668,51.983],[4.668,51.984],[4.67,51.986],[4.671,51.987],[4.674,51.989],[4.676,51.99],[4.678,51.992],[4.679,51.993],[4.683,51.995],[4.685,51.996],[4.687,51.998],[4.689,51.998],[4.69,51.999],[4.692,51.999],[4.693,52.004],[4.692,52.006],[4.691,52.008],[4.689,52.009],[4.687,52.011],[4.685,52.013],[4.683,52.016],[4.681,52.021],[4.677,52.022],[4.674,52.023],[4.672,52.023],[4.67,52.024],[4.669,52.026],[4.665,52.028],[4.661,52.032],[4.66,52.037],[4.66,52.041],[4.662,52.049],[4.664,52.059],[4.66,52.064],[4.659,52.07],[4.66,52.075],[4.661,52.082],[4.662,52.084],[4.662,52.087],[4.663,52.089],[4.663,52.091],[4.664,52.096],[4.665,52.1],[4.668,52.106],[4.671,52.111],[4.672,52.113],[4.673,52.115],[4.675,52.119],[4.673,52.12],[4.669,52.121],[4.668,52.121],[4.667,52.122],[4.665,52.124],[4.663,52.128],[4.664,52.131],[4.664,52.136],[4.663,52.139],[4.663,52.14],[4.662,52.141],[4.659,52.142],[4.657,52.142],[4.653,52.143],[4.651,52.143],[4.649,52.143],[4.647,52.143],[4.636,52.14],[4.632,52.14],[4.63,52.139],[4.627,52.138],[4.626,52.137],[4.623,52.135],[4.622,52.134],[4.621,52.132],[4.618,52.131],[4.615,52.13],[4.612,52.13],[4.599,52.132],[4.595,52.132],[4.591,52.132],[4.588,52.13],[4.584,52.129],[4.581,52.129],[4.572,52.129],[4.566,52.13],[4.561,52.132],[4.558,52.134],[4.553,52.137],[4.548,52.139],[4.543,52.141],[4.537,52.141],[4.534,52.142],[4.532,52.142],[4.53,52.143],[4.529,52.144],[4.526,52.145],[4.524,52.147],[4.522,52.154],[4.521,52.154],[4.52,52.155],[4.518,52.156],[4.513,52.157],[4.512,52.157],[4.511,52.157],[4.509,52.157],[4.504,52.157],[4.505,52.158],[4.505,52.159],[4.506,52.161],[4.506,52.161],[4.505,52.162],[4.504,52.162],[4.503,52.163],[4.5,52.163],[4.499,52.164],[4.494,52.164],[4.493,52.164],[4.492,52.164],[4.491,52.164],[4.49,52.164],[4.487,52.165],[4.485,52.164],[4.483,52.163],[4.481,52.161],[4.479,52.159],[4.476,52.159],[4.474,52.158],[4.472,52.157],[4.47,52.155],[4.468,52.154],[4.465,52.152],[4.463,52.153],[4.46,52.154],[4.457,52.156],[4.455,52.158],[4.45,52.161],[4.449,52.162],[4.448,52.163],[4.447,52.165],[4.447,52.167],[4.447,52.17],[4.447,52.171],[4.448,52.172],[4.449,52.173],[4.449,52.178],[4.447,52.179],[4.444,52.179],[4.441,52.18],[4.436,52.181],[4.434,52.183],[4.43,52.187],[4.427,52.189],[4.427,52.191],[4.426,52.192],[4.427,52.194],[4.428,52.194],[4.429,52.195],[4.431,52.196],[4.43,52.197],[4.421,52.203],[4.418,52.204],[4.409,52.207]],[[5.264,43.291],[5.164,43.291],[5.064,43.291],[4.964,43.291],[4.864,43.291],[4.764,43.291],[4.664,43.291],[4.564,43.391],[4.627,43.687]],[[4.717,44.125],[4.716,44.123],[4.717,44.122],[4.718,44.119],[4.719,44.117],[4.719,44.116],[4.72,44.114],[4.721,44.111],[4.721,44.11],[4.722,44.109],[4.724,44.108],[4.726,44.106],[4.727,44.105],[4.729,44.104],[4.728,44.102],[4.727,44.101],[4.726,44.1],[4.726,44.098],[4.726,44.097],[4.726,44.097],[4.726,44.097],[4.726,44.096],[4.727,44.095],[4.727,44.094],[4.729,44.092],[4.73,44.092],[4.732,44.091],[4.732,44.091],[4.734,44.09],[4.735,44.089],[4.737,44.089],[4.74,44.088],[4.746,44.087],[4.75,44.086],[4.752,44.085],[4.754,44.084],[4.757,44.083],[4.758,44.081],[4.76,44.079],[4.762,44.077],[4.765,44.075],[4.767,44.074],[4.769,44.073],[4.771,44.072],[4.775,44.072],[4.779,44.071],[4.779,44.071],[4.782,44.07],[4.787,44.069],[4.788,44.068],[4.79,44.066],[4.79,44.065],[4.791,44.063],[4.791,44.061],[4.791,44.06],[4.791,44.059],[4.79,44.058],[4.79,44.055],[4.79,44.054],[4.791,44.053],[4.793,44.051],[4.797,44.05],[4.798,44.049],[4.803,44.046],[4.806,44.044],[4.808,44.042],[4.81,44.04],[4.813,44.038],[4.815,44.036],[4.817,44.035],[4.818,44.033],[4.819,44.031],[4.82,44.028],[4.82,44.027],[4.821,44.022],[4.82,44.013],[4.821,44.01],[4.821,44.008],[4.822,44.006],[4.822,44.006],[4.821,44.003],[4.821,44],[4.821,43.999],[4.821,43.995],[4.821,43.992],[4.82,43.988],[4.819,43.982],[4.819,43.977],[4.818,43.976],[4.818,43.974],[4.818,43.972],[4.817,43.969],[4.817,43.966],[4.816,43.965],[4.816,43.964],[4.815,43.963],[4.814,43.962],[4.811,43.96],[4.807,43.959],[4.803,43.957],[4.8,43.956],[4.798,43.954],[4.796,43.953],[4.795,43.953],[4.795,43.952],[4.794,43.951],[4.792,43.949],[4.791,43.947],[4.79,43.946],[4.788,43.944],[4.787,43.943],[4.785,43.942],[4.785,43.942],[4.786,43.941],[4.771,43.938],[4.766,43.937],[4.759,43.936],[4.755,43.935],[4.75,43.934],[4.746,43.932],[4.743,43.929],[4.739,43.926],[4.736,43.923],[4.733,43.919],[4.729,43.915],[4.726,43.911],[4.723,43.909],[4.721,43.907],[4.718,43.906],[4.713,43.904],[4.706,43.902],[4.704,43.902],[4.701,43.9],[4.7,43.9],[4.697,43.898],[4.693,43.894],[4.69,43.89],[4.687,43.887],[4.685,43.886],[4.683,43.885],[4.675,43.883],[4.665,43.88],[4.661,43.879],[4.656,43.877],[4.65,43.874],[4.646,43.872],[4.643,43.871],[4.64,43.87],[4.634,43.87],[4.627,43.869],[4.625,43.868],[4.622,43.866],[4.621,43.865],[4.619,43.863],[4.619,43.861],[4.618,43.858],[4.618,43.853],[4.62,43.849],[4.623,43.843],[4.623,43.843],[4.622,43.843],[4.621,43.842],[4.622,43.841],[4.622,43.839],[4.623,43.836],[4.623,43.834],[4.624,43.833],[4.624,43.832],[4.624,43.83],[4.624,43.83],[4.625,43.828],[4.626,43.827],[4.627,43.826],[4.628,43.825],[4.628,43.825],[4.63,43.824],[4.632,43.823],[4.633,43.823],[4.634,43.823],[4.636,43.822],[4.638,43.821],[4.639,43.821],[4.641,43.819],[4.643,43.817],[4.644,43.816],[4.645,43.815],[4.646,43.814],[4.648,43.813],[4.648,43.811],[4.648,43.81],[4.649,43.809],[4.649,43.807],[4.649,43.806],[4.65,43.805],[4.65,43.805],[4.649,43.804],[4.649,43.804],[4.649,43.802],[4.649,43.801],[4.648,43.8],[4.648,43.799],[4.648,43.8],[4.647,43.8],[4.647,43.801],[4.647,43.801],[4.647,43.8],[4.648,43.798],[4.648,43.796],[4.647,43.795],[4.647,43.793],[4.648,43.791],[4.649,43.789],[4.649,43.788],[4.649,43.785],[4.647,43.782],[4.644,43.778],[4.64,43.776],[4.639,43.775],[4.638,43.774],[4.638,43.774],[4.637,43.773],[4.636,43.772],[4.635,43.772],[4.634,43.771],[4.633,43.77],[4.632,43.769],[4.63,43.767],[4.629,43.767],[4.629,43.767],[4.628,43.767],[4.628,43.767],[4.627,43.766],[4.626,43.766],[4.626,43.766],[4.625,43.765],[4.626,43.765],[4.628,43.764],[4.628,43.758],[4.628,43.756],[4.628,43.756],[4.627,43.755],[4.627,43.755],[4.627,43.754],[4.627,43.753],[4.626,43.753],[4.625,43.746],[4.625,43.745],[4.625,43.744],[4.624,43.743],[4.623,43.742],[4.623,43.742],[4.622,43.741],[4.622,43.74],[4.622,43.74],[4.621,43.739],[4.621,43.739],[4.62,43.736],[4.619,43.734],[4.619,43.733],[4.618,43.733],[4.618,43.733],[4.617,43.732],[4.617,43.731],[4.618,43.728],[4.618,43.727],[4.618,43.727],[4.618,43.725],[4.618,43.725],[4.619,43.725],[4.619,43.725],[4.619,43.724],[4.618,43.724],[4.618,43.723],[4.617,43.722],[4.617,43.721],[4.617,43.72],[4.617,43.72],[4.617,43.719],[4.617,43.717],[4.617,43.717],[4.618,43.717],[4.618,43.716],[4.617,43.715],[4.618,43.715],[4.618,43.714],[4.619,43.712],[4.619,43.71],[4.619,43.708],[4.62,43.707],[4.62,43.706],[4.62,43.705],[4.621,43.704],[4.622,43.702],[4.625,43.699],[4.626,43.699],[4.627,43.697],[4.628,43.695],[4.628,43.694],[4.628,43.694],[4.629,43.694],[4.629,43.694],[4.63,43.691],[4.63,43.69],[4.628,43.688]],[[4.801,44.159],[4.798,44.158],[4.797,44.157],[4.796,44.157],[4.796,44.156],[4.794,44.155],[4.793,44.154],[4.791,44.153],[4.789,44.152],[4.789,44.151],[4.788,44.15],[4.787,44.149],[4.785,44.148],[4.783,44.149],[4.782,44.149],[4.781,44.149],[4.78,44.15],[4.778,44.149],[4.777,44.149],[4.776,44.15],[4.775,44.15],[4.773,44.15],[4.772,44.149],[4.771,44.149],[4.769,44.15],[4.769,44.149],[4.768,44.147],[4.767,44.146],[4.766,44.146],[4.765,44.146],[4.764,44.146],[4.763,44.147],[4.761,44.147],[4.76,44.147],[4.758,44.146],[4.757,44.146],[4.755,44.145],[4.754,44.145],[4.753,44.145],[4.751,44.145],[4.751,44.146],[4.75,44.147],[4.749,44.148],[4.748,44.148],[4.747,44.148],[4.745,44.148],[4.744,44.148],[4.742,44.148],[4.739,44.148],[4.738,44.148],[4.737,44.148],[4.735,44.147],[4.734,44.147],[4.732,44.146],[4.731,44.146],[4.731,44.145],[4.731,44.145],[4.731,44.143],[4.731,44.143],[4.73,44.143],[4.73,44.142],[4.731,44.142],[4.731,44.142],[4.731,44.141],[4.731,44.141],[4.731,44.141],[4.733,44.139],[4.733,44.139],[4.734,44.137],[4.734,44.136],[4.734,44.135],[4.731,44.134],[4.731,44.133],[4.73,44.132],[4.727,44.131],[4.725,44.131],[4.723,44.13],[4.721,44.129],[4.719,44.128],[4.718,44.127],[4.717,44.125]],[[6.002,47.224],[6,47.222],[5.999,47.22],[5.997,47.219],[5.996,47.217],[5.995,47.216],[5.995,47.214],[5.995,47.214],[5.993,47.213],[5.992,47.212],[5.991,47.21],[5.99,47.21],[5.987,47.208],[5.986,47.208],[5.985,47.208],[5.984,47.209],[5.983,47.209],[5.981,47.209],[5.977,47.209],[5.974,47.209],[5.972,47.209],[5.97,47.209],[5.968,47.209],[5.965,47.209],[5.963,47.209],[5.963,47.209],[5.962,47.208],[5.961,47.207],[5.961,47.206],[5.96,47.204],[5.961,47.203],[5.962,47.203],[5.963,47.202],[5.965,47.2],[5.966,47.199],[5.966,47.199],[5.965,47.197],[5.964,47.196],[5.963,47.195],[5.962,47.195],[5.959,47.193],[5.958,47.193],[5.957,47.192],[5.955,47.192],[5.951,47.191],[5.949,47.19],[5.948,47.189],[5.944,47.186],[5.939,47.184],[5.934,47.182],[5.927,47.181],[5.921,47.179],[5.915,47.179],[5.908,47.181],[5.9,47.185],[5.894,47.19],[5.89,47.191],[5.885,47.19],[5.883,47.187],[5.885,47.184],[5.888,47.181],[5.894,47.18],[5.896,47.178],[5.897,47.176],[5.897,47.175],[5.896,47.172],[5.893,47.17],[5.887,47.169],[5.886,47.166],[5.886,47.165],[5.886,47.165],[5.886,47.164],[5.886,47.161],[5.886,47.16],[5.886,47.159],[5.887,47.158],[5.887,47.157],[5.887,47.156],[5.888,47.156],[5.889,47.154],[5.889,47.154],[5.889,47.153],[5.889,47.153],[5.889,47.152],[5.888,47.152],[5.887,47.152],[5.886,47.152],[5.885,47.151],[5.884,47.151],[5.883,47.15],[5.88,47.15],[5.877,47.15],[5.875,47.15],[5.872,47.15],[5.87,47.149],[5.869,47.149],[5.867,47.148],[5.865,47.147],[5.863,47.146],[5.862,47.145],[5.86,47.143],[5.857,47.142],[5.854,47.142],[5.852,47.142],[5.851,47.141],[5.849,47.141],[5.846,47.141],[5.844,47.141],[5.842,47.142],[5.84,47.143],[5.839,47.143],[5.839,47.144],[5.84,47.144],[5.841,47.144],[5.841,47.145],[5.842,47.146],[5.842,47.146],[5.842,47.147],[5.842,47.147],[5.843,47.148],[5.843,47.149],[5.842,47.149],[5.843,47.15],[5.843,47.151],[5.843,47.151],[5.845,47.152],[5.846,47.152],[5.847,47.153],[5.849,47.154],[5.85,47.154],[5.851,47.155],[5.852,47.156],[5.853,47.157],[5.853,47.158],[5.854,47.159],[5.856,47.16],[5.857,47.162],[5.857,47.163],[5.857,47.163],[5.857,47.165],[5.857,47.165],[5.857,47.166],[5.856,47.167],[5.855,47.168],[5.854,47.17],[5.853,47.171],[5.853,47.172],[5.852,47.172],[5.851,47.173],[5.85,47.174],[5.849,47.174],[5.847,47.174],[5.845,47.175],[5.843,47.175],[5.842,47.175],[5.84,47.176],[5.838,47.176],[5.837,47.176],[5.836,47.176],[5.834,47.176],[5.832,47.175],[5.831,47.175],[5.829,47.174],[5.828,47.175],[5.827,47.175],[5.826,47.174],[5.821,47.176],[5.815,47.177],[5.809,47.178],[5.803,47.179],[5.795,47.179],[5.788,47.178],[5.783,47.177],[5.778,47.174],[5.774,47.171],[5.772,47.169],[5.769,47.169],[5.769,47.168],[5.768,47.168],[5.768,47.167],[5.767,47.165],[5.767,47.163],[5.767,47.162],[5.765,47.162],[5.763,47.161],[5.762,47.16],[5.76,47.16],[5.759,47.159],[5.758,47.159],[5.756,47.158],[5.755,47.158],[5.753,47.157],[5.75,47.157],[5.749,47.158],[5.748,47.158],[5.746,47.158],[5.745,47.159],[5.744,47.159],[5.742,47.16],[5.741,47.16],[5.74,47.16],[5.736,47.159],[5.731,47.157],[5.73,47.156],[5.727,47.156],[5.726,47.156],[5.724,47.155],[5.723,47.153],[5.722,47.152],[5.722,47.152],[5.721,47.151],[5.719,47.15],[5.718,47.15],[5.716,47.149],[5.714,47.149],[5.712,47.148],[5.71,47.149],[5.708,47.149],[5.707,47.15],[5.706,47.15],[5.706,47.151],[5.706,47.152],[5.708,47.152],[5.709,47.152],[5.71,47.152],[5.711,47.152],[5.712,47.153],[5.713,47.153],[5.714,47.154],[5.715,47.156],[5.715,47.157],[5.715,47.158],[5.713,47.158],[5.708,47.158],[5.701,47.157],[5.694,47.157],[5.689,47.155],[5.685,47.153],[5.68,47.151],[5.676,47.149],[5.673,47.148],[5.672,47.147],[5.67,47.147],[5.667,47.147],[5.666,47.148],[5.664,47.148],[5.663,47.149],[5.662,47.15],[5.662,47.15],[5.662,47.151],[5.662,47.151],[5.663,47.152],[5.664,47.152],[5.664,47.153],[5.663,47.153],[5.662,47.154],[5.66,47.154],[5.654,47.154],[5.649,47.154],[5.645,47.155],[5.643,47.155],[5.642,47.155],[5.64,47.154],[5.638,47.153],[5.636,47.153],[5.635,47.152],[5.635,47.151],[5.635,47.149],[5.635,47.148],[5.635,47.147],[5.634,47.146],[5.633,47.146],[5.632,47.146],[5.63,47.146],[5.627,47.146],[5.624,47.146],[5.62,47.146],[5.617,47.146],[5.614,47.146],[5.612,47.147],[5.61,47.148],[5.609,47.148],[5.607,47.149],[5.606,47.148],[5.602,47.147],[5.6,47.147],[5.6,47.146],[5.601,47.145],[5.601,47.145],[5.601,47.144],[5.601,47.144],[5.6,47.143],[5.599,47.143],[5.598,47.143],[5.597,47.142],[5.596,47.141],[5.595,47.14],[5.594,47.14],[5.593,47.14],[5.593,47.14],[5.589,47.138],[5.588,47.138],[5.587,47.138],[5.586,47.139],[5.585,47.139],[5.584,47.14],[5.583,47.141],[5.582,47.142],[5.582,47.143],[5.58,47.142],[5.567,47.135],[5.567,47.134],[5.567,47.134],[5.564,47.131],[5.562,47.13],[5.561,47.129],[5.56,47.128],[5.559,47.127],[5.557,47.126],[5.554,47.124],[5.553,47.122],[5.552,47.121],[5.551,47.12],[5.55,47.119],[5.55,47.117],[5.55,47.116],[5.551,47.114],[5.551,47.111],[5.551,47.11],[5.551,47.109],[5.55,47.109],[5.549,47.108],[5.547,47.107],[5.545,47.107],[5.543,47.106],[5.54,47.105],[5.537,47.104],[5.534,47.102],[5.533,47.101],[5.532,47.1],[5.531,47.099],[5.531,47.098],[5.531,47.097],[5.532,47.095],[5.533,47.094],[5.534,47.093],[5.534,47.093],[5.532,47.092],[5.531,47.092],[5.531,47.093],[5.531,47.093],[5.529,47.093],[5.527,47.092],[5.525,47.091],[5.524,47.09],[5.522,47.09],[5.522,47.089],[5.52,47.089],[5.519,47.09],[5.518,47.09],[5.518,47.091],[5.517,47.092],[5.516,47.093],[5.513,47.094],[5.512,47.095],[5.505,47.097],[5.501,47.097],[5.5,47.097],[5.5,47.097],[5.499,47.097],[5.499,47.097],[5.499,47.098],[5.498,47.097],[5.497,47.097],[5.495,47.096],[5.493,47.096],[5.491,47.095],[5.487,47.093],[5.485,47.091],[5.484,47.09],[5.484,47.089],[5.484,47.088],[5.485,47.088],[5.486,47.087],[5.487,47.086],[5.487,47.083],[5.482,47.081],[5.479,47.08],[5.475,47.079],[5.472,47.078],[5.471,47.077],[5.471,47.076],[5.47,47.075],[5.47,47.075],[5.471,47.073],[5.473,47.071],[5.474,47.069],[5.477,47.068],[5.478,47.066],[5.478,47.065],[5.477,47.064],[5.475,47.064],[5.474,47.064],[5.469,47.065],[5.469,47.065],[5.467,47.065],[5.466,47.064],[5.464,47.063],[5.462,47.062],[5.459,47.06],[5.459,47.06],[5.457,47.059],[5.455,47.058],[5.453,47.058],[5.451,47.058],[5.448,47.058],[5.447,47.058],[5.447,47.057],[5.448,47.056],[5.449,47.056],[5.451,47.054],[5.452,47.054],[5.454,47.052],[5.455,47.051],[5.456,47.048],[5.456,47.047],[5.456,47.045],[5.455,47.045],[5.455,47.043],[5.454,47.042],[5.451,47.04],[5.45,47.039],[5.448,47.038],[5.447,47.037],[5.446,47.037],[5.447,47.036],[5.447,47.036],[5.446,47.035],[5.446,47.034],[5.446,47.034],[5.446,47.033],[5.448,47.032],[5.449,47.031],[5.449,47.03],[5.449,47.03],[5.45,47.027],[5.45,47.025],[5.45,47.022],[5.45,47.021],[5.45,47.02],[5.45,47.019],[5.45,47.018],[5.449,47.017],[5.448,47.016],[5.447,47.015],[5.445,47.014],[5.444,47.013],[5.443,47.013],[5.443,47.012],[5.442,47.011],[5.44,47.01],[5.439,47.01],[5.437,47.009],[5.434,47.01],[5.432,47.011],[5.43,47.011],[5.429,47.012],[5.428,47.012],[5.427,47.013],[5.427,47.014],[5.425,47.015],[5.425,47.016],[5.423,47.018],[5.421,47.02],[5.417,47.021],[5.415,47.021],[5.414,47.022],[5.412,47.022],[5.409,47.022],[5.407,47.022],[5.405,47.022],[5.404,47.022],[5.403,47.021],[5.401,47.018],[5.401,47.017],[5.4,47.015],[5.4,47.013],[5.398,47.011],[5.396,47.01],[5.395,47.01],[5.393,47.01],[5.392,47.01],[5.391,47.011],[5.389,47.011],[5.387,47.011],[5.384,47.011],[5.382,47.012],[5.381,47.012],[5.381,47.012],[5.379,47.011],[5.377,47.009],[5.377,47.009],[5.376,47.008],[5.375,47.006],[5.376,47.004],[5.376,47.003],[5.377,47.001],[5.377,47.001],[5.377,47],[5.377,47],[5.378,46.999],[5.379,46.998],[5.379,46.997],[5.38,46.996],[5.381,46.994],[5.381,46.993],[5.381,46.992],[5.38,46.991],[5.379,46.989],[5.378,46.988],[5.378,46.988],[5.377,46.988],[5.376,46.987],[5.376,46.986],[5.376,46.985],[5.376,46.984],[5.375,46.983],[5.375,46.982],[5.376,46.981],[5.377,46.98],[5.378,46.978],[5.378,46.977],[5.379,46.976],[5.38,46.975],[5.38,46.974],[5.381,46.973],[5.382,46.971],[5.382,46.971],[5.383,46.971],[5.383,46.97],[5.384,46.97],[5.384,46.969],[5.384,46.968],[5.385,46.967],[5.385,46.966],[5.385,46.965],[5.385,46.964],[5.385,46.963],[5.384,46.963],[5.383,46.963],[5.38,46.962],[5.379,46.961],[5.377,46.96],[5.373,46.959],[5.372,46.959],[5.372,46.958],[5.371,46.958],[5.371,46.958],[5.369,46.957],[5.369,46.957],[5.367,46.956],[5.366,46.955],[5.365,46.954],[5.364,46.953],[5.364,46.951],[5.364,46.95],[5.365,46.949],[5.365,46.949],[5.365,46.948],[5.365,46.947],[5.366,46.947],[5.366,46.946],[5.366,46.946],[5.365,46.943],[5.365,46.943],[5.367,46.942],[5.368,46.941],[5.369,46.941],[5.369,46.94],[5.368,46.94],[5.367,46.94],[5.366,46.941],[5.365,46.941],[5.364,46.94],[5.364,46.94],[5.364,46.939],[5.363,46.937],[5.363,46.936],[5.362,46.935],[5.361,46.934],[5.359,46.933],[5.358,46.932],[5.357,46.932],[5.357,46.932],[5.355,46.932],[5.354,46.932],[5.353,46.932],[5.353,46.931],[5.351,46.931],[5.348,46.932],[5.346,46.932],[5.344,46.932],[5.34,46.933],[5.336,46.933],[5.333,46.933],[5.33,46.933],[5.327,46.932],[5.322,46.932],[5.321,46.932],[5.319,46.932],[5.317,46.932],[5.317,46.933],[5.317,46.933],[5.315,46.933],[5.312,46.932],[5.309,46.932],[5.307,46.932],[5.306,46.933],[5.306,46.934],[5.306,46.935],[5.305,46.936],[5.305,46.936],[5.306,46.937],[5.304,46.938],[5.304,46.939],[5.303,46.941],[5.302,46.943],[5.302,46.944],[5.301,46.945],[5.301,46.946],[5.3,46.946],[5.299,46.947],[5.299,46.948],[5.297,46.948],[5.295,46.949],[5.294,46.949],[5.29,46.95],[5.289,46.949],[5.288,46.949],[5.287,46.948],[5.286,46.947],[5.285,46.946],[5.284,46.945],[5.283,46.945],[5.281,46.944],[5.28,46.943],[5.279,46.942],[5.277,46.941],[5.276,46.94],[5.274,46.938],[5.272,46.938],[5.272,46.938],[5.271,46.937],[5.27,46.937],[5.269,46.937],[5.268,46.937],[5.268,46.938],[5.267,46.938],[5.267,46.939],[5.264,46.941],[5.263,46.941],[5.261,46.941],[5.261,46.942],[5.26,46.94],[5.26,46.939],[5.259,46.939],[5.259,46.939],[5.258,46.94],[5.257,46.94],[5.255,46.941],[5.254,46.941],[5.253,46.94],[5.251,46.94],[5.25,46.94],[5.248,46.94],[5.247,46.939],[5.246,46.939],[5.245,46.939],[5.243,46.939],[5.242,46.939],[5.24,46.939],[5.239,46.938],[5.238,46.937],[5.237,46.937],[5.236,46.936],[5.236,46.935],[5.237,46.934],[5.237,46.933],[5.236,46.932],[5.235,46.932],[5.234,46.932],[5.233,46.932],[5.232,46.932],[5.231,46.932],[5.23,46.932],[5.229,46.932],[5.228,46.932],[5.227,46.932],[5.227,46.931],[5.226,46.93],[5.224,46.93],[5.222,46.93],[5.22,46.93],[5.219,46.931],[5.218,46.931],[5.216,46.932],[5.214,46.932],[5.212,46.932],[5.211,46.931],[5.21,46.931],[5.21,46.93],[5.209,46.93],[5.209,46.929],[5.209,46.929],[5.21,46.928],[5.209,46.928],[5.209,46.928],[5.208,46.928],[5.208,46.927],[5.208,46.924],[5.207,46.924],[5.207,46.924],[5.206,46.924],[5.205,46.924],[5.204,46.925],[5.203,46.927],[5.203,46.928],[5.201,46.929],[5.2,46.929],[5.199,46.93],[5.198,46.93],[5.198,46.931],[5.198,46.932],[5.196,46.934],[5.195,46.935],[5.193,46.936],[5.193,46.937],[5.191,46.938],[5.191,46.939],[5.191,46.94],[5.191,46.942],[5.192,46.943],[5.193,46.944],[5.193,46.945],[5.192,46.945],[5.192,46.945],[5.191,46.945],[5.189,46.944],[5.188,46.943],[5.187,46.942],[5.187,46.94],[5.186,46.938],[5.185,46.938],[5.184,46.937],[5.183,46.937],[5.182,46.937],[5.181,46.937],[5.18,46.937],[5.179,46.936],[5.177,46.936],[5.175,46.936],[5.173,46.936],[5.172,46.935],[5.171,46.935],[5.17,46.935],[5.168,46.935],[5.166,46.934],[5.164,46.935],[5.162,46.935],[5.159,46.936],[5.158,46.936],[5.157,46.937],[5.156,46.938],[5.156,46.938],[5.156,46.939],[5.156,46.94],[5.157,46.941],[5.157,46.942],[5.156,46.943],[5.156,46.944],[5.155,46.945],[5.154,46.945],[5.154,46.945],[5.151,46.947],[5.15,46.948],[5.149,46.948],[5.149,46.948],[5.149,46.948],[5.149,46.948],[5.148,46.949],[5.146,46.949],[5.145,46.949],[5.144,46.949],[5.144,46.949],[5.145,46.949],[5.145,46.949],[5.145,46.949],[5.144,46.948],[5.143,46.948],[5.142,46.948],[5.141,46.948],[5.139,46.948],[5.137,46.948],[5.135,46.948],[5.134,46.948],[5.132,46.948],[5.131,46.948],[5.13,46.948],[5.129,46.948],[5.127,46.948],[5.125,46.948],[5.124,46.948],[5.122,46.949],[5.121,46.949],[5.12,46.949],[5.119,46.948],[5.118,46.948],[5.117,46.946],[5.116,46.943],[5.115,46.942],[5.114,46.941],[5.112,46.939],[5.111,46.938],[5.109,46.937],[5.107,46.936],[5.104,46.935],[5.102,46.934],[5.101,46.933],[5.1,46.933],[5.099,46.933],[5.096,46.931],[5.094,46.93],[5.093,46.929],[5.092,46.928],[5.091,46.926],[5.09,46.924],[5.09,46.924],[5.09,46.923],[5.09,46.922],[5.088,46.921],[5.088,46.921],[5.088,46.921],[5.088,46.921],[5.087,46.921],[5.087,46.92],[5.086,46.92],[5.085,46.918],[5.085,46.917],[5.085,46.916],[5.086,46.914],[5.086,46.913],[5.086,46.912],[5.084,46.911],[5.083,46.91],[5.081,46.909],[5.079,46.908],[5.077,46.907],[5.076,46.907],[5.074,46.905],[5.072,46.904],[5.07,46.902],[5.069,46.901],[5.068,46.901],[5.067,46.901],[5.066,46.9],[5.065,46.901],[5.064,46.901],[5.063,46.901],[5.062,46.902],[5.061,46.902],[5.059,46.902],[5.058,46.902],[5.057,46.902],[5.055,46.903],[5.053,46.903],[5.05,46.903],[5.048,46.903],[5.044,46.903],[5.041,46.903],[5.039,46.903],[5.038,46.902],[5.036,46.902],[5.035,46.901],[5.033,46.901],[5.031,46.901],[5.03,46.901],[5.029,46.902],[5.028,46.903],[5.028,46.904],[5.028,46.905],[5.027,46.905],[5.027,46.905],[5.026,46.905],[5.025,46.905],[5.024,46.905],[5.023,46.904],[5.022,46.905],[5.021,46.905],[5.02,46.906],[5.019,46.906],[5.017,46.906],[5.015,46.907],[5.012,46.909],[5.012,46.91],[5.011,46.911],[5.01,46.913],[5.009,46.914],[5.007,46.915],[5.006,46.915],[5.004,46.915],[5.003,46.914],[5.002,46.914],[5.001,46.913],[5,46.912],[4.999,46.911],[4.997,46.909],[4.997,46.909],[4.996,46.909],[4.995,46.909],[4.995,46.908],[4.994,46.907],[4.994,46.907],[4.994,46.906],[4.993,46.906],[4.993,46.905],[4.992,46.905],[4.992,46.904],[4.991,46.904],[4.99,46.904],[4.989,46.904],[4.988,46.904],[4.986,46.904],[4.985,46.904],[4.983,46.904],[4.981,46.904],[4.98,46.905],[4.978,46.905],[4.976,46.905],[4.975,46.905],[4.974,46.905],[4.973,46.905],[4.972,46.905],[4.97,46.904],[4.969,46.904],[4.968,46.903],[4.966,46.902],[4.964,46.901],[4.964,46.901],[4.963,46.901],[4.962,46.901],[4.961,46.9],[4.96,46.9],[4.958,46.9],[4.957,46.9],[4.956,46.9],[4.954,46.899],[4.954,46.899],[4.953,46.899],[4.952,46.898],[4.951,46.898],[4.951,46.896],[4.95,46.895],[4.95,46.894],[4.95,46.893],[4.95,46.893],[4.95,46.891],[4.95,46.891],[4.95,46.89],[4.951,46.889],[4.951,46.888],[4.953,46.888],[4.954,46.887],[4.956,46.886],[4.957,46.885],[4.958,46.885],[4.96,46.884],[4.961,46.883],[4.962,46.883],[4.963,46.881],[4.963,46.88],[4.963,46.88],[4.963,46.879],[4.963,46.878],[4.962,46.878],[4.962,46.877],[4.961,46.877],[4.959,46.876],[4.958,46.875],[4.956,46.874],[4.955,46.874],[4.955,46.873],[4.954,46.872],[4.954,46.871],[4.953,46.871],[4.954,46.87],[4.954,46.87],[4.955,46.869],[4.955,46.868],[4.957,46.867],[4.958,46.867],[4.959,46.866],[4.96,46.866],[4.961,46.865],[4.962,46.864],[4.962,46.864],[4.962,46.863],[4.962,46.862],[4.962,46.861],[4.962,46.86],[4.962,46.86],[4.962,46.859],[4.961,46.858],[4.961,46.856],[4.961,46.854],[4.962,46.854],[4.962,46.853],[4.962,46.852],[4.962,46.852],[4.962,46.851],[4.961,46.85],[4.961,46.849],[4.96,46.848],[4.96,46.847],[4.96,46.847],[4.959,46.846],[4.959,46.846],[4.958,46.845],[4.957,46.844],[4.956,46.844],[4.955,46.843],[4.954,46.842],[4.952,46.841],[4.95,46.839],[4.949,46.838],[4.948,46.837],[4.947,46.837],[4.945,46.836],[4.944,46.836],[4.943,46.835],[4.943,46.834],[4.942,46.834],[4.942,46.833],[4.941,46.833],[4.94,46.832],[4.939,46.831],[4.938,46.83],[4.938,46.829],[4.937,46.828],[4.937,46.827],[4.937,46.826],[4.936,46.824],[4.936,46.824],[4.935,46.823],[4.935,46.822],[4.934,46.822],[4.933,46.822],[4.931,46.821],[4.93,46.821],[4.928,46.82],[4.926,46.819],[4.923,46.817],[4.92,46.815],[4.919,46.814],[4.918,46.814],[4.917,46.812],[4.917,46.811],[4.917,46.811],[4.916,46.81],[4.915,46.809],[4.914,46.808],[4.913,46.808],[4.912,46.807],[4.91,46.806],[4.909,46.805],[4.908,46.805],[4.906,46.804],[4.905,46.804],[4.903,46.804],[4.9,46.806],[4.898,46.806],[4.897,46.807],[4.897,46.807],[4.896,46.808],[4.894,46.809],[4.892,46.81],[4.891,46.811],[4.891,46.811],[4.89,46.811],[4.888,46.811],[4.886,46.811],[4.885,46.811],[4.884,46.811],[4.883,46.811],[4.882,46.81],[4.881,46.809],[4.879,46.809],[4.879,46.808],[4.878,46.807],[4.877,46.807],[4.877,46.807],[4.877,46.805],[4.877,46.805],[4.877,46.805],[4.876,46.805],[4.876,46.805],[4.876,46.805],[4.875,46.805],[4.875,46.804],[4.875,46.804],[4.875,46.804],[4.876,46.804],[4.876,46.804],[4.876,46.804],[4.877,46.803],[4.877,46.802],[4.877,46.802],[4.877,46.801],[4.877,46.801],[4.877,46.8],[4.877,46.8],[4.877,46.799],[4.877,46.799],[4.876,46.798],[4.875,46.798],[4.874,46.797],[4.873,46.796],[4.871,46.795],[4.869,46.795],[4.867,46.794],[4.865,46.793],[4.864,46.792],[4.863,46.792],[4.862,46.791],[4.861,46.791],[4.86,46.791],[4.86,46.79],[4.859,46.79],[4.857,46.789],[4.856,46.789],[4.855,46.788],[4.853,46.788],[4.852,46.787],[4.85,46.787],[4.849,46.786],[4.847,46.785],[4.846,46.785],[4.844,46.784],[4.843,46.783],[4.842,46.782],[4.841,46.781],[4.841,46.779],[4.841,46.778],[4.841,46.777],[4.841,46.776],[4.841,46.775],[4.841,46.774],[4.842,46.773],[4.843,46.773],[4.847,46.77],[4.851,46.768],[4.851,46.768],[4.852,46.768],[4.853,46.768],[4.855,46.767],[4.856,46.767],[4.857,46.767],[4.858,46.766],[4.86,46.765],[4.861,46.765],[4.863,46.764],[4.865,46.763],[4.866,46.763],[4.867,46.763],[4.869,46.763],[4.87,46.762],[4.871,46.762],[4.873,46.762],[4.874,46.761],[4.875,46.761],[4.875,46.761],[4.876,46.759],[4.877,46.758],[4.878,46.757],[4.879,46.756],[4.879,46.755],[4.88,46.754],[4.88,46.754],[4.88,46.753],[4.88,46.752],[4.88,46.751],[4.878,46.748],[4.878,46.747],[4.877,46.745],[4.877,46.744],[4.876,46.743],[4.877,46.743],[4.877,46.742],[4.878,46.741],[4.879,46.741],[4.88,46.74],[4.881,46.739],[4.882,46.738],[4.884,46.738],[4.886,46.738],[4.887,46.738],[4.888,46.738],[4.889,46.739],[4.891,46.739],[4.891,46.739],[4.892,46.739],[4.894,46.739],[4.895,46.739],[4.895,46.739],[4.896,46.738],[4.897,46.738],[4.898,46.737],[4.899,46.736],[4.9,46.735],[4.901,46.734],[4.902,46.733],[4.903,46.732],[4.904,46.731],[4.904,46.73],[4.905,46.729],[4.906,46.728],[4.906,46.728],[4.908,46.727],[4.91,46.726],[4.911,46.726],[4.912,46.725],[4.914,46.725],[4.915,46.724],[4.917,46.724],[4.918,46.724],[4.918,46.724],[4.919,46.723],[4.92,46.723],[4.921,46.722],[4.923,46.721],[4.924,46.72],[4.925,46.719],[4.927,46.719],[4.927,46.718],[4.928,46.718],[4.929,46.718],[4.93,46.717],[4.93,46.717],[4.931,46.716],[4.931,46.715],[4.931,46.714],[4.932,46.713],[4.932,46.712],[4.932,46.711],[4.932,46.71],[4.933,46.709],[4.934,46.709],[4.934,46.708],[4.934,46.708],[4.936,46.706],[4.937,46.704],[4.937,46.704],[4.938,46.703],[4.938,46.702],[4.939,46.701],[4.939,46.7],[4.939,46.699],[4.94,46.697],[4.94,46.695],[4.94,46.693],[4.941,46.692],[4.941,46.69],[4.942,46.688],[4.942,46.687],[4.943,46.685],[4.944,46.683],[4.944,46.681],[4.945,46.679],[4.946,46.678],[4.947,46.677],[4.946,46.675],[4.946,46.675],[4.946,46.674],[4.946,46.672],[4.946,46.671],[4.946,46.67],[4.947,46.669],[4.948,46.667],[4.949,46.666],[4.95,46.665],[4.95,46.663],[4.95,46.662],[4.95,46.66],[4.951,46.656],[4.951,46.655],[4.951,46.653],[4.951,46.652],[4.951,46.651],[4.951,46.649],[4.951,46.648],[4.952,46.646],[4.952,46.645],[4.952,46.644],[4.952,46.643],[4.952,46.641],[4.951,46.639],[4.951,46.638],[4.95,46.637],[4.949,46.635],[4.948,46.634],[4.947,46.633],[4.944,46.632],[4.944,46.631],[4.943,46.631],[4.942,46.63],[4.941,46.629],[4.941,46.628],[4.94,46.627],[4.94,46.626],[4.94,46.625],[4.939,46.625],[4.939,46.624],[4.939,46.623],[4.939,46.622],[4.936,46.618],[4.934,46.616],[4.934,46.615],[4.933,46.614],[4.932,46.614],[4.931,46.613],[4.93,46.612],[4.929,46.61],[4.928,46.61],[4.927,46.609],[4.927,46.608],[4.926,46.607],[4.925,46.606],[4.924,46.605],[4.924,46.604],[4.923,46.603],[4.921,46.601],[4.92,46.6],[4.919,46.599],[4.918,46.598],[4.917,46.598],[4.915,46.596],[4.913,46.595],[4.912,46.593],[4.911,46.592],[4.91,46.59],[4.909,46.589],[4.909,46.589],[4.909,46.587],[4.909,46.586],[4.909,46.585],[4.908,46.584],[4.909,46.583],[4.909,46.582],[4.909,46.581],[4.909,46.58],[4.909,46.58],[4.909,46.578],[4.909,46.577],[4.908,46.576],[4.908,46.575],[4.908,46.574],[4.908,46.573],[4.909,46.572],[4.909,46.571],[4.91,46.571],[4.911,46.57],[4.913,46.568],[4.914,46.567],[4.914,46.565],[4.915,46.564],[4.915,46.563],[4.915,46.562],[4.916,46.56],[4.917,46.559],[4.917,46.558],[4.917,46.557],[4.918,46.556],[4.918,46.556],[4.919,46.555],[4.919,46.554],[4.92,46.553],[4.921,46.553],[4.921,46.552],[4.921,46.552],[4.921,46.551],[4.922,46.551],[4.923,46.549],[4.923,46.547],[4.924,46.546],[4.924,46.546],[4.925,46.544],[4.926,46.542],[4.927,46.541],[4.929,46.539],[4.93,46.538],[4.931,46.536],[4.932,46.535],[4.933,46.533],[4.933,46.532],[4.933,46.531],[4.934,46.53],[4.935,46.53],[4.935,46.529],[4.934,46.527],[4.934,46.526],[4.934,46.525],[4.932,46.524],[4.931,46.523],[4.929,46.521],[4.928,46.519],[4.927,46.518],[4.926,46.516],[4.924,46.512],[4.924,46.512],[4.924,46.511],[4.923,46.509],[4.923,46.508],[4.922,46.507],[4.921,46.505],[4.919,46.503],[4.915,46.501],[4.912,46.499],[4.911,46.496],[4.91,46.492],[4.91,46.489],[4.91,46.488],[4.91,46.486],[4.911,46.485],[4.911,46.483],[4.911,46.481],[4.911,46.479],[4.911,46.473],[4.91,46.471],[4.909,46.47],
View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment