Skip to content

Instantly share code, notes, and snippets.

@cuckooland
Last active July 20, 2019 16:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cuckooland/4d10d67c71eb3d108e6b72b4a32d8175 to your computer and use it in GitHub Desktop.
Save cuckooland/4d10d67c71eb3d108e6b72b4a32d8175 to your computer and use it in GitHub Desktop.
'Yoland Bresson' module (RTM) using d3.js
license: gpl-3.0
height: 1040
scrolling: false
border: false

This realization mainly illustrates the interaction of two choropleth maps with two line charts using d3.dispatch.

.Blues .q0-3{fill:rgb(222,235,247)}
.Blues .q1-3{fill:rgb(158,202,225)}
.Blues .q2-3{fill:rgb(49,130,189)}
.Blues .q0-4{fill:rgb(239,243,255)}
.Blues .q1-4{fill:rgb(189,215,231)}
.Blues .q2-4{fill:rgb(107,174,214)}
.Blues .q3-4{fill:rgb(33,113,181)}
.Blues .q0-5{fill:rgb(239,243,255)}
.Blues .q1-5{fill:rgb(189,215,231)}
.Blues .q2-5{fill:rgb(107,174,214)}
.Blues .q3-5{fill:rgb(49,130,189)}
.Blues .q4-5{fill:rgb(8,81,156)}
.Blues .q0-6{fill:rgb(239,243,255)}
.Blues .q1-6{fill:rgb(198,219,239)}
.Blues .q2-6{fill:rgb(158,202,225)}
.Blues .q3-6{fill:rgb(107,174,214)}
.Blues .q4-6{fill:rgb(49,130,189)}
.Blues .q5-6{fill:rgb(8,81,156)}
.Blues .q0-7{fill:rgb(239,243,255)}
.Blues .q1-7{fill:rgb(198,219,239)}
.Blues .q2-7{fill:rgb(158,202,225)}
.Blues .q3-7{fill:rgb(107,174,214)}
.Blues .q4-7{fill:rgb(66,146,198)}
.Blues .q5-7{fill:rgb(33,113,181)}
.Blues .q6-7{fill:rgb(8,69,148)}
.Blues .q0-8{fill:rgb(247,251,255)}
.Blues .q1-8{fill:rgb(222,235,247)}
.Blues .q2-8{fill:rgb(198,219,239)}
.Blues .q3-8{fill:rgb(158,202,225)}
.Blues .q4-8{fill:rgb(107,174,214)}
.Blues .q5-8{fill:rgb(66,146,198)}
.Blues .q6-8{fill:rgb(33,113,181)}
.Blues .q7-8{fill:rgb(8,69,148)}
.Blues .q0-9{fill:rgb(247,251,255)}
.Blues .q1-9{fill:rgb(222,235,247)}
.Blues .q2-9{fill:rgb(198,219,239)}
.Blues .q3-9{fill:rgb(158,202,225)}
.Blues .q4-9{fill:rgb(107,174,214)}
.Blues .q5-9{fill:rgb(66,146,198)}
.Blues .q6-9{fill:rgb(33,113,181)}
.Blues .q7-9{fill:rgb(8,81,156)}
.Blues .q8-9{fill:rgb(8,48,107)}
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Average price per square meter of new housing in France's metropolitan regions</title>
<link rel="stylesheet" href="colorbrewer-Blues.css">
<style>
#section
{
width: 950px;
max-width: 100%;
margin: auto;
}
.box.map {
width: 472px;
height: 386px;
display: inline-block;
vertical-align: middle;
}
.box.chart {
width: 450px;
height: 386px;
display: inline-block;
vertical-align: middle;
}
.area {
stroke: black;
stroke-width: .5px;
}
.area.selected {
stroke-width: 2px;
}
rect.selected {
stroke: black;
stroke-width: .5px;
stroke-dasharray: 4,2,2,2;
}
.line.faded,
.legendItem.faded {
opacity: 0.1;
}
div.tooltip {
position: absolute;
opacity:0.8;
z-index:1000;
text-align:left;
border-radius:4px;
padding:8px;
color:#fff;
background-color:#000;
font: 12px sans-serif;
max-width: 300px;
height: 40px;
pointer-events: none;
}
#svg {
display: block;
margin: auto;
}
.date_player {
margin-bottom: 1em;
}
.dateLabel {
font: 15px "Helvetica Neue";
fill: #000055;
}
.axis path,
.axis line {
fill: none;
stroke: grey;
stroke-width: 1;
shape-rendering: crispEdges;
}
.line {
fill: none;
stroke: steelblue;
stroke-width: 2px;
}
.xLocLine,
.yLocLine {
stroke-width: 0.2;
stroke: #000;
stroke-dasharray: 4,2,2,2;
}
.xDragLine {
stroke-width: 3;
stroke: #777;
cursor: col-resize;
opacity: 0;
}
.xDragLine.dragged {
opacity: 0.1;
}
.legend {
margin-left:40px;
}
.legendItem {
float:left;
margin-right:1em;
font: 0.7em "Helvetica Neue";
cursor: default;
}
</style>
<script src="http://d3js.org/d3.v4.min.js"></script>
</head>
<body>
<div id="section">
<h3>Average price per square meter of new housing in France's metropolitan regions</h3>
<div class="date_player">
<label for="rDateSelect">Date : </label> <select id="rDateSelect" class="region dateSelect"></select>
<input id="rStart" class="start rDateSelect" type="button" value="Play">
</div>
<div>
<div class="refSection">
<label for="rRefSelect1">Reference : </label> <select id="rRefSelect1" class="region refSelect"></select>
</div>
<div id="rMap1" class="box map region rDateSelect rRefSelect1">
</div>
<div id="rChart1" class="box chart region rDateSelect rRefSelect1">
</div>
</div>
<div>
<div class="refSection">
<label for="rRefSelect2">Reference : </label> <select id="rRefSelect2" class="region refSelect"></select>
</div>
<div id="rMap2" class="box map region rDateSelect rRefSelect2">
</div>
<div id="rChart2" class="box chart region rDateSelect rRefSelect2">
</div>
</div>
<br>
<div>
Graphical part of <a href="https://blog.jytou.fr/2019/05/25/my-yolland-bresson-module-part-1/">'Yoland Bresson' module</a>.
</div>
</div>
<script>
var regionsAttribs = {
class: 'region',
scale: 1900,
center: [2.554071, 46.679229],
geojson: 'regions-avant-redecoupage-2015.geojson',
};
var regionsAttribsEn = {
name: 'Region',
csv: 'YolandBresson-Regions-en.csv'
};
var attribsEn = {
PRICE: 'Price',
PRICE_M2: 'Price per m²',
START: 'Start',
STOP: 'Stop'
}
build_YB(Object.assign({}, regionsAttribs, regionsAttribsEn, attribsEn));
function build_YB(config) {
var DATE_DURATION = 750, REF_DURATION = 750;
var DATE_LABEL_CLASS = 'dateLabel', TOOLTIP_CLASS = 'tooltip';
var START_BUTTON_CLASS = 'start';
var DATE_EVENT = 'dateChange', REF_EVENT = 'refChange', AREA_EVENT = 'areaChange';
var parseTime = d3.timeParse("%d/%m/%Y");
var areaFilter = e => (e.CODE.length != 0);
var refFilter = e => (e.CODE.length == 0);
var dateColumnFilter = e => (parseTime(e) != null);
var f = d3.format('.2f');
var dispatch = d3.dispatch(DATE_EVENT, REF_EVENT, AREA_EVENT);
// Append a DIV for the tooltip
var tooltip = d3.select("body").append("div")
.attr("class", TOOLTIP_CLASS)
.style("opacity", 0);
d3.text(config.csv, function (error, text) {
if (error) {
throw error;
}
d3.selectAll('.csvContent.' + config.class).html(text);
});
d3.csv(config.csv, function (rows) {
buildGraphs(rows);
});
function buildGraphs(rows) {
var selectedDateIndex = 0;
var areaRows = rows.filter(areaFilter);
var refRows = rows.filter(refFilter);
var areaDates = d3.keys(areaRows[0]).filter(dateColumnFilter);
initDateSelector()
initStartButton();
buildRefGraphs();
function initDateSelector() {
var dateSelect = d3.select('.dateSelect.' + config.class);
dateSelect.selectAll("option")
.data(areaDates)
.enter().append("option")
.text(function (d) { return d; })
.attr('value', function (d) { return d; });
dateSelect.property('selectedIndex', 0);
dateSelect.on('change', function () {
selectedDateIndex = this.selectedIndex;
dispatch.call(DATE_EVENT, this, config.class);
});
dispatch.on(DATE_EVENT + '.' + config.class, function (areaClass) {
if (areaClass == config.class) {
d3.selectAll('.dateSelect.' + config.class).each(function (d, i) {
d3.select(this).property('selectedIndex', selectedDateIndex);
});
}
});
}
function initStartButton() {
var dateSelect = d3.select('.dateSelect.' + config.class);
var dateSelectId = dateSelect.attr('id');
var startButton = d3.selectAll('.' + START_BUTTON_CLASS + '.' + dateSelectId);
startButton.on("click", function () {
if (startButton.attr('value') == config.STOP) {
startButton.attr('value', config.START);
}
else {
startButton.attr('value', config.STOP);
// Increment date selection index every 750 ms
var interval = d3.interval(function (elapsed) {
var dateCount = d3.selectAll("#" + dateSelectId + ">option").size();
// Increment date selection index or go back to beginning
selectedDateIndex = (selectedDateIndex + 1) % dateCount;
dispatch.call(DATE_EVENT, this, config.class);
// Check if 'Stop' has been clicked
if (startButton.attr('value') == config.START) {
interval.stop();
}
}, DATE_DURATION);
}
});
}
function buildRefGraphs() {
var chartsHeight = 225;
var dateSelect = d3.select('.dateSelect.' + config.class);
var dateSelectId = dateSelect.attr('id');
d3.selectAll('.refSelect.' + config.class).each(function (d, i) {
var selectedRefIndex = i;
var refSelectId = d3.select(this).attr('id');
initReferenceSelector.call(this);
createChoroplethMap();
createLineChart();
function initReferenceSelector() {
d3.select(this).selectAll("option")
.data(refRows)
.enter().append("option")
.text(function (d) { return d.NAME; })
.attr('value', function (d) { return d.NAME; });
d3.select(this).property('selectedIndex', selectedRefIndex);
d3.select(this).on('change', function () {
selectedRefIndex = this.selectedIndex;
dispatch.call(REF_EVENT, this, refSelectId);
});
}
function createChoroplethMap() {
var refMapChart = d3.select('.map.' + config.class + '.' + refSelectId + '.' + dateSelectId);
var mapId = refMapChart.attr('id');
var mapChartWidth = 450, mapChartHeight = 386;
var colorScaleAxisId = mapId + 'ColorScaleAxis';
// Create a path object to manipulate geo data
var path = d3.geoPath();
// Define projection property
var projection = d3.geoConicConformal() // Lambert-93
.center(config.center) // Center on Paris
.scale(config.scale)
.translate([mapChartWidth / 2 - 50, mapChartHeight / 2]);
path.projection(projection); // Assign projection to path object
// Create the DIV that will contain our map
var svg = d3.select('#' + mapId).append("svg")
.attr("width", mapChartWidth)
.attr("height", mapChartHeight)
.attr("class", "Blues");
// Append the group that will contain our paths
var mapGroup = svg.append("g");
// Load GeoJSON data and build paths to append to group
d3.json(config.geojson, function (req, geojson) {
mapGroup.selectAll("path")
.data(geojson.features)
.enter().append("path")
.attr('id', function (d) { return config.class + mapId + d.properties.code; })
.attr("d", path);
// Set colors on map
updateMapColors();
// Initialize date label
svg.append("text")
.attr("class", DATE_LABEL_CLASS + ' ' + config.class)
.attr("text-anchor", "end")
.attr("y", mapChartHeight - 24)
.attr("x", mapChartWidth)
.text(getSelectedDate());
var colorScale = svg.append('g')
.attr('transform', 'translate(385, 30)');
colorScale.selectAll('.colorbar')
.data(d3.range(9))
.enter().append('svg:rect')
.attr('y', function (d) { return d * 25 + 'px'; })
.attr('height', '25px')
.attr('width', '25px')
.attr('x', '0px')
.attr("class", function (d) { return "q" + (8 - d) + "-9"; });
var maxPrice = getMaxPrice();
var legendScale = d3.scaleLinear()
.domain([0, maxPrice])
.range([9 * 25, 0]);
var colorScaleAxis = d3.axisRight(legendScale);
svg.append("g")
.attr("id", colorScaleAxisId)
.attr('transform', 'translate(410, 30)')
.call(colorScaleAxis)
.append("text")
.attr("fill", "#000")
.attr("transform", "rotate(-90)")
.attr("x", -9 * 12.5)
.attr("y", -40)
.attr("dy", "0.71em")
.attr("text-anchor", "middle")
.text(config.PRICE + " (" + getSelectedRef() + ")");
// Refresh prices on date selection
dispatch.on(DATE_EVENT + '.' + mapId, function (areaClass) {
if (areaClass == config.class) {
updateMapColors();
d3.selectAll('.' + DATE_LABEL_CLASS + '.' + areaClass).text(getSelectedDate());
}
});
// Refresh prices on reference selection
dispatch.on(REF_EVENT + '.' + mapId, function (refSelectIdEvent) {
if (refSelectIdEvent == refSelectId) {
setTimeout(function () {
updateMapColors();
}, REF_DURATION);
updateColorScaleAxis();
}
});
// React when area selection changes
dispatch.on(AREA_EVENT + '.' + mapId, function (areaClass, areaCode) {
if (areaClass == config.class) {
svg.select('.area.a' + areaCode).classed('selected', true);
var areaRow = areaRows.filter(r => r.CODE == areaCode)[0];
svg.select('rect.q' + getQuantile()(getPrice(areaRow)) + '-9').classed('selected', true);
}
});
initTooltipCallbacks();
function updateColorScaleAxis() {
// Scale the range of the data again
legendScale.domain([0, getMaxPrice()]);
var t = d3.transition()
.duration(REF_DURATION)
.ease(d3.easeLinear);
// Change the y axis
svg.select('#' + colorScaleAxisId)
.transition(t)
.call(colorScaleAxis);
svg.select("#" + colorScaleAxisId + ">text")
.text(config.PRICE + " (" + getSelectedRef() + ")");
}
function getQuantile() {
var maxPrice = getMaxPrice();
// Build 'quantile' - which maps an input domain to a discrete range, that is 0...max(prices) to 1...9
var quantile = d3.scaleQuantile()
.domain([0, maxPrice])
.range(d3.range(9));
return quantile;
}
function updateMapColors() {
var quantile = getQuantile();
areaRows.forEach(function (areaRow, i) {
d3.select('#' + config.class + mapId + areaRow.CODE)
// Use 'colorbrewer.css' colors through class attribute
.attr("class", "area q" + quantile(getPrice(areaRow)) + "-9 a" + areaRow.CODE);
});
}
function initTooltipCallbacks() {
areaRows.forEach(function (areaRow) {
d3.select('#' + config.class + mapId + areaRow.CODE)
.on("mouseover", function () {
tooltip.transition()
.duration(200)
.style("opacity", .8);
tooltip.html("<b>" + config.name + " : </b>" + areaRow.NAME + "<br>"
+ "<b>" + config.PRICE_M2 + ": </b>" + f(getPrice(areaRow)) + " (" + getSelectedRef() + ")")
.style("left", (d3.event.pageX + 30) + "px")
.style("top", (d3.event.pageY - 30) + "px");
mouseOverArea(config.class, areaRow.CODE);
})
.on("mouseout", function () {
tooltip.transition()
.duration(200)
.style("opacity", 0);
mouseOutArea(config.class, areaRow.CODE);
});
});
}
});
}
function createLineChart() {
var refLineChart = d3.select('.chart.' + config.class + '.' + refSelectId + '.' + dateSelectId);
var chartId = refLineChart.attr('id');
var data = areaRows.map(function (row) {
var entries = d3.entries(row);
return { 'name': row.NAME, 'code': row.CODE, 'values': entries.filter(e => dateColumnFilter(e.key)) };
});
// Set the dimensions of the chart
var margin = { top: 30, right: 20, bottom: 30, left: 50 },
lineChartWidth = 450 - margin.left - margin.right;
// Create the svg that will contain our chart
var lineChart = d3.select('#' + chartId);
var svg = lineChart.append("svg")
.attr("width", lineChartWidth + margin.left + margin.right)
.attr("height", chartsHeight + margin.top + margin.bottom);
var g = svg.append("g").attr("transform", "translate(" + margin.left + "," + margin.top + ")");
// Set the ranges
var x = d3.scaleTime().rangeRound([0, lineChartWidth]);
var y = d3.scaleLinear().rangeRound([chartsHeight, 0]);
var z = d3.scaleOrdinal(d3.schemeCategory20);
// Scale the range of the data
x.domain(d3.extent(data[0].values, function (d) { return parseTime(d.key); }));
y.domain([0, getMaxPrice()]);
z.domain(data.map(function (d) { return d.name; }));
// Define the line
var line = d3.line()
.x(function (d) { return x(parseTime(d.key)); })
.y(function (d) { return y(+d.value / getRefValue(d.key)); });
// Add the X Axis
g.append("g")
.attr("transform", "translate(0," + chartsHeight + ")")
.call(d3.axisBottom(x));
// Add the Y Axis
var yAxis = d3.axisLeft(y);
g.append("g")
.attr("class", "y axis")
.call(yAxis)
.append("text")
.attr("fill", "#000")
.attr("transform", "rotate(-90)")
.attr("y", 6)
.attr("dy", "0.71em")
.attr("text-anchor", "end")
.text(config.PRICE + " (" + getSelectedRef() + ")");
// Add the 'line' for each area.
g.selectAll(".gLine")
.data(data)
.enter().append("g")
.attr("class", "gLine")
.append("path")
.attr("class", function (d) { return "line a" + d.code; })
.attr("d", function (d) { return line(d.values); })
.style("stroke", function (d) { return z(d.name); })
.on("mouseover", function (d) { mouseOverArea(config.class, d.code); })
.on("mouseout", function (d) { mouseOutArea(config.class, d.code); });
g.append('line')
.attr("class", "xLocLine")
.attr("x1", 0)
.attr("y1", 0)
.attr("x2", 0)
.attr("y2", chartsHeight)
.attr("transform", "translate(" + x(parseTime(getSelectedDate())) + ",0)");
var xDates = areaDates.map(d => x(parseTime(d)));
g.append('line')
.attr("class", "xDragLine")
.attr("x1", 0)
.attr("y1", 0)
.attr("x2", 0)
.attr("y2", chartsHeight)
.attr("transform", "translate(" + x(parseTime(getSelectedDate())) + ",0)")
.attr("opacity", 0)
.call(d3.drag()
.on("start", function (d) {
var lineChart = d3.selectAll(".box.chart." + config.class);
lineChart.select('.xDragLine').classed("dragged", true);
lineChart.select('.xLocLine').style("display", "none");
})
.on("drag", function (d) {
var lineChart = d3.selectAll(".box.chart." + config.class);
lineChart.select('.xDragLine').attr("transform", "translate(" + d3.event.x + ",0)");
var newDateIndex = d3.bisect(xDates, d3.event.x);
if (newDateIndex == areaDates.length) {
newDateIndex = areaDates.length - 1;
}
else if (newDateIndex > 0 && (d3.event.x - xDates[newDateIndex - 1]) < (xDates[newDateIndex] - d3.event.x)) {
newDateIndex--;
}
if (selectedDateIndex != newDateIndex) {
selectedDateIndex = newDateIndex;
dispatch.call(DATE_EVENT, this, config.class);
}
})
.on("end", function (d) {
var lineChart = d3.selectAll(".box.chart." + config.class);
lineChart.select('.xDragLine').classed("dragged", false);
lineChart.select('.xLocLine').style("display", null);
dispatch.call(DATE_EVENT, this, config.class);
}));
g.append('line')
.attr("class", "yLocLine")
.attr("x1", 0)
.attr("y1", 0)
.attr("x2", lineChartWidth)
.attr("y2", 0)
.style("display", "none");
// Add the legend
var legend = d3.select('#' + chartId)
.append("div")
.attr("class", "legend")
.selectAll(".legendItem")
.data(data);
legend.enter().append("div")
.attr("class", function (d) { return "legendItem a" + d.code; })
.html(function (d) { return d.name; })
.style("color", function (d) { return z(d.name); })
.on("mouseover", function (d) { mouseOverArea(config.class, d.code); })
.on("mouseout", function (d) { mouseOutArea(config.class, d.code); });
// Refresh lines location
dispatch.on(DATE_EVENT + '.' + chartId, function (areaClass) {
if (areaClass == config.class) {
var xLoc = x(parseTime(getSelectedDate()));
svg.selectAll('.xLocLine').attr("transform", "translate(" + xLoc + ",0)");
svg.selectAll('.xDragLine').filter(d => !d3.select(this).classed("dragged")).attr("transform", "translate(" + xLoc + ",0)");
}
});
// Refresh chart on reference selection
dispatch.on(REF_EVENT + '.' + chartId, function (refSelectIdEvent) {
if (refSelectIdEvent == refSelectId) {
updateChart();
}
});
// React when area selection changes
dispatch.on(AREA_EVENT + '.' + chartId, function (areaClass, areaCode) {
if (areaClass == config.class) {
lineChart.selectAll('.line').classed("faded", true);
lineChart.selectAll('.line.a' + areaCode).classed("faded", false);
lineChart.selectAll('.legendItem').classed("faded", true);
lineChart.selectAll('.legendItem.a' + areaCode).classed("faded", false);
lineChart.selectAll('.yLocLine')
.attr("transform", "translate(0," + y(getPrice(areaRows.filter(r => (r.CODE == areaCode))[0])) + ")")
.style("display", null);
}
});
function updateChart() {
// Scale the range of the data again
y.domain([0, getMaxPrice()]);
var t = d3.transition()
.duration(REF_DURATION)
.ease(d3.easeLinear);
// Change the lines
svg.selectAll(".line")
.transition(t)
.attr("d", function (d) { return line(d.values); });
// Change the y axis
svg.select(".y.axis")
.transition(t)
.call(yAxis);
svg.select(".y.axis>text")
.text(config.PRICE + " (" + getSelectedRef() + ")");
}
}
function getSelectedDate() { return areaDates[selectedDateIndex]; }
function getSelectedRef() { return refRows[selectedRefIndex].NAME; }
function getRefValue(date) { return refRows.find(e => e.NAME == getSelectedRef())[date]; }
function getPrice(areaRow) {
var selectedDate = getSelectedDate();
var refValue = getRefValue(selectedDate);
return +areaRow[selectedDate] / refValue;
}
function getMaxPrice() {
var maxPrice = d3.max(areaRows, function (row) {
var priceEntries = d3.entries(row).filter(e => dateColumnFilter(e.key));
return d3.max(priceEntries, function (e) {
var refValue = getRefValue(e.key);
return e.value / refValue;
});
});
return maxPrice;
}
function mouseOverArea(areaClass, areaCode) {
dispatch.call(AREA_EVENT, this, areaClass, areaCode);
}
function mouseOutArea(areaClass, areaCode) {
var mapChart = d3.selectAll(".box.map." + areaClass);
mapChart.select('.area.a' + areaCode).classed('selected', false);
mapChart.selectAll('rect').classed('selected', false);
var lineChart = d3.selectAll(".box.chart." + areaClass);
lineChart.selectAll('.line').classed('faded', false);
lineChart.selectAll('.legendItem').classed('faded', false);
lineChart.selectAll('.yLocLine').style("display", "none");
}
});
}
}
}
</script>
</body>
</html>
Display the source blob
Display the rendered blob
Raw
{"type":"FeatureCollection","features":[{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[2.590524,49.079655],[2.609132,49.091558],[2.610339,49.094943],[2.614781,49.094094],[2.619365,49.094469],[2.631694,49.105117],[2.633273,49.108376],[2.640674,49.099713],[2.650967,49.100247],[2.676384,49.088872],[2.67832,49.08573],[2.693519,49.073452],[2.691155,49.070622],[2.690023,49.067562],[2.698321,49.064427],[2.703081,49.064736],[2.720824,49.07564],[2.724357,49.080459],[2.733096,49.063359],[2.735013,49.060459],[2.756038,49.061528],[2.760833,49.063004],[2.785275,49.07544],[2.772712,49.081378],[2.768337,49.083258],[2.788214,49.082872],[2.783988,49.088637],[2.787956,49.089166],[2.79173,49.090143],[2.80477,49.095758],[2.809254,49.097536],[2.821258,49.08681],[2.83522,49.083],[2.844946,49.084883],[2.854288,49.073152],[2.856089,49.070034],[2.872029,49.071248],[2.890202,49.078468],[2.895105,49.077052],[2.899159,49.082522],[2.900947,49.085347],[2.923982,49.078287],[2.933807,49.08001],[2.937888,49.077998],[2.944317,49.081814],[2.94583,49.088082],[2.954853,49.085954],[2.967335,49.090652],[2.971429,49.088972],[2.974159,49.077805],[2.974612,49.074838],[2.983235,49.071881],[2.988135,49.072376],[2.989885,49.081566],[2.999206,49.088534],[3.003956,49.088741],[3.012773,49.09062],[3.0305,49.086894],[3.034416,49.08861],[3.061684,49.086469],[3.066076,49.085216],[3.064684,49.088166],[3.056752,49.095777],[3.056321,49.101918],[3.069347,49.114849],[3.071884,49.117554],[3.079808,49.112901],[3.115282,49.106884],[3.121614,49.109081],[3.124129,49.107235],[3.138602,49.106401],[3.145738,49.101771],[3.160231,49.099289],[3.16523,49.09966],[3.155087,49.082428],[3.158681,49.080409],[3.167882,49.076899],[3.180064,49.065489],[3.181708,49.062169],[3.180866,49.056146],[3.190667,49.049972],[3.190614,49.046717],[3.181112,49.044277],[3.176541,49.031407],[3.163424,49.026256],[3.163008,49.019944],[3.171569,49.012496],[3.198993,49.00579],[3.208947,48.99671],[3.209318,48.993786],[3.223297,48.990452],[3.224841,48.987329],[3.229177,48.988418],[3.231216,48.976751],[3.245993,48.976065],[3.254925,48.964635],[3.255523,48.961316],[3.259065,48.951264],[3.262904,48.948935],[3.261229,48.947104],[3.259827,48.945174],[3.265161,48.939065],[3.26948,48.937455],[3.283772,48.940165],[3.300969,48.946652],[3.30475,48.948773],[3.31222,48.935418],[3.312797,48.924778],[3.313076,48.921216],[3.317005,48.91885],[3.330199,48.90796],[3.361726,48.91956],[3.367427,48.928805],[3.37561,48.90922],[3.369828,48.896144],[3.382479,48.885942],[3.38328,48.872495],[3.387958,48.870969],[3.400635,48.876027],[3.405856,48.875883],[3.401029,48.868723],[3.398898,48.866419],[3.408514,48.863706],[3.423063,48.867568],[3.433142,48.860013],[3.448478,48.858725],[3.452232,48.8563],[3.44578,48.846099],[3.445361,48.843232],[3.459253,48.841066],[3.461955,48.838474],[3.470198,48.850547],[3.480156,48.851605],[3.485187,48.851908],[3.486806,48.848601],[3.491285,48.835138],[3.485241,48.825503],[3.487202,48.815189],[3.483786,48.813952],[3.480923,48.812192],[3.477905,48.814174],[3.474847,48.819375],[3.470215,48.820698],[3.449507,48.812081],[3.434609,48.812028],[3.420847,48.816025],[3.416612,48.81783],[3.407443,48.806952],[3.421146,48.802489],[3.440934,48.801518],[3.442604,48.788138],[3.442195,48.784848],[3.428538,48.780823],[3.414979,48.78374],[3.409984,48.783721],[3.397144,48.761442],[3.399831,48.755326],[3.40936,48.752784],[3.432915,48.755552],[3.436595,48.753182],[3.437315,48.749861],[3.43681,48.743207],[3.442735,48.737806],[3.467396,48.73863],[3.467051,48.732092],[3.46675,48.728774],[3.466954,48.725806],[3.467159,48.722846],[3.464601,48.707277],[3.47762,48.69833],[3.472543,48.69737],[3.470957,48.68723],[3.456628,48.682869],[3.442698,48.672506],[3.446181,48.666898],[3.442561,48.664357],[3.458809,48.65128],[3.451091,48.634651],[3.476594,48.637961],[3.492289,48.647243],[3.512619,48.643982],[3.528071,48.645758],[3.533236,48.646509],[3.522656,48.63909],[3.521163,48.633699],[3.540941,48.630193],[3.555754,48.620689],[3.556545,48.617312],[3.508636,48.605598],[3.505274,48.602986],[3.515219,48.590989],[3.496646,48.589925],[3.485304,48.580464],[3.480668,48.579133],[3.469023,48.573054],[3.465516,48.570486],[3.483775,48.54706],[3.480919,48.541431],[3.47562,48.541282],[3.450707,48.528668],[3.445941,48.528794],[3.41464,48.533792],[3.408474,48.529945],[3.405398,48.528021],[3.422267,48.515413],[3.434924,48.497052],[3.433434,48.490391],[3.424335,48.491539],[3.407523,48.487793],[3.403747,48.485989],[3.387681,48.480159],[3.384094,48.478029],[3.39732,48.468171],[3.39689,48.461488],[3.405714,48.45329],[3.400909,48.436878],[3.39673,48.434886],[3.392493,48.425157],[3.407194,48.422678],[3.411833,48.421322],[3.411362,48.41804],[3.402286,48.415408],[3.416642,48.415835],[3.421938,48.412236],[3.420872,48.409019],[3.414792,48.390273],[3.409931,48.390542],[3.400207,48.390881],[3.385095,48.398713],[3.375408,48.39869],[3.374142,48.395491],[3.366319,48.391485],[3.361191,48.372572],[3.356091,48.37516],[3.356559,48.378452],[3.351685,48.378619],[3.346315,48.373246],[3.336538,48.373184],[3.330117,48.372123],[3.325478,48.373089],[3.311856,48.376023],[3.31069,48.372913],[3.306018,48.372889],[3.283175,48.381385],[3.281618,48.378159],[3.272179,48.378325],[3.267473,48.37713],[3.259611,48.368591],[3.251021,48.365101],[3.246859,48.367287],[3.226483,48.370243],[3.222216,48.370008],[3.214496,48.367593],[3.211304,48.366267],[3.20445,48.364201],[3.199658,48.364461],[3.193763,48.369392],[3.184941,48.368129],[3.183373,48.37146],[3.171808,48.377676],[3.170015,48.374701],[3.14485,48.367303],[3.139869,48.372599],[3.135759,48.370885],[3.122467,48.368632],[3.118385,48.366684],[3.103418,48.349514],[3.099602,48.351605],[3.101066,48.354788],[3.080611,48.360832],[3.066702,48.357719],[3.062057,48.357442],[3.049451,48.36003],[3.046276,48.357315],[3.036773,48.337786],[3.04226,48.332188],[3.040571,48.328931],[3.015685,48.307317],[3.0171,48.304537],[3.027469,48.300639],[3.020051,48.296376],[3.026761,48.288016],[3.029739,48.285424],[3.026961,48.282464],[3.02476,48.275645],[3.029261,48.274204],[3.043708,48.271842],[3.04757,48.249698],[3.032696,48.24874],[3.012819,48.222102],[3.00599,48.209425],[2.997119,48.206347],[2.988961,48.209019],[2.984587,48.207453],[2.971666,48.203411],[2.970958,48.194188],[2.955416,48.192518],[2.951461,48.190492],[2.934749,48.178823],[2.934241,48.175727],[2.936314,48.163392],[2.931137,48.162813],[2.900047,48.159434],[2.895207,48.158953],[2.870991,48.156473],[2.866823,48.156036],[2.864438,48.152902],[2.838308,48.135908],[2.823316,48.132782],[2.82088,48.129664],[2.816334,48.130431],[2.802391,48.131462],[2.799465,48.137396],[2.797907,48.140551],[2.800412,48.153612],[2.810418,48.160818],[2.810918,48.164067],[2.798959,48.168025],[2.79024,48.165301],[2.780977,48.167363],[2.77668,48.165726],[2.754682,48.16139],[2.736406,48.166309],[2.738384,48.163416],[2.754255,48.151905],[2.755198,48.145653],[2.750335,48.144869],[2.722461,48.137411],[2.706547,48.124819],[2.675484,48.12517],[2.66757,48.120667],[2.664748,48.120542],[2.661585,48.123439],[2.639666,48.13895],[2.634454,48.138331],[2.599014,48.131602],[2.577868,48.131781],[2.570563,48.140816],[2.565815,48.141086],[2.537505,48.14052],[2.534395,48.13806],[2.521724,48.128417],[2.52221,48.125215],[2.517284,48.125897],[2.477562,48.129102],[2.458954,48.125608],[2.455859,48.123389],[2.442692,48.125487],[2.444256,48.13147],[2.461097,48.138207],[2.474045,48.15161],[2.47185,48.154597],[2.480872,48.16161],[2.483238,48.164518],[2.502032,48.158444],[2.506327,48.156438],[2.514911,48.164842],[2.508843,48.180923],[2.515406,48.193008],[2.520296,48.193919],[2.523011,48.198762],[2.519932,48.201377],[2.517404,48.214378],[2.514119,48.214382],[2.51535,48.22693],[2.507345,48.228985],[2.506192,48.238536],[2.501745,48.238706],[2.484178,48.238973],[2.480612,48.241386],[2.476787,48.250826],[2.46909,48.255282],[2.465405,48.253259],[2.4518,48.250425],[2.444509,48.254485],[2.440144,48.253205],[2.435639,48.254848],[2.421716,48.263877],[2.420109,48.266704],[2.418346,48.279895],[2.423098,48.292776],[2.420762,48.299251],[2.417749,48.302206],[2.402664,48.320719],[2.398936,48.315257],[2.369945,48.308673],[2.355802,48.310433],[2.340362,48.318796],[2.32931,48.332833],[2.326154,48.330638],[2.317182,48.331567],[2.312424,48.330118],[2.300208,48.311242],[2.296706,48.308855],[2.269118,48.315049],[2.265536,48.312669],[2.254851,48.301418],[2.2501,48.299751],[2.245157,48.298397],[2.245229,48.301852],[2.248218,48.315422],[2.238047,48.316373],[2.239599,48.319128],[2.24631,48.329968],[2.231822,48.329766],[2.21469,48.336672],[2.20709,48.344944],[2.182947,48.323825],[2.181484,48.313791],[2.177842,48.312929],[2.170835,48.31504],[2.166995,48.313033],[2.152668,48.314821],[2.153878,48.308406],[2.155435,48.305456],[2.16239,48.301511],[2.161589,48.298437],[2.141159,48.29928],[2.1106,48.296949],[2.111702,48.300367],[2.113717,48.307248],[2.108709,48.307462],[2.099895,48.304714],[2.087542,48.294506],[2.052708,48.295474],[2.051468,48.290209],[2.043236,48.286166],[2.028994,48.288632],[2.009276,48.285319],[1.994085,48.286586],[1.989021,48.286984],[1.978957,48.287995],[1.975456,48.29402],[1.966219,48.296774],[1.961905,48.302846],[1.959227,48.30869],[1.977212,48.314011],[1.975601,48.323319],[1.982344,48.328317],[1.97062,48.339994],[1.975622,48.356881],[1.987356,48.363811],[1.983903,48.366445],[1.977025,48.379189],[1.966722,48.380422],[1.968537,48.383623],[1.977244,48.399165],[1.974978,48.401737],[1.962226,48.404325],[1.957737,48.40515],[1.930424,48.403953],[1.925893,48.412747],[1.939016,48.42216],[1.937301,48.435442],[1.942895,48.440998],[1.93833,48.441398],[1.932512,48.445548],[1.930628,48.453718],[1.928572,48.455733],[1.922149,48.4576],[1.919886,48.447935],[1.91015,48.445929],[1.90452,48.440263],[1.884121,48.44001],[1.879442,48.440668],[1.874392,48.440287],[1.861091,48.444461],[1.857023,48.446212],[1.847344,48.446632],[1.839126,48.458032],[1.837137,48.461144],[1.833171,48.46734],[1.808028,48.465758],[1.803139,48.466582],[1.793066,48.481631],[1.796336,48.484192],[1.793193,48.486698],[1.78664,48.491471],[1.789428,48.494442],[1.776842,48.512874],[1.776301,48.526813],[1.787245,48.553745],[1.782719,48.553168],[1.778178,48.552626],[1.776034,48.555654],[1.764943,48.562206],[1.761507,48.571661],[1.748456,48.576032],[1.744584,48.574102],[1.726923,48.572844],[1.709253,48.578024],[1.706156,48.583173],[1.701989,48.584999],[1.704474,48.588165],[1.717849,48.607392],[1.717432,48.610572],[1.709778,48.613386],[1.691234,48.613301],[1.687762,48.611094],[1.685197,48.613279],[1.690247,48.616951],[1.681592,48.619051],[1.666354,48.613708],[1.663558,48.616412],[1.657429,48.621561],[1.656909,48.628095],[1.649567,48.632276],[1.651575,48.638129],[1.647055,48.639679],[1.640838,48.644889],[1.643197,48.651294],[1.622748,48.650322],[1.607566,48.659618],[1.602707,48.663097],[1.601707,48.666441],[1.606204,48.679124],[1.608626,48.682058],[1.611295,48.688458],[1.606656,48.689196],[1.582189,48.696059],[1.584038,48.699023],[1.580727,48.701349],[1.594878,48.709316],[1.590011,48.712875],[1.61504,48.735306],[1.620258,48.736006],[1.622705,48.740154],[1.62496,48.749031],[1.605226,48.760586],[1.584907,48.763298],[1.582928,48.767556],[1.587594,48.773611],[1.576732,48.785167],[1.579434,48.808902],[1.582798,48.81092],[1.590483,48.817335],[1.581793,48.829825],[1.594496,48.835696],[1.594894,48.839136],[1.586621,48.843203],[1.58207,48.844211],[1.577269,48.844361],[1.577939,48.84776],[1.582962,48.857498],[1.572072,48.863925],[1.568638,48.865845],[1.559904,48.867125],[1.558839,48.864252],[1.554899,48.865734],[1.546231,48.872438],[1.561309,48.887839],[1.563742,48.890629],[1.558716,48.891369],[1.538521,48.906685],[1.544341,48.910794],[1.541664,48.915754],[1.540523,48.918483],[1.538249,48.921693],[1.522955,48.924887],[1.513925,48.921808],[1.508132,48.92724],[1.511543,48.933506],[1.501797,48.941057],[1.501524,48.941054],[1.508641,48.950442],[1.510996,48.953574],[1.501028,48.953504],[1.495147,48.966076],[1.514626,48.976113],[1.518388,48.978363],[1.513493,48.978501],[1.507903,48.983773],[1.493875,48.979353],[1.47826,48.979246],[1.470889,48.974817],[1.468862,48.977768],[1.461702,48.988865],[1.470984,48.991115],[1.48017,49.00224],[1.480401,49.005562],[1.478136,49.008231],[1.474046,49.00969],[1.477096,49.014801],[1.471842,49.018629],[1.468018,49.020307],[1.457762,49.0263],[1.457511,49.029696],[1.456846,49.036433],[1.448209,49.044847],[1.451258,49.051335],[1.44728,49.053514],[1.461614,49.063375],[1.47664,49.053629],[1.486848,49.051762],[1.498032,49.058656],[1.503301,49.059099],[1.51315,49.077873],[1.510269,49.084285],[1.516637,49.079922],[1.519955,49.071113],[1.520998,49.068132],[1.541304,49.073182],[1.546672,49.072591],[1.560832,49.070396],[1.569242,49.074129],[1.572262,49.076809],[1.589843,49.081684],[1.594359,49.082753],[1.599088,49.084067],[1.605928,49.080694],[1.608796,49.077894],[1.619512,49.084178],[1.623322,49.086083],[1.620143,49.096981],[1.627035,49.105127],[1.646559,49.121642],[1.648114,49.125032],[1.652877,49.128943],[1.655991,49.130389],[1.653229,49.141761],[1.662683,49.152504],[1.664304,49.153951],[1.661447,49.156806],[1.669326,49.169239],[1.666334,49.175725],[1.671825,49.180893],[1.670339,49.189608],[1.671348,49.193044],[1.676462,49.202848],[1.673207,49.205626],[1.676291,49.212188],[1.702869,49.22885],[1.704364,49.232202],[1.710812,49.237378],[1.736324,49.225573],[1.740453,49.22344],[1.735795,49.221944],[1.73398,49.211989],[1.715608,49.206238],[1.715583,49.202848],[1.72571,49.197273],[1.725913,49.194012],[1.73895,49.192189],[1.742878,49.182986],[1.742695,49.179801],[1.756131,49.174879],[1.773149,49.182471],[1.776379,49.185094],[1.776924,49.185225],[1.789302,49.181493],[1.793582,49.180277],[1.794378,49.183189],[1.797776,49.185147],[1.816999,49.17587],[1.831251,49.17698],[1.83664,49.171547],[1.834069,49.16512],[1.838268,49.166186],[1.849074,49.170489],[1.869788,49.172654],[1.874497,49.17429],[1.876765,49.175309],[1.882617,49.16594],[1.882568,49.162496],[1.933925,49.173347],[1.937433,49.170761],[1.958097,49.172866],[1.962698,49.174605],[1.971263,49.181107],[1.974086,49.183316],[1.990193,49.176763],[1.999445,49.175573],[2.018235,49.186355],[2.021784,49.188676],[2.035163,49.189908],[2.038236,49.192135],[2.038368,49.192406],[2.050488,49.198778],[2.069874,49.203344],[2.076699,49.20844],[2.08089,49.21045],[2.080769,49.207203],[2.09024,49.20545],[2.093329,49.19285],[2.095875,49.190064],[2.11591,49.187992],[2.13028,49.190749],[2.139762,49.18313],[2.143261,49.185547],[2.153026,49.183925],[2.157181,49.182282],[2.163401,49.177623],[2.157738,49.172513],[2.161839,49.168235],[2.16393,49.1661],[2.172135,49.166607],[2.178986,49.173819],[2.176584,49.176545],[2.183442,49.173823],[2.187374,49.173229],[2.207218,49.17489],[2.215478,49.178234],[2.220277,49.179201],[2.234054,49.165695],[2.219639,49.156917],[2.21636,49.154378],[2.225833,49.151598],[2.241583,49.151573],[2.259401,49.155442],[2.262132,49.158102],[2.266531,49.156295],[2.281365,49.159126],[2.286413,49.159921],[2.28887,49.169681],[2.299925,49.180589],[2.301197,49.183887],[2.306913,49.185179],[2.310593,49.184876],[2.317953,49.185233],[2.321777,49.184436],[2.354227,49.150485],[2.358039,49.14815],[2.369839,49.157176],[2.3732,49.159253],[2.394792,49.149815],[2.410447,49.152077],[2.440903,49.145803],[2.439898,49.14365],[2.438907,49.141496],[2.436577,49.136459],[2.435399,49.133945],[2.458813,49.139483],[2.461309,49.136609],[2.473884,49.132987],[2.477603,49.13107],[2.477004,49.127974],[2.494845,49.12351],[2.499227,49.12227],[2.501596,49.119483],[2.489931,49.106361],[2.526067,49.100889],[2.531063,49.099596],[2.532668,49.115931],[2.537924,49.121031],[2.542654,49.122065],[2.542285,49.118854],[2.554091,49.11754],[2.559479,49.097618],[2.576746,49.092429],[2.580161,49.083261],[2.582606,49.080482],[2.586578,49.080127],[2.590524,49.079655]]]},"properties":{"nom":"\u00cele-de-France","code":"11"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[4.047973,49.405642],[4.04913,49.409012],[4.04326,49.424605],[4.0394,49.435443],[4.037579,49.438083],[4.047178,49.445173],[4.056813,49.445737],[4.06141,49.44673],[4.066154,49.445448],[4.042112,49.470727],[4.041379,49.477403],[4.041419,49.480755],[4.041527,49.484044],[4.040928,49.492651],[4.040766,49.495519],[4.040423,49.505176],[4.04086,49.508381],[4.056108,49.508824],[4.060243,49.521254],[4.074145,49.518588],[4.075097,49.521852],[4.075648,49.53896],[4.067545,49.543139],[4.051908,49.545073],[4.050439,49.551593],[4.059686,49.554496],[4.07677,49.570721],[4.062671,49.574593],[4.060391,49.587978],[4.064445,49.594161],[4.060605,49.59637],[4.047558,49.600653],[4.031525,49.614109],[4.026316,49.619905],[4.038598,49.625265],[4.042341,49.637913],[4.047514,49.637806],[4.050555,49.634931],[4.071483,49.635943],[4.095983,49.629173],[4.110419,49.632646],[4.11569,49.633263],[4.11724,49.641526],[4.124871,49.650613],[4.122702,49.660923],[4.126474,49.678205],[4.146699,49.677854],[4.146816,49.689266],[4.151058,49.690646],[4.160116,49.693049],[4.164831,49.693894],[4.179917,49.698062],[4.185269,49.698872],[4.184381,49.701227],[4.192459,49.712542],[4.191381,49.715644],[4.202292,49.720515],[4.205171,49.722706],[4.220371,49.725988],[4.225406,49.727276],[4.227618,49.731073],[4.226128,49.734242],[4.230539,49.74703],[4.246879,49.755742],[4.242039,49.765469],[4.224503,49.772943],[4.214263,49.771176],[4.212018,49.774218],[4.206332,49.77962],[4.209942,49.782047],[4.224917,49.790218],[4.227042,49.793189],[4.219523,49.804999],[4.214774,49.806115],[4.225337,49.834978],[4.23017,49.836088],[4.233752,49.848631],[4.246034,49.854257],[4.249004,49.856958],[4.249554,49.860106],[4.250089,49.863245],[4.251798,49.890397],[4.255734,49.903977],[4.24633,49.902258],[4.236936,49.903782],[4.233643,49.909116],[4.222142,49.910427],[4.217774,49.916256],[4.220206,49.933589],[4.232061,49.952462],[4.232132,49.955956],[4.233068,49.957824],[4.258202,49.963991],[4.290489,49.964158],[4.310615,49.968571],[4.319254,49.964391],[4.335185,49.962744],[4.346405,49.955165],[4.349362,49.952231],[4.380829,49.953721],[4.393818,49.948534],[4.399174,49.948401],[4.419211,49.946445],[4.442353,49.939661],[4.445804,49.937168],[4.479779,49.947129],[4.506043,49.947312],[4.511319,49.946807],[4.524166,49.951319],[4.540829,49.968234],[4.566154,49.971462],[4.57019,49.973629],[4.574077,49.978592],[4.576036,49.981119],[4.595972,49.985963],[4.633238,49.987466],[4.668017,49.99635],[4.689349,49.995788],[4.694599,49.996497],[4.687522,50.001617],[4.685948,50.008377],[4.688542,50.011369],[4.686633,50.027782],[4.690633,50.033997],[4.698735,50.052742],[4.697028,50.059288],[4.686844,50.057703],[4.681884,50.067626],[4.700055,50.092646],[4.708046,50.096487],[4.713412,50.097005],[4.715218,50.100043],[4.746798,50.110315],[4.751346,50.111741],[4.751018,50.121277],[4.755962,50.121637],[4.765173,50.137396],[4.77468,50.140286],[4.779678,50.141336],[4.802541,50.151064],[4.822807,50.167643],[4.831696,50.155106],[4.874876,50.153386],[4.881309,50.143999],[4.889952,50.140372],[4.895353,50.139768],[4.895656,50.136278],[4.870796,50.123112],[4.872435,50.092167],[4.863495,50.091701],[4.859797,50.09827],[4.850133,50.100177],[4.840234,50.092932],[4.845305,50.083783],[4.840481,50.082795],[4.839155,50.069708],[4.825639,50.06646],[4.820781,50.065266],[4.819235,50.060662],[4.828004,50.056929],[4.828101,50.049929],[4.837236,50.046343],[4.840269,50.039964],[4.822588,50.026922],[4.820603,50.023655],[4.815688,49.992624],[4.805954,49.984196],[4.795587,49.982219],[4.790553,49.961898],[4.790917,49.958398],[4.809008,49.954475],[4.813847,49.954268],[4.849231,49.946541],[4.858426,49.933706],[4.878692,49.921922],[4.885178,49.912163],[4.885605,49.908652],[4.882877,49.89845],[4.861937,49.869782],[4.851545,49.862707],[4.852398,49.852108],[4.855107,49.849021],[4.858624,49.842551],[4.867279,49.839085],[4.873641,49.818974],[4.865474,49.810212],[4.855102,49.794571],[4.857954,49.791697],[4.861739,49.789276],[4.874959,49.793198],[4.883825,49.790428],[4.887263,49.788047],[4.897637,49.78892],[4.906258,49.785604],[4.926346,49.787508],[4.931438,49.786709],[4.939628,49.792564],[4.942985,49.790677],[4.946674,49.797143],[4.955675,49.80054],[4.991472,49.800221],[5.001782,49.793672],[5.010732,49.781562],[5.014912,49.779507],[5.041812,49.77053],[5.046834,49.770141],[5.069026,49.761632],[5.089717,49.764793],[5.096602,49.759785],[5.122393,49.729993],[5.124874,49.726947],[5.123263,49.720549],[5.123073,49.717307],[5.130784,49.713047],[5.141008,49.712247],[5.143643,49.709307],[5.151701,49.717668],[5.160857,49.715186],[5.165421,49.709362],[5.16475,49.696115],[5.166208,49.692916],[5.194929,49.693148],[5.19966,49.692316],[5.208661,49.694436],[5.215667,49.689176],[5.23114,49.690359],[5.246232,49.686944],[5.268384,49.695954],[5.280511,49.689138],[5.281175,49.685691],[5.282209,49.685573],[5.286558,49.681824],[5.31556,49.666299],[5.319152,49.663668],[5.332622,49.653504],[5.320584,49.647262],[5.307345,49.63304],[5.304913,49.630057],[5.311374,49.614354],[5.314977,49.612029],[5.321965,49.614188],[5.340104,49.618129],[5.346857,49.630845],[5.388626,49.618308],[5.393537,49.617088],[5.389677,49.615617],[5.381689,49.605705],[5.379728,49.595629],[5.37203,49.592166],[5.361514,49.592056],[5.357528,49.589886],[5.347645,49.5897],[5.339981,49.59419],[5.312228,49.565143],[5.308171,49.562847],[5.31177,49.55929],[5.307404,49.557781],[5.284348,49.552419],[5.277031,49.544159],[5.271867,49.54457],[5.26271,49.54182],[5.259298,49.544356],[5.251771,49.556714],[5.247139,49.557618],[5.234681,49.562235],[5.234775,49.565668],[5.214137,49.573013],[5.201334,49.56814],[5.196319,49.567547],[5.186928,49.569695],[5.177683,49.567155],[5.168633,49.563658],[5.159887,49.566691],[5.160299,49.569569],[5.152895,49.576623],[5.152668,49.580106],[5.145609,49.589194],[5.119715,49.592678],[5.115037,49.590926],[5.106024,49.578524],[5.113352,49.562098],[5.112148,49.559701],[5.108388,49.555298],[5.104178,49.55609],[5.09608,49.557786],[5.095677,49.554358],[5.090175,49.544789],[5.090506,49.537996],[5.097719,49.533646],[5.089874,49.521087],[5.085535,49.520335],[5.084962,49.517108],[5.077415,49.508733],[5.062563,49.507449],[5.059872,49.504708],[5.059979,49.50119],[5.074537,49.486683],[5.079907,49.486366],[5.084529,49.48056],[5.083,49.473807],[5.082957,49.470364],[5.095809,49.460397],[5.100672,49.461265],[5.102876,49.460175],[5.10986,49.45625],[5.100887,49.440834],[5.106154,49.427696],[5.107781,49.424674],[5.115029,49.420582],[5.109334,49.415475],[5.099317,49.413842],[5.084472,49.404586],[5.088653,49.398615],[5.10415,49.389778],[5.100617,49.380497],[5.088622,49.369627],[5.08389,49.370428],[5.060209,49.371517],[5.054072,49.36611],[5.055816,49.359435],[5.027099,49.335615],[5.028499,49.332354],[5.029392,49.326036],[5.032377,49.323927],[5.038152,49.316204],[5.030794,49.308172],[5.041741,49.296693],[5.051473,49.294217],[5.056637,49.293365],[5.059407,49.289747],[5.05546,49.28798],[5.049709,49.283366],[5.051181,49.274052],[5.036007,49.271224],[5.025812,49.273042],[5.011029,49.269287],[5.006624,49.26767],[4.998664,49.263657],[4.9999,49.260453],[4.996246,49.257977],[4.968033,49.248792],[4.960253,49.239962],[4.950989,49.236866],[4.970838,49.235536],[4.975569,49.222788],[4.977581,49.219751],[4.988955,49.213484],[4.991859,49.210838],[4.990533,49.207415],[4.978532,49.200454],[4.953973,49.194083],[4.942378,49.186771],[4.941676,49.183805],[4.952939,49.171051],[4.954392,49.168122],[4.964624,49.154412],[4.965324,49.15119],[4.974853,49.132849],[4.978523,49.128453],[4.98064,49.126485],[4.984722,49.122496],[4.987983,49.119636],[4.996343,49.106502],[4.997767,49.092276],[4.996638,49.088913],[5.003861,49.065678],[5.005744,49.059872],[5.000361,49.050536],[4.968234,49.024281],[4.965432,49.02144],[4.966715,49.021005],[5.01001,49.034688],[5.032916,49.025739],[5.035267,49.02256],[5.035641,49.020575],[5.037505,49.010568],[5.031576,49.001287],[5.03062,48.994998],[5.009278,48.993135],[4.995417,48.982465],[5.000441,48.983398],[5.029939,48.978638],[5.037757,48.974125],[5.030943,48.954325],[5.027718,48.952194],[5.014132,48.945586],[5.014887,48.942515],[5.012848,48.936747],[4.996952,48.93704],[4.97332,48.928868],[4.957261,48.928034],[4.954079,48.930911],[4.949578,48.9303],[4.936209,48.922142],[4.932159,48.912682],[4.917043,48.903209],[4.915801,48.899847],[4.913592,48.897678],[4.920098,48.89466],[4.923063,48.888495],[4.916497,48.875413],[4.913098,48.872733],[4.912256,48.869463],[4.923236,48.862891],[4.928577,48.851029],[4.937384,48.848107],[4.935493,48.8405],[4.930968,48.839404],[4.902918,48.827745],[4.90027,48.824629],[4.888761,48.81721],[4.890378,48.814107],[4.896351,48.809029],[4.89003,48.800358],[4.892929,48.797694],[4.893365,48.796958],[4.898034,48.796138],[4.920462,48.790984],[4.924802,48.792381],[4.934376,48.790589],[4.935478,48.784318],[4.949258,48.770537],[4.953825,48.768195],[4.978949,48.751704],[4.980624,48.7485],[4.981359,48.745636],[4.989575,48.742044],[5.00922,48.741392],[5.006168,48.721442],[5.016002,48.709517],[5.012702,48.707153],[4.999273,48.710392],[5.006402,48.698855],[5.003295,48.696172],[4.990665,48.690724],[4.988428,48.684428],[5.003256,48.682038],[5.007434,48.680069],[5.008261,48.670482],[5.011053,48.667835],[4.996128,48.660473],[4.992812,48.658271],[4.993755,48.655223],[4.994686,48.646164],[5.004196,48.634604],[4.996262,48.618793],[5.006401,48.611389],[5.033402,48.613765],[5.051809,48.632966],[5.056671,48.632333],[5.05939,48.61519],[5.068597,48.599193],[5.070286,48.595925],[5.094681,48.592969],[5.114686,48.594577],[5.119453,48.595716],[5.117875,48.58689],[5.123434,48.582138],[5.127067,48.580103],[5.131277,48.572586],[5.134455,48.570693],[5.140569,48.565697],[5.143528,48.563133],[5.152213,48.560339],[5.160367,48.564133],[5.165068,48.565343],[5.172768,48.557149],[5.192655,48.548397],[5.197028,48.546678],[5.194712,48.540557],[5.207077,48.537475],[5.211558,48.531911],[5.212253,48.528793],[5.217139,48.527712],[5.221951,48.52648],[5.229125,48.530773],[5.272637,48.514317],[5.287443,48.513709],[5.289147,48.510526],[5.292344,48.509312],[5.295728,48.508329],[5.302655,48.513091],[5.30559,48.515761],[5.317018,48.508906],[5.327505,48.508998],[5.346954,48.485053],[5.34947,48.481989],[5.363594,48.477271],[5.368678,48.476252],[5.369382,48.476553],[5.377321,48.471912],[5.398074,48.473187],[5.40115,48.470299],[5.403623,48.467854],[5.406055,48.465393],[5.403949,48.455175],[5.409502,48.44554],[5.429225,48.434409],[5.439576,48.434197],[5.444199,48.428035],[5.44593,48.42484],[5.455491,48.422519],[5.464657,48.425353],[5.468366,48.423682],[5.470062,48.420929],[5.465177,48.419995],[5.447148,48.414986],[5.409779,48.39262],[5.397763,48.392593],[5.393838,48.391566],[5.408839,48.383026],[5.438413,48.380864],[5.442884,48.379386],[5.421257,48.363349],[5.418555,48.360694],[5.42237,48.35175],[5.417157,48.342622],[5.424574,48.334216],[5.426048,48.331062],[5.443838,48.336826],[5.459888,48.349483],[5.472422,48.351535],[5.474496,48.35457],[5.499385,48.354552],[5.507063,48.350159],[5.522169,48.348623],[5.526527,48.346856],[5.523022,48.340512],[5.531164,48.328159],[5.533514,48.325102],[5.588128,48.277317],[5.588425,48.273763],[5.608996,48.288858],[5.611652,48.291815],[5.649556,48.270294],[5.653809,48.268524],[5.651579,48.257969],[5.64946,48.254703],[5.642055,48.245749],[5.640901,48.242354],[5.672188,48.231009],[5.676344,48.229016],[5.683443,48.232942],[5.687792,48.234185],[5.706542,48.221945],[5.710844,48.219937],[5.722288,48.205953],[5.72451,48.203075],[5.726909,48.200508],[5.730055,48.198319],[5.730983,48.1897],[5.69977,48.18967],[5.680173,48.178674],[5.682299,48.175483],[5.686525,48.164079],[5.684222,48.158234],[5.685843,48.150941],[5.675079,48.139247],[5.676706,48.136311],[5.666767,48.130206],[5.662513,48.12879],[5.661573,48.125615],[5.656558,48.120551],[5.669706,48.112241],[5.672119,48.10944],[5.658664,48.106017],[5.649393,48.105046],[5.645839,48.102524],[5.639085,48.097282],[5.632878,48.084375],[5.655767,48.071364],[5.655564,48.081237],[5.659139,48.083668],[5.692078,48.075546],[5.696278,48.077566],[5.70029,48.067443],[5.713371,48.061623],[5.721281,48.052725],[5.720627,48.052019],[5.721596,48.045262],[5.740804,48.049012],[5.764225,48.031536],[5.768818,48.030033],[5.77682,48.033644],[5.776273,48.025247],[5.776419,48.022407],[5.787321,48.007417],[5.786418,48.004017],[5.794917,47.993694],[5.793592,47.990709],[5.782448,47.980041],[5.778492,47.97801],[5.788412,47.952696],[5.802464,47.949714],[5.805268,47.946973],[5.815285,47.956918],[5.829489,47.958036],[5.839732,47.964804],[5.839894,47.968087],[5.845841,47.975696],[5.848679,47.969612],[5.853561,47.969881],[5.854239,47.966037],[5.849925,47.964359],[5.856384,47.948371],[5.86448,47.945877],[5.884687,47.929263],[5.884726,47.926047],[5.888909,47.913039],[5.890458,47.909759],[5.889189,47.907368],[5.886494,47.902634],[5.883191,47.900257],[5.851353,47.905898],[5.848194,47.903435],[5.845094,47.897089],[5.842544,47.894233],[5.82186,47.869111],[5.824676,47.859399],[5.827301,47.85467],[5.828521,47.851948],[5.823562,47.852293],[5.805625,47.84732],[5.801098,47.846978],[5.796619,47.849823],[5.798883,47.855712],[5.789061,47.855199],[5.761192,47.859343],[5.758832,47.85667],[5.753406,47.851647],[5.744204,47.848855],[5.748488,47.829771],[5.746056,47.823596],[5.743349,47.821147],[5.731428,47.817634],[5.728007,47.818452],[5.718716,47.821082],[5.713646,47.821568],[5.708478,47.821967],[5.693678,47.82175],[5.685751,47.812782],[5.676612,47.779158],[5.680107,47.777736],[5.682247,47.775391],[5.67997,47.769968],[5.703353,47.769574],[5.708914,47.764664],[5.707806,47.76152],[5.706342,47.751116],[5.70942,47.744948],[5.692378,47.73693],[5.689648,47.733903],[5.692494,47.727885],[5.695895,47.725177],[5.692512,47.724003],[5.685198,47.722694],[5.687023,47.72023],[5.684206,47.712279],[5.69322,47.703958],[5.694993,47.693641],[5.693806,47.690219],[5.692038,47.687162],[5.675428,47.682563],[5.667652,47.685479],[5.663716,47.684911],[5.659723,47.684534],[5.659334,47.681543],[5.653261,47.677161],[5.648861,47.675549],[5.629558,47.676742],[5.61539,47.67334],[5.606094,47.675205],[5.60234,47.675063],[5.596814,47.671647],[5.585265,47.690572],[5.583657,47.700883],[5.575159,47.704735],[5.571029,47.706798],[5.567389,47.707121],[5.565433,47.703904],[5.530594,47.674009],[5.510298,47.674231],[5.506626,47.67666],[5.502301,47.67741],[5.48277,47.684644],[5.478994,47.682301],[5.46934,47.674833],[5.444413,47.670891],[5.434217,47.671257],[5.421267,47.676442],[5.406486,47.673623],[5.398975,47.653075],[5.401686,47.648445],[5.405616,47.64813],[5.4032,47.64509],[5.387812,47.636212],[5.37492,47.621355],[5.374079,47.604542],[5.365786,47.602792],[5.358712,47.594272],[5.355723,47.591694],[5.342324,47.596691],[5.343756,47.603543],[5.337818,47.609029],[5.333294,47.610632],[5.3233,47.611993],[5.316021,47.607221],[5.306357,47.607277],[5.278142,47.588255],[5.277901,47.581361],[5.273261,47.580551],[5.25623,47.576551],[5.239656,47.597653],[5.25601,47.61922],[5.258601,47.622222],[5.246326,47.620136],[5.242875,47.618203],[5.240285,47.616776],[5.236942,47.616777],[5.237409,47.620298],[5.211365,47.641658],[5.188388,47.649609],[5.176227,47.651385],[5.17341,47.653536],[5.178341,47.680952],[5.173442,47.680818],[5.160201,47.678155],[5.155673,47.668388],[5.136233,47.651952],[5.127205,47.648461],[5.117441,47.650566],[5.116859,47.652017],[5.107398,47.651332],[5.102371,47.657339],[5.082662,47.659447],[5.076587,47.664976],[5.067123,47.667368],[5.062024,47.667179],[5.052569,47.669839],[5.046804,47.675568],[5.056238,47.694814],[5.031234,47.694135],[5.033099,47.707716],[5.029154,47.709927],[5.008993,47.700957],[5.00401,47.700376],[5.002099,47.693539],[4.993925,47.689285],[4.96857,47.687328],[4.971371,47.690234],[4.956706,47.699745],[4.953759,47.706313],[4.956914,47.709051],[4.964212,47.713422],[4.964464,47.722808],[4.970801,47.727824],[4.971535,47.73108],[4.964441,47.734828],[4.960496,47.732814],[4.965074,47.742218],[4.958989,47.761875],[4.954454,47.762716],[4.946347,47.765957],[4.939114,47.762053],[4.924775,47.760624],[4.921427,47.765883],[4.9168,47.766823],[4.920816,47.767837],[4.921897,47.77594],[4.917958,47.777094],[4.939148,47.783894],[4.943089,47.785719],[4.947261,47.786928],[4.955366,47.789719],[4.986103,47.803598],[4.992111,47.813444],[4.994125,47.819748],[4.99022,47.82112],[4.984921,47.82527],[4.984281,47.824606],[4.984619,47.827562],[4.973256,47.831202],[4.961536,47.840761],[4.962141,47.854264],[4.954094,47.866768],[4.944541,47.866387],[4.927456,47.871548],[4.928136,47.886967],[4.923381,47.892401],[4.919542,47.89431],[4.916131,47.896976],[4.905961,47.91647],[4.903607,47.91955],[4.894663,47.922603],[4.874586,47.919522],[4.856783,47.895634],[4.853034,47.897539],[4.834024,47.906795],[4.829474,47.912285],[4.829963,47.91559],[4.845857,47.922903],[4.86521,47.941564],[4.863158,47.944568],[4.856121,47.953276],[4.845033,47.960427],[4.819692,47.962469],[4.810959,47.959867],[4.801642,47.96254],[4.796724,47.96257],[4.787781,47.965254],[4.785712,47.971461],[4.795259,47.98344],[4.807631,47.988841],[4.796214,47.995398],[4.78942,48.007869],[4.784607,48.006727],[4.749531,48.004311],[4.719943,48.008896],[4.717126,48.011368],[4.704239,48.020241],[4.700888,48.022855],[4.67296,48.01502],[4.647584,48.024694],[4.621946,48.024348],[4.619447,48.026416],[4.616807,48.031376],[4.612164,48.030054],[4.578157,48.02857],[4.563343,48.015402],[4.55472,48.012276],[4.552644,48.009189],[4.5456,48.004988],[4.535774,48.006566],[4.535514,48.003131],[4.542963,47.990433],[4.555441,47.984769],[4.559969,47.971423],[4.55658,47.969227],[4.552383,47.967788],[4.531442,47.969899],[4.516449,47.966349],[4.495482,47.968049],[4.446962,47.956199],[4.438111,47.959377],[4.433946,47.961462],[4.416466,47.96828],[4.392313,47.962106],[4.371696,47.961332],[4.347354,47.956339],[4.312802,47.962499],[4.305655,47.954163],[4.299289,47.948608],[4.300411,47.945194],[4.30209,47.93829],[4.293424,47.925676],[4.288659,47.926854],[4.274316,47.923518],[4.259501,47.925577],[4.246331,47.930425],[4.2239,47.948499],[4.227548,47.962007],[4.225956,47.971942],[4.221154,47.971218],[4.201952,47.972577],[4.195329,47.967757],[4.195372,47.96431],[4.204572,47.961084],[4.206056,47.947361],[4.200398,47.94183],[4.185452,47.940163],[4.184257,47.953856],[4.167337,47.96001],[4.162736,47.958571],[4.141785,47.943926],[4.141839,47.937112],[4.137273,47.937786],[4.122115,47.931659],[4.113712,47.928156],[4.094619,47.928336],[4.092716,47.941278],[4.089798,47.943969],[4.060938,47.945709],[4.054893,47.930031],[4.045912,47.926899],[4.033216,47.932339],[4.025042,47.928649],[4.019887,47.928684],[4.005536,47.942371],[4.001886,47.940585],[3.985625,47.930516],[3.981186,47.930166],[3.976533,47.931267],[3.963109,47.935455],[3.949414,47.932056],[3.92645,47.93457],[3.923708,47.932432],[3.918489,47.928018],[3.914044,47.929619],[3.905178,47.926483],[3.895693,47.928554],[3.894031,47.929296],[3.896827,47.932289],[3.902393,47.938295],[3.905655,47.959141],[3.913529,47.972085],[3.903717,47.991636],[3.90227,47.994842],[3.895731,47.999833],[3.885815,48.000277],[3.882089,47.997965],[3.880447,47.981445],[3.8618,47.976444],[3.863339,47.979601],[3.859899,47.984009],[3.850027,47.983657],[3.849394,47.986794],[3.839811,48.00389],[3.844554,48.003613],[3.862835,48.00627],[3.870812,48.002864],[3.870626,48.006231],[3.870242,48.016313],[3.847997,48.02939],[3.843397,48.035372],[3.83961,48.036065],[3.832152,48.036235],[3.829137,48.039019],[3.82198,48.04392],[3.828647,48.048067],[3.826352,48.063516],[3.822803,48.065827],[3.806636,48.082389],[3.798608,48.08617],[3.798965,48.089362],[3.80565,48.10052],[3.803843,48.103673],[3.80166,48.10673],[3.798242,48.109111],[3.791315,48.117598],[3.782117,48.119918],[3.776493,48.128666],[3.768933,48.132855],[3.763975,48.132123],[3.752958,48.125957],[3.74065,48.131983],[3.739803,48.138693],[3.742117,48.141702],[3.754541,48.152088],[3.74548,48.167534],[3.741053,48.169343],[3.716542,48.174183],[3.721798,48.158178],[3.705728,48.145201],[3.698164,48.148692],[3.694415,48.155049],[3.693632,48.151742],[3.691075,48.145413],[3.66787,48.139212],[3.666663,48.142638],[3.65964,48.159577],[3.650655,48.168184],[3.648805,48.17093],[3.64051,48.184617],[3.636498,48.186735],[3.623548,48.192005],[3.593967,48.178696],[3.589992,48.180588],[3.575186,48.188741],[3.579608,48.190672],[3.609202,48.210661],[3.621602,48.225615],[3.619329,48.228128],[3.608006,48.231831],[3.604684,48.229886],[3.599994,48.235507],[3.624443,48.255167],[3.624347,48.258442],[3.622873,48.261375],[3.615187,48.272536],[3.610952,48.274609],[3.582509,48.282842],[3.587536,48.298482],[3.56318,48.310819],[3.564072,48.321081],[3.559032,48.320358],[3.543904,48.319789],[3.543961,48.322758],[3.545109,48.334548],[3.540825,48.336547],[3.50441,48.36549],[3.495725,48.36935],[3.474875,48.369265],[3.472982,48.371899],[3.470803,48.374445],[3.470481,48.374671],[3.465281,48.374512],[3.450115,48.372852],[3.431584,48.360847],[3.426582,48.361693],[3.414008,48.376538],[3.414792,48.390273],[3.420872,48.409019],[3.421938,48.412236],[3.416642,48.415835],[3.402286,48.415408],[3.411362,48.41804],[3.411833,48.421322],[3.407194,48.422678],[3.392493,48.425157],[3.39673,48.434886],[3.400909,48.436878],[3.405714,48.45329],[3.39689,48.461488],[3.39732,48.468171],[3.384094,48.478029],[3.387681,48.480159],[3.403747,48.485989],[3.407523,48.487793],[3.424335,48.491539],[3.433434,48.490391],[3.434924,48.497052],[3.422267,48.515413],[3.405398,48.528021],[3.408474,48.529945],[3.41464,48.533792],[3.445941,48.528794],[3.450707,48.528668],[3.47562,48.541282],[3.480919,48.541431],[3.483775,48.54706],[3.465516,48.570486],[3.469023,48.573054],[3.480668,48.579133],[3.485304,48.580464],[3.496646,48.589925],[3.515219,48.590989],[3.505274,48.602986],[3.508636,48.605598],[3.556545,48.617312],[3.555754,48.620689],[3.540941,48.630193],[3.521163,48.633699],[3.522656,48.63909],[3.533236,48.646509],[3.528071,48.645758],[3.512619,48.643982],[3.492289,48.647243],[3.476594,48.637961],[3.451091,48.634651],[3.458809,48.65128],[3.442561,48.664357],[3.446181,48.666898],[3.442698,48.672506],[3.456628,48.682869],[3.470957,48.68723],[3.472543,48.69737],[3.47762,48.69833],[3.464601,48.707277],[3.467159,48.722846],[3.466954,48.725806],[3.46675,48.728774],[3.467051,48.732092],[3.467396,48.73863],[3.442735,48.737806],[3.43681,48.743207],[3.437315,48.749861],[3.436595,48.753182],[3.432915,48.755552],[3.40936,48.752784],[3.399831,48.755326],[3.397144,48.761442],[3.409984,48.783721],[3.414979,48.78374],[3.428538,48.780823],[3.442195,48.784848],[3.442604,48.788138],[3.440934,48.801518],[3.421146,48.802489],[3.407443,48.806952],[3.416612,48.81783],[3.420847,48.816025],[3.434609,48.812028],[3.449507,48.812081],[3.470215,48.820698],[3.474847,48.819375],[3.477905,48.814174],[3.480923,48.812192],[3.483786,48.813952],[3.487202,48.815189],[3.485241,48.825503],[3.491285,48.835138],[3.486806,48.848601],[3.485187,48.851908],[3.486791,48.857307],[3.484515,48.860239],[3.481315,48.866466],[3.485612,48.866746],[3.489643,48.8678],[3.494059,48.869103],[3.502997,48.871494],[3.502839,48.874895],[3.508888,48.89112],[3.520911,48.905592],[3.523973,48.907485],[3.528576,48.912141],[3.547421,48.915024],[3.566684,48.913496],[3.57243,48.918612],[3.574443,48.939025],[3.588352,48.943724],[3.593373,48.944644],[3.601246,48.946682],[3.594094,48.957625],[3.591475,48.960246],[3.602925,48.96545],[3.616661,48.965164],[3.621206,48.966031],[3.625814,48.985746],[3.637845,49.000843],[3.639825,49.003998],[3.660412,49.0043],[3.665159,49.005632],[3.668852,49.007976],[3.677678,49.01602],[3.66354,49.037311],[3.65839,49.037753],[3.64997,49.041423],[3.615771,49.036424],[3.614684,49.033552],[3.586674,49.035832],[3.585204,49.038869],[3.587706,49.05935],[3.590739,49.060126],[3.600591,49.062559],[3.604007,49.069151],[3.607391,49.071858],[3.632115,49.072405],[3.638573,49.077865],[3.639054,49.081306],[3.63224,49.08609],[3.62255,49.104492],[3.620078,49.107328],[3.613414,49.115904],[3.601545,49.117645],[3.600018,49.120692],[3.610441,49.127518],[3.612047,49.137004],[3.619769,49.141047],[3.619819,49.147538],[3.621107,49.14977],[3.624456,49.151353],[3.654771,49.148791],[3.679251,49.153016],[3.683835,49.154492],[3.695606,49.151143],[3.697999,49.14871],[3.703297,49.143204],[3.712178,49.146191],[3.717014,49.147043],[3.734837,49.155126],[3.739564,49.156887],[3.744432,49.156974],[3.748676,49.15853],[3.751148,49.177701],[3.740643,49.178656],[3.725822,49.175015],[3.70649,49.180318],[3.69754,49.191914],[3.703936,49.197289],[3.704655,49.200666],[3.700577,49.201454],[3.697477,49.206641],[3.681937,49.198746],[3.67667,49.207263],[3.662545,49.208978],[3.654814,49.212922],[3.654839,49.219233],[3.651479,49.221562],[3.666006,49.22311],[3.677019,49.237082],[3.67504,49.240087],[3.670256,49.240743],[3.655255,49.262851],[3.660449,49.26837],[3.665133,49.269432],[3.66059,49.270796],[3.651676,49.27863],[3.658994,49.286771],[3.655943,49.291085],[3.64038,49.298459],[3.63834,49.301355],[3.642556,49.303248],[3.64492,49.313115],[3.647596,49.315959],[3.666467,49.321718],[3.669161,49.32475],[3.683021,49.325571],[3.687315,49.326833],[3.69306,49.328607],[3.707044,49.333353],[3.71235,49.334068],[3.731413,49.334934],[3.736196,49.335552],[3.742022,49.33895],[3.741252,49.344699],[3.741087,49.347586],[3.746475,49.348155],[3.757818,49.347608],[3.773533,49.354187],[3.777535,49.355816],[3.779802,49.352853],[3.789367,49.354714],[3.793198,49.356892],[3.803095,49.358822],[3.818508,49.357011],[3.823765,49.356993],[3.828389,49.351891],[3.83278,49.350261],[3.85131,49.344945],[3.857908,49.353672],[3.848856,49.361395],[3.847477,49.364596],[3.853577,49.366413],[3.856059,49.368347],[3.859844,49.381525],[3.87455,49.383999],[3.891038,49.391547],[3.895741,49.392779],[3.910328,49.395268],[3.92132,49.405361],[3.92482,49.407725],[3.933172,49.401126],[3.93472,49.398408],[3.961309,49.377345],[3.981515,49.379241],[3.986644,49.378921],[4.008214,49.367416],[4.011882,49.361462],[4.012729,49.358308],[4.02145,49.360185],[4.035496,49.359904],[4.037098,49.384126],[4.044698,49.4031],[4.047973,49.405642]]]},"properties":{"nom":"Champagne-Ardenne","code":"21"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[3.485187,48.851908],[3.480156,48.851605],[3.470198,48.850547],[3.461955,48.838474],[3.459253,48.841066],[3.445361,48.843232],[3.44578,48.846099],[3.452232,48.8563],[3.448478,48.858725],[3.433142,48.860013],[3.423063,48.867568],[3.408514,48.863706],[3.398898,48.866419],[3.401029,48.868723],[3.405856,48.875883],[3.400635,48.876027],[3.387958,48.870969],[3.38328,48.872495],[3.382479,48.885942],[3.369828,48.896144],[3.37561,48.90922],[3.367427,48.928805],[3.361726,48.91956],[3.330199,48.90796],[3.317005,48.91885],[3.313076,48.921216],[3.312797,48.924778],[3.31222,48.935418],[3.30475,48.948773],[3.300969,48.946652],[3.283772,48.940165],[3.26948,48.937455],[3.265161,48.939065],[3.259827,48.945174],[3.261229,48.947104],[3.262904,48.948935],[3.259065,48.951264],[3.255523,48.961316],[3.254925,48.964635],[3.245993,48.976065],[3.231216,48.976751],[3.229177,48.988418],[3.224841,48.987329],[3.223297,48.990452],[3.209318,48.993786],[3.208947,48.99671],[3.198993,49.00579],[3.171569,49.012496],[3.163008,49.019944],[3.163424,49.026256],[3.176541,49.031407],[3.181112,49.044277],[3.190614,49.046717],[3.190667,49.049972],[3.180866,49.056146],[3.181708,49.062169],[3.180064,49.065489],[3.167882,49.076899],[3.158681,49.080409],[3.155087,49.082428],[3.16523,49.09966],[3.160231,49.099289],[3.145738,49.101771],[3.138602,49.106401],[3.124129,49.107235],[3.121614,49.109081],[3.115282,49.106884],[3.079808,49.112901],[3.071884,49.117554],[3.069347,49.114849],[3.056321,49.101918],[3.056752,49.095777],[3.064684,49.088166],[3.066076,49.085216],[3.061684,49.086469],[3.034416,49.08861],[3.0305,49.086894],[3.012773,49.09062],[3.003956,49.088741],[2.999206,49.088534],[2.989885,49.081566],[2.988135,49.072376],[2.983235,49.071881],[2.974612,49.074838],[2.974159,49.077805],[2.971429,49.088972],[2.967335,49.090652],[2.954853,49.085954],[2.94583,49.088082],[2.944317,49.081814],[2.937888,49.077998],[2.933807,49.08001],[2.923982,49.078287],[2.900947,49.085347],[2.899159,49.082522],[2.895105,49.077052],[2.890202,49.078468],[2.872029,49.071248],[2.856089,49.070034],[2.854288,49.073152],[2.844946,49.084883],[2.83522,49.083],[2.821258,49.08681],[2.809254,49.097536],[2.80477,49.095758],[2.79173,49.090143],[2.787956,49.089166],[2.783988,49.088637],[2.788214,49.082872],[2.768337,49.083258],[2.772712,49.081378],[2.785275,49.07544],[2.760833,49.063004],[2.756038,49.061528],[2.735013,49.060459],[2.733096,49.063359],[2.724357,49.080459],[2.720824,49.07564],[2.703081,49.064736],[2.698321,49.064427],[2.690023,49.067562],[2.691155,49.070622],[2.693519,49.073452],[2.67832,49.08573],[2.676384,49.088872],[2.650967,49.100247],[2.640674,49.099713],[2.633273,49.108376],[2.631694,49.105117],[2.619365,49.094469],[2.614781,49.094094],[2.610339,49.094943],[2.609132,49.091558],[2.590524,49.079655],[2.586578,49.080127],[2.582606,49.080482],[2.580161,49.083261],[2.576746,49.092429],[2.559479,49.097618],[2.554091,49.11754],[2.542285,49.118854],[2.542654,49.122065],[2.537924,49.121031],[2.532668,49.115931],[2.531063,49.099596],[2.526067,49.100889],[2.489931,49.106361],[2.501596,49.119483],[2.499227,49.12227],[2.494845,49.12351],[2.477004,49.127974],[2.477603,49.13107],[2.473884,49.132987],[2.461309,49.136609],[2.458813,49.139483],[2.435399,49.133945],[2.436577,49.136459],[2.438907,49.141496],[2.439898,49.14365],[2.440903,49.145803],[2.410447,49.152077],[2.394792,49.149815],[2.3732,49.159253],[2.369839,49.157176],[2.358039,49.14815],[2.354227,49.150485],[2.321777,49.184436],[2.317953,49.185233],[2.310593,49.184876],[2.306913,49.185179],[2.301197,49.183887],[2.299925,49.180589],[2.28887,49.169681],[2.286413,49.159921],[2.281365,49.159126],[2.266531,49.156295],[2.262132,49.158102],[2.259401,49.155442],[2.241583,49.151573],[2.225833,49.151598],[2.21636,49.154378],[2.219639,49.156917],[2.234054,49.165695],[2.220277,49.179201],[2.215478,49.178234],[2.207218,49.17489],[2.187374,49.173229],[2.183442,49.173823],[2.176584,49.176545],[2.178986,49.173819],[2.172135,49.166607],[2.16393,49.1661],[2.161839,49.168235],[2.157738,49.172513],[2.163401,49.177623],[2.157181,49.182282],[2.153026,49.183925],[2.143261,49.185547],[2.139762,49.18313],[2.13028,49.190749],[2.11591,49.187992],[2.095875,49.190064],[2.093329,49.19285],[2.09024,49.20545],[2.080769,49.207203],[2.08089,49.21045],[2.076699,49.20844],[2.069874,49.203344],[2.050488,49.198778],[2.038368,49.192406],[2.038236,49.192135],[2.035163,49.189908],[2.021784,49.188676],[2.018235,49.186355],[1.999445,49.175573],[1.990193,49.176763],[1.974086,49.183316],[1.971263,49.181107],[1.962698,49.174605],[1.958097,49.172866],[1.937433,49.170761],[1.933925,49.173347],[1.882568,49.162496],[1.882617,49.16594],[1.876765,49.175309],[1.874497,49.17429],[1.869788,49.172654],[1.849074,49.170489],[1.838268,49.166186],[1.834069,49.16512],[1.83664,49.171547],[1.831251,49.17698],[1.816999,49.17587],[1.797776,49.185147],[1.794378,49.183189],[1.793582,49.180277],[1.789302,49.181493],[1.776924,49.185225],[1.776379,49.185094],[1.773149,49.182471],[1.756131,49.174879],[1.742695,49.179801],[1.742878,49.182986],[1.73895,49.192189],[1.725913,49.194012],[1.72571,49.197273],[1.715583,49.202848],[1.715608,49.206238],[1.73398,49.211989],[1.735795,49.221944],[1.740453,49.22344],[1.736324,49.225573],[1.710812,49.237378],[1.704364,49.232202],[1.700984,49.233955],[1.701625,49.242305],[1.699859,49.248652],[1.701428,49.251789],[1.708007,49.25622],[1.708195,49.262408],[1.711646,49.264522],[1.727115,49.26509],[1.735143,49.269365],[1.750536,49.268023],[1.75472,49.270009],[1.768065,49.255446],[1.766896,49.252035],[1.786654,49.248819],[1.790552,49.246575],[1.790289,49.253693],[1.800911,49.270063],[1.80266,49.273434],[1.794084,49.276486],[1.796641,49.286464],[1.784643,49.292862],[1.77535,49.291168],[1.77239,49.293664],[1.774432,49.306676],[1.767545,49.319282],[1.770655,49.325571],[1.774004,49.335692],[1.757629,49.357029],[1.760168,49.365326],[1.759341,49.368239],[1.749902,49.371459],[1.742778,49.38077],[1.720029,49.395284],[1.736382,49.403528],[1.740379,49.405683],[1.735689,49.406506],[1.717574,49.403699],[1.713938,49.409225],[1.72201,49.421491],[1.726078,49.438065],[1.733389,49.441216],[1.736373,49.447135],[1.739918,49.449303],[1.748842,49.451436],[1.749925,49.456795],[1.747434,49.459448],[1.760619,49.464519],[1.765371,49.465925],[1.775771,49.473437],[1.775438,49.486863],[1.778449,49.489626],[1.788633,49.490141],[1.78755,49.506229],[1.783584,49.507609],[1.768074,49.512028],[1.755399,49.50646],[1.744868,49.491727],[1.740506,49.497983],[1.72546,49.499785],[1.719227,49.50292],[1.717972,49.506736],[1.71992,49.508904],[1.738792,49.52058],[1.745519,49.539157],[1.744888,49.539519],[1.731211,49.541354],[1.724905,49.545539],[1.72916,49.55503],[1.729834,49.561293],[1.726288,49.563862],[1.720397,49.569598],[1.717848,49.572618],[1.710406,49.577249],[1.697693,49.572223],[1.694593,49.58054],[1.709641,49.580206],[1.7204,49.58556],[1.721618,49.588809],[1.720146,49.589656],[1.693725,49.601067],[1.715943,49.61395],[1.721685,49.623321],[1.71873,49.629761],[1.717252,49.632981],[1.707252,49.637764],[1.70442,49.639756],[1.701361,49.641952],[1.698685,49.64435],[1.708078,49.646149],[1.713754,49.654908],[1.721554,49.658568],[1.722778,49.661654],[1.724131,49.671805],[1.747082,49.680078],[1.752184,49.680966],[1.751309,49.683923],[1.750299,49.69582],[1.746515,49.697569],[1.743109,49.700329],[1.732928,49.698552],[1.717096,49.684564],[1.707758,49.681374],[1.68862,49.693706],[1.715453,49.71033],[1.715109,49.713543],[1.715538,49.732877],[1.725303,49.731569],[1.742891,49.738554],[1.745455,49.738572],[1.74026,49.750254],[1.74272,49.752849],[1.749886,49.762115],[1.763625,49.757268],[1.784845,49.757904],[1.78333,49.764467],[1.780929,49.767426],[1.779601,49.770728],[1.773681,49.776357],[1.759249,49.780398],[1.758369,49.783507],[1.752718,49.792148],[1.749904,49.794859],[1.744387,49.803572],[1.742319,49.806391],[1.733854,49.8135],[1.725711,49.836561],[1.726224,49.839945],[1.72535,49.843224],[1.719039,49.848352],[1.720039,49.861669],[1.718728,49.865707],[1.712859,49.87083],[1.711815,49.87417],[1.713912,49.877022],[1.71209,49.886401],[1.706178,49.891442],[1.69702,49.89333],[1.693304,49.895608],[1.691652,49.898735],[1.690784,49.901682],[1.678647,49.913231],[1.678451,49.918134],[1.652181,49.927065],[1.647729,49.92857],[1.643494,49.930302],[1.624556,49.934278],[1.608454,49.941813],[1.603803,49.943395],[1.577978,49.96386],[1.57439,49.973655],[1.570107,49.975357],[1.561275,49.978335],[1.55751,49.980411],[1.52695,49.996577],[1.525236,49.998955],[1.523615,50.001981],[1.514481,50.012651],[1.497761,50.019436],[1.493091,50.018454],[1.48632,50.022997],[1.475827,50.030691],[1.473212,50.033686],[1.45886,50.036965],[1.452288,50.041617],[1.459146,50.062499],[1.456458,50.063714],[1.453325,50.064384],[1.450671,50.067234],[1.431667,50.071152],[1.421862,50.069131],[1.419826,50.066409],[1.40926,50.057074],[1.404428,50.057227],[1.379705,50.065015],[1.392618,50.075461],[1.413951,50.085171],[1.417617,50.087581],[1.421354,50.089084],[1.451257,50.10708],[1.453752,50.109977],[1.46652,50.135827],[1.468043,50.139079],[1.483097,50.17267],[1.505551,50.196575],[1.545748,50.214139],[1.556144,50.216211],[1.563635,50.213155],[1.559372,50.210977],[1.572128,50.199315],[1.574236,50.196017],[1.587442,50.190035],[1.591259,50.187582],[1.596264,50.186175],[1.616781,50.19044],[1.631019,50.188992],[1.661372,50.179563],[1.665954,50.177646],[1.674962,50.175427],[1.680548,50.180597],[1.683249,50.18323],[1.675657,50.190073],[1.673107,50.192345],[1.664845,50.211232],[1.66146,50.213818],[1.644008,50.216438],[1.639635,50.217189],[1.624798,50.214635],[1.617027,50.219353],[1.595119,50.243155],[1.592228,50.256458],[1.564968,50.256009],[1.550048,50.260468],[1.538298,50.280257],[1.541985,50.304996],[1.546808,50.327952],[1.55446,50.358599],[1.567351,50.363355],[1.580868,50.358878],[1.602444,50.359816],[1.625986,50.364336],[1.636957,50.35362],[1.641544,50.352153],[1.646499,50.340077],[1.651627,50.33981],[1.66431,50.334533],[1.662287,50.331458],[1.667566,50.330743],[1.690565,50.33969],[1.69253,50.342908],[1.694837,50.338882],[1.703836,50.343036],[1.725573,50.345723],[1.730052,50.347825],[1.740339,50.354521],[1.755055,50.35705],[1.761849,50.361608],[1.786838,50.359656],[1.791952,50.359464],[1.800413,50.359555],[1.804679,50.359606],[1.81855,50.352233],[1.821907,50.35029],[1.846308,50.343606],[1.851698,50.342911],[1.852133,50.341066],[1.869131,50.334471],[1.875354,50.322729],[1.888094,50.318059],[1.893294,50.318168],[1.898602,50.315917],[1.898883,50.313334],[1.919498,50.312591],[1.941134,50.330674],[1.946195,50.33149],[1.964332,50.321219],[1.963934,50.318055],[1.959846,50.311618],[1.934163,50.299384],[1.945648,50.287747],[1.949353,50.286198],[1.955702,50.289557],[1.959874,50.29049],[1.969736,50.282455],[1.994128,50.275716],[2.000611,50.272428],[2.003229,50.270384],[2.01185,50.267966],[2.026236,50.269553],[2.034272,50.266195],[2.037773,50.264059],[2.048668,50.256771],[2.059045,50.255369],[2.064405,50.255625],[2.075299,50.251164],[2.077822,50.248731],[2.064081,50.23752],[2.063816,50.234456],[2.067945,50.232978],[2.068487,50.227091],[2.080371,50.219413],[2.083606,50.216968],[2.08483,50.204225],[2.085714,50.201017],[2.096639,50.206629],[2.110291,50.204492],[2.114559,50.202862],[2.12193,50.210288],[2.135692,50.207448],[2.141667,50.202461],[2.146971,50.193267],[2.14976,50.19043],[2.173297,50.207886],[2.178498,50.207293],[2.183477,50.21002],[2.187737,50.20968],[2.19949,50.212415],[2.199908,50.215175],[2.204867,50.21395],[2.213785,50.217356],[2.224421,50.217361],[2.227382,50.208606],[2.230807,50.21063],[2.239739,50.213173],[2.253431,50.214685],[2.269351,50.227649],[2.287735,50.221354],[2.290685,50.218578],[2.296925,50.213711],[2.301693,50.212957],[2.318389,50.219148],[2.325191,50.215934],[2.327132,50.213098],[2.331301,50.221724],[2.320808,50.232837],[2.31625,50.231393],[2.314767,50.23442],[2.32887,50.237219],[2.332878,50.239081],[2.334836,50.237062],[2.336655,50.234989],[2.361731,50.207078],[2.364877,50.207282],[2.36782,50.208016],[2.370989,50.210888],[2.373296,50.217769],[2.383136,50.225757],[2.384861,50.225415],[2.389474,50.224765],[2.402588,50.233225],[2.407013,50.234297],[2.4174,50.228295],[2.432034,50.22777],[2.436855,50.227263],[2.446938,50.229347],[2.452066,50.230214],[2.456774,50.221929],[2.459599,50.219552],[2.464414,50.21423],[2.480374,50.208121],[2.485204,50.2078],[2.488928,50.204861],[2.492589,50.202497],[2.495053,50.199552],[2.49569,50.194562],[2.49209,50.193694],[2.485371,50.19134],[2.481204,50.191242],[2.473887,50.188652],[2.469649,50.187385],[2.450821,50.17852],[2.445443,50.17925],[2.435006,50.179616],[2.420855,50.174638],[2.417858,50.17386],[2.414846,50.17311],[2.415553,50.169979],[2.41453,50.164173],[2.410836,50.163203],[2.403268,50.164801],[2.401777,50.16201],[2.398866,50.156419],[2.389892,50.155189],[2.391722,50.144852],[2.385485,50.139424],[2.379793,50.119189],[2.37546,50.10926],[2.394888,50.110193],[2.39739,50.106505],[2.409489,50.101202],[2.414508,50.100651],[2.417504,50.091379],[2.424694,50.087668],[2.429658,50.088185],[2.44424,50.114198],[2.446132,50.11744],[2.44742,50.119754],[2.449995,50.1244],[2.454672,50.128552],[2.455049,50.131176],[2.464991,50.131731],[2.4694,50.133645],[2.472807,50.13516],[2.475975,50.136862],[2.491086,50.137662],[2.510031,50.140747],[2.514949,50.140821],[2.532332,50.115077],[2.545311,50.120919],[2.548176,50.123821],[2.546349,50.136091],[2.551329,50.141704],[2.564676,50.138241],[2.56837,50.135964],[2.577454,50.139103],[2.582367,50.138042],[2.586635,50.137365],[2.583003,50.132144],[2.569643,50.122605],[2.569355,50.120404],[2.573,50.115459],[2.575671,50.113331],[2.590719,50.109107],[2.592904,50.106555],[2.611729,50.1101],[2.626761,50.10933],[2.630728,50.107276],[2.630646,50.105111],[2.635779,50.100016],[2.644387,50.096988],[2.647546,50.094411],[2.653888,50.09803],[2.656525,50.100283],[2.669203,50.096097],[2.672081,50.093634],[2.682389,50.095045],[2.691593,50.092033],[2.701148,50.08391],[2.703859,50.080989],[2.715684,50.085364],[2.718994,50.087644],[2.715239,50.090114],[2.697575,50.102573],[2.703494,50.107689],[2.71352,50.110191],[2.707128,50.126431],[2.725191,50.126365],[2.72993,50.125864],[2.74715,50.11551],[2.749537,50.112803],[2.763849,50.110514],[2.77794,50.113764],[2.780898,50.111156],[2.778492,50.102405],[2.778142,50.099431],[2.781836,50.091112],[2.77886,50.088467],[2.774462,50.079226],[2.764392,50.071825],[2.7609,50.069384],[2.763746,50.060597],[2.745871,50.050133],[2.742339,50.048006],[2.748877,50.042918],[2.752195,50.04032],[2.775739,50.0428],[2.780917,50.048351],[2.79451,50.050054],[2.795705,50.051268],[2.804223,50.059707],[2.807198,50.06246],[2.8105,50.059869],[2.82771,50.065634],[2.831235,50.063169],[2.837806,50.072015],[2.85018,50.078085],[2.855414,50.077992],[2.854922,50.064277],[2.856704,50.060992],[2.860778,50.060646],[2.864729,50.059923],[2.876374,50.044236],[2.869954,50.034951],[2.859918,50.033665],[2.853071,50.029157],[2.855422,50.02607],[2.856377,50.023583],[2.871189,50.021076],[2.878569,50.024523],[2.875747,50.026999],[2.879144,50.02915],[2.882694,50.031201],[2.896167,50.036557],[2.917016,50.03554],[2.919557,50.042089],[2.920175,50.048592],[2.930726,50.044027],[2.934866,50.045242],[2.938699,50.047337],[2.940021,50.050472],[2.944091,50.052701],[2.949406,50.053036],[2.957679,50.051126],[2.961795,50.050139],[2.969176,50.046692],[2.971536,50.041367],[2.988758,50.0493],[2.993849,50.050415],[3.002692,50.052983],[3.006835,50.054609],[3.01197,50.058039],[3.02193,50.056843],[3.024914,50.054148],[3.026241,50.05678],[3.030412,50.057479],[3.057637,50.051218],[3.06154,50.049384],[3.071427,50.047906],[3.074492,50.0453],[3.087305,50.050905],[3.090254,50.053741],[3.095776,50.045725],[3.113001,50.039225],[3.114299,50.033539],[3.121506,50.026984],[3.123578,50.024485],[3.148926,50.025274],[3.147359,50.018764],[3.162556,50.01932],[3.166994,50.020985],[3.171212,50.015123],[3.172707,50.011995],[3.203548,50.017876],[3.229336,50.03018],[3.233971,50.028384],[3.244078,50.030888],[3.244843,50.030617],[3.246725,50.027694],[3.255846,50.025439],[3.258791,50.031415],[3.263541,50.030641],[3.267164,50.030122],[3.270716,50.029467],[3.277936,50.021475],[3.273525,50.020272],[3.280355,50.015209],[3.290837,50.015131],[3.300484,50.017587],[3.304894,50.018465],[3.309304,50.019352],[3.327669,50.015855],[3.337102,50.017401],[3.343616,50.026266],[3.351671,50.029729],[3.350214,50.032858],[3.353107,50.035715],[3.374224,50.036407],[3.387166,50.031059],[3.392479,50.031132],[3.398474,50.034579],[3.41538,50.026754],[3.424921,50.027269],[3.42847,50.024778],[3.427792,50.022085],[3.484913,50.019609],[3.490106,50.01896],[3.505235,50.030539],[3.507062,50.033361],[3.508157,50.035512],[3.52989,50.038887],[3.541758,50.051975],[3.551277,50.053774],[3.55644,50.053904],[3.567799,50.052971],[3.575596,50.049252],[3.57924,50.047098],[3.594225,50.043918],[3.607741,50.033469],[3.608747,50.030105],[3.614124,50.025057],[3.621489,50.028819],[3.625097,50.030777],[3.63009,50.032018],[3.643079,50.036989],[3.657569,50.032727],[3.662095,50.038729],[3.657538,50.040029],[3.658176,50.048397],[3.665721,50.054697],[3.669883,50.055088],[3.705575,50.065639],[3.710359,50.066491],[3.715185,50.069275],[3.72121,50.064129],[3.742636,50.056097],[3.745752,50.053572],[3.770963,50.051036],[3.77523,50.049078],[3.77793,50.045989],[3.793588,50.048296],[3.811,50.040637],[3.815827,50.039042],[3.832229,50.046782],[3.837059,50.047809],[3.848124,50.04053],[3.868771,50.03761],[3.882319,50.032366],[3.883321,50.029017],[3.878323,50.027886],[3.886697,50.023514],[3.887395,50.01317],[3.887292,50.009694],[3.919783,50.023611],[3.922871,50.026256],[3.943012,50.029659],[3.948308,50.029547],[3.949834,50.026885],[3.982309,50.04428],[3.989547,50.041347],[3.991313,50.038189],[3.995236,50.028447],[3.980144,50.003561],[3.980801,49.993576],[3.985562,49.99476],[4.005734,49.995197],[4.011405,49.986051],[4.021563,49.986119],[4.027393,49.982981],[4.031122,49.982069],[4.044796,49.985843],[4.074968,49.981],[4.079933,49.97995],[4.082589,49.973827],[4.089691,49.970476],[4.099815,49.972326],[4.104938,49.97157],[4.136382,49.977508],[4.140895,49.97876],[4.154144,49.975132],[4.169033,49.976859],[4.173918,49.97604],[4.195446,49.96745],[4.195946,49.960851],[4.197356,49.954486],[4.22778,49.957931],[4.233068,49.957824],[4.232132,49.955956],[4.232061,49.952462],[4.220206,49.933589],[4.217774,49.916256],[4.222142,49.910427],[4.233643,49.909116],[4.236936,49.903782],[4.24633,49.902258],[4.255734,49.903977],[4.251798,49.890397],[4.250089,49.863245],[4.249554,49.860106],[4.249004,49.856958],[4.246034,49.854257],[4.233752,49.848631],[4.23017,49.836088],[4.225337,49.834978],[4.214774,49.806115],[4.219523,49.804999],[4.227042,49.793189],[4.224917,49.790218],[4.209942,49.782047],[4.206332,49.77962],[4.212018,49.774218],[4.214263,49.771176],[4.224503,49.772943],[4.242039,49.765469],[4.246879,49.755742],[4.230539,49.74703],[4.226128,49.734242],[4.227618,49.731073],[4.225406,49.727276],[4.220371,49.725988],[4.205171,49.722706],[4.202292,49.720515],[4.191381,49.715644],[4.192459,49.712542],[4.184381,49.701227],[4.185269,49.698872],[4.179917,49.698062],[4.164831,49.693894],[4.160116,49.693049],[4.151058,49.690646],[4.146816,49.689266],[4.146699,49.677854],[4.126474,49.678205],[4.122702,49.660923],[4.124871,49.650613],[4.11724,49.641526],[4.11569,49.633263],[4.110419,49.632646],[4.095983,49.629173],[4.071483,49.635943],[4.050555,49.634931],[4.047514,49.637806],[4.042341,49.637913],[4.038598,49.625265],[4.026316,49.619905],[4.031525,49.614109],[4.047558,49.600653],[4.060605,49.59637],[4.064445,49.594161],[4.060391,49.587978],[4.062671,49.574593],[4.07677,49.570721],[4.059686,49.554496],[4.050439,49.551593],[4.051908,49.545073],[4.067545,49.543139],[4.075648,49.53896],[4.075097,49.521852],[4.074145,49.518588],[4.060243,49.521254],[4.056108,49.508824],[4.04086,49.508381],[4.040423,49.505176],[4.040766,49.495519],[4.040928,49.492651],[4.041527,49.484044],[4.041419,49.480755],[4.041379,49.477403],[4.042112,49.470727],[4.066154,49.445448],[4.06141,49.44673],[4.056813,49.445737],[4.047178,49.445173],[4.037579,49.438083],[4.0394,49.435443],[4.04326,49.424605],[4.04913,49.409012],[4.047973,49.405642],[4.044698,49.4031],[4.037098,49.384126],[4.035496,49.359904],[4.02145,49.360185],[4.012729,49.358308],[4.011882,49.361462],[4.008214,49.367416],[3.986644,49.378921],[3.981515,49.379241],[3.961309,49.377345],[3.93472,49.398408],[3.933172,49.401126],[3.92482,49.407725],[3.92132,49.405361],[3.910328,49.395268],[3.895741,49.392779],[3.891038,49.391547],[3.87455,49.383999],[3.859844,49.381525],[3.856059,49.368347],[3.853577,49.366413],[3.847477,49.364596],[3.848856,49.361395],[3.857908,49.353672],[3.85131,49.344945],[3.83278,49.350261],[3.828389,49.351891],[3.823765,49.356993],[3.818508,49.357011],[3.803095,49.358822],[3.793198,49.356892],[3.789367,49.354714],[3.779802,49.352853],[3.777535,49.355816],[3.773533,49.354187],[3.757818,49.347608],[3.746475,49.348155],[3.741087,49.347586],[3.741252,49.344699],[3.742022,49.33895],[3.736196,49.335552],[3.731413,49.334934],[3.71235,49.334068],[3.707044,49.333353],[3.69306,49.328607],[3.687315,49.326833],[3.683021,49.325571],[3.669161,49.32475],[3.666467,49.321718],[3.647596,49.315959],[3.64492,49.313115],[3.642556,49.303248],[3.63834,49.301355],[3.64038,49.298459],[3.655943,49.291085],[3.658994,49.286771],[3.651676,49.27863],[3.66059,49.270796],[3.665133,49.269432],[3.660449,49.26837],[3.655255,49.262851],[3.670256,49.240743],[3.67504,49.240087],[3.677019,49.237082],[3.666006,49.22311],[3.651479,49.221562],[3.654839,49.219233],[3.654814,49.212922],[3.662545,49.208978],[3.67667,49.207263],[3.681937,49.198746],[3.697477,49.206641],[3.700577,49.201454],[3.704655,49.200666],[3.703936,49.197289],[3.69754,49.191914],[3.70649,49.180318],[3.725822,49.175015],[3.740643,49.178656],[3.751148,49.177701],[3.748676,49.15853],[3.744432,49.156974],[3.739564,49.156887],[3.734837,49.155126],[3.717014,49.147043],[3.712178,49.146191],[3.703297,49.143204],[3.697999,49.14871],[3.695606,49.151143],[3.683835,49.154492],[3.679251,49.153016],[3.654771,49.148791],[3.624456,49.151353],[3.621107,49.14977],[3.619819,49.147538],[3.619769,49.141047],[3.612047,49.137004],[3.610441,49.127518],[3.600018,49.120692],[3.601545,49.117645],[3.613414,49.115904],[3.620078,49.107328],[3.62255,49.104492],[3.63224,49.08609],[3.639054,49.081306],[3.638573,49.077865],[3.632115,49.072405],[3.607391,49.071858],[3.604007,49.069151],[3.600591,49.062559],[3.590739,49.060126],[3.587706,49.05935],[3.585204,49.038869],[3.586674,49.035832],[3.614684,49.033552],[3.615771,49.036424],[3.64997,49.041423],[3.65839,49.037753],[3.66354,49.037311],[3.677678,49.01602],[3.668852,49.007976],[3.665159,49.005632],[3.660412,49.0043],[3.639825,49.003998],[3.637845,49.000843],[3.625814,48.985746],[3.621206,48.966031],[3.616661,48.965164],[3.602925,48.96545],[3.591475,48.960246],[3.594094,48.957625],[3.601246,48.946682],[3.593373,48.944644],[3.588352,48.943724],[3.574443,48.939025],[3.57243,48.918612],[3.566684,48.913496],[3.547421,48.915024],[3.528576,48.912141],[3.523973,48.907485],[3.520911,48.905592],[3.508888,48.89112],[3.502839,48.874895],[3.502997,48.871494],[3.494059,48.869103],[3.489643,48.8678],[3.485612,48.866746],[3.481315,48.866466],[3.484515,48.860239],[3.486791,48.857307],[3.485187,48.851908]]]},"properties":{"nom":"Picardie","code":"22"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[0.814819,48.670168],[0.810178,48.671352],[0.796482,48.674914],[0.782205,48.666524],[0.780369,48.666589],[0.767326,48.673616],[0.764138,48.675725],[0.76511,48.6905],[0.767725,48.693221],[0.767302,48.695823],[0.763337,48.697935],[0.75117,48.703978],[0.731016,48.70383],[0.728764,48.706847],[0.732598,48.709331],[0.743593,48.716999],[0.748398,48.718448],[0.758437,48.72059],[0.763635,48.73036],[0.775034,48.737358],[0.77192,48.740215],[0.751061,48.760527],[0.75678,48.766465],[0.755764,48.770135],[0.752631,48.77274],[0.739437,48.777529],[0.730523,48.785593],[0.716372,48.785989],[0.713196,48.788565],[0.708628,48.79025],[0.703765,48.791533],[0.699117,48.792865],[0.690171,48.79406],[0.660002,48.811774],[0.656093,48.813569],[0.647016,48.814857],[0.642759,48.816501],[0.628768,48.825159],[0.624834,48.82715],[0.607869,48.832489],[0.611184,48.835084],[0.633771,48.856038],[0.619441,48.852749],[0.610658,48.856064],[0.6064,48.862376],[0.608871,48.875697],[0.589631,48.872603],[0.585984,48.878602],[0.596624,48.884817],[0.595643,48.888028],[0.590805,48.888803],[0.578041,48.893656],[0.573844,48.891772],[0.553791,48.87686],[0.549868,48.87471],[0.52088,48.880798],[0.515706,48.880583],[0.496544,48.87878],[0.47437,48.88706],[0.459094,48.887798],[0.457358,48.879762],[0.452557,48.880029],[0.443109,48.881285],[0.443534,48.884021],[0.45004,48.891016],[0.436708,48.885782],[0.426211,48.8867],[0.417946,48.898471],[0.386114,48.910548],[0.387285,48.913867],[0.390826,48.927107],[0.395214,48.928921],[0.396241,48.932417],[0.412815,48.950626],[0.431508,48.968762],[0.4322,48.971908],[0.432448,48.978229],[0.4256,48.982652],[0.42676,48.985718],[0.433439,49.00022],[0.433737,49.003331],[0.435081,49.006283],[0.44418,49.013135],[0.446052,49.019014],[0.424546,49.032031],[0.414601,49.032816],[0.409538,49.032833],[0.384959,49.037014],[0.375069,49.052092],[0.370827,49.050173],[0.366966,49.052356],[0.380383,49.06125],[0.379166,49.067449],[0.378878,49.070708],[0.389902,49.0764],[0.413397,49.075379],[0.417277,49.073357],[0.417885,49.083959],[0.416455,49.087382],[0.402183,49.08846],[0.411408,49.094911],[0.410106,49.097663],[0.400959,49.097861],[0.399783,49.100814],[0.407959,49.117876],[0.409399,49.120857],[0.409704,49.122168],[0.408273,49.128578],[0.422719,49.130814],[0.429977,49.139263],[0.432367,49.142202],[0.426698,49.14674],[0.413143,49.146351],[0.406567,49.149511],[0.401342,49.149515],[0.387361,49.153179],[0.385822,49.154054],[0.387636,49.156981],[0.391913,49.178537],[0.388119,49.189807],[0.389366,49.196652],[0.393648,49.206739],[0.388402,49.211941],[0.382813,49.21603],[0.367048,49.216595],[0.342009,49.229286],[0.337503,49.231174],[0.321521,49.251985],[0.326531,49.252888],[0.341482,49.253678],[0.377722,49.263888],[0.382787,49.264016],[0.380626,49.279791],[0.383554,49.285764],[0.380112,49.287758],[0.365656,49.295124],[0.361083,49.296608],[0.342181,49.293512],[0.322277,49.278762],[0.308998,49.283216],[0.309988,49.286386],[0.322439,49.296332],[0.316021,49.311309],[0.302649,49.313683],[0.298154,49.314409],[0.30424,49.317199],[0.30706,49.3188],[0.323662,49.340117],[0.308051,49.358082],[0.303456,49.368016],[0.301714,49.371305],[0.306587,49.383996],[0.309068,49.386885],[0.308366,49.390287],[0.29781,49.409253],[0.297224,49.429862],[0.305604,49.430471],[0.309792,49.430798],[0.335856,49.433668],[0.34103,49.434402],[0.338834,49.437682],[0.338983,49.440931],[0.297345,49.439127],[0.285713,49.44447],[0.287626,49.447948],[0.3087,49.449048],[0.31183,49.449594],[0.303271,49.450519],[0.287893,49.451255],[0.274945,49.446728],[0.269987,49.447642],[0.257973,49.449178],[0.253845,49.449507],[0.237788,49.452092],[0.195024,49.454859],[0.171701,49.460018],[0.156336,49.458183],[0.145183,49.465475],[0.114342,49.470644],[0.09308,49.481306],[0.093312,49.494532],[0.088123,49.500586],[0.083366,49.502172],[0.069789,49.506323],[0.066273,49.515411],[0.066916,49.518673],[0.075547,49.537174],[0.078026,49.539986],[0.108648,49.585918],[0.111463,49.588988],[0.126703,49.606831],[0.128783,49.609964],[0.140654,49.625891],[0.142587,49.629209],[0.15393,49.64781],[0.151799,49.657507],[0.158992,49.665921],[0.159931,49.669206],[0.164907,49.68619],[0.1751,49.694097],[0.179394,49.696157],[0.182167,49.699179],[0.205158,49.71298],[0.220071,49.716927],[0.225343,49.71764],[0.241163,49.720239],[0.259697,49.727616],[0.264879,49.728748],[0.270224,49.73072],[0.290015,49.737824],[0.29379,49.739607],[0.299454,49.740056],[0.316104,49.740793],[0.320424,49.741464],[0.334415,49.746113],[0.338901,49.747892],[0.351317,49.753269],[0.355324,49.755199],[0.366921,49.767119],[0.38715,49.771878],[0.424136,49.784369],[0.428468,49.786277],[0.479088,49.806282],[0.483546,49.808262],[0.507522,49.819882],[0.51259,49.819644],[0.520306,49.823532],[0.524244,49.825409],[0.534402,49.833731],[0.557663,49.843637],[0.56234,49.845528],[0.581406,49.852046],[0.602412,49.854384],[0.606981,49.856253],[0.640399,49.863815],[0.645528,49.864147],[0.650624,49.864911],[0.655782,49.865513],[0.668522,49.867267],[0.709745,49.872936],[0.718799,49.869483],[0.745112,49.871257],[0.750404,49.871382],[0.76389,49.871746],[0.795854,49.877009],[0.800985,49.878315],[0.834184,49.889692],[0.839541,49.889338],[0.893722,49.899019],[0.89844,49.900331],[0.924739,49.905354],[0.929789,49.906743],[0.96144,49.919712],[0.972258,49.919245],[1.021849,49.916274],[1.025735,49.916552],[1.035178,49.91887],[1.039774,49.920247],[1.06981,49.926781],[1.085877,49.93557],[1.110602,49.938928],[1.115246,49.940572],[1.143184,49.949877],[1.147616,49.951687],[1.164733,49.957803],[1.168719,49.959651],[1.189936,49.966948],[1.194522,49.96804],[1.202426,49.971795],[1.205261,49.977542],[1.208678,49.97982],[1.230982,49.987512],[1.235089,49.989611],[1.256331,50.002107],[1.259655,50.004355],[1.266964,50.009121],[1.270733,50.01143],[1.33435,50.047967],[1.338735,50.049967],[1.342387,50.05176],[1.369126,50.063725],[1.379705,50.065015],[1.404428,50.057227],[1.40926,50.057074],[1.419826,50.066409],[1.421862,50.069131],[1.431667,50.071152],[1.450671,50.067234],[1.453325,50.064384],[1.456458,50.063714],[1.459146,50.062499],[1.452288,50.041617],[1.45886,50.036965],[1.473212,50.033686],[1.475827,50.030691],[1.48632,50.022997],[1.493091,50.018454],[1.497761,50.019436],[1.514481,50.012651],[1.523615,50.001981],[1.525236,49.998955],[1.52695,49.996577],[1.55751,49.980411],[1.561275,49.978335],[1.570107,49.975357],[1.57439,49.973655],[1.577978,49.96386],[1.603803,49.943395],[1.608454,49.941813],[1.624556,49.934278],[1.643494,49.930302],[1.647729,49.92857],[1.652181,49.927065],[1.678451,49.918134],[1.678647,49.913231],[1.690784,49.901682],[1.691652,49.898735],[1.693304,49.895608],[1.69702,49.89333],[1.706178,49.891442],[1.71209,49.886401],[1.713912,49.877022],[1.711815,49.87417],[1.712859,49.87083],[1.718728,49.865707],[1.720039,49.861669],[1.719039,49.848352],[1.72535,49.843224],[1.726224,49.839945],[1.725711,49.836561],[1.733854,49.8135],[1.742319,49.806391],[1.744387,49.803572],[1.749904,49.794859],[1.752718,49.792148],[1.758369,49.783507],[1.759249,49.780398],[1.773681,49.776357],[1.779601,49.770728],[1.780929,49.767426],[1.78333,49.764467],[1.784845,49.757904],[1.763625,49.757268],[1.749886,49.762115],[1.74272,49.752849],[1.74026,49.750254],[1.745455,49.738572],[1.742891,49.738554],[1.725303,49.731569],[1.715538,49.732877],[1.715109,49.713543],[1.715453,49.71033],[1.68862,49.693706],[1.707758,49.681374],[1.717096,49.684564],[1.732928,49.698552],[1.743109,49.700329],[1.746515,49.697569],[1.750299,49.69582],[1.751309,49.683923],[1.752184,49.680966],[1.747082,49.680078],[1.724131,49.671805],[1.722778,49.661654],[1.721554,49.658568],[1.713754,49.654908],[1.708078,49.646149],[1.698685,49.64435],[1.701361,49.641952],[1.70442,49.639756],[1.707252,49.637764],[1.717252,49.632981],[1.71873,49.629761],[1.721685,49.623321],[1.715943,49.61395],[1.693725,49.601067],[1.720146,49.589656],[1.721618,49.588809],[1.7204,49.58556],[1.709641,49.580206],[1.694593,49.58054],[1.697693,49.572223],[1.710406,49.577249],[1.717848,49.572618],[1.720397,49.569598],[1.726288,49.563862],[1.729834,49.561293],[1.72916,49.55503],[1.724905,49.545539],[1.731211,49.541354],[1.744888,49.539519],[1.745519,49.539157],[1.738792,49.52058],[1.71992,49.508904],[1.717972,49.506736],[1.719227,49.50292],[1.72546,49.499785],[1.740506,49.497983],[1.744868,49.491727],[1.755399,49.50646],[1.768074,49.512028],[1.783584,49.507609],[1.78755,49.506229],[1.788633,49.490141],[1.778449,49.489626],[1.775438,49.486863],[1.775771,49.473437],[1.765371,49.465925],[1.760619,49.464519],[1.747434,49.459448],[1.749925,49.456795],[1.748842,49.451436],[1.739918,49.449303],[1.736373,49.447135],[1.733389,49.441216],[1.726078,49.438065],[1.72201,49.421491],[1.713938,49.409225],[1.717574,49.403699],[1.735689,49.406506],[1.740379,49.405683],[1.736382,49.403528],[1.720029,49.395284],[1.742778,49.38077],[1.749902,49.371459],[1.759341,49.368239],[1.760168,49.365326],[1.757629,49.357029],[1.774004,49.335692],[1.770655,49.325571],[1.767545,49.319282],[1.774432,49.306676],[1.77239,49.293664],[1.77535,49.291168],[1.784643,49.292862],[1.796641,49.286464],[1.794084,49.276486],[1.80266,49.273434],[1.800911,49.270063],[1.790289,49.253693],[1.790552,49.246575],[1.786654,49.248819],[1.766896,49.252035],[1.768065,49.255446],[1.75472,49.270009],[1.750536,49.268023],[1.735143,49.269365],[1.727115,49.26509],[1.711646,49.264522],[1.708195,49.262408],[1.708007,49.25622],[1.701428,49.251789],[1.699859,49.248652],[1.701625,49.242305],[1.700984,49.233955],[1.704364,49.232202],[1.702869,49.22885],[1.676291,49.212188],[1.673207,49.205626],[1.676462,49.202848],[1.671348,49.193044],[1.670339,49.189608],[1.671825,49.180893],[1.666334,49.175725],[1.669326,49.169239],[1.661447,49.156806],[1.664304,49.153951],[1.662683,49.152504],[1.653229,49.141761],[1.655991,49.130389],[1.652877,49.128943],[1.648114,49.125032],[1.646559,49.121642],[1.627035,49.105127],[1.620143,49.096981],[1.623322,49.086083],[1.619512,49.084178],[1.608796,49.077894],[1.605928,49.080694],[1.599088,49.084067],[1.594359,49.082753],[1.589843,49.081684],[1.572262,49.076809],[1.569242,49.074129],[1.560832,49.070396],[1.546672,49.072591],[1.541304,49.073182],[1.520998,49.068132],[1.519955,49.071113],[1.516637,49.079922],[1.510269,49.084285],[1.51315,49.077873],[1.503301,49.059099],[1.498032,49.058656],[1.486848,49.051762],[1.47664,49.053629],[1.461614,49.063375],[1.44728,49.053514],[1.451258,49.051335],[1.448209,49.044847],[1.456846,49.036433],[1.457511,49.029696],[1.457762,49.0263],[1.468018,49.020307],[1.471842,49.018629],[1.477096,49.014801],[1.474046,49.00969],[1.478136,49.008231],[1.480401,49.005562],[1.48017,49.00224],[1.470984,48.991115],[1.461702,48.988865],[1.468862,48.977768],[1.470889,48.974817],[1.47826,48.979246],[1.493875,48.979353],[1.507903,48.983773],[1.513493,48.978501],[1.518388,48.978363],[1.514626,48.976113],[1.495147,48.966076],[1.501028,48.953504],[1.510996,48.953574],[1.508641,48.950442],[1.501524,48.941054],[1.497886,48.938885],[1.488865,48.936883],[1.475517,48.940006],[1.461308,48.937558],[1.460016,48.934187],[1.457442,48.927507],[1.447959,48.924641],[1.451638,48.922107],[1.460568,48.90954],[1.461434,48.899603],[1.466411,48.899703],[1.470909,48.894733],[1.465817,48.879134],[1.464201,48.876118],[1.457628,48.871518],[1.453917,48.87022],[1.449832,48.869573],[1.445455,48.867753],[1.431006,48.865829],[1.424008,48.860996],[1.419238,48.86141],[1.404876,48.860734],[1.397999,48.856477],[1.397229,48.853598],[1.390231,48.84629],[1.386001,48.844667],[1.359781,48.831196],[1.35684,48.815584],[1.366436,48.804489],[1.367976,48.802711],[1.370325,48.800746],[1.372743,48.797892],[1.376939,48.78862],[1.373908,48.782372],[1.364022,48.782894],[1.356386,48.779416],[1.355772,48.779047],[1.351444,48.777314],[1.331947,48.762173],[1.322255,48.76058],[1.313623,48.764102],[1.311366,48.764889],[1.306325,48.765492],[1.296969,48.768229],[1.27841,48.76315],[1.273845,48.762517],[1.26812,48.757891],[1.263264,48.757857],[1.254905,48.760047],[1.254072,48.766215],[1.246022,48.769678],[1.241327,48.769267],[1.222613,48.767298],[1.22426,48.764507],[1.226492,48.760078],[1.22295,48.758217],[1.218547,48.760023],[1.188224,48.772755],[1.162975,48.769311],[1.15826,48.769499],[1.149837,48.776755],[1.152118,48.785741],[1.147556,48.785014],[1.121403,48.789194],[1.118939,48.78615],[1.122737,48.769144],[1.113736,48.746304],[1.110197,48.748614],[1.087854,48.753179],[1.088183,48.756459],[1.083981,48.754917],[1.072605,48.749425],[1.063027,48.758969],[1.059135,48.756782],[1.035263,48.739919],[1.036703,48.730208],[1.032593,48.728467],[1.02197,48.734625],[1.018476,48.732075],[1.010955,48.728126],[0.98564,48.72583],[0.982608,48.727227],[0.978288,48.73096],[0.973679,48.729172],[0.959927,48.724016],[0.951191,48.71549],[0.921203,48.709177],[0.919568,48.712334],[0.900159,48.711832],[0.890363,48.719433],[0.876703,48.715591],[0.872837,48.713363],[0.862794,48.687999],[0.850363,48.682953],[0.827667,48.680724],[0.823793,48.678484],[0.814819,48.670168]]]},"properties":{"nom":"Haute-Normandie","code":"23"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[2.281048,46.420405],[2.276283,46.421276],[2.256961,46.423133],[2.253658,46.425651],[2.248883,46.426259],[2.220649,46.423584],[2.197831,46.428298],[2.194075,46.425975],[2.184897,46.423154],[2.180482,46.423204],[2.167786,46.424076],[2.149206,46.423903],[2.140603,46.421101],[2.115972,46.421534],[2.10344,46.410765],[2.088623,46.410071],[2.088749,46.410342],[2.084371,46.411289],[2.072452,46.420108],[2.063459,46.421349],[2.058493,46.420876],[2.029415,46.424595],[2.026334,46.427216],[1.993082,46.430917],[1.990776,46.435229],[1.986597,46.435786],[1.981108,46.440285],[1.976055,46.439501],[1.926119,46.43191],[1.92287,46.434149],[1.919538,46.439962],[1.911556,46.443092],[1.899831,46.438567],[1.895331,46.438236],[1.88768,46.440989],[1.883956,46.43265],[1.878921,46.432375],[1.853747,46.433467],[1.84257,46.426807],[1.818455,46.431423],[1.816986,46.438496],[1.802116,46.448283],[1.798244,46.454906],[1.793694,46.45385],[1.784546,46.455077],[1.74759,46.450021],[1.750092,46.447743],[1.752658,46.445502],[1.758296,46.439917],[1.75527,46.437209],[1.759737,46.427487],[1.748767,46.412318],[1.750549,46.405593],[1.745905,46.404308],[1.72832,46.392406],[1.727841,46.38896],[1.7094,46.393346],[1.683603,46.418178],[1.679335,46.416426],[1.661634,46.404404],[1.65521,46.395116],[1.651332,46.392981],[1.64109,46.385591],[1.627341,46.389425],[1.614415,46.403373],[1.621236,46.419405],[1.609055,46.423166],[1.604991,46.421153],[1.592031,46.407602],[1.577489,46.409097],[1.574357,46.406383],[1.569633,46.405306],[1.555196,46.395893],[1.546253,46.395923],[1.543637,46.416415],[1.534714,46.424298],[1.525351,46.426654],[1.521022,46.425383],[1.510433,46.419211],[1.509319,46.412775],[1.500105,46.405503],[1.497998,46.397388],[1.496954,46.394636],[1.493588,46.397249],[1.479634,46.393974],[1.463704,46.37628],[1.445155,46.37193],[1.437093,46.363111],[1.43659,46.356133],[1.415191,46.347218],[1.411548,46.3495],[1.407003,46.362641],[1.395144,46.368644],[1.396571,46.371897],[1.39195,46.371067],[1.376609,46.383341],[1.373905,46.385861],[1.36255,46.395633],[1.359389,46.397722],[1.344678,46.401598],[1.340492,46.3997],[1.312648,46.393708],[1.321836,46.386566],[1.311035,46.381038],[1.310512,46.374375],[1.28302,46.372208],[1.279554,46.376488],[1.274572,46.376422],[1.26021,46.378716],[1.250656,46.376751],[1.238165,46.366201],[1.21797,46.368256],[1.213319,46.374407],[1.212952,46.388002],[1.208385,46.389146],[1.193499,46.380733],[1.192893,46.377409],[1.18868,46.376937],[1.180777,46.378594],[1.17728,46.383952],[1.1954,46.40002],[1.193411,46.409761],[1.211268,46.429921],[1.213066,46.433083],[1.203363,46.433796],[1.195477,46.429618],[1.185835,46.429303],[1.185483,46.439511],[1.168524,46.446347],[1.16378,46.446775],[1.150917,46.450297],[1.135514,46.470889],[1.152956,46.472838],[1.136125,46.493461],[1.136833,46.496779],[1.145329,46.500069],[1.149143,46.502212],[1.146903,46.505184],[1.12372,46.522324],[1.119414,46.524226],[1.104139,46.533431],[1.090094,46.537584],[1.080132,46.536183],[1.065509,46.539252],[1.020409,46.537147],[1.019938,46.540418],[1.024705,46.549705],[1.014764,46.567764],[1.009906,46.567418],[0.990589,46.566036],[0.982015,46.573271],[0.962437,46.572537],[0.955598,46.577612],[0.941367,46.580879],[0.937758,46.594425],[0.933284,46.594569],[0.916278,46.597125],[0.908477,46.605279],[0.904896,46.618175],[0.893993,46.628658],[0.895518,46.631821],[0.907628,46.646716],[0.915638,46.650672],[0.90734,46.666437],[0.91184,46.67259],[0.907243,46.678136],[0.902262,46.677666],[0.918155,46.690485],[0.927133,46.693602],[0.924812,46.700216],[0.921587,46.702725],[0.910404,46.717411],[0.911172,46.727072],[0.90283,46.730405],[0.898325,46.735799],[0.879803,46.738747],[0.867469,46.748219],[0.865602,46.75104],[0.859743,46.755723],[0.858729,46.759154],[0.84484,46.763019],[0.829396,46.77687],[0.826099,46.786824],[0.813354,46.79168],[0.815597,46.805],[0.810162,46.814192],[0.809857,46.815898],[0.809041,46.819215],[0.807997,46.829139],[0.794667,46.832892],[0.786885,46.841228],[0.796639,46.847351],[0.795013,46.850517],[0.771389,46.850954],[0.766356,46.855846],[0.771792,46.861257],[0.765645,46.865119],[0.753423,46.860585],[0.743522,46.871587],[0.739267,46.872855],[0.729468,46.883183],[0.727284,46.886085],[0.70467,46.902886],[0.703738,46.909362],[0.704874,46.91233],[0.708918,46.917725],[0.703171,46.925825],[0.706179,46.936108],[0.695983,46.959369],[0.695176,46.962244],[0.695275,46.969191],[0.690172,46.97498],[0.660468,46.978984],[0.651538,46.986999],[0.637794,46.98525],[0.63356,46.986659],[0.623984,46.993686],[0.621888,46.999416],[0.623652,47.002416],[0.61849,47.007516],[0.590556,47.006729],[0.585909,47.00611],[0.567742,47.006287],[0.56695,47.002541],[0.567922,46.999661],[0.574382,46.992437],[0.573146,46.989475],[0.573683,46.983388],[0.576876,46.98087],[0.598804,46.974924],[0.601701,46.958888],[0.598205,46.956428],[0.563306,46.955777],[0.554199,46.958475],[0.549556,46.959593],[0.512902,46.955862],[0.50519,46.959911],[0.502577,46.957792],[0.491285,46.955322],[0.486465,46.954019],[0.444803,46.941158],[0.443882,46.938111],[0.43871,46.929582],[0.434521,46.931669],[0.420738,46.936388],[0.405362,46.936133],[0.401134,46.938191],[0.38782,46.943709],[0.38282,46.943749],[0.36463,46.948568],[0.348074,46.936369],[0.343125,46.936706],[0.325352,46.930943],[0.321021,46.932626],[0.310569,46.939707],[0.302029,46.955318],[0.303022,46.958359],[0.306402,46.963933],[0.298206,46.971264],[0.306589,46.978928],[0.291436,46.990267],[0.296088,46.990169],[0.310728,46.997312],[0.308175,46.999928],[0.306204,47.008819],[0.300585,47.021102],[0.309935,47.028031],[0.309074,47.031308],[0.307895,47.047271],[0.298426,47.053977],[0.294508,47.051949],[0.267677,47.044047],[0.264221,47.046434],[0.26355,47.068507],[0.243872,47.070949],[0.235155,47.069164],[0.232832,47.066388],[0.228056,47.061328],[0.208199,47.053237],[0.194404,47.063001],[0.180337,47.059461],[0.175696,47.060726],[0.176727,47.064201],[0.174011,47.067216],[0.177027,47.07383],[0.194951,47.086456],[0.198043,47.092945],[0.185354,47.104042],[0.183487,47.11451],[0.179245,47.113361],[0.167829,47.108362],[0.161917,47.100109],[0.158612,47.102739],[0.134946,47.108371],[0.134144,47.11527],[0.140683,47.124594],[0.137322,47.122259],[0.127952,47.120999],[0.123966,47.126936],[0.110323,47.12929],[0.10472,47.120798],[0.090198,47.121857],[0.082432,47.117797],[0.077943,47.127071],[0.081435,47.133285],[0.07839,47.146335],[0.068953,47.14406],[0.064921,47.146084],[0.05374,47.164611],[0.05664,47.167369],[0.06352,47.176391],[0.066594,47.189802],[0.061892,47.190953],[0.053807,47.198856],[0.068291,47.214196],[0.072876,47.214493],[0.076842,47.219367],[0.072451,47.219878],[0.073838,47.233508],[0.069096,47.243333],[0.076367,47.251931],[0.08011,47.271692],[0.083193,47.274147],[0.087486,47.275526],[0.088557,47.282381],[0.082382,47.286874],[0.100309,47.308205],[0.111109,47.315727],[0.117889,47.32884],[0.117462,47.332343],[0.135494,47.335365],[0.144439,47.342819],[0.147298,47.345376],[0.14285,47.358725],[0.140405,47.361808],[0.15386,47.363093],[0.157666,47.365322],[0.182143,47.381943],[0.168732,47.386013],[0.168249,47.396153],[0.153864,47.398729],[0.156772,47.401448],[0.180943,47.416603],[0.185149,47.426217],[0.184494,47.429597],[0.180874,47.453226],[0.184247,47.455758],[0.19885,47.476413],[0.200659,47.4845],[0.20415,47.48661],[0.220109,47.501953],[0.219715,47.505186],[0.224843,47.527277],[0.207175,47.526675],[0.205637,47.532943],[0.19312,47.538037],[0.200087,47.543168],[0.214089,47.568786],[0.218936,47.573594],[0.230576,47.577312],[0.234568,47.578613],[0.230576,47.585003],[0.230002,47.608398],[0.232709,47.610894],[0.25456,47.612032],[0.259115,47.612301],[0.275412,47.599101],[0.322104,47.595237],[0.339494,47.583179],[0.339107,47.579739],[0.37466,47.570511],[0.378484,47.568526],[0.397913,47.577535],[0.402577,47.578512],[0.3968,47.591361],[0.395085,47.594583],[0.382414,47.609979],[0.373233,47.61334],[0.364557,47.622069],[0.381437,47.639677],[0.382788,47.643103],[0.391499,47.641001],[0.39625,47.640855],[0.426615,47.617726],[0.431741,47.618316],[0.451411,47.621458],[0.459238,47.640594],[0.461177,47.643806],[0.47545,47.64688],[0.478496,47.644182],[0.493419,47.645079],[0.498418,47.644763],[0.516741,47.656222],[0.525724,47.653936],[0.545247,47.657166],[0.555785,47.66397],[0.559603,47.666175],[0.558792,47.670796],[0.588942,47.670053],[0.612683,47.682913],[0.61868,47.692265],[0.614431,47.694214],[0.611211,47.691663],[0.60454,47.686681],[0.595902,47.689251],[0.592798,47.702181],[0.580315,47.712378],[0.580508,47.712832],[0.594084,47.723035],[0.608728,47.725299],[0.611604,47.72814],[0.610668,47.732038],[0.61795,47.736635],[0.6199,47.746174],[0.626331,47.751356],[0.646097,47.753052],[0.650273,47.754928],[0.6512,47.755117],[0.670962,47.767308],[0.674985,47.768775],[0.692446,47.764348],[0.697354,47.764192],[0.702633,47.769671],[0.691748,47.783531],[0.702679,47.789652],[0.711896,47.787213],[0.712824,47.79049],[0.730115,47.805476],[0.73379,47.807699],[0.740279,47.81256],[0.747692,47.827838],[0.756337,47.830822],[0.758989,47.833583],[0.768413,47.831107],[0.774046,47.840596],[0.773852,47.850649],[0.770099,47.852747],[0.759165,47.859229],[0.76353,47.865164],[0.757341,47.884682],[0.759813,47.898091],[0.763737,47.899975],[0.768069,47.901399],[0.786998,47.911751],[0.794073,47.907436],[0.797868,47.897964],[0.813238,47.889483],[0.816836,47.891827],[0.815816,47.895158],[0.810811,47.918157],[0.816349,47.934277],[0.845193,47.941192],[0.848378,47.943933],[0.845574,47.953902],[0.842824,47.956598],[0.836839,47.968938],[0.829036,47.972576],[0.824356,47.981744],[0.820383,47.988035],[0.830555,47.996046],[0.835775,48.009142],[0.840591,48.019007],[0.838332,48.032613],[0.813335,48.031449],[0.807136,48.036591],[0.797551,48.03725],[0.794879,48.046931],[0.793995,48.069438],[0.838376,48.071305],[0.843023,48.072642],[0.84501,48.092771],[0.830283,48.091141],[0.816151,48.094634],[0.817906,48.097682],[0.837246,48.100919],[0.841217,48.103062],[0.843301,48.106008],[0.855009,48.123856],[0.850372,48.13308],[0.914338,48.135848],[0.91665,48.138941],[0.90961,48.143533],[0.911465,48.146968],[0.909365,48.150073],[0.884466,48.161844],[0.860645,48.166653],[0.840574,48.165531],[0.83656,48.167618],[0.833111,48.16904],[0.82786,48.173039],[0.81124,48.184722],[0.797528,48.188167],[0.797655,48.194461],[0.80674,48.197448],[0.80662,48.204224],[0.829446,48.211369],[0.822102,48.223557],[0.787321,48.261445],[0.791517,48.265231],[0.785981,48.271204],[0.794042,48.284127],[0.802328,48.288196],[0.807066,48.289733],[0.797486,48.291445],[0.778584,48.302109],[0.764576,48.299991],[0.760447,48.298131],[0.757286,48.300771],[0.769615,48.315135],[0.769234,48.321879],[0.778368,48.329953],[0.781343,48.332691],[0.785039,48.337585],[0.785432,48.340436],[0.788027,48.341322],[0.813732,48.348811],[0.818405,48.349419],[0.824902,48.344804],[0.827867,48.342311],[0.841975,48.349896],[0.840028,48.352911],[0.853889,48.349113],[0.869034,48.357235],[0.883707,48.356724],[0.894525,48.367825],[0.896387,48.370909],[0.904504,48.372627],[0.907347,48.370104],[0.922214,48.382524],[0.926529,48.384112],[0.929503,48.39059],[0.948381,48.401645],[0.945291,48.418115],[0.973173,48.436225],[0.976416,48.438773],[0.974317,48.441986],[0.963768,48.441976],[0.955273,48.445817],[0.940331,48.460173],[0.937356,48.470453],[0.936714,48.473006],[0.935709,48.475509],[0.953055,48.480156],[0.955507,48.489476],[0.955397,48.49266],[0.951279,48.493408],[0.941554,48.498693],[0.954658,48.504669],[0.96615,48.520507],[0.96774,48.523881],[0.962768,48.524228],[0.931842,48.534151],[0.924168,48.53803],[0.937141,48.548596],[0.925711,48.559654],[0.921331,48.559353],[0.910268,48.564135],[0.905802,48.565982],[0.892944,48.571829],[0.867284,48.573946],[0.849312,48.585941],[0.845909,48.609015],[0.826926,48.610299],[0.822398,48.608875],[0.818206,48.615043],[0.827771,48.631127],[0.831762,48.633423],[0.822818,48.635338],[0.821978,48.644744],[0.823565,48.650667],[0.819748,48.652955],[0.809946,48.66423],[0.814819,48.670168],[0.823793,48.678484],[0.827667,48.680724],[0.850363,48.682953],[0.862794,48.687999],[0.872837,48.713363],[0.876703,48.715591],[0.890363,48.719433],[0.900159,48.711832],[0.919568,48.712334],[0.921203,48.709177],[0.951191,48.71549],[0.959927,48.724016],[0.973679,48.729172],[0.978288,48.73096],[0.982608,48.727227],[0.98564,48.72583],[1.010955,48.728126],[1.018476,48.732075],[1.02197,48.734625],[1.032593,48.728467],[1.036703,48.730208],[1.035263,48.739919],[1.059135,48.756782],[1.063027,48.758969],[1.072605,48.749425],[1.083981,48.754917],[1.088183,48.756459],[1.087854,48.753179],[1.110197,48.748614],[1.113736,48.746304],[1.122737,48.769144],[1.118939,48.78615],[1.121403,48.789194],[1.147556,48.785014],[1.152118,48.785741],[1.149837,48.776755],[1.15826,48.769499],[1.162975,48.769311],[1.188224,48.772755],[1.218547,48.760023],[1.22295,48.758217],[1.226492,48.760078],[1.22426,48.764507],[1.222613,48.767298],[1.241327,48.769267],[1.246022,48.769678],[1.254072,48.766215],[1.254905,48.760047],[1.263264,48.757857],[1.26812,48.757891],[1.273845,48.762517],[1.27841,48.76315],[1.296969,48.768229],[1.306325,48.765492],[1.311366,48.764889],[1.313623,48.764102],[1.322255,48.76058],[1.331947,48.762173],[1.351444,48.777314],[1.355772,48.779047],[1.356386,48.779416],[1.364022,48.782894],[1.373908,48.782372],[1.376939,48.78862],[1.372743,48.797892],[1.370325,48.800746],[1.367976,48.802711],[1.366436,48.804489],[1.35684,48.815584],[1.359781,48.831196],[1.386001,48.844667],[1.390231,48.84629],[1.397229,48.853598],[1.397999,48.856477],[1.404876,48.860734],[1.419238,48.86141],[1.424008,48.860996],[1.431006,48.865829],[1.445455,48.867753],[1.449832,48.869573],[1.453917,48.87022],[1.457628,48.871518],[1.464201,48.876118],[1.465817,48.879134],[1.470909,48.894733],[1.466411,48.899703],[1.461434,48.899603],[1.460568,48.90954],[1.451638,48.922107],[1.447959,48.924641],[1.457442,48.927507],[1.460016,48.934187],[1.461308,48.937558],[1.475517,48.940006],[1.488865,48.936883],[1.497886,48.938885],[1.501524,48.941054],[1.501797,48.941057],[1.511543,48.933506],[1.508132,48.92724],[1.513925,48.921808],[1.522955,48.924887],[1.538249,48.921693],[1.540523,48.918483],[1.541664,48.915754],[1.544341,48.910794],[1.538521,48.906685],[1.558716,48.891369],[1.563742,48.890629],[1.561309,48.887839],[1.546231,48.872438],[1.554899,48.865734],[1.558839,48.864252],[1.559904,48.867125],[1.568638,48.865845],[1.572072,48.863925],[1.582962,48.857498],[1.577939,48.84776],[1.577269,48.844361],[1.58207,48.844211],[1.586621,48.843203],[1.594894,48.839136],[1.594496,48.835696],[1.581793,48.829825],[1.590483,48.817335],[1.582798,48.81092],[1.579434,48.808902],[1.576732,48.785167],[1.587594,48.773611],[1.582928,48.767556],[1.584907,48.763298],[1.605226,48.760586],[1.62496,48.749031],[1.622705,48.740154],[1.620258,48.736006],[1.61504,48.735306],[1.590011,48.712875],[1.594878,48.709316],[1.580727,48.701349],[1.584038,48.699023],[1.582189,48.696059],[1.606656,48.689196],[1.611295,48.688458],[1.608626,48.682058],[1.606204,48.679124],[1.601707,48.666441],[1.602707,48.663097],[1.607566,48.659618],[1.622748,48.650322],[1.643197,48.651294],[1.640838,48.644889],[1.647055,48.639679],[1.651575,48.638129],[1.649567,48.632276],[1.656909,48.628095],[1.657429,48.621561],[1.663558,48.616412],[1.666354,48.613708],[1.681592,48.619051],[1.690247,48.616951],[1.685197,48.613279],[1.687762,48.611094],[1.691234,48.613301],[1.709778,48.613386],[1.717432,48.610572],[1.717849,48.607392],[1.704474,48.588165],[1.701989,48.584999],[1.706156,48.583173],[1.709253,48.578024],[1.726923,48.572844],[1.744584,48.574102],[1.748456,48.576032],[1.761507,48.571661],[1.764943,48.562206],[1.776034,48.555654],[1.778178,48.552626],[1.782719,48.553168],[1.787245,48.553745],[1.776301,48.526813],[1.776842,48.512874],[1.789428,48.494442],[1.78664,48.491471],[1.793193,48.486698],[1.796336,48.484192],[1.793066,48.481631],[1.803139,48.466582],[1.808028,48.465758],[1.833171,48.46734],[1.837137,48.461144],[1.839126,48.458032],[1.847344,48.446632],[1.857023,48.446212],[1.861091,48.444461],[1.874392,48.440287],[1.879442,48.440668],[1.884121,48.44001],[1.90452,48.440263],[1.91015,48.445929],[1.919886,48.447935],[1.922149,48.4576],[1.928572,48.455733],[1.930628,48.453718],[1.932512,48.445548],[1.93833,48.441398],[1.942895,48.440998],[1.937301,48.435442],[1.939016,48.42216],[1.925893,48.412747],[1.930424,48.403953],[1.957737,48.40515],[1.962226,48.404325],[1.974978,48.401737],[1.977244,48.399165],[1.968537,48.383623],[1.966722,48.380422],[1.977025,48.379189],[1.983903,48.366445],[1.987356,48.363811],[1.975622,48.356881],[1.97062,48.339994],[1.982344,48.328317],[1.975601,48.323319],[1.977212,48.314011],[1.959227,48.30869],[1.961905,48.302846],[1.966219,48.296774],[1.975456,48.29402],[1.978957,48.287995],[1.989021,48.286984],[1.994085,48.286586],[2.009276,48.285319],[2.028994,48.288632],[2.043236,48.286166],[2.051468,48.290209],[2.052708,48.295474],[2.087542,48.294506],[2.099895,48.304714],[2.108709,48.307462],[2.113717,48.307248],[2.111702,48.300367],[2.1106,48.296949],[2.141159,48.29928],[2.161589,48.298437],[2.16239,48.301511],[2.155435,48.305456],[2.153878,48.308406],[2.152668,48.314821],[2.166995,48.313033],[2.170835,48.31504],[2.177842,48.312929],[2.181484,48.313791],[2.182947,48.323825],[2.20709,48.344944],[2.21469,48.336672],[2.231822,48.329766],[2.24631,48.329968],[2.239599,48.319128],[2.238047,48.316373],[2.248218,48.315422],[2.245229,48.301852],[2.245157,48.298397],[2.2501,48.299751],[2.254851,48.301418],[2.265536,48.312669],[2.269118,48.315049],[2.296706,48.308855],[2.300208,48.311242],[2.312424,48.330118],[2.317182,48.331567],[2.326154,48.330638],[2.32931,48.332833],[2.340362,48.318796],[2.355802,48.310433],[2.369945,48.308673],[2.398936,48.315257],[2.402664,48.320719],[2.417749,48.302206],[2.420762,48.299251],[2.423098,48.292776],[2.418346,48.279895],[2.420109,48.266704],[2.421716,48.263877],[2.435639,48.254848],[2.440144,48.253205],[2.444509,48.254485],[2.4518,48.250425],[2.465405,48.253259],[2.46909,48.255282],[2.476787,48.250826],[2.480612,48.241386],[2.484178,48.238973],[2.501745,48.238706],[2.506192,48.238536],[2.507345,48.228985],[2.51535,48.22693],[2.514119,48.214382],[2.517404,48.214378],[2.519932,48.201377],[2.523011,48.198762],[2.520296,48.193919],[2.515406,48.193008],[2.508843,48.180923],[2.514911,48.164842],[2.506327,48.156438],[2.502032,48.158444],[2.483238,48.164518],[2.480872,48.16161],[2.47185,48.154597],[2.474045,48.15161],[2.461097,48.138207],[2.444256,48.13147],[2.442692,48.125487],[2.455859,48.123389],[2.458954,48.125608],[2.477562,48.129102],[2.517284,48.125897],[2.52221,48.125215],[2.521724,48.128417],[2.534395,48.13806],[2.537505,48.14052],[2.565815,48.141086],[2.570563,48.140816],[2.577868,48.131781],[2.599014,48.131602],[2.634454,48.138331],[2.639666,48.13895],[2.661585,48.123439],[2.664748,48.120542],[2.66757,48.120667],[2.675484,48.12517],[2.706547,48.124819],[2.722461,48.137411],[2.750335,48.144869],[2.755198,48.145653],[2.754255,48.151905],[2.738384,48.163416],[2.736406,48.166309],[2.754682,48.16139],[2.77668,48.165726],[2.780977,48.167363],[2.79024,48.165301],[2.798959,48.168025],[2.810918,48.164067],[2.810418,48.160818],[2.800412,48.153612],[2.797907,48.140551],[2.799465,48.137396],[2.802391,48.131462],[2.816334,48.130431],[2.82088,48.129664],[2.823316,48.132782],[2.838308,48.135908],[2.864438,48.152902],[2.866823,48.156036],[2.870991,48.156473],[2.895207,48.158953],[2.900047,48.159434],[2.931137,48.162813],[2.936314,48.163392],[2.951969,48.164362],[2.959952,48.155385],[2.963612,48.152866],[2.978176,48.150584],[2.987615,48.152278],[2.994044,48.1431],[3.002138,48.14166],[3.003886,48.144864],[3.01323,48.143477],[3.019049,48.13778],[3.023122,48.135674],[3.027273,48.130697],[3.015884,48.115708],[3.0351,48.115632],[3.041212,48.096481],[3.042902,48.093376],[3.050194,48.09124],[3.049882,48.088253],[3.050471,48.072334],[3.060278,48.064699],[3.078932,48.060242],[3.090345,48.053944],[3.095365,48.053976],[3.090536,48.04822],[3.09762,48.039558],[3.119731,48.032473],[3.124263,48.031128],[3.120648,48.028603],[3.102176,48.022456],[3.10115,48.019028],[3.10657,48.013183],[3.120845,48.009363],[3.121123,47.995936],[3.126676,47.991268],[3.122989,47.985198],[3.128498,47.979513],[3.128119,47.972512],[3.113425,47.963348],[3.105272,47.946941],[3.10076,47.947989],[3.088683,47.943184],[3.08394,47.942431],[3.078743,47.933274],[3.065214,47.930519],[3.063161,47.927334],[3.053812,47.92445],[3.048244,47.911331],[3.030666,47.907836],[3.011818,47.904825],[3.01543,47.898498],[3.007226,47.895295],[3.011491,47.875099],[2.994904,47.86735],[3.018188,47.861193],[3.023297,47.861021],[3.026906,47.858924],[3.033824,47.843874],[3.030665,47.837476],[3.013874,47.831836],[3.013992,47.825032],[3.019403,47.819451],[3.015473,47.813539],[3.019882,47.813043],[3.024344,47.813078],[3.024263,47.809658],[3.027584,47.799766],[3.023798,47.786375],[3.018803,47.786475],[2.988902,47.786125],[2.98045,47.782523],[2.977353,47.779958],[2.954511,47.774263],[2.947189,47.76579],[2.937484,47.766299],[2.935592,47.763247],[2.93056,47.76283],[2.912915,47.769388],[2.908379,47.768017],[2.899667,47.764922],[2.856477,47.761736],[2.853882,47.758682],[2.858407,47.748679],[2.852539,47.728151],[2.84865,47.725796],[2.851135,47.71967],[2.848969,47.71685],[2.861175,47.710943],[2.877733,47.718846],[2.883507,47.713452],[2.879661,47.703781],[2.884065,47.702075],[2.888655,47.700568],[2.893098,47.69888],[2.92416,47.682496],[2.918155,47.6698],[2.928231,47.658439],[2.937223,47.659056],[2.941581,47.657537],[2.951156,47.647902],[2.954234,47.645689],[2.939684,47.638364],[2.936158,47.636427],[2.934061,47.630152],[2.932321,47.627046],[2.943619,47.607763],[2.940355,47.598211],[2.945698,47.592255],[2.959327,47.587517],[2.96487,47.574458],[2.974821,47.572714],[2.976538,47.569429],[2.971791,47.567916],[2.958658,47.55738],[2.953843,47.558611],[2.914297,47.56597],[2.912958,47.563638],[2.909374,47.559612],[2.905814,47.557466],[2.883392,47.55272],[2.878366,47.55267],[2.868583,47.546008],[2.85663,47.551412],[2.845187,47.544935],[2.846885,47.541534],[2.874625,47.520423],[2.887256,47.510615],[2.889574,47.507764],[2.891632,47.501942],[2.892395,47.498981],[2.89713,47.488733],[2.897163,47.48515],[2.91778,47.463787],[2.919191,47.46062],[2.919831,47.45873],[2.931885,47.436809],[2.931557,47.433433],[2.920906,47.423155],[2.91962,47.413657],[2.919771,47.410471],[2.893026,47.369085],[2.890555,47.365995],[2.88208,47.357587],[2.879782,47.354533],[2.877113,47.35156],[2.870247,47.342343],[2.873695,47.329104],[2.879024,47.320279],[2.89495,47.313768],[2.899453,47.312745],[2.909119,47.310584],[2.912962,47.308318],[2.916129,47.305647],[2.923336,47.300844],[2.92678,47.298452],[2.941563,47.285155],[2.973547,47.269943],[2.981658,47.262509],[2.982757,47.256558],[2.981806,47.253524],[2.979026,47.229064],[2.991122,47.209691],[2.993844,47.206676],[2.995918,47.203804],[2.997741,47.200851],[3.015206,47.162435],[3.015945,47.159095],[3.019283,47.156285],[3.020588,47.152981],[3.017179,47.139783],[3.02496,47.131112],[3.028283,47.128437],[3.029382,47.111656],[3.03,47.108315],[3.03025,47.107055],[3.030102,47.103508],[3.031362,47.092884],[3.022524,47.080164],[3.020041,47.066786],[3.022241,47.063652],[3.050517,47.050679],[3.053966,47.048255],[3.060101,47.045858],[3.063618,47.046171],[3.072676,47.033282],[3.074778,47.029994],[3.074759,47.015859],[3.073675,47.012375],[3.065841,47.00046],[3.065324,46.997174],[3.062751,46.980258],[3.075119,46.962063],[3.079337,46.960242],[3.078275,46.953427],[3.068254,46.941521],[3.066029,46.938426],[3.064553,46.935734],[3.050227,46.909154],[3.058074,46.900282],[3.061145,46.897381],[3.062334,46.892347],[3.063605,46.889951],[3.069402,46.852258],[3.056647,46.841974],[3.054584,46.83877],[3.05694,46.833915],[3.058486,46.831592],[3.057639,46.825136],[3.041154,46.812673],[3.039067,46.809621],[3.032122,46.798063],[3.032068,46.794911],[3.027584,46.793373],[3.01614,46.799831],[2.996604,46.79696],[2.979899,46.803423],[2.959915,46.803877],[2.952503,46.792682],[2.944387,46.792993],[2.93989,46.793189],[2.936099,46.795393],[2.912941,46.790192],[2.908913,46.784471],[2.910924,46.781348],[2.898967,46.775675],[2.894344,46.774167],[2.880422,46.77003],[2.875346,46.760642],[2.844634,46.742362],[2.843818,46.739228],[2.845727,46.726616],[2.841168,46.727321],[2.827485,46.735333],[2.822561,46.735415],[2.793416,46.733557],[2.782748,46.722462],[2.77475,46.718953],[2.771375,46.72126],[2.758521,46.717659],[2.755115,46.72391],[2.743797,46.730548],[2.734528,46.746221],[2.730642,46.747995],[2.704833,46.739036],[2.703898,46.725599],[2.698463,46.721065],[2.688603,46.721183],[2.676175,46.710839],[2.677795,46.704612],[2.674262,46.702279],[2.656179,46.697355],[2.648081,46.688957],[2.628221,46.690308],[2.623478,46.689311],[2.621638,46.679274],[2.631838,46.672203],[2.63156,46.668798],[2.623914,46.656627],[2.60704,46.662639],[2.606155,46.669299],[2.570551,46.659267],[2.570439,46.656808],[2.566995,46.652482],[2.588997,46.648097],[2.5931,46.646581],[2.596325,46.636723],[2.584599,46.626362],[2.588657,46.616949],[2.572922,46.610454],[2.568383,46.609392],[2.57738,46.606733],[2.583888,46.594592],[2.598461,46.59531],[2.60834,46.57295],[2.609356,46.569613],[2.605668,46.563288],[2.613262,46.554607],[2.576552,46.538521],[2.570133,46.533409],[2.55179,46.528405],[2.540403,46.521921],[2.536652,46.519709],[2.532682,46.521701],[2.529408,46.527801],[2.520282,46.529925],[2.50976,46.523451],[2.500235,46.522149],[2.496526,46.531155],[2.482929,46.532697],[2.478655,46.530724],[2.446148,46.521044],[2.437939,46.525282],[2.427808,46.525979],[2.414634,46.520833],[2.384099,46.518296],[2.3683,46.518435],[2.363697,46.517239],[2.334315,46.499566],[2.324969,46.487742],[2.32963,46.481826],[2.330814,46.478862],[2.321409,46.46891],[2.316996,46.468505],[2.313097,46.470769],[2.305465,46.475433],[2.284666,46.45136],[2.278432,46.427215],[2.281048,46.420405]]]},"properties":{"nom":"Centre","code":"24"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-0.860363,48.501458],[-0.864503,48.499892],[-0.896033,48.494871],[-0.899357,48.497482],[-0.909357,48.497279],[-0.918084,48.50072],[-0.923879,48.513139],[-0.944042,48.514642],[-0.953884,48.516791],[-0.96223,48.512775],[-0.963867,48.502686],[-0.973776,48.494834],[-1.002975,48.48907],[-1.011839,48.492995],[-1.060748,48.515392],[-1.062997,48.51309],[-1.070165,48.508494],[-1.1012,48.512885],[-1.117277,48.521652],[-1.122244,48.521362],[-1.132159,48.521729],[-1.145709,48.517654],[-1.161961,48.524247],[-1.166724,48.530079],[-1.188368,48.528687],[-1.19316,48.529248],[-1.206894,48.542194],[-1.208259,48.539092],[-1.232492,48.537636],[-1.249016,48.543668],[-1.249493,48.543696],[-1.254221,48.543274],[-1.27291,48.533721],[-1.269817,48.531048],[-1.269542,48.524356],[-1.279004,48.509177],[-1.283385,48.508533],[-1.287629,48.509533],[-1.290184,48.506792],[-1.30455,48.498803],[-1.318768,48.497286],[-1.321808,48.499798],[-1.326326,48.498525],[-1.330412,48.485961],[-1.332739,48.488858],[-1.341415,48.489208],[-1.348477,48.479894],[-1.346533,48.473118],[-1.374943,48.459262],[-1.382967,48.456875],[-1.399391,48.461159],[-1.404237,48.46143],[-1.427752,48.462347],[-1.440356,48.472175],[-1.435747,48.477916],[-1.449399,48.486766],[-1.457581,48.485432],[-1.466134,48.487976],[-1.47467,48.485879],[-1.485862,48.490737],[-1.489947,48.489375],[-1.495588,48.505047],[-1.495733,48.508312],[-1.498528,48.511018],[-1.515309,48.530294],[-1.517781,48.529848],[-1.519766,48.539657],[-1.53311,48.549439],[-1.527171,48.561901],[-1.521005,48.567055],[-1.527773,48.575772],[-1.527747,48.57908],[-1.542011,48.580869],[-1.538887,48.597459],[-1.545464,48.606092],[-1.554664,48.609227],[-1.558303,48.611232],[-1.566049,48.614827],[-1.571087,48.626446],[-1.553792,48.629488],[-1.549446,48.630158],[-1.520247,48.627613],[-1.516621,48.621507],[-1.515647,48.618256],[-1.512305,48.616211],[-1.511937,48.613207],[-1.508061,48.618687],[-1.480794,48.619393],[-1.475995,48.619051],[-1.453439,48.624168],[-1.448692,48.623481],[-1.430117,48.63457],[-1.427017,48.64083],[-1.422596,48.6424],[-1.420876,48.639256],[-1.391553,48.643927],[-1.371804,48.641537],[-1.361667,48.634081],[-1.352426,48.631329],[-1.347353,48.631443],[-1.345475,48.632727],[-1.348359,48.631937],[-1.351354,48.632485],[-1.364427,48.646952],[-1.369988,48.646478],[-1.377601,48.650693],[-1.392769,48.65063],[-1.400675,48.659104],[-1.380209,48.682794],[-1.376541,48.684803],[-1.374995,48.687787],[-1.372288,48.693796],[-1.375536,48.691479],[-1.394562,48.677941],[-1.399004,48.676084],[-1.431561,48.665877],[-1.439354,48.657073],[-1.444374,48.656147],[-1.449256,48.669397],[-1.457399,48.673651],[-1.48655,48.686323],[-1.496102,48.6838],[-1.504902,48.687396],[-1.506943,48.690544],[-1.517312,48.71335],[-1.518701,48.716658],[-1.529156,48.729982],[-1.53324,48.731376],[-1.552711,48.732427],[-1.556378,48.734647],[-1.57088,48.743939],[-1.574582,48.754158],[-1.570844,48.767004],[-1.570309,48.770385],[-1.569352,48.788232],[-1.572764,48.815939],[-1.575568,48.82239],[-1.585923,48.82983],[-1.609851,48.833008],[-1.607401,48.836778],[-1.594983,48.842508],[-1.591833,48.84517],[-1.58456,48.849377],[-1.579525,48.858857],[-1.577962,48.862043],[-1.572787,48.881609],[-1.572119,48.884895],[-1.571132,48.890599],[-1.561525,48.927637],[-1.557702,48.931583],[-1.559572,48.912695],[-1.553785,48.8978],[-1.551397,48.89799],[-1.551386,48.908791],[-1.543453,48.931386],[-1.550169,48.940319],[-1.562205,48.940825],[-1.562437,48.947049],[-1.561831,48.951207],[-1.561456,48.968281],[-1.562258,48.978032],[-1.561999,48.981312],[-1.559253,48.998656],[-1.556631,48.999818],[-1.552134,48.990685],[-1.550058,48.991989],[-1.55156,48.998192],[-1.556967,49.011281],[-1.55607,49.024924],[-1.534801,49.034016],[-1.518343,49.025451],[-1.513915,49.02351],[-1.510284,49.021124],[-1.505913,49.019361],[-1.504679,49.020137],[-1.508524,49.026405],[-1.538189,49.039553],[-1.542564,49.041324],[-1.555303,49.036779],[-1.559912,49.038252],[-1.569816,49.030165],[-1.576883,49.017115],[-1.576108,49.006778],[-1.581948,49.004528],[-1.595358,49.027181],[-1.607322,49.06765],[-1.606272,49.068645],[-1.599231,49.056332],[-1.598095,49.060222],[-1.6006,49.073311],[-1.610165,49.083581],[-1.605427,49.111881],[-1.594853,49.130317],[-1.585285,49.131069],[-1.580298,49.131476],[-1.594782,49.140812],[-1.596134,49.144128],[-1.604218,49.188542],[-1.605505,49.191888],[-1.605572,49.205286],[-1.61192,49.218046],[-1.572085,49.222132],[-1.567259,49.220883],[-1.567629,49.221185],[-1.587432,49.232859],[-1.613567,49.234796],[-1.6228,49.226256],[-1.624932,49.215971],[-1.632059,49.214806],[-1.648982,49.232534],[-1.650697,49.235854],[-1.65928,49.255533],[-1.660664,49.258829],[-1.66574,49.266278],[-1.667599,49.268719],[-1.675794,49.280342],[-1.661433,49.280754],[-1.664166,49.285863],[-1.684741,49.288829],[-1.690647,49.294579],[-1.692944,49.297731],[-1.698584,49.305689],[-1.699953,49.308472],[-1.708234,49.324502],[-1.682834,49.330768],[-1.702657,49.331933],[-1.721197,49.326445],[-1.745723,49.348014],[-1.74914,49.350536],[-1.75249,49.353088],[-1.757904,49.357522],[-1.760222,49.359934],[-1.77999,49.372093],[-1.778986,49.373898],[-1.763286,49.372195],[-1.769985,49.376631],[-1.780348,49.377734],[-1.793443,49.371722],[-1.80894,49.373907],[-1.8105,49.377312],[-1.822957,49.398995],[-1.823033,49.415408],[-1.823064,49.435614],[-1.823429,49.438625],[-1.833949,49.465192],[-1.836419,49.468245],[-1.846017,49.474786],[-1.845318,49.491265],[-1.845644,49.49443],[-1.849683,49.506749],[-1.855867,49.511174],[-1.860493,49.512132],[-1.870951,49.513333],[-1.882401,49.520454],[-1.886622,49.537329],[-1.881127,49.542836],[-1.863029,49.550442],[-1.857916,49.551395],[-1.854536,49.556338],[-1.843455,49.568999],[-1.841157,49.571639],[-1.84158,49.579788],[-1.841839,49.582821],[-1.842243,49.59722],[-1.844195,49.613627],[-1.860529,49.650265],[-1.864844,49.652334],[-1.870463,49.656016],[-1.873562,49.657683],[-1.887468,49.659681],[-1.894341,49.663969],[-1.898261,49.665801],[-1.919443,49.66653],[-1.945515,49.677526],[-1.937622,49.686598],[-1.935886,49.689901],[-1.94671,49.705387],[-1.943888,49.722437],[-1.936063,49.726103],[-1.910356,49.722616],[-1.891362,49.710597],[-1.890333,49.707236],[-1.880731,49.705974],[-1.875839,49.706782],[-1.861135,49.714924],[-1.85203,49.715981],[-1.849802,49.713126],[-1.839749,49.711204],[-1.827099,49.692775],[-1.818792,49.690035],[-1.814473,49.68882],[-1.79494,49.68753],[-1.767209,49.68015],[-1.762675,49.67868],[-1.719858,49.679658],[-1.70879,49.672904],[-1.704438,49.670822],[-1.694778,49.670295],[-1.68604,49.673324],[-1.679176,49.668953],[-1.683579,49.667505],[-1.67968,49.661723],[-1.670779,49.657781],[-1.654778,49.657027],[-1.64938,49.656828],[-1.629516,49.659945],[-1.625563,49.658556],[-1.628991,49.652458],[-1.623596,49.64675],[-1.608396,49.645905],[-1.602854,49.645791],[-1.6031,49.655773],[-1.595719,49.654477],[-1.588753,49.652715],[-1.569005,49.656682],[-1.553883,49.654082],[-1.548801,49.654614],[-1.531088,49.655303],[-1.505924,49.662539],[-1.502227,49.664638],[-1.491636,49.670043],[-1.488012,49.668251],[-1.483499,49.678003],[-1.475625,49.682487],[-1.472808,49.695488],[-1.452667,49.691871],[-1.431857,49.700515],[-1.426995,49.701889],[-1.391547,49.706126],[-1.365451,49.705859],[-1.351406,49.702736],[-1.346798,49.701407],[-1.328948,49.700505],[-1.32481,49.698816],[-1.304892,49.694582],[-1.29985,49.693519],[-1.268552,49.694649],[-1.270748,49.681568],[-1.265525,49.675804],[-1.261931,49.673275],[-1.257301,49.66946],[-1.256473,49.666834],[-1.239988,49.650754],[-1.243241,49.648202],[-1.230154,49.625495],[-1.228886,49.611644],[-1.235476,49.607932],[-1.250156,49.612116],[-1.255504,49.612307],[-1.271874,49.570586],[-1.276676,49.573737],[-1.271306,49.583376],[-1.280386,49.586359],[-1.285581,49.587067],[-1.297331,49.581251],[-1.300378,49.578632],[-1.307363,49.563246],[-1.307799,49.560036],[-1.309562,49.548408],[-1.307773,49.545717],[-1.304859,49.537523],[-1.302622,49.535091],[-1.290846,49.52127],[-1.289678,49.518206],[-1.28099,49.510674],[-1.278419,49.508019],[-1.273592,49.503492],[-1.256987,49.484896],[-1.254042,49.481867],[-1.234004,49.465352],[-1.230736,49.462559],[-1.225604,49.457914],[-1.223118,49.455552],[-1.215123,49.449305],[-1.212361,49.447277],[-1.199823,49.437767],[-1.196795,49.435334],[-1.191718,49.43146],[-1.189345,49.429436],[-1.170925,49.412098],[-1.16207,49.391818],[-1.165032,49.385128],[-1.179204,49.37525],[-1.1768,49.368393],[-1.177537,49.364902],[-1.163876,49.366571],[-1.137164,49.357282],[-1.136049,49.354043],[-1.119623,49.355568],[-1.115399,49.351509],[-1.116896,49.361116],[-1.093408,49.378736],[-1.089835,49.381125],[-1.073854,49.38946],[-1.058433,49.390609],[-1.048768,49.388332],[-1.024409,49.392259],[-1.019456,49.393279],[-0.989825,49.397204],[-0.985018,49.39585],[-0.966293,49.396745],[-0.961539,49.396433],[-0.930502,49.393198],[-0.925348,49.392511],[-0.916462,49.386437],[-0.912785,49.384855],[-0.886364,49.373234],[-0.881651,49.371595],[-0.865136,49.366571],[-0.860979,49.365336],[-0.832263,49.358673],[-0.827289,49.35794],[-0.793764,49.354129],[-0.788978,49.353487],[-0.750794,49.349352],[-0.745725,49.349167],[-0.724522,49.347015],[-0.719149,49.346992],[-0.672752,49.345919],[-0.66755,49.345969],[-0.649337,49.346485],[-0.645149,49.345297],[-0.630396,49.341549],[-0.625153,49.340626],[-0.611433,49.340173],[-0.593496,49.340853],[-0.572645,49.343415],[-0.558218,49.345892],[-0.553247,49.346102],[-0.511079,49.344501],[-0.505871,49.34386],[-0.471589,49.338039],[-0.466605,49.337444],[-0.438399,49.335057],[-0.43362,49.33504],[-0.402614,49.333785],[-0.397515,49.333074],[-0.380078,49.328561],[-0.375835,49.32724],[-0.363549,49.323543],[-0.359523,49.32218],[-0.343029,49.315737],[-0.339703,49.313462],[-0.31365,49.302511],[-0.309229,49.300716],[-0.291954,49.295628],[-0.287498,49.294553],[-0.283353,49.293622],[-0.279146,49.292801],[-0.253851,49.289995],[-0.230361,49.283222],[-0.225694,49.281826],[-0.20626,49.286231],[-0.174875,49.286008],[-0.169663,49.286244],[-0.14424,49.288835],[-0.139239,49.289604],[-0.09254,49.29824],[-0.087169,49.29791],[-0.082723,49.301775],[-0.071092,49.306066],[-0.066155,49.307028],[-0.044973,49.312701],[-0.040899,49.314081],[-0.018065,49.319863],[-0.013498,49.321065],[0.010636,49.330625],[0.014308,49.332569],[0.028093,49.339862],[0.031425,49.34177],[0.04982,49.350856],[0.053299,49.352866],[0.058294,49.356073],[0.071983,49.367919],[0.075406,49.365852],[0.101641,49.387442],[0.10539,49.389879],[0.12787,49.402117],[0.132337,49.403572],[0.144745,49.40624],[0.148789,49.407397],[0.179885,49.413666],[0.184686,49.415361],[0.222823,49.427242],[0.270271,49.428501],[0.275543,49.428665],[0.280583,49.428787],[0.285603,49.429026],[0.297224,49.429862],[0.29781,49.409253],[0.308366,49.390287],[0.309068,49.386885],[0.306587,49.383996],[0.301714,49.371305],[0.303456,49.368016],[0.308051,49.358082],[0.323662,49.340117],[0.30706,49.3188],[0.30424,49.317199],[0.298154,49.314409],[0.302649,49.313683],[0.316021,49.311309],[0.322439,49.296332],[0.309988,49.286386],[0.308998,49.283216],[0.322277,49.278762],[0.342181,49.293512],[0.361083,49.296608],[0.365656,49.295124],[0.380112,49.287758],[0.383554,49.285764],[0.380626,49.279791],[0.382787,49.264016],[0.377722,49.263888],[0.341482,49.253678],[0.326531,49.252888],[0.321521,49.251985],[0.337503,49.231174],[0.342009,49.229286],[0.367048,49.216595],[0.382813,49.21603],[0.388402,49.211941],[0.393648,49.206739],[0.389366,49.196652],[0.388119,49.189807],[0.391913,49.178537],[0.387636,49.156981],[0.385822,49.154054],[0.387361,49.153179],[0.401342,49.149515],[0.406567,49.149511],[0.413143,49.146351],[0.426698,49.14674],[0.432367,49.142202],[0.429977,49.139263],[0.422719,49.130814],[0.408273,49.128578],[0.409704,49.122168],[0.409399,49.120857],[0.407959,49.117876],[0.399783,49.100814],[0.400959,49.097861],[0.410106,49.097663],[0.411408,49.094911],[0.402183,49.08846],[0.416455,49.087382],[0.417885,49.083959],[0.417277,49.073357],[0.413397,49.075379],[0.389902,49.0764],[0.378878,49.070708],[0.379166,49.067449],[0.380383,49.06125],[0.366966,49.052356],[0.370827,49.050173],[0.375069,49.052092],[0.384959,49.037014],[0.409538,49.032833],[0.414601,49.032816],[0.424546,49.032031],[0.446052,49.019014],[0.44418,49.013135],[0.435081,49.006283],[0.433737,49.003331],[0.433439,49.00022],[0.42676,48.985718],[0.4256,48.982652],[0.432448,48.978229],[0.4322,48.971908],[0.431508,48.968762],[0.412815,48.950626],[0.396241,48.932417],[0.395214,48.928921],[0.390826,48.927107],[0.387285,48.913867],[0.386114,48.910548],[0.417946,48.898471],[0.426211,48.8867],[0.436708,48.885782],[0.45004,48.891016],[0.443534,48.884021],[0.443109,48.881285],[0.452557,48.880029],[0.457358,48.879762],[0.459094,48.887798],[0.47437,48.88706],[0.496544,48.87878],[0.515706,48.880583],[0.52088,48.880798],[0.549868,48.87471],[0.553791,48.87686],[0.573844,48.891772],[0.578041,48.893656],[0.590805,48.888803],[0.595643,48.888028],[0.596624,48.884817],[0.585984,48.878602],[0.589631,48.872603],[0.608871,48.875697],[0.6064,48.862376],[0.610658,48.856064],[0.619441,48.852749],[0.633771,48.856038],[0.611184,48.835084],[0.607869,48.832489],[0.624834,48.82715],[0.628768,48.825159],[0.642759,48.816501],[0.647016,48.814857],[0.656093,48.813569],[0.660002,48.811774],[0.690171,48.79406],[0.699117,48.792865],[0.703765,48.791533],[0.708628,48.79025],[0.713196,48.788565],[0.716372,48.785989],[0.730523,48.785593],[0.739437,48.777529],[0.752631,48.77274],[0.755764,48.770135],[0.75678,48.766465],[0.751061,48.760527],[0.77192,48.740215],[0.775034,48.737358],[0.763635,48.73036],[0.758437,48.72059],[0.748398,48.718448],[0.743593,48.716999],[0.732598,48.709331],[0.728764,48.706847],[0.731016,48.70383],[0.75117,48.703978],[0.763337,48.697935],[0.767302,48.695823],[0.767725,48.693221],[0.76511,48.6905],[0.764138,48.675725],[0.767326,48.673616],[0.780369,48.666589],[0.782205,48.666524],[0.796482,48.674914],[0.810178,48.671352],[0.814819,48.670168],[0.809946,48.66423],[0.819748,48.652955],[0.823565,48.650667],[0.821978,48.644744],[0.822818,48.635338],[0.831762,48.633423],[0.827771,48.631127],[0.818206,48.615043],[0.822398,48.608875],[0.826926,48.610299],[0.845909,48.609015],[0.849312,48.585941],[0.867284,48.573946],[0.892944,48.571829],[0.905802,48.565982],[0.910268,48.564135],[0.921331,48.559353],[0.925711,48.559654],[0.937141,48.548596],[0.924168,48.53803],[0.931842,48.534151],[0.962768,48.524228],[0.96774,48.523881],[0.96615,48.520507],[0.954658,48.504669],[0.941554,48.498693],[0.951279,48.493408],[0.955397,48.49266],[0.955507,48.489476],[0.953055,48.480156],[0.935709,48.475509],[0.936714,48.473006],[0.937356,48.470453],[0.940331,48.460173],[0.955273,48.445817],[0.963768,48.441976],[0.974317,48.441986],[0.976416,48.438773],[0.973173,48.436225],[0.945291,48.418115],[0.948381,48.401645],[0.929503,48.39059],[0.926529,48.384112],[0.922214,48.382524],[0.907347,48.370104],[0.904504,48.372627],[0.896387,48.370909],[0.894525,48.367825],[0.883707,48.356724],[0.869034,48.357235],[0.853889,48.349113],[0.840028,48.352911],[0.841975,48.349896],[0.827867,48.342311],[0.824902,48.344804],[0.818405,48.349419],[0.813732,48.348811],[0.788027,48.341322],[0.785432,48.340436],[0.785039,48.337585],[0.781343,48.332691],[0.778368,48.329953],[0.769234,48.321879],[0.769615,48.315135],[0.757286,48.300771],[0.760447,48.298131],[0.764576,48.299991],[0.778584,48.302109],[0.797486,48.291445],[0.807066,48.289733],[0.802328,48.288196],[0.794042,48.284127],[0.785981,48.271204],[0.791517,48.265231],[0.787321,48.261445],[0.822102,48.223557],[0.829446,48.211369],[0.80662,48.204224],[0.80674,48.197448],[0.797655,48.194461],[0.793203,48.193073],[0.759209,48.180091],[0.755327,48.182115],[0.751105,48.183916],[0.73863,48.189187],[0.732119,48.198162],[0.723637,48.198143],[0.72026,48.202768],[0.72035,48.20628],[0.687394,48.240782],[0.683916,48.254],[0.679097,48.255085],[0.652469,48.263389],[0.642751,48.26154],[0.631907,48.254761],[0.631421,48.251466],[0.63848,48.235611],[0.635062,48.235515],[0.631908,48.234624],[0.630203,48.240783],[0.622457,48.244921],[0.613135,48.242735],[0.593727,48.244547],[0.579192,48.244412],[0.574411,48.244917],[0.546795,48.250162],[0.537336,48.249237],[0.537331,48.252801],[0.53656,48.25978],[0.530307,48.2655],[0.525809,48.265947],[0.512572,48.267595],[0.494423,48.283488],[0.497806,48.289797],[0.505824,48.293658],[0.491583,48.307165],[0.475989,48.300046],[0.46327,48.305283],[0.442805,48.304636],[0.438486,48.306046],[0.429965,48.308678],[0.427652,48.314858],[0.426281,48.317519],[0.415531,48.321489],[0.408565,48.316323],[0.395362,48.32129],[0.383907,48.332884],[0.380633,48.343065],[0.384251,48.343073],[0.387484,48.347312],[0.387348,48.350595],[0.380557,48.369277],[0.380868,48.372794],[0.378659,48.383232],[0.37678,48.385396],[0.373864,48.38697],[0.375708,48.390098],[0.372679,48.410132],[0.379512,48.414919],[0.381725,48.424788],[0.376012,48.430315],[0.373314,48.432874],[0.367808,48.437739],[0.367697,48.44131],[0.363205,48.451562],[0.35289,48.459694],[0.350087,48.458651],[0.345224,48.459271],[0.340997,48.460977],[0.33683,48.462819],[0.324524,48.471903],[0.314738,48.473194],[0.30963,48.473286],[0.297909,48.479816],[0.283555,48.48145],[0.278804,48.480892],[0.266806,48.484577],[0.262725,48.482862],[0.26165,48.479336],[0.258785,48.476641],[0.225463,48.472861],[0.221658,48.473141],[0.217968,48.473801],[0.213565,48.472834],[0.194949,48.463745],[0.191952,48.462342],[0.186797,48.462814],[0.172327,48.463829],[0.170289,48.4572],[0.173647,48.45088],[0.169081,48.449484],[0.152522,48.456631],[0.143925,48.454948],[0.145863,48.452168],[0.154882,48.4453],[0.158318,48.443078],[0.153319,48.437944],[0.148697,48.437113],[0.125777,48.434174],[0.121836,48.435978],[0.117659,48.436164],[0.111593,48.432317],[0.109346,48.423016],[0.099434,48.410963],[0.083677,48.411027],[0.083781,48.410129],[0.079721,48.408733],[0.067362,48.40606],[0.064199,48.40338],[0.054482,48.39148],[0.062524,48.383028],[0.039682,48.380406],[0.035453,48.380382],[0.023083,48.380207],[0.01868,48.381581],[0.005246,48.389643],[0.00337,48.395996],[-0.001245,48.397275],[-0.02017,48.393931],[-0.022101,48.387787],[-0.051402,48.378159],[-0.049672,48.375133],[-0.054531,48.382003],[-0.057247,48.384779],[-0.053479,48.390188],[-0.053658,48.393505],[-0.05758,48.429084],[-0.055219,48.430586],[-0.054087,48.43391],[-0.049827,48.447227],[-0.053345,48.453511],[-0.062548,48.456514],[-0.067327,48.457228],[-0.08034,48.449707],[-0.108255,48.448024],[-0.118485,48.448233],[-0.137842,48.452818],[-0.142193,48.454297],[-0.148946,48.458791],[-0.148132,48.471615],[-0.153516,48.476946],[-0.15017,48.478953],[-0.155064,48.48716],[-0.155447,48.490138],[-0.155678,48.49331],[-0.167477,48.502972],[-0.172087,48.502137],[-0.166668,48.514706],[-0.145388,48.52116],[-0.144604,48.527753],[-0.179251,48.541649],[-0.189492,48.548622],[-0.191725,48.551677],[-0.195862,48.555915],[-0.199584,48.558236],[-0.207346,48.56252],[-0.215792,48.559789],[-0.230695,48.56195],[-0.242639,48.567999],[-0.246473,48.565725],[-0.249293,48.556078],[-0.257472,48.551956],[-0.260578,48.549133],[-0.243057,48.537062],[-0.250837,48.528081],[-0.26839,48.520666],[-0.27155,48.507452],[-0.285283,48.508649],[-0.285881,48.515169],[-0.290094,48.516871],[-0.308956,48.518328],[-0.312305,48.520269],[-0.320239,48.522929],[-0.334973,48.509083],[-0.336825,48.502422],[-0.353789,48.496496],[-0.353152,48.483774],[-0.365814,48.487548],[-0.371083,48.495556],[-0.375751,48.496099],[-0.389253,48.49937],[-0.393346,48.501072],[-0.397657,48.510511],[-0.400875,48.507889],[-0.425449,48.507363],[-0.424473,48.508192],[-0.428467,48.510211],[-0.446883,48.514937],[-0.450728,48.512817],[-0.455856,48.512695],[-0.466117,48.512522],[-0.478198,48.50157],[-0.48293,48.502629],[-0.492665,48.502118],[-0.509294,48.508841],[-0.512798,48.506531],[-0.518632,48.497552],[-0.534907,48.491548],[-0.53787,48.488884],[-0.553157,48.472966],[-0.562328,48.473799],[-0.564255,48.476857],[-0.567457,48.474545],[-0.571639,48.468926],[-0.575807,48.470079],[-0.593207,48.470841],[-0.594311,48.472519],[-0.598929,48.47074],[-0.613629,48.460612],[-0.654215,48.444545],[-0.653906,48.453912],[-0.653977,48.457458],[-0.658168,48.474845],[-0.66884,48.486458],[-0.669079,48.483289],[-0.68367,48.476938],[-0.68361,48.47069],[-0.687991,48.469437],[-0.692663,48.468274],[-0.702106,48.469664],[-0.703268,48.472888],[-0.716955,48.470317],[-0.725251,48.47347],[-0.730066,48.472049],[-0.735258,48.462402],[-0.715918,48.450896],[-0.756483,48.436937],[-0.760817,48.436412],[-0.773966,48.442714],[-0.777874,48.465412],[-0.793424,48.465267],[-0.812743,48.45492],[-0.815108,48.457456],[-0.818601,48.468431],[-0.81808,48.474122],[-0.821988,48.476077],[-0.826973,48.477186],[-0.845826,48.497832],[-0.860363,48.501458]]],[[[-1.510898,48.635032],[-1.512867,48.635642],[-1.51236,48.636697],[-1.510871,48.636934],[-1.509807,48.635785],[-1.510898,48.635032]]]]},"properties":{"nom":"Basse-Normandie","code":"25"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[3.629424,46.749459],[3.626404,46.752267],[3.601826,46.752128],[3.596399,46.764988],[3.592562,46.762801],[3.578083,46.74927],[3.595819,46.725291],[3.580594,46.716977],[3.576978,46.722911],[3.573043,46.720994],[3.568891,46.71591],[3.564076,46.716113],[3.547722,46.722415],[3.54791,46.718956],[3.5489,46.705553],[3.559853,46.689985],[3.554262,46.684601],[3.550406,46.682395],[3.542815,46.67946],[3.534364,46.687523],[3.529451,46.688203],[3.520472,46.685236],[3.486834,46.660559],[3.486669,46.653806],[3.483132,46.651678],[3.474191,46.653535],[3.45571,46.651466],[3.45409,46.654841],[3.443455,46.662338],[3.4474,46.67139],[3.452928,46.676996],[3.452896,46.687333],[3.445923,46.69225],[3.436015,46.693548],[3.430011,46.698829],[3.434214,46.712221],[3.414609,46.711105],[3.390052,46.714892],[3.385292,46.713764],[3.366416,46.690676],[3.356914,46.688419],[3.352532,46.686596],[3.337856,46.685253],[3.318052,46.688443],[3.304499,46.702842],[3.298052,46.715879],[3.283373,46.71515],[3.282979,46.714971],[3.278417,46.716324],[3.268544,46.715924],[3.259773,46.707661],[3.234217,46.69737],[3.229528,46.696461],[3.226936,46.690001],[3.204426,46.678752],[3.199366,46.6795],[3.167414,46.690968],[3.149247,46.708218],[3.146988,46.710211],[3.143329,46.712737],[3.129056,46.727493],[3.104673,46.733182],[3.100537,46.734293],[3.083478,46.737773],[3.079605,46.739964],[3.04955,46.757719],[3.037546,46.772832],[3.036264,46.775966],[3.032068,46.794911],[3.032122,46.798063],[3.039067,46.809621],[3.041154,46.812673],[3.057639,46.825136],[3.058486,46.831592],[3.05694,46.833915],[3.054584,46.83877],[3.056647,46.841974],[3.069402,46.852258],[3.063605,46.889951],[3.062334,46.892347],[3.061145,46.897381],[3.058074,46.900282],[3.050227,46.909154],[3.064553,46.935734],[3.066029,46.938426],[3.068254,46.941521],[3.078275,46.953427],[3.079337,46.960242],[3.075119,46.962063],[3.062751,46.980258],[3.065324,46.997174],[3.065841,47.00046],[3.073675,47.012375],[3.074759,47.015859],[3.074778,47.029994],[3.072676,47.033282],[3.063618,47.046171],[3.060101,47.045858],[3.053966,47.048255],[3.050517,47.050679],[3.022241,47.063652],[3.020041,47.066786],[3.022524,47.080164],[3.031362,47.092884],[3.030102,47.103508],[3.03025,47.107055],[3.03,47.108315],[3.029382,47.111656],[3.028283,47.128437],[3.02496,47.131112],[3.017179,47.139783],[3.020588,47.152981],[3.019283,47.156285],[3.015945,47.159095],[3.015206,47.162435],[2.997741,47.200851],[2.995918,47.203804],[2.993844,47.206676],[2.991122,47.209691],[2.979026,47.229064],[2.981806,47.253524],[2.982757,47.256558],[2.981658,47.262509],[2.973547,47.269943],[2.941563,47.285155],[2.92678,47.298452],[2.923336,47.300844],[2.916129,47.305647],[2.912962,47.308318],[2.909119,47.310584],[2.899453,47.312745],[2.89495,47.313768],[2.879024,47.320279],[2.873695,47.329104],[2.870247,47.342343],[2.877113,47.35156],[2.879782,47.354533],[2.88208,47.357587],[2.890555,47.365995],[2.893026,47.369085],[2.919771,47.410471],[2.91962,47.413657],[2.920906,47.423155],[2.931557,47.433433],[2.931885,47.436809],[2.919831,47.45873],[2.919191,47.46062],[2.91778,47.463787],[2.897163,47.48515],[2.89713,47.488733],[2.892395,47.498981],[2.891632,47.501942],[2.889574,47.507764],[2.887256,47.510615],[2.874625,47.520423],[2.846885,47.541534],[2.845187,47.544935],[2.85663,47.551412],[2.868583,47.546008],[2.878366,47.55267],[2.883392,47.55272],[2.905814,47.557466],[2.909374,47.559612],[2.912958,47.563638],[2.914297,47.56597],[2.953843,47.558611],[2.958658,47.55738],[2.971791,47.567916],[2.976538,47.569429],[2.974821,47.572714],[2.96487,47.574458],[2.959327,47.587517],[2.945698,47.592255],[2.940355,47.598211],[2.943619,47.607763],[2.932321,47.627046],[2.934061,47.630152],[2.936158,47.636427],[2.939684,47.638364],[2.954234,47.645689],[2.951156,47.647902],[2.941581,47.657537],[2.937223,47.659056],[2.928231,47.658439],[2.918155,47.6698],[2.92416,47.682496],[2.893098,47.69888],[2.888655,47.700568],[2.884065,47.702075],[2.879661,47.703781],[2.883507,47.713452],[2.877733,47.718846],[2.861175,47.710943],[2.848969,47.71685],[2.851135,47.71967],[2.84865,47.725796],[2.852539,47.728151],[2.858407,47.748679],[2.853882,47.758682],[2.856477,47.761736],[2.899667,47.764922],[2.908379,47.768017],[2.912915,47.769388],[2.93056,47.76283],[2.935592,47.763247],[2.937484,47.766299],[2.947189,47.76579],[2.954511,47.774263],[2.977353,47.779958],[2.98045,47.782523],[2.988902,47.786125],[3.018803,47.786475],[3.023798,47.786375],[3.027584,47.799766],[3.024263,47.809658],[3.024344,47.813078],[3.019882,47.813043],[3.015473,47.813539],[3.019403,47.819451],[3.013992,47.825032],[3.013874,47.831836],[3.030665,47.837476],[3.033824,47.843874],[3.026906,47.858924],[3.023297,47.861021],[3.018188,47.861193],[2.994904,47.86735],[3.011491,47.875099],[3.007226,47.895295],[3.01543,47.898498],[3.011818,47.904825],[3.030666,47.907836],[3.048244,47.911331],[3.053812,47.92445],[3.063161,47.927334],[3.065214,47.930519],[3.078743,47.933274],[3.08394,47.942431],[3.088683,47.943184],[3.10076,47.947989],[3.105272,47.946941],[3.113425,47.963348],[3.128119,47.972512],[3.128498,47.979513],[3.122989,47.985198],[3.126676,47.991268],[3.121123,47.995936],[3.120845,48.009363],[3.10657,48.013183],[3.10115,48.019028],[3.102176,48.022456],[3.120648,48.028603],[3.124263,48.031128],[3.119731,48.032473],[3.09762,48.039558],[3.090536,48.04822],[3.095365,48.053976],[3.090345,48.053944],[3.078932,48.060242],[3.060278,48.064699],[3.050471,48.072334],[3.049882,48.088253],[3.050194,48.09124],[3.042902,48.093376],[3.041212,48.096481],[3.0351,48.115632],[3.015884,48.115708],[3.027273,48.130697],[3.023122,48.135674],[3.019049,48.13778],[3.01323,48.143477],[3.003886,48.144864],[3.002138,48.14166],[2.994044,48.1431],[2.987615,48.152278],[2.978176,48.150584],[2.963612,48.152866],[2.959952,48.155385],[2.951969,48.164362],[2.936314,48.163392],[2.934241,48.175727],[2.934749,48.178823],[2.951461,48.190492],[2.955416,48.192518],[2.970958,48.194188],[2.971666,48.203411],[2.984587,48.207453],[2.988961,48.209019],[2.997119,48.206347],[3.00599,48.209425],[3.012819,48.222102],[3.032696,48.24874],[3.04757,48.249698],[3.043708,48.271842],[3.029261,48.274204],[3.02476,48.275645],[3.026961,48.282464],[3.029739,48.285424],[3.026761,48.288016],[3.020051,48.296376],[3.027469,48.300639],[3.0171,48.304537],[3.015685,48.307317],[3.040571,48.328931],[3.04226,48.332188],[3.036773,48.337786],[3.046276,48.357315],[3.049451,48.36003],[3.062057,48.357442],[3.066702,48.357719],[3.080611,48.360832],[3.101066,48.354788],[3.099602,48.351605],[3.103418,48.349514],[3.118385,48.366684],[3.122467,48.368632],[3.135759,48.370885],[3.139869,48.372599],[3.14485,48.367303],[3.170015,48.374701],[3.171808,48.377676],[3.183373,48.37146],[3.184941,48.368129],[3.193763,48.369392],[3.199658,48.364461],[3.20445,48.364201],[3.211304,48.366267],[3.214496,48.367593],[3.222216,48.370008],[3.226483,48.370243],[3.246859,48.367287],[3.251021,48.365101],[3.259611,48.368591],[3.267473,48.37713],[3.272179,48.378325],[3.281618,48.378159],[3.283175,48.381385],[3.306018,48.372889],[3.31069,48.372913],[3.311856,48.376023],[3.325478,48.373089],[3.330117,48.372123],[3.336538,48.373184],[3.346315,48.373246],[3.351685,48.378619],[3.356559,48.378452],[3.356091,48.37516],[3.361191,48.372572],[3.366319,48.391485],[3.374142,48.395491],[3.375408,48.39869],[3.385095,48.398713],[3.400207,48.390881],[3.409931,48.390542],[3.414792,48.390273],[3.414008,48.376538],[3.426582,48.361693],[3.431584,48.360847],[3.450115,48.372852],[3.465281,48.374512],[3.470481,48.374671],[3.470803,48.374445],[3.472982,48.371899],[3.474875,48.369265],[3.495725,48.36935],[3.50441,48.36549],[3.540825,48.336547],[3.545109,48.334548],[3.543961,48.322758],[3.543904,48.319789],[3.559032,48.320358],[3.564072,48.321081],[3.56318,48.310819],[3.587536,48.298482],[3.582509,48.282842],[3.610952,48.274609],[3.615187,48.272536],[3.622873,48.261375],[3.624347,48.258442],[3.624443,48.255167],[3.599994,48.235507],[3.604684,48.229886],[3.608006,48.231831],[3.619329,48.228128],[3.621602,48.225615],[3.609202,48.210661],[3.579608,48.190672],[3.575186,48.188741],[3.589992,48.180588],[3.593967,48.178696],[3.623548,48.192005],[3.636498,48.186735],[3.64051,48.184617],[3.648805,48.17093],[3.650655,48.168184],[3.65964,48.159577],[3.666663,48.142638],[3.66787,48.139212],[3.691075,48.145413],[3.693632,48.151742],[3.694415,48.155049],[3.698164,48.148692],[3.705728,48.145201],[3.721798,48.158178],[3.716542,48.174183],[3.741053,48.169343],[3.74548,48.167534],[3.754541,48.152088],[3.742117,48.141702],[3.739803,48.138693],[3.74065,48.131983],[3.752958,48.125957],[3.763975,48.132123],[3.768933,48.132855],[3.776493,48.128666],[3.782117,48.119918],[3.791315,48.117598],[3.798242,48.109111],[3.80166,48.10673],[3.803843,48.103673],[3.80565,48.10052],[3.798965,48.089362],[3.798608,48.08617],[3.806636,48.082389],[3.822803,48.065827],[3.826352,48.063516],[3.828647,48.048067],[3.82198,48.04392],[3.829137,48.039019],[3.832152,48.036235],[3.83961,48.036065],[3.843397,48.035372],[3.847997,48.02939],[3.870242,48.016313],[3.870626,48.006231],[3.870812,48.002864],[3.862835,48.00627],[3.844554,48.003613],[3.839811,48.00389],[3.849394,47.986794],[3.850027,47.983657],[3.859899,47.984009],[3.863339,47.979601],[3.8618,47.976444],[3.880447,47.981445],[3.882089,47.997965],[3.885815,48.000277],[3.895731,47.999833],[3.90227,47.994842],[3.903717,47.991636],[3.913529,47.972085],[3.905655,47.959141],[3.902393,47.938295],[3.896827,47.932289],[3.894031,47.929296],[3.895693,47.928554],[3.905178,47.926483],[3.914044,47.929619],[3.918489,47.928018],[3.923708,47.932432],[3.92645,47.93457],[3.949414,47.932056],[3.963109,47.935455],[3.976533,47.931267],[3.981186,47.930166],[3.985625,47.930516],[4.001886,47.940585],[4.005536,47.942371],[4.019887,47.928684],[4.025042,47.928649],[4.033216,47.932339],[4.045912,47.926899],[4.054893,47.930031],[4.060938,47.945709],[4.089798,47.943969],[4.092716,47.941278],[4.094619,47.928336],[4.113712,47.928156],[4.122115,47.931659],[4.137273,47.937786],[4.141839,47.937112],[4.141785,47.943926],[4.162736,47.958571],[4.167337,47.96001],[4.184257,47.953856],[4.185452,47.940163],[4.200398,47.94183],[4.206056,47.947361],[4.204572,47.961084],[4.195372,47.96431],[4.195329,47.967757],[4.201952,47.972577],[4.221154,47.971218],[4.225956,47.971942],[4.227548,47.962007],[4.2239,47.948499],[4.246331,47.930425],[4.259501,47.925577],[4.274316,47.923518],[4.288659,47.926854],[4.293424,47.925676],[4.30209,47.93829],[4.300411,47.945194],[4.299289,47.948608],[4.305655,47.954163],[4.312802,47.962499],[4.347354,47.956339],[4.371696,47.961332],[4.392313,47.962106],[4.416466,47.96828],[4.433946,47.961462],[4.438111,47.959377],[4.446962,47.956199],[4.495482,47.968049],[4.516449,47.966349],[4.531442,47.969899],[4.552383,47.967788],[4.55658,47.969227],[4.559969,47.971423],[4.555441,47.984769],[4.542963,47.990433],[4.535514,48.003131],[4.535774,48.006566],[4.5456,48.004988],[4.552644,48.009189],[4.55472,48.012276],[4.563343,48.015402],[4.578157,48.02857],[4.612164,48.030054],[4.616807,48.031376],[4.619447,48.026416],[4.621946,48.024348],[4.647584,48.024694],[4.67296,48.01502],[4.700888,48.022855],[4.704239,48.020241],[4.717126,48.011368],[4.719943,48.008896],[4.749531,48.004311],[4.784607,48.006727],[4.78942,48.007869],[4.796214,47.995398],[4.807631,47.988841],[4.795259,47.98344],[4.785712,47.971461],[4.787781,47.965254],[4.796724,47.96257],[4.801642,47.96254],[4.810959,47.959867],[4.819692,47.962469],[4.845033,47.960427],[4.856121,47.953276],[4.863158,47.944568],[4.86521,47.941564],[4.845857,47.922903],[4.829963,47.91559],[4.829474,47.912285],[4.834024,47.906795],[4.853034,47.897539],[4.856783,47.895634],[4.874586,47.919522],[4.894663,47.922603],[4.903607,47.91955],[4.905961,47.91647],[4.916131,47.896976],[4.919542,47.89431],[4.923381,47.892401],[4.928136,47.886967],[4.927456,47.871548],[4.944541,47.866387],[4.954094,47.866768],[4.962141,47.854264],[4.961536,47.840761],[4.973256,47.831202],[4.984619,47.827562],[4.984281,47.824606],[4.984921,47.82527],[4.99022,47.82112],[4.994125,47.819748],[4.992111,47.813444],[4.986103,47.803598],[4.955366,47.789719],[4.947261,47.786928],[4.943089,47.785719],[4.939148,47.783894],[4.917958,47.777094],[4.921897,47.77594],[4.920816,47.767837],[4.9168,47.766823],[4.921427,47.765883],[4.924775,47.760624],[4.939114,47.762053],[4.946347,47.765957],[4.954454,47.762716],[4.958989,47.761875],[4.965074,47.742218],[4.960496,47.732814],[4.964441,47.734828],[4.971535,47.73108],[4.970801,47.727824],[4.964464,47.722808],[4.964212,47.713422],[4.956914,47.709051],[4.953759,47.706313],[4.956706,47.699745],[4.971371,47.690234],[4.96857,47.687328],[4.993925,47.689285],[5.002099,47.693539],[5.00401,47.700376],[5.008993,47.700957],[5.029154,47.709927],[5.033099,47.707716],[5.031234,47.694135],[5.056238,47.694814],[5.046804,47.675568],[5.052569,47.669839],[5.062024,47.667179],[5.067123,47.667368],[5.076587,47.664976],[5.082662,47.659447],[5.102371,47.657339],[5.107398,47.651332],[5.116859,47.652017],[5.117441,47.650566],[5.127205,47.648461],[5.136233,47.651952],[5.155673,47.668388],[5.160201,47.678155],[5.173442,47.680818],[5.178341,47.680952],[5.17341,47.653536],[5.176227,47.651385],[5.188388,47.649609],[5.211365,47.641658],[5.237409,47.620298],[5.236942,47.616777],[5.240285,47.616776],[5.242875,47.618203],[5.246326,47.620136],[5.258601,47.622222],[5.25601,47.61922],[5.239656,47.597653],[5.25623,47.576551],[5.273261,47.580551],[5.277901,47.581361],[5.278142,47.588255],[5.306357,47.607277],[5.316021,47.607221],[5.3233,47.611993],[5.333294,47.610632],[5.337818,47.609029],[5.343756,47.603543],[5.342324,47.596691],[5.355723,47.591694],[5.358712,47.594272],[5.365786,47.602792],[5.374079,47.604542],[5.378175,47.603549],[5.389121,47.595238],[5.396263,47.595966],[5.399805,47.597162],[5.422559,47.629463],[5.425595,47.632074],[5.440171,47.629771],[5.468523,47.611129],[5.471052,47.60822],[5.478564,47.605386],[5.486492,47.578615],[5.48238,47.565446],[5.491292,47.563383],[5.496668,47.550588],[5.49664,47.54713],[5.487817,47.52991],[5.486404,47.526969],[5.471747,47.52746],[5.469344,47.524368],[5.453722,47.506696],[5.451419,47.504303],[5.44746,47.4962],[5.44311,47.494932],[5.436433,47.490416],[5.43203,47.491777],[5.427781,47.496522],[5.399216,47.499014],[5.397351,47.496252],[5.391142,47.488157],[5.388163,47.483616],[5.387298,47.481194],[5.403346,47.477351],[5.407642,47.47719],[5.404108,47.475102],[5.379534,47.466142],[5.370722,47.464475],[5.381551,47.459229],[5.380928,47.453577],[5.379572,47.450561],[5.409538,47.461463],[5.413959,47.459966],[5.418162,47.450702],[5.431819,47.448265],[5.435629,47.450293],[5.441022,47.446559],[5.43846,47.444235],[5.430425,47.421357],[5.442459,47.407046],[5.433672,47.395837],[5.433256,47.392522],[5.449094,47.38675],[5.451393,47.383973],[5.477992,47.394234],[5.496919,47.388551],[5.491894,47.372889],[5.489222,47.369875],[5.488824,47.35586],[5.490065,47.354347],[5.494704,47.338099],[5.48901,47.329034],[5.477101,47.326749],[5.47373,47.324317],[5.47167,47.318119],[5.47918,47.31496],[5.498495,47.314221],[5.509108,47.308093],[5.513097,47.30816],[5.518539,47.304187],[5.516953,47.30115],[5.508605,47.293368],[5.505365,47.284071],[5.501046,47.285128],[5.493047,47.288182],[5.488559,47.285018],[5.488275,47.282601],[5.488004,47.280175],[5.487558,47.266557],[5.483133,47.26041],[5.480799,47.257443],[5.484335,47.238056],[5.48011,47.237048],[5.475309,47.231305],[5.479136,47.218514],[5.474206,47.21308],[5.470255,47.211102],[5.449262,47.203216],[5.446891,47.200762],[5.452548,47.193815],[5.456227,47.191629],[5.458916,47.181935],[5.45227,47.166268],[5.450873,47.162857],[5.448641,47.159662],[5.445085,47.158422],[5.438298,47.152017],[5.439112,47.148991],[5.438985,47.142986],[5.428918,47.136965],[5.424893,47.136977],[5.414566,47.132762],[5.414128,47.129753],[5.409191,47.125019],[5.412114,47.11986],[5.411215,47.116853],[5.400588,47.107562],[5.398163,47.104649],[5.39781,47.094649],[5.391341,47.089757],[5.390537,47.086784],[5.377627,47.079322],[5.363344,47.078345],[5.35988,47.081136],[5.357909,47.0786],[5.345786,47.076649],[5.341181,47.077174],[5.332533,47.076593],[5.323975,47.073793],[5.310446,47.060509],[5.301895,47.060904],[5.29907,47.058637],[5.295851,47.05608],[5.283484,47.046318],[5.275218,47.027161],[5.275327,47.026934],[5.279764,47.025333],[5.317198,47.015806],[5.31824,47.012461],[5.313647,47.011302],[5.303971,47.01045],[5.298243,47.001791],[5.279146,46.999153],[5.27507,46.998026],[5.271966,46.989342],[5.267767,46.988388],[5.255236,46.979888],[5.263045,46.953605],[5.26227,46.950171],[5.251317,46.944585],[5.26267,46.937733],[5.26267,46.930815],[5.262014,46.927387],[5.270919,46.929365],[5.275311,46.935304],[5.287444,46.940793],[5.292306,46.940705],[5.307367,46.936459],[5.308512,46.926925],[5.310031,46.921246],[5.31075,46.91807],[5.312069,46.911703],[5.313989,46.908656],[5.328806,46.895927],[5.328758,46.889316],[5.335521,46.884666],[5.341274,46.890098],[5.35077,46.892129],[5.360337,46.88434],[5.377783,46.889989],[5.382801,46.891741],[5.387129,46.893039],[5.391603,46.894072],[5.392627,46.891384],[5.403681,46.889389],[5.400587,46.882733],[5.404005,46.86888],[5.420118,46.860579],[5.425168,46.85986],[5.428179,46.860238],[5.431176,46.860598],[5.442352,46.854479],[5.445188,46.85941],[5.454209,46.855921],[5.459286,46.855245],[5.457796,46.845269],[5.464207,46.840168],[5.459748,46.834183],[5.463195,46.828578],[5.416653,46.826782],[5.413464,46.828263],[5.410217,46.832583],[5.405169,46.8324],[5.386981,46.826825],[5.382143,46.827844],[5.378666,46.827574],[5.375268,46.826986],[5.371185,46.825152],[5.351119,46.816088],[5.344929,46.821006],[5.335836,46.820732],[5.333584,46.817814],[5.328584,46.812916],[5.331173,46.810269],[5.332496,46.797713],[5.341506,46.790692],[5.346456,46.790222],[5.355051,46.790938],[5.370807,46.783525],[5.37375,46.777069],[5.383425,46.775526],[5.390248,46.770592],[5.390112,46.767199],[5.371518,46.751523],[5.36676,46.752396],[5.362002,46.733117],[5.365725,46.731068],[5.393641,46.728633],[5.390789,46.72636],[5.395908,46.715605],[5.395012,46.712507],[5.406642,46.703931],[5.408349,46.698436],[5.406696,46.695399],[5.395359,46.685052],[5.398501,46.68268],[5.42209,46.673032],[5.420175,46.670009],[5.424647,46.664645],[5.424814,46.661344],[5.427103,46.660161],[5.422912,46.658312],[5.415008,46.654146],[5.440601,46.637911],[5.440623,46.634902],[5.43349,46.627757],[5.429678,46.625847],[5.41379,46.614643],[5.408583,46.614554],[5.398593,46.612719],[5.400092,46.609372],[5.411943,46.598628],[5.404691,46.582115],[5.400427,46.580232],[5.375536,46.580156],[5.370666,46.580527],[5.362124,46.577272],[5.364614,46.57504],[5.36788,46.566946],[5.364888,46.564513],[5.357651,46.560563],[5.362579,46.551642],[5.361582,46.548231],[5.360073,46.524245],[5.359459,46.523636],[5.362852,46.517909],[5.382494,46.515574],[5.392428,46.508213],[5.395657,46.505686],[5.407571,46.500409],[5.421173,46.500302],[5.419959,46.480905],[5.420044,46.480183],[5.41843,46.477298],[5.413803,46.472045],[5.398099,46.466601],[5.39358,46.467596],[5.385312,46.470544],[5.376345,46.463127],[5.37379,46.460451],[5.323351,46.462506],[5.323147,46.456483],[5.321799,46.453601],[5.313215,46.452496],[5.310561,46.446775],[5.273677,46.448588],[5.269653,46.450226],[5.256271,46.451879],[5.248004,46.459374],[5.243864,46.460456],[5.236259,46.457785],[5.233384,46.460454],[5.224698,46.468352],[5.215064,46.468359],[5.21528,46.47176],[5.213031,46.481541],[5.206685,46.486177],[5.209481,46.492105],[5.200343,46.502568],[5.203565,46.504803],[5.201221,46.507821],[5.181672,46.509979],[5.165839,46.517675],[5.164303,46.504616],[5.141168,46.508484],[5.13403,46.501447],[5.129066,46.500918],[5.112817,46.492959],[5.095259,46.497976],[5.071449,46.485817],[5.054751,46.484281],[5.0509,46.48625],[5.014233,46.50045],[5.012448,46.502967],[5.010594,46.51107],[5.006369,46.509703],[4.980216,46.515203],[4.970038,46.514091],[4.962656,46.506553],[4.952797,46.50447],[4.947369,46.508427],[4.947245,46.514455],[4.934745,46.513325],[4.933592,46.512453],[4.931736,46.509791],[4.929616,46.50408],[4.928837,46.501589],[4.927682,46.499168],[4.925241,46.496155],[4.915896,46.488188],[4.914522,46.481374],[4.91453,46.480113],[4.915024,46.477106],[4.914448,46.462163],[4.912497,46.459323],[4.894444,46.445374],[4.892887,46.442572],[4.891797,46.438555],[4.891523,46.430291],[4.891532,46.427525],[4.891047,46.424056],[4.889934,46.417121],[4.887496,46.402732],[4.88495,46.399883],[4.873919,46.384987],[4.86776,46.378062],[4.865691,46.375763],[4.86312,46.373256],[4.85853,46.368017],[4.856454,46.365123],[4.850912,46.352864],[4.85239,46.346175],[4.852652,46.342793],[4.853156,46.329247],[4.851423,46.326078],[4.849389,46.323219],[4.841217,46.311805],[4.839228,46.308684],[4.832926,46.299436],[4.826332,46.275907],[4.824739,46.272934],[4.816488,46.2654],[4.811341,46.260583],[4.810817,46.254547],[4.810798,46.251233],[4.808184,46.238106],[4.800741,46.229658],[4.797847,46.224543],[4.79551,46.220139],[4.79428,46.217051],[4.792735,46.20751],[4.792327,46.200968],[4.780203,46.186747],[4.780213,46.176677],[4.775494,46.177093],[4.771584,46.175641],[4.763197,46.175699],[4.75959,46.173603],[4.733118,46.177792],[4.724376,46.184311],[4.720362,46.193577],[4.721489,46.196839],[4.721501,46.200126],[4.735682,46.211701],[4.731773,46.213219],[4.720018,46.228502],[4.733016,46.227512],[4.736181,46.233202],[4.720694,46.244263],[4.708899,46.248584],[4.705377,46.250961],[4.690873,46.249646],[4.681228,46.257301],[4.680571,46.267218],[4.68457,46.265934],[4.694068,46.271512],[4.700696,46.267477],[4.707417,46.269764],[4.710054,46.278947],[4.70748,46.284705],[4.703249,46.284841],[4.693884,46.294536],[4.69295,46.297099],[4.693436,46.302325],[4.679741,46.304518],[4.664478,46.296618],[4.653189,46.303177],[4.638725,46.301423],[4.635777,46.291918],[4.617019,46.280622],[4.620162,46.277956],[4.618565,46.264793],[4.614456,46.2664],[4.586527,46.26836],[4.582672,46.270215],[4.572725,46.277045],[4.572161,46.289977],[4.570273,46.293029],[4.557841,46.293993],[4.555437,46.29126],[4.54809,46.283228],[4.54645,46.273919],[4.542343,46.271967],[4.504001,46.267139],[4.501484,46.270072],[4.488465,46.287994],[4.483775,46.287065],[4.475428,46.284399],[4.462188,46.294018],[4.453248,46.296438],[4.439452,46.293056],[4.437717,46.296284],[4.427039,46.30283],[4.424387,46.296298],[4.410616,46.295344],[4.405814,46.296061],[4.407092,46.292739],[4.398757,46.284322],[4.396364,46.274544],[4.396451,46.271841],[4.396835,46.266523],[4.388286,46.247912],[4.385568,46.246162],[4.386217,46.225674],[4.38808,46.219789],[4.388416,46.213084],[4.374769,46.209512],[4.363353,46.198563],[4.373498,46.187246],[4.370806,46.184333],[4.36632,46.185423],[4.358511,46.18268],[4.346643,46.187261],[4.334903,46.181744],[4.326643,46.184894],[4.326397,46.181708],[4.31641,46.171305],[4.311831,46.171196],[4.309176,46.17292],[4.30287,46.174325],[4.298212,46.173055],[4.290281,46.169317],[4.282432,46.156816],[4.277541,46.15661],[4.253192,46.157817],[4.24866,46.167107],[4.253409,46.167343],[4.261911,46.175175],[4.258146,46.184546],[4.255016,46.18713],[4.240916,46.186897],[4.232491,46.17955],[4.226578,46.178371],[4.224993,46.177632],[4.223365,46.180189],[4.219558,46.185102],[4.215845,46.187222],[4.206215,46.194494],[4.189229,46.188639],[4.18493,46.190124],[4.184851,46.179868],[4.186752,46.176633],[4.178133,46.173687],[4.143322,46.175997],[4.138591,46.176666],[4.133847,46.177317],[4.133393,46.177321],[4.132853,46.180686],[4.103832,46.198442],[4.099435,46.197107],[4.082922,46.191025],[4.078635,46.190606],[4.067331,46.186813],[4.059972,46.188458],[4.056681,46.185859],[4.050073,46.180688],[4.046013,46.179222],[4.031149,46.171973],[4.027488,46.169593],[4.018044,46.172019],[3.988528,46.169857],[3.985073,46.172301],[3.980798,46.181892],[3.971497,46.189672],[3.97257,46.199731],[3.965168,46.202865],[3.960314,46.203401],[3.936212,46.206196],[3.917106,46.203884],[3.909456,46.207926],[3.905496,46.209227],[3.890132,46.214491],[3.897328,46.226907],[3.897392,46.237145],[3.907418,46.243892],[3.90876,46.260622],[3.906644,46.263791],[3.903775,46.274008],[3.899534,46.275914],[3.892627,46.284857],[3.901973,46.293158],[3.931632,46.296225],[3.947858,46.303673],[3.947853,46.30561],[3.947644,46.319029],[3.971745,46.320726],[3.985659,46.3175],[4.005259,46.327406],[3.994357,46.327655],[3.985653,46.328685],[3.987605,46.347507],[3.98739,46.350751],[3.988308,46.354021],[3.991544,46.370419],[3.98187,46.385163],[3.98086,46.388351],[3.977569,46.397871],[3.987989,46.407651],[3.984633,46.416478],[3.984118,46.419661],[3.991706,46.423081],[3.995311,46.425103],[3.995438,46.428488],[3.989353,46.436951],[4.002835,46.440535],[3.997519,46.452577],[4.001541,46.458755],[4.000963,46.462011],[3.97434,46.479567],[3.965148,46.477997],[3.960554,46.477658],[3.952282,46.478727],[3.957963,46.490476],[3.953475,46.491792],[3.934151,46.490952],[3.916492,46.496102],[3.911475,46.495494],[3.90295,46.491725],[3.898791,46.485409],[3.897341,46.482053],[3.887973,46.48236],[3.865262,46.489648],[3.860414,46.495565],[3.863828,46.512676],[3.855143,46.515317],[3.845819,46.512937],[3.845038,46.513086],[3.840126,46.518454],[3.846291,46.524009],[3.837014,46.531606],[3.811746,46.520586],[3.807423,46.519382],[3.794429,46.527344],[3.780666,46.528366],[3.777916,46.531257],[3.770248,46.538954],[3.755776,46.536151],[3.741847,46.539547],[3.732679,46.547747],[3.73427,46.554364],[3.737008,46.556075],[3.741006,46.560219],[3.743285,46.566462],[3.740437,46.575927],[3.740264,46.578593],[3.739016,46.58386],[3.737848,46.58728],[3.734557,46.60378],[3.719594,46.605442],[3.713444,46.610721],[3.723234,46.622771],[3.716206,46.630973],[3.712708,46.633327],[3.704613,46.645201],[3.703416,46.64763],[3.699613,46.651913],[3.699364,46.654886],[3.698335,46.65826],[3.692296,46.6636],[3.670584,46.672094],[3.671974,46.68191],[3.655468,46.68775],[3.654644,46.691069],[3.651138,46.704235],[3.637642,46.70748],[3.637681,46.724192],[3.622802,46.740896],[3.628874,46.74613],[3.629424,46.749459]],[[5.444408,46.845347],[5.445157,46.845637],[5.445922,46.845441],[5.446746,46.845954],[5.447838,46.845697],[5.448476,46.846449],[5.447832,46.846733],[5.448702,46.847976],[5.447391,46.848013],[5.446155,46.849435],[5.442904,46.849838],[5.443689,46.850947],[5.441991,46.851127],[5.441975,46.851938],[5.441712,46.851944],[5.441095,46.851651],[5.440312,46.850586],[5.43983,46.84893],[5.440846,46.848458],[5.442092,46.848423],[5.440782,46.846162],[5.443001,46.845881],[5.444408,46.845347]]]},"properties":{"nom":"Bourgogne","code":"26"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[4.140895,49.97876],[4.136382,49.977508],[4.104938,49.97157],[4.099815,49.972326],[4.089691,49.970476],[4.082589,49.973827],[4.079933,49.97995],[4.074968,49.981],[4.044796,49.985843],[4.031122,49.982069],[4.027393,49.982981],[4.021563,49.986119],[4.011405,49.986051],[4.005734,49.995197],[3.985562,49.99476],[3.980801,49.993576],[3.980144,50.003561],[3.995236,50.028447],[3.991313,50.038189],[3.989547,50.041347],[3.982309,50.04428],[3.949834,50.026885],[3.948308,50.029547],[3.943012,50.029659],[3.922871,50.026256],[3.919783,50.023611],[3.887292,50.009694],[3.887395,50.01317],[3.886697,50.023514],[3.878323,50.027886],[3.883321,50.029017],[3.882319,50.032366],[3.868771,50.03761],[3.848124,50.04053],[3.837059,50.047809],[3.832229,50.046782],[3.815827,50.039042],[3.811,50.040637],[3.793588,50.048296],[3.77793,50.045989],[3.77523,50.049078],[3.770963,50.051036],[3.745752,50.053572],[3.742636,50.056097],[3.72121,50.064129],[3.715185,50.069275],[3.710359,50.066491],[3.705575,50.065639],[3.669883,50.055088],[3.665721,50.054697],[3.658176,50.048397],[3.657538,50.040029],[3.662095,50.038729],[3.657569,50.032727],[3.643079,50.036989],[3.63009,50.032018],[3.625097,50.030777],[3.621489,50.028819],[3.614124,50.025057],[3.608747,50.030105],[3.607741,50.033469],[3.594225,50.043918],[3.57924,50.047098],[3.575596,50.049252],[3.567799,50.052971],[3.55644,50.053904],[3.551277,50.053774],[3.541758,50.051975],[3.52989,50.038887],[3.508157,50.035512],[3.507062,50.033361],[3.505235,50.030539],[3.490106,50.01896],[3.484913,50.019609],[3.427792,50.022085],[3.42847,50.024778],[3.424921,50.027269],[3.41538,50.026754],[3.398474,50.034579],[3.392479,50.031132],[3.387166,50.031059],[3.374224,50.036407],[3.353107,50.035715],[3.350214,50.032858],[3.351671,50.029729],[3.343616,50.026266],[3.337102,50.017401],[3.327669,50.015855],[3.309304,50.019352],[3.304894,50.018465],[3.300484,50.017587],[3.290837,50.015131],[3.280355,50.015209],[3.273525,50.020272],[3.277936,50.021475],[3.270716,50.029467],[3.267164,50.030122],[3.263541,50.030641],[3.258791,50.031415],[3.255846,50.025439],[3.246725,50.027694],[3.244843,50.030617],[3.244078,50.030888],[3.233971,50.028384],[3.229336,50.03018],[3.203548,50.017876],[3.172707,50.011995],[3.171212,50.015123],[3.166994,50.020985],[3.162556,50.01932],[3.147359,50.018764],[3.148926,50.025274],[3.123578,50.024485],[3.121506,50.026984],[3.114299,50.033539],[3.113001,50.039225],[3.095776,50.045725],[3.090254,50.053741],[3.087305,50.050905],[3.074492,50.0453],[3.071427,50.047906],[3.06154,50.049384],[3.057637,50.051218],[3.030412,50.057479],[3.026241,50.05678],[3.024914,50.054148],[3.02193,50.056843],[3.01197,50.058039],[3.006835,50.054609],[3.002692,50.052983],[2.993849,50.050415],[2.988758,50.0493],[2.971536,50.041367],[2.969176,50.046692],[2.961795,50.050139],[2.957679,50.051126],[2.949406,50.053036],[2.944091,50.052701],[2.940021,50.050472],[2.938699,50.047337],[2.934866,50.045242],[2.930726,50.044027],[2.920175,50.048592],[2.919557,50.042089],[2.917016,50.03554],[2.896167,50.036557],[2.882694,50.031201],[2.879144,50.02915],[2.875747,50.026999],[2.878569,50.024523],[2.871189,50.021076],[2.856377,50.023583],[2.855422,50.02607],[2.853071,50.029157],[2.859918,50.033665],[2.869954,50.034951],[2.876374,50.044236],[2.864729,50.059923],[2.860778,50.060646],[2.856704,50.060992],[2.854922,50.064277],[2.855414,50.077992],[2.85018,50.078085],[2.837806,50.072015],[2.831235,50.063169],[2.82771,50.065634],[2.8105,50.059869],[2.807198,50.06246],[2.804223,50.059707],[2.795705,50.051268],[2.79451,50.050054],[2.780917,50.048351],[2.775739,50.0428],[2.752195,50.04032],[2.748877,50.042918],[2.742339,50.048006],[2.745871,50.050133],[2.763746,50.060597],[2.7609,50.069384],[2.764392,50.071825],[2.774462,50.079226],[2.77886,50.088467],[2.781836,50.091112],[2.778142,50.099431],[2.778492,50.102405],[2.780898,50.111156],[2.77794,50.113764],[2.763849,50.110514],[2.749537,50.112803],[2.74715,50.11551],[2.72993,50.125864],[2.725191,50.126365],[2.707128,50.126431],[2.71352,50.110191],[2.703494,50.107689],[2.697575,50.102573],[2.715239,50.090114],[2.718994,50.087644],[2.715684,50.085364],[2.703859,50.080989],[2.701148,50.08391],[2.691593,50.092033],[2.682389,50.095045],[2.672081,50.093634],[2.669203,50.096097],[2.656525,50.100283],[2.653888,50.09803],[2.647546,50.094411],[2.644387,50.096988],[2.635779,50.100016],[2.630646,50.105111],[2.630728,50.107276],[2.626761,50.10933],[2.611729,50.1101],[2.592904,50.106555],[2.590719,50.109107],[2.575671,50.113331],[2.573,50.115459],[2.569355,50.120404],[2.569643,50.122605],[2.583003,50.132144],[2.586635,50.137365],[2.582367,50.138042],[2.577454,50.139103],[2.56837,50.135964],[2.564676,50.138241],[2.551329,50.141704],[2.546349,50.136091],[2.548176,50.123821],[2.545311,50.120919],[2.532332,50.115077],[2.514949,50.140821],[2.510031,50.140747],[2.491086,50.137662],[2.475975,50.136862],[2.472807,50.13516],[2.4694,50.133645],[2.464991,50.131731],[2.455049,50.131176],[2.454672,50.128552],[2.449995,50.1244],[2.44742,50.119754],[2.446132,50.11744],[2.44424,50.114198],[2.429658,50.088185],[2.424694,50.087668],[2.417504,50.091379],[2.414508,50.100651],[2.409489,50.101202],[2.39739,50.106505],[2.394888,50.110193],[2.37546,50.10926],[2.379793,50.119189],[2.385485,50.139424],[2.391722,50.144852],[2.389892,50.155189],[2.398866,50.156419],[2.401777,50.16201],[2.403268,50.164801],[2.410836,50.163203],[2.41453,50.164173],[2.415553,50.169979],[2.414846,50.17311],[2.417858,50.17386],[2.420855,50.174638],[2.435006,50.179616],[2.445443,50.17925],[2.450821,50.17852],[2.469649,50.187385],[2.473887,50.188652],[2.481204,50.191242],[2.485371,50.19134],[2.49209,50.193694],[2.49569,50.194562],[2.495053,50.199552],[2.492589,50.202497],[2.488928,50.204861],[2.485204,50.2078],[2.480374,50.208121],[2.464414,50.21423],[2.459599,50.219552],[2.456774,50.221929],[2.452066,50.230214],[2.446938,50.229347],[2.436855,50.227263],[2.432034,50.22777],[2.4174,50.228295],[2.407013,50.234297],[2.402588,50.233225],[2.389474,50.224765],[2.384861,50.225415],[2.383136,50.225757],[2.373296,50.217769],[2.370989,50.210888],[2.36782,50.208016],[2.364877,50.207282],[2.361731,50.207078],[2.336655,50.234989],[2.334836,50.237062],[2.332878,50.239081],[2.32887,50.237219],[2.314767,50.23442],[2.31625,50.231393],[2.320808,50.232837],[2.331301,50.221724],[2.327132,50.213098],[2.325191,50.215934],[2.318389,50.219148],[2.301693,50.212957],[2.296925,50.213711],[2.290685,50.218578],[2.287735,50.221354],[2.269351,50.227649],[2.253431,50.214685],[2.239739,50.213173],[2.230807,50.21063],[2.227382,50.208606],[2.224421,50.217361],[2.213785,50.217356],[2.204867,50.21395],[2.199908,50.215175],[2.19949,50.212415],[2.187737,50.20968],[2.183477,50.21002],[2.178498,50.207293],[2.173297,50.207886],[2.14976,50.19043],[2.146971,50.193267],[2.141667,50.202461],[2.135692,50.207448],[2.12193,50.210288],[2.114559,50.202862],[2.110291,50.204492],[2.096639,50.206629],[2.085714,50.201017],[2.08483,50.204225],[2.083606,50.216968],[2.080371,50.219413],[2.068487,50.227091],[2.067945,50.232978],[2.063816,50.234456],[2.064081,50.23752],[2.077822,50.248731],[2.075299,50.251164],[2.064405,50.255625],[2.059045,50.255369],[2.048668,50.256771],[2.037773,50.264059],[2.034272,50.266195],[2.026236,50.269553],[2.01185,50.267966],[2.003229,50.270384],[2.000611,50.272428],[1.994128,50.275716],[1.969736,50.282455],[1.959874,50.29049],[1.955702,50.289557],[1.949353,50.286198],[1.945648,50.287747],[1.934163,50.299384],[1.959846,50.311618],[1.963934,50.318055],[1.964332,50.321219],[1.946195,50.33149],[1.941134,50.330674],[1.919498,50.312591],[1.898883,50.313334],[1.898602,50.315917],[1.893294,50.318168],[1.888094,50.318059],[1.875354,50.322729],[1.869131,50.334471],[1.852133,50.341066],[1.851698,50.342911],[1.846308,50.343606],[1.821907,50.35029],[1.81855,50.352233],[1.804679,50.359606],[1.800413,50.359555],[1.791952,50.359464],[1.786838,50.359656],[1.761849,50.361608],[1.755055,50.35705],[1.740339,50.354521],[1.730052,50.347825],[1.725573,50.345723],[1.703836,50.343036],[1.694837,50.338882],[1.69253,50.342908],[1.690565,50.33969],[1.667566,50.330743],[1.662287,50.331458],[1.66431,50.334533],[1.651627,50.33981],[1.646499,50.340077],[1.641544,50.352153],[1.631789,50.361518],[1.633358,50.364239],[1.623055,50.371433],[1.617782,50.372227],[1.613351,50.370489],[1.600635,50.375949],[1.580943,50.378678],[1.573413,50.387274],[1.571513,50.390377],[1.555965,50.398753],[1.568914,50.439935],[1.573471,50.467703],[1.574189,50.471159],[1.576258,50.48754],[1.578151,50.519207],[1.585536,50.536007],[1.590797,50.53675],[1.595956,50.53056],[1.610679,50.525762],[1.630697,50.513623],[1.63487,50.511326],[1.637225,50.509647],[1.640627,50.508786],[1.655632,50.507783],[1.660189,50.506342],[1.661916,50.506522],[1.661612,50.507363],[1.647457,50.511285],[1.635626,50.513579],[1.613803,50.537628],[1.609281,50.53966],[1.580884,50.564105],[1.576899,50.577435],[1.578796,50.580643],[1.578041,50.603336],[1.578329,50.606624],[1.576175,50.636336],[1.578647,50.639246],[1.572075,50.660918],[1.572168,50.664106],[1.562514,50.689053],[1.562605,50.692276],[1.561442,50.699353],[1.570984,50.712126],[1.567627,50.722238],[1.584842,50.727918],[1.586783,50.72479],[1.591143,50.72659],[1.599415,50.724547],[1.593564,50.733537],[1.5957,50.746645],[1.594676,50.749864],[1.605048,50.765497],[1.604096,50.803185],[1.609219,50.804337],[1.599884,50.805946],[1.59543,50.814762],[1.594044,50.817725],[1.58994,50.828653],[1.588712,50.831501],[1.578546,50.855164],[1.581354,50.869095],[1.585456,50.871456],[1.612931,50.87268],[1.631553,50.876187],[1.636224,50.877037],[1.666962,50.8922],[1.689409,50.912507],[1.692683,50.915377],[1.70248,50.92175],[1.705862,50.923804],[1.725274,50.936285],[1.744412,50.943638],[1.779646,50.95451],[1.823042,50.961484],[1.828446,50.962405],[1.839031,50.964782],[1.846962,50.963348],[1.86769,50.973881],[1.889653,50.972732],[1.907155,50.981283],[1.912384,50.982602],[1.942352,50.988053],[1.967848,50.988786],[1.972904,50.989626],[1.993557,50.993741],[2.041204,50.997272],[2.051657,51.004465],[2.06212,51.005988],[2.067712,51.006505],[2.083572,51.008389],[2.103662,51.00518],[2.117312,50.994675],[2.120473,50.991925],[2.112877,51.00504],[2.146495,51.02689],[2.175015,51.015537],[2.170886,51.013304],[2.179919,51.011309],[2.184275,51.024899],[2.191054,51.030468],[2.190033,51.037216],[2.175106,51.041764],[2.190397,51.041128],[2.208475,51.032409],[2.234957,51.037247],[2.240201,51.038579],[2.259275,51.043537],[2.264227,51.044445],[2.296897,51.050229],[2.302421,51.051014],[2.35041,51.06024],[2.3676,51.051494],[2.383895,51.04901],[2.427124,51.056229],[2.432332,51.057544],[2.46192,51.065289],[2.466931,51.066449],[2.470114,51.067037],[2.473281,51.067669],[2.488896,51.071823],[2.494106,51.073208],[2.541447,51.087757],[2.546031,51.089397],[2.557367,51.073366],[2.559218,51.070054],[2.561481,51.066834],[2.566089,51.046043],[2.567001,51.042674],[2.575724,51.014012],[2.572476,51.013095],[2.574804,51.003614],[2.582346,50.997585],[2.606478,50.988909],[2.629709,50.949333],[2.617791,50.935143],[2.609007,50.931025],[2.594754,50.920753],[2.590013,50.919096],[2.592097,50.915945],[2.602718,50.915047],[2.607418,50.90932],[2.604717,50.906352],[2.608896,50.896291],[2.607309,50.872593],[2.612033,50.866831],[2.602139,50.855935],[2.59917,50.853288],[2.599113,50.849816],[2.614633,50.847667],[2.616995,50.840892],[2.624824,50.836062],[2.634983,50.812756],[2.658365,50.814581],[2.662318,50.816288],[2.670175,50.821037],[2.682146,50.813926],[2.719826,50.812052],[2.723565,50.809503],[2.725014,50.795725],[2.735823,50.783636],[2.738556,50.780591],[2.752129,50.777425],[2.754308,50.774603],[2.760956,50.769259],[2.759503,50.762527],[2.782033,50.747692],[2.791225,50.727528],[2.809139,50.71931],[2.813275,50.716948],[2.848568,50.72176],[2.86741,50.705783],[2.870173,50.702914],[2.884268,50.705898],[2.897134,50.69585],[2.90043,50.693287],[2.909936,50.694362],[2.909077,50.700858],[2.917296,50.70352],[2.922327,50.702805],[2.930072,50.711738],[2.937172,50.730056],[2.943586,50.733792],[2.937651,50.742573],[2.940137,50.745365],[2.952081,50.751849],[2.971968,50.750275],[2.979787,50.754683],[2.983294,50.757186],[3.009904,50.768062],[3.015254,50.773624],[3.029982,50.770427],[3.035274,50.770148],[3.040683,50.775566],[3.053763,50.780154],[3.058745,50.780708],[3.085734,50.772887],[3.090194,50.774391],[3.102702,50.78094],[3.112211,50.793036],[3.125773,50.787774],[3.147109,50.789904],[3.158357,50.775041],[3.161603,50.772264],[3.174469,50.75711],[3.184298,50.749048],[3.192547,50.738923],[3.196344,50.73705],[3.199132,50.734049],[3.193002,50.728442],[3.195467,50.722489],[3.210326,50.713016],[3.247511,50.710327],[3.257956,50.702427],[3.259532,50.695694],[3.253688,50.691138],[3.261831,50.675965],[3.243893,50.669756],[3.242114,50.666681],[3.24437,50.654571],[3.245075,50.651429],[3.24882,50.649456],[3.247623,50.638555],[3.250659,50.636143],[3.256616,50.63107],[3.258704,50.628176],[3.256132,50.621953],[3.270677,50.608783],[3.270969,50.605507],[3.27831,50.5942],[3.276637,50.584834],[3.276169,50.581685],[3.281692,50.576225],[3.27806,50.566755],[3.284599,50.561831],[3.280712,50.559703],[3.276055,50.558269],[3.281236,50.552549],[3.2796,50.539547],[3.287029,50.530869],[3.286531,50.527576],[3.32095,50.517259],[3.328858,50.508128],[3.331755,50.507743],[3.334712,50.507897],[3.360271,50.503696],[3.372971,50.492977],[3.377262,50.490989],[3.400258,50.498564],[3.405551,50.498781],[3.43563,50.509127],[3.439442,50.507228],[3.444757,50.506536],[3.450083,50.507226],[3.456075,50.520704],[3.475,50.532947],[3.506485,50.528416],[3.517988,50.521448],[3.51369,50.511403],[3.497804,50.497798],[3.501589,50.487846],[3.506667,50.489153],[3.526219,50.495301],[3.558634,50.498418],[3.568602,50.500114],[3.578961,50.492849],[3.583316,50.491015],[3.607937,50.496534],[3.629448,50.4814],[3.640294,50.46585],[3.643649,50.463167],[3.65395,50.462601],[3.660986,50.457591],[3.660365,50.444506],[3.667626,50.439745],[3.668833,50.436452],[3.671893,50.412897],[3.673437,50.409648],[3.672952,50.389065],[3.668431,50.382751],[3.665304,50.379895],[3.658408,50.373208],[3.657797,50.370536],[3.666545,50.362184],[3.664978,50.348761],[3.676144,50.338007],[3.673676,50.334932],[3.680066,50.329232],[3.684925,50.327562],[3.694183,50.315425],[3.708085,50.304859],[3.710431,50.303175],[3.716778,50.30787],[3.714352,50.316782],[3.726565,50.310821],[3.73174,50.311904],[3.729811,50.326873],[3.734504,50.332332],[3.738629,50.345819],[3.747527,50.349788],[3.758248,50.34887],[3.763554,50.348083],[3.765482,50.35124],[3.781047,50.35328],[3.79658,50.351367],[3.805725,50.35462],[3.810935,50.353994],[3.813953,50.34794],[3.811659,50.344885],[3.821792,50.345949],[3.82999,50.353032],[3.84015,50.353861],[3.854478,50.35053],[3.857562,50.347896],[3.870706,50.3387],[3.885758,50.339482],[3.888876,50.333282],[3.88606,50.327062],[3.915284,50.330647],[3.919801,50.332184],[3.961807,50.34808],[3.967141,50.347454],[3.96736,50.340575],[3.972104,50.346499],[3.982059,50.343978],[3.98687,50.342459],[3.993217,50.347705],[4.013692,50.351337],[4.02522,50.357894],[4.037613,50.342904],[4.05219,50.338785],[4.077086,50.320747],[4.078661,50.310434],[4.078833,50.309256],[4.098934,50.312258],[4.108291,50.304137],[4.11803,50.302649],[4.12539,50.283096],[4.124121,50.273275],[4.1341,50.274019],[4.138373,50.261524],[4.134956,50.259086],[4.153771,50.256756],[4.163658,50.257292],[4.166825,50.267059],[4.152045,50.276932],[4.160433,50.285869],[4.170685,50.285566],[4.179618,50.276761],[4.209977,50.270073],[4.22082,50.254296],[4.204554,50.240572],[4.199062,50.240455],[4.183381,50.232148],[4.16644,50.215094],[4.150867,50.213418],[4.16042,50.194846],[4.156247,50.192837],[4.156582,50.186063],[4.150045,50.176595],[4.15506,50.167136],[4.153214,50.160373],[4.140636,50.153709],[4.129467,50.138032],[4.126925,50.134921],[4.146143,50.128959],[4.163119,50.13506],[4.195247,50.134599],[4.203384,50.115316],[4.197658,50.109444],[4.204636,50.104535],[4.205375,50.097989],[4.227539,50.079679],[4.23076,50.073215],[4.22816,50.066702],[4.201024,50.056902],[4.190622,50.049422],[4.175988,50.0458],[4.171064,50.047005],[4.164072,50.048662],[4.160782,50.047525],[4.135626,50.018567],[4.135425,50.015183],[4.147204,50.004033],[4.162406,49.996551],[4.156285,49.987212],[4.145596,49.980252],[4.140895,49.97876]]]},"properties":{"nom":"Nord-Pas-de-Calais","code":"31"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[5.470062,48.420929],[5.468366,48.423682],[5.464657,48.425353],[5.455491,48.422519],[5.44593,48.42484],[5.444199,48.428035],[5.439576,48.434197],[5.429225,48.434409],[5.409502,48.44554],[5.403949,48.455175],[5.406055,48.465393],[5.403623,48.467854],[5.40115,48.470299],[5.398074,48.473187],[5.377321,48.471912],[5.369382,48.476553],[5.368678,48.476252],[5.363594,48.477271],[5.34947,48.481989],[5.346954,48.485053],[5.327505,48.508998],[5.317018,48.508906],[5.30559,48.515761],[5.302655,48.513091],[5.295728,48.508329],[5.292344,48.509312],[5.289147,48.510526],[5.287443,48.513709],[5.272637,48.514317],[5.229125,48.530773],[5.221951,48.52648],[5.217139,48.527712],[5.212253,48.528793],[5.211558,48.531911],[5.207077,48.537475],[5.194712,48.540557],[5.197028,48.546678],[5.192655,48.548397],[5.172768,48.557149],[5.165068,48.565343],[5.160367,48.564133],[5.152213,48.560339],[5.143528,48.563133],[5.140569,48.565697],[5.134455,48.570693],[5.131277,48.572586],[5.127067,48.580103],[5.123434,48.582138],[5.117875,48.58689],[5.119453,48.595716],[5.114686,48.594577],[5.094681,48.592969],[5.070286,48.595925],[5.068597,48.599193],[5.05939,48.61519],[5.056671,48.632333],[5.051809,48.632966],[5.033402,48.613765],[5.006401,48.611389],[4.996262,48.618793],[5.004196,48.634604],[4.994686,48.646164],[4.993755,48.655223],[4.992812,48.658271],[4.996128,48.660473],[5.011053,48.667835],[5.008261,48.670482],[5.007434,48.680069],[5.003256,48.682038],[4.988428,48.684428],[4.990665,48.690724],[5.003295,48.696172],[5.006402,48.698855],[4.999273,48.710392],[5.012702,48.707153],[5.016002,48.709517],[5.006168,48.721442],[5.00922,48.741392],[4.989575,48.742044],[4.981359,48.745636],[4.980624,48.7485],[4.978949,48.751704],[4.953825,48.768195],[4.949258,48.770537],[4.935478,48.784318],[4.934376,48.790589],[4.924802,48.792381],[4.920462,48.790984],[4.898034,48.796138],[4.893365,48.796958],[4.892929,48.797694],[4.89003,48.800358],[4.896351,48.809029],[4.890378,48.814107],[4.888761,48.81721],[4.90027,48.824629],[4.902918,48.827745],[4.930968,48.839404],[4.935493,48.8405],[4.937384,48.848107],[4.928577,48.851029],[4.923236,48.862891],[4.912256,48.869463],[4.913098,48.872733],[4.916497,48.875413],[4.923063,48.888495],[4.920098,48.89466],[4.913592,48.897678],[4.915801,48.899847],[4.917043,48.903209],[4.932159,48.912682],[4.936209,48.922142],[4.949578,48.9303],[4.954079,48.930911],[4.957261,48.928034],[4.97332,48.928868],[4.996952,48.93704],[5.012848,48.936747],[5.014887,48.942515],[5.014132,48.945586],[5.027718,48.952194],[5.030943,48.954325],[5.037757,48.974125],[5.029939,48.978638],[5.000441,48.983398],[4.995417,48.982465],[5.009278,48.993135],[5.03062,48.994998],[5.031576,49.001287],[5.037505,49.010568],[5.035641,49.020575],[5.035267,49.02256],[5.032916,49.025739],[5.01001,49.034688],[4.966715,49.021005],[4.965432,49.02144],[4.968234,49.024281],[5.000361,49.050536],[5.005744,49.059872],[5.003861,49.065678],[4.996638,49.088913],[4.997767,49.092276],[4.996343,49.106502],[4.987983,49.119636],[4.984722,49.122496],[4.98064,49.126485],[4.978523,49.128453],[4.974853,49.132849],[4.965324,49.15119],[4.964624,49.154412],[4.954392,49.168122],[4.952939,49.171051],[4.941676,49.183805],[4.942378,49.186771],[4.953973,49.194083],[4.978532,49.200454],[4.990533,49.207415],[4.991859,49.210838],[4.988955,49.213484],[4.977581,49.219751],[4.975569,49.222788],[4.970838,49.235536],[4.950989,49.236866],[4.960253,49.239962],[4.968033,49.248792],[4.996246,49.257977],[4.9999,49.260453],[4.998664,49.263657],[5.006624,49.26767],[5.011029,49.269287],[5.025812,49.273042],[5.036007,49.271224],[5.051181,49.274052],[5.049709,49.283366],[5.05546,49.28798],[5.059407,49.289747],[5.056637,49.293365],[5.051473,49.294217],[5.041741,49.296693],[5.030794,49.308172],[5.038152,49.316204],[5.032377,49.323927],[5.029392,49.326036],[5.028499,49.332354],[5.027099,49.335615],[5.055816,49.359435],[5.054072,49.36611],[5.060209,49.371517],[5.08389,49.370428],[5.088622,49.369627],[5.100617,49.380497],[5.10415,49.389778],[5.088653,49.398615],[5.084472,49.404586],[5.099317,49.413842],[5.109334,49.415475],[5.115029,49.420582],[5.107781,49.424674],[5.106154,49.427696],[5.100887,49.440834],[5.10986,49.45625],[5.102876,49.460175],[5.100672,49.461265],[5.095809,49.460397],[5.082957,49.470364],[5.083,49.473807],[5.084529,49.48056],[5.079907,49.486366],[5.074537,49.486683],[5.059979,49.50119],[5.059872,49.504708],[5.062563,49.507449],[5.077415,49.508733],[5.084962,49.517108],[5.085535,49.520335],[5.089874,49.521087],[5.097719,49.533646],[5.090506,49.537996],[5.090175,49.544789],[5.095677,49.554358],[5.09608,49.557786],[5.104178,49.55609],[5.108388,49.555298],[5.112148,49.559701],[5.113352,49.562098],[5.106024,49.578524],[5.115037,49.590926],[5.119715,49.592678],[5.145609,49.589194],[5.152668,49.580106],[5.152895,49.576623],[5.160299,49.569569],[5.159887,49.566691],[5.168633,49.563658],[5.177683,49.567155],[5.186928,49.569695],[5.196319,49.567547],[5.201334,49.56814],[5.214137,49.573013],[5.234775,49.565668],[5.234681,49.562235],[5.247139,49.557618],[5.251771,49.556714],[5.259298,49.544356],[5.26271,49.54182],[5.271867,49.54457],[5.277031,49.544159],[5.284348,49.552419],[5.307404,49.557781],[5.31177,49.55929],[5.308171,49.562847],[5.312228,49.565143],[5.339981,49.59419],[5.347645,49.5897],[5.357528,49.589886],[5.361514,49.592056],[5.37203,49.592166],[5.379728,49.595629],[5.381689,49.605705],[5.389677,49.615617],[5.393537,49.617088],[5.428929,49.595401],[5.430972,49.592384],[5.428995,49.589196],[5.439331,49.569803],[5.453857,49.565967],[5.446263,49.553389],[5.441353,49.552139],[5.442549,49.550272],[5.465261,49.536308],[5.46403,49.526199],[5.447197,49.517881],[5.463425,49.508966],[5.466285,49.498927],[5.470911,49.497214],[5.484815,49.506686],[5.526401,49.511392],[5.531456,49.512519],[5.533447,49.513412],[5.542475,49.516973],[5.553983,49.527872],[5.569193,49.527344],[5.593826,49.521361],[5.607102,49.506986],[5.610984,49.505931],[5.61742,49.514353],[5.621111,49.520649],[5.617958,49.530347],[5.628092,49.538059],[5.632798,49.539558],[5.632922,49.543062],[5.645203,49.549691],[5.660806,49.552354],[5.669231,49.548509],[5.679833,49.548293],[5.698123,49.542339],[5.701263,49.539518],[5.721682,49.541013],[5.730061,49.544475],[5.742718,49.539271],[5.757155,49.542568],[5.758513,49.559101],[5.772744,49.562553],[5.815257,49.544938],[5.810482,49.543538],[5.815282,49.539335],[5.817199,49.536997],[5.836173,49.54178],[5.844181,49.529668],[5.835261,49.526522],[5.836046,49.519957],[5.864012,49.50125],[5.888261,49.497338],[5.893402,49.496919],[5.911798,49.501631],[5.931451,49.498774],[5.9362,49.499954],[5.945434,49.49964],[5.951237,49.494894],[5.955345,49.493328],[5.970201,49.490222],[5.974236,49.466415],[5.985665,49.45955],[5.979316,49.454049],[5.982054,49.451067],[6.001039,49.455581],[6.025686,49.453546],[6.027222,49.450342],[6.037181,49.44868],[6.042151,49.447809],[6.056344,49.465405],[6.076592,49.463606],[6.086264,49.455759],[6.095623,49.452849],[6.100813,49.452887],[6.099041,49.463321],[6.102919,49.469734],[6.122159,49.474501],[6.129603,49.491138],[6.139986,49.489547],[6.144612,49.487736],[6.157537,49.493157],[6.156764,49.502837],[6.175179,49.508733],[6.179634,49.50706],[6.211439,49.506311],[6.216733,49.506819],[6.217001,49.509987],[6.226394,49.509998],[6.235639,49.508069],[6.242694,49.51218],[6.276154,49.503536],[6.279483,49.497482],[6.280569,49.49416],[6.294515,49.487026],[6.299231,49.488211],[6.295625,49.481716],[6.319861,49.477096],[6.331354,49.469962],[6.333778,49.46689],[6.343426,49.468379],[6.34711,49.466028],[6.351248,49.467038],[6.360963,49.461299],[6.364391,49.459486],[6.368857,49.45982],[6.367599,49.466539],[6.4032,49.465958],[6.422407,49.476014],[6.431843,49.47446],[6.436886,49.468937],[6.440433,49.466669],[6.45394,49.463891],[6.468186,49.464734],[6.481532,49.454923],[6.484899,49.452469],[6.500555,49.449723],[6.530296,49.435292],[6.535419,49.434161],[6.554641,49.41905],[6.538352,49.411007],[6.540528,49.401145],[6.551364,49.397138],[6.55234,49.394095],[6.5846,49.384433],[6.585932,49.370897],[6.596177,49.369234],[6.59857,49.363053],[6.587068,49.351599],[6.574899,49.358051],[6.569627,49.357703],[6.564998,49.356103],[6.56538,49.349289],[6.577573,49.338419],[6.578704,49.335083],[6.592112,49.333641],[6.590861,49.324977],[6.588885,49.322102],[6.615992,49.302684],[6.628629,49.298633],[6.631762,49.296028],[6.640485,49.293687],[6.652022,49.284249],[6.65323,49.281116],[6.667846,49.280439],[6.660753,49.260721],[6.66153,49.257332],[6.665016,49.254724],[6.680232,49.254287],[6.688785,49.246223],[6.685103,49.243744],[6.692921,49.217549],[6.697286,49.21557],[6.722115,49.219423],[6.730623,49.206712],[6.712838,49.189558],[6.71753,49.179756],[6.719747,49.176591],[6.726909,49.17178],[6.730153,49.169168],[6.743225,49.164298],[6.747885,49.165917],[6.773788,49.167645],[6.784134,49.168149],[6.829632,49.152667],[6.834463,49.151379],[6.840668,49.154197],[6.843841,49.155517],[6.847701,49.15741],[6.84531,49.160142],[6.844708,49.172916],[6.858744,49.175752],[6.860935,49.178625],[6.861287,49.182044],[6.85014,49.193517],[6.851165,49.20046],[6.841082,49.208586],[6.840444,49.214232],[6.858445,49.221631],[6.879987,49.212595],[6.884808,49.211108],[6.894288,49.210198],[6.924296,49.223077],[6.934805,49.222131],[6.940357,49.216549],[6.943567,49.21377],[6.95021,49.208638],[6.953543,49.206062],[6.957561,49.203806],[6.976575,49.208643],[6.996648,49.197456],[6.998807,49.194287],[7.008091,49.193745],[7.013078,49.188627],[7.01544,49.191267],[7.020264,49.192727],[7.033706,49.188262],[7.028266,49.171313],[7.046368,49.131905],[7.045659,49.128454],[7.045846,49.118382],[7.057568,49.11254],[7.067036,49.115227],[7.071995,49.124747],[7.085937,49.129153],[7.089676,49.131502],[7.08047,49.142474],[7.082145,49.153436],[7.103087,49.154614],[7.110839,49.150424],[7.103631,49.145377],[7.104239,49.138685],[7.124926,49.1412],[7.130931,49.135628],[7.131685,49.132181],[7.135634,49.129749],[7.158799,49.120775],[7.164081,49.126922],[7.184878,49.12963],[7.196066,49.122082],[7.198332,49.115178],[7.201847,49.117594],[7.21111,49.124896],[7.245446,49.129712],[7.249111,49.127395],[7.279325,49.12327],[7.283683,49.117577],[7.2934,49.11516],[7.302035,49.121514],[7.304114,49.124078],[7.313686,49.136539],[7.325955,49.143446],[7.362775,49.145177],[7.362421,49.148476],[7.366178,49.172012],[7.376353,49.174272],[7.381506,49.175273],[7.445344,49.184718],[7.446641,49.182869],[7.434909,49.1779],[7.443693,49.17111],[7.433547,49.167775],[7.4386,49.16441],[7.450558,49.168209],[7.456798,49.164133],[7.475833,49.168766],[7.491343,49.168512],[7.495109,49.15843],[7.503565,49.150531],[7.489804,49.140023],[7.489583,49.136528],[7.498562,49.133563],[7.504947,49.124138],[7.51783,49.118773],[7.521466,49.108883],[7.52386,49.105821],[7.531179,49.097134],[7.55886,49.082379],[7.568486,49.079906],[7.604695,49.081747],[7.630777,49.070737],[7.632308,49.057032],[7.635286,49.05417],[7.639294,49.048116],[7.628348,49.036784],[7.626239,49.033722],[7.617915,49.030386],[7.61065,49.02201],[7.606889,49.019911],[7.608195,49.010413],[7.588722,48.991028],[7.591159,48.988098],[7.592336,48.984846],[7.589173,48.982049],[7.582392,48.972661],[7.583559,48.966041],[7.579926,48.961613],[7.553536,48.942389],[7.556685,48.936198],[7.536256,48.933506],[7.527765,48.94197],[7.513191,48.94325],[7.508411,48.943637],[7.487019,48.950061],[7.477995,48.961495],[7.45365,48.964879],[7.451631,48.967972],[7.447472,48.966046],[7.404511,48.958203],[7.392312,48.952716],[7.379918,48.951197],[7.375698,48.951424],[7.368109,48.953547],[7.363903,48.955249],[7.355124,48.954443],[7.350815,48.95279],[7.343367,48.948431],[7.333561,48.948246],[7.326853,48.943382],[7.322678,48.945298],[7.30646,48.953357],[7.305475,48.956643],[7.290203,48.956516],[7.290433,48.967089],[7.293927,48.97262],[7.238142,48.987699],[7.214241,48.981158],[7.209311,48.980088],[7.206959,48.982962],[7.195847,48.99377],[7.186213,48.993765],[7.183774,48.996443],[7.17359,49.006109],[7.169316,49.005042],[7.161607,49.001933],[7.160682,49.005243],[7.130174,49.005406],[7.122364,49.023224],[7.122979,49.026481],[7.116375,49.031083],[7.119477,49.037217],[7.116612,49.039764],[7.106358,49.045346],[7.106797,49.048645],[7.101874,49.061211],[7.113838,49.06471],[7.117294,49.066815],[7.099342,49.077891],[7.089116,49.070389],[7.074754,49.072129],[7.071032,49.069752],[7.0686,49.063388],[7.072338,49.057247],[7.073994,49.054787],[7.07866,49.050361],[7.057835,49.033158],[7.054913,49.030628],[7.047917,49.015909],[7.054464,49.011393],[7.052581,49.008495],[7.046848,48.99991],[7.033682,48.989855],[7.038662,48.976659],[7.027888,48.969485],[7.032219,48.956049],[7.0288,48.956038],[7.025378,48.956153],[7.021751,48.956995],[7.018077,48.957758],[6.992743,48.960271],[6.988544,48.958835],[6.987805,48.952764],[6.986481,48.949764],[6.986381,48.946859],[6.981781,48.941943],[6.977854,48.932782],[6.965828,48.926518],[6.960851,48.925575],[6.948243,48.931394],[6.946783,48.934665],[6.944402,48.934798],[6.941442,48.924595],[6.955073,48.920039],[6.963487,48.907281],[6.957465,48.894209],[6.972319,48.890754],[6.982702,48.891543],[6.987974,48.891368],[7.02655,48.879711],[7.05501,48.864918],[7.051672,48.863771],[7.050544,48.858928],[7.079252,48.863896],[7.089153,48.863089],[7.094146,48.862882],[7.098772,48.854214],[7.092468,48.849882],[7.08838,48.848392],[7.085183,48.847466],[7.0817,48.847594],[7.057126,48.847413],[7.052063,48.846882],[7.052897,48.838668],[7.054315,48.836017],[7.049695,48.82345],[7.047117,48.820637],[7.049769,48.817729],[7.052435,48.814838],[7.080902,48.813562],[7.08504,48.811908],[7.087958,48.806171],[7.070561,48.80128],[7.066783,48.799329],[7.07513,48.788048],[7.079244,48.786287],[7.085536,48.791619],[7.099603,48.795613],[7.104562,48.796451],[7.108504,48.797865],[7.11715,48.798936],[7.12201,48.799714],[7.126562,48.80107],[7.121704,48.807055],[7.129735,48.815648],[7.139809,48.817497],[7.143224,48.820135],[7.147387,48.822242],[7.142117,48.835546],[7.148854,48.844597],[7.173508,48.842019],[7.180837,48.849012],[7.184904,48.850374],[7.194087,48.83902],[7.187199,48.834281],[7.198574,48.827821],[7.203428,48.826957],[7.211982,48.826133],[7.216079,48.820801],[7.219991,48.819087],[7.217749,48.828109],[7.227,48.828485],[7.245313,48.817343],[7.254469,48.819908],[7.258105,48.822174],[7.260133,48.820292],[7.262461,48.81857],[7.25826,48.817567],[7.245235,48.810032],[7.249213,48.80781],[7.257857,48.804125],[7.260851,48.797551],[7.26406,48.799121],[7.270146,48.802506],[7.27423,48.800442],[7.290899,48.793908],[7.290695,48.786296],[7.308377,48.767536],[7.31334,48.76724],[7.311008,48.764081],[7.292018,48.75221],[7.286137,48.731524],[7.268353,48.714201],[7.264726,48.700459],[7.262073,48.697798],[7.242262,48.69211],[7.245176,48.689637],[7.257236,48.672849],[7.261696,48.6715],[7.266276,48.662301],[7.271164,48.662378],[7.304356,48.66021],[7.290602,48.645564],[7.272375,48.633446],[7.276136,48.624258],[7.256898,48.599923],[7.261855,48.594421],[7.265139,48.591718],[7.260833,48.590044],[7.256282,48.588676],[7.253572,48.586241],[7.241234,48.573737],[7.221387,48.558066],[7.220273,48.554683],[7.206436,48.552543],[7.201361,48.552704],[7.193254,48.549243],[7.189533,48.540042],[7.187101,48.537272],[7.170802,48.531386],[7.168499,48.528693],[7.16791,48.527596],[7.162675,48.528113],[7.1527,48.530426],[7.137943,48.528347],[7.115674,48.536804],[7.091701,48.529796],[7.07936,48.536418],[7.07538,48.534771],[7.065385,48.524304],[7.068664,48.522516],[7.077105,48.516336],[7.08063,48.512675],[7.083459,48.515577],[7.103796,48.517641],[7.123165,48.513592],[7.125615,48.49959],[7.096288,48.503118],[7.094251,48.506197],[7.091003,48.500878],[7.093726,48.492352],[7.093663,48.489283],[7.114032,48.485326],[7.118811,48.483719],[7.116817,48.47333],[7.104289,48.454162],[7.106218,48.444023],[7.108093,48.440292],[7.109384,48.438797],[7.105324,48.437091],[7.095687,48.426533],[7.097112,48.423457],[7.09342,48.411179],[7.095804,48.404953],[7.087244,48.401015],[7.084985,48.397885],[7.088645,48.395723],[7.092947,48.394169],[7.103692,48.387987],[7.108321,48.379025],[7.106642,48.376065],[7.100822,48.373744],[7.088402,48.363048],[7.085662,48.360142],[7.079827,48.354812],[7.075964,48.352585],[7.101462,48.345028],[7.105971,48.344106],[7.117124,48.334133],[7.136446,48.332414],[7.141319,48.332018],[7.144831,48.332165],[7.147917,48.333273],[7.166545,48.33934],[7.169537,48.342307],[7.183497,48.33839],[7.179213,48.328694],[7.180957,48.325479],[7.190289,48.322888],[7.196704,48.313722],[7.198282,48.310477],[7.193611,48.302029],[7.176243,48.299121],[7.172441,48.297489],[7.174226,48.287813],[7.159414,48.274631],[7.158499,48.268347],[7.157746,48.267526],[7.153763,48.26527],[7.143334,48.258446],[7.132651,48.242828],[7.126811,48.225093],[7.116387,48.20713],[7.108503,48.20317],[7.105556,48.200462],[7.108345,48.197509],[7.10629,48.194309],[7.102708,48.191911],[7.086997,48.183753],[7.083342,48.177446],[7.082138,48.174767],[7.077558,48.170925],[7.078438,48.164011],[7.059047,48.139181],[7.068587,48.130752],[7.084163,48.129222],[7.083691,48.122066],[7.076708,48.108486],[7.070402,48.106442],[7.06841,48.103285],[7.05165,48.082607],[7.034358,48.075389],[7.024436,48.063384],[7.023359,48.056483],[7.018614,48.055059],[7.012283,48.045833],[7.009749,48.042891],[7.013018,48.040113],[7.016021,48.03719],[7.011704,48.035355],[7.002566,48.02325],[6.989372,48.018211],[6.981539,48.009421],[6.976517,48.009239],[6.961425,48.000459],[6.951891,48.002411],[6.94353,47.998673],[6.943033,47.991986],[6.943766,47.980383],[6.941063,47.97778],[6.931043,47.97115],[6.925559,47.95925],[6.923823,47.95247],[6.920791,47.945939],[6.924738,47.929147],[6.912346,47.918378],[6.926308,47.915407],[6.927478,47.908754],[6.917036,47.901651],[6.918458,47.898414],[6.898328,47.888695],[6.907124,47.881158],[6.907135,47.87129],[6.90804,47.864664],[6.914944,47.860055],[6.918906,47.858039],[6.918805,47.852861],[6.920048,47.850287],[6.916958,47.847597],[6.907205,47.84604],[6.897089,47.834788],[6.896086,47.832974],[6.891175,47.833525],[6.84618,47.822945],[6.84183,47.824782],[6.823539,47.813054],[6.820459,47.815803],[6.791946,47.830164],[6.788987,47.834828],[6.791102,47.837833],[6.790661,47.844226],[6.784952,47.849573],[6.738164,47.862049],[6.737294,47.865474],[6.735247,47.864926],[6.730734,47.866448],[6.710113,47.875824],[6.703674,47.881424],[6.699113,47.88228],[6.691325,47.885841],[6.689377,47.887299],[6.686832,47.888262],[6.683084,47.890424],[6.669324,47.893288],[6.645203,47.904085],[6.639864,47.910053],[6.640878,47.917022],[6.629286,47.928183],[6.612502,47.936042],[6.610445,47.938907],[6.605983,47.944468],[6.601244,47.944379],[6.596358,47.943313],[6.568708,47.934499],[6.558255,47.92297],[6.555909,47.91996],[6.542014,47.902534],[6.537052,47.90226],[6.503444,47.89625],[6.478262,47.885442],[6.475807,47.888451],[6.457047,47.907833],[6.460947,47.91751],[6.448609,47.922719],[6.431921,47.94381],[6.40842,47.943197],[6.407328,47.946444],[6.404507,47.952832],[6.388353,47.960018],[6.378691,47.958657],[6.364993,47.962572],[6.360997,47.960255],[6.322461,47.950083],[6.306804,47.950777],[6.292827,47.955646],[6.277334,47.953809],[6.274023,47.951659],[6.262957,47.946139],[6.259912,47.944368],[6.250767,47.939082],[6.24611,47.939427],[6.237987,47.932842],[6.233409,47.933599],[6.219609,47.935662],[6.214423,47.930382],[6.209344,47.931052],[6.204514,47.932292],[6.208138,47.942344],[6.207056,47.945733],[6.182056,47.956933],[6.179247,47.954595],[6.171045,47.952637],[6.161247,47.958296],[6.16079,47.9612],[6.155256,47.964428],[6.149584,47.968498],[6.161293,47.972786],[6.163943,47.975606],[6.159124,47.99129],[6.152863,47.996114],[6.156058,48.006944],[6.152409,48.009447],[6.131397,48.024084],[6.127381,48.022228],[6.114302,48.018072],[6.109235,48.012469],[6.104598,48.01351],[6.085549,48.013453],[6.080853,48.012802],[6.072221,48.015549],[6.068036,48.013506],[6.036864,48.001455],[6.022306,47.98761],[6.023004,47.977974],[6.009432,47.967848],[6.008771,47.961399],[6.002262,47.95609],[5.970778,47.957205],[5.970446,47.953917],[5.968902,47.947409],[5.964594,47.946113],[5.956055,47.938664],[5.947635,47.936183],[5.942523,47.936312],[5.932628,47.937928],[5.937566,47.950629],[5.941548,47.952321],[5.959703,47.966553],[5.957968,47.969587],[5.950301,47.973508],[5.947534,47.97971],[5.943047,47.979813],[5.92739,47.974396],[5.92133,47.971026],[5.919171,47.967864],[5.918043,47.94736],[5.912835,47.946751],[5.907548,47.946647],[5.902823,47.945539],[5.89341,47.937865],[5.896863,47.931638],[5.884726,47.926047],[5.884687,47.929263],[5.86448,47.945877],[5.856384,47.948371],[5.849925,47.964359],[5.854239,47.966037],[5.853561,47.969881],[5.848679,47.969612],[5.845841,47.975696],[5.839894,47.968087],[5.839732,47.964804],[5.829489,47.958036],[5.815285,47.956918],[5.805268,47.946973],[5.802464,47.949714],[5.788412,47.952696],[5.778492,47.97801],[5.782448,47.980041],[5.793592,47.990709],[5.794917,47.993694],[5.786418,48.004017],[5.787321,48.007417],[5.776419,48.022407],[5.776273,48.025247],[5.77682,48.033644],[5.768818,48.030033],[5.764225,48.031536],[5.740804,48.049012],[5.721596,48.045262],[5.720627,48.052019],[5.721281,48.052725],[5.713371,48.061623],[5.70029,48.067443],[5.696278,48.077566],[5.692078,48.075546],[5.659139,48.083668],[5.655564,48.081237],[5.655767,48.071364],[5.632878,48.084375],[5.639085,48.097282],[5.645839,48.102524],[5.649393,48.105046],[5.658664,48.106017],[5.672119,48.10944],[5.669706,48.112241],[5.656558,48.120551],[5.661573,48.125615],[5.662513,48.12879],[5.666767,48.130206],[5.676706,48.136311],[5.675079,48.139247],[5.685843,48.150941],[5.684222,48.158234],[5.686525,48.164079],[5.682299,48.175483],[5.680173,48.178674],[5.69977,48.18967],[5.730983,48.1897],[5.730055,48.198319],[5.726909,48.200508],[5.72451,48.203075],[5.722288,48.205953],[5.710844,48.219937],[5.706542,48.221945],[5.687792,48.234185],[5.683443,48.232942],[5.676344,48.229016],[5.672188,48.231009],[5.640901,48.242354],[5.642055,48.245749],[5.64946,48.254703],[5.651579,48.257969],[5.653809,48.268524],[5.649556,48.270294],[5.611652,48.291815],[5.608996,48.288858],[5.588425,48.273763],[5.588128,48.277317],[5.533514,48.325102],[5.531164,48.328159],[5.523022,48.340512],[5.526527,48.346856],[5.522169,48.348623],[5.507063,48.350159],[5.499385,48.354552],[5.474496,48.35457],[5.472422,48.351535],[5.459888,48.349483],[5.443838,48.336826],[5.426048,48.331062],[5.424574,48.334216],[5.417157,48.342622],[5.42237,48.35175],[5.418555,48.360694],[5.421257,48.363349],[5.442884,48.379386],[5.438413,48.380864],[5.408839,48.383026],[5.393838,48.391566],[5.397763,48.392593],[5.409779,48.39262],[5.447148,48.414986],[5.465177,48.419995],[5.470062,48.420929]]]},"properties":{"nom":"Lorraine","code":"41"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[7.198282,48.310477],[7.196704,48.313722],[7.190289,48.322888],[7.180957,48.325479],[7.179213,48.328694],[7.183497,48.33839],[7.169537,48.342307],[7.166545,48.33934],[7.147917,48.333273],[7.144831,48.332165],[7.141319,48.332018],[7.136446,48.332414],[7.117124,48.334133],[7.105971,48.344106],[7.101462,48.345028],[7.075964,48.352585],[7.079827,48.354812],[7.085662,48.360142],[7.088402,48.363048],[7.100822,48.373744],[7.106642,48.376065],[7.108321,48.379025],[7.103692,48.387987],[7.092947,48.394169],[7.088645,48.395723],[7.084985,48.397885],[7.087244,48.401015],[7.095804,48.404953],[7.09342,48.411179],[7.097112,48.423457],[7.095687,48.426533],[7.105324,48.437091],[7.109384,48.438797],[7.108093,48.440292],[7.106218,48.444023],[7.104289,48.454162],[7.116817,48.47333],[7.118811,48.483719],[7.114032,48.485326],[7.093663,48.489283],[7.093726,48.492352],[7.091003,48.500878],[7.094251,48.506197],[7.096288,48.503118],[7.125615,48.49959],[7.123165,48.513592],[7.103796,48.517641],[7.083459,48.515577],[7.08063,48.512675],[7.077105,48.516336],[7.068664,48.522516],[7.065385,48.524304],[7.07538,48.534771],[7.07936,48.536418],[7.091701,48.529796],[7.115674,48.536804],[7.137943,48.528347],[7.1527,48.530426],[7.162675,48.528113],[7.16791,48.527596],[7.168499,48.528693],[7.170802,48.531386],[7.187101,48.537272],[7.189533,48.540042],[7.193254,48.549243],[7.201361,48.552704],[7.206436,48.552543],[7.220273,48.554683],[7.221387,48.558066],[7.241234,48.573737],[7.253572,48.586241],[7.256282,48.588676],[7.260833,48.590044],[7.265139,48.591718],[7.261855,48.594421],[7.256898,48.599923],[7.276136,48.624258],[7.272375,48.633446],[7.290602,48.645564],[7.304356,48.66021],[7.271164,48.662378],[7.266276,48.662301],[7.261696,48.6715],[7.257236,48.672849],[7.245176,48.689637],[7.242262,48.69211],[7.262073,48.697798],[7.264726,48.700459],[7.268353,48.714201],[7.286137,48.731524],[7.292018,48.75221],[7.311008,48.764081],[7.31334,48.76724],[7.308377,48.767536],[7.290695,48.786296],[7.290899,48.793908],[7.27423,48.800442],[7.270146,48.802506],[7.26406,48.799121],[7.260851,48.797551],[7.257857,48.804125],[7.249213,48.80781],[7.245235,48.810032],[7.25826,48.817567],[7.262461,48.81857],[7.260133,48.820292],[7.258105,48.822174],[7.254469,48.819908],[7.245313,48.817343],[7.227,48.828485],[7.217749,48.828109],[7.219991,48.819087],[7.216079,48.820801],[7.211982,48.826133],[7.203428,48.826957],[7.198574,48.827821],[7.187199,48.834281],[7.194087,48.83902],[7.184904,48.850374],[7.180837,48.849012],[7.173508,48.842019],[7.148854,48.844597],[7.142117,48.835546],[7.147387,48.822242],[7.143224,48.820135],[7.139809,48.817497],[7.129735,48.815648],[7.121704,48.807055],[7.126562,48.80107],[7.12201,48.799714],[7.11715,48.798936],[7.108504,48.797865],[7.104562,48.796451],[7.099603,48.795613],[7.085536,48.791619],[7.079244,48.786287],[7.07513,48.788048],[7.066783,48.799329],[7.070561,48.80128],[7.087958,48.806171],[7.08504,48.811908],[7.080902,48.813562],[7.052435,48.814838],[7.049769,48.817729],[7.047117,48.820637],[7.049695,48.82345],[7.054315,48.836017],[7.052897,48.838668],[7.052063,48.846882],[7.057126,48.847413],[7.0817,48.847594],[7.085183,48.847466],[7.08838,48.848392],[7.092468,48.849882],[7.098772,48.854214],[7.094146,48.862882],[7.089153,48.863089],[7.079252,48.863896],[7.050544,48.858928],[7.051672,48.863771],[7.05501,48.864918],[7.02655,48.879711],[6.987974,48.891368],[6.982702,48.891543],[6.972319,48.890754],[6.957465,48.894209],[6.963487,48.907281],[6.955073,48.920039],[6.941442,48.924595],[6.944402,48.934798],[6.946783,48.934665],[6.948243,48.931394],[6.960851,48.925575],[6.965828,48.926518],[6.977854,48.932782],[6.981781,48.941943],[6.986381,48.946859],[6.986481,48.949764],[6.987805,48.952764],[6.988544,48.958835],[6.992743,48.960271],[7.018077,48.957758],[7.021751,48.956995],[7.025378,48.956153],[7.0288,48.956038],[7.032219,48.956049],[7.027888,48.969485],[7.038662,48.976659],[7.033682,48.989855],[7.046848,48.99991],[7.052581,49.008495],[7.054464,49.011393],[7.047917,49.015909],[7.054913,49.030628],[7.057835,49.033158],[7.07866,49.050361],[7.073994,49.054787],[7.072338,49.057247],[7.0686,49.063388],[7.071032,49.069752],[7.074754,49.072129],[7.089116,49.070389],[7.099342,49.077891],[7.117294,49.066815],[7.113838,49.06471],[7.101874,49.061211],[7.106797,49.048645],[7.106358,49.045346],[7.116612,49.039764],[7.119477,49.037217],[7.116375,49.031083],[7.122979,49.026481],[7.122364,49.023224],[7.130174,49.005406],[7.160682,49.005243],[7.161607,49.001933],[7.169316,49.005042],[7.17359,49.006109],[7.183774,48.996443],[7.186213,48.993765],[7.195847,48.99377],[7.206959,48.982962],[7.209311,48.980088],[7.214241,48.981158],[7.238142,48.987699],[7.293927,48.97262],[7.290433,48.967089],[7.290203,48.956516],[7.305475,48.956643],[7.30646,48.953357],[7.322678,48.945298],[7.326853,48.943382],[7.333561,48.948246],[7.343367,48.948431],[7.350815,48.95279],[7.355124,48.954443],[7.363903,48.955249],[7.368109,48.953547],[7.375698,48.951424],[7.379918,48.951197],[7.392312,48.952716],[7.404511,48.958203],[7.447472,48.966046],[7.451631,48.967972],[7.45365,48.964879],[7.477995,48.961495],[7.487019,48.950061],[7.508411,48.943637],[7.513191,48.94325],[7.527765,48.94197],[7.536256,48.933506],[7.556685,48.936198],[7.553536,48.942389],[7.579926,48.961613],[7.583559,48.966041],[7.582392,48.972661],[7.589173,48.982049],[7.592336,48.984846],[7.591159,48.988098],[7.588722,48.991028],[7.608195,49.010413],[7.606889,49.019911],[7.61065,49.02201],[7.617915,49.030386],[7.626239,49.033722],[7.628348,49.036784],[7.639294,49.048116],[7.635286,49.05417],[7.671084,49.045973],[7.691726,49.049221],[7.697077,49.04975],[7.695848,49.056301],[7.720646,49.052734],[7.730602,49.054459],[7.73223,49.04436],[7.737335,49.044744],[7.766454,49.046681],[7.778385,49.057637],[7.788754,49.058593],[7.799934,49.064164],[7.832946,49.047714],[7.847331,49.043701],[7.852164,49.038092],[7.85549,49.035417],[7.85963,49.035294],[7.867408,49.033492],[7.870725,49.036276],[7.890091,49.047948],[7.915271,49.04191],[7.920273,49.043209],[7.93704,49.056232],[7.965415,49.040484],[7.976319,49.028302],[7.997338,49.028022],[8.020574,49.019375],[8.051136,49.012758],[8.068136,48.999308],[8.086945,48.990564],[8.091376,48.989258],[8.128979,48.983059],[8.132862,48.981072],[8.147114,48.977487],[8.162481,48.97742],[8.193517,48.976475],[8.202866,48.969356],[8.221431,48.975244],[8.230295,48.967296],[8.201638,48.959154],[8.18931,48.948225],[8.187147,48.945057],[8.184989,48.941942],[8.168506,48.924505],[8.165528,48.921786],[8.141568,48.896071],[8.123191,48.86812],[8.121444,48.864942],[8.108217,48.835263],[8.107299,48.828408],[8.106525,48.825115],[8.087016,48.802012],[8.083462,48.799432],[8.062413,48.789188],[8.041571,48.790728],[8.031856,48.788146],[8.017477,48.762752],[7.982994,48.761088],[7.978115,48.760246],[7.96876,48.753048],[7.967702,48.729788],[7.966976,48.726312],[7.924601,48.690536],[7.921391,48.687965],[7.896251,48.66721],[7.893,48.664595],[7.845044,48.645532],[7.835923,48.633674],[7.834842,48.630221],[7.830464,48.620063],[7.805009,48.593193],[7.800177,48.583169],[7.805468,48.558838],[7.805162,48.513501],[7.793974,48.501669],[7.771475,48.492437],[7.76841,48.489892],[7.766162,48.463973],[7.763982,48.45384],[7.753419,48.434607],[7.751579,48.431347],[7.733547,48.398685],[7.730966,48.382205],[7.735052,48.365845],[7.736099,48.362594],[7.737219,48.359422],[7.743503,48.340333],[7.744637,48.336871],[7.744002,48.326387],[7.738099,48.320576],[7.705078,48.309636],[7.693937,48.302121],[7.680779,48.257324],[7.679569,48.254181],[7.678301,48.250851],[7.666151,48.221101],[7.64185,48.203996],[7.637131,48.195871],[7.635273,48.192681],[7.613793,48.169665],[7.5995,48.155631],[7.598898,48.135428],[7.580143,48.124441],[7.577859,48.121393],[7.577109,48.118484],[7.579775,48.106843],[7.575989,48.093902],[7.569675,48.084214],[7.573386,48.059634],[7.56859,48.036339],[7.575301,48.027532],[7.578458,48.024886],[7.605851,48.003353],[7.608583,48.000325],[7.622157,47.973659],[7.606746,47.951286],[7.603343,47.948562],[7.599898,47.946137],[7.582634,47.929891],[7.580516,47.923853],[7.580987,47.92077],[7.58346,47.901435],[7.582515,47.898263],[7.556153,47.877574],[7.555642,47.870535],[7.556106,47.86719],[7.563369,47.851168],[7.562403,47.841018],[7.545848,47.812652],[7.544378,47.809554],[7.54106,47.803453],[7.530228,47.783444],[7.53157,47.769374],[7.533371,47.766032],[7.538212,47.757261],[7.539848,47.75434],[7.548326,47.73873],[7.5472,47.728838],[7.538458,47.717052],[7.534946,47.714718],[7.51721,47.704857],[7.513752,47.702818],[7.512127,47.696092],[7.519798,47.683417],[7.521764,47.663011],[7.524674,47.660194],[7.53729,47.649597],[7.56457,47.634568],[7.567355,47.631736],[7.569511,47.628722],[7.574324,47.615802],[7.593036,47.600821],[7.592744,47.597587],[7.584266,47.575713],[7.574802,47.576139],[7.565025,47.576324],[7.557757,47.571568],[7.551769,47.563381],[7.547566,47.561733],[7.517363,47.545768],[7.507876,47.544756],[7.504503,47.542966],[7.499111,47.538242],[7.499031,47.535234],[7.502447,47.528845],[7.520963,47.533393],[7.530015,47.526324],[7.523452,47.51704],[7.508542,47.515581],[7.500923,47.518499],[7.497798,47.521226],[7.498597,47.517751],[7.50873,47.509911],[7.50952,47.499566],[7.489963,47.483741],[7.480658,47.480791],[7.470657,47.48159],[7.464232,47.486994],[7.454619,47.489427],[7.438881,47.496295],[7.434763,47.497966],[7.421954,47.483524],[7.421225,47.48017],[7.43116,47.48146],[7.453485,47.473576],[7.44463,47.461914],[7.430067,47.459278],[7.422547,47.447753],[7.403802,47.437691],[7.400344,47.435387],[7.386298,47.431969],[7.356149,47.434239],[7.338911,47.440572],[7.328807,47.440841],[7.324561,47.438952],[7.303976,47.438255],[7.245487,47.420194],[7.24434,47.42734],[7.236761,47.430276],[7.235902,47.436879],[7.227924,47.439657],[7.210452,47.436118],[7.206223,47.434891],[7.196512,47.435747],[7.172162,47.445503],[7.178251,47.458139],[7.177993,47.468109],[7.18773,47.483462],[7.197923,47.490162],[7.202313,47.491698],[7.198165,47.493579],[7.163992,47.49011],[7.130346,47.503027],[7.142173,47.525024],[7.137885,47.530657],[7.136668,47.533675],[7.13281,47.539202],[7.131577,47.540291],[7.128022,47.541832],[7.118633,47.547311],[7.114064,47.547969],[7.106216,47.551337],[7.107618,47.55364],[7.107532,47.558583],[7.108259,47.561802],[7.102383,47.570599],[7.094361,47.573495],[7.09288,47.576936],[7.088724,47.583544],[7.086324,47.584908],[7.086787,47.58765],[7.085388,47.593053],[7.081668,47.59476],[7.078391,47.596858],[7.074772,47.59885],[7.074506,47.598859],[7.041412,47.599821],[7.02538,47.592381],[7.024362,47.589127],[7.019563,47.588382],[7.019479,47.593982],[7.009213,47.599391],[7.006716,47.601451],[7.011233,47.605703],[7.007647,47.607467],[7.006179,47.619333],[7.007601,47.621573],[7.006925,47.626418],[7.010525,47.630152],[7.016567,47.645049],[7.017172,47.648129],[7.019805,47.650679],[7.034478,47.649461],[7.039244,47.650395],[7.037741,47.653449],[7.035237,47.659655],[7.045282,47.670375],[7.04166,47.672411],[7.037637,47.675146],[7.039997,47.678101],[7.045893,47.683341],[7.038634,47.687945],[7.036342,47.692224],[7.038652,47.692586],[7.035736,47.694967],[7.027565,47.70537],[7.029376,47.70866],[7.037418,47.721558],[7.035193,47.724105],[7.032079,47.726186],[7.0294,47.728378],[7.020601,47.73444],[7.018794,47.737404],[7.015778,47.743464],[7.011685,47.741631],[6.998425,47.745825],[6.993444,47.746743],[6.974542,47.751469],[6.938479,47.77082],[6.923452,47.770064],[6.922358,47.772092],[6.91897,47.773998],[6.907546,47.777715],[6.902092,47.776446],[6.891696,47.778342],[6.88743,47.779961],[6.864959,47.784607],[6.862197,47.787438],[6.842967,47.81367],[6.84618,47.822945],[6.891175,47.833525],[6.896086,47.832974],[6.897089,47.834788],[6.907205,47.84604],[6.916958,47.847597],[6.920048,47.850287],[6.918805,47.852861],[6.918906,47.858039],[6.914944,47.860055],[6.90804,47.864664],[6.907135,47.87129],[6.907124,47.881158],[6.898328,47.888695],[6.918458,47.898414],[6.917036,47.901651],[6.927478,47.908754],[6.926308,47.915407],[6.912346,47.918378],[6.924738,47.929147],[6.920791,47.945939],[6.923823,47.95247],[6.925559,47.95925],[6.931043,47.97115],[6.941063,47.97778],[6.943766,47.980383],[6.943033,47.991986],[6.94353,47.998673],[6.951891,48.002411],[6.961425,48.000459],[6.976517,48.009239],[6.981539,48.009421],[6.989372,48.018211],[7.002566,48.02325],[7.011704,48.035355],[7.016021,48.03719],[7.013018,48.040113],[7.009749,48.042891],[7.012283,48.045833],[7.018614,48.055059],[7.023359,48.056483],[7.024436,48.063384],[7.034358,48.075389],[7.05165,48.082607],[7.06841,48.103285],[7.070402,48.106442],[7.076708,48.108486],[7.083691,48.122066],[7.084163,48.129222],[7.068587,48.130752],[7.059047,48.139181],[7.078438,48.164011],[7.077558,48.170925],[7.082138,48.174767],[7.083342,48.177446],[7.086997,48.183753],[7.102708,48.191911],[7.10629,48.194309],[7.108345,48.197509],[7.105556,48.200462],[7.108503,48.20317],[7.116387,48.20713],[7.126811,48.225093],[7.132651,48.242828],[7.143334,48.258446],[7.153763,48.26527],[7.157746,48.267526],[7.158499,48.268347],[7.159414,48.274631],[7.174226,48.287813],[7.172441,48.297489],[7.176243,48.299121],[7.193611,48.302029],[7.198282,48.310477]]]},"properties":{"nom":"Alsace","code":"42"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[6.939179,47.433699],[6.940003,47.409705],[6.937511,47.40668],[6.922395,47.405497],[6.917294,47.405462],[6.909527,47.396178],[6.912148,47.386626],[6.899724,47.382222],[6.894959,47.381661],[6.885413,47.374455],[6.879952,47.358955],[6.879799,47.352434],[6.89647,47.357906],[6.901015,47.358763],[6.920493,47.355565],[6.930147,47.357537],[6.935257,47.35758],[6.984479,47.363608],[6.98955,47.36347],[6.999339,47.364873],[7.011355,47.371552],[7.031338,47.368562],[7.044112,47.362727],[7.048192,47.36053],[7.050404,47.357334],[7.051706,47.35033],[7.060295,47.341854],[7.052918,47.336892],[7.054788,47.333735],[7.043934,47.326957],[7.01457,47.3252],[7.009734,47.324358],[7.015482,47.315596],[7.00841,47.302725],[6.995778,47.296806],[6.980483,47.296034],[6.972093,47.292058],[6.951849,47.292227],[6.94714,47.290882],[6.944646,47.288858],[6.940919,47.286632],[6.950996,47.267856],[6.947221,47.251633],[6.952923,47.246184],[6.955123,47.243161],[6.942553,47.237451],[6.939468,47.231111],[6.929815,47.229591],[6.921872,47.221018],[6.897364,47.209632],[6.893103,47.207783],[6.882161,47.200958],[6.87197,47.185615],[6.865136,47.181589],[6.861406,47.179343],[6.844374,47.172069],[6.843407,47.168703],[6.852315,47.165937],[6.852956,47.15993],[6.826476,47.14417],[6.820016,47.140084],[6.817468,47.137501],[6.802146,47.129461],[6.764215,47.119814],[6.748738,47.111069],[6.744134,47.109605],[6.74055,47.107035],[6.743571,47.093715],[6.710902,47.085026],[6.696344,47.066511],[6.715974,47.051027],[6.697949,47.038366],[6.682777,47.03648],[6.677932,47.03522],[6.65419,47.022374],[6.633911,46.998571],[6.620909,46.993076],[6.606114,46.991071],[6.596134,46.992518],[6.588013,46.989436],[6.584229,46.987598],[6.562451,46.979314],[6.505959,46.96613],[6.499559,46.971381],[6.496686,46.97419],[6.491348,46.970638],[6.475298,46.959372],[6.472517,46.95686],[6.448683,46.93546],[6.44475,46.933405],[6.433014,46.927817],[6.444981,46.913914],[6.447445,46.911101],[6.464539,46.889913],[6.461724,46.865647],[6.461318,46.86218],[6.459761,46.851592],[6.44377,46.833353],[6.435604,46.813933],[6.430999,46.812322],[6.437754,46.799827],[6.441691,46.797753],[6.457247,46.788571],[6.450819,46.775201],[6.428577,46.75621],[6.395194,46.747469],[6.387937,46.734561],[6.374269,46.730395],[6.365232,46.722261],[6.360237,46.723083],[6.357442,46.719848],[6.342653,46.710781],[6.302496,46.696362],[6.298217,46.694485],[6.274457,46.684901],[6.270491,46.683194],[6.260915,46.672013],[6.257273,46.669782],[6.212793,46.640632],[6.175137,46.61398],[6.161275,46.609704],[6.137714,46.596376],[6.113298,46.578623],[6.112953,46.575118],[6.134502,46.560147],[6.138109,46.55766],[6.155487,46.545557],[6.146652,46.53031],[6.137178,46.529723],[6.124071,46.51952],[6.12083,46.516942],[6.097317,46.482454],[6.073784,46.464409],[6.074869,46.454278],[6.084833,46.446494],[6.086247,46.443149],[6.066153,46.419386],[6.064008,46.416227],[6.060575,46.417509],[6.056984,46.41619],[6.052807,46.411409],[6.03102,46.388101],[6.013384,46.375997],[5.984117,46.362656],[5.975139,46.350293],[5.944004,46.31221],[5.941531,46.309264],[5.937319,46.309769],[5.925908,46.313766],[5.92187,46.311942],[5.909198,46.283945],[5.894627,46.286614],[5.891985,46.2836],[5.869187,46.264984],[5.867694,46.26822],[5.86085,46.268771],[5.850659,46.261701],[5.826262,46.261715],[5.81828,46.262868],[5.813575,46.263597],[5.766045,46.26833],[5.761568,46.26715],[5.733675,46.263769],[5.72966,46.261928],[5.725181,46.260693],[5.721538,46.263177],[5.71596,46.280375],[5.718978,46.294287],[5.714553,46.30807],[5.684582,46.310934],[5.683316,46.315874],[5.68023,46.318433],[5.668481,46.323899],[5.645285,46.324791],[5.649798,46.334192],[5.649207,46.337296],[5.646092,46.34281],[5.637458,46.336442],[5.635057,46.333308],[5.612518,46.326556],[5.605673,46.31364],[5.604641,46.309438],[5.60215,46.30681],[5.597891,46.297898],[5.587251,46.292509],[5.582606,46.293236],[5.564674,46.292767],[5.561577,46.286576],[5.559458,46.283515],[5.539301,46.268903],[5.51137,46.26436],[5.507498,46.265481],[5.502609,46.270211],[5.499595,46.268205],[5.475362,46.265221],[5.471308,46.26721],[5.457672,46.276848],[5.459001,46.290531],[5.466531,46.293242],[5.473218,46.308926],[5.475305,46.315385],[5.471469,46.316532],[5.46518,46.323542],[5.460892,46.322472],[5.454476,46.317998],[5.437146,46.315127],[5.435942,46.318468],[5.423534,46.347732],[5.41024,46.309105],[5.406583,46.309912],[5.404054,46.314767],[5.404041,46.315668],[5.404352,46.319184],[5.401686,46.332799],[5.402729,46.336119],[5.373462,46.352236],[5.374637,46.355329],[5.375761,46.358431],[5.376474,46.361669],[5.363472,46.37002],[5.365075,46.373077],[5.375164,46.379714],[5.377881,46.382324],[5.370296,46.386031],[5.367105,46.388692],[5.36352,46.390388],[5.348116,46.399417],[5.334092,46.399723],[5.309146,46.410257],[5.298806,46.415528],[5.307817,46.41486],[5.312333,46.416021],[5.308145,46.420475],[5.321727,46.428955],[5.310561,46.446775],[5.313215,46.452496],[5.321799,46.453601],[5.323147,46.456483],[5.323351,46.462506],[5.37379,46.460451],[5.376345,46.463127],[5.385312,46.470544],[5.39358,46.467596],[5.398099,46.466601],[5.413803,46.472045],[5.41843,46.477298],[5.420044,46.480183],[5.419959,46.480905],[5.421173,46.500302],[5.407571,46.500409],[5.395657,46.505686],[5.392428,46.508213],[5.382494,46.515574],[5.362852,46.517909],[5.359459,46.523636],[5.360073,46.524245],[5.361582,46.548231],[5.362579,46.551642],[5.357651,46.560563],[5.364888,46.564513],[5.36788,46.566946],[5.364614,46.57504],[5.362124,46.577272],[5.370666,46.580527],[5.375536,46.580156],[5.400427,46.580232],[5.404691,46.582115],[5.411943,46.598628],[5.400092,46.609372],[5.398593,46.612719],[5.408583,46.614554],[5.41379,46.614643],[5.429678,46.625847],[5.43349,46.627757],[5.440623,46.634902],[5.440601,46.637911],[5.415008,46.654146],[5.422912,46.658312],[5.427103,46.660161],[5.424814,46.661344],[5.424647,46.664645],[5.420175,46.670009],[5.42209,46.673032],[5.398501,46.68268],[5.395359,46.685052],[5.406696,46.695399],[5.408349,46.698436],[5.406642,46.703931],[5.395012,46.712507],[5.395908,46.715605],[5.390789,46.72636],[5.393641,46.728633],[5.365725,46.731068],[5.362002,46.733117],[5.36676,46.752396],[5.371518,46.751523],[5.390112,46.767199],[5.390248,46.770592],[5.383425,46.775526],[5.37375,46.777069],[5.370807,46.783525],[5.355051,46.790938],[5.346456,46.790222],[5.341506,46.790692],[5.332496,46.797713],[5.331173,46.810269],[5.328584,46.812916],[5.333584,46.817814],[5.335836,46.820732],[5.344929,46.821006],[5.351119,46.816088],[5.371185,46.825152],[5.375268,46.826986],[5.378666,46.827574],[5.382143,46.827844],[5.386981,46.826825],[5.405169,46.8324],[5.410217,46.832583],[5.413464,46.828263],[5.416653,46.826782],[5.463195,46.828578],[5.459748,46.834183],[5.464207,46.840168],[5.457796,46.845269],[5.459286,46.855245],[5.454209,46.855921],[5.445188,46.85941],[5.442352,46.854479],[5.431176,46.860598],[5.428179,46.860238],[5.425168,46.85986],[5.420118,46.860579],[5.404005,46.86888],[5.400587,46.882733],[5.403681,46.889389],[5.392627,46.891384],[5.391603,46.894072],[5.387129,46.893039],[5.382801,46.891741],[5.377783,46.889989],[5.360337,46.88434],[5.35077,46.892129],[5.341274,46.890098],[5.335521,46.884666],[5.328758,46.889316],[5.328806,46.895927],[5.313989,46.908656],[5.312069,46.911703],[5.31075,46.91807],[5.310031,46.921246],[5.308512,46.926925],[5.307367,46.936459],[5.292306,46.940705],[5.287444,46.940793],[5.275311,46.935304],[5.270919,46.929365],[5.262014,46.927387],[5.26267,46.930815],[5.26267,46.937733],[5.251317,46.944585],[5.26227,46.950171],[5.263045,46.953605],[5.255236,46.979888],[5.267767,46.988388],[5.271966,46.989342],[5.27507,46.998026],[5.279146,46.999153],[5.298243,47.001791],[5.303971,47.01045],[5.313647,47.011302],[5.31824,47.012461],[5.317198,47.015806],[5.279764,47.025333],[5.275327,47.026934],[5.275218,47.027161],[5.283484,47.046318],[5.295851,47.05608],[5.29907,47.058637],[5.301895,47.060904],[5.310446,47.060509],[5.323975,47.073793],[5.332533,47.076593],[5.341181,47.077174],[5.345786,47.076649],[5.357909,47.0786],[5.35988,47.081136],[5.363344,47.078345],[5.377627,47.079322],[5.390537,47.086784],[5.391341,47.089757],[5.39781,47.094649],[5.398163,47.104649],[5.400588,47.107562],[5.411215,47.116853],[5.412114,47.11986],[5.409191,47.125019],[5.414128,47.129753],[5.414566,47.132762],[5.424893,47.136977],[5.428918,47.136965],[5.438985,47.142986],[5.439112,47.148991],[5.438298,47.152017],[5.445085,47.158422],[5.448641,47.159662],[5.450873,47.162857],[5.45227,47.166268],[5.458916,47.181935],[5.456227,47.191629],[5.452548,47.193815],[5.446891,47.200762],[5.449262,47.203216],[5.470255,47.211102],[5.474206,47.21308],[5.479136,47.218514],[5.475309,47.231305],[5.48011,47.237048],[5.484335,47.238056],[5.480799,47.257443],[5.483133,47.26041],[5.487558,47.266557],[5.488004,47.280175],[5.488275,47.282601],[5.488559,47.285018],[5.493047,47.288182],[5.501046,47.285128],[5.505365,47.284071],[5.508605,47.293368],[5.516953,47.30115],[5.518539,47.304187],[5.513097,47.30816],[5.509108,47.308093],[5.498495,47.314221],[5.47918,47.31496],[5.47167,47.318119],[5.47373,47.324317],[5.477101,47.326749],[5.48901,47.329034],[5.494704,47.338099],[5.490065,47.354347],[5.488824,47.35586],[5.489222,47.369875],[5.491894,47.372889],[5.496919,47.388551],[5.477992,47.394234],[5.451393,47.383973],[5.449094,47.38675],[5.433256,47.392522],[5.433672,47.395837],[5.442459,47.407046],[5.430425,47.421357],[5.43846,47.444235],[5.441022,47.446559],[5.435629,47.450293],[5.431819,47.448265],[5.418162,47.450702],[5.413959,47.459966],[5.409538,47.461463],[5.379572,47.450561],[5.380928,47.453577],[5.381551,47.459229],[5.370722,47.464475],[5.379534,47.466142],[5.404108,47.475102],[5.407642,47.47719],[5.403346,47.477351],[5.387298,47.481194],[5.388163,47.483616],[5.391142,47.488157],[5.397351,47.496252],[5.399216,47.499014],[5.427781,47.496522],[5.43203,47.491777],[5.436433,47.490416],[5.44311,47.494932],[5.44746,47.4962],[5.451419,47.504303],[5.453722,47.506696],[5.469344,47.524368],[5.471747,47.52746],[5.486404,47.526969],[5.487817,47.52991],[5.49664,47.54713],[5.496668,47.550588],[5.491292,47.563383],[5.48238,47.565446],[5.486492,47.578615],[5.478564,47.605386],[5.471052,47.60822],[5.468523,47.611129],[5.440171,47.629771],[5.425595,47.632074],[5.422559,47.629463],[5.399805,47.597162],[5.396263,47.595966],[5.389121,47.595238],[5.378175,47.603549],[5.374079,47.604542],[5.37492,47.621355],[5.387812,47.636212],[5.4032,47.64509],[5.405616,47.64813],[5.401686,47.648445],[5.398975,47.653075],[5.406486,47.673623],[5.421267,47.676442],[5.434217,47.671257],[5.444413,47.670891],[5.46934,47.674833],[5.478994,47.682301],[5.48277,47.684644],[5.502301,47.67741],[5.506626,47.67666],[5.510298,47.674231],[5.530594,47.674009],[5.565433,47.703904],[5.567389,47.707121],[5.571029,47.706798],[5.575159,47.704735],[5.583657,47.700883],[5.585265,47.690572],[5.596814,47.671647],[5.60234,47.675063],[5.606094,47.675205],[5.61539,47.67334],[5.629558,47.676742],[5.648861,47.675549],[5.653261,47.677161],[5.659334,47.681543],[5.659723,47.684534],[5.663716,47.684911],[5.667652,47.685479],[5.675428,47.682563],[5.692038,47.687162],[5.693806,47.690219],[5.694993,47.693641],[5.69322,47.703958],[5.684206,47.712279],[5.687023,47.72023],[5.685198,47.722694],[5.692512,47.724003],[5.695895,47.725177],[5.692494,47.727885],[5.689648,47.733903],[5.692378,47.73693],[5.70942,47.744948],[5.706342,47.751116],[5.707806,47.76152],[5.708914,47.764664],[5.703353,47.769574],[5.67997,47.769968],[5.682247,47.775391],[5.680107,47.777736],[5.676612,47.779158],[5.685751,47.812782],[5.693678,47.82175],[5.708478,47.821967],[5.713646,47.821568],[5.718716,47.821082],[5.728007,47.818452],[5.731428,47.817634],[5.743349,47.821147],[5.746056,47.823596],[5.748488,47.829771],[5.744204,47.848855],[5.753406,47.851647],[5.758832,47.85667],[5.761192,47.859343],[5.789061,47.855199],[5.798883,47.855712],[5.796619,47.849823],[5.801098,47.846978],[5.805625,47.84732],[5.823562,47.852293],[5.828521,47.851948],[5.827301,47.85467],[5.824676,47.859399],[5.82186,47.869111],[5.842544,47.894233],[5.845094,47.897089],[5.848194,47.903435],[5.851353,47.905898],[5.883191,47.900257],[5.886494,47.902634],[5.889189,47.907368],[5.890458,47.909759],[5.888909,47.913039],[5.884726,47.926047],[5.896863,47.931638],[5.89341,47.937865],[5.902823,47.945539],[5.907548,47.946647],[5.912835,47.946751],[5.918043,47.94736],[5.919171,47.967864],[5.92133,47.971026],[5.92739,47.974396],[5.943047,47.979813],[5.947534,47.97971],[5.950301,47.973508],[5.957968,47.969587],[5.959703,47.966553],[5.941548,47.952321],[5.937566,47.950629],[5.932628,47.937928],[5.942523,47.936312],[5.947635,47.936183],[5.956055,47.938664],[5.964594,47.946113],[5.968902,47.947409],[5.970446,47.953917],[5.970778,47.957205],[6.002262,47.95609],[6.008771,47.961399],[6.009432,47.967848],[6.023004,47.977974],[6.022306,47.98761],[6.036864,48.001455],[6.068036,48.013506],[6.072221,48.015549],[6.080853,48.012802],[6.085549,48.013453],[6.104598,48.01351],[6.109235,48.012469],[6.114302,48.018072],[6.127381,48.022228],[6.131397,48.024084],[6.152409,48.009447],[6.156058,48.006944],[6.152863,47.996114],[6.159124,47.99129],[6.163943,47.975606],[6.161293,47.972786],[6.149584,47.968498],[6.155256,47.964428],[6.16079,47.9612],[6.161247,47.958296],[6.171045,47.952637],[6.179247,47.954595],[6.182056,47.956933],[6.207056,47.945733],[6.208138,47.942344],[6.204514,47.932292],[6.209344,47.931052],[6.214423,47.930382],[6.219609,47.935662],[6.233409,47.933599],[6.237987,47.932842],[6.24611,47.939427],[6.250767,47.939082],[6.259912,47.944368],[6.262957,47.946139],[6.274023,47.951659],[6.277334,47.953809],[6.292827,47.955646],[6.306804,47.950777],[6.322461,47.950083],[6.360997,47.960255],[6.364993,47.962572],[6.378691,47.958657],[6.388353,47.960018],[6.404507,47.952832],[6.407328,47.946444],[6.40842,47.943197],[6.431921,47.94381],[6.448609,47.922719],[6.460947,47.91751],[6.457047,47.907833],[6.475807,47.888451],[6.478262,47.885442],[6.503444,47.89625],[6.537052,47.90226],[6.542014,47.902534],[6.555909,47.91996],[6.558255,47.92297],[6.568708,47.934499],[6.596358,47.943313],[6.601244,47.944379],[6.605983,47.944468],[6.610445,47.938907],[6.612502,47.936042],[6.629286,47.928183],[6.640878,47.917022],[6.639864,47.910053],[6.645203,47.904085],[6.669324,47.893288],[6.683084,47.890424],[6.686832,47.888262],[6.689377,47.887299],[6.691325,47.885841],[6.699113,47.88228],[6.703674,47.881424],[6.710113,47.875824],[6.730734,47.866448],[6.735247,47.864926],[6.737294,47.865474],[6.738164,47.862049],[6.784952,47.849573],[6.790661,47.844226],[6.791102,47.837833],[6.788987,47.834828],[6.791946,47.830164],[6.820459,47.815803],[6.823539,47.813054],[6.84183,47.824782],[6.84618,47.822945],[6.842967,47.81367],[6.862197,47.787438],[6.864959,47.784607],[6.88743,47.779961],[6.891696,47.778342],[6.902092,47.776446],[6.907546,47.777715],[6.91897,47.773998],[6.922358,47.772092],[6.923452,47.770064],[6.938479,47.77082],[6.974542,47.751469],[6.993444,47.746743],[6.998425,47.745825],[7.011685,47.741631],[7.015778,47.743464],[7.018794,47.737404],[7.020601,47.73444],[7.0294,47.728378],[7.032079,47.726186],[7.035193,47.724105],[7.037418,47.721558],[7.029376,47.70866],[7.027565,47.70537],[7.035736,47.694967],[7.038652,47.692586],[7.036342,47.692224],[7.038634,47.687945],[7.045893,47.683341],[7.039997,47.678101],[7.037637,47.675146],[7.04166,47.672411],[7.045282,47.670375],[7.035237,47.659655],[7.037741,47.653449],[7.039244,47.650395],[7.034478,47.649461],[7.019805,47.650679],[7.017172,47.648129],[7.016567,47.645049],[7.010525,47.630152],[7.006925,47.626418],[7.007601,47.621573],[7.006179,47.619333],[7.007647,47.607467],[7.011233,47.605703],[7.006716,47.601451],[7.009213,47.599391],[7.019479,47.593982],[7.019563,47.588382],[7.024362,47.589127],[7.02538,47.592381],[7.041412,47.599821],[7.074506,47.598859],[7.074772,47.59885],[7.078391,47.596858],[7.081668,47.59476],[7.085388,47.593053],[7.086787,47.58765],[7.086324,47.584908],[7.088724,47.583544],[7.09288,47.576936],[7.094361,47.573495],[7.102383,47.570599],[7.108259,47.561802],[7.107532,47.558583],[7.107618,47.55364],[7.106216,47.551337],[7.114064,47.547969],[7.118633,47.547311],[7.128022,47.541832],[7.131577,47.540291],[7.13281,47.539202],[7.136668,47.533675],[7.137885,47.530657],[7.142173,47.525024],[7.130346,47.503027],[7.125789,47.502233],[7.110619,47.4949],[7.096726,47.495138],[7.0788,47.489061],[7.036238,47.498999],[7.031552,47.5],[7.024394,47.504213],[7.019427,47.504133],[6.982897,47.494257],[6.988581,47.48559],[6.987743,47.479165],[6.988496,47.473037],[6.991513,47.469112],[6.991764,47.466418],[7.000036,47.464349],[7.000311,47.454695],[6.989853,47.448096],[6.975143,47.447735],[6.970283,47.447053],[6.962571,47.43532],[6.944034,47.433787],[6.939179,47.433699]]],[[[5.444408,46.845347],[5.443001,46.845881],[5.440782,46.846162],[5.442092,46.848423],[5.440846,46.848458],[5.43983,46.84893],[5.440312,46.850586],[5.441095,46.851651],[5.441712,46.851944],[5.441975,46.851938],[5.441991,46.851127],[5.443689,46.850947],[5.442904,46.849838],[5.446155,46.849435],[5.447391,46.848013],[5.448702,46.847976],[5.447832,46.846733],[5.448476,46.846449],[5.447838,46.845697],[5.446746,46.845954],[5.445922,46.845441],[5.445157,46.845637],[5.444408,46.845347]]]]},"properties":{"nom":"Franche-Comt\u00e9","code":"43"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-1.980414,47.028906],[-2.003548,47.060238],[-2.015895,47.066522],[-2.020004,47.06868],[-2.033174,47.074114],[-2.051288,47.091114],[-2.053683,47.094248],[-2.101531,47.10638],[-2.10506,47.112097],[-2.12005,47.110198],[-2.145464,47.111874],[-2.173538,47.119607],[-2.177283,47.121992],[-2.213079,47.124722],[-2.243827,47.135159],[-2.23241,47.1423],[-2.228864,47.144869],[-2.225884,47.151491],[-2.212932,47.156091],[-2.174622,47.158796],[-2.171707,47.161633],[-2.166599,47.167392],[-2.160357,47.194024],[-2.158227,47.19707],[-2.159684,47.211007],[-2.178815,47.235306],[-2.170221,47.243593],[-2.168511,47.267803],[-2.148235,47.269626],[-2.134293,47.274079],[-2.129201,47.274611],[-2.06213,47.282063],[-2.047618,47.286042],[-2.045758,47.289389],[-2.042359,47.291729],[-2.01495,47.285873],[-2.010494,47.284577],[-2.010489,47.294329],[-2.010328,47.297574],[-2.010274,47.314743],[-2.015395,47.315315],[-2.032801,47.304331],[-2.038534,47.313545],[-2.043583,47.313921],[-2.071841,47.305553],[-2.108057,47.306064],[-2.113125,47.30567],[-2.142467,47.300032],[-2.16909,47.289917],[-2.181594,47.29857],[-2.183004,47.295177],[-2.184784,47.282178],[-2.193561,47.278754],[-2.198338,47.272504],[-2.221793,47.265891],[-2.228735,47.257007],[-2.248828,47.254185],[-2.270119,47.239567],[-2.294585,47.234688],[-2.302972,47.237246],[-2.336953,47.25337],[-2.346292,47.265571],[-2.35757,47.272846],[-2.361998,47.274572],[-2.39582,47.281556],[-2.423752,47.274143],[-2.421239,47.25911],[-2.449756,47.263601],[-2.457384,47.268223],[-2.491706,47.275327],[-2.503819,47.280952],[-2.54653,47.291937],[-2.542924,47.29812],[-2.518151,47.30025],[-2.513806,47.298381],[-2.511633,47.302022],[-2.513391,47.303121],[-2.50146,47.317684],[-2.501156,47.324684],[-2.50719,47.341814],[-2.522675,47.359893],[-2.525945,47.362625],[-2.556645,47.373568],[-2.555762,47.376967],[-2.533175,47.384273],[-2.502924,47.402531],[-2.498252,47.40389],[-2.470758,47.416955],[-2.463262,47.412805],[-2.434028,47.413049],[-2.433068,47.416423],[-2.454718,47.425235],[-2.447147,47.43733],[-2.458489,47.448122],[-2.452868,47.460964],[-2.44035,47.465819],[-2.427617,47.475789],[-2.423027,47.477122],[-2.420088,47.4669],[-2.410409,47.458833],[-2.395334,47.456575],[-2.377584,47.462757],[-2.36721,47.463191],[-2.355923,47.455979],[-2.316133,47.462515],[-2.313426,47.483065],[-2.30048,47.498136],[-2.29705,47.512014],[-2.298099,47.515476],[-2.29745,47.515506],[-2.279494,47.510881],[-2.259526,47.51175],[-2.255948,47.509349],[-2.261677,47.500466],[-2.248656,47.495298],[-2.244284,47.49361],[-2.216832,47.507059],[-2.203241,47.5105],[-2.198455,47.511129],[-2.185606,47.509068],[-2.189112,47.499376],[-2.186385,47.493228],[-2.166233,47.490877],[-2.157796,47.494752],[-2.155255,47.497805],[-2.153629,47.508269],[-2.155171,47.518728],[-2.148712,47.52356],[-2.14396,47.524961],[-2.098852,47.533449],[-2.097167,47.540225],[-2.103892,47.549113],[-2.0975,47.569237],[-2.096731,47.572635],[-2.103211,47.575166],[-2.105064,47.577538],[-2.100458,47.578858],[-2.102524,47.595302],[-2.086481,47.603255],[-2.0853,47.606536],[-2.084146,47.609959],[-2.086555,47.623745],[-2.097036,47.63136],[-2.082054,47.649448],[-2.052005,47.650401],[-2.047426,47.663786],[-2.043095,47.665696],[-2.035333,47.668475],[-2.016926,47.666832],[-2.012284,47.666454],[-1.977136,47.691668],[-1.973401,47.694154],[-1.973056,47.694034],[-1.969042,47.68781],[-1.969284,47.674236],[-1.961339,47.670939],[-1.956329,47.671188],[-1.93644,47.686523],[-1.888114,47.695482],[-1.883074,47.694989],[-1.878257,47.6952],[-1.858304,47.70825],[-1.853488,47.708036],[-1.841527,47.705502],[-1.83778,47.706757],[-1.828414,47.709543],[-1.820055,47.705605],[-1.786276,47.699879],[-1.771608,47.698676],[-1.750249,47.706751],[-1.736125,47.70415],[-1.732593,47.701841],[-1.729713,47.699342],[-1.715725,47.699448],[-1.71127,47.700421],[-1.706147,47.70895],[-1.686443,47.7126],[-1.661157,47.710203],[-1.648814,47.720306],[-1.644387,47.722087],[-1.641237,47.721825],[-1.638131,47.722209],[-1.636801,47.741755],[-1.626098,47.756559],[-1.627131,47.759827],[-1.619634,47.763568],[-1.601774,47.764542],[-1.598107,47.766525],[-1.59491,47.773322],[-1.594141,47.77603],[-1.585308,47.778901],[-1.575393,47.778234],[-1.556429,47.783725],[-1.530422,47.78478],[-1.51219,47.797222],[-1.503981,47.801081],[-1.494999,47.798505],[-1.47114,47.80307],[-1.468448,47.805904],[-1.474307,47.823998],[-1.480687,47.828694],[-1.481873,47.831804],[-1.479636,47.83481],[-1.465114,47.83486],[-1.456579,47.83175],[-1.427417,47.832171],[-1.419285,47.829044],[-1.414846,47.827498],[-1.411962,47.828553],[-1.409149,47.827406],[-1.405523,47.825001],[-1.391976,47.828547],[-1.381228,47.821414],[-1.374824,47.808827],[-1.365536,47.806036],[-1.364478,47.799667],[-1.339993,47.795214],[-1.33715,47.794634],[-1.251009,47.777622],[-1.245882,47.776718],[-1.237062,47.799597],[-1.240193,47.802287],[-1.238252,47.809991],[-1.227872,47.82029],[-1.223153,47.819009],[-1.220867,47.821723],[-1.216083,47.836154],[-1.214178,47.842513],[-1.222126,47.850366],[-1.217566,47.85601],[-1.213082,47.857217],[-1.206104,47.858387],[-1.203023,47.856848],[-1.191997,47.865435],[-1.189163,47.867708],[-1.197464,47.87902],[-1.197126,47.885593],[-1.192156,47.891025],[-1.179919,47.89558],[-1.176175,47.897723],[-1.175715,47.910952],[-1.168644,47.915475],[-1.163133,47.928089],[-1.167151,47.934174],[-1.162792,47.937924],[-1.159514,47.939221],[-1.161289,47.952946],[-1.152452,47.966344],[-1.148707,47.968216],[-1.129886,47.971222],[-1.1223,47.986511],[-1.107516,47.988876],[-1.098003,47.987018],[-1.092993,47.987508],[-1.083363,47.985698],[-1.078714,47.984409],[-1.072252,47.982065],[-1.06883,47.982949],[-1.050316,47.984634],[-1.035241,47.99201],[-1.030417,47.992473],[-1.021712,47.995402],[-1.017261,48.008043],[-1.021413,48.017444],[-1.033554,48.032608],[-1.028089,48.038462],[-1.033183,48.051353],[-1.029935,48.057763],[-1.028222,48.061029],[-1.021497,48.068405],[-1.025492,48.069845],[-1.040332,48.078086],[-1.04725,48.086606],[-1.049133,48.089596],[-1.052936,48.106044],[-1.057022,48.122465],[-1.059299,48.125486],[-1.060683,48.148738],[-1.068944,48.159482],[-1.073926,48.159301],[-1.072702,48.165786],[-1.079822,48.176874],[-1.078229,48.179966],[-1.074357,48.200471],[-1.07765,48.20315],[-1.081888,48.205148],[-1.08712,48.21004],[-1.08253,48.216226],[-1.0806,48.2195],[-1.098672,48.25131],[-1.099932,48.268375],[-1.093643,48.272882],[-1.08845,48.290126],[-1.065875,48.309679],[-1.06096,48.311092],[-1.059222,48.312187],[-1.04583,48.329655],[-1.053602,48.338128],[-1.05578,48.341134],[-1.059735,48.366818],[-1.064838,48.367237],[-1.057253,48.375821],[-1.05658,48.379187],[-1.052793,48.380929],[-1.064323,48.399929],[-1.079478,48.413903],[-1.079735,48.417381],[-1.078455,48.418497],[-1.078227,48.422009],[-1.081436,48.438573],[-1.068721,48.448676],[-1.065332,48.451251],[-1.06716,48.460332],[-1.064649,48.466913],[-1.073586,48.474894],[-1.077392,48.491095],[-1.07492,48.501133],[-1.06746,48.505614],[-1.070165,48.508494],[-1.062997,48.51309],[-1.060748,48.515392],[-1.011839,48.492995],[-1.002975,48.48907],[-0.973776,48.494834],[-0.963867,48.502686],[-0.96223,48.512775],[-0.953884,48.516791],[-0.944042,48.514642],[-0.923879,48.513139],[-0.918084,48.50072],[-0.909357,48.497279],[-0.899357,48.497482],[-0.896033,48.494871],[-0.864503,48.499892],[-0.860363,48.501458],[-0.845826,48.497832],[-0.826973,48.477186],[-0.821988,48.476077],[-0.81808,48.474122],[-0.818601,48.468431],[-0.815108,48.457456],[-0.812743,48.45492],[-0.793424,48.465267],[-0.777874,48.465412],[-0.773966,48.442714],[-0.760817,48.436412],[-0.756483,48.436937],[-0.715918,48.450896],[-0.735258,48.462402],[-0.730066,48.472049],[-0.725251,48.47347],[-0.716955,48.470317],[-0.703268,48.472888],[-0.702106,48.469664],[-0.692663,48.468274],[-0.687991,48.469437],[-0.68361,48.47069],[-0.68367,48.476938],[-0.669079,48.483289],[-0.66884,48.486458],[-0.658168,48.474845],[-0.653977,48.457458],[-0.653906,48.453912],[-0.654215,48.444545],[-0.613629,48.460612],[-0.598929,48.47074],[-0.594311,48.472519],[-0.593207,48.470841],[-0.575807,48.470079],[-0.571639,48.468926],[-0.567457,48.474545],[-0.564255,48.476857],[-0.562328,48.473799],[-0.553157,48.472966],[-0.53787,48.488884],[-0.534907,48.491548],[-0.518632,48.497552],[-0.512798,48.506531],[-0.509294,48.508841],[-0.492665,48.502118],[-0.48293,48.502629],[-0.478198,48.50157],[-0.466117,48.512522],[-0.455856,48.512695],[-0.450728,48.512817],[-0.446883,48.514937],[-0.428467,48.510211],[-0.424473,48.508192],[-0.425449,48.507363],[-0.400875,48.507889],[-0.397657,48.510511],[-0.393346,48.501072],[-0.389253,48.49937],[-0.375751,48.496099],[-0.371083,48.495556],[-0.365814,48.487548],[-0.353152,48.483774],[-0.353789,48.496496],[-0.336825,48.502422],[-0.334973,48.509083],[-0.320239,48.522929],[-0.312305,48.520269],[-0.308956,48.518328],[-0.290094,48.516871],[-0.285881,48.515169],[-0.285283,48.508649],[-0.27155,48.507452],[-0.26839,48.520666],[-0.250837,48.528081],[-0.243057,48.537062],[-0.260578,48.549133],[-0.257472,48.551956],[-0.249293,48.556078],[-0.246473,48.565725],[-0.242639,48.567999],[-0.230695,48.56195],[-0.215792,48.559789],[-0.207346,48.56252],[-0.199584,48.558236],[-0.195862,48.555915],[-0.191725,48.551677],[-0.189492,48.548622],[-0.179251,48.541649],[-0.144604,48.527753],[-0.145388,48.52116],[-0.166668,48.514706],[-0.172087,48.502137],[-0.167477,48.502972],[-0.155678,48.49331],[-0.155447,48.490138],[-0.155064,48.48716],[-0.15017,48.478953],[-0.153516,48.476946],[-0.148132,48.471615],[-0.148946,48.458791],[-0.142193,48.454297],[-0.137842,48.452818],[-0.118485,48.448233],[-0.108255,48.448024],[-0.08034,48.449707],[-0.067327,48.457228],[-0.062548,48.456514],[-0.053345,48.453511],[-0.049827,48.447227],[-0.054087,48.43391],[-0.055219,48.430586],[-0.05758,48.429084],[-0.053658,48.393505],[-0.053479,48.390188],[-0.057247,48.384779],[-0.054531,48.382003],[-0.049672,48.375133],[-0.051402,48.378159],[-0.022101,48.387787],[-0.02017,48.393931],[-0.001245,48.397275],[0.00337,48.395996],[0.005246,48.389643],[0.01868,48.381581],[0.023083,48.380207],[0.035453,48.380382],[0.039682,48.380406],[0.062524,48.383028],[0.054482,48.39148],[0.064199,48.40338],[0.067362,48.40606],[0.079721,48.408733],[0.083781,48.410129],[0.083677,48.411027],[0.099434,48.410963],[0.109346,48.423016],[0.111593,48.432317],[0.117659,48.436164],[0.121836,48.435978],[0.125777,48.434174],[0.148697,48.437113],[0.153319,48.437944],[0.158318,48.443078],[0.154882,48.4453],[0.145863,48.452168],[0.143925,48.454948],[0.152522,48.456631],[0.169081,48.449484],[0.173647,48.45088],[0.170289,48.4572],[0.172327,48.463829],[0.186797,48.462814],[0.191952,48.462342],[0.194949,48.463745],[0.213565,48.472834],[0.217968,48.473801],[0.221658,48.473141],[0.225463,48.472861],[0.258785,48.476641],[0.26165,48.479336],[0.262725,48.482862],[0.266806,48.484577],[0.278804,48.480892],[0.283555,48.48145],[0.297909,48.479816],[0.30963,48.473286],[0.314738,48.473194],[0.324524,48.471903],[0.33683,48.462819],[0.340997,48.460977],[0.345224,48.459271],[0.350087,48.458651],[0.35289,48.459694],[0.363205,48.451562],[0.367697,48.44131],[0.367808,48.437739],[0.373314,48.432874],[0.376012,48.430315],[0.381725,48.424788],[0.379512,48.414919],[0.372679,48.410132],[0.375708,48.390098],[0.373864,48.38697],[0.37678,48.385396],[0.378659,48.383232],[0.380868,48.372794],[0.380557,48.369277],[0.387348,48.350595],[0.387484,48.347312],[0.384251,48.343073],[0.380633,48.343065],[0.383907,48.332884],[0.395362,48.32129],[0.408565,48.316323],[0.415531,48.321489],[0.426281,48.317519],[0.427652,48.314858],[0.429965,48.308678],[0.438486,48.306046],[0.442805,48.304636],[0.46327,48.305283],[0.475989,48.300046],[0.491583,48.307165],[0.505824,48.293658],[0.497806,48.289797],[0.494423,48.283488],[0.512572,48.267595],[0.525809,48.265947],[0.530307,48.2655],[0.53656,48.25978],[0.537331,48.252801],[0.537336,48.249237],[0.546795,48.250162],[0.574411,48.244917],[0.579192,48.244412],[0.593727,48.244547],[0.613135,48.242735],[0.622457,48.244921],[0.630203,48.240783],[0.631908,48.234624],[0.635062,48.235515],[0.63848,48.235611],[0.631421,48.251466],[0.631907,48.254761],[0.642751,48.26154],[0.652469,48.263389],[0.679097,48.255085],[0.683916,48.254],[0.687394,48.240782],[0.72035,48.20628],[0.72026,48.202768],[0.723637,48.198143],[0.732119,48.198162],[0.73863,48.189187],[0.751105,48.183916],[0.755327,48.182115],[0.759209,48.180091],[0.793203,48.193073],[0.797655,48.194461],[0.797528,48.188167],[0.81124,48.184722],[0.82786,48.173039],[0.833111,48.16904],[0.83656,48.167618],[0.840574,48.165531],[0.860645,48.166653],[0.884466,48.161844],[0.909365,48.150073],[0.911465,48.146968],[0.90961,48.143533],[0.91665,48.138941],[0.914338,48.135848],[0.850372,48.13308],[0.855009,48.123856],[0.843301,48.106008],[0.841217,48.103062],[0.837246,48.100919],[0.817906,48.097682],[0.816151,48.094634],[0.830283,48.091141],[0.84501,48.092771],[0.843023,48.072642],[0.838376,48.071305],[0.793995,48.069438],[0.794879,48.046931],[0.797551,48.03725],[0.807136,48.036591],[0.813335,48.031449],[0.838332,48.032613],[0.840591,48.019007],[0.835775,48.009142],[0.830555,47.996046],[0.820383,47.988035],[0.824356,47.981744],[0.829036,47.972576],[0.836839,47.968938],[0.842824,47.956598],[0.845574,47.953902],[0.848378,47.943933],[0.845193,47.941192],[0.816349,47.934277],[0.810811,47.918157],[0.815816,47.895158],[0.816836,47.891827],[0.813238,47.889483],[0.797868,47.897964],[0.794073,47.907436],[0.786998,47.911751],[0.768069,47.901399],[0.763737,47.899975],[0.759813,47.898091],[0.757341,47.884682],[0.76353,47.865164],[0.759165,47.859229],[0.770099,47.852747],[0.773852,47.850649],[0.774046,47.840596],[0.768413,47.831107],[0.758989,47.833583],[0.756337,47.830822],[0.747692,47.827838],[0.740279,47.81256],[0.73379,47.807699],[0.730115,47.805476],[0.712824,47.79049],[0.711896,47.787213],[0.702679,47.789652],[0.691748,47.783531],[0.702633,47.769671],[0.697354,47.764192],[0.692446,47.764348],[0.674985,47.768775],[0.670962,47.767308],[0.6512,47.755117],[0.650273,47.754928],[0.646097,47.753052],[0.626331,47.751356],[0.6199,47.746174],[0.61795,47.736635],[0.610668,47.732038],[0.611604,47.72814],[0.608728,47.725299],[0.594084,47.723035],[0.580508,47.712832],[0.580315,47.712378],[0.592798,47.702181],[0.595902,47.689251],[0.60454,47.686681],[0.611211,47.691663],[0.614431,47.694214],[0.61868,47.692265],[0.612683,47.682913],[0.588942,47.670053],[0.558792,47.670796],[0.559603,47.666175],[0.555785,47.66397],[0.545247,47.657166],[0.525724,47.653936],[0.516741,47.656222],[0.498418,47.644763],[0.493419,47.645079],[0.478496,47.644182],[0.47545,47.64688],[0.461177,47.643806],[0.459238,47.640594],[0.451411,47.621458],[0.431741,47.618316],[0.426615,47.617726],[0.39625,47.640855],[0.391499,47.641001],[0.382788,47.643103],[0.381437,47.639677],[0.364557,47.622069],[0.373233,47.61334],[0.382414,47.609979],[0.395085,47.594583],[0.3968,47.591361],[0.402577,47.578512],[0.397913,47.577535],[0.378484,47.568526],[0.37466,47.570511],[0.339107,47.579739],[0.339494,47.583179],[0.322104,47.595237],[0.275412,47.599101],[0.259115,47.612301],[0.25456,47.612032],[0.232709,47.610894],[0.230002,47.608398],[0.230576,47.585003],[0.234568,47.578613],[0.230576,47.577312],[0.218936,47.573594],[0.214089,47.568786],[0.200087,47.543168],[0.19312,47.538037],[0.205637,47.532943],[0.207175,47.526675],[0.224843,47.527277],[0.219715,47.505186],[0.220109,47.501953],[0.20415,47.48661],[0.200659,47.4845],[0.19885,47.476413],[0.184247,47.455758],[0.180874,47.453226],[0.184494,47.429597],[0.185149,47.426217],[0.180943,47.416603],[0.156772,47.401448],[0.153864,47.398729],[0.168249,47.396153],[0.168732,47.386013],[0.182143,47.381943],[0.157666,47.365322],[0.15386,47.363093],[0.140405,47.361808],[0.14285,47.358725],[0.147298,47.345376],[0.144439,47.342819],[0.135494,47.335365],[0.117462,47.332343],[0.117889,47.32884],[0.111109,47.315727],[0.100309,47.308205],[0.082382,47.286874],[0.088557,47.282381],[0.087486,47.275526],[0.083193,47.274147],[0.08011,47.271692],[0.076367,47.251931],[0.069096,47.243333],[0.073838,47.233508],[0.072451,47.219878],[0.076842,47.219367],[0.072876,47.214493],[0.068291,47.214196],[0.053807,47.198856],[0.061892,47.190953],[0.066594,47.189802],[0.06352,47.176391],[0.05664,47.167369],[0.05374,47.164611],[0.051052,47.167128],[0.036642,47.160363],[0.033624,47.16289],[0.019015,47.175758],[0.01534,47.173168],[-0.011722,47.156241],[-0.033736,47.127565],[-0.03444,47.120627],[-0.036549,47.117517],[-0.039508,47.114754],[-0.037498,47.10814],[-0.028063,47.106027],[-0.02707,47.102674],[-0.035315,47.086718],[-0.039917,47.087615],[-0.044239,47.093151],[-0.067762,47.093384],[-0.068733,47.09653],[-0.085541,47.100434],[-0.088887,47.098273],[-0.098055,47.091351],[-0.099978,47.088083],[-0.100648,47.084587],[-0.102121,47.064806],[-0.10698,47.06354],[-0.128896,47.054236],[-0.133284,47.055549],[-0.138001,47.064342],[-0.149809,47.069652],[-0.158811,47.068883],[-0.165984,47.064596],[-0.17037,47.066071],[-0.174754,47.067518],[-0.178554,47.069792],[-0.166736,47.080992],[-0.140891,47.096763],[-0.141253,47.103655],[-0.146212,47.1027],[-0.15615,47.101591],[-0.18524,47.108416],[-0.186682,47.10534],[-0.190185,47.099648],[-0.206269,47.093193],[-0.209135,47.095906],[-0.24043,47.10508],[-0.258181,47.100283],[-0.262876,47.105476],[-0.266009,47.102954],[-0.29251,47.100607],[-0.312636,47.092049],[-0.317233,47.091268],[-0.340141,47.087274],[-0.342066,47.090237],[-0.354651,47.094648],[-0.359108,47.093536],[-0.363689,47.092529],[-0.381939,47.088554],[-0.387062,47.092387],[-0.391846,47.091877],[-0.40078,47.070771],[-0.408634,47.066493],[-0.426487,47.072237],[-0.445454,47.067681],[-0.460572,47.068346],[-0.480383,47.053638],[-0.483854,47.066538],[-0.464423,47.076143],[-0.463353,47.081871],[-0.467753,47.083406],[-0.491782,47.082853],[-0.51513,47.077937],[-0.519492,47.076037],[-0.559717,47.061701],[-0.556127,47.059252],[-0.556072,47.045618],[-0.543463,47.03511],[-0.547013,47.028755],[-0.561548,47.029506],[-0.566774,47.019836],[-0.580099,47.014899],[-0.587252,47.006133],[-0.59574,47.000642],[-0.595492,46.997909],[-0.600671,46.997541],[-0.620177,46.993361],[-0.625115,46.993341],[-0.632918,46.996935],[-0.646938,46.994257],[-0.673301,47.001866],[-0.680368,46.99324],[-0.680185,46.987658],[-0.684779,46.987998],[-0.689724,46.992716],[-0.698466,46.994563],[-0.702174,46.992164],[-0.714462,46.985991],[-0.7338,46.997084],[-0.751304,46.99227],[-0.761383,46.993051],[-0.772827,47.003358],[-0.78685,47.005107],[-0.789958,47.002454],[-0.808398,46.991895],[-0.805024,46.989447],[-0.809678,46.988193],[-0.816647,46.993056],[-0.821638,46.992845],[-0.834302,46.987512],[-0.84772,46.986155],[-0.855169,46.977938],[-0.854241,46.971586],[-0.858915,46.970466],[-0.882077,46.976295],[-0.891961,46.975827],[-0.896251,46.974681],[-0.902217,46.970315],[-0.898223,46.96807],[-0.883243,46.968522],[-0.87779,46.959141],[-0.868023,46.959361],[-0.865305,46.952836],[-0.882299,46.949885],[-0.881,46.946467],[-0.876134,46.945243],[-0.851841,46.9442],[-0.85264,46.938251],[-0.830606,46.931144],[-0.824358,46.921706],[-0.809903,46.919706],[-0.813814,46.913979],[-0.820341,46.908976],[-0.818284,46.902572],[-0.83246,46.88474],[-0.819018,46.881121],[-0.795076,46.861045],[-0.793735,46.857854],[-0.788296,46.854301],[-0.786763,46.851918],[-0.777826,46.840971],[-0.773173,46.840358],[-0.761555,46.833852],[-0.757951,46.831319],[-0.738594,46.828895],[-0.729631,46.821551],[-0.714991,46.821574],[-0.71004,46.821572],[-0.701034,46.811605],[-0.6991,46.808855],[-0.703625,46.807456],[-0.718528,46.79888],[-0.720612,46.789285],[-0.725162,46.782918],[-0.726564,46.768765],[-0.719752,46.755727],[-0.716599,46.752971],[-0.707732,46.74968],[-0.698238,46.751617],[-0.695491,46.745369],[-0.698074,46.735938],[-0.688669,46.725848],[-0.684401,46.727653],[-0.673111,46.720822],[-0.655832,46.700335],[-0.660358,46.698668],[-0.678752,46.686685],[-0.657737,46.676694],[-0.654026,46.674478],[-0.636989,46.663329],[-0.640573,46.661124],[-0.647809,46.656784],[-0.650795,46.644141],[-0.658671,46.640402],[-0.657073,46.633954],[-0.643094,46.637815],[-0.633062,46.636331],[-0.613965,46.620125],[-0.617714,46.618465],[-0.627151,46.605601],[-0.616699,46.598874],[-0.618935,46.592971],[-0.613427,46.587611],[-0.624699,46.577447],[-0.622828,46.57428],[-0.617953,46.561499],[-0.6132,46.562352],[-0.608309,46.562489],[-0.603098,46.542805],[-0.602901,46.53962],[-0.602129,46.533281],[-0.608657,46.528126],[-0.628198,46.528166],[-0.642232,46.524763],[-0.638679,46.519278],[-0.64436,46.510894],[-0.634351,46.504714],[-0.632839,46.501418],[-0.625533,46.496764],[-0.628563,46.479938],[-0.617997,46.473107],[-0.616219,46.462833],[-0.608213,46.454208],[-0.610978,46.451443],[-0.61809,46.448956],[-0.620234,46.439216],[-0.636841,46.432306],[-0.634986,46.429111],[-0.640021,46.415862],[-0.632655,46.403305],[-0.637872,46.397505],[-0.620883,46.390456],[-0.619035,46.393615],[-0.611005,46.413052],[-0.601255,46.41263],[-0.581989,46.40223],[-0.572378,46.400711],[-0.569019,46.39457],[-0.54963,46.392705],[-0.541296,46.388944],[-0.5378,46.386465],[-0.540585,46.38381],[-0.557285,46.364046],[-0.559595,46.360936],[-0.578438,46.356019],[-0.602849,46.359586],[-0.608049,46.346649],[-0.619408,46.339708],[-0.637249,46.334578],[-0.636797,46.324659],[-0.643541,46.31945],[-0.647445,46.317702],[-0.652074,46.317473],[-0.655579,46.315801],[-0.672273,46.316219],[-0.676169,46.318059],[-0.697338,46.325189],[-0.70053,46.322759],[-0.707104,46.318002],[-0.716357,46.316889],[-0.719803,46.314577],[-0.718202,46.305191],[-0.726249,46.303206],[-0.750476,46.304259],[-0.753457,46.306946],[-0.775833,46.318467],[-0.780848,46.318363],[-0.792868,46.324328],[-0.802811,46.325286],[-0.807126,46.331371],[-0.797727,46.338455],[-0.803746,46.342456],[-0.81117,46.338043],[-0.82541,46.336366],[-0.828389,46.339133],[-0.836394,46.341361],[-0.846813,46.334221],[-0.8449,46.324612],[-0.848986,46.318326],[-0.863019,46.31914],[-0.860811,46.325471],[-0.86853,46.325489],[-0.870267,46.322455],[-0.886848,46.326704],[-0.88904,46.323862],[-0.895424,46.316846],[-0.912086,46.312749],[-0.915043,46.315533],[-0.933937,46.312645],[-0.958784,46.32337],[-0.943732,46.336965],[-0.93546,46.356762],[-0.93423,46.360113],[-0.932977,46.362969],[-0.927338,46.370935],[-0.951491,46.361103],[-0.964513,46.365402],[-0.966979,46.362233],[-0.978339,46.351197],[-1.017639,46.35301],[-1.05072,46.343264],[-1.053688,46.349578],[-1.055237,46.346413],[-1.073337,46.326877],[-1.080064,46.322326],[-1.078144,46.319257],[-1.095328,46.31378],[-1.1141,46.316999],[-1.117434,46.323244],[-1.121791,46.323204],[-1.123946,46.314686],[-1.129404,46.310277],[-1.14485,46.314576],[-1.14801,46.316598],[-1.159802,46.322435],[-1.163774,46.324345],[-1.169668,46.31954],[-1.19737,46.315393],[-1.202044,46.316086],[-1.195946,46.300567],[-1.207092,46.286142],[-1.207608,46.282868],[-1.211879,46.280906],[-1.206537,46.271491],[-1.210155,46.269833],[-1.223728,46.274858],[-1.265424,46.299905],[-1.299067,46.322537],[-1.303407,46.320624],[-1.295244,46.297079],[-1.278243,46.28881],[-1.283298,46.28825],[-1.297512,46.291501],[-1.300917,46.294267],[-1.324029,46.328085],[-1.341475,46.341048],[-1.350964,46.343779],[-1.355165,46.345837],[-1.364669,46.347926],[-1.371781,46.345994],[-1.355758,46.342008],[-1.353404,46.339429],[-1.372921,46.343146],[-1.398041,46.340889],[-1.421946,46.346637],[-1.440193,46.341039],[-1.465388,46.34276],[-1.471553,46.348073],[-1.479711,46.368461],[-1.481596,46.371742],[-1.505168,46.399386],[-1.537968,46.409242],[-1.543127,46.408883],[-1.550666,46.405462],[-1.564277,46.406848],[-1.619316,46.413011],[-1.651348,46.422831],[-1.649013,46.425885],[-1.648817,46.429411],[-1.706677,46.449995],[-1.714284,46.459027],[-1.724147,46.459277],[-1.75946,46.477404],[-1.761022,46.48064],[-1.769978,46.488962],[-1.78275,46.494301],[-1.792481,46.493406],[-1.799923,46.48907],[-1.812599,46.494319],[-1.818351,46.5146],[-1.818474,46.518059],[-1.846336,46.581329],[-1.847696,46.584699],[-1.856094,46.608403],[-1.870706,46.617787],[-1.875722,46.627587],[-1.898379,46.641262],[-1.91975,46.668674],[-1.922682,46.671525],[-1.941714,46.6917],[-1.954849,46.694687],[-1.95974,46.69397],[-1.968936,46.694159],[-1.977774,46.703023],[-1.982924,46.720257],[-2.054992,46.772112],[-2.058248,46.774919],[-2.138629,46.816391],[-2.141989,46.818975],[-2.146519,46.857634],[-2.154597,46.888158],[-2.12029,46.892216],[-2.109842,46.899484],[-2.118898,46.902122],[-2.116728,46.908949],[-2.090021,46.930128],[-2.074534,46.937849],[-2.071213,46.935171],[-2.072749,46.941843],[-2.057905,46.951572],[-2.045238,46.966888],[-2.044643,46.980401],[-2.028141,47.009568],[-1.983312,47.025994],[-1.980414,47.028906]]],[[[-2.301813,46.989743],[-2.301866,46.996725],[-2.29304,47.009466],[-2.301975,47.024937],[-2.276196,47.027689],[-2.260655,47.027741],[-2.255562,47.027071],[-2.23947,47.01832],[-2.224866,47.014787],[-2.220012,47.008663],[-2.219389,46.997864],[-2.223402,46.992178],[-2.242135,46.995649],[-2.246804,46.994029],[-2.234451,46.993391],[-2.234263,46.978132],[-2.232543,46.975079],[-2.222546,46.974622],[-2.19175,46.962822],[-2.187332,46.961153],[-2.160233,46.951191],[-2.149786,46.939054],[-2.150312,46.900368],[-2.152163,46.897001],[-2.162589,46.904726],[-2.179251,46.93434],[-2.194495,46.948613],[-2.198075,46.951177],[-2.201718,46.953701],[-2.221958,46.964732],[-2.242603,46.964913],[-2.255007,46.95869],[-2.267264,46.963959],[-2.284562,46.981782],[-2.297644,46.987579],[-2.301813,46.989743]]],[[[-2.304793,46.709424],[-2.297019,46.705046],[-2.285959,46.695341],[-2.283506,46.692241],[-2.282903,46.690491],[-2.286363,46.689664],[-2.290098,46.692054],[-2.312454,46.695216],[-2.316916,46.691093],[-2.330215,46.686026],[-2.332654,46.685488],[-2.33331,46.687226],[-2.343371,46.692705],[-2.350769,46.691647],[-2.364988,46.695377],[-2.371376,46.700809],[-2.380857,46.699714],[-2.382384,46.704796],[-2.392909,46.709978],[-2.394348,46.711516],[-2.397488,46.71617],[-2.3982,46.71805],[-2.398815,46.723301],[-2.397846,46.724908],[-2.395634,46.725887],[-2.388471,46.727903],[-2.383211,46.731633],[-2.3808,46.732469],[-2.373113,46.732775],[-2.348115,46.728321],[-2.339132,46.720004],[-2.318904,46.719266],[-2.31084,46.712357],[-2.306086,46.71097],[-2.304793,46.709424]]]]},"properties":{"nom":"Pays de la Loire","code":"52"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-3.523004,47.849147],[-3.525229,47.852292],[-3.541201,47.859402],[-3.530376,47.847779],[-3.539292,47.835658],[-3.542913,47.822171],[-3.537744,47.821466],[-3.535212,47.814627],[-3.527784,47.809614],[-3.523811,47.799324],[-3.537454,47.766004],[-3.547341,47.764602],[-3.568094,47.768422],[-3.610893,47.770001],[-3.616153,47.769748],[-3.645455,47.776395],[-3.644426,47.787121],[-3.656606,47.7809],[-3.681412,47.778139],[-3.715178,47.795064],[-3.718815,47.797637],[-3.720252,47.800942],[-3.715553,47.807029],[-3.69589,47.817605],[-3.671163,47.823597],[-3.66098,47.821748],[-3.655723,47.821433],[-3.651502,47.820923],[-3.641843,47.826575],[-3.639574,47.829025],[-3.652604,47.823507],[-3.673312,47.826175],[-3.687821,47.822005],[-3.697043,47.824611],[-3.709606,47.813766],[-3.732195,47.805042],[-3.741431,47.813363],[-3.749359,47.844693],[-3.74772,47.848048],[-3.746702,47.850807],[-3.75186,47.84631],[-3.754706,47.844212],[-3.750637,47.842189],[-3.754607,47.832484],[-3.747153,47.82324],[-3.75115,47.817129],[-3.741507,47.804777],[-3.741553,47.801233],[-3.743624,47.798015],[-3.756813,47.792304],[-3.76199,47.791589],[-3.79873,47.788934],[-3.808299,47.791114],[-3.810808,47.794265],[-3.836096,47.796475],[-3.850532,47.793434],[-3.855502,47.80337],[-3.900025,47.83762],[-3.890655,47.853088],[-3.882633,47.857563],[-3.878635,47.859857],[-3.883522,47.85873],[-3.900439,47.850804],[-3.910202,47.852496],[-3.913314,47.855257],[-3.905424,47.8594],[-3.906365,47.862814],[-3.912988,47.868096],[-3.92746,47.871469],[-3.933874,47.880874],[-3.942082,47.885094],[-3.948109,47.894178],[-3.946011,47.904512],[-3.953778,47.896127],[-3.968476,47.896744],[-3.979158,47.902261],[-3.982045,47.895927],[-3.991227,47.897195],[-3.990482,47.893689],[-3.98185,47.889759],[-3.98718,47.879855],[-3.982897,47.855715],[-4.03931,47.848043],[-4.050229,47.852527],[-4.082314,47.861568],[-4.080753,47.862241],[-4.05015,47.853752],[-4.049939,47.855093],[-4.069249,47.864581],[-4.067177,47.871303],[-4.075756,47.868462],[-4.080655,47.870858],[-4.085249,47.864833],[-4.09497,47.863124],[-4.11656,47.8775],[-4.110569,47.881904],[-4.105616,47.880831],[-4.1239,47.889334],[-4.118795,47.894335],[-4.115963,47.896856],[-4.130385,47.89419],[-4.140993,47.901911],[-4.143471,47.912315],[-4.139172,47.922499],[-4.11321,47.933584],[-4.103379,47.941482],[-4.084456,47.936546],[-4.079519,47.935326],[-4.07303,47.932854],[-4.069298,47.932998],[-4.091455,47.941616],[-4.083641,47.949444],[-4.096968,47.944518],[-4.105495,47.946224],[-4.095694,47.962097],[-4.095947,47.965687],[-4.100632,47.971819],[-4.114006,47.977315],[-4.107396,47.970984],[-4.108512,47.965278],[-4.119092,47.965215],[-4.113202,47.959934],[-4.116554,47.953749],[-4.113119,47.936409],[-4.138771,47.92471],[-4.1479,47.911963],[-4.148459,47.898284],[-4.163716,47.89624],[-4.172691,47.904465],[-4.176131,47.907137],[-4.167468,47.894673],[-4.141969,47.894306],[-4.133075,47.890918],[-4.115139,47.869725],[-4.118209,47.864279],[-4.147015,47.856821],[-4.151312,47.854832],[-4.163942,47.848638],[-4.168415,47.839724],[-4.169619,47.841078],[-4.168705,47.849412],[-4.167245,47.856785],[-4.172832,47.875141],[-4.184573,47.8809],[-4.196976,47.863817],[-4.201041,47.861317],[-4.208307,47.866653],[-4.210266,47.865647],[-4.193879,47.853172],[-4.18289,47.838465],[-4.164725,47.833371],[-4.162179,47.826848],[-4.166696,47.817074],[-4.180976,47.802731],[-4.194373,47.79766],[-4.204198,47.799486],[-4.208335,47.801599],[-4.21574,47.812945],[-4.218491,47.809495],[-4.214046,47.796637],[-4.226813,47.793471],[-4.267709,47.791314],[-4.275584,47.794756],[-4.272259,47.797403],[-4.272265,47.800874],[-4.287089,47.792575],[-4.300649,47.800659],[-4.32593,47.797784],[-4.371396,47.798079],[-4.373346,47.811624],[-4.379963,47.81983],[-4.367795,47.826148],[-4.353426,47.828137],[-4.349788,47.830653],[-4.346631,47.842548],[-4.347687,47.849008],[-4.352675,47.862985],[-4.35976,47.879081],[-4.357399,47.888784],[-4.343337,47.897567],[-4.339481,47.899706],[-4.366511,47.892848],[-4.371919,47.902152],[-4.373812,47.905223],[-4.395798,47.934904],[-4.399005,47.937441],[-4.409277,47.94509],[-4.41095,47.948392],[-4.420745,47.960571],[-4.458889,47.983298],[-4.46246,47.985801],[-4.472549,47.985538],[-4.495157,47.999689],[-4.529353,48.008176],[-4.535157,48.013634],[-4.530862,48.034449],[-4.495754,48.038359],[-4.490329,48.037838],[-4.490639,48.039165],[-4.52306,48.040138],[-4.527535,48.038811],[-4.541024,48.036987],[-4.534135,48.032919],[-4.537149,48.016173],[-4.544322,48.01158],[-4.549338,48.01208],[-4.566122,48.000394],[-4.589377,48.006993],[-4.597875,48.015402],[-4.602944,48.015137],[-4.622126,48.018178],[-4.629933,48.026693],[-4.632962,48.029372],[-4.645876,48.023422],[-4.656248,48.023108],[-4.697144,48.028127],[-4.731814,48.03668],[-4.734393,48.039747],[-4.709302,48.043722],[-4.706123,48.046516],[-4.713882,48.058638],[-4.709625,48.063565],[-4.679107,48.061478],[-4.664776,48.070154],[-4.639194,48.067879],[-4.625493,48.070614],[-4.621508,48.068422],[-4.583146,48.079864],[-4.568407,48.081791],[-4.548642,48.078109],[-4.534789,48.088318],[-4.504283,48.089448],[-4.488948,48.087299],[-4.462293,48.097717],[-4.457335,48.096531],[-4.432745,48.097637],[-4.417778,48.106057],[-4.38304,48.106229],[-4.378763,48.107971],[-4.363856,48.10839],[-4.341438,48.099155],[-4.33243,48.083468],[-4.331669,48.084202],[-4.334666,48.097219],[-4.326266,48.097743],[-4.301536,48.090425],[-4.296938,48.092193],[-4.297865,48.095289],[-4.285671,48.104866],[-4.284294,48.107888],[-4.28413,48.12458],[-4.269592,48.133378],[-4.272005,48.146757],[-4.272882,48.152621],[-4.275193,48.155569],[-4.294315,48.158578],[-4.296321,48.165069],[-4.291844,48.174202],[-4.296165,48.183739],[-4.304245,48.195329],[-4.313021,48.197884],[-4.316363,48.203839],[-4.321141,48.203985],[-4.33223,48.206241],[-4.367453,48.205697],[-4.376517,48.216933],[-4.400469,48.220509],[-4.404469,48.222599],[-4.423338,48.227982],[-4.433753,48.227506],[-4.440917,48.23254],[-4.460974,48.236703],[-4.492286,48.234554],[-4.496898,48.232833],[-4.501256,48.22668],[-4.497055,48.220268],[-4.510951,48.209884],[-4.522667,48.190244],[-4.53774,48.180431],[-4.541544,48.17019],[-4.551447,48.16819],[-4.557326,48.173191],[-4.560034,48.176235],[-4.55241,48.180937],[-4.551033,48.198101],[-4.560166,48.224967],[-4.568712,48.233593],[-4.546001,48.241368],[-4.544349,48.248054],[-4.552991,48.256304],[-4.55692,48.258683],[-4.580977,48.25223],[-4.596226,48.254159],[-4.608267,48.260758],[-4.621499,48.260238],[-4.61729,48.270336],[-4.621169,48.279812],[-4.60673,48.283908],[-4.601595,48.283895],[-4.586949,48.2756],[-4.569431,48.283053],[-4.566636,48.286026],[-4.567603,48.291613],[-4.578756,48.322072],[-4.555619,48.337022],[-4.540339,48.340313],[-4.535447,48.33617],[-4.543467,48.32661],[-4.548711,48.309355],[-4.556766,48.30488],[-4.555019,48.297915],[-4.55307,48.294632],[-4.532534,48.286121],[-4.508668,48.308077],[-4.50324,48.305738],[-4.515641,48.29479],[-4.506717,48.282958],[-4.502599,48.280861],[-4.472585,48.286806],[-4.459929,48.292858],[-4.423409,48.291366],[-4.410335,48.276635],[-4.38973,48.27519],[-4.3845,48.275156],[-4.371685,48.2779],[-4.367193,48.27772],[-4.352547,48.286252],[-4.342825,48.286152],[-4.338008,48.285594],[-4.301017,48.297566],[-4.275011,48.295865],[-4.263811,48.291839],[-4.267463,48.287213],[-4.279934,48.288297],[-4.287026,48.283296],[-4.28861,48.274027],[-4.264995,48.267794],[-4.261141,48.265465],[-4.262778,48.258895],[-4.252897,48.25691],[-4.246167,48.251767],[-4.243368,48.248831],[-4.217728,48.256592],[-4.212911,48.243967],[-4.206533,48.23908],[-4.206601,48.2455],[-4.190794,48.24604],[-4.160309,48.244183],[-4.13671,48.237031],[-4.115459,48.244197],[-4.113189,48.242111],[-4.117634,48.221886],[-4.117527,48.218297],[-4.111773,48.237743],[-4.108927,48.240498],[-4.099737,48.253573],[-4.102081,48.254498],[-4.135437,48.242303],[-4.145541,48.244103],[-4.150633,48.249621],[-4.160315,48.247209],[-4.202006,48.250768],[-4.217295,48.259745],[-4.237241,48.255821],[-4.242158,48.256947],[-4.273701,48.278869],[-4.258338,48.280935],[-4.235661,48.289963],[-4.220276,48.289044],[-4.200455,48.293382],[-4.195915,48.291671],[-4.189688,48.29692],[-4.194124,48.297779],[-4.234266,48.298415],[-4.238863,48.307412],[-4.221139,48.313946],[-4.226507,48.313582],[-4.240599,48.310179],[-4.250469,48.302788],[-4.273167,48.310029],[-4.27482,48.31571],[-4.252411,48.32382],[-4.255241,48.327342],[-4.272601,48.32013],[-4.282835,48.319291],[-4.294179,48.31269],[-4.329565,48.31582],[-4.32945,48.318782],[-4.310669,48.330727],[-4.311939,48.336151],[-4.282496,48.34303],[-4.277837,48.344618],[-4.282143,48.346051],[-4.28421,48.350785],[-4.270663,48.354077],[-4.268652,48.357661],[-4.273335,48.356045],[-4.292985,48.353551],[-4.302169,48.35564],[-4.305939,48.343769],[-4.325979,48.34091],[-4.329235,48.346753],[-4.318481,48.362175],[-4.323759,48.358026],[-4.346923,48.34335],[-4.351771,48.344774],[-4.344051,48.354796],[-4.34561,48.355178],[-4.359558,48.347425],[-4.363548,48.345043],[-4.371215,48.331878],[-4.378613,48.326762],[-4.409877,48.325428],[-4.411502,48.328489],[-4.395863,48.340801],[-4.396635,48.341756],[-4.440759,48.327904],[-4.450675,48.328924],[-4.434543,48.361624],[-4.417357,48.369934],[-4.404822,48.381537],[-4.367629,48.395554],[-4.36111,48.40121],[-4.356197,48.402654],[-4.352303,48.402372],[-4.3484,48.402118],[-4.318693,48.414631],[-4.31387,48.41567],[-4.270246,48.443142],[-4.274149,48.443868],[-4.278671,48.439669],[-4.281849,48.436935],[-4.291534,48.434721],[-4.313879,48.420594],[-4.32849,48.418009],[-4.347639,48.408598],[-4.36716,48.406986],[-4.3711,48.40084],[-4.376029,48.40019],[-4.379747,48.397879],[-4.389557,48.397583],[-4.405552,48.390546],[-4.423117,48.397215],[-4.430329,48.397359],[-4.433647,48.396355],[-4.437427,48.382924],[-4.457271,48.385857],[-4.471386,48.381414],[-4.481949,48.381758],[-4.506431,48.375081],[-4.533866,48.358875],[-4.548618,48.360924],[-4.553854,48.361403],[-4.570949,48.350448],[-4.607307,48.338774],[-4.616817,48.339002],[-4.621781,48.338266],[-4.626704,48.337532],[-4.63794,48.344218],[-4.652385,48.346103],[-4.674345,48.354025],[-4.678908,48.355454],[-4.698435,48.351083],[-4.699714,48.33762],[-4.712448,48.331265],[-4.738621,48.331677],[-4.764509,48.328232],[-4.773022,48.331794],[-4.771505,48.335194],[-4.774583,48.338029],[-4.772488,48.348238],[-4.779123,48.357403],[-4.777273,48.360481],[-4.771217,48.361449],[-4.755806,48.359434],[-4.750646,48.360134],[-4.749865,48.364669],[-4.746314,48.36681],[-4.755563,48.363843],[-4.775966,48.363008],[-4.783444,48.361295],[-4.787291,48.362533],[-4.785701,48.366354],[-4.77415,48.364673],[-4.761416,48.375157],[-4.760987,48.378584],[-4.773252,48.387903],[-4.776351,48.406965],[-4.785326,48.407513],[-4.793463,48.415936],[-4.784643,48.435457],[-4.775978,48.443891],[-4.780469,48.445314],[-4.777375,48.451556],[-4.765067,48.465698],[-4.757024,48.466181],[-4.759487,48.459782],[-4.748103,48.470842],[-4.718163,48.474389],[-4.72164,48.475382],[-4.7247,48.476864],[-4.727757,48.475101],[-4.757783,48.470479],[-4.767051,48.476687],[-4.766669,48.480156],[-4.772723,48.48549],[-4.777316,48.498549],[-4.771508,48.514117],[-4.766439,48.516538],[-4.763541,48.519286],[-4.760316,48.529459],[-4.751466,48.533201],[-4.748683,48.543435],[-4.729872,48.5556],[-4.720355,48.558091],[-4.706425,48.553195],[-4.704109,48.550046],[-4.699935,48.569578],[-4.689952,48.570958],[-4.680567,48.568357],[-4.668866,48.574275],[-4.663167,48.568941],[-4.660517,48.571389],[-4.647143,48.572135],[-4.628999,48.578075],[-4.600176,48.571963],[-4.592368,48.559838],[-4.595545,48.553408],[-4.583978,48.555875],[-4.579685,48.555282],[-4.577643,48.560066],[-4.556815,48.558856],[-4.54183,48.55596],[-4.53071,48.548787],[-4.525181,48.553494],[-4.512507,48.549128],[-4.507057,48.55288],[-4.511972,48.551846],[-4.554336,48.56205],[-4.584996,48.562795],[-4.590886,48.572224],[-4.594371,48.574748],[-4.609416,48.576875],[-4.605195,48.583056],[-4.605345,48.600542],[-4.598875,48.60552],[-4.590369,48.602034],[-4.589687,48.595182],[-4.563925,48.597252],[-4.532784,48.595383],[-4.5289,48.592918],[-4.519757,48.585989],[-4.504765,48.586206],[-4.487957,48.574039],[-4.478405,48.572085],[-4.499306,48.587365],[-4.514267,48.588822],[-4.539432,48.599913],[-4.558074,48.606056],[-4.566393,48.614472],[-4.563882,48.621129],[-4.545286,48.626749],[-4.543364,48.63326],[-4.528742,48.630654],[-4.513925,48.63227],[-4.503074,48.621933],[-4.467954,48.626424],[-4.462756,48.627058],[-4.443949,48.638917],[-4.402521,48.637097],[-4.397363,48.636388],[-4.429006,48.647623],[-4.433326,48.653442],[-4.397146,48.656206],[-4.353749,48.674825],[-4.349139,48.676475],[-4.32978,48.675484],[-4.32702,48.66933],[-4.313352,48.670389],[-4.310227,48.667844],[-4.300849,48.665249],[-4.296315,48.660334],[-4.303197,48.651537],[-4.315032,48.645416],[-4.31099,48.643425],[-4.314156,48.640818],[-4.316152,48.63775],[-4.311593,48.635176],[-4.301942,48.633023],[-4.294016,48.636284],[-4.293186,48.641267],[-4.271009,48.649292],[-4.250349,48.649633],[-4.245142,48.649834],[-4.230494,48.653327],[-4.229702,48.650268],[-4.219577,48.648914],[-4.199607,48.652664],[-4.194485,48.651999],[-4.217569,48.661203],[-4.191406,48.682678],[-4.167145,48.688261],[-4.162413,48.689765],[-4.133031,48.695252],[-4.102175,48.694072],[-4.095117,48.691026],[-4.094512,48.687585],[-4.092403,48.690826],[-4.081961,48.691584],[-4.057584,48.673129],[-4.057122,48.669617],[-4.055639,48.672161],[-4.058299,48.676401],[-4.065692,48.684966],[-4.060875,48.687166],[-4.038455,48.686581],[-4.035777,48.687651],[-4.056171,48.688791],[-4.053806,48.70226],[-4.039427,48.705198],[-4.035343,48.711526],[-4.015228,48.713436],[-4.008163,48.722593],[-4.006921,48.725944],[-4.001808,48.726588],[-4.004735,48.720952],[-3.998949,48.71425],[-3.986241,48.727547],[-3.978134,48.722966],[-3.969138,48.727638],[-3.964353,48.721968],[-3.973629,48.703889],[-3.973259,48.697039],[-3.963773,48.688728],[-3.969351,48.679335],[-3.953119,48.671725],[-3.95234,48.657802],[-3.956145,48.651277],[-3.957215,48.647855],[-3.950619,48.638741],[-3.953861,48.618279],[-3.93501,48.598685],[-3.94183,48.611687],[-3.938912,48.61453],[-3.94374,48.61581],[-3.950629,48.625006],[-3.94655,48.64195],[-3.950709,48.651387],[-3.942217,48.655369],[-3.929798,48.660175],[-3.921061,48.672602],[-3.895587,48.670588],[-3.894779,48.667258],[-3.904755,48.659726],[-3.903882,48.656319],[-3.897599,48.646833],[-3.88552,48.640481],[-3.880688,48.639172],[-3.860141,48.631692],[-3.858216,48.62876],[-3.858126,48.61812],[-3.859482,48.609573],[-3.866444,48.605459],[-3.870649,48.603997],[-3.857434,48.607452],[-3.849571,48.60377],[-3.858036,48.612663],[-3.851675,48.622095],[-3.832444,48.627807],[-3.816795,48.628544],[-3.811288,48.628923],[-3.847132,48.630962],[-3.861363,48.667836],[-3.8552,48.671451],[-3.850963,48.661719],[-3.846264,48.660184],[-3.85274,48.687799],[-3.837993,48.706262],[-3.834167,48.708603],[-3.824788,48.706569],[-3.814454,48.714546],[-3.799403,48.711272],[-3.785042,48.701348],[-3.779723,48.701769],[-3.763109,48.709006],[-3.747877,48.707767],[-3.722155,48.705459],[-3.701328,48.689861],[-3.676629,48.688099],[-3.653483,48.694749],[-3.645368,48.694516],[-3.643467,48.693404],[-3.652481,48.683792],[-3.64189,48.672884],[-3.649361,48.668197],[-3.653735,48.666265],[-3.657899,48.661735],[-3.659144,48.65921],[-3.655794,48.661898],[-3.636285,48.672962],[-3.636223,48.679763],[-3.622656,48.684779],[-3.610471,48.670482],[-3.579907,48.670724],[-3.576666,48.672799],[-3.57323,48.674731],[-3.570849,48.677146],[-3.567527,48.682483],[-3.571512,48.687173],[-3.576781,48.687658],[-3.582421,48.693032],[-3.58223,48.720896],[-3.565525,48.72884],[-3.555638,48.727463],[-3.553658,48.729187],[-3.55202,48.732436],[-3.549401,48.745685],[-3.565277,48.759368],[-3.580931,48.758261],[-3.585326,48.77143],[-3.584574,48.774874],[-3.578672,48.788142],[-3.568224,48.795613],[-3.558964,48.793569],[-3.554765,48.791462],[-3.537043,48.803265],[-3.543996,48.814561],[-3.539439,48.82407],[-3.534326,48.82417],[-3.522374,48.822044],[-3.522641,48.828644],[-3.511402,48.835268],[-3.507134,48.834698],[-3.506506,48.828262],[-3.49751,48.829555],[-3.489828,48.825606],[-3.487924,48.832252],[-3.479774,48.835844],[-3.455885,48.81716],[-3.440325,48.819066],[-3.431644,48.816935],[-3.441985,48.801687],[-3.440556,48.798308],[-3.389007,48.803526],[-3.38832,48.813172],[-3.37089,48.817993],[-3.366095,48.818782],[-3.363714,48.821543],[-3.354268,48.820396],[-3.340193,48.828678],[-3.335394,48.828437],[-3.320151,48.837158],[-3.295382,48.832945],[-3.279846,48.841342],[-3.26956,48.833907],[-3.264317,48.834291],[-3.244291,48.857812],[-3.229731,48.867396],[-3.220365,48.865917],[-3.21025,48.850034],[-3.218747,48.833877],[-3.214518,48.835992],[-3.204927,48.834984],[-3.204076,48.82819],[-3.209784,48.811104],[-3.236463,48.789811],[-3.231366,48.790231],[-3.220742,48.784046],[-3.22235,48.797278],[-3.200366,48.815979],[-3.196733,48.818396],[-3.199135,48.824568],[-3.18979,48.83697],[-3.178404,48.843279],[-3.173605,48.841876],[-3.168111,48.851794],[-3.152552,48.852687],[-3.12614,48.864491],[-3.099976,48.868022],[-3.078562,48.878638],[-3.075429,48.87933],[-3.091327,48.87052],[-3.094591,48.866177],[-3.082446,48.864622],[-3.076111,48.858378],[-3.078761,48.857774],[-3.085134,48.862005],[-3.094174,48.858766],[-3.089684,48.8572],[-3.083934,48.847895],[-3.099514,48.830873],[-3.078831,48.830891],[-3.097467,48.802563],[-3.100741,48.785176],[-3.112482,48.778088],[-3.116333,48.775663],[-3.125345,48.772214],[-3.122322,48.765766],[-3.120943,48.759261],[-3.118393,48.761827],[-3.111677,48.765762],[-3.102455,48.766135],[-3.099673,48.769065],[-3.102467,48.779278],[-3.094622,48.78363],[-3.085475,48.810365],[-3.08275,48.813345],[-3.065899,48.821338],[-3.047483,48.817086],[-3.02184,48.821044],[-3.012409,48.818741],[-3.013162,48.808475],[-3.006439,48.803113],[-3.008707,48.800049],[-3.045663,48.787538],[-3.044231,48.784256],[-3.014259,48.780738],[-3.023743,48.778247],[-3.022475,48.772115],[-3.01452,48.767754],[-2.990491,48.763001],[-2.985223,48.762986],[-2.964352,48.763139],[-2.955368,48.766664],[-2.950639,48.765872],[-2.935677,48.756462],[-2.940076,48.743832],[-2.936787,48.73411],[-2.947904,48.727215],[-2.94733,48.723735],[-2.930429,48.716694],[-2.923258,48.707445],[-2.890432,48.697222],[-2.88077,48.67424],[-2.866802,48.672349],[-2.858037,48.675063],[-2.854192,48.669191],[-2.850298,48.667254],[-2.846013,48.665589],[-2.838061,48.657555],[-2.829383,48.655789],[-2.825845,48.643362],[-2.818239,48.61784],[-2.815727,48.611649],[-2.82409,48.59918],[-2.818894,48.593427],[-2.808791,48.592082],[-2.791891,48.584717],[-2.781723,48.585221],[-2.774171,48.576533],[-2.772318,48.570337],[-2.715854,48.554452],[-2.72332,48.545704],[-2.718108,48.536043],[-2.720945,48.533165],[-2.712566,48.530808],[-2.713246,48.522604],[-2.710096,48.520357],[-2.688137,48.496067],[-2.679743,48.491734],[-2.675613,48.491066],[-2.682992,48.49617],[-2.676733,48.509421],[-2.679776,48.526962],[-2.676851,48.533424],[-2.66661,48.533408],[-2.650645,48.524646],[-2.634931,48.524725],[-2.630161,48.526323],[-2.631562,48.537962],[-2.628061,48.539887],[-2.624696,48.542436],[-2.604088,48.552285],[-2.575347,48.575894],[-2.54872,48.597115],[-2.532836,48.597585],[-2.503488,48.605746],[-2.498812,48.607432],[-2.473552,48.624612],[-2.471383,48.63481],[-2.48048,48.638404],[-2.481466,48.6443],[-2.440638,48.650998],[-2.421298,48.646246],[-2.41904,48.632473],[-2.42093,48.629195],[-2.413467,48.634088],[-2.40899,48.635915],[-2.409649,48.641493],[-2.399274,48.643127],[-2.383443,48.652148],[-2.348606,48.66103],[-2.330177,48.673271],[-2.323202,48.682697],[-2.314163,48.682569],[-2.309416,48.671773],[-2.288826,48.664017],[-2.313598,48.633542],[-2.325024,48.627541],[-2.334237,48.621602],[-2.337472,48.619726],[-2.332971,48.619323],[-2.324054,48.61856],[-2.320317,48.613633],[-2.311882,48.611847],[-2.300098,48.623146],[-2.291082,48.625161],[-2.286485,48.626772],[-2.287136,48.63025],[-2.266618,48.641771],[-2.251023,48.644687],[-2.24935,48.639947],[-2.253578,48.633567],[-2.245189,48.624787],[-2.242342,48.614699],[-2.229431,48.608497],[-2.221975,48.59523],[-2.211413,48.587707],[-2.213362,48.573864],[-2.209127,48.573626],[-2.205559,48.575441],[-2.205425,48.578873],[-2.192343,48.593535],[-2.193838,48.607227],[-2.184907,48.604614],[-2.186743,48.581331],[-2.184179,48.578765],[-2.16711,48.577201],[-2.164792,48.580141],[-2.156707,48.587704],[-2.169694,48.597164],[-2.150263,48.616514],[-2.145314,48.617476],[-2.128852,48.604747],[-2.123708,48.60441],[-2.149213,48.629044],[-2.148225,48.632404],[-2.134228,48.635974],[-2.124093,48.635248],[-2.11315,48.641416],[-2.086822,48.634612],[-2.082274,48.635807],[-2.074563,48.639589],[-2.054589,48.637663],[-2.050179,48.635939],[-2.050969,48.626108],[-2.035975,48.625572],[-2.031641,48.623764],[-2.032611,48.620424],[-2.029796,48.614621],[-2.033451,48.612772],[-2.030745,48.606965],[-2.030363,48.603988],[-2.022679,48.601663],[-2.015906,48.590277],[-2.013644,48.587515],[-2.003894,48.586141],[-1.997032,48.581157],[-2.010811,48.572122],[-2.006895,48.566113],[-2.002588,48.567367],[-1.992523,48.553405],[-1.995831,48.55122],[-1.990653,48.551167],[-1.985165,48.545566],[-1.975885,48.542629],[-1.973978,48.535985],[-1.975595,48.532717],[-1.989694,48.523012],[-1.984063,48.517453],[-1.983501,48.500414],[-1.988241,48.499196],[-1.992993,48.500528],[-1.999356,48.494158],[-2.001378,48.491603],[-1.98109,48.498307],[-1.976357,48.49846],[-1.980342,48.500862],[-1.980073,48.508021],[-1.969414,48.515634],[-1.966889,48.522482],[-1.962484,48.524108],[-1.950396,48.52126],[-1.948554,48.535235],[-1.948037,48.538808],[-1.962692,48.536195],[-1.967441,48.540179],[-1.960992,48.549336],[-1.96307,48.555937],[-1.973372,48.557327],[-1.974857,48.56781],[-1.984663,48.580505],[-1.978379,48.583995],[-1.960586,48.576005],[-1.955327,48.576405],[-1.963932,48.583355],[-1.962082,48.592635],[-1.971737,48.590573],[-1.986195,48.593879],[-1.996143,48.592326],[-2.000698,48.597335],[-1.996984,48.603692],[-2.010716,48.599356],[-2.006274,48.612576],[-2.014327,48.617041],[-2.017127,48.627369],[-2.025383,48.636313],[-2.025336,48.646851],[-2.023301,48.65002],[-1.999846,48.658362],[-1.992134,48.663084],[-1.986287,48.668962],[-1.983262,48.68204],[-1.963724,48.683964],[-1.961394,48.68079],[-1.946286,48.683933],[-1.943606,48.686252],[-1.950988,48.690316],[-1.933667,48.697163],[-1.925432,48.693142],[-1.905293,48.690323],[-1.8957,48.693412],[-1.892455,48.696258],[-1.888423,48.69856],[-1.872968,48.696913],[-1.846144,48.708136],[-1.847318,48.694246],[-1.838702,48.681467],[-1.861815,48.667351],[-1.863727,48.660559],[-1.864518,48.657075],[-1.870603,48.643696],[-1.857094,48.62462],[-1.847729,48.618765],[-1.845281,48.616405],[-1.795953,48.60659],[-1.790819,48.606022],[-1.773098,48.603472],[-1.768553,48.603402],[-1.767714,48.60239],[-1.673029,48.611393],[-1.667887,48.610424],[-1.642637,48.613908],[-1.6376,48.614726],[-1.576214,48.625546],[-1.571087,48.626446],[-1.566049,48.614827],[-1.558303,48.611232],[-1.554664,48.609227],[-1.545464,48.606092],[-1.538887,48.597459],[-1.542011,48.580869],[-1.527747,48.57908],[-1.527773,48.575772],[-1.521005,48.567055],[-1.527171,48.561901],[-1.53311,48.549439],[-1.519766,48.539657],[-1.517781,48.529848],[-1.515309,48.530294],[-1.498528,48.511018],[-1.495733,48.508312],[-1.495588,48.505047],[-1.489947,48.489375],[-1.485862,48.490737],[-1.47467,48.485879],[-1.466134,48.487976],[-1.457581,48.485432],[-1.449399,48.486766],[-1.435747,48.477916],[-1.440356,48.472175],[-1.427752,48.462347],[-1.404237,48.46143],[-1.399391,48.461159],[-1.382967,48.456875],[-1.374943,48.459262],[-1.346533,48.473118],[-1.348477,48.479894],[-1.341415,48.489208],[-1.332739,48.488858],[-1.330412,48.485961],[-1.326326,48.498525],[-1.321808,48.499798],[-1.318768,48.497286],[-1.30455,48.498803],[-1.290184,48.506792],[-1.287629,48.509533],[-1.283385,48.508533],[-1.279004,48.509177],[-1.269542,48.524356],[-1.269817,48.531048],[-1.27291,48.533721],[-1.254221,48.543274],[-1.249493,48.543696],[-1.249016,48.543668],[-1.232492,48.537636],[-1.208259,48.539092],[-1.206894,48.542194],[-1.19316,48.529248],[-1.188368,48.528687],[-1.166724,48.530079],[-1.161961,48.524247],[-1.145709,48.517654],[-1.132159,48.521729],[-1.122244,48.521362],[-1.117277,48.521652],[-1.1012,48.512885],[-1.070165,48.508494],[-1.06746,48.505614],[-1.07492,48.501133],[-1.077392,48.491095],[-1.073586,48.474894],[-1.064649,48.466913],[-1.06716,48.460332],[-1.065332,48.451251],[-1.068721,48.448676],[-1.081436,48.438573],[-1.078227,48.422009],[-1.078455,48.418497],[-1.079735,48.417381],[-1.079478,48.413903],[-1.064323,48.399929],[-1.052793,48.380929],[-1.05658,48.379187],[-1.057253,48.375821],[-1.064838,48.367237],[-1.059735,48.366818],[-1.05578,48.341134],[-1.053602,48.338128],[-1.04583,48.329655],[-1.059222,48.312187],[-1.06096,48.311092],[-1.065875,48.309679],[-1.08845,48.290126],[-1.093643,48.272882],[-1.099932,48.268375],[-1.098672,48.25131],[-1.0806,48.2195],[-1.08253,48.216226],[-1.08712,48.21004],[-1.081888,48.205148],[-1.07765,48.20315],[-1.074357,48.200471],[-1.078229,48.179966],[-1.079822,48.176874],[-1.072702,48.165786],[-1.073926,48.159301],[-1.068944,48.159482],[-1.060683,48.148738],[-1.059299,48.125486],[-1.057022,48.122465],[-1.052936,48.106044],[-1.049133,48.089596],[-1.04725,48.086606],[-1.040332,48.078086],[-1.025492,48.069845],[-1.021497,48.068405],[-1.028222,48.061029],[-1.029935,48.057763],[-1.033183,48.051353],[-1.028089,48.038462],[-1.033554,48.032608],[-1.021413,48.017444],[-1.017261,48.008043],[-1.021712,47.995402],[-1.030417,47.992473],[-1.035241,47.99201],[-1.050316,47.984634],[-1.06883,47.982949],[-1.072252,47.982065],[-1.078714,47.984409],[-1.083363,47.985698],[-1.092993,47.987508],[-1.098003,47.987018],[-1.107516,47.988876],[-1.1223,47.986511],[-1.129886,47.971222],[-1.148707,47.968216],[-1.152452,47.966344],[-1.161289,47.952946],[-1.159514,47.939221],[-1.162792,47.937924],[-1.167151,47.934174],[-1.163133,47.928089],[-1.168644,47.915475],[-1.175715,47.910952],[-1.176175,47.897723],[-1.179919,47.89558],[-1.192156,47.891025],[-1.197126,47.885593],[-1.197464,47.87902],[-1.189163,47.867708],[-1.191997,47.865435],[-1.203023,47.856848],[-1.206104,47.858387],[-1.213082,47.857217],[-1.217566,47.85601],[-1.222126,47.850366],[-1.214178,47.842513],[-1.216083,47.836154],[-1.220867,47.821723],[-1.223153,47.819009],[-1.227872,47.82029],[-1.238252,47.809991],[-1.240193,47.802287],[-1.237062,47.799597],[-1.245882,47.776718],[-1.251009,47.777622],[-1.33715,47.794634],[-1.339993,47.795214],[-1.364478,47.799667],[-1.365536,47.806036],[-1.374824,47.808827],[-1.381228,47.821414],[-1.391976,47.828547],[-1.405523,47.825001],[-1.409149,47.827406],[-1.411962,47.828553],[-1.414846,47.827498],[-1.419285,47.829044],[-1.427417,47.832171],[-1.456579,47.83175],[-1.465114,47.83486],[-1.479636,47.83481],[-1.481873,47.831804],[-1.480687,47.828694],[-1.474307,47.823998],[-1.468448,47.805904],[-1.47114,47.80307],[-1.494999,47.798505],[-1.503981,47.801081],[-1.51219,47.797222],[-1.530422,47.78478],[-1.556429,47.783725],[-1.575393,47.778234],[-1.585308,47.778901],[-1.594141,47.77603],[-1.59491,47.773322],[-1.598107,47.766525],[-1.601774,47.764542],[-1.619634,47.763568],[-1.627131,47.759827],[-1.626098,47.756559],[-1.636801,47.741755],[-1.638131,47.722209],[-1.641237,47.721825],[-1.644387,47.722087],[-1.648814,47.720306],[-1.661157,47.710203],[-1.686443,47.7126],[-1.706147,47.70895],[-1.71127,47.700421],[-1.715725,47.699448],[-1.729713,47.699342],[-1.732593,47.701841],[-1.736125,47.70415],[-1.750249,47.706751],[-1.771608,47.698676],[-1.786276,47.699879],[-1.820055,47.705605],[-1.828414,47.709543],[-1.83778,47.706757],[-1.841527,47.705502],[-1.853488,47.708036],[-1.858304,47.70825],[-1.878257,47.6952],[-1.883074,47.694989],[-1.888114,47.695482],[-1.93644,47.686523],[-1.956329,47.671188],[-1.961339,47.670939],[-1.969284,47.674236],[-1.969042,47.68781],[-1.973056,47.694034],[-1.973401,47.694154],[-1.977136,47.691668],[-2.012284,47.666454],[-2.016926,47.666832],[-2.035333,47.668475],[-2.043095,47.665696],[-2.047426,47.663786],[-2.052005,47.650401],[-2.082054,47.649448],[-2.097036,47.63136],[-2.086555,47.623745],[-2.084146,47.609959],[-2.0853,47.606536],[-2.086481,47.603255],[-2.102524,47.595302],[-2.100458,47.578858],[-2.105064,47.577538],[-2.103211,47.575166],[-2.096731,47.572635],[-2.0975,47.569237],[-2.103892,47.549113],[-2.097167,47.540225],[-2.098852,47.533449],[-2.14396,47.524961],[-2.148712,47.52356],[-2.155171,47.518728],[-2.153629,47.508269],[-2.155255,47.497805],[-2.157796,47.494752],[-2.166233,47.490877],[-2.186385,47.493228],[-2.189112,47.499376],[-2.185606,47.509068],[-2.198455,47.511129],[-2.203241,47.5105],[-2.216832,47.507059],[-2.244284,47.49361],[-2.248656,47.495298],[-2.261677,47.500466],[-2.255948,47.509349],[-2.259526,47.51175],[-2.279494,47.510881],[-2.29745,47.515506],[-2.298099,47.515476],[-2.29705,47.512014],[-2.30048,47.498136],[-2.313426,47.483065],[-2.316133,47.462515],[-2.355923,47.455979],[-2.36721,47.463191],[-2.377584,47.462757],[-2.395334,47.456575],[-2.410409,47.458833],[-2.420088,47.4669],[-2.423027,47.477122],[-2.427617,47.475789],[-2.44035,47.465819],[-2.452868,47.460964],[-2.458489,47.448122],[-2.468694,47.44905],[-2.481557,47.443075],[-2.493777,47.449383],[-2.497395,47.459607],[-2.489698,47.472495],[-2.49957,47.488767],[-2.494972,47.494678],[-2.484709,47.49482],[-2.464253,47.485135],[-2.448211,47.493341],[-2.427578,47.494152],[-2.42294,47.492528],[-2.420456,47.495206],[-2.438729,47.496447],[-2.441534,47.499022],[-2.46388,47.509479],[-2.466831,47.511894],[-2.495759,47.516307],[-2.499913,47.518095],[-2.502609,47.520991],[-2.52068,47.5261],[-2.535333,47.525828],[-2.544239,47.522679],[-2.545112,47.519163],[-2.556992,47.512992],[-2.577103,47.51693],[-2.598006,47.516955],[-2.623327,47.505049],[-2.632431,47.507515],[-2.633557,47.510998],[-2.639799,47.515993],[-2.658646,47.517984],[-2.663121,47.519228],[-2.679118,47.494524],[-2.711772,47.504504],[-2.727034,47.505974],[-2.750088,47.498528],[-2.780511,47.495124],[-2.791259,47.48763],[-2.799895,47.487083],[-2.80464,47.48848],[-2.809881,47.488299],[-2.819352,47.488575],[-2.847098,47.498249],[-2.852326,47.51862],[-2.869388,47.530434],[-2.872909,47.533],[-2.886834,47.537568],[-2.897373,47.536683],[-2.901166,47.537709],[-2.900984,47.541004],[-2.910415,47.543595],[-2.913523,47.546136],[-2.911144,47.55643],[-2.908172,47.559334],[-2.903388,47.560695],[-2.87795,47.559175],[-2.869401,47.550436],[-2.859781,47.549756],[-2.861502,47.539578],[-2.853405,47.537332],[-2.849627,47.539345],[-2.846089,47.545498],[-2.830702,47.545719],[-2.82396,47.542446],[-2.817,47.55405],[-2.808345,47.551097],[-2.802595,47.541861],[-2.787762,47.549631],[-2.774172,47.539845],[-2.75914,47.537277],[-2.745192,47.541667],[-2.734749,47.541604],[-2.728778,47.546953],[-2.730289,47.550344],[-2.727757,47.561903],[-2.718798,47.569627],[-2.715216,47.579261],[-2.719365,47.588849],[-2.718591,47.595809],[-2.722752,47.602012],[-2.73862,47.603145],[-2.769724,47.61633],[-2.774697,47.621697],[-2.765331,47.622107],[-2.740928,47.615161],[-2.743493,47.627318],[-2.746323,47.624597],[-2.753812,47.627314],[-2.757374,47.636931],[-2.778346,47.629738],[-2.777483,47.62646],[-2.780067,47.623453],[-2.791483,47.617697],[-2.811212,47.621246],[-2.830144,47.616383],[-2.859252,47.62228],[-2.866641,47.617856],[-2.858048,47.615219],[-2.865807,47.60676],[-2.861333,47.600666],[-2.869903,47.598385],[-2.883425,47.602893],[-2.888307,47.60372],[-2.890974,47.578944],[-2.903282,47.584079],[-2.910766,47.592257],[-2.916293,47.586633],[-2.924126,47.586758],[-2.919483,47.596373],[-2.926744,47.597827],[-2.930471,47.604344],[-2.939929,47.593635],[-2.947675,47.606853],[-2.948285,47.620813],[-2.940896,47.625432],[-2.9357,47.625291],[-2.943379,47.629133],[-2.956806,47.626931],[-2.961258,47.635929],[-2.957925,47.638248],[-2.96278,47.638667],[-2.973764,47.655148],[-2.975514,47.657766],[-2.977542,47.660244],[-2.982027,47.655807],[-2.956512,47.618443],[-2.966919,47.606943],[-2.972093,47.606543],[-2.95736,47.596771],[-2.962818,47.59104],[-2.962734,47.584689],[-2.947008,47.575636],[-2.937184,47.567553],[-2.933497,47.560429],[-2.932742,47.557236],[-2.937259,47.555525],[-2.956663,47.559724],[-2.970619,47.558585],[-2.973721,47.572238],[-2.990342,47.580195],[-2.989331,47.583668],[-2.995742,47.588113],[-2.993135,47.571213],[-3.001932,47.567953],[-3.009322,47.572221],[-3.02302,47.591455],[-3.024005,47.591313],[-3.026705,47.588402],[-3.023741,47.571728],[-3.040635,47.583086],[-3.046974,47.578514],[-3.051979,47.577938],[-3.0548,47.571409],[-3.070055,47.571355],[-3.093946,47.565972],[-3.102456,47.573896],[-3.095391,47.578617],[-3.103164,47.58276],[-3.126464,47.595089],[-3.129706,47.585095],[-3.127968,47.578334],[-3.12002,47.574066],[-3.126395,47.564639],[-3.128281,47.561434],[-3.132344,47.530758],[-3.126231,47.514088],[-3.118405,47.509986],[-3.119632,47.50314],[-3.116874,47.496388],[-3.098112,47.484453],[-3.087621,47.472336],[-3.102521,47.472792],[-3.116602,47.477153],[-3.131873,47.476411],[-3.135992,47.478885],[-3.142481,47.484122],[-3.149312,47.500771],[-3.151776,47.503882],[-3.153576,47.520771],[-3.159455,47.526446],[-3.142673,47.533635],[-3.134875,47.546398],[-3.137325,47.556453],[-3.138442,47.559779],[-3.140604,47.581],[-3.156038,47.603497],[-3.15828,47.606719],[-3.196712,47.624021],[-3.210093,47.64292],[-3.204461,47.6487],[-3.208216,47.662342],[-3.205878,47.665446],[-3.20752,47.668636],[-3.186002,47.682229],[-3.166,47.681753],[-3.159969,47.687163],[-3.151085,47.689311],[-3.151236,47.692698],[-3.168982,47.694903],[-3.176776,47.69431],[-3.195839,47.688858],[-3.20979,47.693136],[-3.203675,47.681634],[-3.214047,47.670166],[-3.21148,47.652977],[-3.216734,47.648191],[-3.272793,47.679546],[-3.305419,47.690627],[-3.310338,47.691842],[-3.336325,47.695003],[-3.34466,47.695137],[-3.351467,47.692329],[-3.355873,47.687791],[-3.360388,47.690091],[-3.355863,47.694311],[-3.351659,47.699199],[-3.343809,47.697197],[-3.326245,47.699992],[-3.312518,47.695002],[-3.307885,47.693266],[-3.290004,47.687612],[-3.280593,47.688426],[-3.285867,47.697867],[-3.287864,47.700956],[-3.306696,47.703768],[-3.312555,47.707822],[-3.336301,47.707601],[-3.340914,47.708705],[-3.353835,47.704201],[-3.359706,47.709109],[-3.346789,47.713993],[-3.342698,47.715922],[-3.347396,47.725238],[-3.344075,47.731613],[-3.334062,47.731371],[-3.321599,47.736416],[-3.315048,47.744816],[-3.306356,47.748617],[-3.296612,47.768302],[-3.286357,47.769351],[-3.28249,47.779346],[-3.291163,47.78743],[-3.283859,47.793972],[-3.294363,47.793515],[-3.290919,47.774288],[-3.312855,47.760501],[-3.325089,47.758882],[-3.325834,47.74872],[-3.333625,47.744217],[-3.338439,47.743052],[-3.346595,47.746221],[-3.351028,47.75631],[-3.362135,47.767102],[-3.359902,47.770266],[-3.367955,47.774541],[-3.389853,47.806016],[-3.38629,47.815728],[-3.38802,47.823083],[-3.388816,47.828583],[-3.392376,47.822402],[-3.387783,47.816549],[-3.39055,47.810357],[-3.403915,47.808588],[-3.391446,47.803662],[-3.381466,47.791557],[-3.382253,47.784615],[-3.370442,47.773828],[-3.372095,47.770523],[-3.353981,47.754362],[-3.352041,47.74765],[-3.357882,47.731341],[-3.366687,47.728531],[-3.367403,47.725124],[-3.369571,47.714965],[-3.382551,47.704494],[-3.391638,47.701514],[-3.411909,47.702325],[-3.416112,47.700351],[-3.429482,47.703499],[-3.44694,47.696765],[-3.456736,47.697786],[-3.493302,47.725668],[-3.500025,47.73456],[-3.501593,47.737859],[-3.507058,47.747833],[-3.526263,47.764535],[-3.528987,47.774931],[-3.529675,47.778451],[-3.519744,47.801023],[-3.522424,47.807448],[-3.533286,47.815213],[-3.539954,47.828405],[-3.538146,47.835505],[-3.523874,47.84564],[-3.523004,47.849147]]],[[[-3.002321,48.836323],[-3.002946,48.838068],[-3.009881,48.838251],[-3.011475,48.850149],[-3.001406,48.850773],[-3.0003,48.852199],[-3.009889,48.854874],[-3.010852,48.858126],[-2.994243,48.863687],[-2.986806,48.862725],[-2.988831,48.860135],[-2.993824,48.858982],[-2.995478,48.85199],[-2.994244,48.848517],[-2.997264,48.845551],[-2.99718,48.840198],[-3.002321,48.836323]]],[[[-3.583878,48.7941],[-3.586225,48.800775],[-3.583052,48.805282],[-3.575124,48.805251],[-3.570556,48.807055],[-3.565473,48.806513],[-3.563515,48.803336],[-3.569843,48.797943],[-3.579816,48.798385],[-3.583878,48.7941]]],[[[-5.102603,48.436117],[-5.105166,48.436692],[-5.110482,48.436264],[-5.115104,48.437675],[-5.108277,48.442828],[-5.096772,48.447188],[-5.093861,48.451747],[-5.102486,48.455389],[-5.130485,48.449199],[-5.138352,48.449517],[-5.139017,48.450909],[-5.137878,48.452498],[-5.131837,48.458421],[-5.129797,48.459556],[-5.110304,48.465651],[-5.104911,48.471574],[-5.092297,48.474517],[-5.081802,48.473407],[-5.076844,48.474768],[-5.073014,48.477272],[-5.074816,48.481806],[-5.072523,48.482731],[-5.069949,48.482265],[-5.065053,48.481124],[-5.060443,48.476808],[-5.052693,48.476649],[-5.055543,48.466715],[-5.048431,48.464324],[-5.037898,48.464009],[-5.035702,48.463073],[-5.035399,48.461366],[-5.038806,48.458765],[-5.04919,48.458032],[-5.059784,48.450194],[-5.080455,48.449453],[-5.089432,48.440862],[-5.099586,48.439019],[-5.102603,48.436117]]],[[[-3.99181,48.736404],[-3.995883,48.740508],[-4.006553,48.740864],[-4.01323,48.743406],[-4.021748,48.739446],[-4.034268,48.742282],[-4.036562,48.743194],[-4.03781,48.744755],[-4.037064,48.746406],[-4.021052,48.752616],[-4.010361,48.752623],[-4.007809,48.752132],[-4.000447,48.747039],[-3.990899,48.744367],[-3.988799,48.739298],[-3.99181,48.736404]]],[[[-4.959196,48.389413],[-4.963527,48.39111],[-4.966327,48.397649],[-4.961496,48.401429],[-4.953596,48.394917],[-4.95761,48.390767],[-4.959196,48.389413]]],[[[-4.845997,48.031552],[-4.854769,48.035053],[-4.858933,48.039196],[-4.866657,48.039719],[-4.868208,48.040899],[-4.866914,48.04217],[-4.852015,48.039379],[-4.849512,48.034789],[-4.845987,48.032574],[-4.845997,48.031552]]],[[[-3.243707,47.386965],[-3.233801,47.37909],[-3.219513,47.376372],[-3.218725,47.369479],[-3.215431,47.372012],[-3.205428,47.372069],[-3.194052,47.365887],[-3.155845,47.360832],[-3.141984,47.331634],[-3.124187,47.326292],[-3.121282,47.323411],[-3.116104,47.323766],[-3.099541,47.315808],[-3.068419,47.316268],[-3.059785,47.308603],[-3.077575,47.287067],[-3.090227,47.281048],[-3.113883,47.288009],[-3.118963,47.288797],[-3.134439,47.287663],[-3.153145,47.293506],[-3.15807,47.292359],[-3.173567,47.300727],[-3.187089,47.295626],[-3.202025,47.29703],[-3.216736,47.294318],[-3.237325,47.304138],[-3.246508,47.312647],[-3.239201,47.321394],[-3.235445,47.323818],[-3.251836,47.336805],[-3.260949,47.356921],[-3.259308,47.36744],[-3.251751,47.37193],[-3.24861,47.385798],[-3.243707,47.386965]]],[[[-3.421794,47.62],[-3.427389,47.623746],[-3.43258,47.624363],[-3.438506,47.627747],[-3.446994,47.623593],[-3.462408,47.621267],[-3.473157,47.626397],[-3.483301,47.628407],[-3.486074,47.631323],[-3.493356,47.633293],[-3.505973,47.639779],[-3.513689,47.646925],[-3.511145,47.651366],[-3.498153,47.653338],[-3.495109,47.653254],[-3.464792,47.648175],[-3.447714,47.643666],[-3.437168,47.643869],[-3.429711,47.642095],[-3.416594,47.633381],[-3.421312,47.62176],[-3.421794,47.62]]],[[[-2.948152,47.373339],[-2.955677,47.378026],[-2.958185,47.38289],[-2.973536,47.385613],[-2.984453,47.393374],[-2.991791,47.394792],[-2.992648,47.398287],[-2.990239,47.400524],[-2.969309,47.393603],[-2.953707,47.391507],[-2.94148,47.393216],[-2.950713,47.387652],[-2.953572,47.382883],[-2.949234,47.378655],[-2.948443,47.37512],[-2.948152,47.373339]]],[[[-2.859561,47.559894],[-2.861501,47.568697],[-2.852306,47.599396],[-2.847033,47.599868],[-2.840082,47.604992],[-2.838436,47.604226],[-2.840674,47.597489],[-2.839499,47.593946],[-2.826044,47.589746],[-2.837811,47.588525],[-2.845562,47.589247],[-2.847884,47.588282],[-2.849508,47.586666],[-2.854217,47.573296],[-2.851517,47.566437],[-2.858295,47.564643],[-2.859561,47.559894]]],[[[-2.880513,47.331253],[-2.886577,47.334358],[-2.888781,47.337505],[-2.88986,47.34599],[-2.883698,47.343089],[-2.881138,47.343246],[-2.87352,47.343289],[-2.866691,47.348482],[-2.864127,47.348477],[-2.861929,47.341863],[-2.862297,47.340129],[-2.865114,47.337233],[-2.880513,47.331253]]],[[[-2.80961,47.578264],[-2.811918,47.579124],[-2.812992,47.584206],[-2.808397,47.585861],[-2.809073,47.592073],[-2.796705,47.598574],[-2.794327,47.603458],[-2.787506,47.596802],[-2.797822,47.589457],[-2.807719,47.579514],[-2.80961,47.578264]]]]},"properties":{"nom":"Bretagne","code":"53"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[0.823433,46.128591],[0.818813,46.127169],[0.811893,46.122973],[0.832307,46.104339],[0.832253,46.093906],[0.827141,46.088278],[0.827127,46.086025],[0.819171,46.077396],[0.826105,46.065061],[0.816632,46.057565],[0.817909,46.047887],[0.821993,46.046362],[0.845226,46.036501],[0.849302,46.034488],[0.856265,46.02972],[0.858456,46.019618],[0.866517,46.016482],[0.886192,46.031732],[0.894327,46.025632],[0.894052,46.022699],[0.905615,46.018202],[0.909946,46.017543],[0.923782,46.008258],[0.919886,46.002232],[0.921525,45.996155],[0.934675,45.992207],[0.934634,45.976415],[0.943377,45.97307],[0.940886,45.959207],[0.92468,45.951209],[0.922516,45.945944],[0.92049,45.94352],[0.920972,45.937917],[0.916094,45.93717],[0.906305,45.937926],[0.884652,45.923831],[0.861148,45.919803],[0.847972,45.924049],[0.838047,45.923364],[0.821962,45.931568],[0.812111,45.93127],[0.809969,45.928319],[0.809017,45.921742],[0.815983,45.917292],[0.81354,45.896886],[0.827373,45.882748],[0.823749,45.880786],[0.8075,45.870023],[0.810678,45.868238],[0.818405,45.869162],[0.82098,45.866959],[0.818349,45.864053],[0.795978,45.829837],[0.782118,45.820404],[0.780808,45.81709],[0.783826,45.810583],[0.776974,45.802241],[0.783779,45.793475],[0.770227,45.788478],[0.768055,45.791552],[0.762003,45.796945],[0.752389,45.797106],[0.7426,45.804378],[0.718721,45.805583],[0.710515,45.802201],[0.70749,45.778248],[0.714765,45.769216],[0.711682,45.762856],[0.707649,45.761712],[0.695379,45.762119],[0.691144,45.760906],[0.666235,45.748196],[0.666527,45.745238],[0.665281,45.739401],[0.660713,45.739415],[0.652867,45.739378],[0.647616,45.730638],[0.650416,45.728021],[0.64553,45.718919],[0.633501,45.720496],[0.629742,45.71457],[0.627671,45.708004],[0.613217,45.694023],[0.605006,45.694218],[0.602126,45.68177],[0.596594,45.676868],[0.600389,45.671733],[0.58746,45.667943],[0.587634,45.661289],[0.567032,45.65326],[0.573663,45.644124],[0.575447,45.640928],[0.564535,45.634404],[0.550448,45.634098],[0.538448,45.628737],[0.537079,45.631509],[0.535418,45.64286],[0.525833,45.641785],[0.512657,45.631458],[0.508422,45.6214],[0.500403,45.619564],[0.501441,45.615353],[0.503838,45.612568],[0.513312,45.605427],[0.516143,45.599246],[0.512189,45.593852],[0.516324,45.58806],[0.498576,45.564783],[0.50227,45.562802],[0.506549,45.554339],[0.499202,45.545788],[0.48327,45.538891],[0.473715,45.538407],[0.46967,45.538838],[0.465737,45.539623],[0.464307,45.533591],[0.457779,45.52556],[0.449305,45.523917],[0.450893,45.518647],[0.446105,45.514637],[0.443656,45.511878],[0.432763,45.501647],[0.431738,45.485596],[0.426875,45.485782],[0.422921,45.483781],[0.419259,45.48595],[0.408356,45.49178],[0.378384,45.484128],[0.378867,45.480671],[0.372947,45.475865],[0.363133,45.475149],[0.356707,45.466222],[0.334668,45.460141],[0.334363,45.459819],[0.333389,45.453182],[0.329155,45.443784],[0.310781,45.45876],[0.302619,45.458889],[0.303213,45.445595],[0.316234,45.435979],[0.303543,45.431944],[0.298855,45.432291],[0.289959,45.432617],[0.278402,45.427156],[0.27086,45.418927],[0.27155,45.416079],[0.267624,45.407982],[0.265268,45.405429],[0.262875,45.396865],[0.253457,45.380939],[0.249431,45.363586],[0.250217,45.360614],[0.256966,45.353067],[0.258533,45.350051],[0.264588,45.334748],[0.264905,45.33453],[0.270634,45.314605],[0.266609,45.297749],[0.262719,45.29587],[0.252621,45.289405],[0.249597,45.288592],[0.246868,45.28984],[0.243136,45.291749],[0.220912,45.290225],[0.220092,45.287223],[0.210596,45.274201],[0.210296,45.271274],[0.204416,45.263604],[0.200767,45.261828],[0.174862,45.261437],[0.176696,45.255961],[0.172293,45.251714],[0.171342,45.248329],[0.174738,45.239207],[0.157828,45.226452],[0.148209,45.224558],[0.145486,45.214487],[0.140998,45.214751],[0.132319,45.208996],[0.115844,45.213572],[0.114272,45.214622],[0.111422,45.216981],[0.100037,45.226075],[0.092006,45.227515],[0.0884,45.225258],[0.076064,45.220268],[0.066433,45.22062],[0.055582,45.227164],[0.051213,45.225382],[0.036594,45.211353],[0.033859,45.20837],[0.010324,45.202732],[0.004331,45.191633],[0.001677,45.183389],[-0.002052,45.181171],[-0.019062,45.165177],[-0.014091,45.159924],[0.000368,45.15843],[0.003268,45.155661],[-0.001528,45.150819],[-0.036728,45.140567],[-0.035312,45.137245],[-0.02963,45.127776],[-0.041524,45.112683],[-0.0402,45.102384],[-0.046095,45.097781],[-0.05373,45.101086],[-0.057088,45.098976],[-0.061772,45.098766],[-0.087832,45.12143],[-0.092825,45.121022],[-0.110974,45.115524],[-0.143512,45.090354],[-0.15327,45.08924],[-0.161926,45.092491],[-0.166877,45.092747],[-0.191442,45.094749],[-0.209721,45.100235],[-0.212445,45.102238],[-0.221237,45.10776],[-0.245672,45.108214],[-0.256783,45.114793],[-0.273944,45.134855],[-0.275713,45.141571],[-0.279962,45.143248],[-0.307551,45.149589],[-0.309374,45.146624],[-0.31363,45.137648],[-0.316676,45.140486],[-0.323322,45.157159],[-0.338768,45.166241],[-0.362959,45.170237],[-0.366174,45.167563],[-0.378517,45.15678],[-0.383396,45.143339],[-0.385058,45.146596],[-0.399471,45.179378],[-0.40061,45.182813],[-0.402585,45.189701],[-0.417435,45.203884],[-0.419461,45.206985],[-0.413187,45.223211],[-0.413635,45.226568],[-0.406009,45.238707],[-0.409905,45.24797],[-0.424028,45.248565],[-0.41912,45.261324],[-0.4177,45.264387],[-0.418508,45.27361],[-0.433463,45.280569],[-0.437376,45.282116],[-0.457654,45.288358],[-0.462073,45.288582],[-0.472986,45.293633],[-0.48602,45.293579],[-0.490146,45.291558],[-0.513854,45.286227],[-0.516876,45.288782],[-0.548704,45.293121],[-0.55176,45.295188],[-0.567662,45.297421],[-0.570631,45.300292],[-0.573867,45.310717],[-0.573978,45.314237],[-0.568974,45.331235],[-0.572742,45.333206],[-0.585303,45.342899],[-0.594006,45.331596],[-0.594481,45.321143],[-0.599195,45.321343],[-0.607635,45.324009],[-0.633594,45.318446],[-0.642088,45.315096],[-0.650712,45.322504],[-0.708651,45.327358],[-0.714861,45.327738],[-0.716938,45.330707],[-0.724076,45.35964],[-0.729237,45.365481],[-0.741211,45.399968],[-0.743523,45.403136],[-0.752889,45.419031],[-0.753174,45.422492],[-0.763293,45.434864],[-0.76517,45.43819],[-0.771376,45.446429],[-0.778117,45.449123],[-0.781005,45.451477],[-0.787938,45.458861],[-0.790209,45.461344],[-0.799701,45.475384],[-0.808194,45.472905],[-0.813776,45.477872],[-0.816628,45.480588],[-0.823902,45.484983],[-0.823396,45.493826],[-0.85598,45.513555],[-0.876996,45.519592],[-0.887568,45.529721],[-0.891777,45.531207],[-0.899999,45.530281],[-0.903157,45.534508],[-0.908587,45.534563],[-0.91008,45.535719],[-0.906524,45.53733],[-0.908429,45.54124],[-0.91943,45.551477],[-0.926173,45.554099],[-0.929503,45.556183],[-0.938914,45.556782],[-0.946689,45.552776],[-0.956022,45.55463],[-0.967805,45.560751],[-0.981794,45.573771],[-0.983941,45.576859],[-0.990987,45.579666],[-0.99338,45.596306],[-1.013377,45.60232],[-1.009004,45.608454],[-1.009853,45.611841],[-1.022532,45.622081],[-1.040153,45.618438],[-1.048942,45.621431],[-1.053223,45.627597],[-1.057392,45.626104],[-1.075481,45.636333],[-1.078309,45.638944],[-1.082681,45.637397],[-1.113411,45.646863],[-1.143769,45.66409],[-1.14751,45.666306],[-1.209737,45.695592],[-1.219659,45.695428],[-1.227427,45.691503],[-1.22407,45.681592],[-1.213619,45.674093],[-1.219205,45.672288],[-1.227098,45.676428],[-1.234387,45.689474],[-1.235614,45.69289],[-1.242501,45.764188],[-1.241024,45.785553],[-1.232756,45.789516],[-1.207768,45.792976],[-1.188226,45.790096],[-1.157027,45.801837],[-1.143483,45.797105],[-1.139181,45.79904],[-1.132893,45.803905],[-1.137218,45.819978],[-1.139535,45.822841],[-1.149585,45.830416],[-1.156657,45.843304],[-1.16516,45.846723],[-1.16754,45.853462],[-1.153927,45.855532],[-1.14988,45.861254],[-1.120516,45.857776],[-1.110124,45.864999],[-1.106044,45.867059],[-1.099657,45.875767],[-1.098081,45.878872],[-1.098398,45.882269],[-1.084309,45.89616],[-1.081211,45.898788],[-1.073835,45.915699],[-1.074485,45.926415],[-1.077072,45.936565],[-1.098732,45.944375],[-1.092267,45.949046],[-1.067544,45.949811],[-1.064622,45.952603],[-1.078918,45.961827],[-1.08567,45.978923],[-1.116244,46.001557],[-1.113389,46.002653],[-1.092284,45.993427],[-1.062098,45.99547],[-1.055018,46.000512],[-1.053077,46.003836],[-1.052828,46.010815],[-1.06046,46.023562],[-1.056336,46.033277],[-1.060713,46.043273],[-1.065616,46.049337],[-1.079505,46.053265],[-1.08452,46.053138],[-1.089027,46.054698],[-1.100078,46.092224],[-1.103187,46.094979],[-1.114447,46.101505],[-1.128938,46.102358],[-1.140676,46.107936],[-1.12698,46.110798],[-1.123776,46.113358],[-1.129537,46.12634],[-1.148273,46.129372],[-1.149106,46.13284],[-1.156641,46.137281],[-1.17131,46.139141],[-1.163215,46.153478],[-1.183144,46.152791],[-1.201251,46.147289],[-1.206485,46.146851],[-1.216389,46.148089],[-1.226292,46.150327],[-1.234616,46.154111],[-1.238466,46.156573],[-1.239589,46.163042],[-1.221787,46.168999],[-1.215858,46.182187],[-1.203549,46.187756],[-1.201245,46.190889],[-1.202341,46.201796],[-1.20638,46.203657],[-1.199724,46.212551],[-1.184514,46.220714],[-1.175152,46.22215],[-1.171154,46.224064],[-1.149222,46.238104],[-1.146553,46.241123],[-1.138927,46.25388],[-1.111345,46.261157],[-1.126917,46.307319],[-1.129404,46.310277],[-1.123946,46.314686],[-1.121791,46.323204],[-1.117434,46.323244],[-1.1141,46.316999],[-1.095328,46.31378],[-1.078144,46.319257],[-1.080064,46.322326],[-1.073337,46.326877],[-1.055237,46.346413],[-1.053688,46.349578],[-1.05072,46.343264],[-1.017639,46.35301],[-0.978339,46.351197],[-0.966979,46.362233],[-0.964513,46.365402],[-0.951491,46.361103],[-0.927338,46.370935],[-0.932977,46.362969],[-0.93423,46.360113],[-0.93546,46.356762],[-0.943732,46.336965],[-0.958784,46.32337],[-0.933937,46.312645],[-0.915043,46.315533],[-0.912086,46.312749],[-0.895424,46.316846],[-0.88904,46.323862],[-0.886848,46.326704],[-0.870267,46.322455],[-0.86853,46.325489],[-0.860811,46.325471],[-0.863019,46.31914],[-0.848986,46.318326],[-0.8449,46.324612],[-0.846813,46.334221],[-0.836394,46.341361],[-0.828389,46.339133],[-0.82541,46.336366],[-0.81117,46.338043],[-0.803746,46.342456],[-0.797727,46.338455],[-0.807126,46.331371],[-0.802811,46.325286],[-0.792868,46.324328],[-0.780848,46.318363],[-0.775833,46.318467],[-0.753457,46.306946],[-0.750476,46.304259],[-0.726249,46.303206],[-0.718202,46.305191],[-0.719803,46.314577],[-0.716357,46.316889],[-0.707104,46.318002],[-0.70053,46.322759],[-0.697338,46.325189],[-0.676169,46.318059],[-0.672273,46.316219],[-0.655579,46.315801],[-0.652074,46.317473],[-0.647445,46.317702],[-0.643541,46.31945],[-0.636797,46.324659],[-0.637249,46.334578],[-0.619408,46.339708],[-0.608049,46.346649],[-0.602849,46.359586],[-0.578438,46.356019],[-0.559595,46.360936],[-0.557285,46.364046],[-0.540585,46.38381],[-0.5378,46.386465],[-0.541296,46.388944],[-0.54963,46.392705],[-0.569019,46.39457],[-0.572378,46.400711],[-0.581989,46.40223],[-0.601255,46.41263],[-0.611005,46.413052],[-0.619035,46.393615],[-0.620883,46.390456],[-0.637872,46.397505],[-0.632655,46.403305],[-0.640021,46.415862],[-0.634986,46.429111],[-0.636841,46.432306],[-0.620234,46.439216],[-0.61809,46.448956],[-0.610978,46.451443],[-0.608213,46.454208],[-0.616219,46.462833],[-0.617997,46.473107],[-0.628563,46.479938],[-0.625533,46.496764],[-0.632839,46.501418],[-0.634351,46.504714],[-0.64436,46.510894],[-0.638679,46.519278],[-0.642232,46.524763],[-0.628198,46.528166],[-0.608657,46.528126],[-0.602129,46.533281],[-0.602901,46.53962],[-0.603098,46.542805],[-0.608309,46.562489],[-0.6132,46.562352],[-0.617953,46.561499],[-0.622828,46.57428],[-0.624699,46.577447],[-0.613427,46.587611],[-0.618935,46.592971],[-0.616699,46.598874],[-0.627151,46.605601],[-0.617714,46.618465],[-0.613965,46.620125],[-0.633062,46.636331],[-0.643094,46.637815],[-0.657073,46.633954],[-0.658671,46.640402],[-0.650795,46.644141],[-0.647809,46.656784],[-0.640573,46.661124],[-0.636989,46.663329],[-0.654026,46.674478],[-0.657737,46.676694],[-0.678752,46.686685],[-0.660358,46.698668],[-0.655832,46.700335],[-0.673111,46.720822],[-0.684401,46.727653],[-0.688669,46.725848],[-0.698074,46.735938],[-0.695491,46.745369],[-0.698238,46.751617],[-0.707732,46.74968],[-0.716599,46.752971],[-0.719752,46.755727],[-0.726564,46.768765],[-0.725162,46.782918],[-0.720612,46.789285],[-0.718528,46.79888],[-0.703625,46.807456],[-0.6991,46.808855],[-0.701034,46.811605],[-0.71004,46.821572],[-0.714991,46.821574],[-0.729631,46.821551],[-0.738594,46.828895],[-0.757951,46.831319],[-0.761555,46.833852],[-0.773173,46.840358],[-0.777826,46.840971],[-0.786763,46.851918],[-0.788296,46.854301],[-0.793735,46.857854],[-0.795076,46.861045],[-0.819018,46.881121],[-0.83246,46.88474],[-0.818284,46.902572],[-0.820341,46.908976],[-0.813814,46.913979],[-0.809903,46.919706],[-0.824358,46.921706],[-0.830606,46.931144],[-0.85264,46.938251],[-0.851841,46.9442],[-0.876134,46.945243],[-0.881,46.946467],[-0.882299,46.949885],[-0.865305,46.952836],[-0.868023,46.959361],[-0.87779,46.959141],[-0.883243,46.968522],[-0.898223,46.96807],[-0.902217,46.970315],[-0.896251,46.974681],[-0.891961,46.975827],[-0.882077,46.976295],[-0.858915,46.970466],[-0.854241,46.971586],[-0.855169,46.977938],[-0.84772,46.986155],[-0.834302,46.987512],[-0.821638,46.992845],[-0.816647,46.993056],[-0.809678,46.988193],[-0.805024,46.989447],[-0.808398,46.991895],[-0.789958,47.002454],[-0.78685,47.005107],[-0.772827,47.003358],[-0.761383,46.993051],[-0.751304,46.99227],[-0.7338,46.997084],[-0.714462,46.985991],[-0.702174,46.992164],[-0.698466,46.994563],[-0.689724,46.992716],[-0.684779,46.987998],[-0.680185,46.987658],[-0.680368,46.99324],[-0.673301,47.001866],[-0.646938,46.994257],[-0.632918,46.996935],[-0.625115,46.993341],[-0.620177,46.993361],[-0.600671,46.997541],[-0.595492,46.997909],[-0.59574,47.000642],[-0.587252,47.006133],[-0.580099,47.014899],[-0.566774,47.019836],[-0.561548,47.029506],[-0.547013,47.028755],[-0.543463,47.03511],[-0.556072,47.045618],[-0.556127,47.059252],[-0.559717,47.061701],[-0.519492,47.076037],[-0.51513,47.077937],[-0.491782,47.082853],[-0.467753,47.083406],[-0.463353,47.081871],[-0.464423,47.076143],[-0.483854,47.066538],[-0.480383,47.053638],[-0.460572,47.068346],[-0.445454,47.067681],[-0.426487,47.072237],[-0.408634,47.066493],[-0.40078,47.070771],[-0.391846,47.091877],[-0.387062,47.092387],[-0.381939,47.088554],[-0.363689,47.092529],[-0.359108,47.093536],[-0.354651,47.094648],[-0.342066,47.090237],[-0.340141,47.087274],[-0.317233,47.091268],[-0.312636,47.092049],[-0.29251,47.100607],[-0.266009,47.102954],[-0.262876,47.105476],[-0.258181,47.100283],[-0.24043,47.10508],[-0.209135,47.095906],[-0.206269,47.093193],[-0.190185,47.099648],[-0.186682,47.10534],[-0.18524,47.108416],[-0.15615,47.101591],[-0.146212,47.1027],[-0.141253,47.103655],[-0.140891,47.096763],[-0.166736,47.080992],[-0.178554,47.069792],[-0.174754,47.067518],[-0.17037,47.066071],[-0.165984,47.064596],[-0.158811,47.068883],[-0.149809,47.069652],[-0.138001,47.064342],[-0.133284,47.055549],[-0.128896,47.054236],[-0.10698,47.06354],[-0.102121,47.064806],[-0.100648,47.084587],[-0.099978,47.088083],[-0.098055,47.091351],[-0.088887,47.098273],[-0.085541,47.100434],[-0.068733,47.09653],[-0.067762,47.093384],[-0.044239,47.093151],[-0.039917,47.087615],[-0.035315,47.086718],[-0.02707,47.102674],[-0.028063,47.106027],[-0.037498,47.10814],[-0.039508,47.114754],[-0.036549,47.117517],[-0.03444,47.120627],[-0.033736,47.127565],[-0.011722,47.156241],[0.01534,47.173168],[0.019015,47.175758],[0.033624,47.16289],[0.036642,47.160363],[0.051052,47.167128],[0.05374,47.164611],[0.064921,47.146084],[0.068953,47.14406],[0.07839,47.146335],[0.081435,47.133285],[0.077943,47.127071],[0.082432,47.117797],[0.090198,47.121857],[0.10472,47.120798],[0.110323,47.12929],[0.123966,47.126936],[0.127952,47.120999],[0.137322,47.122259],[0.140683,47.124594],[0.134144,47.11527],[0.134946,47.108371],[0.158612,47.102739],[0.161917,47.100109],[0.167829,47.108362],[0.179245,47.113361],[0.183487,47.11451],[0.185354,47.104042],[0.198043,47.092945],[0.194951,47.086456],[0.177027,47.07383],[0.174011,47.067216],[0.176727,47.064201],[0.175696,47.060726],[0.180337,47.059461],[0.194404,47.063001],[0.208199,47.053237],[0.228056,47.061328],[0.232832,47.066388],[0.235155,47.069164],[0.243872,47.070949],[0.26355,47.068507],[0.264221,47.046434],[0.267677,47.044047],[0.294508,47.051949],[0.298426,47.053977],[0.307895,47.047271],[0.309074,47.031308],[0.309935,47.028031],[0.300585,47.021102],[0.306204,47.008819],[0.308175,46.999928],[0.310728,46.997312],[0.296088,46.990169],[0.291436,46.990267],[0.306589,46.978928],[0.298206,46.971264],[0.306402,46.963933],[0.303022,46.958359],[0.302029,46.955318],[0.310569,46.939707],[0.321021,46.932626],[0.325352,46.930943],[0.343125,46.936706],[0.348074,46.936369],[0.36463,46.948568],[0.38282,46.943749],[0.38782,46.943709],[0.401134,46.938191],[0.405362,46.936133],[0.420738,46.936388],[0.434521,46.931669],[0.43871,46.929582],[0.443882,46.938111],[0.444803,46.941158],[0.486465,46.954019],[0.491285,46.955322],[0.502577,46.957792],[0.50519,46.959911],[0.512902,46.955862],[0.549556,46.959593],[0.554199,46.958475],[0.563306,46.955777],[0.598205,46.956428],[0.601701,46.958888],[0.598804,46.974924],[0.576876,46.98087],[0.573683,46.983388],[0.573146,46.989475],[0.574382,46.992437],[0.567922,46.999661],[0.56695,47.002541],[0.567742,47.006287],[0.585909,47.00611],[0.590556,47.006729],[0.61849,47.007516],[0.623652,47.002416],[0.621888,46.999416],[0.623984,46.993686],[0.63356,46.986659],[0.637794,46.98525],[0.651538,46.986999],[0.660468,46.978984],[0.690172,46.97498],[0.695275,46.969191],[0.695176,46.962244],[0.695983,46.959369],[0.706179,46.936108],[0.703171,46.925825],[0.708918,46.917725],[0.704874,46.91233],[0.703738,46.909362],[0.70467,46.902886],[0.727284,46.886085],[0.729468,46.883183],[0.739267,46.872855],[0.743522,46.871587],[0.753423,46.860585],[0.765645,46.865119],[0.771792,46.861257],[0.766356,46.855846],[0.771389,46.850954],[0.795013,46.850517],[0.796639,46.847351],[0.786885,46.841228],[0.794667,46.832892],[0.807997,46.829139],[0.809041,46.819215],[0.809857,46.815898],[0.810162,46.814192],[0.815597,46.805],[0.813354,46.79168],[0.826099,46.786824],[0.829396,46.77687],[0.84484,46.763019],[0.858729,46.759154],[0.859743,46.755723],[0.865602,46.75104],[0.867469,46.748219],[0.879803,46.738747],[0.898325,46.735799],[0.90283,46.730405],[0.911172,46.727072],[0.910404,46.717411],[0.921587,46.702725],[0.924812,46.700216],[0.927133,46.693602],[0.918155,46.690485],[0.902262,46.677666],[0.907243,46.678136],[0.91184,46.67259],[0.90734,46.666437],[0.915638,46.650672],[0.907628,46.646716],[0.895518,46.631821],[0.893993,46.628658],[0.904896,46.618175],[0.908477,46.605279],[0.916278,46.597125],[0.933284,46.594569],[0.937758,46.594425],[0.941367,46.580879],[0.955598,46.577612],[0.962437,46.572537],[0.982015,46.573271],[0.990589,46.566036],[1.009906,46.567418],[1.014764,46.567764],[1.024705,46.549705],[1.019938,46.540418],[1.020409,46.537147],[1.065509,46.539252],[1.080132,46.536183],[1.090094,46.537584],[1.104139,46.533431],[1.119414,46.524226],[1.12372,46.522324],[1.146903,46.505184],[1.149143,46.502212],[1.145329,46.500069],[1.136833,46.496779],[1.136125,46.493461],[1.152956,46.472838],[1.135514,46.470889],[1.150917,46.450297],[1.16378,46.446775],[1.168524,46.446347],[1.185483,46.439511],[1.185835,46.429303],[1.195477,46.429618],[1.203363,46.433796],[1.213066,46.433083],[1.211268,46.429921],[1.193411,46.409761],[1.1954,46.40002],[1.17728,46.383952],[1.173138,46.385218],[1.157006,46.389228],[1.155318,46.38604],[1.148515,46.377066],[1.149083,46.370275],[1.128579,46.362221],[1.129862,46.358937],[1.127761,46.348859],[1.109444,46.353835],[1.101408,46.362367],[1.077291,46.358549],[1.072731,46.359472],[1.050157,46.362781],[1.050965,46.35948],[1.027163,46.343443],[1.026141,46.340038],[1.028543,46.333297],[1.021178,46.313299],[1.009903,46.306662],[1.009553,46.296612],[1.003748,46.291169],[1.005887,46.280974],[1.003381,46.280227],[0.999812,46.282615],[0.990064,46.283776],[0.986247,46.281592],[0.97255,46.285529],[0.952797,46.285635],[0.935318,46.291246],[0.934185,46.281326],[0.929197,46.280956],[0.901248,46.287507],[0.8897,46.268548],[0.861633,46.261817],[0.863365,46.258715],[0.857724,46.249538],[0.848308,46.248261],[0.843549,46.238884],[0.851894,46.235961],[0.851551,46.23245],[0.843527,46.229208],[0.808399,46.228006],[0.799361,46.215499],[0.794748,46.214049],[0.796455,46.21129],[0.801413,46.207386],[0.800223,46.20148],[0.803917,46.199291],[0.813334,46.197689],[0.821161,46.185507],[0.833299,46.18064],[0.828706,46.172166],[0.831415,46.170218],[0.838205,46.165726],[0.832417,46.156346],[0.835748,46.146185],[0.845853,46.138369],[0.840116,46.133666],[0.837012,46.130886],[0.823433,46.128591]]],[[[-1.301162,45.899935],[-1.353356,45.92685],[-1.376032,45.945653],[-1.386452,45.953267],[-1.386784,45.963761],[-1.394565,45.976816],[-1.387094,45.997164],[-1.400161,46.015885],[-1.411422,46.043117],[-1.406058,46.047294],[-1.372711,46.039387],[-1.3693,46.029553],[-1.361072,46.02555],[-1.35683,46.023648],[-1.326431,46.004568],[-1.323068,46.002279],[-1.315133,45.994005],[-1.296489,45.989223],[-1.246985,45.989657],[-1.237043,45.982184],[-1.234437,45.9722],[-1.235456,45.968798],[-1.23302,45.965886],[-1.239668,45.961038],[-1.239995,45.954371],[-1.229399,45.94317],[-1.229072,45.9332],[-1.23342,45.92723],[-1.218661,45.908997],[-1.215088,45.906534],[-1.203275,45.900012],[-1.18902,45.885806],[-1.20483,45.853215],[-1.207707,45.85034],[-1.197561,45.830464],[-1.232551,45.800796],[-1.241321,45.803848],[-1.245668,45.81024],[-1.252422,45.84181],[-1.252876,45.845355],[-1.258919,45.864453],[-1.260258,45.867586],[-1.269096,45.880184],[-1.296207,45.900502],[-1.301162,45.899935]]],[[[-1.411792,46.18415],[-1.469685,46.203163],[-1.474627,46.202761],[-1.507011,46.194707],[-1.534358,46.203576],[-1.54204,46.216474],[-1.543808,46.219777],[-1.558825,46.233761],[-1.561443,46.243812],[-1.541635,46.243703],[-1.524338,46.250851],[-1.512976,46.257805],[-1.497754,46.256911],[-1.483687,46.246941],[-1.47755,46.233582],[-1.485159,46.229692],[-1.48982,46.230744],[-1.491397,46.23713],[-1.496368,46.237674],[-1.502456,46.225094],[-1.507355,46.22572],[-1.512849,46.231681],[-1.514974,46.234907],[-1.515061,46.230763],[-1.508679,46.217343],[-1.496107,46.20792],[-1.485438,46.207403],[-1.483874,46.210829],[-1.467656,46.218738],[-1.457596,46.228594],[-1.416731,46.228827],[-1.421022,46.219524],[-1.444398,46.214094],[-1.42478,46.205245],[-1.405421,46.203256],[-1.400518,46.203347],[-1.365155,46.207164],[-1.346362,46.202131],[-1.342125,46.200128],[-1.319331,46.187118],[-1.305229,46.190242],[-1.295734,46.18822],[-1.286629,46.17657],[-1.283824,46.173727],[-1.276545,46.161638],[-1.25765,46.162817],[-1.278824,46.144111],[-1.283543,46.145232],[-1.307983,46.143026],[-1.322358,46.145329],[-1.353497,46.154636],[-1.360217,46.159663],[-1.363484,46.162234],[-1.38605,46.174821],[-1.407556,46.182502],[-1.411792,46.18415]]],[[[-1.175595,46.008004],[-1.177712,46.008963],[-1.178415,46.012427],[-1.173734,46.02407],[-1.166338,46.025028],[-1.164008,46.024347],[-1.157395,46.021803],[-1.155764,46.018716],[-1.170408,46.018791],[-1.170214,46.013847],[-1.173909,46.00932],[-1.175595,46.008004]]]]},"properties":{"nom":"Poitou-Charentes","code":"54"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[1.448262,45.019313],[1.433023,45.01077],[1.40913,45.006729],[1.414987,44.993566],[1.414261,44.973914],[1.419568,44.968397],[1.41899,44.958285],[1.428611,44.946309],[1.433462,44.946044],[1.4331,44.937214],[1.441562,44.918782],[1.423629,44.918268],[1.410526,44.908788],[1.418269,44.907448],[1.419672,44.899003],[1.421836,44.896414],[1.435732,44.889676],[1.439857,44.888951],[1.442508,44.881063],[1.442178,44.878348],[1.439858,44.875245],[1.431431,44.871767],[1.416778,44.870902],[1.414009,44.871655],[1.411446,44.872708],[1.409292,44.864725],[1.405462,44.86314],[1.402862,44.85081],[1.402507,44.849049],[1.388593,44.849992],[1.378341,44.843349],[1.365459,44.84497],[1.360801,44.838886],[1.364103,44.811568],[1.360244,44.81116],[1.356551,44.81025],[1.352501,44.808578],[1.325507,44.806012],[1.321845,44.804111],[1.301166,44.797744],[1.293311,44.789852],[1.30262,44.78896],[1.303806,44.785691],[1.297154,44.776971],[1.303951,44.7725],[1.308133,44.770898],[1.321535,44.761097],[1.316051,44.740375],[1.312139,44.741486],[1.30019,44.744284],[1.297181,44.73806],[1.299421,44.731674],[1.287021,44.714463],[1.282721,44.715099],[1.270041,44.722088],[1.268091,44.718959],[1.261542,44.710176],[1.244638,44.704749],[1.242933,44.694636],[1.230001,44.691153],[1.224707,44.68571],[1.22455,44.684266],[1.219796,44.683316],[1.180561,44.682687],[1.166974,44.678591],[1.161061,44.672964],[1.146733,44.670797],[1.146901,44.667585],[1.149825,44.655027],[1.146516,44.652846],[1.15255,44.63618],[1.150893,44.632856],[1.146642,44.631362],[1.127289,44.616772],[1.123622,44.614828],[1.107396,44.603961],[1.096152,44.593124],[1.103467,44.580967],[1.099504,44.580043],[1.10321,44.571741],[1.098607,44.571887],[1.085075,44.57195],[1.076483,44.574169],[1.075141,44.577325],[1.073639,44.574084],[1.06723,44.565525],[1.053195,44.563766],[1.042312,44.557927],[1.040809,44.557693],[1.036748,44.556054],[1.013166,44.536136],[1.011873,44.539265],[1.006567,44.547616],[0.993167,44.549408],[0.98152,44.544441],[0.98846,44.539426],[0.989453,44.532402],[0.999969,44.5252],[1.016272,44.503639],[1.014987,44.489721],[1.009025,44.48005],[1.012236,44.478514],[1.023009,44.475439],[1.022472,44.472098],[1.025025,44.465633],[1.02099,44.456241],[1.021679,44.4466],[1.031241,44.439513],[1.031175,44.433092],[1.045005,44.434013],[1.047182,44.431026],[1.051011,44.43041],[1.057488,44.427679],[1.06145,44.414737],[1.059949,44.405022],[1.061688,44.401928],[1.058599,44.399703],[1.051168,44.392269],[1.059579,44.390905],[1.064084,44.378513],[1.060473,44.366258],[1.04722,44.362575],[1.024678,44.366855],[1.022266,44.364056],[1.004384,44.365705],[0.996705,44.36915],[0.993497,44.366516],[0.978586,44.358049],[0.969794,44.36102],[0.950506,44.359519],[0.944146,44.354259],[0.942382,44.34442],[0.941254,44.344399],[0.940563,44.347853],[0.937285,44.36861],[0.923647,44.378007],[0.919845,44.384419],[0.915224,44.384097],[0.910846,44.38296],[0.906666,44.382224],[0.895341,44.37918],[0.893959,44.37312],[0.891334,44.370459],[0.88732,44.364646],[0.893363,44.356072],[0.892011,44.349914],[0.896113,44.346228],[0.894805,44.343286],[0.883328,44.328379],[0.879503,44.327342],[0.873272,44.323574],[0.874884,44.320724],[0.869445,44.309255],[0.8838,44.307686],[0.891142,44.298742],[0.895067,44.296701],[0.912026,44.300914],[0.91643,44.302204],[0.921475,44.294196],[0.923515,44.291569],[0.946024,44.275109],[0.950788,44.275072],[0.948841,44.272073],[0.940855,44.264225],[0.927782,44.26741],[0.932795,44.251252],[0.91909,44.23827],[0.92851,44.233064],[0.929239,44.23025],[0.903111,44.190055],[0.898525,44.190904],[0.860992,44.192979],[0.859687,44.192737],[0.857793,44.189864],[0.853675,44.184246],[0.853632,44.174782],[0.863912,44.173569],[0.870138,44.168999],[0.882074,44.173633],[0.890008,44.17022],[0.889794,44.166885],[0.888106,44.163836],[0.888351,44.148813],[0.894084,44.140235],[0.892066,44.137333],[0.883987,44.140094],[0.880236,44.131711],[0.869092,44.126516],[0.857814,44.127575],[0.855079,44.130492],[0.820491,44.143136],[0.796556,44.145125],[0.787733,44.142759],[0.795082,44.133498],[0.797565,44.130387],[0.793165,44.118458],[0.798588,44.110104],[0.795242,44.11227],[0.78192,44.112919],[0.775041,44.116885],[0.773071,44.113883],[0.754273,44.104747],[0.748003,44.093292],[0.747761,44.08648],[0.739874,44.078105],[0.737992,44.071404],[0.741635,44.065203],[0.738933,44.062491],[0.717115,44.05759],[0.707923,44.05829],[0.704967,44.055725],[0.694547,44.045124],[0.682755,44.042237],[0.679586,44.029348],[0.676267,44.026883],[0.662534,44.024582],[0.65417,44.032849],[0.652847,44.042833],[0.632705,44.04963],[0.631509,44.052863],[0.622547,44.064176],[0.599327,44.074952],[0.601222,44.07801],[0.584703,44.07726],[0.576884,44.073449],[0.567315,44.061234],[0.55874,44.058225],[0.54609,44.056231],[0.538427,44.052952],[0.535071,44.055209],[0.522484,44.056951],[0.51158,44.062737],[0.504717,44.050667],[0.503819,44.053771],[0.497471,44.05758],[0.488817,44.056463],[0.485697,44.058687],[0.485403,44.055439],[0.459759,44.055378],[0.45866,44.052579],[0.450621,44.046404],[0.450312,44.04438],[0.447452,44.041621],[0.44245,44.028762],[0.437588,44.029189],[0.418874,44.028208],[0.412024,44.023499],[0.397883,44.021885],[0.382444,44.008342],[0.372908,44.008429],[0.35707,44.01553],[0.32475,44.007847],[0.31548,44.00997],[0.31486,44.006713],[0.318026,43.997245],[0.305493,43.993992],[0.302772,43.991395],[0.28235,43.998003],[0.273552,43.998054],[0.27114,44.00102],[0.259824,44.005699],[0.250636,44.004261],[0.232995,44.009391],[0.232775,44.022389],[0.229143,44.021361],[0.218721,44.021132],[0.214734,44.022787],[0.201762,44.014234],[0.193466,44.013688],[0.189807,44.015008],[0.18114,44.002528],[0.165747,43.994448],[0.164053,43.977096],[0.161035,43.974352],[0.156784,43.972809],[0.138625,43.976595],[0.141,43.993642],[0.126847,44.001926],[0.127415,43.998581],[0.107388,43.985382],[0.093313,43.985738],[0.080372,43.981719],[0.076046,43.983143],[0.069724,43.976553],[0.067536,43.974242],[0.067104,43.967359],[0.055391,43.957066],[0.06974,43.935252],[0.074765,43.918186],[0.075082,43.914682],[0.069083,43.905345],[0.058618,43.898381],[0.036927,43.902126],[0.033178,43.89998],[0.02921,43.902033],[0.015984,43.912245],[-0.019936,43.92927],[0.005383,43.945232],[0.005561,43.955612],[-0.000961,43.960612],[-0.004915,43.96253],[-0.036169,43.98374],[-0.046915,43.961231],[-0.060463,43.958799],[-0.073635,43.94456],[-0.094468,43.945791],[-0.097864,43.943353],[-0.095423,43.931002],[-0.098748,43.92889],[-0.102561,43.927278],[-0.106746,43.928834],[-0.125325,43.943597],[-0.135133,43.9363],[-0.153158,43.938816],[-0.155915,43.932333],[-0.163922,43.928606],[-0.179029,43.93649],[-0.19871,43.91782],[-0.200575,43.91464],[-0.203483,43.913393],[-0.209669,43.911734],[-0.21685,43.907623],[-0.227893,43.910792],[-0.232826,43.90154],[-0.239879,43.897413],[-0.231716,43.890962],[-0.219239,43.891223],[-0.215616,43.889267],[-0.20535,43.884976],[-0.201257,43.885267],[-0.194002,43.88158],[-0.187532,43.869854],[-0.185723,43.866889],[-0.187112,43.863894],[-0.195834,43.8707],[-0.204298,43.860257],[-0.208908,43.857671],[-0.194496,43.843009],[-0.19342,43.840014],[-0.189844,43.833697],[-0.196344,43.829121],[-0.194708,43.809211],[-0.212633,43.809278],[-0.216,43.812538],[-0.226956,43.807666],[-0.218647,43.796591],[-0.221604,43.79037],[-0.222128,43.787094],[-0.214828,43.782627],[-0.215682,43.772407],[-0.207784,43.759662],[-0.209199,43.756315],[-0.213934,43.755662],[-0.218864,43.750329],[-0.196408,43.746866],[-0.195896,43.740162],[-0.194143,43.737017],[-0.218276,43.720879],[-0.222236,43.71887],[-0.226314,43.716984],[-0.247381,43.709243],[-0.241216,43.692676],[-0.254545,43.682624],[-0.256714,43.675804],[-0.24933,43.671847],[-0.23973,43.671242],[-0.243276,43.663958],[-0.246276,43.654944],[-0.259198,43.653162],[-0.261803,43.64795],[-0.263359,43.644995],[-0.263362,43.638727],[-0.266968,43.636943],[-0.282112,43.643079],[-0.280375,43.627255],[-0.281223,43.624095],[-0.280401,43.620779],[-0.274673,43.61599],[-0.247204,43.615959],[-0.248946,43.605785],[-0.254238,43.600124],[-0.254007,43.596709],[-0.249482,43.596664],[-0.242837,43.584985],[-0.238912,43.58304],[-0.228803,43.589645],[-0.210607,43.593237],[-0.206209,43.587271],[-0.205011,43.584001],[-0.200656,43.585426],[-0.17692,43.596596],[-0.165057,43.583931],[-0.162108,43.581666],[-0.157822,43.581449],[-0.151007,43.585465],[-0.133718,43.581445],[-0.128961,43.581447],[-0.125567,43.58349],[-0.117675,43.585518],[-0.10552,43.581796],[-0.096783,43.582406],[-0.091968,43.570063],[-0.093557,43.563706],[-0.090087,43.559969],[-0.094943,43.548071],[-0.091411,43.542481],[-0.087008,43.542552],[-0.069606,43.546738],[-0.057929,43.536217],[-0.056176,43.533034],[-0.049232,43.529754],[-0.048168,43.527191],[-0.0437,43.522986],[-0.043649,43.520142],[-0.040132,43.512605],[-0.044093,43.506588],[-0.044886,43.503801],[-0.046746,43.498293],[-0.049195,43.492011],[-0.036451,43.488849],[-0.030784,43.474017],[-0.02639,43.474851],[-0.020185,43.47253],[-0.018906,43.470062],[-0.019443,43.466869],[-0.032107,43.466039],[-0.061553,43.462582],[-0.065754,43.463489],[-0.061978,43.45362],[-0.064851,43.44702],[-0.066819,43.443831],[-0.069629,43.434208],[-0.053331,43.422523],[-0.067273,43.410416],[-0.042983,43.41021],[-0.042459,43.413376],[-0.038142,43.418863],[-0.034239,43.430803],[-0.028231,43.431889],[-0.02481,43.43004],[-0.022528,43.432688],[-0.016534,43.443947],[-0.007073,43.444012],[-0.002483,43.445085],[-0.003263,43.434943],[-0.004794,43.431624],[-0.001211,43.429247],[0.009655,43.422202],[0.007811,43.419198],[-0.003807,43.398052],[-0.000391,43.396238],[-0.00297,43.395267],[-0.004291,43.393366],[0.002651,43.392821],[-0.001203,43.38742],[0.001295,43.384969],[-0.00059,43.381828],[-0.004653,43.375711],[0.000487,43.37038],[0.004757,43.371813],[0.00741,43.365881],[0.005349,43.363042],[0.02875,43.346655],[0.025541,43.340229],[0.024182,43.338616],[0.020525,43.336337],[0.012768,43.327535],[0.008515,43.326076],[-0.003208,43.331449],[-0.025371,43.329616],[-0.026224,43.327297],[-0.027991,43.322674],[-0.031664,43.312578],[-0.034256,43.30958],[-0.037224,43.306958],[-0.044586,43.302799],[-0.04401,43.289338],[-0.040786,43.283578],[-0.028313,43.280714],[-0.023975,43.280215],[-0.025978,43.277071],[-0.018534,43.272787],[-0.018439,43.269315],[-0.025019,43.260192],[-0.025297,43.253289],[-0.044814,43.233845],[-0.046754,43.223726],[-0.048038,43.22053],[-0.053677,43.218462],[-0.061765,43.22151],[-0.065681,43.223163],[-0.073972,43.222378],[-0.072342,43.21209],[-0.067874,43.17712],[-0.072545,43.176843],[-0.091251,43.177037],[-0.101822,43.167048],[-0.111709,43.178231],[-0.116234,43.179127],[-0.125306,43.167414],[-0.126899,43.164586],[-0.126421,43.158488],[-0.134809,43.151718],[-0.139471,43.148369],[-0.138922,43.14527],[-0.146314,43.128186],[-0.15059,43.127053],[-0.166479,43.121402],[-0.176483,43.110926],[-0.193583,43.114661],[-0.191928,43.1047],[-0.197504,43.0998],[-0.18734,43.088552],[-0.199012,43.065981],[-0.196559,43.059366],[-0.181008,43.052032],[-0.185734,43.05182],[-0.223952,43.033688],[-0.227697,43.035943],[-0.241058,43.039645],[-0.26014,43.037674],[-0.256413,43.024861],[-0.261461,43.012331],[-0.264716,43.010009],[-0.268857,43.008191],[-0.287669,43.005556],[-0.292254,42.992148],[-0.289622,42.961121],[-0.283829,42.95578],[-0.27927,42.942346],[-0.279243,42.939053],[-0.284941,42.930202],[-0.297785,42.930979],[-0.313024,42.918566],[-0.322251,42.917389],[-0.326875,42.916868],[-0.324323,42.903329],[-0.316002,42.895045],[-0.315883,42.884824],[-0.307294,42.868978],[-0.311468,42.852487],[-0.313443,42.849375],[-0.315497,42.846153],[-0.326287,42.834874],[-0.335323,42.837195],[-0.349198,42.835187],[-0.364969,42.817377],[-0.388866,42.800541],[-0.410797,42.806667],[-0.441449,42.796876],[-0.49492,42.818628],[-0.501298,42.827889],[-0.509922,42.825113],[-0.524149,42.811289],[-0.526911,42.794565],[-0.544393,42.79064],[-0.553722,42.779125],[-0.563019,42.78049],[-0.567747,42.780873],[-0.570273,42.79077],[-0.565586,42.796831],[-0.566164,42.803662],[-0.573618,42.807401],[-0.591622,42.803595],[-0.600281,42.806428],[-0.602347,42.830086],[-0.621643,42.839652],[-0.636157,42.853249],[-0.640546,42.853586],[-0.656061,42.859225],[-0.662673,42.870738],[-0.679442,42.882929],[-0.69775,42.87959],[-0.722561,42.889679],[-0.731417,42.897933],[-0.734972,42.911692],[-0.725877,42.919588],[-0.732967,42.935529],[-0.730891,42.938689],[-0.737123,42.947152],[-0.740469,42.948872],[-0.743279,42.951583],[-0.752805,42.966961],[-0.766504,42.968544],[-0.783837,42.964558],[-0.788663,42.964118],[-0.811885,42.951295],[-0.835877,42.953412],[-0.864704,42.950974],[-0.882969,42.955583],[-0.8975,42.95584],[-0.897582,42.95942],[-0.910014,42.963804],[-0.923917,42.954572],[-0.943103,42.953869],[-0.969921,42.961868],[-0.997284,42.976233],[-1.007051,42.988548],[-1.010466,42.991095],[-1.014744,42.992818],[-1.07233,42.99845],[-1.08449,43.004031],[-1.083574,43.010883],[-1.09738,43.01314],[-1.112416,43.021635],[-1.139251,43.008474],[-1.144497,43.014045],[-1.1456,43.024485],[-1.169244,43.036099],[-1.173541,43.037625],[-1.175113,43.034403],[-1.183728,43.034176],[-1.209938,43.048492],[-1.212409,43.051394],[-1.230798,43.054816],[-1.243829,43.044593],[-1.247508,43.042358],[-1.26161,43.043593],[-1.272182,43.055216],[-1.308474,43.071008],[-1.293568,43.099752],[-1.273029,43.115738],[-1.270189,43.118571],[-1.320145,43.112768],[-1.327877,43.108971],[-1.33225,43.107778],[-1.345197,43.093069],[-1.341514,43.079381],[-1.344857,43.05126],[-1.350976,43.034142],[-1.356565,43.028952],[-1.365888,43.030799],[-1.439726,43.045953],[-1.453267,43.060383],[-1.456043,43.06325],[-1.471281,43.080941],[-1.470674,43.091209],[-1.427253,43.117281],[-1.427077,43.120766],[-1.414498,43.130444],[-1.411524,43.140457],[-1.413699,43.150241],[-1.407506,43.155351],[-1.402886,43.15608],[-1.400027,43.179935],[-1.384954,43.188125],[-1.383697,43.222311],[-1.378322,43.231673],[-1.378586,43.235149],[-1.379716,43.238509],[-1.385578,43.254992],[-1.413206,43.273416],[-1.433076,43.266764],[-1.44608,43.268806],[-1.468961,43.273699],[-1.48451,43.281776],[-1.493953,43.282365],[-1.505856,43.293276],[-1.524593,43.293115],[-1.529292,43.293413],[-1.561732,43.288398],[-1.559528,43.275039],[-1.57347,43.252598],[-1.607092,43.253276],[-1.61821,43.259875],[-1.624382,43.269504],[-1.629765,43.286782],[-1.623152,43.303664],[-1.630919,43.307278],[-1.635301,43.308829],[-1.635609,43.308816],[-1.644551,43.306782],[-1.655737,43.312807],[-1.669614,43.314254],[-1.682256,43.309903],[-1.699794,43.309628],[-1.704278,43.308631],[-1.713446,43.300932],[-1.731214,43.298677],[-1.73935,43.314785],[-1.738246,43.32836],[-1.75039,43.332811],[-1.754943,43.342497],[-1.759025,43.344228],[-1.76284,43.343916],[-1.767025,43.342559],[-1.786007,43.350463],[-1.78505,43.353966],[-1.772005,43.364204],[-1.779209,43.371078],[-1.76183,43.376937],[-1.752257,43.384892],[-1.733809,43.382052],[-1.729376,43.383138],[-1.686478,43.396379],[-1.682892,43.391947],[-1.680377,43.389902],[-1.669409,43.388141],[-1.661977,43.392346],[-1.662032,43.402167],[-1.644317,43.406723],[-1.621164,43.423007],[-1.609472,43.427525],[-1.607457,43.430621],[-1.600529,43.434746],[-1.594341,43.447526],[-1.578024,43.463808],[-1.570117,43.475767],[-1.569808,43.482458],[-1.54982,43.49433],[-1.547318,43.497121],[-1.524867,43.529701],[-1.495584,43.567625],[-1.493309,43.57054],[-1.484595,43.58322],[-1.482502,43.586416],[-1.468952,43.60727],[-1.466913,43.61022],[-1.446685,43.647486],[-1.445676,43.654638],[-1.445591,43.658021],[-1.440562,43.680253],[-1.440529,43.683499],[-1.428448,43.737958],[-1.427606,43.741363],[-1.416042,43.781895],[-1.414567,43.785181],[-1.412666,43.794722],[-1.41179,43.797885],[-1.400856,43.832819],[-1.399856,43.83633],[-1.390421,43.856449],[-1.383673,43.884382],[-1.352736,43.997971],[-1.351446,44.001358],[-1.327377,44.086222],[-1.325915,44.089524],[-1.317321,44.125559],[-1.316381,44.128841],[-1.287863,44.267175],[-1.287089,44.270721],[-1.280696,44.304342],[-1.280059,44.307711],[-1.275291,44.332354],[-1.274754,44.33589],[-1.254491,44.464047],[-1.25389,44.467604],[-1.250952,44.506348],[-1.259822,44.544429],[-1.232352,44.568782],[-1.213458,44.597461],[-1.20507,44.614072],[-1.204778,44.635188],[-1.204346,44.638702],[-1.193837,44.65816],[-1.186043,44.662233],[-1.16174,44.663097],[-1.143716,44.6585],[-1.141916,44.651878],[-1.153621,44.646544],[-1.153779,44.643202],[-1.145872,44.642832],[-1.139061,44.647054],[-1.124932,44.647258],[-1.11836,44.643563],[-1.118773,44.64023],[-1.112496,44.644872],[-1.084311,44.641212],[-1.066299,44.646203],[-1.056811,44.644731],[-1.048876,44.648348],[-1.044034,44.648625],[-1.040816,44.651113],[-1.016365,44.641512],[-1.018581,44.647796],[-1.009295,44.64898],[-1.004681,44.648192],[-1.006272,44.654769],[-1.018659,44.66465],[-1.017862,44.667987],[-1.020115,44.67106],[-1.02534,44.676991],[-1.051925,44.684755],[-1.06248,44.691994],[-1.056332,44.694888],[-1.037418,44.692317],[-1.037786,44.695504],[-1.078191,44.722193],[-1.100564,44.739414],[-1.117714,44.745088],[-1.12204,44.751121],[-1.118511,44.753389],[-1.116329,44.756409],[-1.119323,44.753764],[-1.128249,44.75143],[-1.132186,44.753357],[-1.161933,44.774908],[-1.177624,44.761569],[-1.174084,44.751389],[-1.177351,44.744792],[-1.207736,44.716702],[-1.219313,44.709896],[-1.229232,44.697535],[-1.237442,44.680668],[-1.238353,44.677153],[-1.244958,44.645615],[-1.241877,44.638918],[-1.244944,44.624816],[-1.251794,44.620235],[-1.26076,44.628129],[-1.261328,44.649493],[-1.233619,44.805397],[-1.232986,44.808938],[-1.214863,44.917282],[-1.214517,44.920794],[-1.194636,45.064827],[-1.194341,45.068354],[-1.187448,45.124959],[-1.187115,45.128506],[-1.169941,45.246494],[-1.169507,45.250072],[-1.164967,45.281566],[-1.16454,45.285071],[-1.158977,45.355286],[-1.160302,45.390439],[-1.160494,45.405652],[-1.151499,45.440314],[-1.154857,45.464139],[-1.155895,45.467563],[-1.154377,45.48119],[-1.137142,45.509969],[-1.120295,45.522636],[-1.117079,45.525279],[-1.1003,45.5428],[-1.093177,45.559984],[-1.071278,45.568354],[-1.06672,45.569755],[-1.0628,45.568283],[-1.061945,45.554175],[-1.043822,45.5429],[-1.041002,45.539422],[-1.040934,45.536017],[-1.044327,45.534163],[-1.054126,45.535361],[-1.057592,45.529591],[-1.069896,45.525422],[-1.068351,45.515027],[-1.051666,45.502575],[-1.047731,45.500481],[-1.02786,45.492568],[-1.019999,45.484753],[-1.016856,45.482413],[-0.982439,45.460758],[-0.979011,45.458508],[-0.932489,45.439639],[-0.904069,45.411548],[-0.903699,45.408099],[-0.868284,45.391369],[-0.864457,45.389328],[-0.846176,45.378445],[-0.843365,45.375711],[-0.810748,45.351837],[-0.810253,45.348518],[-0.803319,45.343967],[-0.784062,45.312879],[-0.782552,45.309649],[-0.768074,45.28733],[-0.767201,45.283862],[-0.764974,45.280764],[-0.746968,45.226823],[-0.742433,45.227867],[-0.73797,45.229035],[-0.695018,45.236153],[-0.69012,45.236369],[-0.699556,45.281272],[-0.698893,45.284755],[-0.714581,45.324304],[-0.714861,45.327738],[-0.708651,45.327358],[-0.650712,45.322504],[-0.642088,45.315096],[-0.633594,45.318446],[-0.607635,45.324009],[-0.599195,45.321343],[-0.594481,45.321143],[-0.594006,45.331596],[-0.585303,45.342899],[-0.572742,45.333206],[-0.568974,45.331235],[-0.573978,45.314237],[-0.573867,45.310717],[-0.570631,45.300292],[-0.567662,45.297421],[-0.55176,45.295188],[-0.548704,45.293121],[-0.516876,45.288782],[-0.513854,45.286227],[-0.490146,45.291558],[-0.48602,45.293579],[-0.472986,45.293633],[-0.462073,45.288582],[-0.457654,45.288358],[-0.437376,45.282116],[-0.433463,45.280569],[-0.418508,45.27361],[-0.4177,45.264387],[-0.41912,45.261324],[-0.424028,45.248565],[-0.409905,45.24797],[-0.406009,45.238707],[-0.413635,45.226568],[-0.413187,45.223211],[-0.419461,45.206985],[-0.417435,45.203884],[-0.402585,45.189701],[-0.40061,45.182813],[-0.399471,45.179378],[-0.385058,45.146596],[-0.383396,45.143339],[-0.378517,45.15678],[-0.366174,45.167563],[-0.362959,45.170237],[-0.338768,45.166241],[-0.323322,45.157159],[-0.316676,45.140486],[-0.31363,45.137648],[-0.309374,45.146624],[-0.307551,45.149589],[-0.279962,45.143248],[-0.275713,45.141571],[-0.273944,45.134855],[-0.256783,45.114793],[-0.245672,45.108214],[-0.221237,45.10776],[-0.212445,45.102238],[-0.209721,45.100235],[-0.191442,45.094749],[-0.166877,45.092747],[-0.161926,45.092491],[-0.15327,45.08924],[-0.143512,45.090354],[-0.110974,45.115524],[-0.092825,45.121022],[-0.087832,45.12143],[-0.061772,45.098766],[-0.057088,45.098976],[-0.05373,45.101086],[-0.046095,45.097781],[-0.0402,45.102384],[-0.041524,45.112683],[-0.02963,45.127776],[-0.035312,45.137245],[-0.036728,45.140567],[-0.001528,45.150819],[0.003268,45.155661],[0.000368,45.15843],[-0.014091,45.159924],[-0.019062,45.165177],[-0.002052,45.181171],[0.001677,45.183389],[0.004331,45.191633],[0.010324,45.202732],[0.033859,45.20837],[0.036594,45.211353],[0.051213,45.225382],[0.055582,45.227164],[0.066433,45.22062],[0.076064,45.220268],[0.0884,45.225258],[0.092006,45.227515],[0.100037,45.226075],[0.111422,45.216981],[0.114272,45.214622],[0.115844,45.213572],[0.132319,45.208996],[0.140998,45.214751],[0.145486,45.214487],[0.148209,45.224558],[0.157828,45.226452],[0.174738,45.239207],[0.171342,45.248329],[0.172293,45.251714],[0.176696,45.255961],[0.174862,45.261437],[0.200767,45.261828],[0.204416,45.263604],[0.210296,45.271274],[0.210596,45.274201],[0.220092,45.287223],[0.220912,45.290225],[0.243136,45.291749],[0.246868,45.28984],[0.249597,45.288592],[0.252621,45.289405],[0.262719,45.29587],[0.266609,45.297749],[0.270634,45.314605],[0.264905,45.33453],[0.264588,45.334748],[0.258533,45.350051],[0.256966,45.353067],[0.250217,45.360614],[0.249431,45.363586],[0.253457,45.380939],[0.262875,45.396865],[0.265268,45.405429],[0.267624,45.407982],[0.27155,45.416079],[0.27086,45.418927],[0.278402,45.427156],[0.289959,45.432617],[0.298855,45.432291],[0.303543,45.431944],[0.316234,45.435979],[0.303213,45.445595],[0.302619,45.458889],[0.310781,45.45876],[0.329155,45.443784],[0.333389,45.453182],[0.334363,45.459819],[0.334668,45.460141],[0.356707,45.466222],[0.363133,45.475149],[0.372947,45.475865],[0.378867,45.480671],[0.378384,45.484128],[0.408356,45.49178],[0.419259,45.48595],[0.422921,45.483781],[0.426875,45.485782],[0.431738,45.485596],[0.432763,45.501647],[0.443656,45.511878],[0.446105,45.514637],[0.450893,45.518647],[0.449305,45.523917],[0.457779,45.52556],[0.464307,45.533591],[0.465737,45.539623],[0.46967,45.538838],[0.473715,45.538407],[0.48327,45.538891],[0.499202,45.545788],[0.506549,45.554339],[0.50227,45.562802],[0.498576,45.564783],[0.516324,45.58806],[0.512189,45.593852],[0.516143,45.599246],[0.513312,45.605427],[0.503838,45.612568],[0.501441,45.615353],[0.500403,45.619564],[0.508422,45.6214],[0.512657,45.631458],[0.525833,45.641785],[0.535418,45.64286],[0.537079,45.631509],[0.538448,45.628737],[0.550448,45.634098],[0.564535,45.634404],[0.575447,45.640928],[0.573663,45.644124],[0.567032,45.65326],[0.587634,45.661289],[0.58746,45.667943],[0.600389,45.671733],[0.596594,45.676868],[0.602126,45.68177],[0.605006,45.694218],[0.613217,45.694023],[0.627671,45.708004],[0.629742,45.71457],[0.637778,45.701982],[0.650294,45.697586],[0.653606,45.691034],[0.662086,45.687481],[0.676533,45.68841],[0.681304,45.687445],[0.694223,45.690494],[0.702599,45.687846],[0.713127,45.694042],[0.722051,45.69461],[0.744137,45.688262],[0.760468,45.670949],[0.77397,45.667812],[0.775643,45.667746],[0.763951,45.631498],[0.753737,45.619602],[0.750613,45.616873],[0.767445,45.60439],[0.777188,45.592169],[0.801392,45.595933],[0.805857,45.594966],[0.810565,45.579086],[0.8115,45.575871],[0.839996,45.581304],[0.848144,45.589847],[0.849461,45.593259],[0.858099,45.609801],[0.8597,45.613191],[0.866884,45.620967],[0.869353,45.623527],[0.876966,45.619842],[0.881222,45.61059],[0.890345,45.603249],[0.89374,45.601034],[0.898605,45.600323],[0.904489,45.605927],[0.918839,45.605185],[0.946322,45.61296],[0.959802,45.608692],[0.969549,45.60994],[0.97569,45.604493],[0.989587,45.607355],[0.995823,45.612708],[1.02011,45.609743],[1.032964,45.59906],[1.039334,45.58584],[1.034704,45.579661],[1.037977,45.569468],[1.047749,45.557829],[1.056478,45.554603],[1.061386,45.5543],[1.061699,45.554891],[1.074201,45.545612],[1.081118,45.533561],[1.084638,45.531442],[1.086024,45.534744],[1.104331,45.53909],[1.109717,45.544666],[1.119312,45.545962],[1.128288,45.54322],[1.132364,45.541325],[1.165365,45.526367],[1.164273,45.522954],[1.147483,45.515418],[1.134423,45.50488],[1.12289,45.489474],[1.118436,45.487904],[1.119623,45.477791],[1.131013,45.472253],[1.149887,45.473268],[1.158185,45.476674],[1.162444,45.478347],[1.175344,45.468794],[1.177031,45.458725],[1.185123,45.4551],[1.212123,45.46237],[1.233962,45.455006],[1.237444,45.438848],[1.242025,45.437605],[1.250141,45.441488],[1.253152,45.444219],[1.269663,45.439936],[1.272393,45.437303],[1.288271,45.433529],[1.289382,45.420676],[1.289192,45.417304],[1.279872,45.415135],[1.265645,45.417798],[1.258724,45.413791],[1.260222,45.40025],[1.26411,45.398158],[1.277897,45.399235],[1.274016,45.392871],[1.281683,45.38509],[1.29964,45.394307],[1.318722,45.384283],[1.323231,45.383116],[1.319877,45.367205],[1.311868,45.359547],[1.307725,45.357971],[1.302753,45.358067],[1.285155,45.352052],[1.281923,45.342132],[1.274091,45.329879],[1.2599,45.320653],[1.240647,45.322279],[1.235803,45.322041],[1.240886,45.305423],[1.2384,45.302502],[1.241603,45.301309],[1.238945,45.29172],[1.232076,45.287838],[1.22706,45.271844],[1.238364,45.268114],[1.240207,45.263468],[1.239385,45.260447],[1.257397,45.254983],[1.271874,45.257307],[1.276285,45.255699],[1.277687,45.242085],[1.260952,45.229695],[1.238262,45.223314],[1.233608,45.222195],[1.233398,45.21958],[1.231275,45.214566],[1.228376,45.204361],[1.233456,45.198425],[1.272148,45.201147],[1.286019,45.191265],[1.289594,45.188879],[1.2914,45.185646],[1.285709,45.176048],[1.281525,45.174228],[1.277911,45.172091],[1.268222,45.165079],[1.255055,45.164775],[1.254436,45.158506],[1.280205,45.149269],[1.290473,45.14188],[1.308754,45.137016],[1.320997,45.142451],[1.333737,45.137734],[1.347115,45.141445],[1.351983,45.141643],[1.351916,45.136572],[1.351991,45.134033],[1.366379,45.132363],[1.380532,45.135712],[1.393954,45.131367],[1.398389,45.129747],[1.401786,45.128427],[1.409614,45.126503],[1.413094,45.124914],[1.413525,45.118247],[1.408918,45.112516],[1.392448,45.105877],[1.382956,45.105605],[1.378249,45.106095],[1.380056,45.100798],[1.383285,45.103007],[1.389354,45.098916],[1.393265,45.097351],[1.391702,45.087593],[1.398488,45.078802],[1.401222,45.076086],[1.406003,45.07022],[1.401752,45.064206],[1.399564,45.061185],[1.409056,45.059402],[1.411599,45.05263],[1.431329,45.032701],[1.434641,45.0301],[1.444114,45.020057],[1.448262,45.019313]],[[-0.10728,43.370741],[-0.106752,43.367596],[-0.10333,43.358584],[-0.094255,43.35779],[-0.09023,43.359355],[-0.086853,43.337097],[-0.087271,43.333844],[-0.091731,43.333537],[-0.108476,43.337801],[-0.114802,43.322035],[-0.109926,43.312803],[-0.09645,43.313028],[-0.080269,43.307612],[-0.075832,43.306937],[-0.075042,43.30714],[-0.070119,43.31585],[-0.069483,43.31919],[-0.068281,43.322321],[-0.067389,43.328729],[-0.064339,43.337926],[-0.06517,43.341027],[-0.063935,43.344024],[-0.062575,43.346979],[-0.063012,43.350082],[-0.077803,43.365075],[-0.078793,43.365137],[-0.082359,43.366755],[-0.085342,43.371522],[-0.093096,43.373885],[-0.09693,43.374036],[-0.10728,43.370741]],[[-0.137352,43.28575],[-0.137243,43.281477],[-0.138442,43.278156],[-0.140603,43.271674],[-0.125298,43.249783],[-0.1241,43.246325],[-0.11839,43.241377],[-0.109441,43.242571],[-0.104915,43.242917],[-0.103075,43.242817],[-0.104273,43.245844],[-0.094273,43.255259],[-0.086347,43.256053],[-0.079746,43.264829],[-0.079662,43.271566],[-0.084744,43.277209],[-0.095498,43.287731],[-0.090984,43.297763],[-0.089287,43.301062],[-0.09391,43.301308],[-0.113765,43.30902],[-0.122218,43.30143],[-0.125899,43.299298],[-0.129744,43.289743],[-0.137352,43.28575]]],[[[-1.029971,44.649211],[-1.031367,44.652126],[-1.026048,44.66128],[-1.014504,44.652433],[-1.017755,44.650557],[-1.024494,44.652439],[-1.028479,44.65059],[-1.029971,44.649211]]]]},"properties":{"nom":"Aquitaine","code":"72"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[2.166054,42.663918],[2.161322,42.664241],[2.152302,42.662075],[2.143126,42.663854],[2.127885,42.672039],[2.10655,42.664841],[2.073887,42.665624],[2.061034,42.661843],[2.047019,42.66359],[2.04327,42.657496],[2.022788,42.653364],[2.018423,42.653656],[2.015214,42.655389],[2.002095,42.661076],[1.997956,42.660903],[1.990771,42.646638],[1.987816,42.644299],[1.976116,42.627437],[1.976361,42.621074],[1.97328,42.618383],[1.950468,42.616947],[1.942099,42.608521],[1.933621,42.605578],[1.924961,42.608539],[1.910766,42.608063],[1.900303,42.614906],[1.898745,42.611671],[1.89352,42.606051],[1.890215,42.592989],[1.873502,42.588202],[1.874485,42.581415],[1.865377,42.579925],[1.838155,42.583957],[1.824728,42.581239],[1.820712,42.579504],[1.799703,42.57232],[1.786125,42.573623],[1.778394,42.582077],[1.764271,42.580817],[1.72825,42.589575],[1.726265,42.596348],[1.73508,42.608502],[1.737964,42.611314],[1.736569,42.617834],[1.732644,42.615819],[1.71376,42.615386],[1.683181,42.624491],[1.660225,42.620465],[1.64907,42.626907],[1.63517,42.629266],[1.602654,42.626418],[1.582867,42.635437],[1.574887,42.648028],[1.570708,42.648089],[1.564674,42.652226],[1.552802,42.653954],[1.549214,42.655695],[1.534097,42.649797],[1.522151,42.649183],[1.50644,42.645287],[1.49375,42.653211],[1.479741,42.650854],[1.470526,42.634807],[1.473983,42.611153],[1.457841,42.603791],[1.438948,42.604335],[1.421833,42.625062],[1.413033,42.652646],[1.389548,42.669768],[1.387917,42.687306],[1.377013,42.69411],[1.35461,42.699991],[1.351964,42.706444],[1.357819,42.715886],[1.357378,42.719423],[1.336951,42.721068],[1.335268,42.724037],[1.325862,42.724106],[1.309332,42.717902],[1.29526,42.719063],[1.282178,42.715167],[1.269226,42.718025],[1.256345,42.715226],[1.242505,42.724056],[1.229293,42.727724],[1.225892,42.725221],[1.217862,42.721365],[1.190021,42.716877],[1.174266,42.708992],[1.165018,42.709527],[1.135497,42.727328],[1.128703,42.754623],[1.106604,42.771773],[1.089692,42.777454],[1.082026,42.785907],[1.078709,42.788366],[1.072945,42.782839],[1.049296,42.781637],[1.037519,42.786522],[1.009559,42.788876],[1.005585,42.790799],[1.001357,42.789452],[0.983769,42.787072],[0.959768,42.805641],[0.947251,42.801013],[0.93448,42.790873],[0.925827,42.789672],[0.884979,42.81307],[0.871283,42.816083],[0.859991,42.822442],[0.858306,42.825719],[0.853758,42.826744],[0.835187,42.828277],[0.801483,42.840483],[0.779279,42.836148],[0.739791,42.848259],[0.730403,42.855735],[0.712922,42.860293],[0.708378,42.861402],[0.704491,42.859502],[0.691821,42.855235],[0.677886,42.855106],[0.678698,42.84825],[0.659217,42.838678],[0.659112,42.835203],[0.660552,42.831915],[0.669588,42.824537],[0.664746,42.815166],[0.665711,42.812137],[0.669986,42.80363],[0.660008,42.798402],[0.657841,42.795782],[0.652294,42.787654],[0.65049,42.785438],[0.644541,42.783076],[0.664194,42.774772],[0.641852,42.754816],[0.659866,42.752162],[0.670131,42.73265],[0.676455,42.727372],[0.675066,42.717241],[0.680501,42.707599],[0.67321,42.691349],[0.621613,42.695701],[0.600493,42.703388],[0.59672,42.705553],[0.593881,42.704301],[0.593069,42.700937],[0.587988,42.695228],[0.578783,42.695478],[0.529614,42.702684],[0.526374,42.702592],[0.516216,42.691679],[0.493291,42.693096],[0.482285,42.699189],[0.47775,42.69999],[0.473064,42.700042],[0.462497,42.693738],[0.425725,42.690808],[0.39593,42.699623],[0.39263,42.713118],[0.387936,42.712508],[0.37417,42.715077],[0.3601,42.724303],[0.358876,42.720881],[0.344952,42.711316],[0.32771,42.705318],[0.320685,42.685153],[0.295536,42.675038],[0.265931,42.692503],[0.266898,42.70282],[0.259883,42.71582],[0.223739,42.718496],[0.209351,42.726957],[0.205992,42.729299],[0.175303,42.73579],[0.159244,42.723732],[0.136567,42.722327],[0.132698,42.715898],[0.115185,42.710821],[0.105713,42.710665],[0.088644,42.716788],[0.079512,42.714712],[0.069003,42.703385],[0.05673,42.6981],[0.047504,42.696262],[0.029445,42.700936],[0.024933,42.702097],[0.01558,42.700838],[0.013543,42.693952],[0.00264,42.687052],[-0.011239,42.684692],[-0.015979,42.685323],[-0.057542,42.693456],[-0.063505,42.698765],[-0.068457,42.715863],[-0.105645,42.722178],[-0.123126,42.750473],[-0.140701,42.767299],[-0.149168,42.770515],[-0.147566,42.773856],[-0.154798,42.782435],[-0.15861,42.795695],[-0.173664,42.788078],[-0.182863,42.786725],[-0.198251,42.794816],[-0.212047,42.797023],[-0.236449,42.807745],[-0.237807,42.814354],[-0.238794,42.817798],[-0.243358,42.823141],[-0.246646,42.820711],[-0.255807,42.820136],[-0.274993,42.829757],[-0.278465,42.835807],[-0.305081,42.84129],[-0.313443,42.849375],[-0.311468,42.852487],[-0.307294,42.868978],[-0.315883,42.884824],[-0.316002,42.895045],[-0.324323,42.903329],[-0.326875,42.916868],[-0.322251,42.917389],[-0.313024,42.918566],[-0.297785,42.930979],[-0.284941,42.930202],[-0.279243,42.939053],[-0.27927,42.942346],[-0.283829,42.95578],[-0.289622,42.961121],[-0.292254,42.992148],[-0.287669,43.005556],[-0.268857,43.008191],[-0.264716,43.010009],[-0.261461,43.012331],[-0.256413,43.024861],[-0.26014,43.037674],[-0.241058,43.039645],[-0.227697,43.035943],[-0.223952,43.033688],[-0.185734,43.05182],[-0.181008,43.052032],[-0.196559,43.059366],[-0.199012,43.065981],[-0.18734,43.088552],[-0.197504,43.0998],[-0.191928,43.1047],[-0.193583,43.114661],[-0.176483,43.110926],[-0.166479,43.121402],[-0.15059,43.127053],[-0.146314,43.128186],[-0.138922,43.14527],[-0.139471,43.148369],[-0.134809,43.151718],[-0.126421,43.158488],[-0.126899,43.164586],[-0.125306,43.167414],[-0.116234,43.179127],[-0.111709,43.178231],[-0.101822,43.167048],[-0.091251,43.177037],[-0.072545,43.176843],[-0.067874,43.17712],[-0.072342,43.21209],[-0.073972,43.222378],[-0.065681,43.223163],[-0.061765,43.22151],[-0.053677,43.218462],[-0.048038,43.22053],[-0.046754,43.223726],[-0.044814,43.233845],[-0.025297,43.253289],[-0.025019,43.260192],[-0.018439,43.269315],[-0.018534,43.272787],[-0.025978,43.277071],[-0.023975,43.280215],[-0.028313,43.280714],[-0.040786,43.283578],[-0.04401,43.289338],[-0.044586,43.302799],[-0.037224,43.306958],[-0.034256,43.30958],[-0.031664,43.312578],[-0.027991,43.322674],[-0.026224,43.327297],[-0.025371,43.329616],[-0.003208,43.331449],[0.008515,43.326076],[0.012768,43.327535],[0.020525,43.336337],[0.024182,43.338616],[0.025541,43.340229],[0.02875,43.346655],[0.005349,43.363042],[0.00741,43.365881],[0.004757,43.371813],[0.000487,43.37038],[-0.004653,43.375711],[-0.00059,43.381828],[0.001295,43.384969],[-0.001203,43.38742],[0.002651,43.392821],[-0.004291,43.393366],[-0.00297,43.395267],[-0.000391,43.396238],[-0.003807,43.398052],[0.007811,43.419198],[0.009655,43.422202],[-0.001211,43.429247],[-0.004794,43.431624],[-0.003263,43.434943],[-0.002483,43.445085],[-0.007073,43.444012],[-0.016534,43.443947],[-0.022528,43.432688],[-0.02481,43.43004],[-0.028231,43.431889],[-0.034239,43.430803],[-0.038142,43.418863],[-0.042459,43.413376],[-0.042983,43.41021],[-0.067273,43.410416],[-0.053331,43.422523],[-0.069629,43.434208],[-0.066819,43.443831],[-0.064851,43.44702],[-0.061978,43.45362],[-0.065754,43.463489],[-0.061553,43.462582],[-0.032107,43.466039],[-0.019443,43.466869],[-0.018906,43.470062],[-0.020185,43.47253],[-0.02639,43.474851],[-0.030784,43.474017],[-0.036451,43.488849],[-0.049195,43.492011],[-0.046746,43.498293],[-0.044886,43.503801],[-0.044093,43.506588],[-0.040132,43.512605],[-0.043649,43.520142],[-0.0437,43.522986],[-0.048168,43.527191],[-0.049232,43.529754],[-0.056176,43.533034],[-0.057929,43.536217],[-0.069606,43.546738],[-0.087008,43.542552],[-0.091411,43.542481],[-0.094943,43.548071],[-0.090087,43.559969],[-0.093557,43.563706],[-0.091968,43.570063],[-0.096783,43.582406],[-0.10552,43.581796],[-0.117675,43.585518],[-0.125567,43.58349],[-0.128961,43.581447],[-0.133718,43.581445],[-0.151007,43.585465],[-0.157822,43.581449],[-0.162108,43.581666],[-0.165057,43.583931],[-0.17692,43.596596],[-0.200656,43.585426],[-0.205011,43.584001],[-0.206209,43.587271],[-0.210607,43.593237],[-0.228803,43.589645],[-0.238912,43.58304],[-0.242837,43.584985],[-0.249482,43.596664],[-0.254007,43.596709],[-0.254238,43.600124],[-0.248946,43.605785],[-0.247204,43.615959],[-0.274673,43.61599],[-0.280401,43.620779],[-0.281223,43.624095],[-0.280375,43.627255],[-0.282112,43.643079],[-0.266968,43.636943],[-0.263362,43.638727],[-0.263359,43.644995],[-0.261803,43.64795],[-0.259198,43.653162],[-0.246276,43.654944],[-0.243276,43.663958],[-0.23973,43.671242],[-0.24933,43.671847],[-0.256714,43.675804],[-0.254545,43.682624],[-0.241216,43.692676],[-0.247381,43.709243],[-0.226314,43.716984],[-0.222236,43.71887],[-0.218276,43.720879],[-0.194143,43.737017],[-0.195896,43.740162],[-0.196408,43.746866],[-0.218864,43.750329],[-0.213934,43.755662],[-0.209199,43.756315],[-0.207784,43.759662],[-0.215682,43.772407],[-0.214828,43.782627],[-0.222128,43.787094],[-0.221604,43.79037],[-0.218647,43.796591],[-0.226956,43.807666],[-0.216,43.812538],[-0.212633,43.809278],[-0.194708,43.809211],[-0.196344,43.829121],[-0.189844,43.833697],[-0.19342,43.840014],[-0.194496,43.843009],[-0.208908,43.857671],[-0.204298,43.860257],[-0.195834,43.8707],[-0.187112,43.863894],[-0.185723,43.866889],[-0.187532,43.869854],[-0.194002,43.88158],[-0.201257,43.885267],[-0.20535,43.884976],[-0.215616,43.889267],[-0.219239,43.891223],[-0.231716,43.890962],[-0.239879,43.897413],[-0.232826,43.90154],[-0.227893,43.910792],[-0.21685,43.907623],[-0.209669,43.911734],[-0.203483,43.913393],[-0.200575,43.91464],[-0.19871,43.91782],[-0.179029,43.93649],[-0.163922,43.928606],[-0.155915,43.932333],[-0.153158,43.938816],[-0.135133,43.9363],[-0.125325,43.943597],[-0.106746,43.928834],[-0.102561,43.927278],[-0.098748,43.92889],[-0.095423,43.931002],[-0.097864,43.943353],[-0.094468,43.945791],[-0.073635,43.94456],[-0.060463,43.958799],[-0.046915,43.961231],[-0.036169,43.98374],[-0.004915,43.96253],[-0.000961,43.960612],[0.005561,43.955612],[0.005383,43.945232],[-0.019936,43.92927],[0.015984,43.912245],[0.02921,43.902033],[0.033178,43.89998],[0.036927,43.902126],[0.058618,43.898381],[0.069083,43.905345],[0.075082,43.914682],[0.074765,43.918186],[0.06974,43.935252],[0.055391,43.957066],[0.067104,43.967359],[0.067536,43.974242],[0.069724,43.976553],[0.076046,43.983143],[0.080372,43.981719],[0.093313,43.985738],[0.107388,43.985382],[0.127415,43.998581],[0.126847,44.001926],[0.141,43.993642],[0.138625,43.976595],[0.156784,43.972809],[0.161035,43.974352],[0.164053,43.977096],[0.165747,43.994448],[0.18114,44.002528],[0.189807,44.015008],[0.193466,44.013688],[0.201762,44.014234],[0.214734,44.022787],[0.218721,44.021132],[0.229143,44.021361],[0.232775,44.022389],[0.232995,44.009391],[0.250636,44.004261],[0.259824,44.005699],[0.27114,44.00102],[0.273552,43.998054],[0.28235,43.998003],[0.302772,43.991395],[0.305493,43.993992],[0.318026,43.997245],[0.31486,44.006713],[0.31548,44.00997],[0.32475,44.007847],[0.35707,44.01553],[0.372908,44.008429],[0.382444,44.008342],[0.397883,44.021885],[0.412024,44.023499],[0.418874,44.028208],[0.437588,44.029189],[0.44245,44.028762],[0.447452,44.041621],[0.450312,44.04438],[0.450621,44.046404],[0.45866,44.052579],[0.459759,44.055378],[0.485403,44.055439],[0.485697,44.058687],[0.488817,44.056463],[0.497471,44.05758],[0.503819,44.053771],[0.504717,44.050667],[0.51158,44.062737],[0.522484,44.056951],[0.535071,44.055209],[0.538427,44.052952],[0.54609,44.056231],[0.55874,44.058225],[0.567315,44.061234],[0.576884,44.073449],[0.584703,44.07726],[0.601222,44.07801],[0.599327,44.074952],[0.622547,44.064176],[0.631509,44.052863],[0.632705,44.04963],[0.652847,44.042833],[0.65417,44.032849],[0.662534,44.024582],[0.676267,44.026883],[0.679586,44.029348],[0.682755,44.042237],[0.694547,44.045124],[0.704967,44.055725],[0.707923,44.05829],[0.717115,44.05759],[0.738933,44.062491],[0.741635,44.065203],[0.737992,44.071404],[0.739874,44.078105],[0.747761,44.08648],[0.748003,44.093292],[0.754273,44.104747],[0.773071,44.113883],[0.775041,44.116885],[0.78192,44.112919],[0.795242,44.11227],[0.798588,44.110104],[0.793165,44.118458],[0.797565,44.130387],[0.795082,44.133498],[0.787733,44.142759],[0.796556,44.145125],[0.820491,44.143136],[0.855079,44.130492],[0.857814,44.127575],[0.869092,44.126516],[0.880236,44.131711],[0.883987,44.140094],[0.892066,44.137333],[0.894084,44.140235],[0.888351,44.148813],[0.888106,44.163836],[0.889794,44.166885],[0.890008,44.17022],[0.882074,44.173633],[0.870138,44.168999],[0.863912,44.173569],[0.853632,44.174782],[0.853675,44.184246],[0.857793,44.189864],[0.859687,44.192737],[0.860992,44.192979],[0.898525,44.190904],[0.903111,44.190055],[0.929239,44.23025],[0.92851,44.233064],[0.91909,44.23827],[0.932795,44.251252],[0.927782,44.26741],[0.940855,44.264225],[0.948841,44.272073],[0.950788,44.275072],[0.946024,44.275109],[0.923515,44.291569],[0.921475,44.294196],[0.91643,44.302204],[0.912026,44.300914],[0.895067,44.296701],[0.891142,44.298742],[0.8838,44.307686],[0.869445,44.309255],[0.874884,44.320724],[0.873272,44.323574],[0.879503,44.327342],[0.883328,44.328379],[0.894805,44.343286],[0.896113,44.346228],[0.892011,44.349914],[0.893363,44.356072],[0.88732,44.364646],[0.891334,44.370459],[0.893959,44.37312],[0.895341,44.37918],[0.906666,44.382224],[0.910846,44.38296],[0.915224,44.384097],[0.919845,44.384419],[0.923647,44.378007],[0.937285,44.36861],[0.940563,44.347853],[0.941254,44.344399],[0.942382,44.34442],[0.944146,44.354259],[0.950506,44.359519],[0.969794,44.36102],[0.978586,44.358049],[0.993497,44.366516],[0.996705,44.36915],[1.004384,44.365705],[1.022266,44.364056],[1.024678,44.366855],[1.04722,44.362575],[1.060473,44.366258],[1.064084,44.378513],[1.059579,44.390905],[1.051168,44.392269],[1.058599,44.399703],[1.061688,44.401928],[1.059949,44.405022],[1.06145,44.414737],[1.057488,44.427679],[1.051011,44.43041],[1.047182,44.431026],[1.045005,44.434013],[1.031175,44.433092],[1.031241,44.439513],[1.021679,44.4466],[1.02099,44.456241],[1.025025,44.465633],[1.022472,44.472098],[1.023009,44.475439],[1.012236,44.478514],[1.009025,44.48005],[1.014987,44.489721],[1.016272,44.503639],[0.999969,44.5252],[0.989453,44.532402],[0.98846,44.539426],[0.98152,44.544441],[0.993167,44.549408],[1.006567,44.547616],[1.011873,44.539265],[1.013166,44.536136],[1.036748,44.556054],[1.040809,44.557693],[1.042312,44.557927],[1.053195,44.563766],[1.06723,44.565525],[1.073639,44.574084],[1.075141,44.577325],[1.076483,44.574169],[1.085075,44.57195],[1.098607,44.571887],[1.10321,44.571741],[1.099504,44.580043],[1.103467,44.580967],[1.096152,44.593124],[1.107396,44.603961],[1.123622,44.614828],[1.127289,44.616772],[1.146642,44.631362],[1.150893,44.632856],[1.15255,44.63618],[1.146516,44.652846],[1.149825,44.655027],[1.146901,44.667585],[1.146733,44.670797],[1.161061,44.672964],[1.166974,44.678591],[1.180561,44.682687],[1.219796,44.683316],[1.22455,44.684266],[1.224707,44.68571],[1.230001,44.691153],[1.242933,44.694636],[1.244638,44.704749],[1.261542,44.710176],[1.268091,44.718959],[1.270041,44.722088],[1.282721,44.715099],[1.287021,44.714463],[1.299421,44.731674],[1.297181,44.73806],[1.30019,44.744284],[1.312139,44.741486],[1.316051,44.740375],[1.321535,44.761097],[1.308133,44.770898],[1.303951,44.7725],[1.297154,44.776971],[1.303806,44.785691],[1.30262,44.78896],[1.293311,44.789852],[1.301166,44.797744],[1.321845,44.804111],[1.325507,44.806012],[1.352501,44.808578],[1.356551,44.81025],[1.360244,44.81116],[1.364103,44.811568],[1.360801,44.838886],[1.365459,44.84497],[1.378341,44.843349],[1.388593,44.849992],[1.402507,44.849049],[1.402862,44.85081],[1.405462,44.86314],[1.409292,44.864725],[1.411446,44.872708],[1.414009,44.871655],[1.416778,44.870902],[1.431431,44.871767],[1.439858,44.875245],[1.442178,44.878348],[1.442508,44.881063],[1.439857,44.888951],[1.435732,44.889676],[1.421836,44.896414],[1.419672,44.899003],[1.418269,44.907448],[1.410526,44.908788],[1.423629,44.918268],[1.441562,44.918782],[1.4331,44.937214],[1.433462,44.946044],[1.428611,44.946309],[1.41899,44.958285],[1.419568,44.968397],[1.414261,44.973914],[1.414987,44.993566],[1.40913,45.006729],[1.433023,45.01077],[1.448262,45.019313],[1.460357,45.01397],[1.477292,45.020092],[1.477131,45.026916],[1.47993,45.026756],[1.5058,45.039498],[1.522661,45.042659],[1.526759,45.04428],[1.540315,45.044666],[1.543942,45.03125],[1.55204,45.028474],[1.57097,45.039561],[1.603883,45.03535],[1.608069,45.033529],[1.608959,45.028893],[1.60956,45.032305],[1.627746,45.033323],[1.63238,45.032326],[1.64737,45.025837],[1.651891,45.025288],[1.653199,45.018955],[1.671411,45.004307],[1.680078,45.003329],[1.684371,45.00266],[1.689269,44.994604],[1.692273,44.992577],[1.700373,44.98916],[1.703377,44.986575],[1.707508,44.972512],[1.708767,44.969636],[1.71088,44.967086],[1.712968,44.967326],[1.726256,44.967011],[1.736182,44.960532],[1.740734,44.960584],[1.748795,44.95683],[1.755329,44.944135],[1.753982,44.940851],[1.750554,44.938786],[1.76701,44.933045],[1.771447,44.927268],[1.774029,44.924532],[1.774608,44.923539],[1.777453,44.926209],[1.784546,44.930519],[1.785701,44.936906],[1.788603,44.934606],[1.801468,44.926407],[1.800167,44.920288],[1.800798,44.920376],[1.810042,44.927949],[1.819741,44.927224],[1.827628,44.930729],[1.829361,44.933962],[1.831572,44.943422],[1.83589,44.944323],[1.838527,44.938182],[1.842772,44.937083],[1.848412,44.943958],[1.851053,44.946246],[1.887091,44.956337],[1.888368,44.962923],[1.907779,44.978243],[1.927179,44.978801],[1.936522,44.973164],[1.94015,44.971839],[1.941333,44.958208],[1.946191,44.953482],[1.95099,44.953158],[1.9566,44.95901],[1.984336,44.973719],[2.008268,44.976231],[2.040848,44.981982],[2.045121,44.983667],[2.058581,44.975407],[2.062914,44.976506],[2.079176,44.954969],[2.080703,44.951578],[2.076351,44.934785],[2.102335,44.919916],[2.105115,44.91332],[2.10811,44.910598],[2.085432,44.898772],[2.084512,44.888373],[2.09351,44.872375],[2.097414,44.87057],[2.117213,44.848255],[2.127146,44.84358],[2.127673,44.840631],[2.136778,44.826242],[2.139801,44.823825],[2.144397,44.823528],[2.16629,44.81207],[2.166053,44.799022],[2.169115,44.792941],[2.171633,44.790258],[2.169882,44.784663],[2.168506,44.781934],[2.164663,44.772595],[2.155249,44.771551],[2.150975,44.770024],[2.149147,44.769704],[2.148908,44.76629],[2.153492,44.753108],[2.154692,44.74974],[2.148087,44.72285],[2.133279,44.709356],[2.130064,44.699301],[2.132873,44.697189],[2.138291,44.692883],[2.142949,44.693703],[2.154666,44.699366],[2.158546,44.697352],[2.179152,44.674449],[2.176251,44.671834],[2.16601,44.661287],[2.169023,44.658834],[2.173735,44.653251],[2.169541,44.647701],[2.169419,44.637985],[2.172326,44.635783],[2.176555,44.635473],[2.204864,44.618394],[2.207475,44.615532],[2.216622,44.621251],[2.22057,44.622035],[2.21762,44.624796],[2.208414,44.643844],[2.227115,44.654033],[2.250539,44.652042],[2.265206,44.660847],[2.270054,44.660582],[2.274461,44.661214],[2.286189,44.666458],[2.303361,44.6632],[2.320317,44.667285],[2.32413,44.669154],[2.329813,44.666533],[2.332221,44.664594],[2.336617,44.658768],[2.335043,44.648837],[2.350984,44.641234],[2.36529,44.641849],[2.380878,44.649671],[2.392671,44.644937],[2.397134,44.646186],[2.401279,44.645416],[2.404766,44.647182],[2.43565,44.639745],[2.450108,44.648083],[2.46804,44.642895],[2.469,44.649453],[2.471965,44.652024],[2.476306,44.650335],[2.484685,44.652589],[2.489524,44.658715],[2.489176,44.669256],[2.500496,44.688808],[2.516627,44.695884],[2.518885,44.699027],[2.520134,44.702048],[2.5364,44.711958],[2.55623,44.722231],[2.549397,44.728649],[2.552128,44.73146],[2.554142,44.733998],[2.55424,44.739149],[2.553678,44.757423],[2.560675,44.761043],[2.563364,44.771245],[2.564486,44.778092],[2.578243,44.785951],[2.586564,44.783993],[2.590137,44.786284],[2.600123,44.793667],[2.598425,44.82077],[2.609777,44.827284],[2.610224,44.83402],[2.604162,44.843092],[2.618041,44.852972],[2.626616,44.869226],[2.629077,44.872259],[2.653049,44.869771],[2.656223,44.872418],[2.658611,44.885805],[2.679376,44.904423],[2.681868,44.907348],[2.689464,44.903768],[2.702556,44.905307],[2.706372,44.907091],[2.714067,44.926073],[2.716766,44.928835],[2.724568,44.927342],[2.733919,44.938403],[2.737688,44.940366],[2.738254,44.941222],[2.742087,44.931975],[2.755915,44.932151],[2.776095,44.909639],[2.772244,44.900025],[2.775894,44.890263],[2.77859,44.887496],[2.775611,44.884879],[2.767711,44.865928],[2.772282,44.856403],[2.781647,44.856971],[2.784749,44.863216],[2.80279,44.873829],[2.807588,44.874098],[2.814631,44.869447],[2.851531,44.871888],[2.854931,44.874314],[2.859679,44.874465],[2.860544,44.867641],[2.855424,44.854733],[2.863543,44.847423],[2.861554,44.837958],[2.869874,44.829577],[2.879446,44.803101],[2.889642,44.788328],[2.897866,44.785113],[2.906917,44.785454],[2.91673,44.792052],[2.920191,44.794314],[2.931811,44.783725],[2.933774,44.780647],[2.936373,44.774086],[2.931708,44.764522],[2.917767,44.765962],[2.914118,44.763717],[2.914287,44.760278],[2.917021,44.757435],[2.930116,44.753573],[2.93351,44.747201],[2.931312,44.737206],[2.923264,44.728648],[2.929367,44.716201],[2.930886,44.713033],[2.934201,44.696226],[2.941418,44.687228],[2.939346,44.677576],[2.9475,44.67433],[2.955269,44.662188],[2.962677,44.65787],[2.961872,44.654466],[2.967626,44.650498],[2.97025,44.648257],[2.977213,44.644712],[2.981677,44.644686],[2.985448,44.644209],[2.987819,44.641193],[3.013273,44.620847],[3.018388,44.611259],[3.030708,44.600741],[3.031891,44.598463],[3.037131,44.595536],[3.041086,44.594202],[3.055354,44.587075],[3.059631,44.581626],[3.061845,44.578996],[3.076196,44.57255],[3.076607,44.569498],[3.079021,44.566472],[3.08347,44.56032],[3.07491,44.533292],[3.076238,44.519464],[3.075465,44.51598],[3.068932,44.502706],[3.09956,44.48043],[3.103506,44.479535],[3.117325,44.473787],[3.124866,44.461302],[3.135486,44.455519],[3.136186,44.448793],[3.136367,44.44539],[3.135077,44.442016],[3.142256,44.433734],[3.141045,44.426796],[3.129938,44.420337],[3.126721,44.413958],[3.130371,44.412037],[3.137244,44.408266],[3.137053,44.391621],[3.119743,44.386331],[3.123395,44.380214],[3.122494,44.370017],[3.120492,44.366814],[3.123591,44.360771],[3.131976,44.357178],[3.128198,44.3509],[3.134194,44.334528],[3.150937,44.329933],[3.146076,44.317131],[3.154266,44.309225],[3.125306,44.285418],[3.124527,44.261466],[3.133898,44.262382],[3.138298,44.26397],[3.14016,44.267037],[3.14617,44.276031],[3.154268,44.27304],[3.160532,44.24628],[3.174415,44.245259],[3.187826,44.24891],[3.195687,44.24066],[3.23054,44.23034],[3.221213,44.207713],[3.219211,44.204503],[3.215799,44.202098],[3.212071,44.195777],[3.203593,44.193462],[3.226313,44.190592],[3.230589,44.189863],[3.239261,44.190663],[3.243235,44.192572],[3.264363,44.200308],[3.287881,44.19952],[3.291616,44.205676],[3.301043,44.206461],[3.318327,44.20039],[3.332084,44.203509],[3.355603,44.200843],[3.360423,44.201169],[3.358391,44.19447],[3.372075,44.180725],[3.373648,44.170765],[3.336682,44.15813],[3.332488,44.148638],[3.330226,44.142165],[3.320354,44.135948],[3.32359,44.127009],[3.323929,44.111941],[3.323849,44.108918],[3.319087,44.108373],[3.310698,44.104941],[3.291562,44.104832],[3.263376,44.092726],[3.27474,44.087541],[3.295925,44.069539],[3.305423,44.069189],[3.318423,44.079025],[3.323059,44.079848],[3.325456,44.077483],[3.32891,44.07903],[3.332517,44.074501],[3.337492,44.058744],[3.344557,44.054636],[3.347875,44.052402],[3.351731,44.050257],[3.367643,44.058215],[3.372685,44.052474],[3.386492,44.055081],[3.399699,44.044845],[3.417944,44.040016],[3.440799,44.026777],[3.444774,44.024718],[3.449727,44.023276],[3.450981,44.022541],[3.443552,44.002339],[3.418529,43.992295],[3.406388,43.973171],[3.405615,43.969682],[3.377571,43.966947],[3.375884,43.956729],[3.359211,43.95027],[3.353982,43.940756],[3.351722,43.937721],[3.352274,43.934309],[3.358663,43.914525],[3.35509,43.912512],[3.341916,43.903707],[3.342568,43.894193],[3.318657,43.891142],[3.295145,43.894979],[3.285828,43.893312],[3.277444,43.896771],[3.274142,43.898526],[3.262608,43.891003],[3.261857,43.887478],[3.255494,43.878034],[3.242077,43.873934],[3.235019,43.860874],[3.236408,43.853896],[3.251333,43.840067],[3.249037,43.82958],[3.24472,43.828807],[3.236311,43.827439],[3.231794,43.826063],[3.222688,43.817776],[3.205308,43.81296],[3.18238,43.812829],[3.155002,43.817065],[3.151466,43.814794],[3.150705,43.813769],[3.126978,43.817668],[3.112567,43.82707],[3.085706,43.835554],[3.071172,43.834826],[3.066312,43.83527],[3.058733,43.827967],[3.058661,43.818006],[3.063813,43.81263],[3.050173,43.804619],[3.048568,43.801498],[3.05838,43.786105],[3.057048,43.782803],[3.058796,43.77968],[3.07351,43.767594],[3.065413,43.755703],[3.056275,43.754953],[3.053162,43.744777],[3.057115,43.73844],[3.053522,43.731999],[3.057648,43.725743],[3.054971,43.715972],[3.069165,43.706849],[3.062363,43.702399],[3.061872,43.69601],[3.060678,43.692807],[3.048231,43.696953],[3.031387,43.692433],[3.022657,43.69437],[3.018665,43.695999],[3.013333,43.701444],[2.996006,43.706493],[2.982088,43.70803],[2.973965,43.704627],[2.969351,43.704023],[2.957596,43.699448],[2.954969,43.69654],[2.942225,43.691774],[2.934967,43.694712],[2.919588,43.686586],[2.918495,43.661993],[2.907798,43.65475],[2.90294,43.654647],[2.884296,43.65713],[2.86877,43.644965],[2.844894,43.644763],[2.828424,43.637432],[2.814703,43.639479],[2.804692,43.632164],[2.801592,43.62954],[2.795131,43.624633],[2.781699,43.625876],[2.759078,43.614887],[2.754524,43.614139],[2.746507,43.617845],[2.738722,43.630334],[2.719328,43.644412],[2.687337,43.65093],[2.684695,43.65381],[2.667283,43.649448],[2.653587,43.649991],[2.649787,43.659444],[2.645491,43.660672],[2.627779,43.611106],[2.615603,43.600518],[2.620069,43.595423],[2.62254,43.592463],[2.627227,43.59319],[2.631005,43.583242],[2.617994,43.56872],[2.616643,43.565377],[2.655687,43.527251],[2.667984,43.522062],[2.67602,43.513458],[2.671518,43.513697],[2.658852,43.516923],[2.659896,43.503458],[2.655033,43.494185],[2.657633,43.480958],[2.665094,43.472677],[2.668,43.47005],[2.663624,43.464171],[2.641583,43.46706],[2.644608,43.461267],[2.644567,43.45792],[2.641062,43.455587],[2.617661,43.438531],[2.608845,43.440415],[2.606095,43.43803],[2.606371,43.431994],[2.602191,43.431331],[2.597996,43.43271],[2.579276,43.423301],[2.565787,43.42296],[2.565541,43.422914],[2.561483,43.420963],[2.548049,43.424651],[2.518988,43.423716],[2.497332,43.434287],[2.494383,43.436937],[2.477992,43.436427],[2.473695,43.436514],[2.469545,43.435352],[2.451105,43.432228],[2.42759,43.43449],[2.40776,43.425216],[2.404826,43.422438],[2.406846,43.419255],[2.398735,43.417051],[2.375171,43.423],[2.371245,43.423076],[2.367331,43.423179],[2.363082,43.424567],[2.348387,43.432774],[2.313931,43.441064],[2.304106,43.447929],[2.299698,43.446812],[2.284875,43.443296],[2.281798,43.441449],[2.268692,43.450611],[2.265415,43.452919],[2.263919,43.455923],[2.258295,43.460113],[2.256687,43.453642],[2.243802,43.445438],[2.241344,43.442676],[2.239358,43.439747],[2.235584,43.437561],[2.222523,43.42831],[2.223344,43.417789],[2.229322,43.408286],[2.215024,43.382615],[2.211099,43.384565],[2.184058,43.397779],[2.170349,43.415876],[2.156305,43.414894],[2.138318,43.403714],[2.133557,43.403559],[2.130495,43.401222],[2.111065,43.396188],[2.108785,43.39446],[2.104399,43.395602],[2.095112,43.3962],[2.091681,43.393886],[2.085693,43.398082],[2.077317,43.395627],[2.072801,43.395696],[2.068725,43.408896],[2.053071,43.430308],[2.033296,43.436044],[2.029133,43.436898],[2.030853,43.433737],[2.038411,43.425482],[2.028795,43.41962],[2.020921,43.423193],[2.012692,43.415021],[1.991106,43.409343],[1.972991,43.418962],[1.965903,43.414971],[1.963038,43.41991],[1.963752,43.422751],[1.960755,43.423964],[1.95817,43.425613],[1.946584,43.420597],[1.932769,43.423377],[1.923508,43.421558],[1.911508,43.403408],[1.91463,43.400749],[1.910708,43.397399],[1.903591,43.394025],[1.895584,43.39658],[1.902433,43.408813],[1.899143,43.411128],[1.897627,43.414271],[1.873987,43.430259],[1.872942,43.43696],[1.856453,43.443455],[1.855178,43.440517],[1.842953,43.43255],[1.84599,43.430729],[1.844511,43.422607],[1.840383,43.416741],[1.826761,43.417746],[1.817266,43.410652],[1.817111,43.407384],[1.821619,43.398787],[1.826108,43.394661],[1.812498,43.394126],[1.804971,43.390588],[1.804994,43.359764],[1.815575,43.34831],[1.813484,43.341503],[1.796973,43.340565],[1.793332,43.342567],[1.784932,43.345154],[1.77653,43.342558],[1.772273,43.336977],[1.768684,43.339392],[1.749223,43.349462],[1.746555,43.343484],[1.735427,43.337704],[1.722905,43.341533],[1.726379,43.332694],[1.724412,43.329666],[1.735952,43.316018],[1.727504,43.313571],[1.707384,43.305316],[1.704015,43.30282],[1.707797,43.301155],[1.714527,43.297097],[1.706646,43.286036],[1.701275,43.281698],[1.698489,43.27911],[1.68842,43.273554],[1.691642,43.270993],[1.701035,43.259015],[1.700281,43.245511],[1.716082,43.228373],[1.723908,43.224435],[1.720825,43.221997],[1.724233,43.212474],[1.709977,43.199845],[1.709632,43.190008],[1.71178,43.18684],[1.725887,43.187682],[1.739608,43.184299],[1.747554,43.175566],[1.774918,43.161541],[1.779465,43.16036],[1.783803,43.154472],[1.801395,43.157017],[1.817151,43.150228],[1.821439,43.148998],[1.826188,43.145685],[1.848366,43.147346],[1.846197,43.153233],[1.850054,43.157601],[1.85196,43.160608],[1.856847,43.144629],[1.877961,43.144833],[1.880648,43.147542],[1.880596,43.130549],[1.890103,43.123469],[1.892668,43.117127],[1.904423,43.131163],[1.916269,43.133432],[1.927409,43.129496],[1.927998,43.124185],[1.932339,43.12386],[1.948405,43.120303],[1.951491,43.111311],[1.950633,43.102388],[1.955369,43.088924],[1.955776,43.085447],[1.952205,43.084054],[1.949782,43.081691],[1.953422,43.07991],[1.96308,43.069587],[1.961181,43.0667],[1.944222,43.066948],[1.940394,43.061586],[1.945866,43.049398],[1.954082,43.04678],[1.961083,43.049564],[1.975929,43.042304],[1.979452,43.037903],[1.984554,43.032941],[1.985759,43.029957],[1.985468,43.023479],[1.971869,43.010586],[1.969256,43.007944],[1.977778,43.007009],[1.987058,43.000576],[1.987127,42.994506],[1.983264,42.988434],[1.985769,42.968482],[1.991575,42.963482],[2.004908,42.961565],[1.992859,42.953718],[1.988592,42.953381],[1.979382,42.960507],[1.96166,42.96201],[1.951304,42.959094],[1.951814,42.955934],[1.936227,42.951895],[1.933731,42.939144],[1.938436,42.938228],[1.980574,42.92958],[1.98088,42.926111],[1.989327,42.910488],[1.991129,42.907492],[1.986048,42.902786],[1.981595,42.880467],[1.981922,42.877197],[1.985041,42.870859],[1.964409,42.862919],[1.960244,42.861377],[1.947126,42.856689],[1.89389,42.852925],[1.889042,42.852704],[1.880266,42.852676],[1.875017,42.849168],[1.875018,42.845939],[1.875571,42.839497],[1.859461,42.824138],[1.859379,42.820809],[1.897896,42.806041],[1.898387,42.802701],[1.901467,42.800637],[1.924962,42.776245],[1.928959,42.774603],[1.926075,42.772182],[1.909557,42.768445],[1.908994,42.765247],[1.912998,42.759308],[1.92529,42.755179],[1.929817,42.755206],[1.931555,42.750934],[1.943622,42.746207],[1.950255,42.737658],[1.986832,42.735222],[1.991438,42.734798],[1.994914,42.735577],[1.998506,42.735944],[2.001675,42.735371],[2.00378,42.733529],[2.01532,42.739274],[2.019979,42.740018],[2.030775,42.741483],[2.034932,42.746826],[2.043914,42.74741],[2.058119,42.755485],[2.080464,42.752244],[2.084951,42.751662],[2.08636,42.752069],[2.0878,42.739574],[2.096671,42.733148],[2.100535,42.731715],[2.111063,42.726839],[2.113806,42.724497],[2.140803,42.70908],[2.140607,42.705824],[2.147599,42.70124],[2.161494,42.700523],[2.175521,42.682748],[2.165712,42.667395],[2.166054,42.663918]]],[[[-0.137352,43.28575],[-0.129744,43.289743],[-0.125899,43.299298],[-0.122218,43.30143],[-0.113765,43.30902],[-0.09391,43.301308],[-0.089287,43.301062],[-0.090984,43.297763],[-0.095498,43.287731],[-0.084744,43.277209],[-0.079662,43.271566],[-0.079746,43.264829],[-0.086347,43.256053],[-0.094273,43.255259],[-0.104273,43.245844],[-0.103075,43.242817],[-0.104915,43.242917],[-0.109441,43.242571],[-0.11839,43.241377],[-0.1241,43.246325],[-0.125298,43.249783],[-0.140603,43.271674],[-0.138442,43.278156],[-0.137243,43.281477],[-0.137352,43.28575]]],[[[-0.10728,43.370741],[-0.09693,43.374036],[-0.093096,43.373885],[-0.085342,43.371522],[-0.082359,43.366755],[-0.078793,43.365137],[-0.077803,43.365075],[-0.063012,43.350082],[-0.062575,43.346979],[-0.063935,43.344024],[-0.06517,43.341027],[-0.064339,43.337926],[-0.067389,43.328729],[-0.068281,43.322321],[-0.069483,43.31919],[-0.070119,43.31585],[-0.075042,43.30714],[-0.075832,43.306937],[-0.080269,43.307612],[-0.09645,43.313028],[-0.109926,43.312803],[-0.114802,43.322035],[-0.108476,43.337801],[-0.091731,43.333537],[-0.087271,43.333844],[-0.086853,43.337097],[-0.09023,43.359355],[-0.094255,43.35779],[-0.10333,43.358584],[-0.106752,43.367596],[-0.10728,43.370741]]]]},"properties":{"nom":"Midi-Pyr\u00e9n\u00e9es","code":"73"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[2.062914,44.976506],[2.058581,44.975407],[2.045121,44.983667],[2.040848,44.981982],[2.008268,44.976231],[1.984336,44.973719],[1.9566,44.95901],[1.95099,44.953158],[1.946191,44.953482],[1.941333,44.958208],[1.94015,44.971839],[1.936522,44.973164],[1.927179,44.978801],[1.907779,44.978243],[1.888368,44.962923],[1.887091,44.956337],[1.851053,44.946246],[1.848412,44.943958],[1.842772,44.937083],[1.838527,44.938182],[1.83589,44.944323],[1.831572,44.943422],[1.829361,44.933962],[1.827628,44.930729],[1.819741,44.927224],[1.810042,44.927949],[1.800798,44.920376],[1.800167,44.920288],[1.801468,44.926407],[1.788603,44.934606],[1.785701,44.936906],[1.784546,44.930519],[1.777453,44.926209],[1.774608,44.923539],[1.774029,44.924532],[1.771447,44.927268],[1.76701,44.933045],[1.750554,44.938786],[1.753982,44.940851],[1.755329,44.944135],[1.748795,44.95683],[1.740734,44.960584],[1.736182,44.960532],[1.726256,44.967011],[1.712968,44.967326],[1.71088,44.967086],[1.708767,44.969636],[1.707508,44.972512],[1.703377,44.986575],[1.700373,44.98916],[1.692273,44.992577],[1.689269,44.994604],[1.684371,45.00266],[1.680078,45.003329],[1.671411,45.004307],[1.653199,45.018955],[1.651891,45.025288],[1.64737,45.025837],[1.63238,45.032326],[1.627746,45.033323],[1.60956,45.032305],[1.608959,45.028893],[1.608069,45.033529],[1.603883,45.03535],[1.57097,45.039561],[1.55204,45.028474],[1.543942,45.03125],[1.540315,45.044666],[1.526759,45.04428],[1.522661,45.042659],[1.5058,45.039498],[1.47993,45.026756],[1.477131,45.026916],[1.477292,45.020092],[1.460357,45.01397],[1.448262,45.019313],[1.444114,45.020057],[1.434641,45.0301],[1.431329,45.032701],[1.411599,45.05263],[1.409056,45.059402],[1.399564,45.061185],[1.401752,45.064206],[1.406003,45.07022],[1.401222,45.076086],[1.398488,45.078802],[1.391702,45.087593],[1.393265,45.097351],[1.389354,45.098916],[1.383285,45.103007],[1.380056,45.100798],[1.378249,45.106095],[1.382956,45.105605],[1.392448,45.105877],[1.408918,45.112516],[1.413525,45.118247],[1.413094,45.124914],[1.409614,45.126503],[1.401786,45.128427],[1.398389,45.129747],[1.393954,45.131367],[1.380532,45.135712],[1.366379,45.132363],[1.351991,45.134033],[1.351916,45.136572],[1.351983,45.141643],[1.347115,45.141445],[1.333737,45.137734],[1.320997,45.142451],[1.308754,45.137016],[1.290473,45.14188],[1.280205,45.149269],[1.254436,45.158506],[1.255055,45.164775],[1.268222,45.165079],[1.277911,45.172091],[1.281525,45.174228],[1.285709,45.176048],[1.2914,45.185646],[1.289594,45.188879],[1.286019,45.191265],[1.272148,45.201147],[1.233456,45.198425],[1.228376,45.204361],[1.231275,45.214566],[1.233398,45.21958],[1.233608,45.222195],[1.238262,45.223314],[1.260952,45.229695],[1.277687,45.242085],[1.276285,45.255699],[1.271874,45.257307],[1.257397,45.254983],[1.239385,45.260447],[1.240207,45.263468],[1.238364,45.268114],[1.22706,45.271844],[1.232076,45.287838],[1.238945,45.29172],[1.241603,45.301309],[1.2384,45.302502],[1.240886,45.305423],[1.235803,45.322041],[1.240647,45.322279],[1.2599,45.320653],[1.274091,45.329879],[1.281923,45.342132],[1.285155,45.352052],[1.302753,45.358067],[1.307725,45.357971],[1.311868,45.359547],[1.319877,45.367205],[1.323231,45.383116],[1.318722,45.384283],[1.29964,45.394307],[1.281683,45.38509],[1.274016,45.392871],[1.277897,45.399235],[1.26411,45.398158],[1.260222,45.40025],[1.258724,45.413791],[1.265645,45.417798],[1.279872,45.415135],[1.289192,45.417304],[1.289382,45.420676],[1.288271,45.433529],[1.272393,45.437303],[1.269663,45.439936],[1.253152,45.444219],[1.250141,45.441488],[1.242025,45.437605],[1.237444,45.438848],[1.233962,45.455006],[1.212123,45.46237],[1.185123,45.4551],[1.177031,45.458725],[1.175344,45.468794],[1.162444,45.478347],[1.158185,45.476674],[1.149887,45.473268],[1.131013,45.472253],[1.119623,45.477791],[1.118436,45.487904],[1.12289,45.489474],[1.134423,45.50488],[1.147483,45.515418],[1.164273,45.522954],[1.165365,45.526367],[1.132364,45.541325],[1.128288,45.54322],[1.119312,45.545962],[1.109717,45.544666],[1.104331,45.53909],[1.086024,45.534744],[1.084638,45.531442],[1.081118,45.533561],[1.074201,45.545612],[1.061699,45.554891],[1.061386,45.5543],[1.056478,45.554603],[1.047749,45.557829],[1.037977,45.569468],[1.034704,45.579661],[1.039334,45.58584],[1.032964,45.59906],[1.02011,45.609743],[0.995823,45.612708],[0.989587,45.607355],[0.97569,45.604493],[0.969549,45.60994],[0.959802,45.608692],[0.946322,45.61296],[0.918839,45.605185],[0.904489,45.605927],[0.898605,45.600323],[0.89374,45.601034],[0.890345,45.603249],[0.881222,45.61059],[0.876966,45.619842],[0.869353,45.623527],[0.866884,45.620967],[0.8597,45.613191],[0.858099,45.609801],[0.849461,45.593259],[0.848144,45.589847],[0.839996,45.581304],[0.8115,45.575871],[0.810565,45.579086],[0.805857,45.594966],[0.801392,45.595933],[0.777188,45.592169],[0.767445,45.60439],[0.750613,45.616873],[0.753737,45.619602],[0.763951,45.631498],[0.775643,45.667746],[0.77397,45.667812],[0.760468,45.670949],[0.744137,45.688262],[0.722051,45.69461],[0.713127,45.694042],[0.702599,45.687846],[0.694223,45.690494],[0.681304,45.687445],[0.676533,45.68841],[0.662086,45.687481],[0.653606,45.691034],[0.650294,45.697586],[0.637778,45.701982],[0.629742,45.71457],[0.633501,45.720496],[0.64553,45.718919],[0.650416,45.728021],[0.647616,45.730638],[0.652867,45.739378],[0.660713,45.739415],[0.665281,45.739401],[0.666527,45.745238],[0.666235,45.748196],[0.691144,45.760906],[0.695379,45.762119],[0.707649,45.761712],[0.711682,45.762856],[0.714765,45.769216],[0.70749,45.778248],[0.710515,45.802201],[0.718721,45.805583],[0.7426,45.804378],[0.752389,45.797106],[0.762003,45.796945],[0.768055,45.791552],[0.770227,45.788478],[0.783779,45.793475],[0.776974,45.802241],[0.783826,45.810583],[0.780808,45.81709],[0.782118,45.820404],[0.795978,45.829837],[0.818349,45.864053],[0.82098,45.866959],[0.818405,45.869162],[0.810678,45.868238],[0.8075,45.870023],[0.823749,45.880786],[0.827373,45.882748],[0.81354,45.896886],[0.815983,45.917292],[0.809017,45.921742],[0.809969,45.928319],[0.812111,45.93127],[0.821962,45.931568],[0.838047,45.923364],[0.847972,45.924049],[0.861148,45.919803],[0.884652,45.923831],[0.906305,45.937926],[0.916094,45.93717],[0.920972,45.937917],[0.92049,45.94352],[0.922516,45.945944],[0.92468,45.951209],[0.940886,45.959207],[0.943377,45.97307],[0.934634,45.976415],[0.934675,45.992207],[0.921525,45.996155],[0.919886,46.002232],[0.923782,46.008258],[0.909946,46.017543],[0.905615,46.018202],[0.894052,46.022699],[0.894327,46.025632],[0.886192,46.031732],[0.866517,46.016482],[0.858456,46.019618],[0.856265,46.02972],[0.849302,46.034488],[0.845226,46.036501],[0.821993,46.046362],[0.817909,46.047887],[0.816632,46.057565],[0.826105,46.065061],[0.819171,46.077396],[0.827127,46.086025],[0.827141,46.088278],[0.832253,46.093906],[0.832307,46.104339],[0.811893,46.122973],[0.818813,46.127169],[0.823433,46.128591],[0.837012,46.130886],[0.840116,46.133666],[0.845853,46.138369],[0.835748,46.146185],[0.832417,46.156346],[0.838205,46.165726],[0.831415,46.170218],[0.828706,46.172166],[0.833299,46.18064],[0.821161,46.185507],[0.813334,46.197689],[0.803917,46.199291],[0.800223,46.20148],[0.801413,46.207386],[0.796455,46.21129],[0.794748,46.214049],[0.799361,46.215499],[0.808399,46.228006],[0.843527,46.229208],[0.851551,46.23245],[0.851894,46.235961],[0.843549,46.238884],[0.848308,46.248261],[0.857724,46.249538],[0.863365,46.258715],[0.861633,46.261817],[0.8897,46.268548],[0.901248,46.287507],[0.929197,46.280956],[0.934185,46.281326],[0.935318,46.291246],[0.952797,46.285635],[0.97255,46.285529],[0.986247,46.281592],[0.990064,46.283776],[0.999812,46.282615],[1.003381,46.280227],[1.005887,46.280974],[1.003748,46.291169],[1.009553,46.296612],[1.009903,46.306662],[1.021178,46.313299],[1.028543,46.333297],[1.026141,46.340038],[1.027163,46.343443],[1.050965,46.35948],[1.050157,46.362781],[1.072731,46.359472],[1.077291,46.358549],[1.101408,46.362367],[1.109444,46.353835],[1.127761,46.348859],[1.129862,46.358937],[1.128579,46.362221],[1.149083,46.370275],[1.148515,46.377066],[1.155318,46.38604],[1.157006,46.389228],[1.173138,46.385218],[1.17728,46.383952],[1.180777,46.378594],[1.18868,46.376937],[1.192893,46.377409],[1.193499,46.380733],[1.208385,46.389146],[1.212952,46.388002],[1.213319,46.374407],[1.21797,46.368256],[1.238165,46.366201],[1.250656,46.376751],[1.26021,46.378716],[1.274572,46.376422],[1.279554,46.376488],[1.28302,46.372208],[1.310512,46.374375],[1.311035,46.381038],[1.321836,46.386566],[1.312648,46.393708],[1.340492,46.3997],[1.344678,46.401598],[1.359389,46.397722],[1.36255,46.395633],[1.373905,46.385861],[1.376609,46.383341],[1.39195,46.371067],[1.396571,46.371897],[1.395144,46.368644],[1.407003,46.362641],[1.411548,46.3495],[1.415191,46.347218],[1.43659,46.356133],[1.437093,46.363111],[1.445155,46.37193],[1.463704,46.37628],[1.479634,46.393974],[1.493588,46.397249],[1.496954,46.394636],[1.497998,46.397388],[1.500105,46.405503],[1.509319,46.412775],[1.510433,46.419211],[1.521022,46.425383],[1.525351,46.426654],[1.534714,46.424298],[1.543637,46.416415],[1.546253,46.395923],[1.555196,46.395893],[1.569633,46.405306],[1.574357,46.406383],[1.577489,46.409097],[1.592031,46.407602],[1.604991,46.421153],[1.609055,46.423166],[1.621236,46.419405],[1.614415,46.403373],[1.627341,46.389425],[1.64109,46.385591],[1.651332,46.392981],[1.65521,46.395116],[1.661634,46.404404],[1.679335,46.416426],[1.683603,46.418178],[1.7094,46.393346],[1.727841,46.38896],[1.72832,46.392406],[1.745905,46.404308],[1.750549,46.405593],[1.748767,46.412318],[1.759737,46.427487],[1.75527,46.437209],[1.758296,46.439917],[1.752658,46.445502],[1.750092,46.447743],[1.74759,46.450021],[1.784546,46.455077],[1.793694,46.45385],[1.798244,46.454906],[1.802116,46.448283],[1.816986,46.438496],[1.818455,46.431423],[1.84257,46.426807],[1.853747,46.433467],[1.878921,46.432375],[1.883956,46.43265],[1.88768,46.440989],[1.895331,46.438236],[1.899831,46.438567],[1.911556,46.443092],[1.919538,46.439962],[1.92287,46.434149],[1.926119,46.43191],[1.976055,46.439501],[1.981108,46.440285],[1.986597,46.435786],[1.990776,46.435229],[1.993082,46.430917],[2.026334,46.427216],[2.029415,46.424595],[2.058493,46.420876],[2.063459,46.421349],[2.072452,46.420108],[2.084371,46.411289],[2.088749,46.410342],[2.088623,46.410071],[2.10344,46.410765],[2.115972,46.421534],[2.140603,46.421101],[2.149206,46.423903],[2.167786,46.424076],[2.180482,46.423204],[2.184897,46.423154],[2.194075,46.425975],[2.197831,46.428298],[2.220649,46.423584],[2.248883,46.426259],[2.253658,46.425651],[2.256961,46.423133],[2.276283,46.421276],[2.281048,46.420405],[2.279481,46.41384],[2.282033,46.410821],[2.278416,46.408655],[2.284576,46.389621],[2.284789,46.386309],[2.286936,46.383306],[2.300942,46.381861],[2.312479,46.37606],[2.331406,46.378415],[2.335475,46.372324],[2.336464,46.369043],[2.337142,46.365742],[2.323262,46.365778],[2.309602,46.356592],[2.307829,46.347666],[2.30211,46.342364],[2.31162,46.340972],[2.314586,46.334641],[2.334254,46.325167],[2.357932,46.323367],[2.36621,46.311175],[2.37061,46.312722],[2.383785,46.329129],[2.38608,46.331969],[2.388164,46.331566],[2.415901,46.311351],[2.420657,46.310132],[2.415615,46.297932],[2.421374,46.285327],[2.426006,46.284531],[2.430241,46.290739],[2.438446,46.293661],[2.443032,46.294999],[2.470215,46.286348],[2.4803,46.278831],[2.47958,46.275388],[2.477773,46.268815],[2.487941,46.253354],[2.48892,46.250009],[2.50198,46.246978],[2.511509,46.239518],[2.516311,46.23944],[2.515203,46.238543],[2.521757,46.202767],[2.528303,46.194186],[2.526102,46.187819],[2.528499,46.184939],[2.541834,46.176294],[2.55459,46.174634],[2.559155,46.174409],[2.565379,46.143041],[2.563985,46.140812],[2.559208,46.138731],[2.559959,46.132277],[2.554641,46.120505],[2.550523,46.118958],[2.549019,46.112802],[2.550966,46.099608],[2.552621,46.093401],[2.550659,46.086441],[2.554677,46.076128],[2.573497,46.047006],[2.599212,46.035493],[2.602696,46.032875],[2.600116,46.0303],[2.601761,46.021058],[2.598287,46.015255],[2.598839,46.008656],[2.593557,45.99938],[2.596791,45.98665],[2.600091,45.98405],[2.610789,45.972732],[2.60683,45.966424],[2.602149,45.965525],[2.565828,45.956864],[2.568835,45.947141],[2.551637,45.941266],[2.553174,45.937967],[2.544087,45.930267],[2.542608,45.923417],[2.54389,45.916615],[2.55784,45.91296],[2.553196,45.911393],[2.549707,45.908903],[2.511845,45.887124],[2.502119,45.886082],[2.50158,45.875787],[2.492225,45.86403],[2.487571,45.864216],[2.47428,45.871161],[2.465267,45.871353],[2.465349,45.86821],[2.443424,45.866745],[2.442696,45.863508],[2.443406,45.857001],[2.449666,45.852223],[2.447823,45.84582],[2.438951,45.846497],[2.432688,45.839001],[2.426321,45.834304],[2.40211,45.837123],[2.38802,45.827376],[2.389333,45.824024],[2.430863,45.788617],[2.433456,45.773024],[2.434119,45.769857],[2.442298,45.761406],[2.450513,45.759429],[2.454754,45.761161],[2.46699,45.75578],[2.471269,45.749497],[2.485224,45.74686],[2.492126,45.73767],[2.521626,45.709487],[2.521281,45.695825],[2.52583,45.69435],[2.526321,45.685004],[2.528684,45.682196],[2.524542,45.681215],[2.514537,45.67214],[2.51449,45.665809],[2.526007,45.655674],[2.518942,45.64708],[2.51907,45.644271],[2.517926,45.639908],[2.513977,45.639441],[2.486287,45.640822],[2.482026,45.63521],[2.478432,45.607917],[2.474686,45.606549],[2.465476,45.601049],[2.463472,45.594682],[2.47428,45.579019],[2.488221,45.569016],[2.496294,45.556832],[2.507604,45.553353],[2.51588,45.553884],[2.516673,45.55115],[2.518148,45.543574],[2.51498,45.540994],[2.517911,45.531074],[2.514877,45.524893],[2.518362,45.518911],[2.509567,45.506806],[2.508997,45.50023],[2.510569,45.497743],[2.51389,45.49284],[2.508409,45.478508],[2.509307,45.472397],[2.503695,45.461684],[2.499701,45.460433],[2.501585,45.451517],[2.496878,45.447165],[2.496051,45.44383],[2.492279,45.42402],[2.487538,45.418172],[2.517482,45.402052],[2.522233,45.402603],[2.527255,45.390756],[2.52351,45.384807],[2.523372,45.381546],[2.520664,45.384335],[2.508434,45.380131],[2.485575,45.378795],[2.480204,45.369693],[2.476367,45.371566],[2.46839,45.382812],[2.441552,45.384527],[2.437851,45.387822],[2.435245,45.390186],[2.423124,45.396959],[2.418301,45.397358],[2.404119,45.398022],[2.396444,45.402168],[2.393588,45.408519],[2.380991,45.413538],[2.376968,45.414317],[2.361707,45.414987],[2.355135,45.415031],[2.35025,45.409609],[2.368799,45.386005],[2.363485,45.380302],[2.364622,45.37468],[2.364432,45.35775],[2.351509,45.347654],[2.358556,45.338987],[2.358813,45.335521],[2.353415,45.32979],[2.339866,45.325812],[2.335034,45.326423],[2.31693,45.321415],[2.306146,45.310012],[2.305283,45.30654],[2.290328,45.288473],[2.276134,45.288184],[2.273244,45.289669],[2.269695,45.289889],[2.267932,45.287185],[2.261734,45.283227],[2.26155,45.279768],[2.25783,45.269838],[2.244194,45.266343],[2.239008,45.260473],[2.238564,45.247206],[2.225317,45.243747],[2.221133,45.23755],[2.2023,45.226575],[2.203062,45.223159],[2.198876,45.221832],[2.191163,45.223055],[2.192536,45.219751],[2.191141,45.203443],[2.198415,45.19893],[2.201689,45.18198],[2.233009,45.167315],[2.230423,45.161921],[2.225778,45.160916],[2.211364,45.160464],[2.210419,45.147158],[2.20141,45.139152],[2.193102,45.135661],[2.178793,45.136304],[2.181103,45.133215],[2.187932,45.116714],[2.178862,45.104762],[2.17937,45.094375],[2.172776,45.081278],[2.168152,45.081073],[2.161012,45.085152],[2.143403,45.086315],[2.138101,45.081448],[2.133317,45.081807],[2.102112,45.062164],[2.100208,45.062032],[2.09837,45.059424],[2.095159,45.056039],[2.110262,45.038611],[2.116938,45.02197],[2.137833,45.008132],[2.140896,45.005409],[2.139895,45.001998],[2.133293,44.985748],[2.106208,44.981509],[2.093554,44.985711],[2.089121,44.984441],[2.08473,44.982991],[2.062914,44.976506]]]},"properties":{"nom":"Limousin","code":"74"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[6.260566,45.126848],[6.258496,45.123655],[6.245508,45.119204],[6.229263,45.106807],[6.243285,45.069948],[6.22008,45.065368],[6.218717,45.062001],[6.209563,45.042296],[6.208686,45.028336],[6.202925,45.022933],[6.203138,45.012447],[6.214373,45.00568],[6.256173,44.996219],[6.313282,45.003859],[6.318199,45.003866],[6.322681,44.997622],[6.316204,44.988209],[6.315992,44.981186],[6.328214,44.966348],[6.323254,44.956575],[6.326279,44.950014],[6.353422,44.942557],[6.358172,44.941575],[6.35491,44.927777],[6.357945,44.907292],[6.35466,44.8971],[6.35855,44.887322],[6.351997,44.882032],[6.35047,44.875131],[6.355364,44.854824],[6.352053,44.852842],[6.336319,44.848369],[6.319428,44.855139],[6.304353,44.872792],[6.294563,44.873984],[6.267095,44.869092],[6.248866,44.85256],[6.229098,44.852002],[6.196382,44.858977],[6.192556,44.856745],[6.169659,44.852391],[6.165014,44.853587],[6.157906,44.858286],[6.130449,44.862515],[6.113151,44.84553],[6.097322,44.838234],[6.093293,44.836373],[6.056502,44.815814],[6.052272,44.817174],[6.030211,44.838096],[6.016206,44.835288],[6.003416,44.820355],[5.979182,44.818594],[5.975607,44.816582],[5.949519,44.80453],[5.951206,44.801458],[5.977782,44.79099],[5.979498,44.784457],[5.980273,44.781184],[5.976427,44.779737],[5.953165,44.771314],[5.952215,44.768412],[5.951122,44.759621],[5.946886,44.76131],[5.937689,44.763428],[5.919572,44.75279],[5.902203,44.757994],[5.893139,44.755573],[5.885456,44.747287],[5.880592,44.746846],[5.867467,44.751007],[5.847986,44.751527],[5.841024,44.756373],[5.827093,44.759693],[5.826526,44.756203],[5.829361,44.742437],[5.81886,44.730651],[5.811319,44.714024],[5.80147,44.706779],[5.808962,44.705787],[5.812675,44.705008],[5.825458,44.70098],[5.829958,44.691244],[5.817189,44.681885],[5.813277,44.679904],[5.809249,44.678123],[5.801017,44.674828],[5.79062,44.653299],[5.785703,44.653135],[5.77112,44.654276],[5.753769,44.660529],[5.749155,44.651077],[5.725505,44.640087],[5.683495,44.649979],[5.659305,44.651049],[5.651551,44.655217],[5.649246,44.652903],[5.641715,44.651084],[5.640301,44.647821],[5.642842,44.624259],[5.649462,44.61938],[5.648367,44.616218],[5.646092,44.609922],[5.63703,44.60922],[5.627477,44.594972],[5.626319,44.586623],[5.621998,44.585861],[5.613898,44.571821],[5.607148,44.568351],[5.60649,44.566655],[5.597249,44.543274],[5.612473,44.535601],[5.614987,44.532776],[5.627653,44.534357],[5.642693,44.522064],[5.646326,44.520076],[5.66305,44.504947],[5.664504,44.501894],[5.659776,44.501972],[5.651244,44.499322],[5.633188,44.502097],[5.626329,44.497775],[5.623729,44.484065],[5.614847,44.471837],[5.603637,44.4655],[5.598968,44.466268],[5.5691,44.476578],[5.564687,44.475249],[5.56043,44.474303],[5.549714,44.479902],[5.546077,44.48212],[5.51103,44.491507],[5.506409,44.492018],[5.483134,44.49122],[5.474925,44.49426],[5.470847,44.499999],[5.466345,44.500343],[5.457843,44.498155],[5.458909,44.488521],[5.460352,44.486138],[5.461529,44.482824],[5.466822,44.473519],[5.460217,44.468587],[5.463836,44.452052],[5.464832,44.448652],[5.49549,44.438803],[5.495031,44.43096],[5.493615,44.428218],[5.489918,44.429022],[5.486044,44.428965],[5.483329,44.42609],[5.47757,44.420852],[5.472723,44.420943],[5.438582,44.433556],[5.433752,44.433168],[5.418397,44.42477],[5.425382,44.415611],[5.430035,44.414526],[5.441702,44.391681],[5.442622,44.381268],[5.431328,44.375331],[5.434954,44.369117],[5.439297,44.36795],[5.443922,44.367748],[5.462782,44.367237],[5.467049,44.354515],[5.468856,44.35135],[5.47857,44.351041],[5.490082,44.339965],[5.492944,44.337135],[5.50316,44.344279],[5.520927,44.349259],[5.53686,44.342102],[5.539953,44.332439],[5.549105,44.330588],[5.566543,44.33302],[5.571307,44.333476],[5.582972,44.332293],[5.586926,44.332038],[5.588187,44.332179],[5.62037,44.332948],[5.6238,44.335217],[5.628259,44.33394],[5.630209,44.32785],[5.613216,44.315772],[5.608318,44.306117],[5.616057,44.309382],[5.629322,44.301149],[5.633799,44.30088],[5.639778,44.296503],[5.635739,44.291638],[5.632601,44.289389],[5.632861,44.282845],[5.646372,44.270398],[5.646781,44.267091],[5.671683,44.274225],[5.67561,44.275886],[5.68449,44.268833],[5.686653,44.266069],[5.684206,44.263094],[5.674252,44.255862],[5.672644,44.24567],[5.673312,44.240169],[5.682025,44.23367],[5.681133,44.230693],[5.676723,44.213409],[5.685922,44.197181],[5.676037,44.191433],[5.651593,44.189577],[5.652288,44.186237],[5.643897,44.170526],[5.650428,44.166766],[5.682728,44.163486],[5.681266,44.160073],[5.678605,44.146098],[5.67406,44.147316],[5.645321,44.148185],[5.640667,44.149234],[5.631136,44.150579],[5.632026,44.157375],[5.638795,44.166281],[5.629773,44.17409],[5.616955,44.17862],[5.609327,44.190708],[5.605704,44.191145],[5.602053,44.191502],[5.594234,44.187481],[5.579657,44.188374],[5.575671,44.186316],[5.564374,44.170902],[5.568105,44.168725],[5.581188,44.155153],[5.570423,44.148616],[5.551333,44.149647],[5.551315,44.149242],[5.550089,44.145894],[5.542146,44.133264],[5.511089,44.123957],[5.507615,44.11776],[5.498788,44.115719],[5.493838,44.115436],[5.454716,44.119228],[5.451161,44.121135],[5.447571,44.136758],[5.443033,44.137949],[5.436695,44.14207],[5.435756,44.152249],[5.431059,44.151506],[5.422917,44.150039],[5.415834,44.154652],[5.39695,44.152338],[5.383241,44.155285],[5.383201,44.158797],[5.38665,44.179272],[5.381281,44.192382],[5.383188,44.199068],[5.384529,44.201191],[5.380358,44.202911],[5.37667,44.205134],[5.372391,44.206686],[5.35579,44.213599],[5.335726,44.204311],[5.317996,44.208794],[5.303624,44.208799],[5.303298,44.205393],[5.299429,44.206924],[5.291804,44.214647],[5.280668,44.219796],[5.276283,44.220995],[5.256509,44.230056],[5.252657,44.231135],[5.248536,44.23112],[5.244512,44.230707],[5.240446,44.230827],[5.23815,44.213233],[5.208775,44.214423],[5.175606,44.220866],[5.167913,44.225304],[5.163507,44.226355],[5.150007,44.235237],[5.151814,44.238308],[5.158751,44.242872],[5.161548,44.245591],[5.162089,44.248948],[5.160531,44.265619],[5.147458,44.269171],[5.150647,44.281877],[5.168429,44.292243],[5.170106,44.298738],[5.169743,44.302014],[5.172827,44.308211],[5.168839,44.314125],[5.166434,44.314857],[5.161976,44.313387],[5.153262,44.310154],[5.149503,44.300656],[5.109641,44.280367],[5.086471,44.283933],[5.076512,44.284086],[5.073922,44.286944],[5.060245,44.307614],[5.056515,44.305397],[5.0295,44.297894],[5.024772,44.296784],[5.01715,44.292242],[5.013072,44.291074],[5.002729,44.285374],[4.989594,44.285766],[4.985462,44.285517],[4.971688,44.279426],[4.967555,44.277726],[4.941528,44.26941],[4.932031,44.262455],[4.927221,44.262108],[4.903477,44.259478],[4.901283,44.264279],[4.896965,44.264408],[4.88025,44.261769],[4.876029,44.260266],[4.857094,44.245993],[4.853171,44.244366],[4.825342,44.228446],[4.820886,44.228889],[4.813448,44.232424],[4.812141,44.242062],[4.813118,44.245206],[4.812513,44.258019],[4.803999,44.269206],[4.805857,44.274839],[4.804479,44.277617],[4.802926,44.280793],[4.804563,44.303897],[4.799988,44.303549],[4.780956,44.317121],[4.771902,44.317537],[4.762995,44.3251],[4.758399,44.325326],[4.721663,44.326592],[4.717089,44.325907],[4.713017,44.320649],[4.679884,44.320692],[4.654887,44.328346],[4.650615,44.329806],[4.651542,44.326317],[4.653181,44.294807],[4.652364,44.291272],[4.649224,44.27036],[4.641729,44.274199],[4.637028,44.283669],[4.632679,44.284994],[4.620478,44.279944],[4.616625,44.277993],[4.609125,44.289249],[4.605465,44.29104],[4.602332,44.291923],[4.59898,44.291756],[4.574274,44.300746],[4.569998,44.299349],[4.557168,44.304168],[4.545631,44.319708],[4.547749,44.322874],[4.54911,44.324512],[4.531152,44.324097],[4.524167,44.328768],[4.514731,44.329114],[4.512014,44.3354],[4.506097,44.340252],[4.48291,44.3382],[4.464761,44.341675],[4.459866,44.341596],[4.451068,44.334096],[4.450793,44.330705],[4.448757,44.29671],[4.453212,44.297867],[4.450048,44.295226],[4.440422,44.283423],[4.435608,44.283324],[4.431983,44.289683],[4.40357,44.288177],[4.393313,44.2946],[4.391594,44.304759],[4.400063,44.324818],[4.40145,44.328167],[4.402347,44.335007],[4.391868,44.346573],[4.38705,44.347057],[4.38381,44.344352],[4.370171,44.340139],[4.325771,44.338324],[4.329257,44.332376],[4.318098,44.321752],[4.306334,44.316266],[4.288375,44.315019],[4.289584,44.295416],[4.288996,44.292146],[4.286338,44.289386],[4.273773,44.271752],[4.258901,44.264425],[4.245138,44.268075],[4.238182,44.273095],[4.234052,44.275059],[4.230778,44.277176],[4.216384,44.289039],[4.212951,44.291444],[4.186579,44.299735],[4.183913,44.302321],[4.177991,44.317742],[4.173247,44.317577],[4.161701,44.312154],[4.142868,44.313351],[4.141665,44.323959],[4.126752,44.337734],[4.113525,44.329127],[4.10942,44.330843],[4.106628,44.332356],[4.103861,44.333906],[4.073842,44.329026],[4.060144,44.320166],[4.055621,44.319021],[4.051452,44.317324],[4.048059,44.318949],[4.038705,44.327887],[4.035706,44.329851],[4.047919,44.334444],[4.053047,44.339751],[4.05116,44.346206],[4.053677,44.358794],[4.056718,44.361024],[4.05298,44.378696],[4.046711,44.382465],[4.043749,44.384554],[4.042393,44.394074],[4.059453,44.393911],[4.06844,44.40506],[4.054795,44.414788],[4.037813,44.420918],[4.045419,44.433495],[4.037103,44.445952],[4.023876,44.446301],[4.01666,44.450365],[4.015082,44.453476],[4.002603,44.458515],[3.998163,44.459798],[3.987125,44.474868],[3.986789,44.502429],[3.980284,44.515424],[3.97579,44.516742],[3.978998,44.521756],[3.967657,44.534856],[3.965692,44.537682],[3.964955,44.541002],[3.960906,44.553812],[3.95849,44.556894],[3.948774,44.572887],[3.944441,44.573662],[3.923567,44.571885],[3.921627,44.574962],[3.916821,44.58071],[3.918466,44.587368],[3.90654,44.592373],[3.90533,44.595462],[3.908084,44.607701],[3.906662,44.610963],[3.89414,44.615288],[3.894403,44.639018],[3.895766,44.642293],[3.894778,44.649963],[3.885373,44.657457],[3.871647,44.679336],[3.881767,44.690573],[3.884563,44.693441],[3.883529,44.696718],[3.869648,44.696963],[3.869246,44.700396],[3.870008,44.707206],[3.8631,44.712023],[3.863763,44.722326],[3.877097,44.735988],[3.862527,44.743872],[3.872496,44.75531],[3.89572,44.752874],[3.900111,44.762796],[3.908988,44.765461],[3.913657,44.766539],[3.921789,44.767678],[3.924918,44.769624],[3.924334,44.770979],[3.918029,44.778856],[3.936818,44.798093],[3.944475,44.821015],[3.945543,44.824346],[3.958782,44.828392],[3.963183,44.829759],[3.96732,44.820179],[3.978357,44.813905],[3.981885,44.811677],[3.987154,44.816384],[3.981451,44.825961],[3.98493,44.831693],[3.989593,44.831336],[3.998603,44.823575],[4.009087,44.834627],[4.016413,44.830392],[4.025664,44.831837],[4.028587,44.834619],[4.023795,44.843866],[4.020047,44.845863],[4.025204,44.851002],[4.028196,44.863013],[4.028735,44.866168],[4.03891,44.872764],[4.072916,44.869775],[4.077563,44.869811],[4.084478,44.869194],[4.087906,44.870331],[4.113166,44.878563],[4.117944,44.87811],[4.136896,44.874055],[4.156637,44.873977],[4.16616,44.881945],[4.179479,44.886514],[4.183014,44.905224],[4.188048,44.910194],[4.191688,44.912136],[4.190046,44.914189],[4.213073,44.931211],[4.216572,44.933577],[4.223854,44.962879],[4.231819,44.965745],[4.235239,44.967805],[4.256587,44.959876],[4.27942,44.966702],[4.294225,44.966801],[4.297662,44.968949],[4.314365,44.973166],[4.313234,44.979581],[4.30998,44.980935],[4.307317,44.985883],[4.292148,44.993912],[4.291981,45.004288],[4.297425,45.013527],[4.299684,45.020038],[4.318086,45.029934],[4.351543,45.02766],[4.35376,45.030569],[4.365133,45.035563],[4.379068,45.036175],[4.381644,45.042797],[4.37873,45.052865],[4.370244,45.056005],[4.360713,45.055392],[4.347737,45.065249],[4.346372,45.075045],[4.354941,45.077282],[4.358616,45.086252],[4.362829,45.087515],[4.359232,45.099572],[4.363868,45.100425],[4.371468,45.104384],[4.384585,45.10107],[4.38784,45.103623],[4.399854,45.108102],[4.397573,45.118082],[4.37257,45.128073],[4.376559,45.14436],[4.380955,45.143558],[4.397828,45.139484],[4.411159,45.140829],[4.429495,45.130393],[4.427843,45.117509],[4.436425,45.109456],[4.439755,45.10989],[4.442014,45.111689],[4.438931,45.120356],[4.452662,45.119125],[4.457286,45.118893],[4.457564,45.12224],[4.448414,45.129464],[4.443565,45.14218],[4.443347,45.145578],[4.448111,45.16196],[4.458157,45.168872],[4.459058,45.172156],[4.472579,45.179895],[4.480555,45.195459],[4.478555,45.198314],[4.476933,45.210673],[4.481328,45.215919],[4.488918,45.223419],[4.483135,45.236446],[4.479248,45.237912],[4.474656,45.238765],[4.46811,45.247245],[4.4569,45.253452],[4.454041,45.256263],[4.445481,45.259544],[4.434076,45.274704],[4.419655,45.275401],[4.415655,45.273597],[4.39131,45.263537],[4.387182,45.257536],[4.374922,45.261956],[4.371186,45.259886],[4.350182,45.277703],[4.359604,45.28536],[4.361268,45.291869],[4.369175,45.298977],[4.366258,45.301282],[4.352304,45.304163],[4.331653,45.318477],[4.36338,45.337485],[4.368006,45.337113],[4.359801,45.34938],[4.34053,45.36431],[4.336435,45.36616],[4.312929,45.370013],[4.308199,45.370987],[4.303818,45.362834],[4.295644,45.364036],[4.289755,45.35907],[4.271631,45.359764],[4.270101,45.362663],[4.270802,45.374921],[4.257172,45.371688],[4.244341,45.385277],[4.239555,45.384997],[4.236695,45.38683],[4.22656,45.389724],[4.222207,45.388186],[4.200862,45.382212],[4.180821,45.391701],[4.162102,45.388907],[4.157679,45.38762],[4.144443,45.384108],[4.147892,45.381543],[4.156688,45.369466],[4.149893,45.365231],[4.120395,45.368376],[4.109111,45.361797],[4.107809,45.354804],[4.101586,45.357882],[4.098516,45.359578],[4.080171,45.355524],[4.073682,45.338963],[4.070804,45.336055],[4.062761,45.339427],[4.054874,45.351803],[4.041548,45.354926],[4.037552,45.352964],[4.025162,45.348063],[4.020571,45.328194],[4.014976,45.33082],[4.014606,45.333633],[4.012813,45.336846],[4.002483,45.355994],[3.997708,45.356064],[3.987124,45.364983],[3.985593,45.371579],[3.978268,45.375696],[3.97343,45.375216],[3.961027,45.370271],[3.947613,45.37405],[3.938752,45.371396],[3.934501,45.361697],[3.918387,45.354365],[3.91933,45.341804],[3.909899,45.335119],[3.906268,45.333248],[3.905179,45.336184],[3.902781,45.338697],[3.902488,45.34186],[3.897408,45.357084],[3.892146,45.36985],[3.894516,45.383762],[3.890368,45.393665],[3.899085,45.40631],[3.898541,45.409818],[3.907081,45.412955],[3.911124,45.419352],[3.913895,45.422247],[3.918432,45.421327],[3.937312,45.429987],[3.959804,45.434164],[3.963258,45.436431],[3.96329,45.437511],[3.96286,45.440784],[3.960143,45.443446],[3.971058,45.44726],[3.975106,45.44827],[3.969091,45.45332],[3.973126,45.459399],[3.966383,45.468283],[3.967553,45.471551],[3.971637,45.477432],[3.983336,45.483219],[3.985629,45.48618],[3.983321,45.488875],[3.984007,45.495065],[3.972738,45.500134],[3.969342,45.501433],[3.96484,45.503219],[3.962229,45.505555],[3.958555,45.513791],[3.94643,45.543404],[3.954474,45.555827],[3.944619,45.562754],[3.941931,45.568999],[3.939503,45.571793],[3.935595,45.577238],[3.932168,45.579365],[3.909481,45.594112],[3.908775,45.597243],[3.904504,45.598862],[3.881466,45.602971],[3.86909,45.613046],[3.861186,45.614727],[3.860428,45.617984],[3.858678,45.624337],[3.835863,45.627138],[3.82364,45.632019],[3.820703,45.637408],[3.81931,45.640435],[3.817721,45.646696],[3.805428,45.656051],[3.802989,45.658734],[3.794532,45.673473],[3.792084,45.676516],[3.777585,45.690566],[3.775857,45.700178],[3.78238,45.71165],[3.779998,45.714062],[3.777015,45.719531],[3.780919,45.724673],[3.776168,45.72512],[3.76804,45.72867],[3.755838,45.74661],[3.745951,45.741173],[3.730822,45.753484],[3.727106,45.755579],[3.729002,45.75789],[3.730436,45.760357],[3.733108,45.761943],[3.737972,45.767782],[3.728469,45.776012],[3.700393,45.783556],[3.693391,45.788633],[3.695115,45.794701],[3.712631,45.801292],[3.726892,45.83027],[3.719124,45.850068],[3.720762,45.851129],[3.726607,45.859566],[3.72853,45.862687],[3.720282,45.861741],[3.7172,45.867641],[3.715524,45.870587],[3.734084,45.87127],[3.750312,45.884374],[3.754371,45.886031],[3.752984,45.889327],[3.740233,45.907764],[3.728991,45.91415],[3.726359,45.917066],[3.72135,45.922745],[3.694018,45.930732],[3.693892,45.930958],[3.69416,45.948166],[3.704505,45.955549],[3.701807,45.965724],[3.709612,45.97414],[3.742071,45.966692],[3.75064,45.97003],[3.755204,45.979816],[3.760021,45.980675],[3.781713,45.972792],[3.805153,45.98329],[3.80972,45.984662],[3.82322,45.988158],[3.828199,45.997073],[3.831736,45.999443],[3.832076,45.999665],[3.827342,46.000213],[3.824711,46.006599],[3.815876,46.0191],[3.807536,46.049778],[3.805606,46.053061],[3.818213,46.078032],[3.816589,46.084564],[3.819836,46.087044],[3.821294,46.090239],[3.818358,46.093007],[3.802831,46.110138],[3.793486,46.112203],[3.801251,46.13142],[3.790052,46.15339],[3.791627,46.156585],[3.806301,46.161345],[3.809736,46.163104],[3.806379,46.165757],[3.789791,46.187486],[3.788646,46.198039],[3.793571,46.207686],[3.785038,46.220443],[3.773353,46.227186],[3.76865,46.236989],[3.773322,46.242469],[3.778236,46.243056],[3.798801,46.239906],[3.8027,46.23851],[3.807612,46.257395],[3.845692,46.261811],[3.850553,46.262089],[3.868924,46.263662],[3.875376,46.272546],[3.882358,46.274707],[3.886954,46.273789],[3.899534,46.275914],[3.903775,46.274008],[3.906644,46.263791],[3.90876,46.260622],[3.907418,46.243892],[3.897392,46.237145],[3.897328,46.226907],[3.890132,46.214491],[3.905496,46.209227],[3.909456,46.207926],[3.917106,46.203884],[3.936212,46.206196],[3.960314,46.203401],[3.965168,46.202865],[3.97257,46.199731],[3.971497,46.189672],[3.980798,46.181892],[3.985073,46.172301],[3.988528,46.169857],[4.018044,46.172019],[4.027488,46.169593],[4.031149,46.171973],[4.046013,46.179222],[4.050073,46.180688],[4.056681,46.185859],[4.059972,46.188458],[4.067331,46.186813],[4.078635,46.190606],[4.082922,46.191025],[4.099435,46.197107],[4.103832,46.198442],[4.132853,46.180686],[4.133393,46.177321],[4.133847,46.177317],[4.138591,46.176666],[4.143322,46.175997],[4.178133,46.173687],[4.186752,46.176633],[4.184851,46.179868],[4.18493,46.190124],[4.189229,46.188639],[4.206215,46.194494],[4.215845,46.187222],[4.219558,46.185102],[4.223365,46.180189],[4.224993,46.177632],[4.226578,46.178371],[4.232491,46.17955],[4.240916,46.186897],[4.255016,46.18713],[4.258146,46.184546],[4.261911,46.175175],[4.253409,46.167343],[4.24866,46.167107],[4.253192,46.157817],[4.277541,46.15661],[4.282432,46.156816],[4.290281,46.169317],[4.298212,46.173055],[4.30287,46.174325],[4.309176,46.17292],[4.311831,46.171196],[4.31641,46.171305],[4.326397,46.181708],[4.326643,46.184894],[4.334903,46.181744],[4.346643,46.187261],[4.358511,46.18268],[4.36632,46.185423],[4.370806,46.184333],[4.373498,46.187246],[4.363353,46.198563],[4.374769,46.209512],[4.388416,46.213084],[4.38808,46.219789],[4.386217,46.225674],[4.385568,46.246162],[4.388286,46.247912],[4.396835,46.266523],[4.396451,46.271841],[4.396364,46.274544],[4.398757,46.284322],[4.407092,46.292739],[4.405814,46.296061],[4.410616,46.295344],[4.424387,46.296298],[4.427039,46.30283],[4.437717,46.296284],[4.439452,46.293056],[4.453248,46.296438],[4.462188,46.294018],[4.475428,46.284399],[4.483775,46.287065],[4.488465,46.287994],[4.501484,46.270072],[4.504001,46.267139],[4.542343,46.271967],[4.54645,46.273919],[4.54809,46.283228],[4.555437,46.29126],[4.557841,46.293993],[4.570273,46.293029],[4.572161,46.289977],[4.572725,46.277045],[4.582672,46.270215],[4.586527,46.26836],[4.614456,46.2664],[4.618565,46.264793],[4.620162,46.277956],[4.617019,46.280622],[4.635777,46.291918],[4.638725,46.301423],[4.653189,46.303177],[4.664478,46.296618],[4.679741,46.304518],[4.693436,46.302325],[4.69295,46.297099],[4.693884,46.294536],[4.703249,46.284841],[4.70748,46.284705],[4.710054,46.278947],[4.707417,46.269764],[4.700696,46.267477],[4.694068,46.271512],[4.68457,46.265934],[4.680571,46.267218],[4.681228,46.257301],[4.690873,46.249646],[4.705377,46.250961],[4.708899,46.248584],[4.720694,46.244263],[4.736181,46.233202],[4.733016,46.227512],[4.720018,46.228502],[4.731773,46.213219],[4.735682,46.211701],[4.721501,46.200126],[4.721489,46.196839],[4.720362,46.193577],[4.724376,46.184311],[4.733118,46.177792],[4.75959,46.173603],[4.763197,46.175699],[4.771584,46.175641],[4.775494,46.177093],[4.780213,46.176677],[4.780203,46.186747],[4.792327,46.200968],[4.792735,46.20751],[4.79428,46.217051],[4.79551,46.220139],[4.797847,46.224543],[4.800741,46.229658],[4.808184,46.238106],[4.810798,46.251233],[4.810817,46.254547],[4.811341,46.260583],[4.816488,46.2654],[4.824739,46.272934],[4.826332,46.275907],[4.832926,46.299436],[4.839228,46.308684],[4.841217,46.311805],[4.849389,46.323219],[4.851423,46.326078],[4.853156,46.329247],[4.852652,46.342793],[4.85239,46.346175],[4.850912,46.352864],[4.856454,46.365123],[4.85853,46.368017],[4.86312,46.373256],[4.865691,46.375763],[4.86776,46.378062],[4.873919,46.384987],[4.88495,46.399883],[4.887496,46.402732],[4.889934,46.417121],[4.891047,46.424056],[4.891532,46.427525],[4.891523,46.430291],[4.891797,46.438555],[4.892887,46.442572],[4.894444,46.445374],[4.912497,46.459323],[4.914448,46.462163],[4.915024,46.477106],[4.91453,46.480113],[4.914522,46.481374],[4.915896,46.488188],[4.925241,46.496155],[4.927682,46.499168],[4.928837,46.501589],[4.929616,46.50408],[4.931736,46.509791],[4.933592,46.512453],[4.934745,46.513325],[4.947245,46.514455],[4.947369,46.508427],[4.952797,46.50447],[4.962656,46.506553],[4.970038,46.514091],[4.980216,46.515203],[5.006369,46.509703],[5.010594,46.51107],[5.012448,46.502967],[5.014233,46.50045],[5.0509,46.48625],[5.054751,46.484281],[5.071449,46.485817],[5.095259,46.497976],[5.112817,46.492959],[5.129066,46.500918],[5.13403,46.501447],[5.141168,46.508484],[5.164303,46.504616],[5.165839,46.517675],[5.181672,46.509979],[5.201221,46.507821],[5.203565,46.504803],[5.200343,46.502568],[5.209481,46.492105],[5.206685,46.486177],[5.213031,46.481541],[5.21528,46.47176],[5.215064,46.468359],[5.224698,46.468352],[5.233384,46.460454],[5.236259,46.457785],[5.243864,46.460456],[5.248004,46.459374],[5.256271,46.451879],[5.269653,46.450226],[5.273677,46.448588],[5.310561,46.446775],[5.321727,46.428955],[5.308145,46.420475],[5.312333,46.416021],[5.307817,46.41486],[5.298806,46.415528],[5.309146,46.410257],[5.334092,46.399723],[5.348116,46.399417],[5.36352,46.390388],[5.367105,46.388692],[5.370296,46.386031],[5.377881,46.382324],[5.375164,46.379714],[5.365075,46.373077],[5.363472,46.37002],[5.376474,46.361669],[5.375761,46.358431],[5.374637,46.355329],[5.373462,46.352236],[5.402729,46.336119],[5.401686,46.332799],[5.404352,46.319184],[5.404041,46.315668],[5.404054,46.314767],[5.406583,46.309912],[5.41024,46.309105],[5.423534,46.347732],[5.435942,46.318468],[5.437146,46.315127],[5.454476,46.317998],[5.460892,46.322472],[5.46518,46.323542],[5.471469,46.316532],[5.475305,46.315385],[5.473218,46.308926],[5.466531,46.293242],[5.459001,46.290531],[5.457672,46.276848],[5.471308,46.26721],[5.475362,46.265221],[5.499595,46.268205],[5.502609,46.270211],[5.507498,46.265481],[5.51137,46.26436],[5.539301,46.268903],[5.559458,46.283515],[5.561577,46.286576],[5.564674,46.292767],[5.582606,46.293236],[5.587251,46.292509],[5.597891,46.297898],[5.60215,46.30681],[5.604641,46.309438],[5.605673,46.31364],[5.612518,46.326556],[5.635057,46.333308],[5.637458,46.336442],[5.646092,46.34281],[5.649207,46.337296],[5.649798,46.334192],[5.645285,46.324791],[5.668481,46.323899],[5.68023,46.318433],[5.683316,46.315874],[5.684582,46.310934],[5.714553,46.30807],[5.718978,46.294287],[5.71596,46.280375],[5.721538,46.263177],[5.725181,46.260693],[5.72966,46.261928],[5.733675,46.263769],[5.761568,46.26715],[5.766045,46.26833],[5.813575,46.263597],[5.81828,46.262868],[5.826262,46.261715],[5.850659,46.261701],[5.86085,46.268771],[5.867694,46.26822],[5.869187,46.264984],[5.891985,46.2836],[5.894627,46.286614],[5.909198,46.283945],[5.92187,46.311942],[5.925908,46.313766],[5.937319,46.309769],[5.941531,46.309264],[5.944004,46.31221],[5.975139,46.350293],[5.984117,46.362656],[6.013384,46.375997],[6.03102,46.388101],[6.052807,46.411409],[6.056984,46.41619],[6.060575,46.417509],[6.064008,46.416227],[6.097526,46.408284],[6.106503,46.399839],[6.120401,46.395955],[6.147124,46.379828],[6.160984,46.376552],[6.166676,46.370744],[6.166736,46.364145],[6.155084,46.348797],[6.138661,46.336571],[6.137695,46.333119],[6.126191,46.320088],[6.124378,46.317263],[6.119788,46.311126],[6.119099,46.307711],[6.119469,46.295283],[6.105303,46.287352],[6.102366,46.284846],[6.112992,46.268046],[6.116039,46.265656],[6.120108,46.263625],[6.122535,46.253339],[6.115883,46.244428],[6.103464,46.238658],[6.088144,46.247041],[6.08338,46.246396],[6.07048,46.241743],[6.061954,46.244884],[6.046946,46.231941],[6.042401,46.233099],[6.038615,46.235317],[6.029934,46.235909],[6.016684,46.231819],[6.012598,46.230017],[6.002932,46.222577],[5.993818,46.220438],[5.992718,46.217169],[5.974412,46.214748],[5.964201,46.198029],[5.963676,46.19697],[5.990045,46.187466],[5.993657,46.181379],[5.990267,46.174881],[5.98217,46.17221],[5.975425,46.159302],[5.973349,46.156167],[5.964701,46.14466],[5.966498,46.138341],[5.959563,46.13426],[5.956063,46.132089],[5.957292,46.127948],[5.960622,46.130105],[5.973524,46.131886],[5.980364,46.13587],[5.982528,46.138958],[5.993515,46.14385],[6.017932,46.142294],[6.035353,46.136161],[6.047817,46.140937],[6.047841,46.144414],[6.052099,46.150563],[6.091658,46.150782],[6.097824,46.145387],[6.126625,46.140461],[6.131101,46.140518],[6.135412,46.141327],[6.13829,46.143816],[6.146555,46.145957],[6.148376,46.149223],[6.175299,46.158261],[6.188334,46.168097],[6.186311,46.174796],[6.186108,46.178217],[6.209952,46.192606],[6.214252,46.193791],[6.226392,46.202045],[6.230116,46.203561],[6.233843,46.206006],[6.248983,46.206097],[6.276374,46.215242],[6.290518,46.223324],[6.294471,46.224931],[6.309154,46.242494],[6.306376,46.251984],[6.308534,46.255021],[6.303604,46.255363],[6.294917,46.257814],[6.294883,46.264592],[6.291442,46.262042],[6.2782,46.251618],[6.26922,46.248524],[6.2645,46.24975],[6.261336,46.252464],[6.238823,46.275322],[6.238651,46.282303],[6.251104,46.28822],[6.251881,46.291668],[6.245576,46.303285],[6.241373,46.304558],[6.250225,46.308001],[6.258155,46.324753],[6.269367,46.336689],[6.277334,46.349123],[6.287331,46.356946],[6.291412,46.358991],[6.303395,46.366224],[6.311512,46.367611],[6.315959,46.368807],[6.32689,46.371066],[6.345247,46.369555],[6.349113,46.367405],[6.359372,46.350033],[6.362591,46.347775],[6.390778,46.341],[6.39922,46.349734],[6.404349,46.351213],[6.413939,46.359281],[6.438449,46.362339],[6.442914,46.363979],[6.447545,46.365561],[6.474921,46.375519],[6.481418,46.381008],[6.48601,46.394604],[6.513072,46.404788],[6.517967,46.404529],[6.544206,46.395055],[6.568242,46.398235],[6.573185,46.399316],[6.61402,46.403284],[6.616792,46.403422],[6.619571,46.403478],[6.624282,46.404374],[6.638672,46.405412],[6.643614,46.405651],[6.711861,46.407615],[6.717014,46.40788],[6.757506,46.402605],[6.761223,46.400193],[6.790015,46.393154],[6.805192,46.394064],[6.801821,46.388317],[6.806129,46.380041],[6.800903,46.375131],[6.791873,46.367201],[6.782236,46.366638],[6.771278,46.360141],[6.772193,46.350185],[6.774674,46.347281],[6.786918,46.332541],[6.796401,46.330792],[6.801136,46.321033],[6.822673,46.312685],[6.831572,46.30044],[6.845967,46.29094],[6.850886,46.29025],[6.855357,46.291866],[6.863737,46.27978],[6.852748,46.25317],[6.840407,46.247132],[6.834025,46.237656],[6.822211,46.231265],[6.821128,46.224305],[6.803564,46.203131],[6.806982,46.196463],[6.810784,46.180198],[6.807337,46.177843],[6.793523,46.16426],[6.790422,46.154311],[6.797237,46.138271],[6.812353,46.13203],[6.815212,46.12932],[6.834736,46.132241],[6.852683,46.126701],[6.897142,46.123001],[6.893169,46.105755],[6.885097,46.096818],[6.890051,46.07657],[6.880577,46.068627],[6.873114,46.055557],[6.872633,46.052048],[6.887971,46.043905],[6.909534,46.051998],[6.922089,46.062798],[6.936209,46.064274],[6.937976,46.054241],[6.951127,46.049645],[6.960682,46.033641],[6.962904,46.030534],[6.981157,46.018759],[6.986806,46.005107],[7.009037,45.997145],[7.02013,45.981306],[7.012909,45.972564],[7.012762,45.965762],[7.036102,45.952561],[7.04214,45.928288],[7.042049,45.924766],[7.038827,45.92205],[7.021333,45.914793],[7.008919,45.90344],[7.006282,45.900387],[7.004187,45.886315],[7.002929,45.882852],[6.996492,45.873143],[6.992852,45.870648],[6.954902,45.860524],[6.937725,45.847501],[6.908472,45.842693],[6.879522,45.847974],[6.873663,45.842432],[6.869982,45.828395],[6.862576,45.82909],[6.861388,45.832566],[6.857232,45.834547],[6.853841,45.837151],[6.840125,45.840035],[6.821585,45.836995],[6.804669,45.816714],[6.807072,45.813784],[6.812006,45.807956],[6.811691,45.797418],[6.803877,45.788577],[6.802517,45.778372],[6.807236,45.747416],[6.815909,45.738928],[6.809395,45.725878],[6.827512,45.70515],[6.840253,45.699992],[6.845514,45.694052],[6.846121,45.690569],[6.872044,45.680304],[6.901363,45.67912],[6.905411,45.677069],[6.906332,45.670085],[6.902143,45.663748],[6.914955,45.660914],[6.916154,45.654778],[6.914833,45.65174],[6.933225,45.646618],[6.966743,45.653862],[6.976747,45.646197],[6.999126,45.638172],[6.997339,45.631401],[6.985208,45.620165],[6.978895,45.588642],[6.994946,45.571365],[6.990544,45.561397],[6.995077,45.543978],[6.992015,45.533529],[7.004775,45.51854],[7.000779,45.508305],[6.999974,45.504791],[7.02166,45.496874],[7.051051,45.49625],[7.056115,45.490639],[7.048163,45.482333],[7.046239,45.479148],[7.049574,45.47268],[7.078324,45.473279],[7.10181,45.468518],[7.100943,45.455051],[7.110218,45.447075],[7.114687,45.437551],[7.113516,45.434195],[7.150285,45.423046],[7.184202,45.403453],[7.177592,45.390111],[7.163693,45.380178],[7.159861,45.359581],[7.135646,45.347837],[7.13268,45.330625],[7.124126,45.327325],[7.114352,45.328948],[7.110695,45.326512],[7.111696,45.316179],[7.117734,45.310555],[7.122003,45.296774],[7.135251,45.281804],[7.13094,45.271891],[7.135106,45.254561],[7.126119,45.24612],[7.111395,45.244634],[7.083564,45.224683],[7.075911,45.212142],[7.066401,45.211344],[7.054389,45.222618],[7.05118,45.22534],[7.041505,45.224582],[7.025445,45.216831],[7.001326,45.217419],[6.990072,45.210781],[6.966272,45.206472],[6.964836,45.196678],[6.953926,45.189727],[6.953579,45.18286],[6.947093,45.178023],[6.942909,45.176188],[6.945159,45.173034],[6.892974,45.165654],[6.886166,45.156272],[6.895383,45.140093],[6.854264,45.128622],[6.796843,45.152967],[6.791896,45.15328],[6.769526,45.159338],[6.747221,45.140809],[6.738745,45.137479],[6.711286,45.14476],[6.706565,45.143673],[6.678693,45.137628],[6.670986,45.124812],[6.65002,45.115712],[6.63515,45.115306],[6.629987,45.109327],[6.626688,45.111841],[6.61353,45.120957],[6.589941,45.119196],[6.576531,45.123097],[6.57357,45.120596],[6.563908,45.113821],[6.561367,45.107314],[6.540052,45.09953],[6.530287,45.099065],[6.510423,45.109003],[6.507778,45.105994],[6.487117,45.096134],[6.481725,45.090453],[6.488729,45.070181],[6.487082,45.056407],[6.482138,45.056246],[6.453124,45.052373],[6.43487,45.062996],[6.420353,45.061217],[6.406143,45.064248],[6.396888,45.061989],[6.364878,45.070171],[6.367174,45.073256],[6.374601,45.082295],[6.362713,45.105032],[6.334233,45.122939],[6.332876,45.119618],[6.317031,45.111934],[6.293342,45.108636],[6.276888,45.114933],[6.260566,45.126848]],[[4.89291,44.364827],[4.892057,44.361457],[4.873588,44.351022],[4.869527,44.345076],[4.87911,44.345372],[4.891418,44.340065],[4.895328,44.338061],[4.882096,44.325323],[4.890664,44.313723],[4.891209,44.307114],[4.889463,44.304019],[4.917099,44.308502],[4.921836,44.308797],[4.983551,44.295032],[4.987018,44.292719],[4.992205,44.312623],[4.997298,44.318375],[5.013335,44.325655],[5.009006,44.333766],[5.021478,44.344352],[5.025072,44.360998],[5.053313,44.364833],[5.066647,44.374191],[5.07032,44.376446],[5.072028,44.378512],[5.070882,44.383225],[5.0476,44.38212],[5.032759,44.390896],[5.018616,44.392588],[5.013498,44.405441],[5.017716,44.407138],[5.01876,44.415979],[5.013923,44.415627],[5.006196,44.411716],[4.98861,44.4232],[4.984073,44.423183],[4.970846,44.430129],[4.959697,44.42027],[4.955663,44.420251],[4.951931,44.419147],[4.948766,44.416637],[4.918515,44.407785],[4.910162,44.395153],[4.911091,44.384728],[4.907085,44.374631],[4.903708,44.372763],[4.893313,44.367873],[4.89291,44.364827]]]},"properties":{"nom":"Rh\u00f4ne-Alpes","code":"82"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[2.565379,46.143041],[2.559155,46.174409],[2.55459,46.174634],[2.541834,46.176294],[2.528499,46.184939],[2.526102,46.187819],[2.528303,46.194186],[2.521757,46.202767],[2.515203,46.238543],[2.516311,46.23944],[2.511509,46.239518],[2.50198,46.246978],[2.48892,46.250009],[2.487941,46.253354],[2.477773,46.268815],[2.47958,46.275388],[2.4803,46.278831],[2.470215,46.286348],[2.443032,46.294999],[2.438446,46.293661],[2.430241,46.290739],[2.426006,46.284531],[2.421374,46.285327],[2.415615,46.297932],[2.420657,46.310132],[2.415901,46.311351],[2.388164,46.331566],[2.38608,46.331969],[2.383785,46.329129],[2.37061,46.312722],[2.36621,46.311175],[2.357932,46.323367],[2.334254,46.325167],[2.314586,46.334641],[2.31162,46.340972],[2.30211,46.342364],[2.307829,46.347666],[2.309602,46.356592],[2.323262,46.365778],[2.337142,46.365742],[2.336464,46.369043],[2.335475,46.372324],[2.331406,46.378415],[2.312479,46.37606],[2.300942,46.381861],[2.286936,46.383306],[2.284789,46.386309],[2.284576,46.389621],[2.278416,46.408655],[2.282033,46.410821],[2.279481,46.41384],[2.281048,46.420405],[2.278432,46.427215],[2.284666,46.45136],[2.305465,46.475433],[2.313097,46.470769],[2.316996,46.468505],[2.321409,46.46891],[2.330814,46.478862],[2.32963,46.481826],[2.324969,46.487742],[2.334315,46.499566],[2.363697,46.517239],[2.3683,46.518435],[2.384099,46.518296],[2.414634,46.520833],[2.427808,46.525979],[2.437939,46.525282],[2.446148,46.521044],[2.478655,46.530724],[2.482929,46.532697],[2.496526,46.531155],[2.500235,46.522149],[2.50976,46.523451],[2.520282,46.529925],[2.529408,46.527801],[2.532682,46.521701],[2.536652,46.519709],[2.540403,46.521921],[2.55179,46.528405],[2.570133,46.533409],[2.576552,46.538521],[2.613262,46.554607],[2.605668,46.563288],[2.609356,46.569613],[2.60834,46.57295],[2.598461,46.59531],[2.583888,46.594592],[2.57738,46.606733],[2.568383,46.609392],[2.572922,46.610454],[2.588657,46.616949],[2.584599,46.626362],[2.596325,46.636723],[2.5931,46.646581],[2.588997,46.648097],[2.566995,46.652482],[2.570439,46.656808],[2.570551,46.659267],[2.606155,46.669299],[2.60704,46.662639],[2.623914,46.656627],[2.63156,46.668798],[2.631838,46.672203],[2.621638,46.679274],[2.623478,46.689311],[2.628221,46.690308],[2.648081,46.688957],[2.656179,46.697355],[2.674262,46.702279],[2.677795,46.704612],[2.676175,46.710839],[2.688603,46.721183],[2.698463,46.721065],[2.703898,46.725599],[2.704833,46.739036],[2.730642,46.747995],[2.734528,46.746221],[2.743797,46.730548],[2.755115,46.72391],[2.758521,46.717659],[2.771375,46.72126],[2.77475,46.718953],[2.782748,46.722462],[2.793416,46.733557],[2.822561,46.735415],[2.827485,46.735333],[2.841168,46.727321],[2.845727,46.726616],[2.843818,46.739228],[2.844634,46.742362],[2.875346,46.760642],[2.880422,46.77003],[2.894344,46.774167],[2.898967,46.775675],[2.910924,46.781348],[2.908913,46.784471],[2.912941,46.790192],[2.936099,46.795393],[2.93989,46.793189],[2.944387,46.792993],[2.952503,46.792682],[2.959915,46.803877],[2.979899,46.803423],[2.996604,46.79696],[3.01614,46.799831],[3.027584,46.793373],[3.032068,46.794911],[3.036264,46.775966],[3.037546,46.772832],[3.04955,46.757719],[3.079605,46.739964],[3.083478,46.737773],[3.100537,46.734293],[3.104673,46.733182],[3.129056,46.727493],[3.143329,46.712737],[3.146988,46.710211],[3.149247,46.708218],[3.167414,46.690968],[3.199366,46.6795],[3.204426,46.678752],[3.226936,46.690001],[3.229528,46.696461],[3.234217,46.69737],[3.259773,46.707661],[3.268544,46.715924],[3.278417,46.716324],[3.282979,46.714971],[3.283373,46.71515],[3.298052,46.715879],[3.304499,46.702842],[3.318052,46.688443],[3.337856,46.685253],[3.352532,46.686596],[3.356914,46.688419],[3.366416,46.690676],[3.385292,46.713764],[3.390052,46.714892],[3.414609,46.711105],[3.434214,46.712221],[3.430011,46.698829],[3.436015,46.693548],[3.445923,46.69225],[3.452896,46.687333],[3.452928,46.676996],[3.4474,46.67139],[3.443455,46.662338],[3.45409,46.654841],[3.45571,46.651466],[3.474191,46.653535],[3.483132,46.651678],[3.486669,46.653806],[3.486834,46.660559],[3.520472,46.685236],[3.529451,46.688203],[3.534364,46.687523],[3.542815,46.67946],[3.550406,46.682395],[3.554262,46.684601],[3.559853,46.689985],[3.5489,46.705553],[3.54791,46.718956],[3.547722,46.722415],[3.564076,46.716113],[3.568891,46.71591],[3.573043,46.720994],[3.576978,46.722911],[3.580594,46.716977],[3.595819,46.725291],[3.578083,46.74927],[3.592562,46.762801],[3.596399,46.764988],[3.601826,46.752128],[3.626404,46.752267],[3.629424,46.749459],[3.628874,46.74613],[3.622802,46.740896],[3.637681,46.724192],[3.637642,46.70748],[3.651138,46.704235],[3.654644,46.691069],[3.655468,46.68775],[3.671974,46.68191],[3.670584,46.672094],[3.692296,46.6636],[3.698335,46.65826],[3.699364,46.654886],[3.699613,46.651913],[3.703416,46.64763],[3.704613,46.645201],[3.712708,46.633327],[3.716206,46.630973],[3.723234,46.622771],[3.713444,46.610721],[3.719594,46.605442],[3.734557,46.60378],[3.737848,46.58728],[3.739016,46.58386],[3.740264,46.578593],[3.740437,46.575927],[3.743285,46.566462],[3.741006,46.560219],[3.737008,46.556075],[3.73427,46.554364],[3.732679,46.547747],[3.741847,46.539547],[3.755776,46.536151],[3.770248,46.538954],[3.777916,46.531257],[3.780666,46.528366],[3.794429,46.527344],[3.807423,46.519382],[3.811746,46.520586],[3.837014,46.531606],[3.846291,46.524009],[3.840126,46.518454],[3.845038,46.513086],[3.845819,46.512937],[3.855143,46.515317],[3.863828,46.512676],[3.860414,46.495565],[3.865262,46.489648],[3.887973,46.48236],[3.897341,46.482053],[3.898791,46.485409],[3.90295,46.491725],[3.911475,46.495494],[3.916492,46.496102],[3.934151,46.490952],[3.953475,46.491792],[3.957963,46.490476],[3.952282,46.478727],[3.960554,46.477658],[3.965148,46.477997],[3.97434,46.479567],[4.000963,46.462011],[4.001541,46.458755],[3.997519,46.452577],[4.002835,46.440535],[3.989353,46.436951],[3.995438,46.428488],[3.995311,46.425103],[3.991706,46.423081],[3.984118,46.419661],[3.984633,46.416478],[3.987989,46.407651],[3.977569,46.397871],[3.98086,46.388351],[3.98187,46.385163],[3.991544,46.370419],[3.988308,46.354021],[3.98739,46.350751],[3.987605,46.347507],[3.985653,46.328685],[3.994357,46.327655],[4.005259,46.327406],[3.985659,46.3175],[3.971745,46.320726],[3.947644,46.319029],[3.947853,46.30561],[3.947858,46.303673],[3.931632,46.296225],[3.901973,46.293158],[3.892627,46.284857],[3.899534,46.275914],[3.886954,46.273789],[3.882358,46.274707],[3.875376,46.272546],[3.868924,46.263662],[3.850553,46.262089],[3.845692,46.261811],[3.807612,46.257395],[3.8027,46.23851],[3.798801,46.239906],[3.778236,46.243056],[3.773322,46.242469],[3.76865,46.236989],[3.773353,46.227186],[3.785038,46.220443],[3.793571,46.207686],[3.788646,46.198039],[3.789791,46.187486],[3.806379,46.165757],[3.809736,46.163104],[3.806301,46.161345],[3.791627,46.156585],[3.790052,46.15339],[3.801251,46.13142],[3.793486,46.112203],[3.802831,46.110138],[3.818358,46.093007],[3.821294,46.090239],[3.819836,46.087044],[3.816589,46.084564],[3.818213,46.078032],[3.805606,46.053061],[3.807536,46.049778],[3.815876,46.0191],[3.824711,46.006599],[3.827342,46.000213],[3.832076,45.999665],[3.831736,45.999443],[3.828199,45.997073],[3.82322,45.988158],[3.80972,45.984662],[3.805153,45.98329],[3.781713,45.972792],[3.760021,45.980675],[3.755204,45.979816],[3.75064,45.97003],[3.742071,45.966692],[3.709612,45.97414],[3.701807,45.965724],[3.704505,45.955549],[3.69416,45.948166],[3.693892,45.930958],[3.694018,45.930732],[3.72135,45.922745],[3.726359,45.917066],[3.728991,45.91415],[3.740233,45.907764],[3.752984,45.889327],[3.754371,45.886031],[3.750312,45.884374],[3.734084,45.87127],[3.715524,45.870587],[3.7172,45.867641],[3.720282,45.861741],[3.72853,45.862687],[3.726607,45.859566],[3.720762,45.851129],[3.719124,45.850068],[3.726892,45.83027],[3.712631,45.801292],[3.695115,45.794701],[3.693391,45.788633],[3.700393,45.783556],[3.728469,45.776012],[3.737972,45.767782],[3.733108,45.761943],[3.730436,45.760357],[3.729002,45.75789],[3.727106,45.755579],[3.730822,45.753484],[3.745951,45.741173],[3.755838,45.74661],[3.76804,45.72867],[3.776168,45.72512],[3.780919,45.724673],[3.777015,45.719531],[3.779998,45.714062],[3.78238,45.71165],[3.775857,45.700178],[3.777585,45.690566],[3.792084,45.676516],[3.794532,45.673473],[3.802989,45.658734],[3.805428,45.656051],[3.817721,45.646696],[3.81931,45.640435],[3.820703,45.637408],[3.82364,45.632019],[3.835863,45.627138],[3.858678,45.624337],[3.860428,45.617984],[3.861186,45.614727],[3.86909,45.613046],[3.881466,45.602971],[3.904504,45.598862],[3.908775,45.597243],[3.909481,45.594112],[3.932168,45.579365],[3.935595,45.577238],[3.939503,45.571793],[3.941931,45.568999],[3.944619,45.562754],[3.954474,45.555827],[3.94643,45.543404],[3.958555,45.513791],[3.962229,45.505555],[3.96484,45.503219],[3.969342,45.501433],[3.972738,45.500134],[3.984007,45.495065],[3.983321,45.488875],[3.985629,45.48618],[3.983336,45.483219],[3.971637,45.477432],[3.967553,45.471551],[3.966383,45.468283],[3.973126,45.459399],[3.969091,45.45332],[3.975106,45.44827],[3.971058,45.44726],[3.960143,45.443446],[3.96286,45.440784],[3.96329,45.437511],[3.963258,45.436431],[3.959804,45.434164],[3.937312,45.429987],[3.918432,45.421327],[3.913895,45.422247],[3.911124,45.419352],[3.907081,45.412955],[3.898541,45.409818],[3.899085,45.40631],[3.890368,45.393665],[3.894516,45.383762],[3.892146,45.36985],[3.897408,45.357084],[3.902488,45.34186],[3.902781,45.338697],[3.905179,45.336184],[3.906268,45.333248],[3.909899,45.335119],[3.91933,45.341804],[3.918387,45.354365],[3.934501,45.361697],[3.938752,45.371396],[3.947613,45.37405],[3.961027,45.370271],[3.97343,45.375216],[3.978268,45.375696],[3.985593,45.371579],[3.987124,45.364983],[3.997708,45.356064],[4.002483,45.355994],[4.012813,45.336846],[4.014606,45.333633],[4.014976,45.33082],[4.020571,45.328194],[4.025162,45.348063],[4.037552,45.352964],[4.041548,45.354926],[4.054874,45.351803],[4.062761,45.339427],[4.070804,45.336055],[4.073682,45.338963],[4.080171,45.355524],[4.098516,45.359578],[4.101586,45.357882],[4.107809,45.354804],[4.109111,45.361797],[4.120395,45.368376],[4.149893,45.365231],[4.156688,45.369466],[4.147892,45.381543],[4.144443,45.384108],[4.157679,45.38762],[4.162102,45.388907],[4.180821,45.391701],[4.200862,45.382212],[4.222207,45.388186],[4.22656,45.389724],[4.236695,45.38683],[4.239555,45.384997],[4.244341,45.385277],[4.257172,45.371688],[4.270802,45.374921],[4.270101,45.362663],[4.271631,45.359764],[4.289755,45.35907],[4.295644,45.364036],[4.303818,45.362834],[4.308199,45.370987],[4.312929,45.370013],[4.336435,45.36616],[4.34053,45.36431],[4.359801,45.34938],[4.368006,45.337113],[4.36338,45.337485],[4.331653,45.318477],[4.352304,45.304163],[4.366258,45.301282],[4.369175,45.298977],[4.361268,45.291869],[4.359604,45.28536],[4.350182,45.277703],[4.371186,45.259886],[4.374922,45.261956],[4.387182,45.257536],[4.39131,45.263537],[4.415655,45.273597],[4.419655,45.275401],[4.434076,45.274704],[4.445481,45.259544],[4.454041,45.256263],[4.4569,45.253452],[4.46811,45.247245],[4.474656,45.238765],[4.479248,45.237912],[4.483135,45.236446],[4.488918,45.223419],[4.481328,45.215919],[4.476933,45.210673],[4.478555,45.198314],[4.480555,45.195459],[4.472579,45.179895],[4.459058,45.172156],[4.458157,45.168872],[4.448111,45.16196],[4.443347,45.145578],[4.443565,45.14218],[4.448414,45.129464],[4.457564,45.12224],[4.457286,45.118893],[4.452662,45.119125],[4.438931,45.120356],[4.442014,45.111689],[4.439755,45.10989],[4.436425,45.109456],[4.427843,45.117509],[4.429495,45.130393],[4.411159,45.140829],[4.397828,45.139484],[4.380955,45.143558],[4.376559,45.14436],[4.37257,45.128073],[4.397573,45.118082],[4.399854,45.108102],[4.38784,45.103623],[4.384585,45.10107],[4.371468,45.104384],[4.363868,45.100425],[4.359232,45.099572],[4.362829,45.087515],[4.358616,45.086252],[4.354941,45.077282],[4.346372,45.075045],[4.347737,45.065249],[4.360713,45.055392],[4.370244,45.056005],[4.37873,45.052865],[4.381644,45.042797],[4.379068,45.036175],[4.365133,45.035563],[4.35376,45.030569],[4.351543,45.02766],[4.318086,45.029934],[4.299684,45.020038],[4.297425,45.013527],[4.291981,45.004288],[4.292148,44.993912],[4.307317,44.985883],[4.30998,44.980935],[4.313234,44.979581],[4.314365,44.973166],[4.297662,44.968949],[4.294225,44.966801],[4.27942,44.966702],[4.256587,44.959876],[4.235239,44.967805],[4.231819,44.965745],[4.223854,44.962879],[4.216572,44.933577],[4.213073,44.931211],[4.190046,44.914189],[4.191688,44.912136],[4.188048,44.910194],[4.183014,44.905224],[4.179479,44.886514],[4.16616,44.881945],[4.156637,44.873977],[4.136896,44.874055],[4.117944,44.87811],[4.113166,44.878563],[4.087906,44.870331],[4.084478,44.869194],[4.077563,44.869811],[4.072916,44.869775],[4.03891,44.872764],[4.028735,44.866168],[4.028196,44.863013],[4.025204,44.851002],[4.020047,44.845863],[4.023795,44.843866],[4.028587,44.834619],[4.025664,44.831837],[4.016413,44.830392],[4.009087,44.834627],[3.998603,44.823575],[3.989593,44.831336],[3.98493,44.831693],[3.981451,44.825961],[3.987154,44.816384],[3.981885,44.811677],[3.978357,44.813905],[3.96732,44.820179],[3.963183,44.829759],[3.958782,44.828392],[3.945543,44.824346],[3.944475,44.821015],[3.936818,44.798093],[3.918029,44.778856],[3.924334,44.770979],[3.924918,44.769624],[3.921789,44.767678],[3.913657,44.766539],[3.908988,44.765461],[3.900111,44.762796],[3.89572,44.752874],[3.872496,44.75531],[3.862527,44.743872],[3.858308,44.745526],[3.839419,44.74712],[3.829915,44.754638],[3.832974,44.757253],[3.841072,44.765619],[3.841852,44.772132],[3.833253,44.775276],[3.819372,44.772561],[3.817335,44.769812],[3.810631,44.765882],[3.80699,44.767583],[3.804675,44.773641],[3.797349,44.786488],[3.771952,44.802316],[3.764135,44.800381],[3.759954,44.806334],[3.761687,44.812876],[3.759833,44.816058],[3.755779,44.817536],[3.743866,44.837802],[3.73538,44.840119],[3.735968,44.836721],[3.719429,44.831796],[3.701809,44.836267],[3.694679,44.831675],[3.666365,44.828778],[3.663663,44.831414],[3.657417,44.836124],[3.6616,44.837756],[3.669728,44.841282],[3.67364,44.854124],[3.671245,44.857029],[3.664392,44.860969],[3.660137,44.870511],[3.644297,44.877132],[3.640654,44.878567],[3.632535,44.877308],[3.629866,44.879826],[3.614235,44.874817],[3.608282,44.879334],[3.603369,44.879379],[3.595024,44.875795],[3.59783,44.858709],[3.586884,44.836052],[3.589724,44.829392],[3.582453,44.826117],[3.56877,44.834183],[3.555337,44.825671],[3.541089,44.828055],[3.5122,44.824816],[3.507375,44.824235],[3.493094,44.811514],[3.490994,44.808481],[3.486967,44.806473],[3.478242,44.80968],[3.47001,44.821942],[3.45617,44.831228],[3.457593,44.841324],[3.445198,44.851764],[3.4418,44.854227],[3.436572,44.87699],[3.435711,44.880244],[3.421511,44.894822],[3.417812,44.905037],[3.419257,44.908435],[3.413026,44.91567],[3.41038,44.917787],[3.415119,44.926304],[3.412835,44.944843],[3.410817,44.948001],[3.403222,44.956862],[3.390906,44.952773],[3.377783,44.956591],[3.371664,44.968929],[3.372711,44.975723],[3.368997,44.974178],[3.361343,44.971412],[3.355222,44.958259],[3.354528,44.954822],[3.35037,44.955033],[3.337948,44.955909],[3.334081,44.95385],[3.31825,44.946009],[3.314336,44.939789],[3.300883,44.939367],[3.285389,44.926254],[3.267129,44.929595],[3.262554,44.935242],[3.265703,44.941663],[3.256169,44.941604],[3.252172,44.940785],[3.248414,44.939506],[3.250201,44.936585],[3.244565,44.931717],[3.249693,44.916238],[3.231158,44.911119],[3.226428,44.909976],[3.228278,44.906947],[3.227769,44.897071],[3.234928,44.888584],[3.225669,44.882094],[3.214815,44.875003],[3.195963,44.872084],[3.190271,44.862524],[3.181619,44.86469],[3.179882,44.867808],[3.164673,44.875178],[3.16028,44.884467],[3.157551,44.886641],[3.151478,44.893933],[3.147951,44.896342],[3.142848,44.902282],[3.128384,44.903578],[3.119516,44.891541],[3.103126,44.884634],[3.104979,44.866265],[3.103188,44.863215],[3.094845,44.85548],[3.100179,44.843924],[3.097681,44.841558],[3.099159,44.832913],[3.096528,44.833339],[3.093846,44.833125],[3.089341,44.832787],[3.072175,44.836266],[3.07698,44.824279],[3.072702,44.822751],[3.064034,44.820236],[3.047916,44.803903],[3.046242,44.797295],[3.048705,44.794611],[3.049971,44.78188],[3.049475,44.778621],[3.044048,44.773528],[3.048237,44.764325],[3.042243,44.759385],[3.037832,44.75809],[3.031345,44.749638],[3.028747,44.73319],[3.027305,44.73022],[3.034894,44.727048],[3.039129,44.715001],[3.034293,44.715543],[3.016022,44.712531],[3.001628,44.686838],[2.999722,44.676539],[2.985621,44.658235],[2.981677,44.644686],[2.977213,44.644712],[2.97025,44.648257],[2.967626,44.650498],[2.961872,44.654466],[2.962677,44.65787],[2.955269,44.662188],[2.9475,44.67433],[2.939346,44.677576],[2.941418,44.687228],[2.934201,44.696226],[2.930886,44.713033],[2.929367,44.716201],[2.923264,44.728648],[2.931312,44.737206],[2.93351,44.747201],[2.930116,44.753573],[2.917021,44.757435],[2.914287,44.760278],[2.914118,44.763717],[2.917767,44.765962],[2.931708,44.764522],[2.936373,44.774086],[2.933774,44.780647],[2.931811,44.783725],[2.920191,44.794314],[2.91673,44.792052],[2.906917,44.785454],[2.897866,44.785113],[2.889642,44.788328],[2.879446,44.803101],[2.869874,44.829577],[2.861554,44.837958],[2.863543,44.847423],[2.855424,44.854733],[2.860544,44.867641],[2.859679,44.874465],[2.854931,44.874314],[2.851531,44.871888],[2.814631,44.869447],[2.807588,44.874098],[2.80279,44.873829],[2.784749,44.863216],[2.781647,44.856971],[2.772282,44.856403],[2.767711,44.865928],[2.775611,44.884879],[2.77859,44.887496],[2.775894,44.890263],[2.772244,44.900025],[2.776095,44.909639],[2.755915,44.932151],[2.742087,44.931975],[2.738254,44.941222],[2.737688,44.940366],[2.733919,44.938403],[2.724568,44.927342],[2.716766,44.928835],[2.714067,44.926073],[2.706372,44.907091],[2.702556,44.905307],[2.689464,44.903768],[2.681868,44.907348],[2.679376,44.904423],[2.658611,44.885805],[2.656223,44.872418],[2.653049,44.869771],[2.629077,44.872259],[2.626616,44.869226],[2.618041,44.852972],[2.604162,44.843092],[2.610224,44.83402],[2.609777,44.827284],[2.598425,44.82077],[2.600123,44.793667],[2.590137,44.786284],[2.586564,44.783993],[2.578243,44.785951],[2.564486,44.778092],[2.563364,44.771245],[2.560675,44.761043],[2.553678,44.757423],[2.55424,44.739149],[2.554142,44.733998],[2.552128,44.73146],[2.549397,44.728649],[2.55623,44.722231],[2.5364,44.711958],[2.520134,44.702048],[2.518885,44.699027],[2.516627,44.695884],[2.500496,44.688808],[2.489176,44.669256],[2.489524,44.658715],[2.484685,44.652589],[2.476306,44.650335],[2.471965,44.652024],[2.469,44.649453],[2.46804,44.642895],[2.450108,44.648083],[2.43565,44.639745],[2.404766,44.647182],[2.401279,44.645416],[2.397134,44.646186],[2.392671,44.644937],[2.380878,44.649671],[2.36529,44.641849],[2.350984,44.641234],[2.335043,44.648837],[2.336617,44.658768],[2.332221,44.664594],[2.329813,44.666533],[2.32413,44.669154],[2.320317,44.667285],[2.303361,44.6632],[2.286189,44.666458],[2.274461,44.661214],[2.270054,44.660582],[2.265206,44.660847],[2.250539,44.652042],[2.227115,44.654033],[2.208414,44.643844],[2.21762,44.624796],[2.22057,44.622035],[2.216622,44.621251],[2.207475,44.615532],[2.204864,44.618394],[2.176555,44.635473],[2.172326,44.635783],[2.169419,44.637985],[2.169541,44.647701],[2.173735,44.653251],[2.169023,44.658834],[2.16601,44.661287],[2.176251,44.671834],[2.179152,44.674449],[2.158546,44.697352],[2.154666,44.699366],[2.142949,44.693703],[2.138291,44.692883],[2.132873,44.697189],[2.130064,44.699301],[2.133279,44.709356],[2.148087,44.72285],[2.154692,44.74974],[2.153492,44.753108],[2.148908,44.76629],[2.149147,44.769704],[2.150975,44.770024],[2.155249,44.771551],[2.164663,44.772595],[2.168506,44.781934],[2.169882,44.784663],[2.171633,44.790258],[2.169115,44.792941],[2.166053,44.799022],[2.16629,44.81207],[2.144397,44.823528],[2.139801,44.823825],[2.136778,44.826242],[2.127673,44.840631],[2.127146,44.84358],[2.117213,44.848255],[2.097414,44.87057],[2.09351,44.872375],[2.084512,44.888373],[2.085432,44.898772],[2.10811,44.910598],[2.105115,44.91332],[2.102335,44.919916],[2.076351,44.934785],[2.080703,44.951578],[2.079176,44.954969],[2.062914,44.976506],[2.08473,44.982991],[2.089121,44.984441],[2.093554,44.985711],[2.106208,44.981509],[2.133293,44.985748],[2.139895,45.001998],[2.140896,45.005409],[2.137833,45.008132],[2.116938,45.02197],[2.110262,45.038611],[2.095159,45.056039],[2.09837,45.059424],[2.100208,45.062032],[2.102112,45.062164],[2.133317,45.081807],[2.138101,45.081448],[2.143403,45.086315],[2.161012,45.085152],[2.168152,45.081073],[2.172776,45.081278],[2.17937,45.094375],[2.178862,45.104762],[2.187932,45.116714],[2.181103,45.133215],[2.178793,45.136304],[2.193102,45.135661],[2.20141,45.139152],[2.210419,45.147158],[2.211364,45.160464],[2.225778,45.160916],[2.230423,45.161921],[2.233009,45.167315],[2.201689,45.18198],[2.198415,45.19893],[2.191141,45.203443],[2.192536,45.219751],[2.191163,45.223055],[2.198876,45.221832],[2.203062,45.223159],[2.2023,45.226575],[2.221133,45.23755],[2.225317,45.243747],[2.238564,45.247206],[2.239008,45.260473],[2.244194,45.266343],[2.25783,45.269838],[2.26155,45.279768],[2.261734,45.283227],[2.267932,45.287185],[2.269695,45.289889],[2.273244,45.289669],[2.276134,45.288184],[2.290328,45.288473],[2.305283,45.30654],[2.306146,45.310012],[2.31693,45.321415],[2.335034,45.326423],[2.339866,45.325812],[2.353415,45.32979],[2.358813,45.335521],[2.358556,45.338987],[2.351509,45.347654],[2.364432,45.35775],[2.364622,45.37468],[2.363485,45.380302],[2.368799,45.386005],[2.35025,45.409609],[2.355135,45.415031],[2.361707,45.414987],[2.376968,45.414317],[2.380991,45.413538],[2.393588,45.408519],[2.396444,45.402168],[2.404119,45.398022],[2.418301,45.397358],[2.423124,45.396959],[2.435245,45.390186],[2.437851,45.387822],[2.441552,45.384527],[2.46839,45.382812],[2.476367,45.371566],[2.480204,45.369693],[2.485575,45.378795],[2.508434,45.380131],[2.520664,45.384335],[2.523372,45.381546],[2.52351,45.384807],[2.527255,45.390756],[2.522233,45.402603],[2.517482,45.402052],[2.487538,45.418172],[2.492279,45.42402],[2.496051,45.44383],[2.496878,45.447165],[2.501585,45.451517],[2.499701,45.460433],[2.503695,45.461684],[2.509307,45.472397],[2.508409,45.478508],[2.51389,45.49284],[2.510569,45.497743],[2.508997,45.50023],[2.509567,45.506806],[2.518362,45.518911],[2.514877,45.524893],[2.517911,45.531074],[2.51498,45.540994],[2.518148,45.543574],[2.516673,45.55115],[2.51588,45.553884],[2.507604,45.553353],[2.496294,45.556832],[2.488221,45.569016],[2.47428,45.579019],[2.463472,45.594682],[2.465476,45.601049],[2.474686,45.606549],[2.478432,45.607917],[2.482026,45.63521],[2.486287,45.640822],[2.513977,45.639441],[2.517926,45.639908],[2.51907,45.644271],[2.518942,45.64708],[2.526007,45.655674],[2.51449,45.665809],[2.514537,45.67214],[2.524542,45.681215],[2.528684,45.682196],[2.526321,45.685004],[2.52583,45.69435],[2.521281,45.695825],[2.521626,45.709487],[2.492126,45.73767],[2.485224,45.74686],[2.471269,45.749497],[2.46699,45.75578],[2.454754,45.761161],[2.450513,45.759429],[2.442298,45.761406],[2.434119,45.769857],[2.433456,45.773024],[2.430863,45.788617],[2.389333,45.824024],[2.38802,45.827376],[2.40211,45.837123],[2.426321,45.834304],[2.432688,45.839001],[2.438951,45.846497],[2.447823,45.84582],[2.449666,45.852223],[2.443406,45.857001],[2.442696,45.863508],[2.443424,45.866745],[2.465349,45.86821],[2.465267,45.871353],[2.47428,45.871161],[2.487571,45.864216],[2.492225,45.86403],[2.50158,45.875787],[2.502119,45.886082],[2.511845,45.887124],[2.549707,45.908903],[2.553196,45.911393],[2.55784,45.91296],[2.54389,45.916615],[2.542608,45.923417],[2.544087,45.930267],[2.553174,45.937967],[2.551637,45.941266],[2.568835,45.947141],[2.565828,45.956864],[2.602149,45.965525],[2.60683,45.966424],[2.610789,45.972732],[2.600091,45.98405],[2.596791,45.98665],[2.593557,45.99938],[2.598839,46.008656],[2.598287,46.015255],[2.601761,46.021058],[2.600116,46.0303],[2.602696,46.032875],[2.599212,46.035493],[2.573497,46.047006],[2.554677,46.076128],[2.550659,46.086441],[2.552621,46.093401],[2.550966,46.099608],[2.549019,46.112802],[2.550523,46.118958],[2.554641,46.120505],[2.559959,46.132277],[2.559208,46.138731],[2.563985,46.140812],[2.565379,46.143041]]]},"properties":{"nom":"Auvergne","code":"83"}},{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[2.166054,42.663918],[2.165712,42.667395],[2.175521,42.682748],[2.161494,42.700523],[2.147599,42.70124],[2.140607,42.705824],[2.140803,42.70908],[2.113806,42.724497],[2.111063,42.726839],[2.100535,42.731715],[2.096671,42.733148],[2.0878,42.739574],[2.08636,42.752069],[2.084951,42.751662],[2.080464,42.752244],[2.058119,42.755485],[2.043914,42.74741],[2.034932,42.746826],[2.030775,42.741483],[2.019979,42.740018],[2.01532,42.739274],[2.00378,42.733529],[2.001675,42.735371],[1.998506,42.735944],[1.994914,42.735577],[1.991438,42.734798],[1.986832,42.735222],[1.950255,42.737658],[1.943622,42.746207],[1.931555,42.750934],[1.929817,42.755206],[1.92529,42.755179],[1.912998,42.759308],[1.908994,42.765247],[1.909557,42.768445],[1.926075,42.772182],[1.928959,42.774603],[1.924962,42.776245],[1.901467,42.800637],[1.898387,42.802701],[1.897896,42.806041],[1.859379,42.820809],[1.859461,42.824138],[1.875571,42.839497],[1.875018,42.845939],[1.875017,42.849168],[1.880266,42.852676],[1.889042,42.852704],[1.89389,42.852925],[1.947126,42.856689],[1.960244,42.861377],[1.964409,42.862919],[1.985041,42.870859],[1.981922,42.877197],[1.981595,42.880467],[1.986048,42.902786],[1.991129,42.907492],[1.989327,42.910488],[1.98088,42.926111],[1.980574,42.92958],[1.938436,42.938228],[1.933731,42.939144],[1.936227,42.951895],[1.951814,42.955934],[1.951304,42.959094],[1.96166,42.96201],[1.979382,42.960507],[1.988592,42.953381],[1.992859,42.953718],[2.004908,42.961565],[1.991575,42.963482],[1.985769,42.968482],[1.983264,42.988434],[1.987127,42.994506],[1.987058,43.000576],[1.977778,43.007009],[1.969256,43.007944],[1.971869,43.010586],[1.985468,43.023479],[1.985759,43.029957],[1.984554,43.032941],[1.979452,43.037903],[1.975929,43.042304],[1.961083,43.049564],[1.954082,43.04678],[1.945866,43.049398],[1.940394,43.061586],[1.944222,43.066948],[1.961181,43.0667],[1.96308,43.069587],[1.953422,43.07991],[1.949782,43.081691],[1.952205,43.084054],[1.955776,43.085447],[1.955369,43.088924],[1.950633,43.102388],[1.951491,43.111311],[1.948405,43.120303],[1.932339,43.12386],[1.927998,43.124185],[1.927409,43.129496],[1.916269,43.133432],[1.904423,43.131163],[1.892668,43.117127],[1.890103,43.123469],[1.880596,43.130549],[1.880648,43.147542],[1.877961,43.144833],[1.856847,43.144629],[1.85196,43.160608],[1.850054,43.157601],[1.846197,43.153233],[1.848366,43.147346],[1.826188,43.145685],[1.821439,43.148998],[1.817151,43.150228],[1.801395,43.157017],[1.783803,43.154472],[1.779465,43.16036],[1.774918,43.161541],[1.747554,43.175566],[1.739608,43.184299],[1.725887,43.187682],[1.71178,43.18684],[1.709632,43.190008],[1.709977,43.199845],[1.724233,43.212474],[1.720825,43.221997],[1.723908,43.224435],[1.716082,43.228373],[1.700281,43.245511],[1.701035,43.259015],[1.691642,43.270993],[1.68842,43.273554],[1.698489,43.27911],[1.701275,43.281698],[1.706646,43.286036],[1.714527,43.297097],[1.707797,43.301155],[1.704015,43.30282],[1.707384,43.305316],[1.727504,43.313571],[1.735952,43.316018],[1.724412,43.329666],[1.726379,43.332694],[1.722905,43.341533],[1.735427,43.337704],[1.746555,43.343484],[1.749223,43.349462],[1.768684,43.339392],[1.772273,43.336977],[1.77653,43.342558],[1.784932,43.345154],[1.793332,43.342567],[1.796973,43.340565],[1.813484,43.341503],[1.815575,43.34831],[1.804994,43.359764],[1.804971,43.390588],[1.812498,43.394126],[1.826108,43.394661],[1.821619,43.398787],[1.817111,43.407384],[1.817266,43.410652],[1.826761,43.417746],[1.840383,43.416741],[1.844511,43.422607],[1.84599,43.430729],[1.842953,43.43255],[1.855178,43.440517],[1.856453,43.443455],[1.872942,43.43696],[1.873987,43.430259],[1.897627,43.414271],[1.899143,43.411128],[1.902433,43.408813],[1.895584,43.39658],[1.903591,43.394025],[1.910708,43.397399],[1.91463,43.400749],[1.911508,43.403408],[1.923508,43.421558],[1.932769,43.423377],[1.946584,43.420597],[1.95817,43.425613],[1.960755,43.423964],[1.963752,43.422751],[1.963038,43.41991],[1.965903,43.414971],[1.972991,43.418962],[1.991106,43.409343],[2.012692,43.415021],[2.020921,43.423193],[2.028795,43.41962],[2.038411,43.425482],[2.030853,43.433737],[2.029133,43.436898],[2.033296,43.436044],[2.053071,43.430308],[2.068725,43.408896],[2.072801,43.395696],[2.077317,43.395627],[2.085693,43.398082],[2.091681,43.393886],[2.095112,43.3962],[2.104399,43.395602],[2.108785,43.39446],[2.111065,43.396188],[2.130495,43.401222],[2.133557,43.403559],[2.138318,43.403714],[2.156305,43.414894],[2.170349,43.415876],[2.184058,43.397779],[2.211099,43.384565],[2.215024,43.382615],[2.229322,43.408286],[2.223344,43.417789],[2.222523,43.42831],[2.235584,43.437561],[2.239358,43.439747],[2.241344,43.442676],[2.243802,43.445438],[2.256687,43.453642],[2.258295,43.460113],[2.263919,43.455923],[2.265415,43.452919],[2.268692,43.450611],[2.281798,43.441449],[2.284875,43.443296],[2.299698,43.446812],[2.304106,43.447929],[2.313931,43.441064],[2.348387,43.432774],[2.363082,43.424567],[2.367331,43.423179],[2.371245,43.423076],[2.375171,43.423],[2.398735,43.417051],[2.406846,43.419255],[2.404826,43.422438],[2.40776,43.425216],[2.42759,43.43449],[2.451105,43.432228],[2.469545,43.435352],[2.473695,43.436514],[2.477992,43.436427],[2.494383,43.436937],[2.497332,43.434287],[2.518988,43.423716],[2.548049,43.424651],[2.561483,43.420963],[2.565541,43.422914],[2.565787,43.42296],[2.579276,43.423301],[2.597996,43.43271],[2.602191,43.431331],[2.606371,43.431994],[2.606095,43.43803],[2.608845,43.440415],[2.617661,43.438531],[2.641062,43.455587],[2.644567,43.45792],[2.644608,43.461267],[2.641583,43.46706],[2.663624,43.464171],[2.668,43.47005],[2.665094,43.472677],[2.657633,43.480958],[2.655033,43.494185],[2.659896,43.503458],[2.658852,43.516923],[2.671518,43.513697],[2.67602,43.513458],[2.667984,43.522062],[2.655687,43.527251],[2.616643,43.565377],[2.617994,43.56872],[2.631005,43.583242],[2.627227,43.59319],[2.62254,43.592463],[2.620069,43.595423],[2.615603,43.600518],[2.627779,43.611106],[2.645491,43.660672],[2.649787,43.659444],[2.653587,43.649991],[2.667283,43.649448],[2.684695,43.65381],[2.687337,43.65093],[2.719328,43.644412],[2.738722,43.630334],[2.746507,43.617845],[2.754524,43.614139],[2.759078,43.614887],[2.781699,43.625876],[2.795131,43.624633],[2.801592,43.62954],[2.804692,43.632164],[2.814703,43.639479],[2.828424,43.637432],[2.844894,43.644763],[2.86877,43.644965],[2.884296,43.65713],[2.90294,43.654647],[2.907798,43.65475],[2.918495,43.661993],[2.919588,43.686586],[2.934967,43.694712],[2.942225,43.691774],[2.954969,43.69654],[2.957596,43.699448],[2.969351,43.704023],[2.973965,43.704627],[2.982088,43.70803],[2.996006,43.706493],[3.013333,43.701444],[3.018665,43.695999],[3.022657,43.69437],[3.031387,43.692433],[3.048231,43.696953],[3.060678,43.692807],[3.061872,43.69601],[3.062363,43.702399],[3.069165,43.706849],[3.054971,43.715972],[3.057648,43.725743],[3.053522,43.731999],[3.057115,43.73844],[3.053162,43.744777],[3.056275,43.754953],[3.065413,43.755703],[3.07351,43.767594],[3.058796,43.77968],[3.057048,43.782803],[3.05838,43.786105],[3.048568,43.801498],[3.050173,43.804619],[3.063813,43.81263],[3.058661,43.818006],[3.058733,43.827967],[3.066312,43.83527],[3.071172,43.834826],[3.085706,43.835554],[3.112567,43.82707],[3.126978,43.817668],[3.150705,43.813769],[3.151466,43.814794],[3.155002,43.817065],[3.18238,43.812829],[3.205308,43.81296],[3.222688,43.817776],[3.231794,43.826063],[3.236311,43.827439],[3.24472,43.828807],[3.249037,43.82958],[3.251333,43.840067],[3.236408,43.853896],[3.235019,43.860874],[3.242077,43.873934],[3.255494,43.878034],[3.261857,43.887478],[3.262608,43.891003],[3.274142,43.898526],[3.277444,43.896771],[3.285828,43.893312],[3.295145,43.894979],[3.318657,43.891142],[3.342568,43.894193],[3.341916,43.903707],[3.35509,43.912512],[3.358663,43.914525],[3.352274,43.934309],[3.351722,43.937721],[3.353982,43.940756],[3.359211,43.95027],[3.375884,43.956729],[3.377571,43.966947],[3.405615,43.969682],[3.406388,43.973171],[3.418529,43.992295],[3.443552,44.002339],[3.450981,44.022541],[3.449727,44.023276],[3.444774,44.024718],[3.440799,44.026777],[3.417944,44.040016],[3.399699,44.044845],[3.386492,44.055081],[3.372685,44.052474],[3.367643,44.058215],[3.351731,44.050257],[3.347875,44.052402],[3.344557,44.054636],[3.337492,44.058744],[3.332517,44.074501],[3.32891,44.07903],[3.325456,44.077483],[3.323059,44.079848],[3.318423,44.079025],[3.305423,44.069189],[3.295925,44.069539],[3.27474,44.087541],[3.263376,44.092726],[3.291562,44.104832],[3.310698,44.104941],[3.319087,44.108373],[3.323849,44.108918],[3.323929,44.111941],[3.32359,44.127009],[3.320354,44.135948],[3.330226,44.142165],[3.332488,44.148638],[3.336682,44.15813],[3.373648,44.170765],[3.372075,44.180725],[3.358391,44.19447],[3.360423,44.201169],[3.355603,44.200843],[3.332084,44.203509],[3.318327,44.20039],[3.301043,44.206461],[3.291616,44.205676],[3.287881,44.19952],[3.264363,44.200308],[3.243235,44.192572],[3.239261,44.190663],[3.230589,44.189863],[3.226313,44.190592],[3.203593,44.193462],[3.212071,44.195777],[3.215799,44.202098],[3.219211,44.204503],[3.221213,44.207713],[3.23054,44.23034],[3.195687,44.24066],[3.187826,44.24891],[3.174415,44.245259],[3.160532,44.24628],[3.154268,44.27304],[3.14617,44.276031],[3.14016,44.267037],[3.138298,44.26397],[3.133898,44.262382],[3.124527,44.261466],[3.125306,44.285418],[3.154266,44.309225],[3.146076,44.317131],[3.150937,44.329933],[3.134194,44.334528],[3.128198,44.3509],[3.131976,44.357178],[3.123591,44.360771],[3.120492,44.366814],[3.122494,44.370017],[3.123395,44.380214],[3.119743,44.386331],[3.137053,44.391621],[3.137244,44.408266],[3.130371,44.412037],[3.126721,44.413958],[3.129938,44.420337],[3.141045,44.426796],[3.142256,44.433734],[3.135077,44.442016],[3.136367,44.44539],[3.136186,44.448793],[3.135486,44.455519],[3.124866,44.461302],[3.117325,44.473787],[3.103506,44.479535],[3.09956,44.48043],[3.068932,44.502706],[3.075465,44.51598],[3.076238,44.519464],[3.07491,44.533292],[3.08347,44.56032],[3.079021,44.566472],[3.076607,44.569498],[3.076196,44.57255],[3.061845,44.578996],[3.059631,44.581626],[3.055354,44.587075],[3.041086,44.594202],[3.037131,44.595536],[3.031891,44.598463],[3.030708,44.600741],[3.018388,44.611259],[3.013273,44.620847],[2.987819,44.641193],[2.985448,44.644209],[2.981677,44.644686],[2.985621,44.658235],[2.999722,44.676539],[3.001628,44.686838],[3.016022,44.712531],[3.034293,44.715543],[3.039129,44.715001],[3.034894,44.727048],[3.027305,44.73022],[3.028747,44.73319],[3.031345,44.749638],[3.037832,44.75809],[3.042243,44.759385],[3.048237,44.764325],[3.044048,44.773528],[3.049475,44.778621],[3.049971,44.78188],[3.048705,44.794611],[3.046242,44.797295],[3.047916,44.803903],[3.064034,44.820236],[3.072702,44.822751],[3.07698,44.824279],[3.072175,44.836266],[3.089341,44.832787],[3.093846,44.833125],[3.096528,44.833339],[3.099159,44.832913],[3.097681,44.841558],[3.100179,44.843924],[3.094845,44.85548],[3.103188,44.863215],[3.104979,44.866265],[3.103126,44.884634],[3.119516,44.891541],[3.128384,44.903578],[3.142848,44.902282],[3.147951,44.896342],[3.151478,44.893933],[3.157551,44.886641],[3.16028,44.884467],[3.164673,44.875178],[3.179882,44.867808],[3.181619,44.86469],[3.190271,44.862524],[3.195963,44.872084],[3.214815,44.875003],[3.225669,44.882094],[3.234928,44.888584],[3.227769,44.897071],[3.228278,44.906947],[3.226428,44.909976],[3.231158,44.911119],[3.249693,44.916238],[3.244565,44.931717],[3.250201,44.936585],[3.248414,44.939506],[3.252172,44.940785],[3.256169,44.941604],[3.265703,44.941663],[3.262554,44.935242],[3.267129,44.929595],[3.285389,44.926254],[3.300883,44.939367],[3.314336,44.939789],[3.31825,44.946009],[3.334081,44.95385],[3.337948,44.955909],[3.35037,44.955033],[3.354528,44.954822],[3.355222,44.958259],[3.361343,44.971412],[3.368997,44.974178],[3.372711,44.975723],[3.371664,44.968929],[3.377783,44.956591],[3.390906,44.952773],[3.403222,44.956862],[3.410817,44.948001],[3.412835,44.944843],[3.415119,44.926304],[3.41038,44.917787],[3.413026,44.91567],[3.419257,44.908435],[3.417812,44.905037],[3.421511,44.894822],[3.435711,44.880244],[3.436572,44.87699],[3.4418,44.854227],[3.445198,44.851764],[3.457593,44.841324],[3.45617,44.831228],[3.47001,44.821942],[3.478242,44.80968],[3.486967,44.806473],[3.490994,44.808481],[3.493094,44.811514],[3.507375,44.824235],[3.5122,44.824816],[3.541089,44.828055],[3.555337,44.825671],[3.56877,44.834183],[3.582453,44.826117],[3.589724,44.829392],[3.586884,44.836052],[3.59783,44.858709],[3.595024,44.875795],[3.603369,44.879379],[3.608282,44.879334],[3.614235,44.874817],[3.629866,44.879826],[3.632535,44.877308],[3.640654,44.878567],[3.644297,44.877132],[3.660137,44.870511],[3.664392,44.860969],[3.671245,44.857029],[3.67364,44.854124],[3.669728,44.841282],[3.6616,44.837756],[3.657417,44.836124],[3.663663,44.831414],[3.666365,44.828778],[3.694679,44.831675],[3.701809,44.836267],[3.719429,44.831796],[3.735968,44.836721],[3.73538,44.840119],[3.743866,44.837802],[3.755779,44.817536],[3.759833,44.816058],[3.761687,44.812876],[3.759954,44.806334],[3.764135,44.800381],[3.771952,44.802316],[3.797349,44.786488],[3.804675,44.773641],[3.80699,44.767583],[3.810631,44.765882],[3.817335,44.769812],[3.819372,44.772561],[3.833253,44.775276],[3.841852,44.772132],[3.841072,44.765619],[3.832974,44.757253],[3.829915,44.754638],[3.839419,44.74712],[3.858308,44.745526],[3.862527,44.743872],[3.877097,44.735988],[3.863763,44.722326],[3.8631,44.712023],[3.870008,44.707206],[3.869246,44.700396],[3.869648,44.696963],[3.883529,44.696718],[3.884563,44.693441],[3.881767,44.690573],[3.871647,44.679336],[3.885373,44.657457],[3.894778,44.649963],[3.895766,44.642293],[3.894403,44.639018],[3.89414,44.615288],[3.906662,44.610963],[3.908084,44.607701],[3.90533,44.595462],[3.90654,44.592373],[3.918466,44.587368],[3.916821,44.58071],[3.921627,44.574962],[3.923567,44.571885],[3.944441,44.573662],[3.948774,44.572887],[3.95849,44.556894],[3.960906,44.553812],[3.964955,44.541002],[3.965692,44.537682],[3.967657,44.534856],[3.978998,44.521756],[3.97579,44.516742],[3.980284,44.515424],[3.986789,44.502429],[3.987125,44.474868],[3.998163,44.459798],[4.002603,44.458515],[4.015082,44.453476],[4.01666,44.450365],[4.023876,44.446301],[4.037103,44.445952],[4.045419,44.433495],[4.037813,44.420918],[4.054795,44.414788],[4.06844,44.40506],[4.059453,44.393911],[4.042393,44.394074],[4.043749,44.384554],[4.046711,44.382465],[4.05298,44.378696],[4.056718,44.361024],[4.053677,44.358794],[4.05116,44.346206],[4.053047,44.339751],[4.047919,44.334444],[4.035706,44.329851],[4.038705,44.327887],[4.048059,44.318949],[4.051452,44.317324],[4.055621,44.319021],[4.060144,44.320166],[4.073842,44.329026],[4.103861,44.333906],[4.106628,44.332356],[4.10942,44.330843],[4.113525,44.329127],[4.126752,44.337734],[4.141665,44.323959],[4.142868,44.313351],[4.161701,44.312154],[4.173247,44.317577],[4.177991,44.317742],[4.183913,44.302321],[4.186579,44.299735],[4.212951,44.291444],[4.216384,44.289039],[4.230778,44.277176],[4.234052,44.275059],[4.238182,44.273095],[4.245138,44.268075],[4.258901,44.264425],[4.273773,44.271752],[4.286338,44.289386],[4.288996,44.292146],[4.289584,44.295416],[4.288375,44.315019],[4.306334,44.316266],[4.318098,44.321752],[4.329257,44.332376],[4.325771,44.338324],[4.370171,44.340139],[4.38381,44.344352],[4.38705,44.347057],[4.391868,44.346573],[4.402347,44.335007],[4.40145,44.328167],[4.400063,44.324818],[4.391594,44.304759],[4.393313,44.2946],[4.40357,44.288177],[4.431983,44.289683],[4.435608,44.283324],[4.440422,44.283423],[4.450048,44.295226],[4.453212,44.297867],[4.448757,44.29671],[4.450793,44.330705],[4.451068,44.334096],[4.459866,44.341596],[4.464761,44.341675],[4.48291,44.3382],[4.506097,44.340252],[4.512014,44.3354],[4.514731,44.329114],[4.524167,44.328768],[4.531152,44.324097],[4.54911,44.324512],[4.547749,44.322874],[4.545631,44.319708],[4.557168,44.304168],[4.569998,44.299349],[4.574274,44.300746],[4.59898,44.291756],[4.602332,44.291923],[4.605465,44.29104],[4.609125,44.289249],[4.616625,44.277993],[4.620478,44.279944],[4.632679,44.284994],[4.637028,44.283669],[4.641729,44.274199],[4.649224,44.27036],[4.648551,44.267471],[4.651479,44.259153],[4.653075,44.255915],[4.67736,44.234975],[4.672933,44.218603],[4.673657,44.214711],[4.681893,44.211741],[4.699936,44.216108],[4.708595,44.213498],[4.710297,44.206836],[4.70483,44.201078],[4.703839,44.197663],[4.708316,44.191724],[4.717272,44.189973],[4.721891,44.18467],[4.716251,44.176043],[4.717361,44.169328],[4.717296,44.165934],[4.717117,44.162498],[4.71719,44.159094],[4.718725,44.152381],[4.718133,44.140678],[4.705735,44.111604],[4.705082,44.108175],[4.719627,44.088781],[4.71973,44.085584],[4.727819,44.078452],[4.752939,44.087983],[4.757721,44.087933],[4.760117,44.081791],[4.760035,44.078344],[4.762887,44.074869],[4.784113,44.067215],[4.786807,44.064353],[4.78741,44.054918],[4.792418,44.049848],[4.795865,44.04791],[4.799013,44.046013],[4.807764,44.039774],[4.813646,44.034041],[4.82029,44.017015],[4.839417,44.014022],[4.842997,44.003987],[4.843118,44.00042],[4.845344,43.995593],[4.844996,43.992142],[4.840941,43.985918],[4.8363,43.985033],[4.812967,43.988006],[4.810178,43.977915],[4.814369,43.964676],[4.791981,43.952271],[4.778539,43.93879],[4.748232,43.931132],[4.741431,43.926641],[4.738793,43.923866],[4.739556,43.921108],[4.735506,43.91651],[4.723398,43.906052],[4.698503,43.89664],[4.703196,43.897035],[4.7079,43.897411],[4.705497,43.894488],[4.692706,43.884587],[4.66694,43.87636],[4.662511,43.870388],[4.661583,43.873589],[4.64173,43.8673],[4.646975,43.858031],[4.643675,43.851852],[4.661874,43.852341],[4.666767,43.846983],[4.664997,43.843842],[4.652168,43.839752],[4.64297,43.832114],[4.654449,43.809007],[4.652914,43.787725],[4.650196,43.780935],[4.629507,43.761121],[4.628118,43.757712],[4.627175,43.754252],[4.61194,43.724724],[4.613145,43.714193],[4.626473,43.68803],[4.597812,43.686753],[4.578489,43.69707],[4.559326,43.699444],[4.537599,43.707052],[4.524575,43.702501],[4.49079,43.700404],[4.486421,43.698853],[4.476546,43.686802],[4.477416,43.672921],[4.451605,43.664233],[4.42723,43.625822],[4.428685,43.619063],[4.438799,43.611406],[4.448272,43.610344],[4.466497,43.61496],[4.473776,43.610442],[4.473576,43.603651],[4.452809,43.584573],[4.448317,43.583184],[4.443527,43.583212],[4.424853,43.584476],[4.4094,43.576281],[4.41426,43.567552],[4.408973,43.561934],[4.404608,43.560523],[4.390361,43.560869],[4.37246,43.549677],[4.35391,43.547408],[4.332823,43.535935],[4.3161,43.546749],[4.322314,43.551712],[4.318393,43.557168],[4.315141,43.551871],[4.309193,43.546571],[4.320651,43.527823],[4.293603,43.51404],[4.244686,43.501268],[4.240814,43.499405],[4.237743,43.496884],[4.239777,43.49373],[4.231161,43.477541],[4.230283,43.460185],[4.164626,43.472158],[4.131594,43.486202],[4.120925,43.498019],[4.118143,43.508144],[4.124355,43.521091],[4.13334,43.523373],[4.13825,43.529026],[4.126266,43.544115],[4.10553,43.552931],[4.101042,43.554371],[4.042516,43.556829],[4.037657,43.556336],[4.004763,43.550959],[3.974016,43.541197],[3.969386,43.540231],[3.912291,43.518492],[3.907956,43.517197],[3.903821,43.515261],[3.85278,43.487458],[3.826219,43.466493],[3.823545,43.463553],[3.794526,43.440035],[3.724916,43.415799],[3.725368,43.401644],[3.689099,43.391985],[3.665745,43.39295],[3.652847,43.388098],[3.61948,43.367629],[3.566689,43.326158],[3.563656,43.323484],[3.539809,43.302016],[3.516013,43.275981],[3.507807,43.272431],[3.443607,43.282168],[3.433626,43.289459],[3.428965,43.290215],[3.424149,43.290081],[3.400448,43.287284],[3.364786,43.277371],[3.36059,43.275874],[3.343555,43.270307],[3.340277,43.2677],[3.311623,43.254482],[3.308215,43.252324],[3.271341,43.233398],[3.267666,43.23132],[3.240561,43.212809],[3.236801,43.210595],[3.183535,43.170042],[3.152601,43.141127],[3.148739,43.139334],[3.131174,43.111474],[3.117663,43.102198],[3.084479,43.056162],[3.06484,43.019814],[3.067308,43.013229],[3.05581,42.998073],[3.043813,42.963643],[3.042843,42.960163],[3.039848,42.932025],[3.055225,42.924086],[3.059819,42.917906],[3.043511,42.83815],[3.038732,42.78179],[3.039267,42.778275],[3.038904,42.746858],[3.038853,42.743352],[3.039842,42.726618],[3.040279,42.723274],[3.035475,42.644227],[3.035728,42.640766],[3.04235,42.603517],[3.043114,42.600082],[3.044268,42.596872],[3.045056,42.593725],[3.049268,42.552154],[3.055299,42.539422],[3.05825,42.536732],[3.072081,42.535187],[3.07637,42.533754],[3.094697,42.524552],[3.099107,42.523613],[3.107907,42.52454],[3.133595,42.517274],[3.135447,42.514161],[3.12679,42.506091],[3.126782,42.502549],[3.133977,42.498369],[3.132924,42.494981],[3.129255,42.489188],[3.131913,42.482704],[3.153637,42.477488],[3.160651,42.462268],[3.15727,42.459972],[3.164907,42.456194],[3.164961,42.449497],[3.17533,42.438478],[3.17407,42.435191],[3.123712,42.435306],[3.12083,42.438006],[3.11693,42.436033],[3.108092,42.433588],[3.099123,42.425543],[3.081231,42.42821],[3.047755,42.457084],[3.040447,42.473689],[3.035906,42.473745],[3.011546,42.46709],[3.000923,42.472987],[2.996212,42.47332],[2.986753,42.473067],[2.975863,42.467096],[2.966575,42.467013],[2.947088,42.481801],[2.943981,42.479444],[2.932851,42.474368],[2.930098,42.471562],[2.919348,42.456848],[2.888228,42.460865],[2.883811,42.460105],[2.869106,42.466902],[2.861352,42.455198],[2.848554,42.456583],[2.844459,42.458015],[2.839868,42.458988],[2.830469,42.443207],[2.814056,42.437238],[2.798364,42.419906],[2.794124,42.41828],[2.772117,42.412294],[2.760617,42.418435],[2.756587,42.424844],[2.751866,42.425372],[2.747692,42.425299],[2.727371,42.422625],[2.723961,42.422724],[2.719585,42.422002],[2.691401,42.406212],[2.673944,42.404704],[2.670543,42.38838],[2.652876,42.384441],[2.65632,42.382295],[2.659111,42.379688],[2.662355,42.36592],[2.675295,42.355741],[2.675439,42.345117],[2.672644,42.342224],[2.66331,42.340999],[2.616356,42.345972],[2.589681,42.353881],[2.587526,42.357063],[2.56187,42.357114],[2.555202,42.352682],[2.551632,42.342645],[2.542191,42.335199],[2.537951,42.333698],[2.533265,42.333489],[2.498432,42.342624],[2.484885,42.340078],[2.477796,42.344412],[2.4763,42.347712],[2.472717,42.350031],[2.466899,42.359503],[2.452936,42.368834],[2.436367,42.375093],[2.433343,42.391957],[2.410338,42.392156],[2.384097,42.400223],[2.356268,42.404283],[2.348138,42.407901],[2.344862,42.414443],[2.326867,42.417054],[2.318743,42.425012],[2.310598,42.428447],[2.293944,42.422981],[2.257083,42.438488],[2.244429,42.428808],[2.226329,42.425783],[2.20135,42.416664],[2.156949,42.423378],[2.137359,42.415662],[2.133169,42.414342],[2.126581,42.41036],[2.118632,42.396092],[2.114897,42.394506],[2.11366,42.381696],[2.093464,42.375234],[2.089548,42.373717],[2.085933,42.363745],[2.076724,42.364376],[2.059883,42.358628],[2.023496,42.355227],[2.012785,42.349402],[1.989063,42.361035],[1.969772,42.376653],[1.960959,42.392999],[1.956481,42.416992],[1.958286,42.423959],[1.945314,42.428083],[1.941143,42.433957],[1.942895,42.444429],[1.937441,42.452645],[1.933845,42.454165],[1.9183,42.446646],[1.904571,42.448609],[1.900273,42.449976],[1.887127,42.449939],[1.877658,42.461337],[1.864965,42.465383],[1.856231,42.463726],[1.844678,42.473859],[1.843362,42.477153],[1.831512,42.483092],[1.813199,42.484733],[1.805248,42.488653],[1.767644,42.486751],[1.746603,42.494822],[1.73246,42.493244],[1.726603,42.502794],[1.724011,42.520249],[1.733407,42.532507],[1.740135,42.556467],[1.750786,42.563416],[1.764873,42.565027],[1.769603,42.564506],[1.782868,42.571734],[1.786125,42.573623],[1.799703,42.57232],[1.820712,42.579504],[1.824728,42.581239],[1.838155,42.583957],[1.865377,42.579925],[1.874485,42.581415],[1.873502,42.588202],[1.890215,42.592989],[1.89352,42.606051],[1.898745,42.611671],[1.900303,42.614906],[1.910766,42.608063],[1.924961,42.608539],[1.933621,42.605578],[1.942099,42.608521],[1.950468,42.616947],[1.97328,42.618383],[1.976361,42.621074],[1.976116,42.627437],[1.987816,42.644299],[1.990771,42.646638],[1.997956,42.660903],[2.002095,42.661076],[2.015214,42.655389],[2.018423,42.653656],[2.022788,42.653364],[2.04327,42.657496],[2.047019,42.66359],[2.061034,42.661843],[2.073887,42.665624],[2.10655,42.664841],[2.127885,42.672039],[2.143126,42.663854],[2.152302,42.662075],[2.161322,42.664241],[2.166054,42.663918]],[[1.980578,42.494779],[1.977965,42.488587],[1.962663,42.476833],[1.960056,42.470452],[1.959803,42.453261],[1.976787,42.44903],[1.980854,42.447612],[2.004724,42.447236],[2.009407,42.448115],[2.012837,42.452696],[2.006447,42.456583],[2.002789,42.458221],[1.991899,42.463836],[1.98661,42.472712],[1.993973,42.484469],[1.998385,42.484978],[1.995604,42.487802],[1.989823,42.493339],[1.980578,42.494779]]]},"properties":{"nom":"Languedoc-Roussillon","code":"91"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[5.498788,44.115719],[5.507615,44.11776],[5.511089,44.123957],[5.542146,44.133264],[5.550089,44.145894],[5.551315,44.149242],[5.551333,44.149647],[5.570423,44.148616],[5.581188,44.155153],[5.568105,44.168725],[5.564374,44.170902],[5.575671,44.186316],[5.579657,44.188374],[5.594234,44.187481],[5.602053,44.191502],[5.605704,44.191145],[5.609327,44.190708],[5.616955,44.17862],[5.629773,44.17409],[5.638795,44.166281],[5.632026,44.157375],[5.631136,44.150579],[5.640667,44.149234],[5.645321,44.148185],[5.67406,44.147316],[5.678605,44.146098],[5.681266,44.160073],[5.682728,44.163486],[5.650428,44.166766],[5.643897,44.170526],[5.652288,44.186237],[5.651593,44.189577],[5.676037,44.191433],[5.685922,44.197181],[5.676723,44.213409],[5.681133,44.230693],[5.682025,44.23367],[5.673312,44.240169],[5.672644,44.24567],[5.674252,44.255862],[5.684206,44.263094],[5.686653,44.266069],[5.68449,44.268833],[5.67561,44.275886],[5.671683,44.274225],[5.646781,44.267091],[5.646372,44.270398],[5.632861,44.282845],[5.632601,44.289389],[5.635739,44.291638],[5.639778,44.296503],[5.633799,44.30088],[5.629322,44.301149],[5.616057,44.309382],[5.608318,44.306117],[5.613216,44.315772],[5.630209,44.32785],[5.628259,44.33394],[5.6238,44.335217],[5.62037,44.332948],[5.588187,44.332179],[5.586926,44.332038],[5.582972,44.332293],[5.571307,44.333476],[5.566543,44.33302],[5.549105,44.330588],[5.539953,44.332439],[5.53686,44.342102],[5.520927,44.349259],[5.50316,44.344279],[5.492944,44.337135],[5.490082,44.339965],[5.47857,44.351041],[5.468856,44.35135],[5.467049,44.354515],[5.462782,44.367237],[5.443922,44.367748],[5.439297,44.36795],[5.434954,44.369117],[5.431328,44.375331],[5.442622,44.381268],[5.441702,44.391681],[5.430035,44.414526],[5.425382,44.415611],[5.418397,44.42477],[5.433752,44.433168],[5.438582,44.433556],[5.472723,44.420943],[5.47757,44.420852],[5.483329,44.42609],[5.486044,44.428965],[5.489918,44.429022],[5.493615,44.428218],[5.495031,44.43096],[5.49549,44.438803],[5.464832,44.448652],[5.463836,44.452052],[5.460217,44.468587],[5.466822,44.473519],[5.461529,44.482824],[5.460352,44.486138],[5.458909,44.488521],[5.457843,44.498155],[5.466345,44.500343],[5.470847,44.499999],[5.474925,44.49426],[5.483134,44.49122],[5.506409,44.492018],[5.51103,44.491507],[5.546077,44.48212],[5.549714,44.479902],[5.56043,44.474303],[5.564687,44.475249],[5.5691,44.476578],[5.598968,44.466268],[5.603637,44.4655],[5.614847,44.471837],[5.623729,44.484065],[5.626329,44.497775],[5.633188,44.502097],[5.651244,44.499322],[5.659776,44.501972],[5.664504,44.501894],[5.66305,44.504947],[5.646326,44.520076],[5.642693,44.522064],[5.627653,44.534357],[5.614987,44.532776],[5.612473,44.535601],[5.597249,44.543274],[5.60649,44.566655],[5.607148,44.568351],[5.613898,44.571821],[5.621998,44.585861],[5.626319,44.586623],[5.627477,44.594972],[5.63703,44.60922],[5.646092,44.609922],[5.648367,44.616218],[5.649462,44.61938],[5.642842,44.624259],[5.640301,44.647821],[5.641715,44.651084],[5.649246,44.652903],[5.651551,44.655217],[5.659305,44.651049],[5.683495,44.649979],[5.725505,44.640087],[5.749155,44.651077],[5.753769,44.660529],[5.77112,44.654276],[5.785703,44.653135],[5.79062,44.653299],[5.801017,44.674828],[5.809249,44.678123],[5.813277,44.679904],[5.817189,44.681885],[5.829958,44.691244],[5.825458,44.70098],[5.812675,44.705008],[5.808962,44.705787],[5.80147,44.706779],[5.811319,44.714024],[5.81886,44.730651],[5.829361,44.742437],[5.826526,44.756203],[5.827093,44.759693],[5.841024,44.756373],[5.847986,44.751527],[5.867467,44.751007],[5.880592,44.746846],[5.885456,44.747287],[5.893139,44.755573],[5.902203,44.757994],[5.919572,44.75279],[5.937689,44.763428],[5.946886,44.76131],[5.951122,44.759621],[5.952215,44.768412],[5.953165,44.771314],[5.976427,44.779737],[5.980273,44.781184],[5.979498,44.784457],[5.977782,44.79099],[5.951206,44.801458],[5.949519,44.80453],[5.975607,44.816582],[5.979182,44.818594],[6.003416,44.820355],[6.016206,44.835288],[6.030211,44.838096],[6.052272,44.817174],[6.056502,44.815814],[6.093293,44.836373],[6.097322,44.838234],[6.113151,44.84553],[6.130449,44.862515],[6.157906,44.858286],[6.165014,44.853587],[6.169659,44.852391],[6.192556,44.856745],[6.196382,44.858977],[6.229098,44.852002],[6.248866,44.85256],[6.267095,44.869092],[6.294563,44.873984],[6.304353,44.872792],[6.319428,44.855139],[6.336319,44.848369],[6.352053,44.852842],[6.355364,44.854824],[6.35047,44.875131],[6.351997,44.882032],[6.35855,44.887322],[6.35466,44.8971],[6.357945,44.907292],[6.35491,44.927777],[6.358172,44.941575],[6.353422,44.942557],[6.326279,44.950014],[6.323254,44.956575],[6.328214,44.966348],[6.315992,44.981186],[6.316204,44.988209],[6.322681,44.997622],[6.318199,45.003866],[6.313282,45.003859],[6.256173,44.996219],[6.214373,45.00568],[6.203138,45.012447],[6.202925,45.022933],[6.208686,45.028336],[6.209563,45.042296],[6.218717,45.062001],[6.22008,45.065368],[6.243285,45.069948],[6.229263,45.106807],[6.245508,45.119204],[6.258496,45.123655],[6.260566,45.126848],[6.276888,45.114933],[6.293342,45.108636],[6.317031,45.111934],[6.332876,45.119618],[6.334233,45.122939],[6.362713,45.105032],[6.374601,45.082295],[6.367174,45.073256],[6.364878,45.070171],[6.396888,45.061989],[6.406143,45.064248],[6.420353,45.061217],[6.43487,45.062996],[6.453124,45.052373],[6.482138,45.056246],[6.487082,45.056407],[6.488729,45.070181],[6.481725,45.090453],[6.487117,45.096134],[6.507778,45.105994],[6.510423,45.109003],[6.530287,45.099065],[6.540052,45.09953],[6.561367,45.107314],[6.563908,45.113821],[6.57357,45.120596],[6.576531,45.123097],[6.589941,45.119196],[6.61353,45.120957],[6.626688,45.111841],[6.629987,45.109327],[6.627005,45.102601],[6.644249,45.085408],[6.647346,45.075157],[6.660508,45.070228],[6.662417,45.066947],[6.661698,45.052847],[6.668215,45.043447],[6.665986,45.033101],[6.672269,45.023475],[6.675737,45.020926],[6.725591,45.020873],[6.739483,45.016891],[6.750323,44.997723],[6.737363,44.99276],[6.737852,44.989228],[6.746425,44.986181],[6.764229,44.96648],[6.762715,44.956219],[6.748995,44.937862],[6.757845,44.935093],[6.750299,44.922837],[6.750462,44.908969],[6.751017,44.905507],[6.77427,44.90142],[6.784785,44.889605],[6.799305,44.888875],[6.807274,44.876442],[6.839718,44.86073],[6.853711,44.857432],[6.864815,44.850646],[6.87927,44.850051],[6.883381,44.848114],[6.911828,44.845365],[6.927466,44.858623],[6.935782,44.861177],[6.970289,44.847452],[7.003335,44.840306],[7.010605,44.827323],[7.020876,44.82092],[7.019277,44.813973],[7.002506,44.792431],[6.999398,44.789676],[7.011426,44.783679],[7.02342,44.768208],[7.022398,44.750747],[7.030783,44.730601],[7.042603,44.719289],[7.06478,44.71176],[7.076003,44.684672],[7.074445,44.681304],[7.064807,44.680108],[7.028777,44.691127],[7.000216,44.689342],[6.995415,44.690245],[6.986232,44.688332],[6.96794,44.677479],[6.963184,44.678109],[6.958268,44.672345],[6.957566,44.662355],[6.950626,44.657772],[6.948335,44.654816],[6.953784,44.637819],[6.967177,44.622908],[6.954004,44.61954],[6.938622,44.602062],[6.930577,44.574623],[6.918222,44.56887],[6.907839,44.557313],[6.879202,44.551879],[6.869948,44.53936],[6.855214,44.530295],[6.859817,44.505844],[6.861337,44.502474],[6.867761,44.49329],[6.871026,44.490778],[6.875477,44.489216],[6.879458,44.479351],[6.904245,44.467876],[6.913404,44.451454],[6.936453,44.43823],[6.941299,44.429242],[6.927684,44.424997],[6.91292,44.424657],[6.899048,44.420832],[6.895392,44.41851],[6.894163,44.415093],[6.895943,44.372661],[6.887045,44.364594],[6.887431,44.361057],[6.906448,44.357571],[6.918807,44.351913],[6.929163,44.332446],[6.95721,44.312792],[6.960882,44.295842],[6.973696,44.286024],[6.991838,44.281383],[6.995891,44.274989],[6.998108,44.250394],[7.007013,44.23783],[7.014605,44.233335],[7.019263,44.2322],[7.023877,44.233446],[7.038886,44.224882],[7.076443,44.231758],[7.095704,44.221261],[7.11845,44.214668],[7.141896,44.201771],[7.160278,44.205726],[7.177321,44.199111],[7.187029,44.200264],[7.193171,44.190628],[7.193611,44.187096],[7.202643,44.184731],[7.221238,44.169144],[7.233962,44.172845],[7.242278,44.170847],[7.249911,44.15804],[7.257824,44.154037],[7.262782,44.14803],[7.28433,44.142097],[7.292969,44.144941],[7.34094,44.145115],[7.35898,44.117058],[7.368716,44.117075],[7.381562,44.122052],[7.385892,44.123672],[7.411486,44.11903],[7.42229,44.112653],[7.426949,44.112879],[7.426468,44.119876],[7.432788,44.129347],[7.462122,44.12739],[7.501021,44.142224],[7.519584,44.138565],[7.535212,44.146304],[7.554766,44.147043],[7.567088,44.152823],[7.616041,44.149771],[7.627419,44.160624],[7.627821,44.164168],[7.633196,44.173561],[7.640993,44.177442],[7.679923,44.175967],[7.682914,44.170005],[7.671472,44.154877],[7.678015,44.145527],[7.676647,44.142142],[7.668199,44.133954],[7.67231,44.120922],[7.674513,44.117889],[7.689477,44.108728],[7.698646,44.096127],[7.713126,44.086668],[7.716127,44.080029],[7.712934,44.062485],[7.701635,44.043028],[7.663268,44.028605],[7.661918,44.018078],[7.662843,44.014576],[7.668848,43.997614],[7.652745,43.976015],[7.616328,43.958132],[7.59239,43.955644],[7.576588,43.947365],[7.571658,43.947193],[7.570632,43.930973],[7.558693,43.916454],[7.561345,43.899568],[7.510237,43.882123],[7.509049,43.878756],[7.506022,43.876249],[7.4989,43.87237],[7.499875,43.86593],[7.496124,43.86402],[7.496644,43.850866],[7.507622,43.839884],[7.517763,43.805933],[7.518724,43.802513],[7.530113,43.787465],[7.529827,43.784016],[7.512339,43.78028],[7.507705,43.774217],[7.488275,43.765024],[7.482765,43.749947],[7.458175,43.75924],[7.439239,43.749028],[7.437353,43.751637],[7.433472,43.749524],[7.424976,43.741272],[7.413384,43.734587],[7.412827,43.731725],[7.409527,43.729867],[7.412456,43.727712],[7.415621,43.725736],[7.404472,43.719906],[7.390464,43.719698],[7.383267,43.722583],[7.370628,43.718667],[7.357745,43.721302],[7.348299,43.714074],[7.342718,43.713558],[7.329392,43.701473],[7.341389,43.684584],[7.327545,43.677214],[7.322208,43.686456],[7.323925,43.699149],[7.320644,43.701595],[7.319556,43.70463],[7.312528,43.703846],[7.308745,43.692371],[7.307765,43.688922],[7.300207,43.685842],[7.285764,43.69446],[7.261628,43.693895],[7.247779,43.690688],[7.233471,43.681424],[7.225992,43.661179],[7.209623,43.648208],[7.205321,43.646572],[7.201811,43.651844],[7.199251,43.654836],[7.196084,43.657175],[7.178242,43.656051],[7.173519,43.655782],[7.164555,43.656252],[7.156281,43.652704],[7.145494,43.641853],[7.142434,43.639348],[7.130087,43.617797],[7.126081,43.586613],[7.12939,43.572846],[7.138079,43.564802],[7.1406,43.551138],[7.138438,43.547959],[7.129338,43.544918],[7.120636,43.546024],[7.120759,43.556191],[7.114054,43.565662],[7.101148,43.570574],[7.091386,43.570267],[7.086497,43.569821],[7.074314,43.565423],[7.057797,43.55033],[7.039733,43.539364],[7.035501,43.539242],[7.030984,43.545447],[7.02243,43.548872],[6.993726,43.548609],[6.970386,43.544772],[6.954819,43.536692],[6.951571,43.534117],[6.938369,43.516392],[6.938894,43.509607],[6.951501,43.50523],[6.954791,43.499263],[6.946847,43.486851],[6.933847,43.48346],[6.933726,43.480068],[6.924581,43.472049],[6.92131,43.451306],[6.894866,43.436938],[6.893798,43.430284],[6.890097,43.428012],[6.874789,43.426255],[6.864121,43.432833],[6.858407,43.427795],[6.8575,43.41428],[6.854202,43.411903],[6.841518,43.416227],[6.836735,43.416396],[6.827512,43.417606],[6.787761,43.408952],[6.766054,43.42159],[6.763676,43.424528],[6.759109,43.423659],[6.746774,43.418683],[6.735328,43.407767],[6.729116,43.39484],[6.730766,43.388281],[6.714532,43.36808],[6.718038,43.358341],[6.713815,43.345878],[6.686824,43.341579],[6.682171,43.340981],[6.668772,43.331305],[6.665875,43.321074],[6.668219,43.314303],[6.632801,43.305711],[6.625814,43.300696],[6.62073,43.295922],[6.585295,43.27922],[6.585382,43.2725],[6.586694,43.269224],[6.584916,43.266788],[6.590809,43.263477],[6.594155,43.262195],[6.619595,43.264101],[6.623616,43.265344],[6.643543,43.273966],[6.663851,43.265391],[6.675978,43.278369],[6.696529,43.264601],[6.688909,43.252002],[6.681031,43.248444],[6.677776,43.24588],[6.665308,43.242369],[6.662453,43.225141],[6.665254,43.211466],[6.677862,43.197962],[6.659517,43.195156],[6.644396,43.186843],[6.640826,43.180382],[6.644069,43.170755],[6.647,43.16944],[6.64659,43.167806],[6.645069,43.167488],[6.633894,43.171521],[6.616284,43.162587],[6.598473,43.18292],[6.556951,43.188178],[6.552277,43.187423],[6.537324,43.178938],[6.535731,43.165979],[6.521828,43.164103],[6.494056,43.150898],[6.490166,43.15287],[6.465464,43.156818],[6.452186,43.154417],[6.448245,43.152661],[6.440647,43.144846],[6.429318,43.150555],[6.405947,43.148334],[6.368112,43.135641],[6.36391,43.125753],[6.360394,43.11623],[6.36638,43.092627],[6.363991,43.08956],[6.354469,43.088885],[6.326106,43.092466],[6.312936,43.106798],[6.294076,43.108718],[6.28631,43.111296],[6.286518,43.114521],[6.276057,43.120088],[6.271819,43.120991],[6.258864,43.120069],[6.238769,43.113222],[6.234334,43.113013],[6.201047,43.115429],[6.180415,43.106454],[6.162001,43.090316],[6.153594,43.073748],[6.149596,43.052857],[6.152821,43.039063],[6.163394,43.030895],[6.149844,43.027422],[6.133858,43.034441],[6.120455,43.032536],[6.116722,43.034759],[6.099998,43.028564],[6.093452,43.037159],[6.101109,43.04107],[6.119959,43.039958],[6.130489,43.04679],[6.132424,43.057147],[6.12708,43.074333],[6.113569,43.083599],[6.108785,43.083918],[6.08151,43.087357],[6.051102,43.079177],[6.037018,43.078702],[6.032563,43.077586],[6.019387,43.080368],[6.021986,43.09557],[5.997932,43.104711],[5.993279,43.104994],[5.97906,43.10654],[5.929023,43.104996],[5.931487,43.115082],[5.920388,43.121044],[5.91136,43.119651],[5.905189,43.114687],[5.891964,43.117023],[5.887337,43.116148],[5.885618,43.117148],[5.88496,43.104205],[5.907216,43.100277],[5.906443,43.093682],[5.895977,43.082597],[5.903883,43.078901],[5.915412,43.084026],[5.92805,43.080686],[5.941315,43.0827],[5.948441,43.078203],[5.950055,43.074937],[5.945829,43.069103],[5.932012,43.071146],[5.913907,43.067065],[5.903569,43.073375],[5.896593,43.077738],[5.887468,43.076454],[5.872799,43.067594],[5.860028,43.049367],[5.847225,43.049293],[5.843581,43.047049],[5.829989,43.049883],[5.814742,43.062891],[5.797819,43.069038],[5.79584,43.072275],[5.804867,43.080221],[5.810012,43.093632],[5.807881,43.100338],[5.812705,43.106332],[5.810253,43.113002],[5.807265,43.115717],[5.793786,43.113907],[5.7711,43.116797],[5.779776,43.132189],[5.770334,43.139011],[5.750781,43.131268],[5.748323,43.134093],[5.730274,43.135461],[5.725912,43.136526],[5.718975,43.14553],[5.695909,43.145092],[5.684359,43.156009],[5.684189,43.159505],[5.693446,43.16741],[5.692399,43.174222],[5.685827,43.179129],[5.676397,43.178122],[5.671875,43.179269],[5.646046,43.18805],[5.622601,43.185563],[5.612854,43.178078],[5.610538,43.167937],[5.604779,43.162371],[5.574389,43.172577],[5.558413,43.185557],[5.555549,43.188378],[5.548151,43.196869],[5.548442,43.206807],[5.540941,43.210529],[5.532034,43.211684],[5.513058,43.204253],[5.510209,43.198136],[5.50472,43.200343],[5.458471,43.210271],[5.445482,43.204257],[5.426896,43.208421],[5.419124,43.206435],[5.396697,43.212362],[5.391961,43.212098],[5.364386,43.20782],[5.34196,43.213312],[5.349102,43.229787],[5.359573,43.236641],[5.362532,43.243074],[5.37073,43.246359],[5.372868,43.259748],[5.365954,43.269205],[5.349456,43.281724],[5.354913,43.291072],[5.365526,43.2957],[5.357338,43.322059],[5.337261,43.341584],[5.335269,43.34781],[5.318518,43.354461],[5.317781,43.357915],[5.304191,43.360428],[5.2826,43.353749],[5.279491,43.351232],[5.258061,43.338434],[5.23728,43.331639],[5.224243,43.328281],[5.184996,43.332294],[5.180496,43.331629],[5.172103,43.332338],[5.165452,43.327927],[5.1474,43.326442],[5.134583,43.329197],[5.096744,43.329335],[5.088465,43.332536],[5.081484,43.327659],[5.067585,43.33058],[5.054341,43.326648],[5.036386,43.330956],[5.022317,43.340687],[5.022418,43.35412],[5.002422,43.37735],[4.999269,43.380018],[4.991497,43.388224],[4.990482,43.394569],[4.998715,43.397441],[4.998102,43.400773],[4.995505,43.403485],[4.986308,43.404131],[4.978808,43.399229],[4.972761,43.421576],[4.970185,43.424602],[4.9252,43.432196],[4.912417,43.427293],[4.890158,43.409722],[4.888997,43.416482],[4.896276,43.427595],[4.879085,43.424079],[4.863772,43.437689],[4.861022,43.448121],[4.858338,43.450687],[4.854889,43.449081],[4.855162,43.445666],[4.873421,43.416591],[4.873714,43.413058],[4.871733,43.409844],[4.867696,43.407916],[4.862877,43.408152],[4.858676,43.409943],[4.831947,43.425273],[4.831433,43.419991],[4.85672,43.403254],[4.853031,43.398296],[4.836466,43.405543],[4.838655,43.402582],[4.834886,43.397012],[4.838453,43.39472],[4.860808,43.38884],[4.83966,43.375721],[4.867902,43.365987],[4.880551,43.358254],[4.903338,43.370445],[4.914874,43.381661],[4.914735,43.375265],[4.862444,43.338321],[4.857128,43.328685],[4.847295,43.326855],[4.837984,43.327851],[4.813158,43.33914],[4.771267,43.349174],[4.727118,43.350167],[4.663632,43.346402],[4.605821,43.353502],[4.57897,43.362202],[4.567104,43.368934],[4.558763,43.377468],[4.558901,43.384385],[4.594584,43.402797],[4.595988,43.406241],[4.586959,43.426575],[4.574367,43.437458],[4.553438,43.446677],[4.525505,43.453292],[4.457127,43.455781],[4.424678,43.448752],[4.400303,43.447433],[4.377024,43.452617],[4.235183,43.460004],[4.230283,43.460185],[4.231161,43.477541],[4.239777,43.49373],[4.237743,43.496884],[4.240814,43.499405],[4.244686,43.501268],[4.293603,43.51404],[4.320651,43.527823],[4.309193,43.546571],[4.315141,43.551871],[4.318393,43.557168],[4.322314,43.551712],[4.3161,43.546749],[4.332823,43.535935],[4.35391,43.547408],[4.37246,43.549677],[4.390361,43.560869],[4.404608,43.560523],[4.408973,43.561934],[4.41426,43.567552],[4.4094,43.576281],[4.424853,43.584476],[4.443527,43.583212],[4.448317,43.583184],[4.452809,43.584573],[4.473576,43.603651],[4.473776,43.610442],[4.466497,43.61496],[4.448272,43.610344],[4.438799,43.611406],[4.428685,43.619063],[4.42723,43.625822],[4.451605,43.664233],[4.477416,43.672921],[4.476546,43.686802],[4.486421,43.698853],[4.49079,43.700404],[4.524575,43.702501],[4.537599,43.707052],[4.559326,43.699444],[4.578489,43.69707],[4.597812,43.686753],[4.626473,43.68803],[4.613145,43.714193],[4.61194,43.724724],[4.627175,43.754252],[4.628118,43.757712],[4.629507,43.761121],[4.650196,43.780935],[4.652914,43.787725],[4.654449,43.809007],[4.64297,43.832114],[4.652168,43.839752],[4.664997,43.843842],[4.666767,43.846983],[4.661874,43.852341],[4.643675,43.851852],[4.646975,43.858031],[4.64173,43.8673],[4.661583,43.873589],[4.662511,43.870388],[4.66694,43.87636],[4.692706,43.884587],[4.705497,43.894488],[4.7079,43.897411],[4.703196,43.897035],[4.698503,43.89664],[4.723398,43.906052],[4.735506,43.91651],[4.739556,43.921108],[4.738793,43.923866],[4.741431,43.926641],[4.748232,43.931132],[4.778539,43.93879],[4.791981,43.952271],[4.814369,43.964676],[4.810178,43.977915],[4.812967,43.988006],[4.8363,43.985033],[4.840941,43.985918],[4.844996,43.992142],[4.845344,43.995593],[4.843118,44.00042],[4.842997,44.003987],[4.839417,44.014022],[4.82029,44.017015],[4.813646,44.034041],[4.807764,44.039774],[4.799013,44.046013],[4.795865,44.04791],[4.792418,44.049848],[4.78741,44.054918],[4.786807,44.064353],[4.784113,44.067215],[4.762887,44.074869],[4.760035,44.078344],[4.760117,44.081791],[4.757721,44.087933],[4.752939,44.087983],[4.727819,44.078452],[4.71973,44.085584],[4.719627,44.088781],[4.705082,44.108175],[4.705735,44.111604],[4.718133,44.140678],[4.718725,44.152381],[4.71719,44.159094],[4.717117,44.162498],[4.717296,44.165934],[4.717361,44.169328],[4.716251,44.176043],[4.721891,44.18467],[4.717272,44.189973],[4.708316,44.191724],[4.703839,44.197663],[4.70483,44.201078],[4.710297,44.206836],[4.708595,44.213498],[4.699936,44.216108],[4.681893,44.211741],[4.673657,44.214711],[4.672933,44.218603],[4.67736,44.234975],[4.653075,44.255915],[4.651479,44.259153],[4.648551,44.267471],[4.649224,44.27036],[4.652364,44.291272],[4.653181,44.294807],[4.651542,44.326317],[4.650615,44.329806],[4.654887,44.328346],[4.679884,44.320692],[4.713017,44.320649],[4.717089,44.325907],[4.721663,44.326592],[4.758399,44.325326],[4.762995,44.3251],[4.771902,44.317537],[4.780956,44.317121],[4.799988,44.303549],[4.804563,44.303897],[4.802926,44.280793],[4.804479,44.277617],[4.805857,44.274839],[4.803999,44.269206],[4.812513,44.258019],[4.813118,44.245206],[4.812141,44.242062],[4.813448,44.232424],[4.820886,44.228889],[4.825342,44.228446],[4.853171,44.244366],[4.857094,44.245993],[4.876029,44.260266],[4.88025,44.261769],[4.896965,44.264408],[4.901283,44.264279],[4.903477,44.259478],[4.927221,44.262108],[4.932031,44.262455],[4.941528,44.26941],[4.967555,44.277726],[4.971688,44.279426],[4.985462,44.285517],[4.989594,44.285766],[5.002729,44.285374],[5.013072,44.291074],[5.01715,44.292242],[5.024772,44.296784],[5.0295,44.297894],[5.056515,44.305397],[5.060245,44.307614],[5.073922,44.286944],[5.076512,44.284086],[5.086471,44.283933],[5.109641,44.280367],[5.149503,44.300656],[5.153262,44.310154],[5.161976,44.313387],[5.166434,44.314857],[5.168839,44.314125],[5.172827,44.308211],[5.169743,44.302014],[5.170106,44.298738],[5.168429,44.292243],[5.150647,44.281877],[5.147458,44.269171],[5.160531,44.265619],[5.162089,44.248948],[5.161548,44.245591],[5.158751,44.242872],[5.151814,44.238308],[5.150007,44.235237],[5.163507,44.226355],[5.167913,44.225304],[5.175606,44.220866],[5.208775,44.214423],[5.23815,44.213233],[5.240446,44.230827],[5.244512,44.230707],[5.248536,44.23112],[5.252657,44.231135],[5.256509,44.230056],[5.276283,44.220995],[5.280668,44.219796],[5.291804,44.214647],[5.299429,44.206924],[5.303298,44.205393],[5.303624,44.208799],[5.317996,44.208794],[5.335726,44.204311],[5.35579,44.213599],[5.372391,44.206686],[5.37667,44.205134],[5.380358,44.202911],[5.384529,44.201191],[5.383188,44.199068],[5.381281,44.192382],[5.38665,44.179272],[5.383201,44.158797],[5.383241,44.155285],[5.39695,44.152338],[5.415834,44.154652],[5.422917,44.150039],[5.431059,44.151506],[5.435756,44.152249],[5.436695,44.14207],[5.443033,44.137949],[5.447571,44.136758],[5.451161,44.121135],[5.454716,44.119228],[5.493838,44.115436],[5.498788,44.115719]],[[5.014453,43.555546],[5.012691,43.55223],[5.015638,43.527614],[5.002653,43.512779],[4.998675,43.502584],[5.003477,43.48536],[5.000815,43.474933],[5.006775,43.46972],[5.044516,43.468394],[5.053299,43.460353],[5.054861,43.446338],[5.054155,43.442832],[5.060963,43.422544],[5.058618,43.408774],[5.062131,43.402417],[5.080698,43.399793],[5.094708,43.401539],[5.09943,43.40206],[5.118567,43.404243],[5.126604,43.400251],[5.136299,43.400421],[5.171916,43.418639],[5.198607,43.439592],[5.200041,43.446394],[5.216388,43.447159],[5.220468,43.449163],[5.226715,43.45385],[5.228384,43.46026],[5.229661,43.46675],[5.224678,43.475601],[5.223864,43.47884],[5.218799,43.487224],[5.207307,43.491851],[5.203014,43.491128],[5.198722,43.489451],[5.164353,43.470009],[5.154339,43.458004],[5.14948,43.457912],[5.125102,43.483935],[5.113545,43.507147],[5.117776,43.512573],[5.117905,43.516063],[5.114249,43.522245],[5.105975,43.525628],[5.062999,43.527543],[5.04528,43.523225],[5.02297,43.556332],[5.018732,43.555808],[5.014453,43.555546]]],[[[7.067113,43.513656],[7.063221,43.515513],[7.044329,43.515833],[7.034934,43.517966],[7.032544,43.520947],[7.045842,43.523785],[7.063964,43.519531],[7.069581,43.516518],[7.067814,43.515332],[7.067113,43.513656]]],[[[6.198263,42.982033],[6.196415,42.983204],[6.19528,42.988395],[6.191609,42.990763],[6.1763,42.995996],[6.163015,42.99925],[6.163453,43.000767],[6.172399,43.006264],[6.17933,43.00786],[6.199031,43.001722],[6.21098,43.002905],[6.214421,43.005232],[6.218038,43.011839],[6.229773,43.010479],[6.233982,43.012261],[6.239612,43.023883],[6.242019,43.023279],[6.244071,43.02004],[6.247721,43.017751],[6.251653,43.004104],[6.249463,42.999183],[6.247704,42.997994],[6.238313,42.997153],[6.228222,42.992983],[6.214866,42.989845],[6.207668,42.98295],[6.198263,42.982033]]],[[[6.472761,43.020037],[6.472229,43.018326],[6.459776,43.013992],[6.451052,43.016856],[6.44352,43.007789],[6.437651,43.004997],[6.433113,43.008734],[6.434805,43.015549],[6.433698,43.01715],[6.434826,43.020445],[6.439714,43.024457],[6.458014,43.028452],[6.463223,43.038205],[6.470504,43.045209],[6.472538,43.046178],[6.474595,43.04712],[6.504976,43.052608],[6.508841,43.04853],[6.508485,43.045282],[6.502137,43.042806],[6.490071,43.04219],[6.486049,43.040223],[6.479925,43.030635],[6.473687,43.025247],[6.472761,43.020037]]],[[[6.397098,42.992802],[6.387298,42.997801],[6.372874,42.996922],[6.370849,43.00154],[6.381625,43.008403],[6.382863,43.01174],[6.392092,43.01307],[6.407759,43.017903],[6.411792,43.016389],[6.412815,43.011271],[6.418952,43.011751],[6.417089,43.006994],[6.405284,42.995846],[6.398567,42.994222],[6.397098,42.992802]]],[[[4.89291,44.364827],[4.893313,44.367873],[4.903708,44.372763],[4.907085,44.374631],[4.911091,44.384728],[4.910162,44.395153],[4.918515,44.407785],[4.948766,44.416637],[4.951931,44.419147],[4.955663,44.420251],[4.959697,44.42027],[4.970846,44.430129],[4.984073,44.423183],[4.98861,44.4232],[5.006196,44.411716],[5.013923,44.415627],[5.01876,44.415979],[5.017716,44.407138],[5.013498,44.405441],[5.018616,44.392588],[5.032759,44.390896],[5.0476,44.38212],[5.070882,44.383225],[5.072028,44.378512],[5.07032,44.376446],[5.066647,44.374191],[5.053313,44.364833],[5.025072,44.360998],[5.021478,44.344352],[5.009006,44.333766],[5.013335,44.325655],[4.997298,44.318375],[4.992205,44.312623],[4.987018,44.292719],[4.983551,44.295032],[4.921836,44.308797],[4.917099,44.308502],[4.889463,44.304019],[4.891209,44.307114],[4.890664,44.313723],[4.882096,44.325323],[4.895328,44.338061],[4.891418,44.340065],[4.87911,44.345372],[4.869527,44.345076],[4.873588,44.351022],[4.892057,44.361457],[4.89291,44.364827]]]]},"properties":{"nom":"Provence-Alpes-C\u00f4te d'Azur","code":"93"}},{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[9.402269,41.858707],[9.40134,41.855258],[9.405615,41.820517],[9.395405,41.797264],[9.399036,41.787113],[9.396644,41.773723],[9.40669,41.767795],[9.404187,41.720457],[9.401378,41.717736],[9.404344,41.715032],[9.399548,41.694536],[9.379808,41.68641],[9.37325,41.677329],[9.383941,41.667048],[9.385149,41.653423],[9.38287,41.650012],[9.368152,41.637174],[9.360269,41.640373],[9.351247,41.639567],[9.346912,41.633532],[9.353355,41.62097],[9.350589,41.618579],[9.323208,41.617727],[9.313374,41.625129],[9.313614,41.62861],[9.305271,41.625823],[9.305314,41.615532],[9.286701,41.605766],[9.283775,41.595518],[9.286961,41.589021],[9.294481,41.584814],[9.298835,41.586039],[9.320078,41.60405],[9.333619,41.602162],[9.34324,41.594725],[9.356662,41.596003],[9.361264,41.596049],[9.367819,41.593282],[9.351345,41.577001],[9.347986,41.563808],[9.336623,41.559062],[9.33212,41.559686],[9.298422,41.541707],[9.287077,41.531065],[9.27429,41.528047],[9.283002,41.516617],[9.271516,41.501857],[9.276703,41.496304],[9.284676,41.499754],[9.28651,41.496707],[9.287259,41.483791],[9.282937,41.477484],[9.272049,41.471138],[9.271555,41.464763],[9.262851,41.46251],[9.243115,41.447701],[9.225862,41.442532],[9.2246,41.43279],[9.227671,41.426367],[9.224478,41.416236],[9.216085,41.414123],[9.216774,41.410876],[9.218589,41.407427],[9.222895,41.406279],[9.258989,41.427417],[9.263385,41.426434],[9.263234,41.422966],[9.258217,41.413296],[9.25074,41.409321],[9.244524,41.400164],[9.240734,41.398129],[9.223104,41.377944],[9.219627,41.368038],[9.182812,41.365997],[9.16978,41.383335],[9.152261,41.386186],[9.15566,41.388643],[9.139983,41.39014],[9.125563,41.397441],[9.099378,41.39283],[9.091646,41.400096],[9.092722,41.403474],[9.097376,41.41327],[9.106897,41.420351],[9.106884,41.427196],[9.118701,41.437708],[9.11301,41.441589],[9.099503,41.443376],[9.095534,41.449469],[9.080824,41.442003],[9.072386,41.444213],[9.067328,41.449747],[9.068437,41.463037],[9.077882,41.474476],[9.079939,41.47749],[9.071007,41.475982],[9.055779,41.462995],[9.047583,41.459993],[9.043022,41.459986],[9.03507,41.467828],[9.022137,41.466267],[9.015584,41.474946],[9.002337,41.476444],[8.998816,41.47868],[8.997088,41.483615],[8.994792,41.485538],[8.983071,41.475357],[8.974871,41.483335],[8.966356,41.485459],[8.96214,41.491048],[8.945062,41.489847],[8.940488,41.490089],[8.936675,41.492079],[8.924253,41.491323],[8.91346,41.506177],[8.886087,41.507951],[8.885119,41.517982],[8.878203,41.522539],[8.856037,41.518773],[8.846536,41.518159],[8.842171,41.52322],[8.85237,41.535131],[8.851584,41.542216],[8.840386,41.545694],[8.821499,41.54632],[8.812014,41.553851],[8.808372,41.555944],[8.794641,41.556496],[8.787374,41.560273],[8.789404,41.566194],[8.799291,41.57313],[8.790251,41.585029],[8.781873,41.58766],[8.779149,41.590467],[8.789267,41.605495],[8.792686,41.629142],[8.800028,41.632906],[8.804489,41.638486],[8.817864,41.631073],[8.852231,41.647112],[8.865757,41.648033],[8.869503,41.646095],[8.8761,41.650742],[8.883196,41.670527],[8.912007,41.67961],[8.915783,41.681568],[8.912302,41.690968],[8.889315,41.689628],[8.878116,41.695172],[8.84219,41.697616],[8.828976,41.707156],[8.825423,41.709389],[8.812779,41.713537],[8.786075,41.703374],[8.773258,41.716704],[8.783939,41.731886],[8.784015,41.735358],[8.777758,41.740349],[8.768761,41.740681],[8.714522,41.722558],[8.709893,41.722288],[8.705529,41.723524],[8.706298,41.733721],[8.702504,41.739627],[8.670291,41.742718],[8.661252,41.740998],[8.65924,41.744213],[8.66307,41.750302],[8.671986,41.752361],[8.684422,41.747872],[8.708499,41.757862],[8.712106,41.760088],[8.730464,41.779696],[8.723744,41.78868],[8.713017,41.795215],[8.712638,41.801242],[8.734522,41.798054],[8.753967,41.811701],[8.757335,41.809328],[8.771294,41.81124],[8.779907,41.833041],[8.756213,41.845443],[8.787239,41.849941],[8.789592,41.853054],[8.790674,41.856093],[8.788534,41.86828],[8.782124,41.872955],[8.780459,41.88227],[8.800192,41.889636],[8.802448,41.896015],[8.799274,41.902225],[8.797666,41.905367],[8.778898,41.925205],[8.769819,41.926602],[8.761164,41.924309],[8.75235,41.932492],[8.747681,41.93298],[8.74089,41.928657],[8.739453,41.91825],[8.719683,41.909146],[8.673406,41.905276],[8.641075,41.909468],[8.636808,41.907976],[8.609261,41.895592],[8.612876,41.901911],[8.611022,41.912061],[8.620701,41.927685],[8.621954,41.937778],[8.618496,41.940088],[8.609461,41.939838],[8.593911,41.963567],[8.618387,41.97105],[8.622871,41.970487],[8.644462,41.967948],[8.662883,41.976762],[8.668423,41.98214],[8.669048,41.984745],[8.669042,41.990186],[8.667411,41.993066],[8.659055,41.992559],[8.654614,42.001246],[8.656559,42.004015],[8.658264,42.010562],[8.688571,42.02669],[8.706992,42.027769],[8.719993,42.032247],[8.725381,42.04154],[8.742971,42.043082],[8.746189,42.049537],[8.743853,42.056304],[8.743931,42.059452],[8.740537,42.061718],[8.733688,42.065359],[8.720526,42.064162],[8.717195,42.077387],[8.71327,42.083409],[8.705993,42.086802],[8.70926,42.096518],[8.700924,42.107841],[8.701201,42.111186],[8.689081,42.113847],[8.679867,42.106775],[8.662682,42.10383],[8.650968,42.116987],[8.64438,42.121204],[8.635584,42.120078],[8.633143,42.123018],[8.623971,42.123776],[8.611144,42.133393],[8.584059,42.130608],[8.5923,42.142668],[8.585238,42.150878],[8.576325,42.152627],[8.56408,42.147722],[8.560186,42.145845],[8.562846,42.152065],[8.579598,42.157634],[8.591733,42.167706],[8.584167,42.171033],[8.566028,42.170293],[8.564966,42.176331],[8.582969,42.178933],[8.586424,42.181247],[8.584858,42.182744],[8.582377,42.183271],[8.578621,42.192937],[8.5804,42.202969],[8.570208,42.208811],[8.573701,42.215096],[8.570492,42.221364],[8.572773,42.227767],[8.57003,42.230533],[8.560865,42.231167],[8.552525,42.228099],[8.545466,42.232531],[8.54506,42.238625],[8.563363,42.23781],[8.606866,42.250242],[8.608807,42.253419],[8.635878,42.252939],[8.643457,42.256951],[8.6843,42.26288],[8.688917,42.263453],[8.691251,42.266121],[8.690553,42.274917],[8.691003,42.277551],[8.687189,42.282008],[8.682676,42.282016],[8.675395,42.284766],[8.672397,42.29427],[8.660499,42.298996],[8.660471,42.302349],[8.639531,42.301076],[8.636827,42.303616],[8.62767,42.31076],[8.60944,42.308012],[8.602213,42.31152],[8.600082,42.3183],[8.623362,42.32973],[8.626292,42.33645],[8.615678,42.347464],[8.602747,42.351453],[8.598413,42.35288],[8.589438,42.351505],[8.565776,42.335051],[8.556929,42.335118],[8.552554,42.364891],[8.548586,42.366729],[8.544337,42.367923],[8.546088,42.374464],[8.550006,42.375926],[8.556867,42.371531],[8.570213,42.371319],[8.57725,42.375528],[8.573411,42.381406],[8.595273,42.382898],[8.607186,42.387992],[8.603886,42.397817],[8.607768,42.404064],[8.607324,42.414126],[8.623291,42.420438],[8.632545,42.419795],[8.6368,42.418389],[8.648883,42.413928],[8.656552,42.417639],[8.661808,42.430588],[8.65121,42.441371],[8.667063,42.447134],[8.667134,42.457259],[8.675359,42.465626],[8.679452,42.467282],[8.672783,42.475695],[8.650443,42.477072],[8.664905,42.495743],[8.666982,42.51336],[8.674092,42.517326],[8.68841,42.517977],[8.699096,42.524968],[8.717823,42.525452],[8.717444,42.528916],[8.713371,42.535353],[8.720072,42.555832],[8.711851,42.572578],[8.712641,42.575916],[8.71577,42.578597],[8.723724,42.580099],[8.727004,42.566204],[8.734129,42.563757],[8.737694,42.566162],[8.759772,42.569064],[8.757775,42.562312],[8.768273,42.556147],[8.782195,42.556862],[8.794045,42.562123],[8.796519,42.565053],[8.803186,42.569919],[8.801673,42.583378],[8.809426,42.592016],[8.805765,42.601915],[8.823567,42.605443],[8.831854,42.602169],[8.843012,42.608175],[8.847486,42.609219],[8.850832,42.611298],[8.863094,42.608958],[8.867395,42.608406],[8.875234,42.615096],[8.882571,42.627304],[8.910273,42.629479],[8.919373,42.637567],[8.924094,42.637999],[8.935425,42.640742],[8.944229,42.634283],[8.948379,42.633547],[8.97558,42.638853],[8.980307,42.639337],[8.988368,42.64113],[9.000254,42.641752],[9.00311,42.643981],[9.009864,42.640436],[9.017582,42.642562],[9.029908,42.652723],[9.047827,42.656001],[9.05885,42.662139],[9.055401,42.678881],[9.058129,42.692397],[9.062212,42.693924],[9.066723,42.692757],[9.074557,42.696009],[9.082795,42.704639],[9.086233,42.714589],[9.100417,42.71562],[9.107897,42.724535],[9.12463,42.730576],[9.134116,42.729816],[9.161563,42.735894],[9.197116,42.725442],[9.210041,42.729742],[9.212789,42.732559],[9.22176,42.734193],[9.232009,42.72298],[9.234004,42.719914],[9.238745,42.71998],[9.24808,42.719886],[9.255888,42.715939],[9.256554,42.705545],[9.270595,42.696947],[9.28695,42.675864],[9.295987,42.676125],[9.321143,42.696025],[9.324862,42.717723],[9.329005,42.718813],[9.332543,42.721192],[9.342756,42.732827],[9.343822,42.739682],[9.345461,42.74258],[9.339857,42.760647],[9.338441,42.763933],[9.342646,42.790764],[9.337935,42.803934],[9.330329,42.811357],[9.3263,42.812272],[9.312045,42.833961],[9.335889,42.864506],[9.340296,42.86567],[9.328267,42.876026],[9.328078,42.886538],[9.32168,42.895811],[9.326389,42.90118],[9.351448,42.915288],[9.359476,42.922887],[9.350609,42.930693],[9.357863,42.943535],[9.347102,42.954701],[9.349903,42.960869],[9.347027,42.96343],[9.349875,42.969677],[9.343578,42.978359],[9.343577,42.997739],[9.357601,43.006221],[9.371358,43.005225],[9.383896,43.009208],[9.400951,43.007669],[9.404635,43.005636],[9.409434,43.005782],[9.416827,43.009807],[9.42574,43.00913],[9.460567,42.985852],[9.451916,42.963065],[9.455224,42.956478],[9.456432,42.953328],[9.469239,42.936468],[9.466182,42.93372],[9.470928,42.920485],[9.469755,42.906137],[9.474493,42.900103],[9.475256,42.884529],[9.477581,42.881844],[9.476916,42.878528],[9.480015,42.860159],[9.4841,42.853813],[9.481716,42.836444],[9.487022,42.826884],[9.487114,42.82354],[9.491458,42.797526],[9.469851,42.766473],[9.468417,42.752838],[9.462914,42.743427],[9.461327,42.740167],[9.45645,42.720741],[9.456258,42.717586],[9.456045,42.714568],[9.454509,42.708121],[9.45487,42.701459],[9.446972,42.685834],[9.44806,42.665543],[9.449197,42.662245],[9.450927,42.659001],[9.462639,42.639999],[9.482955,42.616187],[9.485803,42.613362],[9.515923,42.58339],[9.526146,42.568197],[9.527541,42.564963],[9.534093,42.526342],[9.534758,42.52281],[9.529569,42.499026],[9.529585,42.49558],[9.530468,42.486379],[9.531423,42.483371],[9.53492,42.473694],[9.536057,42.470468],[9.541639,42.457993],[9.540881,42.444925],[9.540876,42.441624],[9.542202,42.431296],[9.543386,42.427949],[9.539184,42.415229],[9.538228,42.412013],[9.53572,42.397006],[9.535249,42.393996],[9.532308,42.382055],[9.532625,42.379023],[9.534738,42.362244],[9.535137,42.358856],[9.53559,42.355725],[9.540421,42.337291],[9.541532,42.331469],[9.542538,42.32862],[9.552585,42.302559],[9.553671,42.299236],[9.55983,42.282668],[9.555494,42.255457],[9.555098,42.252028],[9.55322,42.24144],[9.553137,42.2201],[9.558744,42.195748],[9.554432,42.160352],[9.554385,42.156793],[9.554876,42.145356],[9.556247,42.142665],[9.549284,42.103865],[9.499644,42.051416],[9.496981,42.048451],[9.494771,42.045423],[9.457181,42.002201],[9.441409,41.989624],[9.439854,41.987682],[9.415285,41.958404],[9.411856,41.941459],[9.412962,41.938093],[9.414772,41.935099],[9.416116,41.928609],[9.408977,41.906617],[9.402379,41.897762],[9.397681,41.87784],[9.399537,41.861406],[9.402269,41.858707]]],[[[9.262569,41.363071],[9.253598,41.369704],[9.259125,41.37258],[9.265988,41.372241],[9.268173,41.369273],[9.272667,41.369148],[9.272825,41.366014],[9.271029,41.36496],[9.266923,41.365476],[9.26659,41.363794],[9.262569,41.363071]]]]},"properties":{"nom":"Corse","code":"94"}}]}
NAME CODE 01/01/2000 01/01/2001 01/01/2002 01/01/2003 01/01/2004 01/01/2005 01/01/2006 01/01/2007 01/01/2008 01/01/2009 01/01/2010 01/01/2011 01/01/2012 01/01/2013 01/01/2014 01/01/2015
Euros 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
Ounce of gold 257.69 242.7 293.13 411.74 508.77 553.63 758.4 955.22 1282.5 1358.5 1625.3 2186.72 2144.31 1876.63 1681.88 1287.04
Ounce of silver 4.62 3.58 4.73 5.66 8.71 8.71 15.07 17.82 22.06 20.92 26.51 48.72 39.83 31.87 25.24 17.75
RSA (units of welfare) 389.1 398.2 405.6 411.7 417.9 425.4 433.1 440.9 447.9 454.6 460.1 467 474.9 492.9 509.3 524.2
Billionth of M3 4723.3 5026.8 5430.3 5805.9 6172.4 6581.6 7120.5 7825.2 8786.1 9400 9325.4 9308 9484 9759 9898 10438
ALSACE 42 1679 1750 1799 1894 2037 2269 2440 2615 2684 2732 2784 3078 3131 3129 3300 3238
AQUITAINE 72 1766 1858 1813 2137 2342 2529 2871 2992 2991 3137 3284 3469 3580 3613 3603 3624
AUVERGNE 83 1546 1691 1706 1960 2068 2468 2458 2621 2443 2511 2642 2954 2940 2926 2941 3046
BASSE NORMANDIE 25 1811 1808 1854 2082 2091 2424 2670 2887 3210 3196 3416 3446 3601 3682 3763 3369
BOURGOGNE 26 1573 1642 1732 1881 2028 2217 2443 2497 2635 2722 2776 2789 2811 2861 2949 3024
BRETAGNE 53 1696 1753 1858 1985 2121 2283 2460 2739 2776 2769 2862 3123 3096 3166 3209 3213
CENTRE-VAL DE LOIRE 24 1680 1732 1840 2025 2107 2346 2466 2666 2807 2808 2967 3078 3183 3176 3078 3034
CHAMPAGNE-ARDENNE 21 1585 1536 1619 1771 1940 2172 2228 2673 2788 2739 2977 3168 3172 3305 3151 3314
CORSE 94 1632 1643 1750 1955 2196 2382 2591 3005 2990 3012 3199 3168 3376 3499 3439 3581
FRANCHE COMTE 43 1422 1511 1651 1829 2005 2160 2354 2375 2391 2572 2706 2716 2839 2776 2952 2874
HAUTE NORMANDIE 23 1786 1806 1810 1988 2063 2329 2622 2821 2910 2872 2960 3182 3163 3210 3148 3229
ILE DE FRANCE 11 2671 2810 2991 2977 3213 3690 4126 4133 4141 4176 4550 4932 4842 4676 4707 4754
LANGUEDOC-ROUSSILLON 91 1630 1747 1971 2162 2332 2716 2901 3103 3138 3226 3262 3366 3490 3612 3562 3699
LIMOUSIN 74 1548 1554 1655 1754 1967 2329 2492 2579 2555 2515 2627 2642 2623 2530 2664 2866
LORRAINE 41 1554 1577 1664 1770 1949 2109 2203 2304 2365 2408 2532 2684 2645 2690 2678 2931
MIDI-PYRENEES 73 1678 1773 1954 2055 2258 2525 2747 2936 3016 3042 3297 3378 3418 3441 3375 3377
NORD-PAS-DE-CALAIS 31 1796 1812 1835 1939 2183 2417 2675 2894 3007 3013 3165 3226 3079 3157 3157 3227
PAYS DE LA LOIRE 52 1792 1810 1942 2083 2381 2620 2719 2905 3033 3001 3160 3416 3366 3437 3444 3496
PICARDIE 22 1802 1788 1831 1929 1938 2258 2433 2812 2818 2984 3033 3385 3186 3104 2991 3113
POITOU-CHARENTES 54 1728 1787 2102 2019 2162 2367 2520 2903 3008 3025 3537 3454 3591 3813 3725 3640
PROVENCE-ALPES-COTE D AZUR 93 2148 2345 2578 2805 3191 3565 3739 3968 3951 3870 4024 4184 4328 4233 4006 4186
RHONE-ALPES 82 1780 1859 2010 2250 2579 2873 3110 3440 3349 3376 3551 3733 3709 3713 3759 3851
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment