Skip to content

Instantly share code, notes, and snippets.

@andreaangeli
Created August 25, 2014 19:37
Show Gist options
  • Save andreaangeli/3f8c7be9353b1a8d69e5 to your computer and use it in GitHub Desktop.
Save andreaangeli/3f8c7be9353b1a8d69e5 to your computer and use it in GitHub Desktop.
Italian GDP per capita - Leaflet Choropleth

A Leaflet Choropleth about the Italian GDP per capita

<!DOCTYPE html>
<html>
<head>
<title>PIL pro capite delle regioni italiane</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="leaflet.css" />
<style>
#map {
width: 800px;
height: 500px;
}
.info {
padding: 6px 8px;
font: 14px/16px Arial, Helvetica, sans-serif;
background: white;
background: rgba(255,255,255,0.8);
box-shadow: 0 0 15px rgba(0,0,0,0.2);
border-radius: 5px;
}
.info h4 {
margin: 0 0 5px;
color: #777;
}
.legend {
text-align: left;
line-height: 18px;
color: #555;
}
.legend i {
width: 18px;
height: 18px;
float: left;
margin-right: 8px;
opacity: 0.7;
}
</style>
</head>
<body>
<div id="map"></div>
<script src="leaflet.js"></script>
<script type="text/javascript" src="regioni.js"></script>
<script type="text/javascript">
var map = L.map('map').setView([43, 11], 5);
var osmUrl='http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png';
var osmAttrib='Map data © <a href="http://openstreetmap.org">OpenStreetMap</a> contributors';
var osm = new L.TileLayer(osmUrl, {minZoom: 5, maxZoom: 12, attribution: osmAttrib});
var Stamen_TonerBackground = L.tileLayer('http://{s}.tile.stamen.com/toner-background/{z}/{x}/{y}.png', {
attribution: 'Map tiles by <a href="http://stamen.com">Stamen Design</a>, <a href="http://creativecommons.org/licenses/by/3.0">CC BY 3.0</a> &mdash; Map data &copy; <a href="http://openstreetmap.org">OpenStreetMap</a> contributors, <a href="http://creativecommons.org/licenses/by-sa/2.0/">CC-BY-SA</a>',
subdomains: 'abcd',
minZoom: 0,
maxZoom: 20
}).addTo(map);
var info = L.control();
info.onAdd = function (map) {
this._div = L.DomUtil.create('div', 'info');
this.update();
return this._div;
};
info.update = function (props) {
this._div.innerHTML = '<h4>Pil pro capite per regione</h4>' + (props ?
'<b>' + props.name + '</b><br />' + props.pil + ' numero indice su base Italia = 100'
: 'Seleziona una regione') ;
};
info.addTo(map);
// get color depending on pil value
function getColor(d) {
return d > 114 ? '#CB181D' :
d > 100 ? '#FB6A4A' :
d > 70 ? '#FCAE91' :
d > 0 ? '#FEE5D9' :
'#cccccc';
}
//Qui inposta i colori della choropleth in base alla proprietà pil che si trova nel file json delle regioni
function style(feature) {
return {
weight: 2,
opacity: 1,
color: 'white',
dashArray: '3',
fillOpacity: 0.7,
fillColor: getColor(feature.properties.pil)
};
}
function highlightFeature(e) {
var layer = e.target;
layer.setStyle({
weight: 5,
color: '#666',
dashArray: '',
fillOpacity: 0.7
});
if (!L.Browser.ie && !L.Browser.opera) {
layer.bringToFront();
}
info.update(layer.feature.properties);
}
var geojson;
function resetHighlight(e) {
geojson.resetStyle(e.target);
info.update();
}
function zoomToFeature(e) {
map.fitBounds(e.target.getBounds());
}
function onEachFeature(feature, layer) {
layer.on({
mouseover: highlightFeature,
mouseout: resetHighlight,
click: zoomToFeature
});
}
geojson = L.geoJson(statesData, {
style: style,
onEachFeature: onEachFeature
}).addTo(map);
map.attributionControl.addAttribution('Population data &copy; <a href="http://census.gov/">US Census Bureau</a>');
var legend = L.control({position: 'bottomright'});
legend.onAdd = function (map) {
var div = L.DomUtil.create('div', 'info legend'),
grades = [0, 70, 100, 114],
labels = [],
from, to;
for (var i = 0; i < grades.length; i++) {
from = grades[i];
to = grades[i + 1];
labels.push(
'<i style="background:' + getColor(from + 1) + '"></i> ' +
from + (to ? '&ndash;' + to : '+'));
}
div.innerHTML = labels.join('<br>');
return div;
};
legend.addTo(map);
</script>
</body>
</html>
/* required styles */
.leaflet-map-pane,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile-pane,
.leaflet-tile-container,
.leaflet-overlay-pane,
.leaflet-shadow-pane,
.leaflet-marker-pane,
.leaflet-popup-pane,
.leaflet-overlay-pane svg,
.leaflet-zoom-box,
.leaflet-image-layer,
.leaflet-layer {
position: absolute;
left: 0;
top: 0;
}
.leaflet-container {
overflow: hidden;
-ms-touch-action: none;
}
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow {
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
-webkit-user-drag: none;
}
.leaflet-marker-icon,
.leaflet-marker-shadow {
display: block;
}
/* map is broken in FF if you have max-width: 100% on tiles */
.leaflet-container img {
max-width: none !important;
}
/* stupid Android 2 doesn't understand "max-width: none" properly */
.leaflet-container img.leaflet-image-layer {
max-width: 15000px !important;
}
.leaflet-tile {
filter: inherit;
visibility: hidden;
}
.leaflet-tile-loaded {
visibility: inherit;
}
.leaflet-zoom-box {
width: 0;
height: 0;
}
/* workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=888319 */
.leaflet-overlay-pane svg {
-moz-user-select: none;
}
.leaflet-tile-pane { z-index: 2; }
.leaflet-objects-pane { z-index: 3; }
.leaflet-overlay-pane { z-index: 4; }
.leaflet-shadow-pane { z-index: 5; }
.leaflet-marker-pane { z-index: 6; }
.leaflet-popup-pane { z-index: 7; }
.leaflet-vml-shape {
width: 1px;
height: 1px;
}
.lvml {
behavior: url(#default#VML);
display: inline-block;
position: absolute;
}
/* control positioning */
.leaflet-control {
position: relative;
z-index: 7;
pointer-events: auto;
}
.leaflet-top,
.leaflet-bottom {
position: absolute;
z-index: 1000;
pointer-events: none;
}
.leaflet-top {
top: 0;
}
.leaflet-right {
right: 0;
}
.leaflet-bottom {
bottom: 0;
}
.leaflet-left {
left: 0;
}
.leaflet-control {
float: left;
clear: both;
}
.leaflet-right .leaflet-control {
float: right;
}
.leaflet-top .leaflet-control {
margin-top: 10px;
}
.leaflet-bottom .leaflet-control {
margin-bottom: 10px;
}
.leaflet-left .leaflet-control {
margin-left: 10px;
}
.leaflet-right .leaflet-control {
margin-right: 10px;
}
/* zoom and fade animations */
.leaflet-fade-anim .leaflet-tile,
.leaflet-fade-anim .leaflet-popup {
opacity: 0;
-webkit-transition: opacity 0.2s linear;
-moz-transition: opacity 0.2s linear;
-o-transition: opacity 0.2s linear;
transition: opacity 0.2s linear;
}
.leaflet-fade-anim .leaflet-tile-loaded,
.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
opacity: 1;
}
.leaflet-zoom-anim .leaflet-zoom-animated {
-webkit-transition: -webkit-transform 0.25s cubic-bezier(0,0,0.25,1);
-moz-transition: -moz-transform 0.25s cubic-bezier(0,0,0.25,1);
-o-transition: -o-transform 0.25s cubic-bezier(0,0,0.25,1);
transition: transform 0.25s cubic-bezier(0,0,0.25,1);
}
.leaflet-zoom-anim .leaflet-tile,
.leaflet-pan-anim .leaflet-tile,
.leaflet-touching .leaflet-zoom-animated {
-webkit-transition: none;
-moz-transition: none;
-o-transition: none;
transition: none;
}
.leaflet-zoom-anim .leaflet-zoom-hide {
visibility: hidden;
}
/* cursors */
.leaflet-clickable {
cursor: pointer;
}
.leaflet-container {
cursor: -webkit-grab;
cursor: -moz-grab;
}
.leaflet-popup-pane,
.leaflet-control {
cursor: auto;
}
.leaflet-dragging .leaflet-container,
.leaflet-dragging .leaflet-clickable {
cursor: move;
cursor: -webkit-grabbing;
cursor: -moz-grabbing;
}
/* visual tweaks */
.leaflet-container {
background: #ddd;
outline: 0;
}
.leaflet-container a {
color: #0078A8;
}
.leaflet-container a.leaflet-active {
outline: 2px solid orange;
}
.leaflet-zoom-box {
border: 2px dotted #38f;
background: rgba(255,255,255,0.5);
}
/* general typography */
.leaflet-container {
font: 12px/1.5 "Helvetica Neue", Arial, Helvetica, sans-serif;
}
/* general toolbar styles */
.leaflet-bar {
box-shadow: 0 1px 5px rgba(0,0,0,0.65);
border-radius: 4px;
}
.leaflet-bar a,
.leaflet-bar a:hover {
background-color: #fff;
border-bottom: 1px solid #ccc;
width: 26px;
height: 26px;
line-height: 26px;
display: block;
text-align: center;
text-decoration: none;
color: black;
}
.leaflet-bar a,
.leaflet-control-layers-toggle {
background-position: 50% 50%;
background-repeat: no-repeat;
display: block;
}
.leaflet-bar a:hover {
background-color: #f4f4f4;
}
.leaflet-bar a:first-child {
border-top-left-radius: 4px;
border-top-right-radius: 4px;
}
.leaflet-bar a:last-child {
border-bottom-left-radius: 4px;
border-bottom-right-radius: 4px;
border-bottom: none;
}
.leaflet-bar a.leaflet-disabled {
cursor: default;
background-color: #f4f4f4;
color: #bbb;
}
.leaflet-touch .leaflet-bar a {
width: 30px;
height: 30px;
line-height: 30px;
}
/* zoom control */
.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
font: bold 18px 'Lucida Console', Monaco, monospace;
text-indent: 1px;
}
.leaflet-control-zoom-out {
font-size: 20px;
}
.leaflet-touch .leaflet-control-zoom-in {
font-size: 22px;
}
.leaflet-touch .leaflet-control-zoom-out {
font-size: 24px;
}
/* layers control */
.leaflet-control-layers {
box-shadow: 0 1px 5px rgba(0,0,0,0.4);
background: #fff;
border-radius: 5px;
}
.leaflet-control-layers-toggle {
background-image: url(images/layers.png);
width: 36px;
height: 36px;
}
.leaflet-retina .leaflet-control-layers-toggle {
background-image: url(images/layers-2x.png);
background-size: 26px 26px;
}
.leaflet-touch .leaflet-control-layers-toggle {
width: 44px;
height: 44px;
}
.leaflet-control-layers .leaflet-control-layers-list,
.leaflet-control-layers-expanded .leaflet-control-layers-toggle {
display: none;
}
.leaflet-control-layers-expanded .leaflet-control-layers-list {
display: block;
position: relative;
}
.leaflet-control-layers-expanded {
padding: 6px 10px 6px 6px;
color: #333;
background: #fff;
}
.leaflet-control-layers-selector {
margin-top: 2px;
position: relative;
top: 1px;
}
.leaflet-control-layers label {
display: block;
}
.leaflet-control-layers-separator {
height: 0;
border-top: 1px solid #ddd;
margin: 5px -10px 5px -6px;
}
/* attribution and scale controls */
.leaflet-container .leaflet-control-attribution {
background: #fff;
background: rgba(255, 255, 255, 0.7);
margin: 0;
}
.leaflet-control-attribution,
.leaflet-control-scale-line {
padding: 0 5px;
color: #333;
}
.leaflet-control-attribution a {
text-decoration: none;
}
.leaflet-control-attribution a:hover {
text-decoration: underline;
}
.leaflet-container .leaflet-control-attribution,
.leaflet-container .leaflet-control-scale {
font-size: 11px;
}
.leaflet-left .leaflet-control-scale {
margin-left: 5px;
}
.leaflet-bottom .leaflet-control-scale {
margin-bottom: 5px;
}
.leaflet-control-scale-line {
border: 2px solid #777;
border-top: none;
line-height: 1.1;
padding: 2px 5px 1px;
font-size: 11px;
white-space: nowrap;
overflow: hidden;
-moz-box-sizing: content-box;
box-sizing: content-box;
background: #fff;
background: rgba(255, 255, 255, 0.5);
}
.leaflet-control-scale-line:not(:first-child) {
border-top: 2px solid #777;
border-bottom: none;
margin-top: -2px;
}
.leaflet-control-scale-line:not(:first-child):not(:last-child) {
border-bottom: 2px solid #777;
}
.leaflet-touch .leaflet-control-attribution,
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
box-shadow: none;
}
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
border: 2px solid rgba(0,0,0,0.2);
background-clip: padding-box;
}
/* popup */
.leaflet-popup {
position: absolute;
text-align: center;
}
.leaflet-popup-content-wrapper {
padding: 1px;
text-align: left;
border-radius: 12px;
}
.leaflet-popup-content {
margin: 13px 19px;
line-height: 1.4;
}
.leaflet-popup-content p {
margin: 18px 0;
}
.leaflet-popup-tip-container {
margin: 0 auto;
width: 40px;
height: 20px;
position: relative;
overflow: hidden;
}
.leaflet-popup-tip {
width: 17px;
height: 17px;
padding: 1px;
margin: -10px auto 0;
-webkit-transform: rotate(45deg);
-moz-transform: rotate(45deg);
-ms-transform: rotate(45deg);
-o-transform: rotate(45deg);
transform: rotate(45deg);
}
.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
background: white;
box-shadow: 0 3px 14px rgba(0,0,0,0.4);
}
.leaflet-container a.leaflet-popup-close-button {
position: absolute;
top: 0;
right: 0;
padding: 4px 4px 0 0;
text-align: center;
width: 18px;
height: 14px;
font: 16px/14px Tahoma, Verdana, sans-serif;
color: #c3c3c3;
text-decoration: none;
font-weight: bold;
background: transparent;
}
.leaflet-container a.leaflet-popup-close-button:hover {
color: #999;
}
.leaflet-popup-scrolled {
overflow: auto;
border-bottom: 1px solid #ddd;
border-top: 1px solid #ddd;
}
.leaflet-oldie .leaflet-popup-content-wrapper {
zoom: 1;
}
.leaflet-oldie .leaflet-popup-tip {
width: 24px;
margin: 0 auto;
-ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678);
}
.leaflet-oldie .leaflet-popup-tip-container {
margin-top: -1px;
}
.leaflet-oldie .leaflet-control-zoom,
.leaflet-oldie .leaflet-control-layers,
.leaflet-oldie .leaflet-popup-content-wrapper,
.leaflet-oldie .leaflet-popup-tip {
border: 1px solid #999;
}
/* div icon */
.leaflet-div-icon {
background: #fff;
border: 1px solid #666;
}
/*
Leaflet, a JavaScript library for mobile-friendly interactive maps. http://leafletjs.com
(c) 2010-2013, Vladimir Agafonkin
(c) 2010-2011, CloudMade
*/
!function(t,e,i){var n=t.L,o={};o.version="0.7.2","object"==typeof module&&"object"==typeof module.exports?module.exports=o:"function"==typeof define&&define.amd&&define(o),o.noConflict=function(){return t.L=n,this},t.L=o,o.Util={extend:function(t){var e,i,n,o,s=Array.prototype.slice.call(arguments,1);for(i=0,n=s.length;n>i;i++){o=s[i]||{};for(e in o)o.hasOwnProperty(e)&&(t[e]=o[e])}return t},bind:function(t,e){var i=arguments.length>2?Array.prototype.slice.call(arguments,2):null;return function(){return t.apply(e,i||arguments)}},stamp:function(){var t=0,e="_leaflet_id";return function(i){return i[e]=i[e]||++t,i[e]}}(),invokeEach:function(t,e,i){var n,o;if("object"==typeof t){o=Array.prototype.slice.call(arguments,3);for(n in t)e.apply(i,[n,t[n]].concat(o));return!0}return!1},limitExecByInterval:function(t,e,i){var n,o;return function s(){var a=arguments;return n?(o=!0,void 0):(n=!0,setTimeout(function(){n=!1,o&&(s.apply(i,a),o=!1)},e),t.apply(i,a),void 0)}},falseFn:function(){return!1},formatNum:function(t,e){var i=Math.pow(10,e||5);return Math.round(t*i)/i},trim:function(t){return t.trim?t.trim():t.replace(/^\s+|\s+$/g,"")},splitWords:function(t){return o.Util.trim(t).split(/\s+/)},setOptions:function(t,e){return t.options=o.extend({},t.options,e),t.options},getParamString:function(t,e,i){var n=[];for(var o in t)n.push(encodeURIComponent(i?o.toUpperCase():o)+"="+encodeURIComponent(t[o]));return(e&&-1!==e.indexOf("?")?"&":"?")+n.join("&")},template:function(t,e){return t.replace(/\{ *([\w_]+) *\}/g,function(t,n){var o=e[n];if(o===i)throw new Error("No value provided for variable "+t);return"function"==typeof o&&(o=o(e)),o})},isArray:Array.isArray||function(t){return"[object Array]"===Object.prototype.toString.call(t)},emptyImageUrl:"data:image/gif;base64,R0lGODlhAQABAAD/ACwAAAAAAQABAAACADs="},function(){function e(e){var i,n,o=["webkit","moz","o","ms"];for(i=0;i<o.length&&!n;i++)n=t[o[i]+e];return n}function i(e){var i=+new Date,o=Math.max(0,16-(i-n));return n=i+o,t.setTimeout(e,o)}var n=0,s=t.requestAnimationFrame||e("RequestAnimationFrame")||i,a=t.cancelAnimationFrame||e("CancelAnimationFrame")||e("CancelRequestAnimationFrame")||function(e){t.clearTimeout(e)};o.Util.requestAnimFrame=function(e,n,a,r){return e=o.bind(e,n),a&&s===i?(e(),void 0):s.call(t,e,r)},o.Util.cancelAnimFrame=function(e){e&&a.call(t,e)}}(),o.extend=o.Util.extend,o.bind=o.Util.bind,o.stamp=o.Util.stamp,o.setOptions=o.Util.setOptions,o.Class=function(){},o.Class.extend=function(t){var e=function(){this.initialize&&this.initialize.apply(this,arguments),this._initHooks&&this.callInitHooks()},i=function(){};i.prototype=this.prototype;var n=new i;n.constructor=e,e.prototype=n;for(var s in this)this.hasOwnProperty(s)&&"prototype"!==s&&(e[s]=this[s]);t.statics&&(o.extend(e,t.statics),delete t.statics),t.includes&&(o.Util.extend.apply(null,[n].concat(t.includes)),delete t.includes),t.options&&n.options&&(t.options=o.extend({},n.options,t.options)),o.extend(n,t),n._initHooks=[];var a=this;return e.__super__=a.prototype,n.callInitHooks=function(){if(!this._initHooksCalled){a.prototype.callInitHooks&&a.prototype.callInitHooks.call(this),this._initHooksCalled=!0;for(var t=0,e=n._initHooks.length;e>t;t++)n._initHooks[t].call(this)}},e},o.Class.include=function(t){o.extend(this.prototype,t)},o.Class.mergeOptions=function(t){o.extend(this.prototype.options,t)},o.Class.addInitHook=function(t){var e=Array.prototype.slice.call(arguments,1),i="function"==typeof t?t:function(){this[t].apply(this,e)};this.prototype._initHooks=this.prototype._initHooks||[],this.prototype._initHooks.push(i)};var s="_leaflet_events";o.Mixin={},o.Mixin.Events={addEventListener:function(t,e,i){if(o.Util.invokeEach(t,this.addEventListener,this,e,i))return this;var n,a,r,h,l,u,c,d=this[s]=this[s]||{},p=i&&i!==this&&o.stamp(i);for(t=o.Util.splitWords(t),n=0,a=t.length;a>n;n++)r={action:e,context:i||this},h=t[n],p?(l=h+"_idx",u=l+"_len",c=d[l]=d[l]||{},c[p]||(c[p]=[],d[u]=(d[u]||0)+1),c[p].push(r)):(d[h]=d[h]||[],d[h].push(r));return this},hasEventListeners:function(t){var e=this[s];return!!e&&(t in e&&e[t].length>0||t+"_idx"in e&&e[t+"_idx_len"]>0)},removeEventListener:function(t,e,i){if(!this[s])return this;if(!t)return this.clearAllEventListeners();if(o.Util.invokeEach(t,this.removeEventListener,this,e,i))return this;var n,a,r,h,l,u,c,d,p,_=this[s],m=i&&i!==this&&o.stamp(i);for(t=o.Util.splitWords(t),n=0,a=t.length;a>n;n++)if(r=t[n],u=r+"_idx",c=u+"_len",d=_[u],e){if(h=m&&d?d[m]:_[r]){for(l=h.length-1;l>=0;l--)h[l].action!==e||i&&h[l].context!==i||(p=h.splice(l,1),p[0].action=o.Util.falseFn);i&&d&&0===h.length&&(delete d[m],_[c]--)}}else delete _[r],delete _[u],delete _[c];return this},clearAllEventListeners:function(){return delete this[s],this},fireEvent:function(t,e){if(!this.hasEventListeners(t))return this;var i,n,a,r,h,l=o.Util.extend({},e,{type:t,target:this}),u=this[s];if(u[t])for(i=u[t].slice(),n=0,a=i.length;a>n;n++)i[n].action.call(i[n].context,l);r=u[t+"_idx"];for(h in r)if(i=r[h].slice())for(n=0,a=i.length;a>n;n++)i[n].action.call(i[n].context,l);return this},addOneTimeEventListener:function(t,e,i){if(o.Util.invokeEach(t,this.addOneTimeEventListener,this,e,i))return this;var n=o.bind(function(){this.removeEventListener(t,e,i).removeEventListener(t,n,i)},this);return this.addEventListener(t,e,i).addEventListener(t,n,i)}},o.Mixin.Events.on=o.Mixin.Events.addEventListener,o.Mixin.Events.off=o.Mixin.Events.removeEventListener,o.Mixin.Events.once=o.Mixin.Events.addOneTimeEventListener,o.Mixin.Events.fire=o.Mixin.Events.fireEvent,function(){var n="ActiveXObject"in t,s=n&&!e.addEventListener,a=navigator.userAgent.toLowerCase(),r=-1!==a.indexOf("webkit"),h=-1!==a.indexOf("chrome"),l=-1!==a.indexOf("phantom"),u=-1!==a.indexOf("android"),c=-1!==a.search("android [23]"),d=-1!==a.indexOf("gecko"),p=typeof orientation!=i+"",_=t.navigator&&t.navigator.msPointerEnabled&&t.navigator.msMaxTouchPoints&&!t.PointerEvent,m=t.PointerEvent&&t.navigator.pointerEnabled&&t.navigator.maxTouchPoints||_,f="devicePixelRatio"in t&&t.devicePixelRatio>1||"matchMedia"in t&&t.matchMedia("(min-resolution:144dpi)")&&t.matchMedia("(min-resolution:144dpi)").matches,g=e.documentElement,v=n&&"transition"in g.style,y="WebKitCSSMatrix"in t&&"m11"in new t.WebKitCSSMatrix&&!c,P="MozPerspective"in g.style,L="OTransition"in g.style,x=!t.L_DISABLE_3D&&(v||y||P||L)&&!l,w=!t.L_NO_TOUCH&&!l&&function(){var t="ontouchstart";if(m||t in g)return!0;var i=e.createElement("div"),n=!1;return i.setAttribute?(i.setAttribute(t,"return;"),"function"==typeof i[t]&&(n=!0),i.removeAttribute(t),i=null,n):!1}();o.Browser={ie:n,ielt9:s,webkit:r,gecko:d&&!r&&!t.opera&&!n,android:u,android23:c,chrome:h,ie3d:v,webkit3d:y,gecko3d:P,opera3d:L,any3d:x,mobile:p,mobileWebkit:p&&r,mobileWebkit3d:p&&y,mobileOpera:p&&t.opera,touch:w,msPointer:_,pointer:m,retina:f}}(),o.Point=function(t,e,i){this.x=i?Math.round(t):t,this.y=i?Math.round(e):e},o.Point.prototype={clone:function(){return new o.Point(this.x,this.y)},add:function(t){return this.clone()._add(o.point(t))},_add:function(t){return this.x+=t.x,this.y+=t.y,this},subtract:function(t){return this.clone()._subtract(o.point(t))},_subtract:function(t){return this.x-=t.x,this.y-=t.y,this},divideBy:function(t){return this.clone()._divideBy(t)},_divideBy:function(t){return this.x/=t,this.y/=t,this},multiplyBy:function(t){return this.clone()._multiplyBy(t)},_multiplyBy:function(t){return this.x*=t,this.y*=t,this},round:function(){return this.clone()._round()},_round:function(){return this.x=Math.round(this.x),this.y=Math.round(this.y),this},floor:function(){return this.clone()._floor()},_floor:function(){return this.x=Math.floor(this.x),this.y=Math.floor(this.y),this},distanceTo:function(t){t=o.point(t);var e=t.x-this.x,i=t.y-this.y;return Math.sqrt(e*e+i*i)},equals:function(t){return t=o.point(t),t.x===this.x&&t.y===this.y},contains:function(t){return t=o.point(t),Math.abs(t.x)<=Math.abs(this.x)&&Math.abs(t.y)<=Math.abs(this.y)},toString:function(){return"Point("+o.Util.formatNum(this.x)+", "+o.Util.formatNum(this.y)+")"}},o.point=function(t,e,n){return t instanceof o.Point?t:o.Util.isArray(t)?new o.Point(t[0],t[1]):t===i||null===t?t:new o.Point(t,e,n)},o.Bounds=function(t,e){if(t)for(var i=e?[t,e]:t,n=0,o=i.length;o>n;n++)this.extend(i[n])},o.Bounds.prototype={extend:function(t){return t=o.point(t),this.min||this.max?(this.min.x=Math.min(t.x,this.min.x),this.max.x=Math.max(t.x,this.max.x),this.min.y=Math.min(t.y,this.min.y),this.max.y=Math.max(t.y,this.max.y)):(this.min=t.clone(),this.max=t.clone()),this},getCenter:function(t){return new o.Point((this.min.x+this.max.x)/2,(this.min.y+this.max.y)/2,t)},getBottomLeft:function(){return new o.Point(this.min.x,this.max.y)},getTopRight:function(){return new o.Point(this.max.x,this.min.y)},getSize:function(){return this.max.subtract(this.min)},contains:function(t){var e,i;return t="number"==typeof t[0]||t instanceof o.Point?o.point(t):o.bounds(t),t instanceof o.Bounds?(e=t.min,i=t.max):e=i=t,e.x>=this.min.x&&i.x<=this.max.x&&e.y>=this.min.y&&i.y<=this.max.y},intersects:function(t){t=o.bounds(t);var e=this.min,i=this.max,n=t.min,s=t.max,a=s.x>=e.x&&n.x<=i.x,r=s.y>=e.y&&n.y<=i.y;return a&&r},isValid:function(){return!(!this.min||!this.max)}},o.bounds=function(t,e){return!t||t instanceof o.Bounds?t:new o.Bounds(t,e)},o.Transformation=function(t,e,i,n){this._a=t,this._b=e,this._c=i,this._d=n},o.Transformation.prototype={transform:function(t,e){return this._transform(t.clone(),e)},_transform:function(t,e){return e=e||1,t.x=e*(this._a*t.x+this._b),t.y=e*(this._c*t.y+this._d),t},untransform:function(t,e){return e=e||1,new o.Point((t.x/e-this._b)/this._a,(t.y/e-this._d)/this._c)}},o.DomUtil={get:function(t){return"string"==typeof t?e.getElementById(t):t},getStyle:function(t,i){var n=t.style[i];if(!n&&t.currentStyle&&(n=t.currentStyle[i]),(!n||"auto"===n)&&e.defaultView){var o=e.defaultView.getComputedStyle(t,null);n=o?o[i]:null}return"auto"===n?null:n},getViewportOffset:function(t){var i,n=0,s=0,a=t,r=e.body,h=e.documentElement;do{if(n+=a.offsetTop||0,s+=a.offsetLeft||0,n+=parseInt(o.DomUtil.getStyle(a,"borderTopWidth"),10)||0,s+=parseInt(o.DomUtil.getStyle(a,"borderLeftWidth"),10)||0,i=o.DomUtil.getStyle(a,"position"),a.offsetParent===r&&"absolute"===i)break;if("fixed"===i){n+=r.scrollTop||h.scrollTop||0,s+=r.scrollLeft||h.scrollLeft||0;break}if("relative"===i&&!a.offsetLeft){var l=o.DomUtil.getStyle(a,"width"),u=o.DomUtil.getStyle(a,"max-width"),c=a.getBoundingClientRect();("none"!==l||"none"!==u)&&(s+=c.left+a.clientLeft),n+=c.top+(r.scrollTop||h.scrollTop||0);break}a=a.offsetParent}while(a);a=t;do{if(a===r)break;n-=a.scrollTop||0,s-=a.scrollLeft||0,a=a.parentNode}while(a);return new o.Point(s,n)},documentIsLtr:function(){return o.DomUtil._docIsLtrCached||(o.DomUtil._docIsLtrCached=!0,o.DomUtil._docIsLtr="ltr"===o.DomUtil.getStyle(e.body,"direction")),o.DomUtil._docIsLtr},create:function(t,i,n){var o=e.createElement(t);return o.className=i,n&&n.appendChild(o),o},hasClass:function(t,e){if(t.classList!==i)return t.classList.contains(e);var n=o.DomUtil._getClass(t);return n.length>0&&new RegExp("(^|\\s)"+e+"(\\s|$)").test(n)},addClass:function(t,e){if(t.classList!==i)for(var n=o.Util.splitWords(e),s=0,a=n.length;a>s;s++)t.classList.add(n[s]);else if(!o.DomUtil.hasClass(t,e)){var r=o.DomUtil._getClass(t);o.DomUtil._setClass(t,(r?r+" ":"")+e)}},removeClass:function(t,e){t.classList!==i?t.classList.remove(e):o.DomUtil._setClass(t,o.Util.trim((" "+o.DomUtil._getClass(t)+" ").replace(" "+e+" "," ")))},_setClass:function(t,e){t.className.baseVal===i?t.className=e:t.className.baseVal=e},_getClass:function(t){return t.className.baseVal===i?t.className:t.className.baseVal},setOpacity:function(t,e){if("opacity"in t.style)t.style.opacity=e;else if("filter"in t.style){var i=!1,n="DXImageTransform.Microsoft.Alpha";try{i=t.filters.item(n)}catch(o){if(1===e)return}e=Math.round(100*e),i?(i.Enabled=100!==e,i.Opacity=e):t.style.filter+=" progid:"+n+"(opacity="+e+")"}},testProp:function(t){for(var i=e.documentElement.style,n=0;n<t.length;n++)if(t[n]in i)return t[n];return!1},getTranslateString:function(t){var e=o.Browser.webkit3d,i="translate"+(e?"3d":"")+"(",n=(e?",0":"")+")";return i+t.x+"px,"+t.y+"px"+n},getScaleString:function(t,e){var i=o.DomUtil.getTranslateString(e.add(e.multiplyBy(-1*t))),n=" scale("+t+") ";return i+n},setPosition:function(t,e,i){t._leaflet_pos=e,!i&&o.Browser.any3d?t.style[o.DomUtil.TRANSFORM]=o.DomUtil.getTranslateString(e):(t.style.left=e.x+"px",t.style.top=e.y+"px")},getPosition:function(t){return t._leaflet_pos}},o.DomUtil.TRANSFORM=o.DomUtil.testProp(["transform","WebkitTransform","OTransform","MozTransform","msTransform"]),o.DomUtil.TRANSITION=o.DomUtil.testProp(["webkitTransition","transition","OTransition","MozTransition","msTransition"]),o.DomUtil.TRANSITION_END="webkitTransition"===o.DomUtil.TRANSITION||"OTransition"===o.DomUtil.TRANSITION?o.DomUtil.TRANSITION+"End":"transitionend",function(){if("onselectstart"in e)o.extend(o.DomUtil,{disableTextSelection:function(){o.DomEvent.on(t,"selectstart",o.DomEvent.preventDefault)},enableTextSelection:function(){o.DomEvent.off(t,"selectstart",o.DomEvent.preventDefault)}});else{var i=o.DomUtil.testProp(["userSelect","WebkitUserSelect","OUserSelect","MozUserSelect","msUserSelect"]);o.extend(o.DomUtil,{disableTextSelection:function(){if(i){var t=e.documentElement.style;this._userSelect=t[i],t[i]="none"}},enableTextSelection:function(){i&&(e.documentElement.style[i]=this._userSelect,delete this._userSelect)}})}o.extend(o.DomUtil,{disableImageDrag:function(){o.DomEvent.on(t,"dragstart",o.DomEvent.preventDefault)},enableImageDrag:function(){o.DomEvent.off(t,"dragstart",o.DomEvent.preventDefault)}})}(),o.LatLng=function(t,e,n){if(t=parseFloat(t),e=parseFloat(e),isNaN(t)||isNaN(e))throw new Error("Invalid LatLng object: ("+t+", "+e+")");this.lat=t,this.lng=e,n!==i&&(this.alt=parseFloat(n))},o.extend(o.LatLng,{DEG_TO_RAD:Math.PI/180,RAD_TO_DEG:180/Math.PI,MAX_MARGIN:1e-9}),o.LatLng.prototype={equals:function(t){if(!t)return!1;t=o.latLng(t);var e=Math.max(Math.abs(this.lat-t.lat),Math.abs(this.lng-t.lng));return e<=o.LatLng.MAX_MARGIN},toString:function(t){return"LatLng("+o.Util.formatNum(this.lat,t)+", "+o.Util.formatNum(this.lng,t)+")"},distanceTo:function(t){t=o.latLng(t);var e=6378137,i=o.LatLng.DEG_TO_RAD,n=(t.lat-this.lat)*i,s=(t.lng-this.lng)*i,a=this.lat*i,r=t.lat*i,h=Math.sin(n/2),l=Math.sin(s/2),u=h*h+l*l*Math.cos(a)*Math.cos(r);return 2*e*Math.atan2(Math.sqrt(u),Math.sqrt(1-u))},wrap:function(t,e){var i=this.lng;return t=t||-180,e=e||180,i=(i+e)%(e-t)+(t>i||i===e?e:t),new o.LatLng(this.lat,i)}},o.latLng=function(t,e){return t instanceof o.LatLng?t:o.Util.isArray(t)?"number"==typeof t[0]||"string"==typeof t[0]?new o.LatLng(t[0],t[1],t[2]):null:t===i||null===t?t:"object"==typeof t&&"lat"in t?new o.LatLng(t.lat,"lng"in t?t.lng:t.lon):e===i?null:new o.LatLng(t,e)},o.LatLngBounds=function(t,e){if(t)for(var i=e?[t,e]:t,n=0,o=i.length;o>n;n++)this.extend(i[n])},o.LatLngBounds.prototype={extend:function(t){if(!t)return this;var e=o.latLng(t);return t=null!==e?e:o.latLngBounds(t),t instanceof o.LatLng?this._southWest||this._northEast?(this._southWest.lat=Math.min(t.lat,this._southWest.lat),this._southWest.lng=Math.min(t.lng,this._southWest.lng),this._northEast.lat=Math.max(t.lat,this._northEast.lat),this._northEast.lng=Math.max(t.lng,this._northEast.lng)):(this._southWest=new o.LatLng(t.lat,t.lng),this._northEast=new o.LatLng(t.lat,t.lng)):t instanceof o.LatLngBounds&&(this.extend(t._southWest),this.extend(t._northEast)),this},pad:function(t){var e=this._southWest,i=this._northEast,n=Math.abs(e.lat-i.lat)*t,s=Math.abs(e.lng-i.lng)*t;return new o.LatLngBounds(new o.LatLng(e.lat-n,e.lng-s),new o.LatLng(i.lat+n,i.lng+s))},getCenter:function(){return new o.LatLng((this._southWest.lat+this._northEast.lat)/2,(this._southWest.lng+this._northEast.lng)/2)},getSouthWest:function(){return this._southWest},getNorthEast:function(){return this._northEast},getNorthWest:function(){return new o.LatLng(this.getNorth(),this.getWest())},getSouthEast:function(){return new o.LatLng(this.getSouth(),this.getEast())},getWest:function(){return this._southWest.lng},getSouth:function(){return this._southWest.lat},getEast:function(){return this._northEast.lng},getNorth:function(){return this._northEast.lat},contains:function(t){t="number"==typeof t[0]||t instanceof o.LatLng?o.latLng(t):o.latLngBounds(t);var e,i,n=this._southWest,s=this._northEast;return t instanceof o.LatLngBounds?(e=t.getSouthWest(),i=t.getNorthEast()):e=i=t,e.lat>=n.lat&&i.lat<=s.lat&&e.lng>=n.lng&&i.lng<=s.lng},intersects:function(t){t=o.latLngBounds(t);var e=this._southWest,i=this._northEast,n=t.getSouthWest(),s=t.getNorthEast(),a=s.lat>=e.lat&&n.lat<=i.lat,r=s.lng>=e.lng&&n.lng<=i.lng;return a&&r},toBBoxString:function(){return[this.getWest(),this.getSouth(),this.getEast(),this.getNorth()].join(",")},equals:function(t){return t?(t=o.latLngBounds(t),this._southWest.equals(t.getSouthWest())&&this._northEast.equals(t.getNorthEast())):!1},isValid:function(){return!(!this._southWest||!this._northEast)}},o.latLngBounds=function(t,e){return!t||t instanceof o.LatLngBounds?t:new o.LatLngBounds(t,e)},o.Projection={},o.Projection.SphericalMercator={MAX_LATITUDE:85.0511287798,project:function(t){var e=o.LatLng.DEG_TO_RAD,i=this.MAX_LATITUDE,n=Math.max(Math.min(i,t.lat),-i),s=t.lng*e,a=n*e;return a=Math.log(Math.tan(Math.PI/4+a/2)),new o.Point(s,a)},unproject:function(t){var e=o.LatLng.RAD_TO_DEG,i=t.x*e,n=(2*Math.atan(Math.exp(t.y))-Math.PI/2)*e;return new o.LatLng(n,i)}},o.Projection.LonLat={project:function(t){return new o.Point(t.lng,t.lat)},unproject:function(t){return new o.LatLng(t.y,t.x)}},o.CRS={latLngToPoint:function(t,e){var i=this.projection.project(t),n=this.scale(e);return this.transformation._transform(i,n)},pointToLatLng:function(t,e){var i=this.scale(e),n=this.transformation.untransform(t,i);return this.projection.unproject(n)},project:function(t){return this.projection.project(t)},scale:function(t){return 256*Math.pow(2,t)},getSize:function(t){var e=this.scale(t);return o.point(e,e)}},o.CRS.Simple=o.extend({},o.CRS,{projection:o.Projection.LonLat,transformation:new o.Transformation(1,0,-1,0),scale:function(t){return Math.pow(2,t)}}),o.CRS.EPSG3857=o.extend({},o.CRS,{code:"EPSG:3857",projection:o.Projection.SphericalMercator,transformation:new o.Transformation(.5/Math.PI,.5,-.5/Math.PI,.5),project:function(t){var e=this.projection.project(t),i=6378137;return e.multiplyBy(i)}}),o.CRS.EPSG900913=o.extend({},o.CRS.EPSG3857,{code:"EPSG:900913"}),o.CRS.EPSG4326=o.extend({},o.CRS,{code:"EPSG:4326",projection:o.Projection.LonLat,transformation:new o.Transformation(1/360,.5,-1/360,.5)}),o.Map=o.Class.extend({includes:o.Mixin.Events,options:{crs:o.CRS.EPSG3857,fadeAnimation:o.DomUtil.TRANSITION&&!o.Browser.android23,trackResize:!0,markerZoomAnimation:o.DomUtil.TRANSITION&&o.Browser.any3d},initialize:function(t,e){e=o.setOptions(this,e),this._initContainer(t),this._initLayout(),this._onResize=o.bind(this._onResize,this),this._initEvents(),e.maxBounds&&this.setMaxBounds(e.maxBounds),e.center&&e.zoom!==i&&this.setView(o.latLng(e.center),e.zoom,{reset:!0}),this._handlers=[],this._layers={},this._zoomBoundLayers={},this._tileLayersNum=0,this.callInitHooks(),this._addLayers(e.layers)},setView:function(t,e){return e=e===i?this.getZoom():e,this._resetView(o.latLng(t),this._limitZoom(e)),this},setZoom:function(t,e){return this._loaded?this.setView(this.getCenter(),t,{zoom:e}):(this._zoom=this._limitZoom(t),this)},zoomIn:function(t,e){return this.setZoom(this._zoom+(t||1),e)},zoomOut:function(t,e){return this.setZoom(this._zoom-(t||1),e)},setZoomAround:function(t,e,i){var n=this.getZoomScale(e),s=this.getSize().divideBy(2),a=t instanceof o.Point?t:this.latLngToContainerPoint(t),r=a.subtract(s).multiplyBy(1-1/n),h=this.containerPointToLatLng(s.add(r));return this.setView(h,e,{zoom:i})},fitBounds:function(t,e){e=e||{},t=t.getBounds?t.getBounds():o.latLngBounds(t);var i=o.point(e.paddingTopLeft||e.padding||[0,0]),n=o.point(e.paddingBottomRight||e.padding||[0,0]),s=this.getBoundsZoom(t,!1,i.add(n)),a=n.subtract(i).divideBy(2),r=this.project(t.getSouthWest(),s),h=this.project(t.getNorthEast(),s),l=this.unproject(r.add(h).divideBy(2).add(a),s);return s=e&&e.maxZoom?Math.min(e.maxZoom,s):s,this.setView(l,s,e)},fitWorld:function(t){return this.fitBounds([[-90,-180],[90,180]],t)},panTo:function(t,e){return this.setView(t,this._zoom,{pan:e})},panBy:function(t){return this.fire("movestart"),this._rawPanBy(o.point(t)),this.fire("move"),this.fire("moveend")},setMaxBounds:function(t){return t=o.latLngBounds(t),this.options.maxBounds=t,t?(this._loaded&&this._panInsideMaxBounds(),this.on("moveend",this._panInsideMaxBounds,this)):this.off("moveend",this._panInsideMaxBounds,this)},panInsideBounds:function(t,e){var i=this.getCenter(),n=this._limitCenter(i,this._zoom,t);return i.equals(n)?this:this.panTo(n,e)},addLayer:function(t){var e=o.stamp(t);return this._layers[e]?this:(this._layers[e]=t,!t.options||isNaN(t.options.maxZoom)&&isNaN(t.options.minZoom)||(this._zoomBoundLayers[e]=t,this._updateZoomLevels()),this.options.zoomAnimation&&o.TileLayer&&t instanceof o.TileLayer&&(this._tileLayersNum++,this._tileLayersToLoad++,t.on("load",this._onTileLayerLoad,this)),this._loaded&&this._layerAdd(t),this)},removeLayer:function(t){var e=o.stamp(t);return this._layers[e]?(this._loaded&&t.onRemove(this),delete this._layers[e],this._loaded&&this.fire("layerremove",{layer:t}),this._zoomBoundLayers[e]&&(delete this._zoomBoundLayers[e],this._updateZoomLevels()),this.options.zoomAnimation&&o.TileLayer&&t instanceof o.TileLayer&&(this._tileLayersNum--,this._tileLayersToLoad--,t.off("load",this._onTileLayerLoad,this)),this):this},hasLayer:function(t){return t?o.stamp(t)in this._layers:!1},eachLayer:function(t,e){for(var i in this._layers)t.call(e,this._layers[i]);return this},invalidateSize:function(t){if(!this._loaded)return this;t=o.extend({animate:!1,pan:!0},t===!0?{animate:!0}:t);var e=this.getSize();this._sizeChanged=!0,this._initialCenter=null;var i=this.getSize(),n=e.divideBy(2).round(),s=i.divideBy(2).round(),a=n.subtract(s);return a.x||a.y?(t.animate&&t.pan?this.panBy(a):(t.pan&&this._rawPanBy(a),this.fire("move"),t.debounceMoveend?(clearTimeout(this._sizeTimer),this._sizeTimer=setTimeout(o.bind(this.fire,this,"moveend"),200)):this.fire("moveend")),this.fire("resize",{oldSize:e,newSize:i})):this},addHandler:function(t,e){if(!e)return this;var i=this[t]=new e(this);return this._handlers.push(i),this.options[t]&&i.enable(),this},remove:function(){this._loaded&&this.fire("unload"),this._initEvents("off");try{delete this._container._leaflet}catch(t){this._container._leaflet=i}return this._clearPanes(),this._clearControlPos&&this._clearControlPos(),this._clearHandlers(),this},getCenter:function(){return this._checkIfLoaded(),this._initialCenter&&!this._moved()?this._initialCenter:this.layerPointToLatLng(this._getCenterLayerPoint())},getZoom:function(){return this._zoom},getBounds:function(){var t=this.getPixelBounds(),e=this.unproject(t.getBottomLeft()),i=this.unproject(t.getTopRight());return new o.LatLngBounds(e,i)},getMinZoom:function(){return this.options.minZoom===i?this._layersMinZoom===i?0:this._layersMinZoom:this.options.minZoom},getMaxZoom:function(){return this.options.maxZoom===i?this._layersMaxZoom===i?1/0:this._layersMaxZoom:this.options.maxZoom},getBoundsZoom:function(t,e,i){t=o.latLngBounds(t);var n,s=this.getMinZoom()-(e?1:0),a=this.getMaxZoom(),r=this.getSize(),h=t.getNorthWest(),l=t.getSouthEast(),u=!0;i=o.point(i||[0,0]);do s++,n=this.project(l,s).subtract(this.project(h,s)).add(i),u=e?n.x<r.x||n.y<r.y:r.contains(n);while(u&&a>=s);return u&&e?null:e?s:s-1},getSize:function(){return(!this._size||this._sizeChanged)&&(this._size=new o.Point(this._container.clientWidth,this._container.clientHeight),this._sizeChanged=!1),this._size.clone()},getPixelBounds:function(){var t=this._getTopLeftPoint();return new o.Bounds(t,t.add(this.getSize()))},getPixelOrigin:function(){return this._checkIfLoaded(),this._initialTopLeftPoint},getPanes:function(){return this._panes},getContainer:function(){return this._container},getZoomScale:function(t){var e=this.options.crs;return e.scale(t)/e.scale(this._zoom)},getScaleZoom:function(t){return this._zoom+Math.log(t)/Math.LN2},project:function(t,e){return e=e===i?this._zoom:e,this.options.crs.latLngToPoint(o.latLng(t),e)},unproject:function(t,e){return e=e===i?this._zoom:e,this.options.crs.pointToLatLng(o.point(t),e)},layerPointToLatLng:function(t){var e=o.point(t).add(this.getPixelOrigin());return this.unproject(e)},latLngToLayerPoint:function(t){var e=this.project(o.latLng(t))._round();return e._subtract(this.getPixelOrigin())},containerPointToLayerPoint:function(t){return o.point(t).subtract(this._getMapPanePos())},layerPointToContainerPoint:function(t){return o.point(t).add(this._getMapPanePos())},containerPointToLatLng:function(t){var e=this.containerPointToLayerPoint(o.point(t));return this.layerPointToLatLng(e)},latLngToContainerPoint:function(t){return this.layerPointToContainerPoint(this.latLngToLayerPoint(o.latLng(t)))},mouseEventToContainerPoint:function(t){return o.DomEvent.getMousePosition(t,this._container)},mouseEventToLayerPoint:function(t){return this.containerPointToLayerPoint(this.mouseEventToContainerPoint(t))},mouseEventToLatLng:function(t){return this.layerPointToLatLng(this.mouseEventToLayerPoint(t))},_initContainer:function(t){var e=this._container=o.DomUtil.get(t);if(!e)throw new Error("Map container not found.");if(e._leaflet)throw new Error("Map container is already initialized.");e._leaflet=!0},_initLayout:function(){var t=this._container;o.DomUtil.addClass(t,"leaflet-container"+(o.Browser.touch?" leaflet-touch":"")+(o.Browser.retina?" leaflet-retina":"")+(o.Browser.ielt9?" leaflet-oldie":"")+(this.options.fadeAnimation?" leaflet-fade-anim":""));var e=o.DomUtil.getStyle(t,"position");"absolute"!==e&&"relative"!==e&&"fixed"!==e&&(t.style.position="relative"),this._initPanes(),this._initControlPos&&this._initControlPos()},_initPanes:function(){var t=this._panes={};this._mapPane=t.mapPane=this._createPane("leaflet-map-pane",this._container),this._tilePane=t.tilePane=this._createPane("leaflet-tile-pane",this._mapPane),t.objectsPane=this._createPane("leaflet-objects-pane",this._mapPane),t.shadowPane=this._createPane("leaflet-shadow-pane"),t.overlayPane=this._createPane("leaflet-overlay-pane"),t.markerPane=this._createPane("leaflet-marker-pane"),t.popupPane=this._createPane("leaflet-popup-pane");var e=" leaflet-zoom-hide";this.options.markerZoomAnimation||(o.DomUtil.addClass(t.markerPane,e),o.DomUtil.addClass(t.shadowPane,e),o.DomUtil.addClass(t.popupPane,e))},_createPane:function(t,e){return o.DomUtil.create("div",t,e||this._panes.objectsPane)},_clearPanes:function(){this._container.removeChild(this._mapPane)},_addLayers:function(t){t=t?o.Util.isArray(t)?t:[t]:[];for(var e=0,i=t.length;i>e;e++)this.addLayer(t[e])},_resetView:function(t,e,i,n){var s=this._zoom!==e;n||(this.fire("movestart"),s&&this.fire("zoomstart")),this._zoom=e,this._initialCenter=t,this._initialTopLeftPoint=this._getNewTopLeftPoint(t),i?this._initialTopLeftPoint._add(this._getMapPanePos()):o.DomUtil.setPosition(this._mapPane,new o.Point(0,0)),this._tileLayersToLoad=this._tileLayersNum;var a=!this._loaded;this._loaded=!0,a&&(this.fire("load"),this.eachLayer(this._layerAdd,this)),this.fire("viewreset",{hard:!i}),this.fire("move"),(s||n)&&this.fire("zoomend"),this.fire("moveend",{hard:!i})},_rawPanBy:function(t){o.DomUtil.setPosition(this._mapPane,this._getMapPanePos().subtract(t))},_getZoomSpan:function(){return this.getMaxZoom()-this.getMinZoom()},_updateZoomLevels:function(){var t,e=1/0,n=-1/0,o=this._getZoomSpan();for(t in this._zoomBoundLayers){var s=this._zoomBoundLayers[t];isNaN(s.options.minZoom)||(e=Math.min(e,s.options.minZoom)),isNaN(s.options.maxZoom)||(n=Math.max(n,s.options.maxZoom))}t===i?this._layersMaxZoom=this._layersMinZoom=i:(this._layersMaxZoom=n,this._layersMinZoom=e),o!==this._getZoomSpan()&&this.fire("zoomlevelschange")},_panInsideMaxBounds:function(){this.panInsideBounds(this.options.maxBounds)},_checkIfLoaded:function(){if(!this._loaded)throw new Error("Set map center and zoom first.")},_initEvents:function(e){if(o.DomEvent){e=e||"on",o.DomEvent[e](this._container,"click",this._onMouseClick,this);var i,n,s=["dblclick","mousedown","mouseup","mouseenter","mouseleave","mousemove","contextmenu"];for(i=0,n=s.length;n>i;i++)o.DomEvent[e](this._container,s[i],this._fireMouseEvent,this);this.options.trackResize&&o.DomEvent[e](t,"resize",this._onResize,this)}},_onResize:function(){o.Util.cancelAnimFrame(this._resizeRequest),this._resizeRequest=o.Util.requestAnimFrame(function(){this.invalidateSize({debounceMoveend:!0})},this,!1,this._container)},_onMouseClick:function(t){!this._loaded||!t._simulated&&(this.dragging&&this.dragging.moved()||this.boxZoom&&this.boxZoom.moved())||o.DomEvent._skipped(t)||(this.fire("preclick"),this._fireMouseEvent(t))},_fireMouseEvent:function(t){if(this._loaded&&!o.DomEvent._skipped(t)){var e=t.type;if(e="mouseenter"===e?"mouseover":"mouseleave"===e?"mouseout":e,this.hasEventListeners(e)){"contextmenu"===e&&o.DomEvent.preventDefault(t);var i=this.mouseEventToContainerPoint(t),n=this.containerPointToLayerPoint(i),s=this.layerPointToLatLng(n);this.fire(e,{latlng:s,layerPoint:n,containerPoint:i,originalEvent:t})}}},_onTileLayerLoad:function(){this._tileLayersToLoad--,this._tileLayersNum&&!this._tileLayersToLoad&&this.fire("tilelayersload")},_clearHandlers:function(){for(var t=0,e=this._handlers.length;e>t;t++)this._handlers[t].disable()},whenReady:function(t,e){return this._loaded?t.call(e||this,this):this.on("load",t,e),this},_layerAdd:function(t){t.onAdd(this),this.fire("layeradd",{layer:t})},_getMapPanePos:function(){return o.DomUtil.getPosition(this._mapPane)},_moved:function(){var t=this._getMapPanePos();return t&&!t.equals([0,0])},_getTopLeftPoint:function(){return this.getPixelOrigin().subtract(this._getMapPanePos())},_getNewTopLeftPoint:function(t,e){var i=this.getSize()._divideBy(2);return this.project(t,e)._subtract(i)._round()},_latLngToNewLayerPoint:function(t,e,i){var n=this._getNewTopLeftPoint(i,e).add(this._getMapPanePos());return this.project(t,e)._subtract(n)},_getCenterLayerPoint:function(){return this.containerPointToLayerPoint(this.getSize()._divideBy(2))},_getCenterOffset:function(t){return this.latLngToLayerPoint(t).subtract(this._getCenterLayerPoint())},_limitCenter:function(t,e,i){if(!i)return t;var n=this.project(t,e),s=this.getSize().divideBy(2),a=new o.Bounds(n.subtract(s),n.add(s)),r=this._getBoundsOffset(a,i,e);return this.unproject(n.add(r),e)},_limitOffset:function(t,e){if(!e)return t;var i=this.getPixelBounds(),n=new o.Bounds(i.min.add(t),i.max.add(t));return t.add(this._getBoundsOffset(n,e))},_getBoundsOffset:function(t,e,i){var n=this.project(e.getNorthWest(),i).subtract(t.min),s=this.project(e.getSouthEast(),i).subtract(t.max),a=this._rebound(n.x,-s.x),r=this._rebound(n.y,-s.y);return new o.Point(a,r)},_rebound:function(t,e){return t+e>0?Math.round(t-e)/2:Math.max(0,Math.ceil(t))-Math.max(0,Math.floor(e))},_limitZoom:function(t){var e=this.getMinZoom(),i=this.getMaxZoom();return Math.max(e,Math.min(i,t))}}),o.map=function(t,e){return new o.Map(t,e)},o.Projection.Mercator={MAX_LATITUDE:85.0840591556,R_MINOR:6356752.314245179,R_MAJOR:6378137,project:function(t){var e=o.LatLng.DEG_TO_RAD,i=this.MAX_LATITUDE,n=Math.max(Math.min(i,t.lat),-i),s=this.R_MAJOR,a=this.R_MINOR,r=t.lng*e*s,h=n*e,l=a/s,u=Math.sqrt(1-l*l),c=u*Math.sin(h);c=Math.pow((1-c)/(1+c),.5*u);var d=Math.tan(.5*(.5*Math.PI-h))/c;return h=-s*Math.log(d),new o.Point(r,h)},unproject:function(t){for(var e,i=o.LatLng.RAD_TO_DEG,n=this.R_MAJOR,s=this.R_MINOR,a=t.x*i/n,r=s/n,h=Math.sqrt(1-r*r),l=Math.exp(-t.y/n),u=Math.PI/2-2*Math.atan(l),c=15,d=1e-7,p=c,_=.1;Math.abs(_)>d&&--p>0;)e=h*Math.sin(u),_=Math.PI/2-2*Math.atan(l*Math.pow((1-e)/(1+e),.5*h))-u,u+=_;
return new o.LatLng(u*i,a)}},o.CRS.EPSG3395=o.extend({},o.CRS,{code:"EPSG:3395",projection:o.Projection.Mercator,transformation:function(){var t=o.Projection.Mercator,e=t.R_MAJOR,i=.5/(Math.PI*e);return new o.Transformation(i,.5,-i,.5)}()}),o.TileLayer=o.Class.extend({includes:o.Mixin.Events,options:{minZoom:0,maxZoom:18,tileSize:256,subdomains:"abc",errorTileUrl:"",attribution:"",zoomOffset:0,opacity:1,unloadInvisibleTiles:o.Browser.mobile,updateWhenIdle:o.Browser.mobile},initialize:function(t,e){e=o.setOptions(this,e),e.detectRetina&&o.Browser.retina&&e.maxZoom>0&&(e.tileSize=Math.floor(e.tileSize/2),e.zoomOffset++,e.minZoom>0&&e.minZoom--,this.options.maxZoom--),e.bounds&&(e.bounds=o.latLngBounds(e.bounds)),this._url=t;var i=this.options.subdomains;"string"==typeof i&&(this.options.subdomains=i.split(""))},onAdd:function(t){this._map=t,this._animated=t._zoomAnimated,this._initContainer(),this._createTileProto(),t.on({viewreset:this._reset,moveend:this._update},this),this._animated&&t.on({zoomanim:this._animateZoom,zoomend:this._endZoomAnim},this),this.options.updateWhenIdle||(this._limitedUpdate=o.Util.limitExecByInterval(this._update,150,this),t.on("move",this._limitedUpdate,this)),this._reset(),this._update()},addTo:function(t){return t.addLayer(this),this},onRemove:function(t){this._container.parentNode.removeChild(this._container),t.off({viewreset:this._reset,moveend:this._update},this),this._animated&&t.off({zoomanim:this._animateZoom,zoomend:this._endZoomAnim},this),this.options.updateWhenIdle||t.off("move",this._limitedUpdate,this),this._container=null,this._map=null},bringToFront:function(){var t=this._map._panes.tilePane;return this._container&&(t.appendChild(this._container),this._setAutoZIndex(t,Math.max)),this},bringToBack:function(){var t=this._map._panes.tilePane;return this._container&&(t.insertBefore(this._container,t.firstChild),this._setAutoZIndex(t,Math.min)),this},getAttribution:function(){return this.options.attribution},getContainer:function(){return this._container},setOpacity:function(t){return this.options.opacity=t,this._map&&this._updateOpacity(),this},setZIndex:function(t){return this.options.zIndex=t,this._updateZIndex(),this},setUrl:function(t,e){return this._url=t,e||this.redraw(),this},redraw:function(){return this._map&&(this._reset({hard:!0}),this._update()),this},_updateZIndex:function(){this._container&&this.options.zIndex!==i&&(this._container.style.zIndex=this.options.zIndex)},_setAutoZIndex:function(t,e){var i,n,o,s=t.children,a=-e(1/0,-1/0);for(n=0,o=s.length;o>n;n++)s[n]!==this._container&&(i=parseInt(s[n].style.zIndex,10),isNaN(i)||(a=e(a,i)));this.options.zIndex=this._container.style.zIndex=(isFinite(a)?a:0)+e(1,-1)},_updateOpacity:function(){var t,e=this._tiles;if(o.Browser.ielt9)for(t in e)o.DomUtil.setOpacity(e[t],this.options.opacity);else o.DomUtil.setOpacity(this._container,this.options.opacity)},_initContainer:function(){var t=this._map._panes.tilePane;if(!this._container){if(this._container=o.DomUtil.create("div","leaflet-layer"),this._updateZIndex(),this._animated){var e="leaflet-tile-container";this._bgBuffer=o.DomUtil.create("div",e,this._container),this._tileContainer=o.DomUtil.create("div",e,this._container)}else this._tileContainer=this._container;t.appendChild(this._container),this.options.opacity<1&&this._updateOpacity()}},_reset:function(t){for(var e in this._tiles)this.fire("tileunload",{tile:this._tiles[e]});this._tiles={},this._tilesToLoad=0,this.options.reuseTiles&&(this._unusedTiles=[]),this._tileContainer.innerHTML="",this._animated&&t&&t.hard&&this._clearBgBuffer(),this._initContainer()},_getTileSize:function(){var t=this._map,e=t.getZoom()+this.options.zoomOffset,i=this.options.maxNativeZoom,n=this.options.tileSize;return i&&e>i&&(n=Math.round(t.getZoomScale(e)/t.getZoomScale(i)*n)),n},_update:function(){if(this._map){var t=this._map.getPixelBounds(),e=this._map.getZoom(),i=this.options.tileSize;if(!(e>this.options.maxZoom||e<this.options.minZoom)){var n=o.bounds(t.min.divideBy(i)._floor(),t.max.divideBy(i)._floor());this._addTilesFromCenterOut(n),(this.options.unloadInvisibleTiles||this.options.reuseTiles)&&this._removeOtherTiles(n)}}},_addTilesFromCenterOut:function(t){var i,n,s,a=[],r=t.getCenter();for(i=t.min.y;i<=t.max.y;i++)for(n=t.min.x;n<=t.max.x;n++)s=new o.Point(n,i),this._tileShouldBeLoaded(s)&&a.push(s);var h=a.length;if(0!==h){a.sort(function(t,e){return t.distanceTo(r)-e.distanceTo(r)});var l=e.createDocumentFragment();for(this._tilesToLoad||this.fire("loading"),this._tilesToLoad+=h,n=0;h>n;n++)this._addTile(a[n],l);this._tileContainer.appendChild(l)}},_tileShouldBeLoaded:function(t){if(t.x+":"+t.y in this._tiles)return!1;var e=this.options;if(!e.continuousWorld){var i=this._getWrapTileNum();if(e.noWrap&&(t.x<0||t.x>=i.x)||t.y<0||t.y>=i.y)return!1}if(e.bounds){var n=e.tileSize,o=t.multiplyBy(n),s=o.add([n,n]),a=this._map.unproject(o),r=this._map.unproject(s);if(e.continuousWorld||e.noWrap||(a=a.wrap(),r=r.wrap()),!e.bounds.intersects([a,r]))return!1}return!0},_removeOtherTiles:function(t){var e,i,n,o;for(o in this._tiles)e=o.split(":"),i=parseInt(e[0],10),n=parseInt(e[1],10),(i<t.min.x||i>t.max.x||n<t.min.y||n>t.max.y)&&this._removeTile(o)},_removeTile:function(t){var e=this._tiles[t];this.fire("tileunload",{tile:e,url:e.src}),this.options.reuseTiles?(o.DomUtil.removeClass(e,"leaflet-tile-loaded"),this._unusedTiles.push(e)):e.parentNode===this._tileContainer&&this._tileContainer.removeChild(e),o.Browser.android||(e.onload=null,e.src=o.Util.emptyImageUrl),delete this._tiles[t]},_addTile:function(t,e){var i=this._getTilePos(t),n=this._getTile();o.DomUtil.setPosition(n,i,o.Browser.chrome),this._tiles[t.x+":"+t.y]=n,this._loadTile(n,t),n.parentNode!==this._tileContainer&&e.appendChild(n)},_getZoomForUrl:function(){var t=this.options,e=this._map.getZoom();return t.zoomReverse&&(e=t.maxZoom-e),e+t.zoomOffset},_getTilePos:function(t){var e=this._map.getPixelOrigin(),i=this.options.tileSize;return t.multiplyBy(i).subtract(e)},getTileUrl:function(t){return o.Util.template(this._url,o.extend({s:this._getSubdomain(t),z:t.z,x:t.x,y:t.y},this.options))},_getWrapTileNum:function(){var t=this._map.options.crs,e=t.getSize(this._map.getZoom());return e.divideBy(this._getTileSize())._floor()},_adjustTilePoint:function(t){var e=this._getWrapTileNum();this.options.continuousWorld||this.options.noWrap||(t.x=(t.x%e.x+e.x)%e.x),this.options.tms&&(t.y=e.y-t.y-1),t.z=this._getZoomForUrl()},_getSubdomain:function(t){var e=Math.abs(t.x+t.y)%this.options.subdomains.length;return this.options.subdomains[e]},_createTileProto:function(){var t=this._tileImg=o.DomUtil.create("img","leaflet-tile");t.style.width=t.style.height=this.options.tileSize+"px",t.galleryimg="no"},_getTile:function(){if(this.options.reuseTiles&&this._unusedTiles.length>0){var t=this._unusedTiles.pop();return this._resetTile(t),t}return this._createTile()},_resetTile:function(){},_createTile:function(){var t=this._tileImg.cloneNode(!1);return t.onselectstart=t.onmousemove=o.Util.falseFn,o.Browser.ielt9&&this.options.opacity!==i&&o.DomUtil.setOpacity(t,this.options.opacity),o.Browser.mobileWebkit3d&&(t.style.WebkitBackfaceVisibility="hidden"),t},_loadTile:function(t,e){t._layer=this,t.onload=this._tileOnLoad,t.onerror=this._tileOnError,this._adjustTilePoint(e),t.src=this.getTileUrl(e),this.fire("tileloadstart",{tile:t,url:t.src})},_tileLoaded:function(){this._tilesToLoad--,this._animated&&o.DomUtil.addClass(this._tileContainer,"leaflet-zoom-animated"),this._tilesToLoad||(this.fire("load"),this._animated&&(clearTimeout(this._clearBgBufferTimer),this._clearBgBufferTimer=setTimeout(o.bind(this._clearBgBuffer,this),500)))},_tileOnLoad:function(){var t=this._layer;this.src!==o.Util.emptyImageUrl&&(o.DomUtil.addClass(this,"leaflet-tile-loaded"),t.fire("tileload",{tile:this,url:this.src})),t._tileLoaded()},_tileOnError:function(){var t=this._layer;t.fire("tileerror",{tile:this,url:this.src});var e=t.options.errorTileUrl;e&&(this.src=e),t._tileLoaded()}}),o.tileLayer=function(t,e){return new o.TileLayer(t,e)},o.TileLayer.WMS=o.TileLayer.extend({defaultWmsParams:{service:"WMS",request:"GetMap",version:"1.1.1",layers:"",styles:"",format:"image/jpeg",transparent:!1},initialize:function(t,e){this._url=t;var i=o.extend({},this.defaultWmsParams),n=e.tileSize||this.options.tileSize;i.width=i.height=e.detectRetina&&o.Browser.retina?2*n:n;for(var s in e)this.options.hasOwnProperty(s)||"crs"===s||(i[s]=e[s]);this.wmsParams=i,o.setOptions(this,e)},onAdd:function(t){this._crs=this.options.crs||t.options.crs,this._wmsVersion=parseFloat(this.wmsParams.version);var e=this._wmsVersion>=1.3?"crs":"srs";this.wmsParams[e]=this._crs.code,o.TileLayer.prototype.onAdd.call(this,t)},getTileUrl:function(t){var e=this._map,i=this.options.tileSize,n=t.multiplyBy(i),s=n.add([i,i]),a=this._crs.project(e.unproject(n,t.z)),r=this._crs.project(e.unproject(s,t.z)),h=this._wmsVersion>=1.3&&this._crs===o.CRS.EPSG4326?[r.y,a.x,a.y,r.x].join(","):[a.x,r.y,r.x,a.y].join(","),l=o.Util.template(this._url,{s:this._getSubdomain(t)});return l+o.Util.getParamString(this.wmsParams,l,!0)+"&BBOX="+h},setParams:function(t,e){return o.extend(this.wmsParams,t),e||this.redraw(),this}}),o.tileLayer.wms=function(t,e){return new o.TileLayer.WMS(t,e)},o.TileLayer.Canvas=o.TileLayer.extend({options:{async:!1},initialize:function(t){o.setOptions(this,t)},redraw:function(){this._map&&(this._reset({hard:!0}),this._update());for(var t in this._tiles)this._redrawTile(this._tiles[t]);return this},_redrawTile:function(t){this.drawTile(t,t._tilePoint,this._map._zoom)},_createTileProto:function(){var t=this._canvasProto=o.DomUtil.create("canvas","leaflet-tile");t.width=t.height=this.options.tileSize},_createTile:function(){var t=this._canvasProto.cloneNode(!1);return t.onselectstart=t.onmousemove=o.Util.falseFn,t},_loadTile:function(t,e){t._layer=this,t._tilePoint=e,this._redrawTile(t),this.options.async||this.tileDrawn(t)},drawTile:function(){},tileDrawn:function(t){this._tileOnLoad.call(t)}}),o.tileLayer.canvas=function(t){return new o.TileLayer.Canvas(t)},o.ImageOverlay=o.Class.extend({includes:o.Mixin.Events,options:{opacity:1},initialize:function(t,e,i){this._url=t,this._bounds=o.latLngBounds(e),o.setOptions(this,i)},onAdd:function(t){this._map=t,this._image||this._initImage(),t._panes.overlayPane.appendChild(this._image),t.on("viewreset",this._reset,this),t.options.zoomAnimation&&o.Browser.any3d&&t.on("zoomanim",this._animateZoom,this),this._reset()},onRemove:function(t){t.getPanes().overlayPane.removeChild(this._image),t.off("viewreset",this._reset,this),t.options.zoomAnimation&&t.off("zoomanim",this._animateZoom,this)},addTo:function(t){return t.addLayer(this),this},setOpacity:function(t){return this.options.opacity=t,this._updateOpacity(),this},bringToFront:function(){return this._image&&this._map._panes.overlayPane.appendChild(this._image),this},bringToBack:function(){var t=this._map._panes.overlayPane;return this._image&&t.insertBefore(this._image,t.firstChild),this},setUrl:function(t){this._url=t,this._image.src=this._url},getAttribution:function(){return this.options.attribution},_initImage:function(){this._image=o.DomUtil.create("img","leaflet-image-layer"),this._map.options.zoomAnimation&&o.Browser.any3d?o.DomUtil.addClass(this._image,"leaflet-zoom-animated"):o.DomUtil.addClass(this._image,"leaflet-zoom-hide"),this._updateOpacity(),o.extend(this._image,{galleryimg:"no",onselectstart:o.Util.falseFn,onmousemove:o.Util.falseFn,onload:o.bind(this._onImageLoad,this),src:this._url})},_animateZoom:function(t){var e=this._map,i=this._image,n=e.getZoomScale(t.zoom),s=this._bounds.getNorthWest(),a=this._bounds.getSouthEast(),r=e._latLngToNewLayerPoint(s,t.zoom,t.center),h=e._latLngToNewLayerPoint(a,t.zoom,t.center)._subtract(r),l=r._add(h._multiplyBy(.5*(1-1/n)));i.style[o.DomUtil.TRANSFORM]=o.DomUtil.getTranslateString(l)+" scale("+n+") "},_reset:function(){var t=this._image,e=this._map.latLngToLayerPoint(this._bounds.getNorthWest()),i=this._map.latLngToLayerPoint(this._bounds.getSouthEast())._subtract(e);o.DomUtil.setPosition(t,e),t.style.width=i.x+"px",t.style.height=i.y+"px"},_onImageLoad:function(){this.fire("load")},_updateOpacity:function(){o.DomUtil.setOpacity(this._image,this.options.opacity)}}),o.imageOverlay=function(t,e,i){return new o.ImageOverlay(t,e,i)},o.Icon=o.Class.extend({options:{className:""},initialize:function(t){o.setOptions(this,t)},createIcon:function(t){return this._createIcon("icon",t)},createShadow:function(t){return this._createIcon("shadow",t)},_createIcon:function(t,e){var i=this._getIconUrl(t);if(!i){if("icon"===t)throw new Error("iconUrl not set in Icon options (see the docs).");return null}var n;return n=e&&"IMG"===e.tagName?this._createImg(i,e):this._createImg(i),this._setIconStyles(n,t),n},_setIconStyles:function(t,e){var i,n=this.options,s=o.point(n[e+"Size"]);i="shadow"===e?o.point(n.shadowAnchor||n.iconAnchor):o.point(n.iconAnchor),!i&&s&&(i=s.divideBy(2,!0)),t.className="leaflet-marker-"+e+" "+n.className,i&&(t.style.marginLeft=-i.x+"px",t.style.marginTop=-i.y+"px"),s&&(t.style.width=s.x+"px",t.style.height=s.y+"px")},_createImg:function(t,i){return i=i||e.createElement("img"),i.src=t,i},_getIconUrl:function(t){return o.Browser.retina&&this.options[t+"RetinaUrl"]?this.options[t+"RetinaUrl"]:this.options[t+"Url"]}}),o.icon=function(t){return new o.Icon(t)},o.Icon.Default=o.Icon.extend({options:{iconSize:[25,41],iconAnchor:[12,41],popupAnchor:[1,-34],shadowSize:[41,41]},_getIconUrl:function(t){var e=t+"Url";if(this.options[e])return this.options[e];o.Browser.retina&&"icon"===t&&(t+="-2x");var i=o.Icon.Default.imagePath;if(!i)throw new Error("Couldn't autodetect L.Icon.Default.imagePath, set it manually.");return i+"/marker-"+t+".png"}}),o.Icon.Default.imagePath=function(){var t,i,n,o,s,a=e.getElementsByTagName("script"),r=/[\/^]leaflet[\-\._]?([\w\-\._]*)\.js\??/;for(t=0,i=a.length;i>t;t++)if(n=a[t].src,o=n.match(r))return s=n.split(r)[0],(s?s+"/":"")+"images"}(),o.Marker=o.Class.extend({includes:o.Mixin.Events,options:{icon:new o.Icon.Default,title:"",alt:"",clickable:!0,draggable:!1,keyboard:!0,zIndexOffset:0,opacity:1,riseOnHover:!1,riseOffset:250},initialize:function(t,e){o.setOptions(this,e),this._latlng=o.latLng(t)},onAdd:function(t){this._map=t,t.on("viewreset",this.update,this),this._initIcon(),this.update(),this.fire("add"),t.options.zoomAnimation&&t.options.markerZoomAnimation&&t.on("zoomanim",this._animateZoom,this)},addTo:function(t){return t.addLayer(this),this},onRemove:function(t){this.dragging&&this.dragging.disable(),this._removeIcon(),this._removeShadow(),this.fire("remove"),t.off({viewreset:this.update,zoomanim:this._animateZoom},this),this._map=null},getLatLng:function(){return this._latlng},setLatLng:function(t){return this._latlng=o.latLng(t),this.update(),this.fire("move",{latlng:this._latlng})},setZIndexOffset:function(t){return this.options.zIndexOffset=t,this.update(),this},setIcon:function(t){return this.options.icon=t,this._map&&(this._initIcon(),this.update()),this._popup&&this.bindPopup(this._popup),this},update:function(){if(this._icon){var t=this._map.latLngToLayerPoint(this._latlng).round();this._setPos(t)}return this},_initIcon:function(){var t=this.options,e=this._map,i=e.options.zoomAnimation&&e.options.markerZoomAnimation,n=i?"leaflet-zoom-animated":"leaflet-zoom-hide",s=t.icon.createIcon(this._icon),a=!1;s!==this._icon&&(this._icon&&this._removeIcon(),a=!0,t.title&&(s.title=t.title),t.alt&&(s.alt=t.alt)),o.DomUtil.addClass(s,n),t.keyboard&&(s.tabIndex="0"),this._icon=s,this._initInteraction(),t.riseOnHover&&o.DomEvent.on(s,"mouseover",this._bringToFront,this).on(s,"mouseout",this._resetZIndex,this);var r=t.icon.createShadow(this._shadow),h=!1;r!==this._shadow&&(this._removeShadow(),h=!0),r&&o.DomUtil.addClass(r,n),this._shadow=r,t.opacity<1&&this._updateOpacity();var l=this._map._panes;a&&l.markerPane.appendChild(this._icon),r&&h&&l.shadowPane.appendChild(this._shadow)},_removeIcon:function(){this.options.riseOnHover&&o.DomEvent.off(this._icon,"mouseover",this._bringToFront).off(this._icon,"mouseout",this._resetZIndex),this._map._panes.markerPane.removeChild(this._icon),this._icon=null},_removeShadow:function(){this._shadow&&this._map._panes.shadowPane.removeChild(this._shadow),this._shadow=null},_setPos:function(t){o.DomUtil.setPosition(this._icon,t),this._shadow&&o.DomUtil.setPosition(this._shadow,t),this._zIndex=t.y+this.options.zIndexOffset,this._resetZIndex()},_updateZIndex:function(t){this._icon.style.zIndex=this._zIndex+t},_animateZoom:function(t){var e=this._map._latLngToNewLayerPoint(this._latlng,t.zoom,t.center).round();this._setPos(e)},_initInteraction:function(){if(this.options.clickable){var t=this._icon,e=["dblclick","mousedown","mouseover","mouseout","contextmenu"];o.DomUtil.addClass(t,"leaflet-clickable"),o.DomEvent.on(t,"click",this._onMouseClick,this),o.DomEvent.on(t,"keypress",this._onKeyPress,this);for(var i=0;i<e.length;i++)o.DomEvent.on(t,e[i],this._fireMouseEvent,this);o.Handler.MarkerDrag&&(this.dragging=new o.Handler.MarkerDrag(this),this.options.draggable&&this.dragging.enable())}},_onMouseClick:function(t){var e=this.dragging&&this.dragging.moved();(this.hasEventListeners(t.type)||e)&&o.DomEvent.stopPropagation(t),e||(this.dragging&&this.dragging._enabled||!this._map.dragging||!this._map.dragging.moved())&&this.fire(t.type,{originalEvent:t,latlng:this._latlng})},_onKeyPress:function(t){13===t.keyCode&&this.fire("click",{originalEvent:t,latlng:this._latlng})},_fireMouseEvent:function(t){this.fire(t.type,{originalEvent:t,latlng:this._latlng}),"contextmenu"===t.type&&this.hasEventListeners(t.type)&&o.DomEvent.preventDefault(t),"mousedown"!==t.type?o.DomEvent.stopPropagation(t):o.DomEvent.preventDefault(t)},setOpacity:function(t){return this.options.opacity=t,this._map&&this._updateOpacity(),this},_updateOpacity:function(){o.DomUtil.setOpacity(this._icon,this.options.opacity),this._shadow&&o.DomUtil.setOpacity(this._shadow,this.options.opacity)},_bringToFront:function(){this._updateZIndex(this.options.riseOffset)},_resetZIndex:function(){this._updateZIndex(0)}}),o.marker=function(t,e){return new o.Marker(t,e)},o.DivIcon=o.Icon.extend({options:{iconSize:[12,12],className:"leaflet-div-icon",html:!1},createIcon:function(t){var i=t&&"DIV"===t.tagName?t:e.createElement("div"),n=this.options;return i.innerHTML=n.html!==!1?n.html:"",n.bgPos&&(i.style.backgroundPosition=-n.bgPos.x+"px "+-n.bgPos.y+"px"),this._setIconStyles(i,"icon"),i},createShadow:function(){return null}}),o.divIcon=function(t){return new o.DivIcon(t)},o.Map.mergeOptions({closePopupOnClick:!0}),o.Popup=o.Class.extend({includes:o.Mixin.Events,options:{minWidth:50,maxWidth:300,autoPan:!0,closeButton:!0,offset:[0,7],autoPanPadding:[5,5],keepInView:!1,className:"",zoomAnimation:!0},initialize:function(t,e){o.setOptions(this,t),this._source=e,this._animated=o.Browser.any3d&&this.options.zoomAnimation,this._isOpen=!1},onAdd:function(t){this._map=t,this._container||this._initLayout();var e=t.options.fadeAnimation;e&&o.DomUtil.setOpacity(this._container,0),t._panes.popupPane.appendChild(this._container),t.on(this._getEvents(),this),this.update(),e&&o.DomUtil.setOpacity(this._container,1),this.fire("open"),t.fire("popupopen",{popup:this}),this._source&&this._source.fire("popupopen",{popup:this})},addTo:function(t){return t.addLayer(this),this},openOn:function(t){return t.openPopup(this),this},onRemove:function(t){t._panes.popupPane.removeChild(this._container),o.Util.falseFn(this._container.offsetWidth),t.off(this._getEvents(),this),t.options.fadeAnimation&&o.DomUtil.setOpacity(this._container,0),this._map=null,this.fire("close"),t.fire("popupclose",{popup:this}),this._source&&this._source.fire("popupclose",{popup:this})},getLatLng:function(){return this._latlng},setLatLng:function(t){return this._latlng=o.latLng(t),this._map&&(this._updatePosition(),this._adjustPan()),this},getContent:function(){return this._content},setContent:function(t){return this._content=t,this.update(),this},update:function(){this._map&&(this._container.style.visibility="hidden",this._updateContent(),this._updateLayout(),this._updatePosition(),this._container.style.visibility="",this._adjustPan())},_getEvents:function(){var t={viewreset:this._updatePosition};return this._animated&&(t.zoomanim=this._zoomAnimation),("closeOnClick"in this.options?this.options.closeOnClick:this._map.options.closePopupOnClick)&&(t.preclick=this._close),this.options.keepInView&&(t.moveend=this._adjustPan),t},_close:function(){this._map&&this._map.closePopup(this)},_initLayout:function(){var t,e="leaflet-popup",i=e+" "+this.options.className+" leaflet-zoom-"+(this._animated?"animated":"hide"),n=this._container=o.DomUtil.create("div",i);this.options.closeButton&&(t=this._closeButton=o.DomUtil.create("a",e+"-close-button",n),t.href="#close",t.innerHTML="&#215;",o.DomEvent.disableClickPropagation(t),o.DomEvent.on(t,"click",this._onCloseButtonClick,this));var s=this._wrapper=o.DomUtil.create("div",e+"-content-wrapper",n);o.DomEvent.disableClickPropagation(s),this._contentNode=o.DomUtil.create("div",e+"-content",s),o.DomEvent.disableScrollPropagation(this._contentNode),o.DomEvent.on(s,"contextmenu",o.DomEvent.stopPropagation),this._tipContainer=o.DomUtil.create("div",e+"-tip-container",n),this._tip=o.DomUtil.create("div",e+"-tip",this._tipContainer)},_updateContent:function(){if(this._content){if("string"==typeof this._content)this._contentNode.innerHTML=this._content;else{for(;this._contentNode.hasChildNodes();)this._contentNode.removeChild(this._contentNode.firstChild);this._contentNode.appendChild(this._content)}this.fire("contentupdate")}},_updateLayout:function(){var t=this._contentNode,e=t.style;e.width="",e.whiteSpace="nowrap";var i=t.offsetWidth;i=Math.min(i,this.options.maxWidth),i=Math.max(i,this.options.minWidth),e.width=i+1+"px",e.whiteSpace="",e.height="";var n=t.offsetHeight,s=this.options.maxHeight,a="leaflet-popup-scrolled";s&&n>s?(e.height=s+"px",o.DomUtil.addClass(t,a)):o.DomUtil.removeClass(t,a),this._containerWidth=this._container.offsetWidth},_updatePosition:function(){if(this._map){var t=this._map.latLngToLayerPoint(this._latlng),e=this._animated,i=o.point(this.options.offset);e&&o.DomUtil.setPosition(this._container,t),this._containerBottom=-i.y-(e?0:t.y),this._containerLeft=-Math.round(this._containerWidth/2)+i.x+(e?0:t.x),this._container.style.bottom=this._containerBottom+"px",this._container.style.left=this._containerLeft+"px"}},_zoomAnimation:function(t){var e=this._map._latLngToNewLayerPoint(this._latlng,t.zoom,t.center);o.DomUtil.setPosition(this._container,e)},_adjustPan:function(){if(this.options.autoPan){var t=this._map,e=this._container.offsetHeight,i=this._containerWidth,n=new o.Point(this._containerLeft,-e-this._containerBottom);this._animated&&n._add(o.DomUtil.getPosition(this._container));var s=t.layerPointToContainerPoint(n),a=o.point(this.options.autoPanPadding),r=o.point(this.options.autoPanPaddingTopLeft||a),h=o.point(this.options.autoPanPaddingBottomRight||a),l=t.getSize(),u=0,c=0;s.x+i+h.x>l.x&&(u=s.x+i-l.x+h.x),s.x-u-r.x<0&&(u=s.x-r.x),s.y+e+h.y>l.y&&(c=s.y+e-l.y+h.y),s.y-c-r.y<0&&(c=s.y-r.y),(u||c)&&t.fire("autopanstart").panBy([u,c])}},_onCloseButtonClick:function(t){this._close(),o.DomEvent.stop(t)}}),o.popup=function(t,e){return new o.Popup(t,e)},o.Map.include({openPopup:function(t,e,i){if(this.closePopup(),!(t instanceof o.Popup)){var n=t;t=new o.Popup(i).setLatLng(e).setContent(n)}return t._isOpen=!0,this._popup=t,this.addLayer(t)},closePopup:function(t){return t&&t!==this._popup||(t=this._popup,this._popup=null),t&&(this.removeLayer(t),t._isOpen=!1),this}}),o.Marker.include({openPopup:function(){return this._popup&&this._map&&!this._map.hasLayer(this._popup)&&(this._popup.setLatLng(this._latlng),this._map.openPopup(this._popup)),this},closePopup:function(){return this._popup&&this._popup._close(),this},togglePopup:function(){return this._popup&&(this._popup._isOpen?this.closePopup():this.openPopup()),this},bindPopup:function(t,e){var i=o.point(this.options.icon.options.popupAnchor||[0,0]);return i=i.add(o.Popup.prototype.options.offset),e&&e.offset&&(i=i.add(e.offset)),e=o.extend({offset:i},e),this._popupHandlersAdded||(this.on("click",this.togglePopup,this).on("remove",this.closePopup,this).on("move",this._movePopup,this),this._popupHandlersAdded=!0),t instanceof o.Popup?(o.setOptions(t,e),this._popup=t):this._popup=new o.Popup(e,this).setContent(t),this},setPopupContent:function(t){return this._popup&&this._popup.setContent(t),this},unbindPopup:function(){return this._popup&&(this._popup=null,this.off("click",this.togglePopup,this).off("remove",this.closePopup,this).off("move",this._movePopup,this),this._popupHandlersAdded=!1),this},getPopup:function(){return this._popup},_movePopup:function(t){this._popup.setLatLng(t.latlng)}}),o.LayerGroup=o.Class.extend({initialize:function(t){this._layers={};var e,i;if(t)for(e=0,i=t.length;i>e;e++)this.addLayer(t[e])},addLayer:function(t){var e=this.getLayerId(t);return this._layers[e]=t,this._map&&this._map.addLayer(t),this},removeLayer:function(t){var e=t in this._layers?t:this.getLayerId(t);return this._map&&this._layers[e]&&this._map.removeLayer(this._layers[e]),delete this._layers[e],this},hasLayer:function(t){return t?t in this._layers||this.getLayerId(t)in this._layers:!1},clearLayers:function(){return this.eachLayer(this.removeLayer,this),this},invoke:function(t){var e,i,n=Array.prototype.slice.call(arguments,1);for(e in this._layers)i=this._layers[e],i[t]&&i[t].apply(i,n);return this},onAdd:function(t){this._map=t,this.eachLayer(t.addLayer,t)},onRemove:function(t){this.eachLayer(t.removeLayer,t),this._map=null},addTo:function(t){return t.addLayer(this),this},eachLayer:function(t,e){for(var i in this._layers)t.call(e,this._layers[i]);return this},getLayer:function(t){return this._layers[t]},getLayers:function(){var t=[];for(var e in this._layers)t.push(this._layers[e]);return t},setZIndex:function(t){return this.invoke("setZIndex",t)},getLayerId:function(t){return o.stamp(t)}}),o.layerGroup=function(t){return new o.LayerGroup(t)},o.FeatureGroup=o.LayerGroup.extend({includes:o.Mixin.Events,statics:{EVENTS:"click dblclick mouseover mouseout mousemove contextmenu popupopen popupclose"},addLayer:function(t){return this.hasLayer(t)?this:("on"in t&&t.on(o.FeatureGroup.EVENTS,this._propagateEvent,this),o.LayerGroup.prototype.addLayer.call(this,t),this._popupContent&&t.bindPopup&&t.bindPopup(this._popupContent,this._popupOptions),this.fire("layeradd",{layer:t}))},removeLayer:function(t){return this.hasLayer(t)?(t in this._layers&&(t=this._layers[t]),t.off(o.FeatureGroup.EVENTS,this._propagateEvent,this),o.LayerGroup.prototype.removeLayer.call(this,t),this._popupContent&&this.invoke("unbindPopup"),this.fire("layerremove",{layer:t})):this},bindPopup:function(t,e){return this._popupContent=t,this._popupOptions=e,this.invoke("bindPopup",t,e)},openPopup:function(t){for(var e in this._layers){this._layers[e].openPopup(t);break}return this},setStyle:function(t){return this.invoke("setStyle",t)},bringToFront:function(){return this.invoke("bringToFront")},bringToBack:function(){return this.invoke("bringToBack")},getBounds:function(){var t=new o.LatLngBounds;return this.eachLayer(function(e){t.extend(e instanceof o.Marker?e.getLatLng():e.getBounds())}),t},_propagateEvent:function(t){t=o.extend({layer:t.target,target:this},t),this.fire(t.type,t)}}),o.featureGroup=function(t){return new o.FeatureGroup(t)},o.Path=o.Class.extend({includes:[o.Mixin.Events],statics:{CLIP_PADDING:function(){var e=o.Browser.mobile?1280:2e3,i=(e/Math.max(t.outerWidth,t.outerHeight)-1)/2;return Math.max(0,Math.min(.5,i))}()},options:{stroke:!0,color:"#0033ff",dashArray:null,lineCap:null,lineJoin:null,weight:5,opacity:.5,fill:!1,fillColor:null,fillOpacity:.2,clickable:!0},initialize:function(t){o.setOptions(this,t)},onAdd:function(t){this._map=t,this._container||(this._initElements(),this._initEvents()),this.projectLatlngs(),this._updatePath(),this._container&&this._map._pathRoot.appendChild(this._container),this.fire("add"),t.on({viewreset:this.projectLatlngs,moveend:this._updatePath},this)},addTo:function(t){return t.addLayer(this),this},onRemove:function(t){t._pathRoot.removeChild(this._container),this.fire("remove"),this._map=null,o.Browser.vml&&(this._container=null,this._stroke=null,this._fill=null),t.off({viewreset:this.projectLatlngs,moveend:this._updatePath},this)},projectLatlngs:function(){},setStyle:function(t){return o.setOptions(this,t),this._container&&this._updateStyle(),this},redraw:function(){return this._map&&(this.projectLatlngs(),this._updatePath()),this}}),o.Map.include({_updatePathViewport:function(){var t=o.Path.CLIP_PADDING,e=this.getSize(),i=o.DomUtil.getPosition(this._mapPane),n=i.multiplyBy(-1)._subtract(e.multiplyBy(t)._round()),s=n.add(e.multiplyBy(1+2*t)._round());this._pathViewport=new o.Bounds(n,s)}}),o.Path.SVG_NS="http://www.w3.org/2000/svg",o.Browser.svg=!(!e.createElementNS||!e.createElementNS(o.Path.SVG_NS,"svg").createSVGRect),o.Path=o.Path.extend({statics:{SVG:o.Browser.svg},bringToFront:function(){var t=this._map._pathRoot,e=this._container;return e&&t.lastChild!==e&&t.appendChild(e),this},bringToBack:function(){var t=this._map._pathRoot,e=this._container,i=t.firstChild;return e&&i!==e&&t.insertBefore(e,i),this},getPathString:function(){},_createElement:function(t){return e.createElementNS(o.Path.SVG_NS,t)},_initElements:function(){this._map._initPathRoot(),this._initPath(),this._initStyle()},_initPath:function(){this._container=this._createElement("g"),this._path=this._createElement("path"),this.options.className&&o.DomUtil.addClass(this._path,this.options.className),this._container.appendChild(this._path)},_initStyle:function(){this.options.stroke&&(this._path.setAttribute("stroke-linejoin","round"),this._path.setAttribute("stroke-linecap","round")),this.options.fill&&this._path.setAttribute("fill-rule","evenodd"),this.options.pointerEvents&&this._path.setAttribute("pointer-events",this.options.pointerEvents),this.options.clickable||this.options.pointerEvents||this._path.setAttribute("pointer-events","none"),this._updateStyle()},_updateStyle:function(){this.options.stroke?(this._path.setAttribute("stroke",this.options.color),this._path.setAttribute("stroke-opacity",this.options.opacity),this._path.setAttribute("stroke-width",this.options.weight),this.options.dashArray?this._path.setAttribute("stroke-dasharray",this.options.dashArray):this._path.removeAttribute("stroke-dasharray"),this.options.lineCap&&this._path.setAttribute("stroke-linecap",this.options.lineCap),this.options.lineJoin&&this._path.setAttribute("stroke-linejoin",this.options.lineJoin)):this._path.setAttribute("stroke","none"),this.options.fill?(this._path.setAttribute("fill",this.options.fillColor||this.options.color),this._path.setAttribute("fill-opacity",this.options.fillOpacity)):this._path.setAttribute("fill","none")},_updatePath:function(){var t=this.getPathString();t||(t="M0 0"),this._path.setAttribute("d",t)},_initEvents:function(){if(this.options.clickable){(o.Browser.svg||!o.Browser.vml)&&o.DomUtil.addClass(this._path,"leaflet-clickable"),o.DomEvent.on(this._container,"click",this._onMouseClick,this);for(var t=["dblclick","mousedown","mouseover","mouseout","mousemove","contextmenu"],e=0;e<t.length;e++)o.DomEvent.on(this._container,t[e],this._fireMouseEvent,this)}},_onMouseClick:function(t){this._map.dragging&&this._map.dragging.moved()||this._fireMouseEvent(t)},_fireMouseEvent:function(t){if(this.hasEventListeners(t.type)){var e=this._map,i=e.mouseEventToContainerPoint(t),n=e.containerPointToLayerPoint(i),s=e.layerPointToLatLng(n);this.fire(t.type,{latlng:s,layerPoint:n,containerPoint:i,originalEvent:t}),"contextmenu"===t.type&&o.DomEvent.preventDefault(t),"mousemove"!==t.type&&o.DomEvent.stopPropagation(t)}}}),o.Map.include({_initPathRoot:function(){this._pathRoot||(this._pathRoot=o.Path.prototype._createElement("svg"),this._panes.overlayPane.appendChild(this._pathRoot),this.options.zoomAnimation&&o.Browser.any3d?(o.DomUtil.addClass(this._pathRoot,"leaflet-zoom-animated"),this.on({zoomanim:this._animatePathZoom,zoomend:this._endPathZoom})):o.DomUtil.addClass(this._pathRoot,"leaflet-zoom-hide"),this.on("moveend",this._updateSvgViewport),this._updateSvgViewport())
},_animatePathZoom:function(t){var e=this.getZoomScale(t.zoom),i=this._getCenterOffset(t.center)._multiplyBy(-e)._add(this._pathViewport.min);this._pathRoot.style[o.DomUtil.TRANSFORM]=o.DomUtil.getTranslateString(i)+" scale("+e+") ",this._pathZooming=!0},_endPathZoom:function(){this._pathZooming=!1},_updateSvgViewport:function(){if(!this._pathZooming){this._updatePathViewport();var t=this._pathViewport,e=t.min,i=t.max,n=i.x-e.x,s=i.y-e.y,a=this._pathRoot,r=this._panes.overlayPane;o.Browser.mobileWebkit&&r.removeChild(a),o.DomUtil.setPosition(a,e),a.setAttribute("width",n),a.setAttribute("height",s),a.setAttribute("viewBox",[e.x,e.y,n,s].join(" ")),o.Browser.mobileWebkit&&r.appendChild(a)}}}),o.Path.include({bindPopup:function(t,e){return t instanceof o.Popup?this._popup=t:((!this._popup||e)&&(this._popup=new o.Popup(e,this)),this._popup.setContent(t)),this._popupHandlersAdded||(this.on("click",this._openPopup,this).on("remove",this.closePopup,this),this._popupHandlersAdded=!0),this},unbindPopup:function(){return this._popup&&(this._popup=null,this.off("click",this._openPopup).off("remove",this.closePopup),this._popupHandlersAdded=!1),this},openPopup:function(t){return this._popup&&(t=t||this._latlng||this._latlngs[Math.floor(this._latlngs.length/2)],this._openPopup({latlng:t})),this},closePopup:function(){return this._popup&&this._popup._close(),this},_openPopup:function(t){this._popup.setLatLng(t.latlng),this._map.openPopup(this._popup)}}),o.Browser.vml=!o.Browser.svg&&function(){try{var t=e.createElement("div");t.innerHTML='<v:shape adj="1"/>';var i=t.firstChild;return i.style.behavior="url(#default#VML)",i&&"object"==typeof i.adj}catch(n){return!1}}(),o.Path=o.Browser.svg||!o.Browser.vml?o.Path:o.Path.extend({statics:{VML:!0,CLIP_PADDING:.02},_createElement:function(){try{return e.namespaces.add("lvml","urn:schemas-microsoft-com:vml"),function(t){return e.createElement("<lvml:"+t+' class="lvml">')}}catch(t){return function(t){return e.createElement("<"+t+' xmlns="urn:schemas-microsoft.com:vml" class="lvml">')}}}(),_initPath:function(){var t=this._container=this._createElement("shape");o.DomUtil.addClass(t,"leaflet-vml-shape"+(this.options.className?" "+this.options.className:"")),this.options.clickable&&o.DomUtil.addClass(t,"leaflet-clickable"),t.coordsize="1 1",this._path=this._createElement("path"),t.appendChild(this._path),this._map._pathRoot.appendChild(t)},_initStyle:function(){this._updateStyle()},_updateStyle:function(){var t=this._stroke,e=this._fill,i=this.options,n=this._container;n.stroked=i.stroke,n.filled=i.fill,i.stroke?(t||(t=this._stroke=this._createElement("stroke"),t.endcap="round",n.appendChild(t)),t.weight=i.weight+"px",t.color=i.color,t.opacity=i.opacity,t.dashStyle=i.dashArray?o.Util.isArray(i.dashArray)?i.dashArray.join(" "):i.dashArray.replace(/( *, *)/g," "):"",i.lineCap&&(t.endcap=i.lineCap.replace("butt","flat")),i.lineJoin&&(t.joinstyle=i.lineJoin)):t&&(n.removeChild(t),this._stroke=null),i.fill?(e||(e=this._fill=this._createElement("fill"),n.appendChild(e)),e.color=i.fillColor||i.color,e.opacity=i.fillOpacity):e&&(n.removeChild(e),this._fill=null)},_updatePath:function(){var t=this._container.style;t.display="none",this._path.v=this.getPathString()+" ",t.display=""}}),o.Map.include(o.Browser.svg||!o.Browser.vml?{}:{_initPathRoot:function(){if(!this._pathRoot){var t=this._pathRoot=e.createElement("div");t.className="leaflet-vml-container",this._panes.overlayPane.appendChild(t),this.on("moveend",this._updatePathViewport),this._updatePathViewport()}}}),o.Browser.canvas=function(){return!!e.createElement("canvas").getContext}(),o.Path=o.Path.SVG&&!t.L_PREFER_CANVAS||!o.Browser.canvas?o.Path:o.Path.extend({statics:{CANVAS:!0,SVG:!1},redraw:function(){return this._map&&(this.projectLatlngs(),this._requestUpdate()),this},setStyle:function(t){return o.setOptions(this,t),this._map&&(this._updateStyle(),this._requestUpdate()),this},onRemove:function(t){t.off("viewreset",this.projectLatlngs,this).off("moveend",this._updatePath,this),this.options.clickable&&(this._map.off("click",this._onClick,this),this._map.off("mousemove",this._onMouseMove,this)),this._requestUpdate(),this._map=null},_requestUpdate:function(){this._map&&!o.Path._updateRequest&&(o.Path._updateRequest=o.Util.requestAnimFrame(this._fireMapMoveEnd,this._map))},_fireMapMoveEnd:function(){o.Path._updateRequest=null,this.fire("moveend")},_initElements:function(){this._map._initPathRoot(),this._ctx=this._map._canvasCtx},_updateStyle:function(){var t=this.options;t.stroke&&(this._ctx.lineWidth=t.weight,this._ctx.strokeStyle=t.color),t.fill&&(this._ctx.fillStyle=t.fillColor||t.color)},_drawPath:function(){var t,e,i,n,s,a;for(this._ctx.beginPath(),t=0,i=this._parts.length;i>t;t++){for(e=0,n=this._parts[t].length;n>e;e++)s=this._parts[t][e],a=(0===e?"move":"line")+"To",this._ctx[a](s.x,s.y);this instanceof o.Polygon&&this._ctx.closePath()}},_checkIfEmpty:function(){return!this._parts.length},_updatePath:function(){if(!this._checkIfEmpty()){var t=this._ctx,e=this.options;this._drawPath(),t.save(),this._updateStyle(),e.fill&&(t.globalAlpha=e.fillOpacity,t.fill()),e.stroke&&(t.globalAlpha=e.opacity,t.stroke()),t.restore()}},_initEvents:function(){this.options.clickable&&(this._map.on("mousemove",this._onMouseMove,this),this._map.on("click",this._onClick,this))},_onClick:function(t){this._containsPoint(t.layerPoint)&&this.fire("click",t)},_onMouseMove:function(t){this._map&&!this._map._animatingZoom&&(this._containsPoint(t.layerPoint)?(this._ctx.canvas.style.cursor="pointer",this._mouseInside=!0,this.fire("mouseover",t)):this._mouseInside&&(this._ctx.canvas.style.cursor="",this._mouseInside=!1,this.fire("mouseout",t)))}}),o.Map.include(o.Path.SVG&&!t.L_PREFER_CANVAS||!o.Browser.canvas?{}:{_initPathRoot:function(){var t,i=this._pathRoot;i||(i=this._pathRoot=e.createElement("canvas"),i.style.position="absolute",t=this._canvasCtx=i.getContext("2d"),t.lineCap="round",t.lineJoin="round",this._panes.overlayPane.appendChild(i),this.options.zoomAnimation&&(this._pathRoot.className="leaflet-zoom-animated",this.on("zoomanim",this._animatePathZoom),this.on("zoomend",this._endPathZoom)),this.on("moveend",this._updateCanvasViewport),this._updateCanvasViewport())},_updateCanvasViewport:function(){if(!this._pathZooming){this._updatePathViewport();var t=this._pathViewport,e=t.min,i=t.max.subtract(e),n=this._pathRoot;o.DomUtil.setPosition(n,e),n.width=i.x,n.height=i.y,n.getContext("2d").translate(-e.x,-e.y)}}}),o.LineUtil={simplify:function(t,e){if(!e||!t.length)return t.slice();var i=e*e;return t=this._reducePoints(t,i),t=this._simplifyDP(t,i)},pointToSegmentDistance:function(t,e,i){return Math.sqrt(this._sqClosestPointOnSegment(t,e,i,!0))},closestPointOnSegment:function(t,e,i){return this._sqClosestPointOnSegment(t,e,i)},_simplifyDP:function(t,e){var n=t.length,o=typeof Uint8Array!=i+""?Uint8Array:Array,s=new o(n);s[0]=s[n-1]=1,this._simplifyDPStep(t,s,e,0,n-1);var a,r=[];for(a=0;n>a;a++)s[a]&&r.push(t[a]);return r},_simplifyDPStep:function(t,e,i,n,o){var s,a,r,h=0;for(a=n+1;o-1>=a;a++)r=this._sqClosestPointOnSegment(t[a],t[n],t[o],!0),r>h&&(s=a,h=r);h>i&&(e[s]=1,this._simplifyDPStep(t,e,i,n,s),this._simplifyDPStep(t,e,i,s,o))},_reducePoints:function(t,e){for(var i=[t[0]],n=1,o=0,s=t.length;s>n;n++)this._sqDist(t[n],t[o])>e&&(i.push(t[n]),o=n);return s-1>o&&i.push(t[s-1]),i},clipSegment:function(t,e,i,n){var o,s,a,r=n?this._lastCode:this._getBitCode(t,i),h=this._getBitCode(e,i);for(this._lastCode=h;;){if(!(r|h))return[t,e];if(r&h)return!1;o=r||h,s=this._getEdgeIntersection(t,e,o,i),a=this._getBitCode(s,i),o===r?(t=s,r=a):(e=s,h=a)}},_getEdgeIntersection:function(t,e,i,n){var s=e.x-t.x,a=e.y-t.y,r=n.min,h=n.max;return 8&i?new o.Point(t.x+s*(h.y-t.y)/a,h.y):4&i?new o.Point(t.x+s*(r.y-t.y)/a,r.y):2&i?new o.Point(h.x,t.y+a*(h.x-t.x)/s):1&i?new o.Point(r.x,t.y+a*(r.x-t.x)/s):void 0},_getBitCode:function(t,e){var i=0;return t.x<e.min.x?i|=1:t.x>e.max.x&&(i|=2),t.y<e.min.y?i|=4:t.y>e.max.y&&(i|=8),i},_sqDist:function(t,e){var i=e.x-t.x,n=e.y-t.y;return i*i+n*n},_sqClosestPointOnSegment:function(t,e,i,n){var s,a=e.x,r=e.y,h=i.x-a,l=i.y-r,u=h*h+l*l;return u>0&&(s=((t.x-a)*h+(t.y-r)*l)/u,s>1?(a=i.x,r=i.y):s>0&&(a+=h*s,r+=l*s)),h=t.x-a,l=t.y-r,n?h*h+l*l:new o.Point(a,r)}},o.Polyline=o.Path.extend({initialize:function(t,e){o.Path.prototype.initialize.call(this,e),this._latlngs=this._convertLatLngs(t)},options:{smoothFactor:1,noClip:!1},projectLatlngs:function(){this._originalPoints=[];for(var t=0,e=this._latlngs.length;e>t;t++)this._originalPoints[t]=this._map.latLngToLayerPoint(this._latlngs[t])},getPathString:function(){for(var t=0,e=this._parts.length,i="";e>t;t++)i+=this._getPathPartStr(this._parts[t]);return i},getLatLngs:function(){return this._latlngs},setLatLngs:function(t){return this._latlngs=this._convertLatLngs(t),this.redraw()},addLatLng:function(t){return this._latlngs.push(o.latLng(t)),this.redraw()},spliceLatLngs:function(){var t=[].splice.apply(this._latlngs,arguments);return this._convertLatLngs(this._latlngs,!0),this.redraw(),t},closestLayerPoint:function(t){for(var e,i,n=1/0,s=this._parts,a=null,r=0,h=s.length;h>r;r++)for(var l=s[r],u=1,c=l.length;c>u;u++){e=l[u-1],i=l[u];var d=o.LineUtil._sqClosestPointOnSegment(t,e,i,!0);n>d&&(n=d,a=o.LineUtil._sqClosestPointOnSegment(t,e,i))}return a&&(a.distance=Math.sqrt(n)),a},getBounds:function(){return new o.LatLngBounds(this.getLatLngs())},_convertLatLngs:function(t,e){var i,n,s=e?t:[];for(i=0,n=t.length;n>i;i++){if(o.Util.isArray(t[i])&&"number"!=typeof t[i][0])return;s[i]=o.latLng(t[i])}return s},_initEvents:function(){o.Path.prototype._initEvents.call(this)},_getPathPartStr:function(t){for(var e,i=o.Path.VML,n=0,s=t.length,a="";s>n;n++)e=t[n],i&&e._round(),a+=(n?"L":"M")+e.x+" "+e.y;return a},_clipPoints:function(){var t,e,i,n=this._originalPoints,s=n.length;if(this.options.noClip)return this._parts=[n],void 0;this._parts=[];var a=this._parts,r=this._map._pathViewport,h=o.LineUtil;for(t=0,e=0;s-1>t;t++)i=h.clipSegment(n[t],n[t+1],r,t),i&&(a[e]=a[e]||[],a[e].push(i[0]),(i[1]!==n[t+1]||t===s-2)&&(a[e].push(i[1]),e++))},_simplifyPoints:function(){for(var t=this._parts,e=o.LineUtil,i=0,n=t.length;n>i;i++)t[i]=e.simplify(t[i],this.options.smoothFactor)},_updatePath:function(){this._map&&(this._clipPoints(),this._simplifyPoints(),o.Path.prototype._updatePath.call(this))}}),o.polyline=function(t,e){return new o.Polyline(t,e)},o.PolyUtil={},o.PolyUtil.clipPolygon=function(t,e){var i,n,s,a,r,h,l,u,c,d=[1,4,2,8],p=o.LineUtil;for(n=0,l=t.length;l>n;n++)t[n]._code=p._getBitCode(t[n],e);for(a=0;4>a;a++){for(u=d[a],i=[],n=0,l=t.length,s=l-1;l>n;s=n++)r=t[n],h=t[s],r._code&u?h._code&u||(c=p._getEdgeIntersection(h,r,u,e),c._code=p._getBitCode(c,e),i.push(c)):(h._code&u&&(c=p._getEdgeIntersection(h,r,u,e),c._code=p._getBitCode(c,e),i.push(c)),i.push(r));t=i}return t},o.Polygon=o.Polyline.extend({options:{fill:!0},initialize:function(t,e){o.Polyline.prototype.initialize.call(this,t,e),this._initWithHoles(t)},_initWithHoles:function(t){var e,i,n;if(t&&o.Util.isArray(t[0])&&"number"!=typeof t[0][0])for(this._latlngs=this._convertLatLngs(t[0]),this._holes=t.slice(1),e=0,i=this._holes.length;i>e;e++)n=this._holes[e]=this._convertLatLngs(this._holes[e]),n[0].equals(n[n.length-1])&&n.pop();t=this._latlngs,t.length>=2&&t[0].equals(t[t.length-1])&&t.pop()},projectLatlngs:function(){if(o.Polyline.prototype.projectLatlngs.call(this),this._holePoints=[],this._holes){var t,e,i,n;for(t=0,i=this._holes.length;i>t;t++)for(this._holePoints[t]=[],e=0,n=this._holes[t].length;n>e;e++)this._holePoints[t][e]=this._map.latLngToLayerPoint(this._holes[t][e])}},setLatLngs:function(t){return t&&o.Util.isArray(t[0])&&"number"!=typeof t[0][0]?(this._initWithHoles(t),this.redraw()):o.Polyline.prototype.setLatLngs.call(this,t)},_clipPoints:function(){var t=this._originalPoints,e=[];if(this._parts=[t].concat(this._holePoints),!this.options.noClip){for(var i=0,n=this._parts.length;n>i;i++){var s=o.PolyUtil.clipPolygon(this._parts[i],this._map._pathViewport);s.length&&e.push(s)}this._parts=e}},_getPathPartStr:function(t){var e=o.Polyline.prototype._getPathPartStr.call(this,t);return e+(o.Browser.svg?"z":"x")}}),o.polygon=function(t,e){return new o.Polygon(t,e)},function(){function t(t){return o.FeatureGroup.extend({initialize:function(t,e){this._layers={},this._options=e,this.setLatLngs(t)},setLatLngs:function(e){var i=0,n=e.length;for(this.eachLayer(function(t){n>i?t.setLatLngs(e[i++]):this.removeLayer(t)},this);n>i;)this.addLayer(new t(e[i++],this._options));return this},getLatLngs:function(){var t=[];return this.eachLayer(function(e){t.push(e.getLatLngs())}),t}})}o.MultiPolyline=t(o.Polyline),o.MultiPolygon=t(o.Polygon),o.multiPolyline=function(t,e){return new o.MultiPolyline(t,e)},o.multiPolygon=function(t,e){return new o.MultiPolygon(t,e)}}(),o.Rectangle=o.Polygon.extend({initialize:function(t,e){o.Polygon.prototype.initialize.call(this,this._boundsToLatLngs(t),e)},setBounds:function(t){this.setLatLngs(this._boundsToLatLngs(t))},_boundsToLatLngs:function(t){return t=o.latLngBounds(t),[t.getSouthWest(),t.getNorthWest(),t.getNorthEast(),t.getSouthEast()]}}),o.rectangle=function(t,e){return new o.Rectangle(t,e)},o.Circle=o.Path.extend({initialize:function(t,e,i){o.Path.prototype.initialize.call(this,i),this._latlng=o.latLng(t),this._mRadius=e},options:{fill:!0},setLatLng:function(t){return this._latlng=o.latLng(t),this.redraw()},setRadius:function(t){return this._mRadius=t,this.redraw()},projectLatlngs:function(){var t=this._getLngRadius(),e=this._latlng,i=this._map.latLngToLayerPoint([e.lat,e.lng-t]);this._point=this._map.latLngToLayerPoint(e),this._radius=Math.max(this._point.x-i.x,1)},getBounds:function(){var t=this._getLngRadius(),e=this._mRadius/40075017*360,i=this._latlng;return new o.LatLngBounds([i.lat-e,i.lng-t],[i.lat+e,i.lng+t])},getLatLng:function(){return this._latlng},getPathString:function(){var t=this._point,e=this._radius;return this._checkIfEmpty()?"":o.Browser.svg?"M"+t.x+","+(t.y-e)+"A"+e+","+e+",0,1,1,"+(t.x-.1)+","+(t.y-e)+" z":(t._round(),e=Math.round(e),"AL "+t.x+","+t.y+" "+e+","+e+" 0,23592600")},getRadius:function(){return this._mRadius},_getLatRadius:function(){return this._mRadius/40075017*360},_getLngRadius:function(){return this._getLatRadius()/Math.cos(o.LatLng.DEG_TO_RAD*this._latlng.lat)},_checkIfEmpty:function(){if(!this._map)return!1;var t=this._map._pathViewport,e=this._radius,i=this._point;return i.x-e>t.max.x||i.y-e>t.max.y||i.x+e<t.min.x||i.y+e<t.min.y}}),o.circle=function(t,e,i){return new o.Circle(t,e,i)},o.CircleMarker=o.Circle.extend({options:{radius:10,weight:2},initialize:function(t,e){o.Circle.prototype.initialize.call(this,t,null,e),this._radius=this.options.radius},projectLatlngs:function(){this._point=this._map.latLngToLayerPoint(this._latlng)},_updateStyle:function(){o.Circle.prototype._updateStyle.call(this),this.setRadius(this.options.radius)},setLatLng:function(t){return o.Circle.prototype.setLatLng.call(this,t),this._popup&&this._popup._isOpen&&this._popup.setLatLng(t),this},setRadius:function(t){return this.options.radius=this._radius=t,this.redraw()},getRadius:function(){return this._radius}}),o.circleMarker=function(t,e){return new o.CircleMarker(t,e)},o.Polyline.include(o.Path.CANVAS?{_containsPoint:function(t,e){var i,n,s,a,r,h,l,u=this.options.weight/2;for(o.Browser.touch&&(u+=10),i=0,a=this._parts.length;a>i;i++)for(l=this._parts[i],n=0,r=l.length,s=r-1;r>n;s=n++)if((e||0!==n)&&(h=o.LineUtil.pointToSegmentDistance(t,l[s],l[n]),u>=h))return!0;return!1}}:{}),o.Polygon.include(o.Path.CANVAS?{_containsPoint:function(t){var e,i,n,s,a,r,h,l,u=!1;if(o.Polyline.prototype._containsPoint.call(this,t,!0))return!0;for(s=0,h=this._parts.length;h>s;s++)for(e=this._parts[s],a=0,l=e.length,r=l-1;l>a;r=a++)i=e[a],n=e[r],i.y>t.y!=n.y>t.y&&t.x<(n.x-i.x)*(t.y-i.y)/(n.y-i.y)+i.x&&(u=!u);return u}}:{}),o.Circle.include(o.Path.CANVAS?{_drawPath:function(){var t=this._point;this._ctx.beginPath(),this._ctx.arc(t.x,t.y,this._radius,0,2*Math.PI,!1)},_containsPoint:function(t){var e=this._point,i=this.options.stroke?this.options.weight/2:0;return t.distanceTo(e)<=this._radius+i}}:{}),o.CircleMarker.include(o.Path.CANVAS?{_updateStyle:function(){o.Path.prototype._updateStyle.call(this)}}:{}),o.GeoJSON=o.FeatureGroup.extend({initialize:function(t,e){o.setOptions(this,e),this._layers={},t&&this.addData(t)},addData:function(t){var e,i,n,s=o.Util.isArray(t)?t:t.features;if(s){for(e=0,i=s.length;i>e;e++)n=s[e],(n.geometries||n.geometry||n.features||n.coordinates)&&this.addData(s[e]);return this}var a=this.options;if(!a.filter||a.filter(t)){var r=o.GeoJSON.geometryToLayer(t,a.pointToLayer,a.coordsToLatLng,a);return r.feature=o.GeoJSON.asFeature(t),r.defaultOptions=r.options,this.resetStyle(r),a.onEachFeature&&a.onEachFeature(t,r),this.addLayer(r)}},resetStyle:function(t){var e=this.options.style;e&&(o.Util.extend(t.options,t.defaultOptions),this._setLayerStyle(t,e))},setStyle:function(t){this.eachLayer(function(e){this._setLayerStyle(e,t)},this)},_setLayerStyle:function(t,e){"function"==typeof e&&(e=e(t.feature)),t.setStyle&&t.setStyle(e)}}),o.extend(o.GeoJSON,{geometryToLayer:function(t,e,i,n){var s,a,r,h,l="Feature"===t.type?t.geometry:t,u=l.coordinates,c=[];switch(i=i||this.coordsToLatLng,l.type){case"Point":return s=i(u),e?e(t,s):new o.Marker(s);case"MultiPoint":for(r=0,h=u.length;h>r;r++)s=i(u[r]),c.push(e?e(t,s):new o.Marker(s));return new o.FeatureGroup(c);case"LineString":return a=this.coordsToLatLngs(u,0,i),new o.Polyline(a,n);case"Polygon":if(2===u.length&&!u[1].length)throw new Error("Invalid GeoJSON object.");return a=this.coordsToLatLngs(u,1,i),new o.Polygon(a,n);case"MultiLineString":return a=this.coordsToLatLngs(u,1,i),new o.MultiPolyline(a,n);case"MultiPolygon":return a=this.coordsToLatLngs(u,2,i),new o.MultiPolygon(a,n);case"GeometryCollection":for(r=0,h=l.geometries.length;h>r;r++)c.push(this.geometryToLayer({geometry:l.geometries[r],type:"Feature",properties:t.properties},e,i,n));return new o.FeatureGroup(c);default:throw new Error("Invalid GeoJSON object.")}},coordsToLatLng:function(t){return new o.LatLng(t[1],t[0],t[2])},coordsToLatLngs:function(t,e,i){var n,o,s,a=[];for(o=0,s=t.length;s>o;o++)n=e?this.coordsToLatLngs(t[o],e-1,i):(i||this.coordsToLatLng)(t[o]),a.push(n);return a},latLngToCoords:function(t){var e=[t.lng,t.lat];return t.alt!==i&&e.push(t.alt),e},latLngsToCoords:function(t){for(var e=[],i=0,n=t.length;n>i;i++)e.push(o.GeoJSON.latLngToCoords(t[i]));return e},getFeature:function(t,e){return t.feature?o.extend({},t.feature,{geometry:e}):o.GeoJSON.asFeature(e)},asFeature:function(t){return"Feature"===t.type?t:{type:"Feature",properties:{},geometry:t}}});var a={toGeoJSON:function(){return o.GeoJSON.getFeature(this,{type:"Point",coordinates:o.GeoJSON.latLngToCoords(this.getLatLng())})}};o.Marker.include(a),o.Circle.include(a),o.CircleMarker.include(a),o.Polyline.include({toGeoJSON:function(){return o.GeoJSON.getFeature(this,{type:"LineString",coordinates:o.GeoJSON.latLngsToCoords(this.getLatLngs())})}}),o.Polygon.include({toGeoJSON:function(){var t,e,i,n=[o.GeoJSON.latLngsToCoords(this.getLatLngs())];if(n[0].push(n[0][0]),this._holes)for(t=0,e=this._holes.length;e>t;t++)i=o.GeoJSON.latLngsToCoords(this._holes[t]),i.push(i[0]),n.push(i);return o.GeoJSON.getFeature(this,{type:"Polygon",coordinates:n})}}),function(){function t(t){return function(){var e=[];return this.eachLayer(function(t){e.push(t.toGeoJSON().geometry.coordinates)}),o.GeoJSON.getFeature(this,{type:t,coordinates:e})}}o.MultiPolyline.include({toGeoJSON:t("MultiLineString")}),o.MultiPolygon.include({toGeoJSON:t("MultiPolygon")}),o.LayerGroup.include({toGeoJSON:function(){var e,i=this.feature&&this.feature.geometry,n=[];if(i&&"MultiPoint"===i.type)return t("MultiPoint").call(this);var s=i&&"GeometryCollection"===i.type;return this.eachLayer(function(t){t.toGeoJSON&&(e=t.toGeoJSON(),n.push(s?e.geometry:o.GeoJSON.asFeature(e)))}),s?o.GeoJSON.getFeature(this,{geometries:n,type:"GeometryCollection"}):{type:"FeatureCollection",features:n}}})}(),o.geoJson=function(t,e){return new o.GeoJSON(t,e)},o.DomEvent={addListener:function(t,e,i,n){var s,a,r,h=o.stamp(i),l="_leaflet_"+e+h;return t[l]?this:(s=function(e){return i.call(n||t,e||o.DomEvent._getEvent())},o.Browser.pointer&&0===e.indexOf("touch")?this.addPointerListener(t,e,s,h):(o.Browser.touch&&"dblclick"===e&&this.addDoubleTapListener&&this.addDoubleTapListener(t,s,h),"addEventListener"in t?"mousewheel"===e?(t.addEventListener("DOMMouseScroll",s,!1),t.addEventListener(e,s,!1)):"mouseenter"===e||"mouseleave"===e?(a=s,r="mouseenter"===e?"mouseover":"mouseout",s=function(e){return o.DomEvent._checkMouse(t,e)?a(e):void 0},t.addEventListener(r,s,!1)):"click"===e&&o.Browser.android?(a=s,s=function(t){return o.DomEvent._filterClick(t,a)},t.addEventListener(e,s,!1)):t.addEventListener(e,s,!1):"attachEvent"in t&&t.attachEvent("on"+e,s),t[l]=s,this))},removeListener:function(t,e,i){var n=o.stamp(i),s="_leaflet_"+e+n,a=t[s];return a?(o.Browser.pointer&&0===e.indexOf("touch")?this.removePointerListener(t,e,n):o.Browser.touch&&"dblclick"===e&&this.removeDoubleTapListener?this.removeDoubleTapListener(t,n):"removeEventListener"in t?"mousewheel"===e?(t.removeEventListener("DOMMouseScroll",a,!1),t.removeEventListener(e,a,!1)):"mouseenter"===e||"mouseleave"===e?t.removeEventListener("mouseenter"===e?"mouseover":"mouseout",a,!1):t.removeEventListener(e,a,!1):"detachEvent"in t&&t.detachEvent("on"+e,a),t[s]=null,this):this},stopPropagation:function(t){return t.stopPropagation?t.stopPropagation():t.cancelBubble=!0,o.DomEvent._skipped(t),this},disableScrollPropagation:function(t){var e=o.DomEvent.stopPropagation;return o.DomEvent.on(t,"mousewheel",e).on(t,"MozMousePixelScroll",e)},disableClickPropagation:function(t){for(var e=o.DomEvent.stopPropagation,i=o.Draggable.START.length-1;i>=0;i--)o.DomEvent.on(t,o.Draggable.START[i],e);return o.DomEvent.on(t,"click",o.DomEvent._fakeStop).on(t,"dblclick",e)},preventDefault:function(t){return t.preventDefault?t.preventDefault():t.returnValue=!1,this},stop:function(t){return o.DomEvent.preventDefault(t).stopPropagation(t)},getMousePosition:function(t,e){if(!e)return new o.Point(t.clientX,t.clientY);var i=e.getBoundingClientRect();return new o.Point(t.clientX-i.left-e.clientLeft,t.clientY-i.top-e.clientTop)},getWheelDelta:function(t){var e=0;return t.wheelDelta&&(e=t.wheelDelta/120),t.detail&&(e=-t.detail/3),e},_skipEvents:{},_fakeStop:function(t){o.DomEvent._skipEvents[t.type]=!0},_skipped:function(t){var e=this._skipEvents[t.type];return this._skipEvents[t.type]=!1,e},_checkMouse:function(t,e){var i=e.relatedTarget;if(!i)return!0;try{for(;i&&i!==t;)i=i.parentNode}catch(n){return!1}return i!==t},_getEvent:function(){var e=t.event;if(!e)for(var i=arguments.callee.caller;i&&(e=i.arguments[0],!e||t.Event!==e.constructor);)i=i.caller;return e},_filterClick:function(t,e){var i=t.timeStamp||t.originalEvent.timeStamp,n=o.DomEvent._lastClick&&i-o.DomEvent._lastClick;return n&&n>100&&1e3>n||t.target._simulatedClick&&!t._simulated?(o.DomEvent.stop(t),void 0):(o.DomEvent._lastClick=i,e(t))}},o.DomEvent.on=o.DomEvent.addListener,o.DomEvent.off=o.DomEvent.removeListener,o.Draggable=o.Class.extend({includes:o.Mixin.Events,statics:{START:o.Browser.touch?["touchstart","mousedown"]:["mousedown"],END:{mousedown:"mouseup",touchstart:"touchend",pointerdown:"touchend",MSPointerDown:"touchend"},MOVE:{mousedown:"mousemove",touchstart:"touchmove",pointerdown:"touchmove",MSPointerDown:"touchmove"}},initialize:function(t,e){this._element=t,this._dragStartTarget=e||t},enable:function(){if(!this._enabled){for(var t=o.Draggable.START.length-1;t>=0;t--)o.DomEvent.on(this._dragStartTarget,o.Draggable.START[t],this._onDown,this);this._enabled=!0}},disable:function(){if(this._enabled){for(var t=o.Draggable.START.length-1;t>=0;t--)o.DomEvent.off(this._dragStartTarget,o.Draggable.START[t],this._onDown,this);this._enabled=!1,this._moved=!1}},_onDown:function(t){if(this._moved=!1,!(t.shiftKey||1!==t.which&&1!==t.button&&!t.touches||(o.DomEvent.stopPropagation(t),o.Draggable._disabled||(o.DomUtil.disableImageDrag(),o.DomUtil.disableTextSelection(),this._moving)))){var i=t.touches?t.touches[0]:t;this._startPoint=new o.Point(i.clientX,i.clientY),this._startPos=this._newPos=o.DomUtil.getPosition(this._element),o.DomEvent.on(e,o.Draggable.MOVE[t.type],this._onMove,this).on(e,o.Draggable.END[t.type],this._onUp,this)}},_onMove:function(t){if(t.touches&&t.touches.length>1)return this._moved=!0,void 0;var i=t.touches&&1===t.touches.length?t.touches[0]:t,n=new o.Point(i.clientX,i.clientY),s=n.subtract(this._startPoint);(s.x||s.y)&&(o.DomEvent.preventDefault(t),this._moved||(this.fire("dragstart"),this._moved=!0,this._startPos=o.DomUtil.getPosition(this._element).subtract(s),o.DomUtil.addClass(e.body,"leaflet-dragging"),o.DomUtil.addClass(t.target||t.srcElement,"leaflet-drag-target")),this._newPos=this._startPos.add(s),this._moving=!0,o.Util.cancelAnimFrame(this._animRequest),this._animRequest=o.Util.requestAnimFrame(this._updatePosition,this,!0,this._dragStartTarget))},_updatePosition:function(){this.fire("predrag"),o.DomUtil.setPosition(this._element,this._newPos),this.fire("drag")},_onUp:function(t){o.DomUtil.removeClass(e.body,"leaflet-dragging"),o.DomUtil.removeClass(t.target||t.srcElement,"leaflet-drag-target");for(var i in o.Draggable.MOVE)o.DomEvent.off(e,o.Draggable.MOVE[i],this._onMove).off(e,o.Draggable.END[i],this._onUp);o.DomUtil.enableImageDrag(),o.DomUtil.enableTextSelection(),this._moved&&this._moving&&(o.Util.cancelAnimFrame(this._animRequest),this.fire("dragend",{distance:this._newPos.distanceTo(this._startPos)})),this._moving=!1}}),o.Handler=o.Class.extend({initialize:function(t){this._map=t},enable:function(){this._enabled||(this._enabled=!0,this.addHooks())},disable:function(){this._enabled&&(this._enabled=!1,this.removeHooks())},enabled:function(){return!!this._enabled}}),o.Map.mergeOptions({dragging:!0,inertia:!o.Browser.android23,inertiaDeceleration:3400,inertiaMaxSpeed:1/0,inertiaThreshold:o.Browser.touch?32:18,easeLinearity:.25,worldCopyJump:!1}),o.Map.Drag=o.Handler.extend({addHooks:function(){if(!this._draggable){var t=this._map;this._draggable=new o.Draggable(t._mapPane,t._container),this._draggable.on({dragstart:this._onDragStart,drag:this._onDrag,dragend:this._onDragEnd},this),t.options.worldCopyJump&&(this._draggable.on("predrag",this._onPreDrag,this),t.on("viewreset",this._onViewReset,this),t.whenReady(this._onViewReset,this))}this._draggable.enable()},removeHooks:function(){this._draggable.disable()},moved:function(){return this._draggable&&this._draggable._moved},_onDragStart:function(){var t=this._map;t._panAnim&&t._panAnim.stop(),t.fire("movestart").fire("dragstart"),t.options.inertia&&(this._positions=[],this._times=[])},_onDrag:function(){if(this._map.options.inertia){var t=this._lastTime=+new Date,e=this._lastPos=this._draggable._newPos;this._positions.push(e),this._times.push(t),t-this._times[0]>200&&(this._positions.shift(),this._times.shift())}this._map.fire("move").fire("drag")},_onViewReset:function(){var t=this._map.getSize()._divideBy(2),e=this._map.latLngToLayerPoint([0,0]);this._initialWorldOffset=e.subtract(t).x,this._worldWidth=this._map.project([0,180]).x},_onPreDrag:function(){var t=this._worldWidth,e=Math.round(t/2),i=this._initialWorldOffset,n=this._draggable._newPos.x,o=(n-e+i)%t+e-i,s=(n+e+i)%t-e-i,a=Math.abs(o+i)<Math.abs(s+i)?o:s;this._draggable._newPos.x=a},_onDragEnd:function(t){var e=this._map,i=e.options,n=+new Date-this._lastTime,s=!i.inertia||n>i.inertiaThreshold||!this._positions[0];if(e.fire("dragend",t),s)e.fire("moveend");else{var a=this._lastPos.subtract(this._positions[0]),r=(this._lastTime+n-this._times[0])/1e3,h=i.easeLinearity,l=a.multiplyBy(h/r),u=l.distanceTo([0,0]),c=Math.min(i.inertiaMaxSpeed,u),d=l.multiplyBy(c/u),p=c/(i.inertiaDeceleration*h),_=d.multiplyBy(-p/2).round();_.x&&_.y?(_=e._limitOffset(_,e.options.maxBounds),o.Util.requestAnimFrame(function(){e.panBy(_,{duration:p,easeLinearity:h,noMoveStart:!0})})):e.fire("moveend")}}}),o.Map.addInitHook("addHandler","dragging",o.Map.Drag),o.Map.mergeOptions({doubleClickZoom:!0}),o.Map.DoubleClickZoom=o.Handler.extend({addHooks:function(){this._map.on("dblclick",this._onDoubleClick,this)},removeHooks:function(){this._map.off("dblclick",this._onDoubleClick,this)},_onDoubleClick:function(t){var e=this._map,i=e.getZoom()+(t.originalEvent.shiftKey?-1:1);"center"===e.options.doubleClickZoom?e.setZoom(i):e.setZoomAround(t.containerPoint,i)}}),o.Map.addInitHook("addHandler","doubleClickZoom",o.Map.DoubleClickZoom),o.Map.mergeOptions({scrollWheelZoom:!0}),o.Map.ScrollWheelZoom=o.Handler.extend({addHooks:function(){o.DomEvent.on(this._map._container,"mousewheel",this._onWheelScroll,this),o.DomEvent.on(this._map._container,"MozMousePixelScroll",o.DomEvent.preventDefault),this._delta=0},removeHooks:function(){o.DomEvent.off(this._map._container,"mousewheel",this._onWheelScroll),o.DomEvent.off(this._map._container,"MozMousePixelScroll",o.DomEvent.preventDefault)},_onWheelScroll:function(t){var e=o.DomEvent.getWheelDelta(t);this._delta+=e,this._lastMousePos=this._map.mouseEventToContainerPoint(t),this._startTime||(this._startTime=+new Date);var i=Math.max(40-(+new Date-this._startTime),0);clearTimeout(this._timer),this._timer=setTimeout(o.bind(this._performZoom,this),i),o.DomEvent.preventDefault(t),o.DomEvent.stopPropagation(t)},_performZoom:function(){var t=this._map,e=this._delta,i=t.getZoom();e=e>0?Math.ceil(e):Math.floor(e),e=Math.max(Math.min(e,4),-4),e=t._limitZoom(i+e)-i,this._delta=0,this._startTime=null,e&&("center"===t.options.scrollWheelZoom?t.setZoom(i+e):t.setZoomAround(this._lastMousePos,i+e))}}),o.Map.addInitHook("addHandler","scrollWheelZoom",o.Map.ScrollWheelZoom),o.extend(o.DomEvent,{_touchstart:o.Browser.msPointer?"MSPointerDown":o.Browser.pointer?"pointerdown":"touchstart",_touchend:o.Browser.msPointer?"MSPointerUp":o.Browser.pointer?"pointerup":"touchend",addDoubleTapListener:function(t,i,n){function s(t){var e;if(o.Browser.pointer?(_.push(t.pointerId),e=_.length):e=t.touches.length,!(e>1)){var i=Date.now(),n=i-(r||i);h=t.touches?t.touches[0]:t,l=n>0&&u>=n,r=i}}function a(t){if(o.Browser.pointer){var e=_.indexOf(t.pointerId);if(-1===e)return;_.splice(e,1)}if(l){if(o.Browser.pointer){var n,s={};for(var a in h)n=h[a],s[a]="function"==typeof n?n.bind(h):n;h=s}h.type="dblclick",i(h),r=null}}var r,h,l=!1,u=250,c="_leaflet_",d=this._touchstart,p=this._touchend,_=[];t[c+d+n]=s,t[c+p+n]=a;var m=o.Browser.pointer?e.documentElement:t;return t.addEventListener(d,s,!1),m.addEventListener(p,a,!1),o.Browser.pointer&&m.addEventListener(o.DomEvent.POINTER_CANCEL,a,!1),this},removeDoubleTapListener:function(t,i){var n="_leaflet_";return t.removeEventListener(this._touchstart,t[n+this._touchstart+i],!1),(o.Browser.pointer?e.documentElement:t).removeEventListener(this._touchend,t[n+this._touchend+i],!1),o.Browser.pointer&&e.documentElement.removeEventListener(o.DomEvent.POINTER_CANCEL,t[n+this._touchend+i],!1),this}}),o.extend(o.DomEvent,{POINTER_DOWN:o.Browser.msPointer?"MSPointerDown":"pointerdown",POINTER_MOVE:o.Browser.msPointer?"MSPointerMove":"pointermove",POINTER_UP:o.Browser.msPointer?"MSPointerUp":"pointerup",POINTER_CANCEL:o.Browser.msPointer?"MSPointerCancel":"pointercancel",_pointers:[],_pointerDocumentListener:!1,addPointerListener:function(t,e,i,n){switch(e){case"touchstart":return this.addPointerListenerStart(t,e,i,n);case"touchend":return this.addPointerListenerEnd(t,e,i,n);case"touchmove":return this.addPointerListenerMove(t,e,i,n);default:throw"Unknown touch event type"}},addPointerListenerStart:function(t,i,n,s){var a="_leaflet_",r=this._pointers,h=function(t){o.DomEvent.preventDefault(t);for(var e=!1,i=0;i<r.length;i++)if(r[i].pointerId===t.pointerId){e=!0;break}e||r.push(t),t.touches=r.slice(),t.changedTouches=[t],n(t)};if(t[a+"touchstart"+s]=h,t.addEventListener(this.POINTER_DOWN,h,!1),!this._pointerDocumentListener){var l=function(t){for(var e=0;e<r.length;e++)if(r[e].pointerId===t.pointerId){r.splice(e,1);
break}};e.documentElement.addEventListener(this.POINTER_UP,l,!1),e.documentElement.addEventListener(this.POINTER_CANCEL,l,!1),this._pointerDocumentListener=!0}return this},addPointerListenerMove:function(t,e,i,n){function o(t){if(t.pointerType!==t.MSPOINTER_TYPE_MOUSE&&"mouse"!==t.pointerType||0!==t.buttons){for(var e=0;e<a.length;e++)if(a[e].pointerId===t.pointerId){a[e]=t;break}t.touches=a.slice(),t.changedTouches=[t],i(t)}}var s="_leaflet_",a=this._pointers;return t[s+"touchmove"+n]=o,t.addEventListener(this.POINTER_MOVE,o,!1),this},addPointerListenerEnd:function(t,e,i,n){var o="_leaflet_",s=this._pointers,a=function(t){for(var e=0;e<s.length;e++)if(s[e].pointerId===t.pointerId){s.splice(e,1);break}t.touches=s.slice(),t.changedTouches=[t],i(t)};return t[o+"touchend"+n]=a,t.addEventListener(this.POINTER_UP,a,!1),t.addEventListener(this.POINTER_CANCEL,a,!1),this},removePointerListener:function(t,e,i){var n="_leaflet_",o=t[n+e+i];switch(e){case"touchstart":t.removeEventListener(this.POINTER_DOWN,o,!1);break;case"touchmove":t.removeEventListener(this.POINTER_MOVE,o,!1);break;case"touchend":t.removeEventListener(this.POINTER_UP,o,!1),t.removeEventListener(this.POINTER_CANCEL,o,!1)}return this}}),o.Map.mergeOptions({touchZoom:o.Browser.touch&&!o.Browser.android23,bounceAtZoomLimits:!0}),o.Map.TouchZoom=o.Handler.extend({addHooks:function(){o.DomEvent.on(this._map._container,"touchstart",this._onTouchStart,this)},removeHooks:function(){o.DomEvent.off(this._map._container,"touchstart",this._onTouchStart,this)},_onTouchStart:function(t){var i=this._map;if(t.touches&&2===t.touches.length&&!i._animatingZoom&&!this._zooming){var n=i.mouseEventToLayerPoint(t.touches[0]),s=i.mouseEventToLayerPoint(t.touches[1]),a=i._getCenterLayerPoint();this._startCenter=n.add(s)._divideBy(2),this._startDist=n.distanceTo(s),this._moved=!1,this._zooming=!0,this._centerOffset=a.subtract(this._startCenter),i._panAnim&&i._panAnim.stop(),o.DomEvent.on(e,"touchmove",this._onTouchMove,this).on(e,"touchend",this._onTouchEnd,this),o.DomEvent.preventDefault(t)}},_onTouchMove:function(t){var e=this._map;if(t.touches&&2===t.touches.length&&this._zooming){var i=e.mouseEventToLayerPoint(t.touches[0]),n=e.mouseEventToLayerPoint(t.touches[1]);this._scale=i.distanceTo(n)/this._startDist,this._delta=i._add(n)._divideBy(2)._subtract(this._startCenter),1!==this._scale&&(e.options.bounceAtZoomLimits||!(e.getZoom()===e.getMinZoom()&&this._scale<1||e.getZoom()===e.getMaxZoom()&&this._scale>1))&&(this._moved||(o.DomUtil.addClass(e._mapPane,"leaflet-touching"),e.fire("movestart").fire("zoomstart"),this._moved=!0),o.Util.cancelAnimFrame(this._animRequest),this._animRequest=o.Util.requestAnimFrame(this._updateOnMove,this,!0,this._map._container),o.DomEvent.preventDefault(t))}},_updateOnMove:function(){var t=this._map,e=this._getScaleOrigin(),i=t.layerPointToLatLng(e),n=t.getScaleZoom(this._scale);t._animateZoom(i,n,this._startCenter,this._scale,this._delta)},_onTouchEnd:function(){if(!this._moved||!this._zooming)return this._zooming=!1,void 0;var t=this._map;this._zooming=!1,o.DomUtil.removeClass(t._mapPane,"leaflet-touching"),o.Util.cancelAnimFrame(this._animRequest),o.DomEvent.off(e,"touchmove",this._onTouchMove).off(e,"touchend",this._onTouchEnd);var i=this._getScaleOrigin(),n=t.layerPointToLatLng(i),s=t.getZoom(),a=t.getScaleZoom(this._scale)-s,r=a>0?Math.ceil(a):Math.floor(a),h=t._limitZoom(s+r),l=t.getZoomScale(h)/this._scale;t._animateZoom(n,h,i,l)},_getScaleOrigin:function(){var t=this._centerOffset.subtract(this._delta).divideBy(this._scale);return this._startCenter.add(t)}}),o.Map.addInitHook("addHandler","touchZoom",o.Map.TouchZoom),o.Map.mergeOptions({tap:!0,tapTolerance:15}),o.Map.Tap=o.Handler.extend({addHooks:function(){o.DomEvent.on(this._map._container,"touchstart",this._onDown,this)},removeHooks:function(){o.DomEvent.off(this._map._container,"touchstart",this._onDown,this)},_onDown:function(t){if(t.touches){if(o.DomEvent.preventDefault(t),this._fireClick=!0,t.touches.length>1)return this._fireClick=!1,clearTimeout(this._holdTimeout),void 0;var i=t.touches[0],n=i.target;this._startPos=this._newPos=new o.Point(i.clientX,i.clientY),n.tagName&&"a"===n.tagName.toLowerCase()&&o.DomUtil.addClass(n,"leaflet-active"),this._holdTimeout=setTimeout(o.bind(function(){this._isTapValid()&&(this._fireClick=!1,this._onUp(),this._simulateEvent("contextmenu",i))},this),1e3),o.DomEvent.on(e,"touchmove",this._onMove,this).on(e,"touchend",this._onUp,this)}},_onUp:function(t){if(clearTimeout(this._holdTimeout),o.DomEvent.off(e,"touchmove",this._onMove,this).off(e,"touchend",this._onUp,this),this._fireClick&&t&&t.changedTouches){var i=t.changedTouches[0],n=i.target;n&&n.tagName&&"a"===n.tagName.toLowerCase()&&o.DomUtil.removeClass(n,"leaflet-active"),this._isTapValid()&&this._simulateEvent("click",i)}},_isTapValid:function(){return this._newPos.distanceTo(this._startPos)<=this._map.options.tapTolerance},_onMove:function(t){var e=t.touches[0];this._newPos=new o.Point(e.clientX,e.clientY)},_simulateEvent:function(i,n){var o=e.createEvent("MouseEvents");o._simulated=!0,n.target._simulatedClick=!0,o.initMouseEvent(i,!0,!0,t,1,n.screenX,n.screenY,n.clientX,n.clientY,!1,!1,!1,!1,0,null),n.target.dispatchEvent(o)}}),o.Browser.touch&&!o.Browser.pointer&&o.Map.addInitHook("addHandler","tap",o.Map.Tap),o.Map.mergeOptions({boxZoom:!0}),o.Map.BoxZoom=o.Handler.extend({initialize:function(t){this._map=t,this._container=t._container,this._pane=t._panes.overlayPane,this._moved=!1},addHooks:function(){o.DomEvent.on(this._container,"mousedown",this._onMouseDown,this)},removeHooks:function(){o.DomEvent.off(this._container,"mousedown",this._onMouseDown),this._moved=!1},moved:function(){return this._moved},_onMouseDown:function(t){return this._moved=!1,!t.shiftKey||1!==t.which&&1!==t.button?!1:(o.DomUtil.disableTextSelection(),o.DomUtil.disableImageDrag(),this._startLayerPoint=this._map.mouseEventToLayerPoint(t),o.DomEvent.on(e,"mousemove",this._onMouseMove,this).on(e,"mouseup",this._onMouseUp,this).on(e,"keydown",this._onKeyDown,this),void 0)},_onMouseMove:function(t){this._moved||(this._box=o.DomUtil.create("div","leaflet-zoom-box",this._pane),o.DomUtil.setPosition(this._box,this._startLayerPoint),this._container.style.cursor="crosshair",this._map.fire("boxzoomstart"));var e=this._startLayerPoint,i=this._box,n=this._map.mouseEventToLayerPoint(t),s=n.subtract(e),a=new o.Point(Math.min(n.x,e.x),Math.min(n.y,e.y));o.DomUtil.setPosition(i,a),this._moved=!0,i.style.width=Math.max(0,Math.abs(s.x)-4)+"px",i.style.height=Math.max(0,Math.abs(s.y)-4)+"px"},_finish:function(){this._moved&&(this._pane.removeChild(this._box),this._container.style.cursor=""),o.DomUtil.enableTextSelection(),o.DomUtil.enableImageDrag(),o.DomEvent.off(e,"mousemove",this._onMouseMove).off(e,"mouseup",this._onMouseUp).off(e,"keydown",this._onKeyDown)},_onMouseUp:function(t){this._finish();var e=this._map,i=e.mouseEventToLayerPoint(t);if(!this._startLayerPoint.equals(i)){var n=new o.LatLngBounds(e.layerPointToLatLng(this._startLayerPoint),e.layerPointToLatLng(i));e.fitBounds(n),e.fire("boxzoomend",{boxZoomBounds:n})}},_onKeyDown:function(t){27===t.keyCode&&this._finish()}}),o.Map.addInitHook("addHandler","boxZoom",o.Map.BoxZoom),o.Map.mergeOptions({keyboard:!0,keyboardPanOffset:80,keyboardZoomOffset:1}),o.Map.Keyboard=o.Handler.extend({keyCodes:{left:[37],right:[39],down:[40],up:[38],zoomIn:[187,107,61,171],zoomOut:[189,109,173]},initialize:function(t){this._map=t,this._setPanOffset(t.options.keyboardPanOffset),this._setZoomOffset(t.options.keyboardZoomOffset)},addHooks:function(){var t=this._map._container;-1===t.tabIndex&&(t.tabIndex="0"),o.DomEvent.on(t,"focus",this._onFocus,this).on(t,"blur",this._onBlur,this).on(t,"mousedown",this._onMouseDown,this),this._map.on("focus",this._addHooks,this).on("blur",this._removeHooks,this)},removeHooks:function(){this._removeHooks();var t=this._map._container;o.DomEvent.off(t,"focus",this._onFocus,this).off(t,"blur",this._onBlur,this).off(t,"mousedown",this._onMouseDown,this),this._map.off("focus",this._addHooks,this).off("blur",this._removeHooks,this)},_onMouseDown:function(){if(!this._focused){var i=e.body,n=e.documentElement,o=i.scrollTop||n.scrollTop,s=i.scrollLeft||n.scrollLeft;this._map._container.focus(),t.scrollTo(s,o)}},_onFocus:function(){this._focused=!0,this._map.fire("focus")},_onBlur:function(){this._focused=!1,this._map.fire("blur")},_setPanOffset:function(t){var e,i,n=this._panKeys={},o=this.keyCodes;for(e=0,i=o.left.length;i>e;e++)n[o.left[e]]=[-1*t,0];for(e=0,i=o.right.length;i>e;e++)n[o.right[e]]=[t,0];for(e=0,i=o.down.length;i>e;e++)n[o.down[e]]=[0,t];for(e=0,i=o.up.length;i>e;e++)n[o.up[e]]=[0,-1*t]},_setZoomOffset:function(t){var e,i,n=this._zoomKeys={},o=this.keyCodes;for(e=0,i=o.zoomIn.length;i>e;e++)n[o.zoomIn[e]]=t;for(e=0,i=o.zoomOut.length;i>e;e++)n[o.zoomOut[e]]=-t},_addHooks:function(){o.DomEvent.on(e,"keydown",this._onKeyDown,this)},_removeHooks:function(){o.DomEvent.off(e,"keydown",this._onKeyDown,this)},_onKeyDown:function(t){var e=t.keyCode,i=this._map;if(e in this._panKeys){if(i._panAnim&&i._panAnim._inProgress)return;i.panBy(this._panKeys[e]),i.options.maxBounds&&i.panInsideBounds(i.options.maxBounds)}else{if(!(e in this._zoomKeys))return;i.setZoom(i.getZoom()+this._zoomKeys[e])}o.DomEvent.stop(t)}}),o.Map.addInitHook("addHandler","keyboard",o.Map.Keyboard),o.Handler.MarkerDrag=o.Handler.extend({initialize:function(t){this._marker=t},addHooks:function(){var t=this._marker._icon;this._draggable||(this._draggable=new o.Draggable(t,t)),this._draggable.on("dragstart",this._onDragStart,this).on("drag",this._onDrag,this).on("dragend",this._onDragEnd,this),this._draggable.enable(),o.DomUtil.addClass(this._marker._icon,"leaflet-marker-draggable")},removeHooks:function(){this._draggable.off("dragstart",this._onDragStart,this).off("drag",this._onDrag,this).off("dragend",this._onDragEnd,this),this._draggable.disable(),o.DomUtil.removeClass(this._marker._icon,"leaflet-marker-draggable")},moved:function(){return this._draggable&&this._draggable._moved},_onDragStart:function(){this._marker.closePopup().fire("movestart").fire("dragstart")},_onDrag:function(){var t=this._marker,e=t._shadow,i=o.DomUtil.getPosition(t._icon),n=t._map.layerPointToLatLng(i);e&&o.DomUtil.setPosition(e,i),t._latlng=n,t.fire("move",{latlng:n}).fire("drag")},_onDragEnd:function(t){this._marker.fire("moveend").fire("dragend",t)}}),o.Control=o.Class.extend({options:{position:"topright"},initialize:function(t){o.setOptions(this,t)},getPosition:function(){return this.options.position},setPosition:function(t){var e=this._map;return e&&e.removeControl(this),this.options.position=t,e&&e.addControl(this),this},getContainer:function(){return this._container},addTo:function(t){this._map=t;var e=this._container=this.onAdd(t),i=this.getPosition(),n=t._controlCorners[i];return o.DomUtil.addClass(e,"leaflet-control"),-1!==i.indexOf("bottom")?n.insertBefore(e,n.firstChild):n.appendChild(e),this},removeFrom:function(t){var e=this.getPosition(),i=t._controlCorners[e];return i.removeChild(this._container),this._map=null,this.onRemove&&this.onRemove(t),this},_refocusOnMap:function(){this._map&&this._map.getContainer().focus()}}),o.control=function(t){return new o.Control(t)},o.Map.include({addControl:function(t){return t.addTo(this),this},removeControl:function(t){return t.removeFrom(this),this},_initControlPos:function(){function t(t,s){var a=i+t+" "+i+s;e[t+s]=o.DomUtil.create("div",a,n)}var e=this._controlCorners={},i="leaflet-",n=this._controlContainer=o.DomUtil.create("div",i+"control-container",this._container);t("top","left"),t("top","right"),t("bottom","left"),t("bottom","right")},_clearControlPos:function(){this._container.removeChild(this._controlContainer)}}),o.Control.Zoom=o.Control.extend({options:{position:"topleft",zoomInText:"+",zoomInTitle:"Zoom in",zoomOutText:"-",zoomOutTitle:"Zoom out"},onAdd:function(t){var e="leaflet-control-zoom",i=o.DomUtil.create("div",e+" leaflet-bar");return this._map=t,this._zoomInButton=this._createButton(this.options.zoomInText,this.options.zoomInTitle,e+"-in",i,this._zoomIn,this),this._zoomOutButton=this._createButton(this.options.zoomOutText,this.options.zoomOutTitle,e+"-out",i,this._zoomOut,this),this._updateDisabled(),t.on("zoomend zoomlevelschange",this._updateDisabled,this),i},onRemove:function(t){t.off("zoomend zoomlevelschange",this._updateDisabled,this)},_zoomIn:function(t){this._map.zoomIn(t.shiftKey?3:1)},_zoomOut:function(t){this._map.zoomOut(t.shiftKey?3:1)},_createButton:function(t,e,i,n,s,a){var r=o.DomUtil.create("a",i,n);r.innerHTML=t,r.href="#",r.title=e;var h=o.DomEvent.stopPropagation;return o.DomEvent.on(r,"click",h).on(r,"mousedown",h).on(r,"dblclick",h).on(r,"click",o.DomEvent.preventDefault).on(r,"click",s,a).on(r,"click",this._refocusOnMap,a),r},_updateDisabled:function(){var t=this._map,e="leaflet-disabled";o.DomUtil.removeClass(this._zoomInButton,e),o.DomUtil.removeClass(this._zoomOutButton,e),t._zoom===t.getMinZoom()&&o.DomUtil.addClass(this._zoomOutButton,e),t._zoom===t.getMaxZoom()&&o.DomUtil.addClass(this._zoomInButton,e)}}),o.Map.mergeOptions({zoomControl:!0}),o.Map.addInitHook(function(){this.options.zoomControl&&(this.zoomControl=new o.Control.Zoom,this.addControl(this.zoomControl))}),o.control.zoom=function(t){return new o.Control.Zoom(t)},o.Control.Attribution=o.Control.extend({options:{position:"bottomright",prefix:'<a href="http://leafletjs.com" title="A JS library for interactive maps">Leaflet</a>'},initialize:function(t){o.setOptions(this,t),this._attributions={}},onAdd:function(t){this._container=o.DomUtil.create("div","leaflet-control-attribution"),o.DomEvent.disableClickPropagation(this._container);for(var e in t._layers)t._layers[e].getAttribution&&this.addAttribution(t._layers[e].getAttribution());return t.on("layeradd",this._onLayerAdd,this).on("layerremove",this._onLayerRemove,this),this._update(),this._container},onRemove:function(t){t.off("layeradd",this._onLayerAdd).off("layerremove",this._onLayerRemove)},setPrefix:function(t){return this.options.prefix=t,this._update(),this},addAttribution:function(t){return t?(this._attributions[t]||(this._attributions[t]=0),this._attributions[t]++,this._update(),this):void 0},removeAttribution:function(t){return t?(this._attributions[t]&&(this._attributions[t]--,this._update()),this):void 0},_update:function(){if(this._map){var t=[];for(var e in this._attributions)this._attributions[e]&&t.push(e);var i=[];this.options.prefix&&i.push(this.options.prefix),t.length&&i.push(t.join(", ")),this._container.innerHTML=i.join(" | ")}},_onLayerAdd:function(t){t.layer.getAttribution&&this.addAttribution(t.layer.getAttribution())},_onLayerRemove:function(t){t.layer.getAttribution&&this.removeAttribution(t.layer.getAttribution())}}),o.Map.mergeOptions({attributionControl:!0}),o.Map.addInitHook(function(){this.options.attributionControl&&(this.attributionControl=(new o.Control.Attribution).addTo(this))}),o.control.attribution=function(t){return new o.Control.Attribution(t)},o.Control.Scale=o.Control.extend({options:{position:"bottomleft",maxWidth:100,metric:!0,imperial:!0,updateWhenIdle:!1},onAdd:function(t){this._map=t;var e="leaflet-control-scale",i=o.DomUtil.create("div",e),n=this.options;return this._addScales(n,e,i),t.on(n.updateWhenIdle?"moveend":"move",this._update,this),t.whenReady(this._update,this),i},onRemove:function(t){t.off(this.options.updateWhenIdle?"moveend":"move",this._update,this)},_addScales:function(t,e,i){t.metric&&(this._mScale=o.DomUtil.create("div",e+"-line",i)),t.imperial&&(this._iScale=o.DomUtil.create("div",e+"-line",i))},_update:function(){var t=this._map.getBounds(),e=t.getCenter().lat,i=6378137*Math.PI*Math.cos(e*Math.PI/180),n=i*(t.getNorthEast().lng-t.getSouthWest().lng)/180,o=this._map.getSize(),s=this.options,a=0;o.x>0&&(a=n*(s.maxWidth/o.x)),this._updateScales(s,a)},_updateScales:function(t,e){t.metric&&e&&this._updateMetric(e),t.imperial&&e&&this._updateImperial(e)},_updateMetric:function(t){var e=this._getRoundNum(t);this._mScale.style.width=this._getScaleWidth(e/t)+"px",this._mScale.innerHTML=1e3>e?e+" m":e/1e3+" km"},_updateImperial:function(t){var e,i,n,o=3.2808399*t,s=this._iScale;o>5280?(e=o/5280,i=this._getRoundNum(e),s.style.width=this._getScaleWidth(i/e)+"px",s.innerHTML=i+" mi"):(n=this._getRoundNum(o),s.style.width=this._getScaleWidth(n/o)+"px",s.innerHTML=n+" ft")},_getScaleWidth:function(t){return Math.round(this.options.maxWidth*t)-10},_getRoundNum:function(t){var e=Math.pow(10,(Math.floor(t)+"").length-1),i=t/e;return i=i>=10?10:i>=5?5:i>=3?3:i>=2?2:1,e*i}}),o.control.scale=function(t){return new o.Control.Scale(t)},o.Control.Layers=o.Control.extend({options:{collapsed:!0,position:"topright",autoZIndex:!0},initialize:function(t,e,i){o.setOptions(this,i),this._layers={},this._lastZIndex=0,this._handlingClick=!1;for(var n in t)this._addLayer(t[n],n);for(n in e)this._addLayer(e[n],n,!0)},onAdd:function(t){return this._initLayout(),this._update(),t.on("layeradd",this._onLayerChange,this).on("layerremove",this._onLayerChange,this),this._container},onRemove:function(t){t.off("layeradd",this._onLayerChange).off("layerremove",this._onLayerChange)},addBaseLayer:function(t,e){return this._addLayer(t,e),this._update(),this},addOverlay:function(t,e){return this._addLayer(t,e,!0),this._update(),this},removeLayer:function(t){var e=o.stamp(t);return delete this._layers[e],this._update(),this},_initLayout:function(){var t="leaflet-control-layers",e=this._container=o.DomUtil.create("div",t);e.setAttribute("aria-haspopup",!0),o.Browser.touch?o.DomEvent.on(e,"click",o.DomEvent.stopPropagation):o.DomEvent.disableClickPropagation(e).disableScrollPropagation(e);var i=this._form=o.DomUtil.create("form",t+"-list");if(this.options.collapsed){o.Browser.android||o.DomEvent.on(e,"mouseover",this._expand,this).on(e,"mouseout",this._collapse,this);var n=this._layersLink=o.DomUtil.create("a",t+"-toggle",e);n.href="#",n.title="Layers",o.Browser.touch?o.DomEvent.on(n,"click",o.DomEvent.stop).on(n,"click",this._expand,this):o.DomEvent.on(n,"focus",this._expand,this),o.DomEvent.on(i,"click",function(){setTimeout(o.bind(this._onInputClick,this),0)},this),this._map.on("click",this._collapse,this)}else this._expand();this._baseLayersList=o.DomUtil.create("div",t+"-base",i),this._separator=o.DomUtil.create("div",t+"-separator",i),this._overlaysList=o.DomUtil.create("div",t+"-overlays",i),e.appendChild(i)},_addLayer:function(t,e,i){var n=o.stamp(t);this._layers[n]={layer:t,name:e,overlay:i},this.options.autoZIndex&&t.setZIndex&&(this._lastZIndex++,t.setZIndex(this._lastZIndex))},_update:function(){if(this._container){this._baseLayersList.innerHTML="",this._overlaysList.innerHTML="";var t,e,i=!1,n=!1;for(t in this._layers)e=this._layers[t],this._addItem(e),n=n||e.overlay,i=i||!e.overlay;this._separator.style.display=n&&i?"":"none"}},_onLayerChange:function(t){var e=this._layers[o.stamp(t.layer)];if(e){this._handlingClick||this._update();var i=e.overlay?"layeradd"===t.type?"overlayadd":"overlayremove":"layeradd"===t.type?"baselayerchange":null;i&&this._map.fire(i,e)}},_createRadioElement:function(t,i){var n='<input type="radio" class="leaflet-control-layers-selector" name="'+t+'"';i&&(n+=' checked="checked"'),n+="/>";var o=e.createElement("div");return o.innerHTML=n,o.firstChild},_addItem:function(t){var i,n=e.createElement("label"),s=this._map.hasLayer(t.layer);t.overlay?(i=e.createElement("input"),i.type="checkbox",i.className="leaflet-control-layers-selector",i.defaultChecked=s):i=this._createRadioElement("leaflet-base-layers",s),i.layerId=o.stamp(t.layer),o.DomEvent.on(i,"click",this._onInputClick,this);var a=e.createElement("span");a.innerHTML=" "+t.name,n.appendChild(i),n.appendChild(a);var r=t.overlay?this._overlaysList:this._baseLayersList;return r.appendChild(n),n},_onInputClick:function(){var t,e,i,n=this._form.getElementsByTagName("input"),o=n.length;for(this._handlingClick=!0,t=0;o>t;t++)e=n[t],i=this._layers[e.layerId],e.checked&&!this._map.hasLayer(i.layer)?this._map.addLayer(i.layer):!e.checked&&this._map.hasLayer(i.layer)&&this._map.removeLayer(i.layer);this._handlingClick=!1,this._refocusOnMap()},_expand:function(){o.DomUtil.addClass(this._container,"leaflet-control-layers-expanded")},_collapse:function(){this._container.className=this._container.className.replace(" leaflet-control-layers-expanded","")}}),o.control.layers=function(t,e,i){return new o.Control.Layers(t,e,i)},o.PosAnimation=o.Class.extend({includes:o.Mixin.Events,run:function(t,e,i,n){this.stop(),this._el=t,this._inProgress=!0,this._newPos=e,this.fire("start"),t.style[o.DomUtil.TRANSITION]="all "+(i||.25)+"s cubic-bezier(0,0,"+(n||.5)+",1)",o.DomEvent.on(t,o.DomUtil.TRANSITION_END,this._onTransitionEnd,this),o.DomUtil.setPosition(t,e),o.Util.falseFn(t.offsetWidth),this._stepTimer=setInterval(o.bind(this._onStep,this),50)},stop:function(){this._inProgress&&(o.DomUtil.setPosition(this._el,this._getPos()),this._onTransitionEnd(),o.Util.falseFn(this._el.offsetWidth))},_onStep:function(){var t=this._getPos();return t?(this._el._leaflet_pos=t,this.fire("step"),void 0):(this._onTransitionEnd(),void 0)},_transformRe:/([-+]?(?:\d*\.)?\d+)\D*, ([-+]?(?:\d*\.)?\d+)\D*\)/,_getPos:function(){var e,i,n,s=this._el,a=t.getComputedStyle(s);if(o.Browser.any3d){if(n=a[o.DomUtil.TRANSFORM].match(this._transformRe),!n)return;e=parseFloat(n[1]),i=parseFloat(n[2])}else e=parseFloat(a.left),i=parseFloat(a.top);return new o.Point(e,i,!0)},_onTransitionEnd:function(){o.DomEvent.off(this._el,o.DomUtil.TRANSITION_END,this._onTransitionEnd,this),this._inProgress&&(this._inProgress=!1,this._el.style[o.DomUtil.TRANSITION]="",this._el._leaflet_pos=this._newPos,clearInterval(this._stepTimer),this.fire("step").fire("end"))}}),o.Map.include({setView:function(t,e,n){if(e=e===i?this._zoom:this._limitZoom(e),t=this._limitCenter(o.latLng(t),e,this.options.maxBounds),n=n||{},this._panAnim&&this._panAnim.stop(),this._loaded&&!n.reset&&n!==!0){n.animate!==i&&(n.zoom=o.extend({animate:n.animate},n.zoom),n.pan=o.extend({animate:n.animate},n.pan));var s=this._zoom!==e?this._tryAnimatedZoom&&this._tryAnimatedZoom(t,e,n.zoom):this._tryAnimatedPan(t,n.pan);if(s)return clearTimeout(this._sizeTimer),this}return this._resetView(t,e),this},panBy:function(t,e){if(t=o.point(t).round(),e=e||{},!t.x&&!t.y)return this;if(this._panAnim||(this._panAnim=new o.PosAnimation,this._panAnim.on({step:this._onPanTransitionStep,end:this._onPanTransitionEnd},this)),e.noMoveStart||this.fire("movestart"),e.animate!==!1){o.DomUtil.addClass(this._mapPane,"leaflet-pan-anim");var i=this._getMapPanePos().subtract(t);this._panAnim.run(this._mapPane,i,e.duration||.25,e.easeLinearity)}else this._rawPanBy(t),this.fire("move").fire("moveend");return this},_onPanTransitionStep:function(){this.fire("move")},_onPanTransitionEnd:function(){o.DomUtil.removeClass(this._mapPane,"leaflet-pan-anim"),this.fire("moveend")},_tryAnimatedPan:function(t,e){var i=this._getCenterOffset(t)._floor();return(e&&e.animate)===!0||this.getSize().contains(i)?(this.panBy(i,e),!0):!1}}),o.PosAnimation=o.DomUtil.TRANSITION?o.PosAnimation:o.PosAnimation.extend({run:function(t,e,i,n){this.stop(),this._el=t,this._inProgress=!0,this._duration=i||.25,this._easeOutPower=1/Math.max(n||.5,.2),this._startPos=o.DomUtil.getPosition(t),this._offset=e.subtract(this._startPos),this._startTime=+new Date,this.fire("start"),this._animate()},stop:function(){this._inProgress&&(this._step(),this._complete())},_animate:function(){this._animId=o.Util.requestAnimFrame(this._animate,this),this._step()},_step:function(){var t=+new Date-this._startTime,e=1e3*this._duration;e>t?this._runFrame(this._easeOut(t/e)):(this._runFrame(1),this._complete())},_runFrame:function(t){var e=this._startPos.add(this._offset.multiplyBy(t));o.DomUtil.setPosition(this._el,e),this.fire("step")},_complete:function(){o.Util.cancelAnimFrame(this._animId),this._inProgress=!1,this.fire("end")},_easeOut:function(t){return 1-Math.pow(1-t,this._easeOutPower)}}),o.Map.mergeOptions({zoomAnimation:!0,zoomAnimationThreshold:4}),o.DomUtil.TRANSITION&&o.Map.addInitHook(function(){this._zoomAnimated=this.options.zoomAnimation&&o.DomUtil.TRANSITION&&o.Browser.any3d&&!o.Browser.android23&&!o.Browser.mobileOpera,this._zoomAnimated&&o.DomEvent.on(this._mapPane,o.DomUtil.TRANSITION_END,this._catchTransitionEnd,this)}),o.Map.include(o.DomUtil.TRANSITION?{_catchTransitionEnd:function(t){this._animatingZoom&&t.propertyName.indexOf("transform")>=0&&this._onZoomTransitionEnd()},_nothingToAnimate:function(){return!this._container.getElementsByClassName("leaflet-zoom-animated").length},_tryAnimatedZoom:function(t,e,i){if(this._animatingZoom)return!0;if(i=i||{},!this._zoomAnimated||i.animate===!1||this._nothingToAnimate()||Math.abs(e-this._zoom)>this.options.zoomAnimationThreshold)return!1;var n=this.getZoomScale(e),o=this._getCenterOffset(t)._divideBy(1-1/n),s=this._getCenterLayerPoint()._add(o);return i.animate===!0||this.getSize().contains(o)?(this.fire("movestart").fire("zoomstart"),this._animateZoom(t,e,s,n,null,!0),!0):!1},_animateZoom:function(t,e,i,n,s,a){this._animatingZoom=!0,o.DomUtil.addClass(this._mapPane,"leaflet-zoom-anim"),this._animateToCenter=t,this._animateToZoom=e,o.Draggable&&(o.Draggable._disabled=!0),this.fire("zoomanim",{center:t,zoom:e,origin:i,scale:n,delta:s,backwards:a})},_onZoomTransitionEnd:function(){this._animatingZoom=!1,o.DomUtil.removeClass(this._mapPane,"leaflet-zoom-anim"),this._resetView(this._animateToCenter,this._animateToZoom,!0,!0),o.Draggable&&(o.Draggable._disabled=!1)}}:{}),o.TileLayer.include({_animateZoom:function(t){this._animating||(this._animating=!0,this._prepareBgBuffer());var e=this._bgBuffer,i=o.DomUtil.TRANSFORM,n=t.delta?o.DomUtil.getTranslateString(t.delta):e.style[i],s=o.DomUtil.getScaleString(t.scale,t.origin);e.style[i]=t.backwards?s+" "+n:n+" "+s},_endZoomAnim:function(){var t=this._tileContainer,e=this._bgBuffer;t.style.visibility="",t.parentNode.appendChild(t),o.Util.falseFn(e.offsetWidth),this._animating=!1},_clearBgBuffer:function(){var t=this._map;!t||t._animatingZoom||t.touchZoom._zooming||(this._bgBuffer.innerHTML="",this._bgBuffer.style[o.DomUtil.TRANSFORM]="")},_prepareBgBuffer:function(){var t=this._tileContainer,e=this._bgBuffer,i=this._getLoadedTilesPercentage(e),n=this._getLoadedTilesPercentage(t);return e&&i>.5&&.5>n?(t.style.visibility="hidden",this._stopLoadingImages(t),void 0):(e.style.visibility="hidden",e.style[o.DomUtil.TRANSFORM]="",this._tileContainer=e,e=this._bgBuffer=t,this._stopLoadingImages(e),clearTimeout(this._clearBgBufferTimer),void 0)},_getLoadedTilesPercentage:function(t){var e,i,n=t.getElementsByTagName("img"),o=0;for(e=0,i=n.length;i>e;e++)n[e].complete&&o++;return o/i},_stopLoadingImages:function(t){var e,i,n,s=Array.prototype.slice.call(t.getElementsByTagName("img"));for(e=0,i=s.length;i>e;e++)n=s[e],n.complete||(n.onload=o.Util.falseFn,n.onerror=o.Util.falseFn,n.src=o.Util.emptyImageUrl,n.parentNode.removeChild(n))}}),o.Map.include({_defaultLocateOptions:{watch:!1,setView:!1,maxZoom:1/0,timeout:1e4,maximumAge:0,enableHighAccuracy:!1},locate:function(t){if(t=this._locateOptions=o.extend(this._defaultLocateOptions,t),!navigator.geolocation)return this._handleGeolocationError({code:0,message:"Geolocation not supported."}),this;var e=o.bind(this._handleGeolocationResponse,this),i=o.bind(this._handleGeolocationError,this);return t.watch?this._locationWatchId=navigator.geolocation.watchPosition(e,i,t):navigator.geolocation.getCurrentPosition(e,i,t),this},stopLocate:function(){return navigator.geolocation&&navigator.geolocation.clearWatch(this._locationWatchId),this._locateOptions&&(this._locateOptions.setView=!1),this},_handleGeolocationError:function(t){var e=t.code,i=t.message||(1===e?"permission denied":2===e?"position unavailable":"timeout");this._locateOptions.setView&&!this._loaded&&this.fitWorld(),this.fire("locationerror",{code:e,message:"Geolocation error: "+i+"."})},_handleGeolocationResponse:function(t){var e=t.coords.latitude,i=t.coords.longitude,n=new o.LatLng(e,i),s=180*t.coords.accuracy/40075017,a=s/Math.cos(o.LatLng.DEG_TO_RAD*e),r=o.latLngBounds([e-s,i-a],[e+s,i+a]),h=this._locateOptions;if(h.setView){var l=Math.min(this.getBoundsZoom(r),h.maxZoom);this.setView(n,l)}var u={latlng:n,bounds:r,timestamp:t.timestamp};for(var c in t.coords)"number"==typeof t.coords[c]&&(u[c]=t.coords[c]);this.fire("locationfound",u)}})}(window,document);
This file has been truncated, but you can view the full file.
var statesData = {
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"id": 1,
"properties": {
"COD_REG": 1,
"pil": 109,
"name": "Piemonte",
"SHAPE_Leng": 1333367.84555,
"SHAPE_Area": 25387078076.7
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
8.715233974701555,
46.09853943619918
],
[
8.70809721110517,
46.09157957117383
],
[
8.705718289906374,
46.082299751140035
],
[
8.710476132303963,
46.07649986361891
],
[
8.716423435300952,
46.059100201055536
],
[
8.717612895900348,
46.05794022355131
],
[
8.721181277698541,
46.04054056098794
],
[
8.729507501894323,
46.024300875928795
],
[
8.727128580695528,
46.018500988407666
],
[
8.715233974701555,
46.00806119086965
],
[
8.709286671704566,
46.005741235861194
],
[
8.683118538517823,
45.9871815957936
],
[
8.654571484132283,
45.96630200071755
],
[
8.617698205550964,
45.93846254061616
],
[
8.587961690566027,
45.917582945540104
],
[
8.578446005770846,
45.90598317049786
],
[
8.573688163373257,
45.90366321548941
],
[
8.570119781575066,
45.894383395455606
],
[
8.574877623972656,
45.88278362041336
],
[
8.580824926969642,
45.87582375538801
],
[
8.583203848168438,
45.86886389036266
],
[
8.59153007236422,
45.854944160311966
],
[
8.595098454162411,
45.84566434027816
],
[
8.595098454162411,
45.829424655219015
],
[
8.587961690566027,
45.818984857680995
],
[
8.580824926969642,
45.81318497015987
],
[
8.564172478578078,
45.807385082638746
],
[
8.558225175581091,
45.80390515012607
],
[
8.554656793782899,
45.79810526260495
],
[
8.553467333183502,
45.78766546506692
],
[
8.554656793782899,
45.777225667528896
],
[
8.560604096779885,
45.77026580250355
],
[
8.570119781575066,
45.7633059374782
],
[
8.579635466370245,
45.75170616243595
],
[
8.584393308767835,
45.748226229923276
],
[
8.595098454162411,
45.72966658985568
],
[
8.602235217758796,
45.72618665734301
],
[
8.635540114541925,
45.72270672483033
],
[
8.643866338737707,
45.72386670233456
],
[
8.649813641734694,
45.719226792317656
],
[
8.655760944731682,
45.71110694978808
],
[
8.649813641734694,
45.70298710725851
],
[
8.647434720535898,
45.69370728722471
],
[
8.641487417538912,
45.68790739970359
],
[
8.641487417538912,
45.67630762466134
],
[
8.668845011325054,
45.67514764715711
],
[
8.681929077918426,
45.677467602165564
],
[
8.680739617319027,
45.66818778213177
],
[
8.671223932523848,
45.665867827123314
],
[
8.67003447192445,
45.661227917106416
],
[
8.685497459716618,
45.647308187055714
],
[
8.68906584151481,
45.636868389517694
],
[
8.683118538517823,
45.63338845700502
],
[
8.673602853722644,
45.636868389517694
],
[
8.67003447192445,
45.642668277038815
],
[
8.659329326529873,
45.64034832203037
],
[
8.666466090126258,
45.631068501996566
],
[
8.662897708328066,
45.62410863697122
],
[
8.666466090126258,
45.62062870445855
],
[
8.680739617319027,
45.62178868196277
],
[
8.686686920316015,
45.618308749450094
],
[
8.68906584151481,
45.6090289294163
],
[
8.693823683912399,
45.603229041895176
],
[
8.703339368707578,
45.60090908688672
],
[
8.705718289906374,
45.595109199365595
],
[
8.704528829306977,
45.58698935683603
],
[
8.699770986909387,
45.5858293793318
],
[
8.693823683912399,
45.576549559298
],
[
8.705718289906374,
45.57074967177688
],
[
8.70690775050577,
45.55103005420506
],
[
8.712855053502759,
45.538270301658585
],
[
8.719991817099142,
45.531310436633234
],
[
8.712855053502759,
45.52203061659944
],
[
8.714044514102156,
45.51855068408676
],
[
8.719991817099142,
45.515070751574086
],
[
8.728318041294926,
45.502310999027614
],
[
8.736644265490707,
45.501151021523384
],
[
8.741402107888298,
45.49767108901071
],
[
8.747349410885285,
45.49883106651494
],
[
8.760433477478657,
45.49767108901071
],
[
8.768759701674439,
45.48839126897691
],
[
8.773517544072028,
45.484911336464236
],
[
8.784222689466606,
45.48723129147269
],
[
8.79135945306299,
45.467511673900866
],
[
8.788980531864194,
45.46287176388397
],
[
8.811580283252747,
45.44547210132059
],
[
8.812769743852144,
45.43967221379947
],
[
8.808011901454554,
45.43619228128679
],
[
8.809201362053951,
45.43271234877412
],
[
8.823474889246722,
45.43619228128679
],
[
8.827043271044914,
45.43271234877412
],
[
8.821095968047926,
45.42807243875722
],
[
8.824664349846119,
45.425752483748774
],
[
8.838937877038887,
45.40487288867273
],
[
8.843695719436477,
45.3944330911347
],
[
8.831801113442502,
45.390953158622025
],
[
8.827043271044914,
45.39211313612625
],
[
8.81514866505094,
45.390953158622025
],
[
8.811580283252747,
45.38283331609245
],
[
8.798496216659375,
45.379353383579776
],
[
8.777085925870221,
45.383993293596674
],
[
8.767570241075042,
45.38863320361358
],
[
8.765191319876246,
45.383993293596674
],
[
8.761622938078053,
45.38283331609245
],
[
8.76400185927685,
45.37819340607555
],
[
8.75805455627986,
45.379353383579776
],
[
8.748538871484682,
45.37471347356288
],
[
8.7402126472889,
45.3758734510671
],
[
8.723560198897335,
45.380513361084
],
[
8.718802356499745,
45.37819340607555
],
[
8.719991817099142,
45.37239351855443
],
[
8.728318041294926,
45.37007356354598
],
[
8.743781029087092,
45.35847378850373
],
[
8.747349410885285,
45.354993855991054
],
[
8.750917792683477,
45.35731381099951
],
[
8.76281239867745,
45.3480339909657
],
[
8.742591568487695,
45.33875417093191
],
[
8.743781029087092,
45.33527423841923
],
[
8.7402126472889,
45.332954283410785
],
[
8.724749659496734,
45.33643421592346
],
[
8.727128580695528,
45.332954283410785
],
[
8.723560198897335,
45.32251448587276
],
[
8.724749659496734,
45.31903455336008
],
[
8.716423435300952,
45.302794868300936
],
[
8.691444762713605,
45.292355070762916
],
[
8.690255302114206,
45.29467502577136
],
[
8.67479231432204,
45.292355070762916
],
[
8.664087168927463,
45.302794868300936
],
[
8.660518787129272,
45.308594755822064
],
[
8.664087168927463,
45.30975473332629
],
[
8.655760944731682,
45.31903455336008
],
[
8.656950405331079,
45.32367446337699
],
[
8.646245259936501,
45.32947435089811
],
[
8.631971732743732,
45.337594193427684
],
[
8.629592811544939,
45.35151392347838
],
[
8.62364550854795,
45.35267390098261
],
[
8.622456047948553,
45.35731381099951
],
[
8.610561441954578,
45.35267390098261
],
[
8.603424678358193,
45.35267390098261
],
[
8.598666835960604,
45.34919396846993
],
[
8.592719532963617,
45.3480339909657
],
[
8.593908993563014,
45.35151392347838
],
[
8.583203848168438,
45.35151392347838
],
[
8.580824926969642,
45.3480339909657
],
[
8.568930320975667,
45.34919396846993
],
[
8.558225175581091,
45.35383387848683
],
[
8.554656793782899,
45.361953721016405
],
[
8.551088411984706,
45.35267390098261
],
[
8.539193805990731,
45.34571403595726
],
[
8.527299199996758,
45.34455405845303
],
[
8.527299199996758,
45.33643421592346
],
[
8.533246502993745,
45.33643421592346
],
[
8.536814884791937,
45.32715439588966
],
[
8.538004345391334,
45.31787457585586
],
[
8.532057042394348,
45.32019453086431
],
[
8.527299199996758,
45.314394643343185
],
[
8.522541357599167,
45.31207468833473
],
[
8.513025672803987,
45.31323466583896
],
[
8.508267830406398,
45.308594755822064
],
[
8.505888909207604,
45.30163489079671
],
[
8.499941606210616,
45.296994980779814
],
[
8.498752145611219,
45.29351504826714
],
[
8.517783515201577,
45.29119509325869
],
[
8.513025672803987,
45.28075529572067
],
[
8.514215133403386,
45.27495540819954
],
[
8.52135189699977,
45.273795430695316
],
[
8.522541357599167,
45.27959531821644
],
[
8.536814884791937,
45.27495540819954
],
[
8.53086758179495,
45.267995543174194
],
[
8.53562542419254,
45.26451561066152
],
[
8.534435963593141,
45.25987570064462
],
[
8.543951648388322,
45.25523579062772
],
[
8.536814884791937,
45.24827592560237
],
[
8.532057042394348,
45.25407581312349
],
[
8.522541357599167,
45.25407581312349
],
[
8.523730818198565,
45.24827592560237
],
[
8.532057042394348,
45.244795993089696
],
[
8.549898951385309,
45.24247603808124
],
[
8.555846254382296,
45.243636015585466
],
[
8.557035714981694,
45.2401560830728
],
[
8.548709490785912,
45.237836128064345
],
[
8.54514110898772,
45.2401560830728
],
[
8.529678121195552,
45.237836128064345
],
[
8.543951648388322,
45.233196218047446
],
[
8.541572727189527,
45.230876263038994
],
[
8.527299199996758,
45.22971628553477
],
[
8.523730818198565,
45.2215964430052
],
[
8.529678121195552,
45.2169565329883
],
[
8.541572727189527,
45.2123166229714
],
[
8.548709490785912,
45.20535675794605
],
[
8.532057042394348,
45.19955687042493
],
[
8.52610973939736,
45.201876825433374
],
[
8.524920278797962,
45.1983968929207
],
[
8.529678121195552,
45.1937569829038
],
[
8.547520030186513,
45.19491696040802
],
[
8.552277872584103,
45.197236915416475
],
[
8.551088411984706,
45.201876825433374
],
[
8.578446005770846,
45.2076767129545
],
[
8.579635466370245,
45.2030368029376
],
[
8.573688163373257,
45.1983968929207
],
[
8.566551399776873,
45.19955687042493
],
[
8.553467333183502,
45.191437027895354
],
[
8.552277872584103,
45.185637140374226
],
[
8.543951648388322,
45.18215720786155
],
[
8.543951648388322,
45.172877387827754
],
[
8.552277872584103,
45.16707750030663
],
[
8.553467333183502,
45.157797680272836
],
[
8.560604096779885,
45.15895765777706
],
[
8.565361939177475,
45.15547772526438
],
[
8.573688163373257,
45.15199779275171
],
[
8.580824926969642,
45.15315777025593
],
[
8.58677222996663,
45.14735788273481
],
[
8.589151151165424,
45.13575810769256
],
[
8.592719532963617,
45.13111819767566
],
[
8.599856296560002,
45.132278175179884
],
[
8.603424678358193,
45.12879824266721
],
[
8.614129823752771,
45.127638265162986
],
[
8.615319284352168,
45.12531831015453
],
[
8.609371981355181,
45.121838377641865
],
[
8.612940363153374,
45.113718535112284
],
[
8.609371981355181,
45.11139858010384
],
[
8.621266587349155,
45.098638827557366
],
[
8.624834969147347,
45.097478850053136
],
[
8.622456047948553,
45.09051898502779
],
[
8.62840335094554,
45.08819903001934
],
[
8.635540114541925,
45.08935900752357
],
[
8.636729575141322,
45.08239914249822
],
[
8.640297956939515,
45.07659925497709
],
[
8.646245259936501,
45.07543927747287
],
[
8.637919035740719,
45.06731943494329
],
[
8.643866338737707,
45.062679524926395
],
[
8.647434720535898,
45.056879637405274
],
[
8.639108496340118,
45.051079749884146
],
[
8.641487417538912,
45.04527986236302
],
[
8.635540114541925,
45.040639952346126
],
[
8.640297956939515,
45.03600004232922
],
[
8.656950405331079,
45.0302001548081
],
[
8.65219256293349,
45.02440026728698
],
[
8.658139865930476,
45.01860037976585
],
[
8.666466090126258,
45.0209203347743
],
[
8.666466090126258,
45.02788019979965
],
[
8.683118538517823,
45.02904017730387
],
[
8.692634223313002,
45.02440026728698
],
[
8.692634223313002,
45.01976035727007
],
[
8.696202605111194,
45.0255602447912
],
[
8.703339368707578,
45.026720222295424
],
[
8.700960447508784,
45.032520109816545
],
[
8.714044514102156,
45.03831999733767
],
[
8.719991817099142,
45.02788019979965
],
[
8.728318041294926,
45.022080312278526
],
[
8.743781029087092,
45.02440026728698
],
[
8.752107253282874,
45.01976035727007
],
[
8.75448617448167,
45.015120447253175
],
[
8.748538871484682,
45.00932055973205
],
[
8.760433477478657,
45.010480537236276
],
[
8.765191319876246,
45.01396046974895
],
[
8.767570241075042,
45.0070006047236
],
[
8.775896465270822,
45.00816058222782
],
[
8.779464847069015,
45.015120447253175
],
[
8.775896465270822,
45.022080312278526
],
[
8.778275386469618,
45.02440026728698
],
[
8.7866016106654,
45.02324028978275
],
[
8.79611729546058,
45.01976035727007
],
[
8.803254059056965,
45.02788019979965
],
[
8.794927834861182,
45.034840064825
],
[
8.805632980255758,
45.03600004232922
],
[
8.81395920445154,
45.0302001548081
],
[
8.809201362053951,
45.03600004232922
],
[
8.812769743852144,
45.03831999733767
],
[
8.823474889246722,
45.03716001983345
],
[
8.819906507448529,
45.04527986236302
],
[
8.823474889246722,
45.04759981737147
],
[
8.829422192243708,
45.040639952346126
],
[
8.835369495240695,
45.04643983986725
],
[
8.84250625883708,
45.04295990735457
],
[
8.841316798237683,
45.04991977237992
],
[
8.84726410123467,
45.051079749884146
],
[
8.853211404231658,
45.04759981737147
],
[
8.863916549626234,
45.051079749884146
],
[
8.86629547082503,
45.05223972738837
],
[
8.872242773822016,
45.05223972738837
],
[
8.880568998017798,
45.06035956991794
],
[
8.886516301014785,
45.061519547422165
],
[
8.88889522221358,
45.0580396149095
],
[
8.881758458617195,
45.05455968239682
],
[
8.887705761614182,
45.04991977237992
],
[
8.89841090700876,
45.051079749884146
],
[
8.900789828207554,
45.044119884858794
],
[
8.894842525210567,
45.040639952346126
],
[
8.900789828207554,
45.039479974841896
],
[
8.904358210005746,
45.032520109816545
],
[
8.904358210005746,
45.01976035727007
],
[
8.901979288806952,
45.00816058222782
],
[
8.90316874940635,
45.004680649715155
],
[
8.907926591803939,
45.003520672210925
],
[
8.915063355400324,
44.99076091966445
],
[
8.917442276599118,
44.98728098715178
],
[
8.925768500794902,
44.98264107713488
],
[
8.948368252183453,
44.98844096465601
],
[
8.960262858177426,
44.98844096465601
],
[
8.965020700575018,
44.980321122126426
],
[
8.974536385370197,
44.97336125710108
],
[
8.97810476716839,
44.96524141457151
],
[
8.97691530656899,
44.95944152705038
],
[
8.981673148966582,
44.95596159453771
],
[
8.980483688367183,
44.952481662025036
],
[
8.973346924770798,
44.95480161703348
],
[
8.969778542972607,
44.944361819495455
],
[
8.97810476716839,
44.94088188698279
],
[
8.982862609565979,
44.93160206694898
],
[
8.992378294361158,
44.93160206694898
],
[
8.989999373162362,
44.92580217942786
],
[
8.99594667615935,
44.91884231440251
],
[
9.001893979156337,
44.915362381889835
],
[
8.998325597358145,
44.91420240438561
],
[
9.003083439755734,
44.91072247187294
],
[
9.00070451855694,
44.909562494368714
],
[
9.006651821553927,
44.90376260684759
],
[
9.022114809346094,
44.89912269683069
],
[
9.030441033541877,
44.88868289929267
],
[
9.039956718337056,
44.88868289929267
],
[
9.041146178936453,
44.88520296677999
],
[
9.05660916672862,
44.88868289929267
],
[
9.062556469725607,
44.87012325922507
],
[
9.070882693921389,
44.86432337170395
],
[
9.067314312123196,
44.85968346168705
],
[
9.060177548526813,
44.85852348418282
],
[
9.049472403132235,
44.850403641653244
],
[
9.050661863731634,
44.84692370914057
],
[
9.064935390924402,
44.8341639565941
],
[
9.072072154520786,
44.83068402408142
],
[
9.075640536318978,
44.821404204047624
],
[
9.073261615120185,
44.816764294030726
],
[
9.081587839315967,
44.81444433902227
],
[
9.093482445309942,
44.81908424903918
],
[
9.106566511903313,
44.81328436151805
],
[
9.10775597250271,
44.80748447399693
],
[
9.126787342093069,
44.80632449649271
],
[
9.14462925108403,
44.809804429005375
],
[
9.147008172282826,
44.80864445150115
],
[
9.156523857078005,
44.8156043165265
],
[
9.155334396478608,
44.809804429005375
],
[
9.164850081273787,
44.80284456398003
],
[
9.167229002472581,
44.799364631467355
],
[
9.174365766068966,
44.798204653963126
],
[
9.17317630546957,
44.792404766442004
],
[
9.175555226668365,
44.79124478893778
],
[
9.17317630546957,
44.78660487892088
],
[
9.175555226668365,
44.78312494640821
],
[
9.170797384270774,
44.77964501389553
],
[
9.171986844870172,
44.77152517136596
],
[
9.179123608466556,
44.76572528384483
],
[
9.186260372062941,
44.763405328836384
],
[
9.189828753861134,
44.758765418819486
],
[
9.207670662852095,
44.75528548630681
],
[
9.21480742644848,
44.74368571126456
],
[
9.211239044650288,
44.73904580124766
],
[
9.21004958405089,
44.72976598121386
],
[
9.202912820454506,
44.722806116188515
],
[
9.205291741653301,
44.71932618367584
],
[
9.202912820454506,
44.71700622866739
],
[
9.208860123451492,
44.705406453625145
],
[
9.204102281053903,
44.69148672357444
],
[
9.20053389925571,
44.686846813557544
],
[
9.199344438656313,
44.67872697102797
],
[
9.201723359855109,
44.67176710600262
],
[
9.205291741653301,
44.66944715099417
],
[
9.206481202252698,
44.657847375951924
],
[
9.198154978056916,
44.65088751092657
],
[
9.20053389925571,
44.64392764590122
],
[
9.199344438656313,
44.634647825867425
],
[
9.201723359855109,
44.62652798333785
],
[
9.20053389925571,
44.616088185799825
],
[
9.202912820454506,
44.61376823079138
],
[
9.205291741653301,
44.598688523236454
],
[
9.201723359855109,
44.594048613219556
],
[
9.185070911463544,
44.59288863571533
],
[
9.174365766068966,
44.588248725698435
],
[
9.171986844870172,
44.58592877068998
],
[
9.152955475279812,
44.57432899564773
],
[
9.126787342093069,
44.57780892816041
],
[
9.119650578496685,
44.58244883817731
],
[
9.113703275499697,
44.581288860673084
],
[
9.108945433102107,
44.588248725698435
],
[
9.10299813010512,
44.59288863571533
],
[
9.104187590704518,
44.610288298278704
],
[
9.09824028770753,
44.6149282082956
],
[
9.085156221114158,
44.6149282082956
],
[
9.078019457517774,
44.62188807332095
],
[
9.078019457517774,
44.62652798333785
],
[
9.072072154520786,
44.623048050825176
],
[
9.055419706129221,
44.62188807332095
],
[
9.047093481933441,
44.6149282082956
],
[
9.043525100135248,
44.616088185799825
],
[
9.045904021334042,
44.6288479383463
],
[
9.038767257737659,
44.634647825867425
],
[
9.038767257737659,
44.641607690892776
],
[
9.031630494141274,
44.642767668397
],
[
9.03281995474067,
44.6474075784139
],
[
9.025683191144287,
44.64972753342235
],
[
9.023304269945491,
44.65900735345615
],
[
9.016167506349106,
44.6659672184815
],
[
9.011409663951516,
44.668287173489944
],
[
9.00070451855694,
44.668287173489944
],
[
8.989999373162362,
44.66248728596882
],
[
8.969778542972607,
44.66480724097727
],
[
8.962641779376222,
44.675247038515295
],
[
8.940042027987671,
44.675247038515295
],
[
8.93052634319249,
44.67640701601952
],
[
8.92220011899671,
44.67292708350685
],
[
8.924579040195503,
44.66712719598572
],
[
8.916252815999721,
44.66016733096037
],
[
8.906737131204542,
44.646247600909675
],
[
8.89365306461117,
44.641607690892776
],
[
8.882947919216594,
44.639287735884324
],
[
8.89365306461117,
44.62536800583363
],
[
8.90316874940635,
44.623048050825176
],
[
8.905547670605145,
44.616088185799825
],
[
8.910305513002735,
44.61260825328715
],
[
8.901979288806952,
44.610288298278704
],
[
8.906737131204542,
44.60448841075758
],
[
8.909116052403338,
44.59056868070688
],
[
8.913873894800926,
44.58940870320266
],
[
8.911494973602132,
44.581288860673084
],
[
8.913873894800926,
44.580128883168854
],
[
8.917442276599118,
44.57200904063929
],
[
8.919821197797914,
44.57316901814351
],
[
8.92220011899671,
44.56852910812661
],
[
8.913873894800926,
44.55924928809281
],
[
8.894842525210567,
44.55576935558014
],
[
8.88889522221358,
44.551129445563234
],
[
8.882947919216594,
44.55344940057169
],
[
8.875811155620209,
44.56272922060548
],
[
8.86986385262322,
44.56620915311816
],
[
8.863916549626234,
44.56156924310126
],
[
8.849643022433465,
44.56040926559703
],
[
8.846074640635273,
44.56272922060548
],
[
8.834180034641298,
44.563889198109706
],
[
8.825853810445516,
44.56040926559703
],
[
8.823474889246722,
44.55692933308436
],
[
8.824664349846119,
44.54764951305056
],
[
8.829422192243708,
44.54532955804211
],
[
8.808011901454554,
44.536049738008316
],
[
8.799685677258772,
44.529089872982965
],
[
8.799685677258772,
44.52560994047029
],
[
8.794927834861182,
44.523289985461844
],
[
8.797306756059978,
44.505890322898466
],
[
8.802064598457566,
44.50125041288157
],
[
8.7866016106654,
44.49661050286467
],
[
8.788980531864194,
44.488490660335096
],
[
8.769949162273836,
44.48965063783932
],
[
8.767570241075042,
44.49429054785622
],
[
8.773517544072028,
44.507050300402696
],
[
8.768759701674439,
44.51169021041959
],
[
8.768759701674439,
44.52444996296607
],
[
8.76281239867745,
44.53024985048719
],
[
8.75448617448167,
44.52444996296607
],
[
8.749728332084079,
44.52560994047029
],
[
8.756865095680464,
44.529089872982965
],
[
8.756865095680464,
44.53720971551254
],
[
8.750917792683477,
44.540689648025214
],
[
8.748538871484682,
44.551129445563234
],
[
8.7402126472889,
44.54996946805901
],
[
8.7402126472889,
44.55924928809281
],
[
8.73545480489131,
44.563889198109706
],
[
8.733075883692514,
44.57084906313506
],
[
8.728318041294926,
44.57200904063929
],
[
8.722370738297938,
44.580128883168854
],
[
8.718802356499745,
44.581288860673084
],
[
8.696202605111194,
44.580128883168854
],
[
8.691444762713605,
44.58244883817731
],
[
8.680739617319027,
44.575488973151955
],
[
8.673602853722644,
44.581288860673084
],
[
8.665276629526861,
44.58244883817731
],
[
8.662897708328066,
44.580128883168854
],
[
8.648624181135297,
44.58360881568153
],
[
8.64267687813831,
44.57896890566463
],
[
8.637919035740719,
44.581288860673084
],
[
8.624834969147347,
44.58592877068998
],
[
8.620077126749758,
44.58476879318576
],
[
8.61888766615036,
44.581288860673084
],
[
8.622456047948553,
44.57780892816041
],
[
8.615319284352168,
44.575488973151955
],
[
8.609371981355181,
44.576648950656185
],
[
8.610561441954578,
44.57316901814351
],
[
8.617698205550964,
44.57432899564773
],
[
8.616508744951565,
44.569689085630834
],
[
8.611750902553975,
44.57084906313506
],
[
8.6010457571594,
44.56852910812661
],
[
8.604614138957592,
44.563889198109706
],
[
8.6010457571594,
44.56272922060548
],
[
8.598666835960604,
44.55576935558014
],
[
8.602235217758796,
44.55460937807591
],
[
8.612940363153374,
44.54300960303366
],
[
8.604614138957592,
44.53836969301676
],
[
8.599856296560002,
44.53952967052099
],
[
8.587961690566027,
44.53372978299986
],
[
8.590340611764821,
44.527929895478735
],
[
8.584393308767835,
44.523289985461844
],
[
8.57725654517145,
44.52560994047029
],
[
8.573688163373257,
44.523289985461844
],
[
8.576067084572053,
44.51517014293226
],
[
8.570119781575066,
44.507050300402696
],
[
8.560604096779885,
44.50357036789002
],
[
8.551088411984706,
44.50357036789002
],
[
8.547520030186513,
44.505890322898466
],
[
8.543951648388322,
44.51285018792382
],
[
8.51183621220459,
44.510530232915364
],
[
8.508267830406398,
44.50821027790692
],
[
8.501131066810014,
44.510530232915364
],
[
8.482099697219654,
44.51169021041959
],
[
8.478531315421462,
44.510530232915364
],
[
8.473773473023872,
44.51633012043649
],
[
8.476152394222668,
44.517490097940716
],
[
8.471394551825078,
44.523289985461844
],
[
8.464257788228693,
44.51981005294917
],
[
8.452363182234718,
44.50937025541114
],
[
8.452363182234718,
44.50357036789002
],
[
8.449984261035924,
44.49777048036889
],
[
8.446415879237732,
44.498930457873115
],
[
8.441658036840142,
44.505890322898466
],
[
8.427384509647371,
44.50241039038579
],
[
8.426195049047974,
44.507050300402696
],
[
8.417868824852192,
44.51285018792382
],
[
8.40478475825882,
44.50937025541114
],
[
8.40002691586123,
44.50241039038579
],
[
8.401216376460628,
44.493130570351994
],
[
8.395269073463641,
44.49081061534355
],
[
8.390511231066052,
44.48617070532664
],
[
8.395269073463641,
44.48037081780552
],
[
8.388132309867256,
44.476890885292846
],
[
8.384563928069063,
44.47805086279707
],
[
8.375048243273884,
44.4745709302844
],
[
8.373858782674487,
44.471090997771725
],
[
8.360774716081115,
44.4652911102506
],
[
8.354827413084127,
44.4745709302844
],
[
8.351259031285936,
44.47573090778862
],
[
8.352448491885333,
44.48037081780552
],
[
8.350069570686538,
44.48617070532664
],
[
8.321522516301,
44.488490660335096
],
[
8.314385752704615,
44.49777048036889
],
[
8.308438449707628,
44.498930457873115
],
[
8.304870067909436,
44.50473034539424
],
[
8.291786001316064,
44.50241039038579
],
[
8.287028158918474,
44.50473034539424
],
[
8.283459777120282,
44.50937025541114
],
[
8.271565171126307,
44.507050300402696
],
[
8.267996789328114,
44.51517014293226
],
[
8.262049486331128,
44.51865007544494
],
[
8.259670565132332,
44.52444996296607
],
[
8.252533801535948,
44.529089872982965
],
[
8.238260274343178,
44.51865007544494
],
[
8.226365668349205,
44.51633012043649
],
[
8.222797286551012,
44.51169021041959
],
[
8.216849983554024,
44.498930457873115
],
[
8.222797286551012,
44.49081061534355
],
[
8.22398674715041,
44.48617070532664
],
[
8.206144838159448,
44.476890885292846
],
[
8.202576456361255,
44.47921084030129
],
[
8.199008074563062,
44.46877104276327
],
[
8.196629153364269,
44.464131132746374
],
[
8.206144838159448,
44.459491222729476
],
[
8.21447106235523,
44.440931582661875
],
[
8.222797286551012,
44.4328117401323
],
[
8.221607825951615,
44.4281718301154
],
[
8.208523759358243,
44.417732032577376
],
[
8.208523759358243,
44.404972280030904
],
[
8.19068185036728,
44.39685243750133
],
[
8.18592400796969,
44.39569245999711
],
[
8.178787244373307,
44.400332370014006
],
[
8.170461020177525,
44.39685243750133
],
[
8.171650480776922,
44.39453248249288
],
[
8.166892638379332,
44.388732594971756
],
[
8.152619111186562,
44.38641263996331
],
[
8.150240189987768,
44.37945277493796
],
[
8.141913965791986,
44.37249290991261
],
[
8.141913965791986,
44.36669302239149
],
[
8.145482347590178,
44.364373067383035
],
[
8.149050729388371,
44.353933269845015
],
[
8.135966662795,
44.33421365227319
],
[
8.13001935979801,
44.33073371976052
],
[
8.11217745080705,
44.33421365227319
],
[
8.10741960840946,
44.33305367476896
],
[
8.105040687210664,
44.32725378724784
],
[
8.109798529608256,
44.31565401220559
],
[
8.105040687210664,
44.31101410218869
],
[
8.10266176601187,
44.3017342821549
],
[
8.086009317620306,
44.306374192171795
],
[
8.08006201462332,
44.31333405719714
],
[
8.076493632825127,
44.31449403470137
],
[
8.070546329828138,
44.31101410218869
],
[
8.066977948029947,
44.30521421466757
],
[
8.058651723834164,
44.3017342821549
],
[
8.063409566231755,
44.29825434964222
],
[
8.064599026831152,
44.288974529608424
],
[
8.077683093424524,
44.287814552104194
],
[
8.082440935822113,
44.27969470957462
],
[
8.089577699418498,
44.2738948220535
],
[
8.0883882388191,
44.26809493453237
],
[
8.08006201462332,
44.26113506950702
],
[
8.066977948029947,
44.25649515949013
],
[
8.072925251026934,
44.24837531696055
],
[
8.071735790427537,
44.24373540694365
],
[
8.081251475222716,
44.24257542943943
],
[
8.07887255402392,
44.23445558690985
],
[
8.066977948029947,
44.22169583436338
],
[
8.069356869228741,
44.21937587935493
],
[
8.065788487430549,
44.21705592434648
],
[
8.075304172225728,
44.21241601432958
],
[
8.075304172225728,
44.206616126808456
],
[
8.089577699418498,
44.20313619429578
],
[
8.094335541816088,
44.19733630677466
],
[
8.093146081216691,
44.18457655422819
],
[
8.09790392361428,
44.17877666670706
],
[
8.094335541816088,
44.17529673419438
],
[
8.081251475222716,
44.16717689166481
],
[
8.08006201462332,
44.16137700414369
],
[
8.075304172225728,
44.15557711662257
],
[
8.070546329828138,
44.14629729658876
],
[
8.059841184433562,
44.14513731908454
],
[
8.055083342035973,
44.14281736407609
],
[
8.038430893644408,
44.148617251597216
],
[
8.012262760457665,
44.15673709412679
],
[
7.999178693864293,
44.14977722910144
],
[
7.988473548469715,
44.14513731908454
],
[
7.978957863674536,
44.13353754404229
],
[
7.9920419302679075,
44.13237756653807
],
[
7.9920419302679075,
44.12773765652116
],
[
8.007504918060075,
44.12657767901694
],
[
8.013452221057062,
44.12077779149582
],
[
8.003936536261882,
44.11497790397469
],
[
8.015831142255857,
44.111497971462015
],
[
8.013452221057062,
44.105698083940894
],
[
8.00512599686128,
44.10221815142822
],
[
7.984905166671523,
44.10917801645357
],
[
7.9813367848733305,
44.111497971462015
],
[
7.9706316394787535,
44.11381792647047
],
[
7.963494875882369,
44.106858061445124
],
[
7.957547572885382,
44.10337812893245
],
[
7.9373267426956255,
44.09989819641977
],
[
7.929000518499843,
44.10917801645357
],
[
7.904021845912497,
44.10917801645357
],
[
7.8849904763221375,
44.10453810643667
],
[
7.882611555123343,
44.111497971462015
],
[
7.857632882535997,
44.118457836487366
],
[
7.831464749349252,
44.12077779149582
],
[
7.820759603954675,
44.124257724008494
],
[
7.816001761557086,
44.12309774650427
],
[
7.808864997960701,
44.12889763402539
],
[
7.789833628370342,
44.134697521546514
],
[
7.777939022376367,
44.137017476554966
],
[
7.775560101177573,
44.14049740906764
],
[
7.763665495183599,
44.141657386571865
],
[
7.745823586192637,
44.13585749905074
],
[
7.741065743795047,
44.130057611529615
],
[
7.727981677201675,
44.12773765652116
],
[
7.724413295403483,
44.124257724008494
],
[
7.723223834804085,
44.11497790397469
],
[
7.716087071207701,
44.106858061445124
],
[
7.720844913605291,
44.10453810643667
],
[
7.742255204394445,
44.083658511360625
],
[
7.756528731587213,
44.08597846636907
],
[
7.758907652786009,
44.083658511360625
],
[
7.751770889189624,
44.082498533856395
],
[
7.73987628319565,
44.0778586238395
],
[
7.733928980198662,
44.0732187138226
],
[
7.729171137801073,
44.06625884879725
],
[
7.727981677201675,
44.060458961276126
],
[
7.720844913605291,
44.06161893878035
],
[
7.714897610608303,
44.06161893878035
],
[
7.714897610608303,
44.0732187138226
],
[
7.718465992406496,
44.082498533856395
],
[
7.710139768210714,
44.0917783538902
],
[
7.705381925813124,
44.09293833139442
],
[
7.697055701617342,
44.09873821891554
],
[
7.687540016822162,
44.111497971462015
],
[
7.672077029029995,
44.12077779149582
],
[
7.670887568430597,
44.12889763402539
],
[
7.6673191866324055,
44.13353754404229
],
[
7.676834871427585,
44.141657386571865
],
[
7.6780243320269825,
44.148617251597216
],
[
7.670887568430597,
44.15441713911834
],
[
7.673266489629393,
44.16137700414369
],
[
7.6792137926263795,
44.16253698164791
],
[
7.68397163502397,
44.171816801681715
],
[
7.67445595022879,
44.177616689202836
],
[
7.662561344234816,
44.17645671169861
],
[
7.642340514045059,
44.177616689202836
],
[
7.63282482924988,
44.17413675669016
],
[
7.62806698685229,
44.160217026639465
],
[
7.622119683855303,
44.15209718410989
],
[
7.601898853665546,
44.15093720660566
],
[
7.598330471867354,
44.153257161614114
],
[
7.5911937082709695,
44.15093720660566
],
[
7.570972878081212,
44.153257161614114
],
[
7.565025575084225,
44.15673709412679
],
[
7.563836114484828,
44.15093720660566
],
[
7.5376679812980845,
44.14629729658876
],
[
7.532910138900494,
44.148617251597216
],
[
7.52577337530411,
44.13933743156342
],
[
7.5162576905089304,
44.13817745405919
],
[
7.507931466313148,
44.14513731908454
],
[
7.493657939120379,
44.141657386571865
],
[
7.492468478520982,
44.13817745405919
],
[
7.471058187731828,
44.13353754404229
],
[
7.466300345334237,
44.12889763402539
],
[
7.457974121138456,
44.12657767901694
],
[
7.447268975743878,
44.130057611529615
],
[
7.4401322121474935,
44.12889763402539
],
[
7.42823760615352,
44.13121758903384
],
[
7.4294270667529165,
44.12657767901694
],
[
7.424669224355327,
44.119617813991596
],
[
7.425858684954724,
44.11381792647047
],
[
7.405637854764968,
44.119617813991596
],
[
7.404448394165571,
44.118457836487366
],
[
7.394932709370391,
44.12541770151272
],
[
7.3747118791806345,
44.12077779149582
],
[
7.368764576183647,
44.11729785898314
],
[
7.3640067337860575,
44.118457836487366
],
[
7.35805943078907,
44.11613788147892
],
[
7.3544910489908775,
44.124257724008494
],
[
7.350922667192686,
44.12657767901694
],
[
7.3437859035963005,
44.14629729658876
],
[
7.3318912976023265,
44.14397734158031
],
[
7.324754534005942,
44.14397734158031
],
[
7.3104810068131725,
44.148617251597216
],
[
7.30691262501498,
44.14397734158031
],
[
7.286691794825224,
44.14629729658876
],
[
7.284312873626429,
44.141657386571865
],
[
7.271228807033056,
44.148617251597216
],
[
7.256955279840287,
44.15557711662257
],
[
7.248629055644505,
44.15789707163101
],
[
7.243871213246916,
44.166016914160586
],
[
7.242681752647518,
44.171816801681715
],
[
7.23673444965053,
44.17529673419438
],
[
7.233166067852339,
44.170656824177485
],
[
7.227218764855351,
44.16833686916904
],
[
7.220082001258967,
44.16833686916904
],
[
7.214134698261979,
44.17645671169861
],
[
7.206997934665595,
44.17993664421128
],
[
7.205808474066197,
44.18457655422819
],
[
7.193913868072223,
44.18689650923663
],
[
7.191534946873428,
44.19153641925353
],
[
7.187966565075236,
44.20197621679156
],
[
7.177261419680659,
44.19849628427888
],
[
7.174882498481864,
44.20197621679156
],
[
7.167745734885479,
44.20545614930423
],
[
7.160608971289094,
44.207776104312686
],
[
7.151093286493915,
44.20429617180001
],
[
7.141577601698735,
44.200816239287334
],
[
7.132061916903556,
44.206616126808456
],
[
7.1261146139065685,
44.21241601432958
],
[
7.099946480719825,
44.22169583436338
],
[
7.091620256524043,
44.22169583436338
],
[
7.090430795924645,
44.22633574438028
],
[
7.079725650530068,
44.2321356319014
],
[
7.069020505135491,
44.23445558690985
],
[
7.0618837415391065,
44.2274957218845
],
[
7.058315359740914,
44.229815676892954
],
[
7.042852371948747,
44.2274957218845
],
[
7.034526147752965,
44.22401578937183
],
[
7.0285788447559785,
44.23097565439718
],
[
7.020252620560196,
44.23445558690985
],
[
7.014305317563209,
44.23329560940563
],
[
7.005979093367427,
44.236775541918306
],
[
6.997652869171644,
44.24953529446478
],
[
6.997652869171644,
44.265774979523925
],
[
6.99527394797285,
44.2692549120366
],
[
6.9964634085722475,
44.28085468707884
],
[
6.982189881379478,
44.287814552104194
],
[
6.971484735984901,
44.28433461959152
],
[
6.970295275385503,
44.29013450711265
],
[
6.972674196584299,
44.293614439625316
],
[
6.959590129990927,
44.294774417129545
],
[
6.957211208792131,
44.29825434964222
],
[
6.958400669391529,
44.30521421466757
],
[
6.961969051189722,
44.30869414718024
],
[
6.954832287593336,
44.31565401220559
],
[
6.952453366394542,
44.32029392222249
],
[
6.93936929980117,
44.32493383223939
],
[
6.938179839201773,
44.328413764752064
],
[
6.926285233207798,
44.33421365227319
],
[
6.921527390810208,
44.34349347230699
],
[
6.922716851409605,
44.35161331483656
],
[
6.912011706015028,
44.353933269845015
],
[
6.89773817882226,
44.358573179861914
],
[
6.887033033427683,
44.36321308987881
],
[
6.894169797024067,
44.36901297739993
],
[
6.89773817882226,
44.375972842425284
],
[
6.896548718222862,
44.381772729946405
],
[
6.89773817882226,
44.404972280030904
],
[
6.892980336424669,
44.41657205507315
],
[
6.892980336424669,
44.42121196509005
],
[
6.915580087813221,
44.42469189760273
],
[
6.919148469611414,
44.4281718301154
],
[
6.923906312009003,
44.423531920098505
],
[
6.933421996804182,
44.42469189760273
],
[
6.93461145740358,
44.43049178512385
],
[
6.947695523996952,
44.4281718301154
],
[
6.948884984596349,
44.43049178512385
],
[
6.931043075605388,
44.440931582661875
],
[
6.927474693807196,
44.44441151517455
],
[
6.915580087813221,
44.44905142519145
],
[
6.907253863617439,
44.464131132746374
],
[
6.907253863617439,
44.46877104276327
],
[
6.891790875825272,
44.47225097527595
],
[
6.876327888033106,
44.481530795309745
],
[
6.8775173486325025,
44.488490660335096
],
[
6.868001663837323,
44.49429054785622
],
[
6.862054360840336,
44.50473034539424
],
[
6.857296518442746,
44.52444996296607
],
[
6.853728136644554,
44.529089872982965
],
[
6.857296518442746,
44.534889760504086
],
[
6.870380585036118,
44.53836969301676
],
[
6.8787068092319,
44.55460937807591
],
[
6.884654112228888,
44.552289423067464
],
[
6.892980336424669,
44.55576935558014
],
[
6.903685481819246,
44.55576935558014
],
[
6.916769548412619,
44.56156924310126
],
[
6.913201166614426,
44.56852910812661
],
[
6.921527390810208,
44.569689085630834
],
[
6.933421996804182,
44.57316901814351
],
[
6.93461145740358,
44.57780892816041
],
[
6.932232536204785,
44.58476879318576
],
[
6.933421996804182,
44.59520859072378
],
[
6.93936929980117,
44.60448841075758
],
[
6.947695523996952,
44.60680836576603
],
[
6.950074445195747,
44.6195681183125
],
[
6.957211208792131,
44.623048050825176
],
[
6.969105814786106,
44.6195681183125
],
[
6.969105814786106,
44.62652798333785
],
[
6.952453366394542,
44.6381277583801
],
[
6.953642826993939,
44.645087623405445
],
[
6.947695523996952,
44.65436744343925
],
[
6.959590129990927,
44.66480724097727
],
[
6.958400669391529,
44.67292708350685
],
[
6.964347972388516,
44.67872697102797
],
[
6.971484735984901,
44.67756699352374
],
[
6.978621499581285,
44.68452685854909
],
[
6.988137184376465,
44.69032674607022
],
[
6.998842329771042,
44.69148672357444
],
[
7.004789632768029,
44.686846813557544
],
[
7.03214722655417,
44.69148672357444
],
[
7.036905068951761,
44.69032674607022
],
[
7.047610214346337,
44.68336688104487
],
[
7.058315359740914,
44.681046926036416
],
[
7.0713994263342865,
44.67988694853219
],
[
7.076157268731876,
44.68336688104487
],
[
7.076157268731876,
44.69032674607022
],
[
7.0713994263342865,
44.70076654360824
],
[
7.066641583936696,
44.71352629615471
],
[
7.057125899141517,
44.71468627365894
],
[
7.044041832548145,
44.71816620617162
],
[
7.0285788447559785,
44.72976598121386
],
[
7.030957765954773,
44.733245913726535
],
[
7.023821002358388,
44.740205778751886
],
[
7.026199923557183,
44.744845688768784
],
[
7.021442081159593,
44.75064557628991
],
[
7.025010462957786,
44.75644546381103
],
[
7.020252620560196,
44.769205216357506
],
[
7.022631541758991,
44.77152517136596
],
[
7.020252620560196,
44.77616508138286
],
[
7.011926396364414,
44.78428492391243
],
[
7.000031790370439,
44.78892483392933
],
[
7.009547475165619,
44.798204653963126
],
[
7.020252620560196,
44.81908424903918
],
[
7.022631541758991,
44.8248841365603
],
[
7.010736935765016,
44.82604411406452
],
[
7.009547475165619,
44.833003979089874
],
[
7.0071685539668245,
44.839963844115225
],
[
7.001221250969837,
44.8434437766279
],
[
6.994084487373453,
44.84228379912367
],
[
6.970295275385503,
44.84692370914057
],
[
6.950074445195747,
44.85620352917437
],
[
6.945316602798157,
44.85968346168705
],
[
6.936990378602375,
44.86084343919127
],
[
6.932232536204785,
44.86432337170395
],
[
6.927474693807196,
44.85620352917437
],
[
6.921527390810208,
44.850403641653244
],
[
6.907253863617439,
44.84460375413212
],
[
6.904874942418644,
44.8480836866448
],
[
6.885843572828285,
44.84692370914057
],
[
6.876327888033106,
44.851563619157474
],
[
6.864433282039131,
44.850403641653244
],
[
6.859675439641541,
44.8527235966617
],
[
6.8549175972439516,
44.85852348418282
],
[
6.840644070051182,
44.85968346168705
],
[
6.829938924656605,
44.868963281720845
],
[
6.816854858063233,
44.87244321423352
],
[
6.803770791469861,
44.879403079258864
],
[
6.800202409671669,
44.88404298927577
],
[
6.8013918702710665,
44.89100285430112
],
[
6.795444567274079,
44.88984287679689
],
[
6.781171040081309,
44.893322809309566
],
[
6.772844815885528,
44.90376260684759
],
[
6.768086973487938,
44.90260262934336
],
[
6.751434525096374,
44.90608256185604
],
[
6.750245064496976,
44.909562494368714
],
[
6.751434525096374,
44.91884231440251
],
[
6.749055603897578,
44.922322246915186
],
[
6.753813446295169,
44.93160206694898
],
[
6.760950209891553,
44.933922021957436
],
[
6.751434525096374,
44.938561931974334
],
[
6.749055603897578,
44.93624197696589
],
[
6.744297761499989,
44.93740195447011
],
[
6.752623985695771,
44.94204186448701
],
[
6.757381828093361,
44.94668177450391
],
[
6.765708052289143,
44.95944152705038
],
[
6.764518591689746,
44.97220127959686
],
[
6.751434525096374,
44.97800116711798
],
[
6.749055603897578,
44.986121009647555
],
[
6.738350458503001,
44.99076091966445
],
[
6.749055603897578,
44.99540082968135
],
[
6.751434525096374,
45.00120071720248
],
[
6.746676682698784,
45.00932055973205
],
[
6.744297761499989,
45.0162804247574
],
[
6.738350458503001,
45.01744040226163
],
[
6.72050854951204,
45.022080312278526
],
[
6.687203652728912,
45.0209203347743
],
[
6.686014192129514,
45.022080312278526
],
[
6.675309046734937,
45.01976035727007
],
[
6.670551204337348,
45.02904017730387
],
[
6.66460390134036,
45.034840064825
],
[
6.665793361939758,
45.040639952346126
],
[
6.671740664936745,
45.04179992985035
],
[
6.659846058942771,
45.05223972738837
],
[
6.663414440740963,
45.07079936745597
],
[
6.662224980141565,
45.07195934496019
],
[
6.647951452948796,
45.074279299968644
],
[
6.647951452948796,
45.084719097506664
],
[
6.640814689352411,
45.08703905251512
],
[
6.642004149951809,
45.08935900752357
],
[
6.632488465156629,
45.09979880506159
],
[
6.62773062275904,
45.10675867008694
],
[
6.633677925756027,
45.11139858010384
],
[
6.634867386355424,
45.11603849012074
],
[
6.647951452948796,
45.114878512616514
],
[
6.657467137743976,
45.121838377641865
],
[
6.663414440740963,
45.120678400137635
],
[
6.672930125536142,
45.12415833265031
],
[
6.675309046734937,
45.13343815268411
],
[
6.697908798123489,
45.14155799521368
],
[
6.701477179921681,
45.143877950222134
],
[
6.714561246515053,
45.14503792772636
],
[
6.72526639190963,
45.139238040205235
],
[
6.740729379701797,
45.13691808519678
],
[
6.752623985695771,
45.14503792772636
],
[
6.755002906894566,
45.149677837743255
],
[
6.762139670490951,
45.15315777025593
],
[
6.768086973487938,
45.16011763528128
],
[
6.778792118882515,
45.15895765777706
],
[
6.7859288824789,
45.15431774776016
],
[
6.803770791469861,
45.149677837743255
],
[
6.814475936864438,
45.14851786023903
],
[
6.819233779262028,
45.14503792772636
],
[
6.829938924656605,
45.14155799521368
],
[
6.835886227653592,
45.13575810769256
],
[
6.847780833647566,
45.13575810769256
],
[
6.8454019124487715,
45.12995822017143
],
[
6.851349215445759,
45.127638265162986
],
[
6.892980336424669,
45.13691808519678
],
[
6.8989276394216565,
45.14155799521368
],
[
6.89773817882226,
45.143877950222134
],
[
6.889411954626477,
45.14735788273481
],
[
6.890601415225874,
45.150837815247485
],
[
6.884654112228888,
45.157797680272836
],
[
6.892980336424669,
45.16359756779396
],
[
6.891790875825272,
45.168237477810855
],
[
6.906064403018042,
45.168237477810855
],
[
6.908443324216837,
45.1659175228024
],
[
6.914390627213823,
45.16939745531508
],
[
6.920337930210811,
45.16707750030663
],
[
6.931043075605388,
45.17171741032353
],
[
6.947695523996952,
45.17055743281931
],
[
6.944127142198759,
45.175197342836206
],
[
6.947695523996952,
45.178677275348875
],
[
6.956021748192734,
45.18099723035733
],
[
6.953642826993939,
45.19027705039113
],
[
6.959590129990927,
45.1937569829038
],
[
6.967916354186708,
45.19607693791225
],
[
6.964347972388516,
45.201876825433374
],
[
6.960779590590324,
45.2030368029376
],
[
6.97624257838249,
45.2076767129545
],
[
6.989326644975862,
45.21115664546717
],
[
6.992895026774055,
45.20999666796295
],
[
7.002410711569234,
45.21927648799675
],
[
7.021442081159593,
45.215796555484076
],
[
7.022631541758991,
45.21927648799675
],
[
7.027389384156581,
45.215796555484076
],
[
7.0392839901505555,
45.22275642050943
],
[
7.0511785961445295,
45.226236353022095
],
[
7.066641583936696,
45.21115664546717
],
[
7.0832940323282605,
45.2169565329883
],
[
7.084483492927658,
45.22507637551787
],
[
7.08805187472585,
45.226236353022095
],
[
7.09756755952103,
45.23435619555167
],
[
7.1047043231174145,
45.23667615056012
],
[
7.107083244316209,
45.243636015585466
],
[
7.111841086713799,
45.24711594809814
],
[
7.124925153307171,
45.244795993089696
],
[
7.130872456304158,
45.25175585811505
],
[
7.1380092199005425,
45.256395768131945
],
[
7.132061916903556,
45.27031549818264
],
[
7.129682995704761,
45.273795430695316
],
[
7.1368197593011455,
45.278435340712214
],
[
7.121356771508979,
45.29815495828404
],
[
7.120167310909581,
45.30511482330939
],
[
7.1154094685119915,
45.314394643343185
],
[
7.109462165515004,
45.31903455336008
],
[
7.111841086713799,
45.325994418385434
],
[
7.116598929111389,
45.32831437339388
],
[
7.129682995704761,
45.32831437339388
],
[
7.135630298701748,
45.33527423841923
],
[
7.130872456304158,
45.33991414843614
],
[
7.1380092199005425,
45.35151392347838
],
[
7.149903825894517,
45.35267390098261
],
[
7.157040589490902,
45.35847378850373
],
[
7.165366813686684,
45.360793743512176
],
[
7.160608971289094,
45.36427367602485
],
[
7.1594195106896965,
45.373553496058655
],
[
7.166556274286082,
45.385153271100904
],
[
7.178450880280056,
45.3897931811178
],
[
7.178450880280056,
45.39675304614315
],
[
7.185587643876441,
45.40719284368117
],
[
7.174882498481864,
45.409512798689626
],
[
7.162987892487889,
45.414152708706524
],
[
7.154661668292107,
45.41879261872342
],
[
7.152282747093312,
45.42343252874032
],
[
7.114220007912594,
45.43387232627835
],
[
7.1154094685119915,
45.4408321913037
],
[
7.111841086713799,
45.44663207882482
],
[
7.108272704915607,
45.44779205632904
],
[
7.098757020120427,
45.46171178637974
],
[
7.103514862518017,
45.46635169639664
],
[
7.1047043231174145,
45.467511673900866
],
[
7.111841086713799,
45.47099160641354
],
[
7.1154094685119915,
45.47563151643044
],
[
7.118977850310184,
45.496511111506486
],
[
7.122546232108376,
45.49883106651494
],
[
7.121356771508979,
45.50695090904451
],
[
7.1380092199005425,
45.51623072907831
],
[
7.13919868049994,
45.51159081906141
],
[
7.145145983496928,
45.50927086405296
],
[
7.141577601698735,
45.50463095403606
],
[
7.14395652289753,
45.496511111506486
],
[
7.1380092199005425,
45.49303117899381
],
[
7.142767062298133,
45.479111448943115
],
[
7.146335444096325,
45.477951471438885
],
[
7.151093286493915,
45.48375135896001
],
[
7.1582300500903,
45.48723129147269
],
[
7.170124656084274,
45.48375135896001
],
[
7.185587643876441,
45.48259138145579
],
[
7.215324158861376,
45.47099160641354
],
[
7.230787146653544,
45.47563151643044
],
[
7.237923910249928,
45.48723129147269
],
[
7.253386898042095,
45.49767108901071
],
[
7.264092043436672,
45.49883106651494
],
[
7.266470964635467,
45.51159081906141
],
[
7.270039346433659,
45.515070751574086
],
[
7.285502334225826,
45.51275079656563
],
[
7.29263909782221,
45.51623072907831
],
[
7.304533703816185,
45.51739070658253
],
[
7.319996691608352,
45.515070751574086
],
[
7.335459679400518,
45.52203061659944
],
[
7.349733206593288,
45.52203061659944
],
[
7.361627812587263,
45.526670526616336
],
[
7.367575115584249,
45.52435057160788
],
[
7.371143497382442,
45.51739070658253
],
[
7.379469721578224,
45.51739070658253
],
[
7.392553788171596,
45.525510549112106
],
[
7.3961221699697886,
45.53247041413746
],
[
7.4080167759637625,
45.53479036914591
],
[
7.417532460758943,
45.538270301658585
],
[
7.416343000159545,
45.54639014418815
],
[
7.427048145554122,
45.54639014418815
],
[
7.448458436343276,
45.555669964221956
],
[
7.456784660539058,
45.56842971676843
],
[
7.463921424135442,
45.573069626785326
],
[
7.480573872527007,
45.57886951430645
],
[
7.503173623915558,
45.58350942432335
],
[
7.512689308710738,
45.5811894693149
],
[
7.531720678301097,
45.576549559298
],
[
7.538857441897481,
45.5811894693149
],
[
7.542425823695674,
45.5858293793318
],
[
7.5483731266926615,
45.589309311844474
],
[
7.5697834174818155,
45.59162926685293
],
[
7.5769201810782,
45.58814933434025
],
[
7.584056944674584,
45.5811894693149
],
[
7.587625326472777,
45.58350942432335
],
[
7.600709393066149,
45.577709536802224
],
[
7.606656696063136,
45.574229604289556
],
[
7.607846156662533,
45.56378980675153
],
[
7.610225077861328,
45.5626298292473
],
[
7.625688065653495,
45.567269739264205
],
[
7.637582671647469,
45.57074967177688
],
[
7.6459088958432515,
45.56958969427265
],
[
7.6578035018372255,
45.56378980675153
],
[
7.663750804834213,
45.55914989673463
],
[
7.675645410828188,
45.55219003170928
],
[
7.6887294774215595,
45.5579899192304
],
[
7.691108398620354,
45.555669964221956
],
[
7.714897610608303,
45.55682994172618
],
[
7.720844913605291,
45.55914989673463
],
[
7.73036059840047,
45.55103005420506
],
[
7.744634125593239,
45.55682994172618
],
[
7.747013046792034,
45.560309874238854
],
[
7.758907652786009,
45.566109761759975
],
[
7.773181179978778,
45.56842971676843
],
[
7.782696864773958,
45.574229604289556
],
[
7.785075785972753,
45.574229604289556
],
[
7.796970391966727,
45.58350942432335
],
[
7.79578093136733,
45.58698935683603
],
[
7.813622840358291,
45.59278924435715
],
[
7.83741205234624,
45.59858913187827
],
[
7.842169894743829,
45.59742915437405
],
[
7.850496118939612,
45.603229041895176
],
[
7.8516855795390095,
45.60090908688672
],
[
7.860011803734792,
45.59742915437405
],
[
7.880232633924548,
45.60090908688672
],
[
7.890937779319125,
45.59742915437405
],
[
7.8956956217167145,
45.590469289348704
],
[
7.901642924713702,
45.59162926685293
],
[
7.8956956217167145,
45.6090289294163
],
[
7.908779688310086,
45.625268614475445
],
[
7.912348070108279,
45.62642859197967
],
[
7.9159164519064715,
45.63338845700502
],
[
7.932568900298035,
45.636868389517694
],
[
7.9373267426956255,
45.63570841201347
],
[
7.93970566389442,
45.642668277038815
],
[
7.921863754903459,
45.660067939602186
],
[
7.923053215502856,
45.665867827123314
],
[
7.912348070108279,
45.67050773714021
],
[
7.9052113065118945,
45.68210751218246
],
[
7.908779688310086,
45.69602724223316
],
[
7.913537530707677,
45.701827129754285
],
[
7.9159164519064715,
45.70066715225006
],
[
7.93018997909924,
45.713426904796535
],
[
7.929000518499843,
45.71806681481343
],
[
7.9373267426956255,
45.725026679838784
],
[
7.93018997909924,
45.73430649987258
],
[
7.9278110579004455,
45.735466477376804
],
[
7.931379439698638,
45.74126636489793
],
[
7.923053215502856,
45.742426342402155
],
[
7.912348070108279,
45.748226229923276
],
[
7.89331670051792,
45.754026117444404
],
[
7.889748318719727,
45.759826004965525
],
[
7.881422094523945,
45.766785869990876
],
[
7.8838010157227405,
45.771425780007775
],
[
7.8730958703281635,
45.77954562253735
],
[
7.863580185532983,
45.79346535258804
],
[
7.867148567331176,
45.79926524010917
],
[
7.864769646132381,
45.81666490267254
],
[
7.8623907249335865,
45.82014483518522
],
[
7.869527488529971,
45.825944722706346
],
[
7.8742853309275604,
45.825944722706346
],
[
7.864769646132381,
45.842184407765494
],
[
7.867148567331176,
45.84914427279084
],
[
7.875474791526958,
45.854944160311966
],
[
7.876664252126355,
45.86190402533731
],
[
7.869527488529971,
45.86770391285844
],
[
7.867148567331176,
45.888583507934484
],
[
7.863580185532983,
45.89902330547251
],
[
7.868338027930573,
45.90598317049786
],
[
7.8623907249335865,
45.90830312550631
],
[
7.864769646132381,
45.91642296803588
],
[
7.865959106731779,
45.91990290054856
],
[
7.877853712725753,
45.9268627655739
],
[
7.869527488529971,
45.936142585607705
],
[
7.870716949129369,
45.947742360649954
],
[
7.876664252126355,
45.94890233815418
],
[
7.879043173325151,
45.953542248171075
],
[
7.881422094523945,
45.9639820457091
],
[
7.877853712725753,
45.972101888238676
],
[
7.880232633924548,
45.97558182075135
],
[
7.89331670051792,
45.9779017757598
],
[
7.896885082316112,
45.98486164078515
],
[
7.9064007671112915,
45.9918215058105
],
[
7.914726991307074,
45.99762139333162
],
[
7.933758360897433,
45.9964614158274
],
[
7.962305415282971,
45.99762139333162
],
[
7.980147324273933,
45.99994134834007
],
[
7.989663009069113,
45.9964614158274
],
[
7.994420851466702,
45.99994134834007
],
[
8.001557615063087,
46.012701100886545
],
[
8.013452221057062,
46.012701100886545
],
[
8.011073299858268,
46.019660965911896
],
[
8.017020602855254,
46.02546085343302
],
[
8.013452221057062,
46.03242071845837
],
[
8.018210063454651,
46.034740673466814
],
[
8.021778445252844,
46.03938058348372
],
[
8.034862511846216,
46.04402049350061
],
[
8.026536287650433,
46.059100201055536
],
[
8.02296790585224,
46.071859953602015
],
[
8.02415736645164,
46.07649986361891
],
[
8.030104669448626,
46.09041959366961
],
[
8.033673051246819,
46.09505950368651
],
[
8.034862511846216,
46.100859391207635
],
[
8.058651723834164,
46.10201936871186
],
[
8.063409566231755,
46.10549930122453
],
[
8.090767160017895,
46.106659278728756
],
[
8.099093384213678,
46.10897923373721
],
[
8.100282844813075,
46.111299188745654
],
[
8.114556372005845,
46.118259053771006
],
[
8.115745832605242,
46.13101880631748
],
[
8.14429288699078,
46.136818693838606
],
[
8.154998032385357,
46.147258491376625
],
[
8.152619111186562,
46.1553783339062
],
[
8.150240189987768,
46.15653831141043
],
[
8.151429650587165,
46.165818131444226
],
[
8.157376953584151,
46.1692980639569
],
[
8.159755874782947,
46.17509795147802
],
[
8.165703177779935,
46.17741790648647
],
[
8.164513717180537,
46.18437777151182
],
[
8.15380857178596,
46.19249761404139
],
[
8.150240189987768,
46.206417344092095
],
[
8.14429288699078,
46.211057254108994
],
[
8.143103426391383,
46.216857141630115
],
[
8.135966662795,
46.22613696166392
],
[
8.125261517400421,
46.22961689417659
],
[
8.121693135602229,
46.23657675920194
],
[
8.114556372005845,
46.23773673670617
],
[
8.11217745080705,
46.241216669218836
],
[
8.110987990207652,
46.24933651174841
],
[
8.101472305412472,
46.25049648925264
],
[
8.082440935822113,
46.25745635427799
],
[
8.081251475222716,
46.26093628679066
],
[
8.086009317620306,
46.26209626429488
],
[
8.087198778219703,
46.26789615181601
],
[
8.095525002415485,
46.27021610682446
],
[
8.103851226611267,
46.276015994345585
],
[
8.105040687210664,
46.27949592685826
],
[
8.113366911406446,
46.28065590436248
],
[
8.119314214403435,
46.28993572439629
],
[
8.128829899198614,
46.29457563441318
],
[
8.131208820397408,
46.298055566925854
],
[
8.146671808189575,
46.30269547694276
],
[
8.172839941376319,
46.29689558942163
],
[
8.182355626171498,
46.298055566925854
],
[
8.20019753516246,
46.30269547694276
],
[
8.212092141156434,
46.3096553419681
],
[
8.215660522954627,
46.32009513950613
],
[
8.22398674715041,
46.32473504952303
],
[
8.22398674715041,
46.335174847061054
],
[
8.239449734942577,
46.340974734582176
],
[
8.250154880337153,
46.340974734582176
],
[
8.252533801535948,
46.3467746221033
],
[
8.263238946930525,
46.345614644599074
],
[
8.26561786812932,
46.3514145321202
],
[
8.26086002573173,
46.360694352154
],
[
8.262049486331128,
46.363014307162445
],
[
8.2751335529245,
46.36649423967512
],
[
8.285838698319075,
46.364174284666674
],
[
8.290596540716667,
46.369974172187796
],
[
8.313196292105218,
46.37693403721315
],
[
8.314385752704615,
46.381573947230045
],
[
8.319143595102204,
46.38737383475117
],
[
8.314385752704615,
46.39085376726385
],
[
8.317954134502807,
46.39433369977652
],
[
8.310817370906422,
46.40361351981032
],
[
8.30724898910823,
46.40245354230609
],
[
8.295354383114256,
46.404773497314544
],
[
8.289407080117268,
46.40825342982722
],
[
8.29773330431305,
46.41289333984412
],
[
8.30249114671064,
46.423333137382144
],
[
8.306059528508833,
46.42565309239059
],
[
8.317954134502807,
46.42449311488637
],
[
8.325090898099193,
46.42565309239059
],
[
8.340553885891358,
46.433772934920164
],
[
8.342932807090154,
46.43725286743284
],
[
8.34888011008714,
46.43957282244129
],
[
8.354827413084127,
46.446532687466636
],
[
8.365532558478705,
46.452332574987764
],
[
8.375048243273884,
46.45349255249199
],
[
8.379806085671474,
46.451172597483534
],
[
8.394079612864244,
46.452332574987764
],
[
8.396458534063038,
46.45581250750044
],
[
8.408353140057013,
46.45929244001311
],
[
8.42857397024677,
46.46161239502156
],
[
8.432142352044963,
46.46393235003001
],
[
8.441658036840142,
46.46393235003001
],
[
8.45593156403291,
46.45349255249199
],
[
8.4606894064305,
46.452332574987764
],
[
8.466636709427487,
46.44305275495396
],
[
8.458310485231706,
46.433772934920164
],
[
8.4606894064305,
46.43145297991171
],
[
8.458310485231706,
46.422173159877914
],
[
8.464257788228693,
46.41869322736524
],
[
8.469015630626282,
46.41173336233989
],
[
8.464257788228693,
46.407093452323
],
[
8.471394551825078,
46.39549367728074
],
[
8.466636709427487,
46.393173722272294
],
[
8.461878867029897,
46.38621385724694
],
[
8.47020509122568,
46.36185432965822
],
[
8.46544724882809,
46.359534374649776
],
[
8.463068327629296,
46.34909457711175
],
[
8.464257788228693,
46.33633482456528
],
[
8.46544724882809,
46.3328548920526
],
[
8.454742103433514,
46.32125511701035
],
[
8.444036958038936,
46.32009513950613
],
[
8.442847497439539,
46.311975296976556
],
[
8.439279115641346,
46.30849536446388
],
[
8.436900194442552,
46.30385545444698
],
[
8.42857397024677,
46.300375521934306
],
[
8.434521273243757,
46.287615769387834
],
[
8.445226418638335,
46.27949592685826
],
[
8.451173721635321,
46.27369603933714
],
[
8.451173721635321,
46.271376084328686
],
[
8.457121024632308,
46.264416219303335
],
[
8.448794800436525,
46.26093628679066
],
[
8.442847497439539,
46.253976421765316
],
[
8.461878867029897,
46.245856579235735
],
[
8.466636709427487,
46.242376646723066
],
[
8.467826170026886,
46.235416781697715
],
[
8.477341854822065,
46.23077687168082
],
[
8.49399430321363,
46.22961689417659
],
[
8.517783515201577,
46.22033707414279
],
[
8.52610973939736,
46.22149705164702
],
[
8.533246502993745,
46.218017119134345
],
[
8.53562542419254,
46.206417344092095
],
[
8.546330569587116,
46.19713752405829
],
[
8.554656793782899,
46.19133763653717
],
[
8.554656793782899,
46.18669772652027
],
[
8.561793557379284,
46.18553774901605
],
[
8.570119781575066,
46.17741790648647
],
[
8.573688163373257,
46.164658153939996
],
[
8.58677222996663,
46.16233819893155
],
[
8.589151151165424,
46.15769828891465
],
[
8.603424678358193,
46.15421835640198
],
[
8.593908993563014,
46.1460985138724
],
[
8.593908993563014,
46.14261858135973
],
[
8.603424678358193,
46.13913864884705
],
[
8.62364550854795,
46.12173898628368
],
[
8.626024429746746,
46.122898963787904
],
[
8.648624181135297,
46.124058941292134
],
[
8.659329326529873,
46.11245916624988
],
[
8.67003447192445,
46.10897923373721
],
[
8.680739617319027,
46.11013921124143
],
[
8.681929077918426,
46.10549930122453
],
[
8.702149908108181,
46.10201936871186
],
[
8.715233974701555,
46.09853943619918
]
],
[
[
8.705718289906374,
45.01396046974895
],
[
8.70690775050577,
45.02440026728698
],
[
8.703339368707578,
45.015120447253175
],
[
8.705718289906374,
45.01396046974895
]
],
[
[
8.817527586249733,
45.022080312278526
],
[
8.81039082265335,
45.01976035727007
],
[
8.81514866505094,
45.01744040226163
],
[
8.817527586249733,
45.0209203347743
],
[
8.817527586249733,
45.022080312278526
]
]
]
}
},
{
"type": "Feature",
"id": 2,
"properties": {
"COD_REG": 2,
"pil": 135,
"name": "VALLE D'AOSTA",
"SHAPE_Leng": 325841.79661,
"SHAPE_Area": 3260902257.97
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
7.864769646132381,
45.91642296803588
],
[
7.8623907249335865,
45.90830312550631
],
[
7.868338027930573,
45.90598317049786
],
[
7.863580185532983,
45.89902330547251
],
[
7.867148567331176,
45.888583507934484
],
[
7.869527488529971,
45.86770391285844
],
[
7.876664252126355,
45.86190402533731
],
[
7.875474791526958,
45.854944160311966
],
[
7.867148567331176,
45.84914427279084
],
[
7.864769646132381,
45.842184407765494
],
[
7.8742853309275604,
45.825944722706346
],
[
7.869527488529971,
45.825944722706346
],
[
7.8623907249335865,
45.82014483518522
],
[
7.864769646132381,
45.81666490267254
],
[
7.867148567331176,
45.79926524010917
],
[
7.863580185532983,
45.79346535258804
],
[
7.8730958703281635,
45.77954562253735
],
[
7.8838010157227405,
45.771425780007775
],
[
7.881422094523945,
45.766785869990876
],
[
7.889748318719727,
45.759826004965525
],
[
7.89331670051792,
45.754026117444404
],
[
7.912348070108279,
45.748226229923276
],
[
7.923053215502856,
45.742426342402155
],
[
7.931379439698638,
45.74126636489793
],
[
7.9278110579004455,
45.735466477376804
],
[
7.93018997909924,
45.73430649987258
],
[
7.9373267426956255,
45.725026679838784
],
[
7.929000518499843,
45.71806681481343
],
[
7.93018997909924,
45.713426904796535
],
[
7.9159164519064715,
45.70066715225006
],
[
7.913537530707677,
45.701827129754285
],
[
7.908779688310086,
45.69602724223316
],
[
7.9052113065118945,
45.68210751218246
],
[
7.912348070108279,
45.67050773714021
],
[
7.923053215502856,
45.665867827123314
],
[
7.921863754903459,
45.660067939602186
],
[
7.93970566389442,
45.642668277038815
],
[
7.9373267426956255,
45.63570841201347
],
[
7.932568900298035,
45.636868389517694
],
[
7.9159164519064715,
45.63338845700502
],
[
7.912348070108279,
45.62642859197967
],
[
7.908779688310086,
45.625268614475445
],
[
7.8956956217167145,
45.6090289294163
],
[
7.901642924713702,
45.59162926685293
],
[
7.8956956217167145,
45.590469289348704
],
[
7.890937779319125,
45.59742915437405
],
[
7.880232633924548,
45.60090908688672
],
[
7.860011803734792,
45.59742915437405
],
[
7.8516855795390095,
45.60090908688672
],
[
7.850496118939612,
45.603229041895176
],
[
7.842169894743829,
45.59742915437405
],
[
7.83741205234624,
45.59858913187827
],
[
7.813622840358291,
45.59278924435715
],
[
7.79578093136733,
45.58698935683603
],
[
7.796970391966727,
45.58350942432335
],
[
7.785075785972753,
45.574229604289556
],
[
7.782696864773958,
45.574229604289556
],
[
7.773181179978778,
45.56842971676843
],
[
7.758907652786009,
45.566109761759975
],
[
7.747013046792034,
45.560309874238854
],
[
7.744634125593239,
45.55682994172618
],
[
7.73036059840047,
45.55103005420506
],
[
7.720844913605291,
45.55914989673463
],
[
7.714897610608303,
45.55682994172618
],
[
7.691108398620354,
45.555669964221956
],
[
7.6887294774215595,
45.5579899192304
],
[
7.675645410828188,
45.55219003170928
],
[
7.663750804834213,
45.55914989673463
],
[
7.6578035018372255,
45.56378980675153
],
[
7.6459088958432515,
45.56958969427265
],
[
7.637582671647469,
45.57074967177688
],
[
7.625688065653495,
45.567269739264205
],
[
7.610225077861328,
45.5626298292473
],
[
7.607846156662533,
45.56378980675153
],
[
7.606656696063136,
45.574229604289556
],
[
7.600709393066149,
45.577709536802224
],
[
7.587625326472777,
45.58350942432335
],
[
7.584056944674584,
45.5811894693149
],
[
7.5769201810782,
45.58814933434025
],
[
7.5697834174818155,
45.59162926685293
],
[
7.5483731266926615,
45.589309311844474
],
[
7.542425823695674,
45.5858293793318
],
[
7.538857441897481,
45.5811894693149
],
[
7.531720678301097,
45.576549559298
],
[
7.512689308710738,
45.5811894693149
],
[
7.503173623915558,
45.58350942432335
],
[
7.480573872527007,
45.57886951430645
],
[
7.463921424135442,
45.573069626785326
],
[
7.456784660539058,
45.56842971676843
],
[
7.448458436343276,
45.555669964221956
],
[
7.427048145554122,
45.54639014418815
],
[
7.416343000159545,
45.54639014418815
],
[
7.417532460758943,
45.538270301658585
],
[
7.4080167759637625,
45.53479036914591
],
[
7.3961221699697886,
45.53247041413746
],
[
7.392553788171596,
45.525510549112106
],
[
7.379469721578224,
45.51739070658253
],
[
7.371143497382442,
45.51739070658253
],
[
7.367575115584249,
45.52435057160788
],
[
7.361627812587263,
45.526670526616336
],
[
7.349733206593288,
45.52203061659944
],
[
7.335459679400518,
45.52203061659944
],
[
7.319996691608352,
45.515070751574086
],
[
7.304533703816185,
45.51739070658253
],
[
7.29263909782221,
45.51623072907831
],
[
7.285502334225826,
45.51275079656563
],
[
7.270039346433659,
45.515070751574086
],
[
7.266470964635467,
45.51159081906141
],
[
7.264092043436672,
45.49883106651494
],
[
7.253386898042095,
45.49767108901071
],
[
7.237923910249928,
45.48723129147269
],
[
7.230787146653544,
45.47563151643044
],
[
7.215324158861376,
45.47099160641354
],
[
7.185587643876441,
45.48259138145579
],
[
7.170124656084274,
45.48375135896001
],
[
7.1582300500903,
45.48723129147269
],
[
7.151093286493915,
45.48375135896001
],
[
7.146335444096325,
45.477951471438885
],
[
7.142767062298133,
45.479111448943115
],
[
7.1380092199005425,
45.49303117899381
],
[
7.14395652289753,
45.496511111506486
],
[
7.141577601698735,
45.50463095403606
],
[
7.145145983496928,
45.50927086405296
],
[
7.13919868049994,
45.51159081906141
],
[
7.1380092199005425,
45.51623072907831
],
[
7.121356771508979,
45.50695090904451
],
[
7.122546232108376,
45.49883106651494
],
[
7.118977850310184,
45.496511111506486
],
[
7.1154094685119915,
45.47563151643044
],
[
7.111841086713799,
45.47099160641354
],
[
7.1047043231174145,
45.467511673900866
],
[
7.0606942809397095,
45.47447153892622
],
[
7.059504820340312,
45.472151583917764
],
[
7.04642075374694,
45.473311561421994
],
[
7.045231293147542,
45.477951471438885
],
[
7.0499891355451325,
45.48723129147269
],
[
7.055936438542119,
45.49303117899381
],
[
7.04166291134935,
45.49767108901071
],
[
7.027389384156581,
45.496511111506486
],
[
7.009547475165619,
45.49999104401916
],
[
7.008358014566221,
45.502310999027614
],
[
7.000031790370439,
45.50463095403606
],
[
7.001221250969837,
45.51159081906141
],
[
7.004789632768029,
45.52087063909521
],
[
6.99527394797285,
45.52899048162478
],
[
6.99051610557526,
45.531310436633234
],
[
6.9964634085722475,
45.544070189179706
],
[
6.99051610557526,
45.55682994172618
],
[
6.99051610557526,
45.56494978425575
],
[
6.994084487373453,
45.566109761759975
],
[
6.99527394797285,
45.576549559298
],
[
6.982189881379478,
45.58350942432335
],
[
6.979810960180683,
45.596269176869825
],
[
6.984568802578273,
45.6043890193994
],
[
6.984568802578273,
45.618308749450094
],
[
6.99051610557526,
45.62642859197967
],
[
7.002410711569234,
45.636868389517694
],
[
6.99527394797285,
45.64150829953459
],
[
6.992895026774055,
45.64034832203037
],
[
6.989326644975862,
45.64498823204727
],
[
6.972674196584299,
45.647308187055714
],
[
6.971484735984901,
45.65310807457684
],
[
6.960779590590324,
45.655428029585295
],
[
6.958400669391529,
45.65310807457684
],
[
6.929853615005991,
45.648468164559944
],
[
6.915580087813221,
45.65310807457684
],
[
6.916769548412619,
45.661227917106416
],
[
6.903685481819246,
45.66470784961909
],
[
6.907253863617439,
45.67050773714021
],
[
6.906064403018042,
45.67862757966979
],
[
6.900117100021054,
45.68094753467824
],
[
6.894169797024067,
45.67630762466134
],
[
6.884654112228888,
45.68094753467824
],
[
6.873948966834311,
45.67978755717401
],
[
6.868001663837323,
45.684427467190915
],
[
6.858485979042143,
45.684427467190915
],
[
6.846591373048169,
45.69254730972049
],
[
6.843022991249977,
45.69950717474583
],
[
6.839454609451785,
45.701827129754285
],
[
6.831128385256003,
45.701827129754285
],
[
6.820423239861426,
45.719226792317656
],
[
6.809718094466849,
45.72850661235145
],
[
6.818044318662631,
45.74010638739371
],
[
6.806149712668656,
45.748226229923276
],
[
6.804960252069259,
45.75518609494863
],
[
6.807339173268054,
45.76098598246975
],
[
6.804960252069259,
45.76562589248665
],
[
6.806149712668656,
45.771425780007775
],
[
6.8025813308704635,
45.77490571252045
],
[
6.8013918702710665,
45.78070560004157
],
[
6.806149712668656,
45.79346535258804
],
[
6.8132864762650405,
45.79462533009227
],
[
6.810907555066246,
45.80390515012607
],
[
6.8132864762650405,
45.8097050376472
],
[
6.804960252069259,
45.81550492516832
],
[
6.8120970156656435,
45.825944722706346
],
[
6.818044318662631,
45.83174461022747
],
[
6.820423239861426,
45.837544497748596
],
[
6.8323178458554,
45.837544497748596
],
[
6.84183353065058,
45.842184407765494
],
[
6.852538676045157,
45.83870447525282
],
[
6.859675439641541,
45.83406456523592
],
[
6.872759506234913,
45.83986445275704
],
[
6.8787068092319,
45.85030425029507
],
[
6.895359257623465,
45.84334438526972
],
[
6.908443324216837,
45.84450436277394
],
[
6.914390627213823,
45.84102443026127
],
[
6.915580087813221,
45.84334438526972
],
[
6.929853615005991,
45.847984295286615
],
[
6.940558760400568,
45.84682431778239
],
[
6.942937681599362,
45.847984295286615
],
[
6.951263905795145,
45.86074404783309
],
[
6.957211208792131,
45.86074404783309
],
[
6.991705566174657,
45.86886389036266
],
[
7.000031790370439,
45.87466377788379
],
[
7.000031790370439,
45.88046366540491
],
[
7.005979093367427,
45.883943597917586
],
[
7.003600172168632,
45.89206344044716
],
[
7.019063159960798,
45.91526299053166
],
[
7.026199923557183,
45.917582945540104
],
[
7.033336687153568,
45.92222285555701
],
[
7.047610214346337,
45.92222285555701
],
[
7.052368056743927,
45.91642296803588
],
[
7.065452123337299,
45.90946310301053
],
[
7.064262662737901,
45.90134326048096
],
[
7.0713994263342865,
45.89786332796828
],
[
7.076157268731876,
45.89090346294294
],
[
7.095188638322235,
45.876983732892235
],
[
7.0928097171234405,
45.87350380037957
],
[
7.10232540191862,
45.859584070328864
],
[
7.118977850310184,
45.859584070328864
],
[
7.123735692707774,
45.86422398034576
],
[
7.134440838102351,
45.86886389036266
],
[
7.141577601698735,
45.87582375538801
],
[
7.1594195106896965,
45.87930368790069
],
[
7.165366813686684,
45.876983732892235
],
[
7.161798431888492,
45.871183845371114
],
[
7.167745734885479,
45.86886389036266
],
[
7.176071959081261,
45.86306400284154
],
[
7.190345486274031,
45.85842409282464
],
[
7.19986117106921,
45.86306400284154
],
[
7.197482249870415,
45.871183845371114
],
[
7.206997934665595,
45.88046366540491
],
[
7.20937685586439,
45.88046366540491
],
[
7.217703080060172,
45.889743485438714
],
[
7.226029304255954,
45.889743485438714
],
[
7.233166067852339,
45.89206344044716
],
[
7.240302831448723,
45.889743485438714
],
[
7.2510079768433,
45.89322341795138
],
[
7.253386898042095,
45.888583507934484
],
[
7.267660425234864,
45.89786332796828
],
[
7.2783655706294415,
45.90250323798519
],
[
7.285502334225826,
45.91642296803588
],
[
7.296207479620403,
45.92222285555701
],
[
7.30215478261739,
45.917582945540104
],
[
7.31642830981016,
45.917582945540104
],
[
7.317617770409557,
45.912943035523206
],
[
7.323565073406544,
45.91062308051475
],
[
7.3437859035963005,
45.91526299053166
],
[
7.350922667192686,
45.91178305801898
],
[
7.360438351987865,
45.90366321548941
],
[
7.366385654984852,
45.90482319299363
],
[
7.377090800379429,
45.90134326048096
],
[
7.381848642777019,
45.89670335046406
],
[
7.390174866972801,
45.89902330547251
],
[
7.398501091168583,
45.90598317049786
],
[
7.403258933566173,
45.91178305801898
],
[
7.410395697162557,
45.90830312550631
],
[
7.423479763755929,
45.91526299053166
],
[
7.4294270667529165,
45.91642296803588
],
[
7.443700593945686,
45.93150267559081
],
[
7.456784660539058,
45.93266265309503
],
[
7.459163581737853,
45.936142585607705
],
[
7.468679266533032,
45.93382263059925
],
[
7.475816030129417,
45.93730256311193
],
[
7.472247648331225,
45.9454224056415
],
[
7.478194951328212,
45.953542248171075
],
[
7.493657939120379,
45.95586220317953
],
[
7.498415781517968,
45.96282206820487
],
[
7.51149984811134,
45.959342135692204
],
[
7.5162576905089304,
45.96282206820487
],
[
7.523394454105315,
45.958182158187974
],
[
7.540046902496879,
45.95586220317953
],
[
7.547183666093264,
45.96282206820487
],
[
7.542425823695674,
45.9779017757598
],
[
7.5483731266926615,
45.98602161828937
],
[
7.56264665388543,
45.98602161828937
],
[
7.568593956882418,
45.988341573297824
],
[
7.578109641677597,
45.9871815957936
],
[
7.582867484075187,
45.97906175326402
],
[
7.584056944674584,
45.972101888238676
],
[
7.605467235463738,
45.97094191073445
],
[
7.626877526252892,
45.972101888238676
],
[
7.62806698685229,
45.97094191073445
],
[
7.654235120039034,
45.97442184324713
],
[
7.655424580638432,
45.976741798255574
],
[
7.668508647231803,
45.97442184324713
],
[
7.681592713825175,
45.95702218068375
],
[
7.697055701617342,
45.95586220317953
],
[
7.708950307611316,
45.9500623156584
],
[
7.708950307611316,
45.93730256311193
],
[
7.712518689409508,
45.929182720582354
],
[
7.7220343742046875,
45.92338283306123
],
[
7.736307901397457,
45.924542810565455
],
[
7.738686822596252,
45.93034269808658
],
[
7.744634125593239,
45.93266265309503
],
[
7.748202507391431,
45.9407824956246
],
[
7.769612798180585,
45.93730256311193
],
[
7.777939022376367,
45.93034269808658
],
[
7.792212549569137,
45.924542810565455
],
[
7.793402010168535,
45.92106287805278
],
[
7.802917694963714,
45.917582945540104
],
[
7.810054458560099,
45.92338283306123
],
[
7.827896367551061,
45.9268627655739
],
[
7.860011803734792,
45.92106287805278
],
[
7.864769646132381,
45.91642296803588
]
]
]
}
},
{
"type": "Feature",
"id": 3,
"properties": {
"COD_REG": 3,
"pil": 129,
"name": "LOMBARDIA",
"SHAPE_Leng": 1511138.58178,
"SHAPE_Area": 23863373670
},
"geometry": {
"type": "MultiPolygon",
"coordinates": [
[
[
[
10.45303591042122,
46.53121104527505
],
[
10.45303591042122,
46.5288910902666
],
[
10.455414831620015,
46.51845129272858
],
[
10.457793752818809,
46.510331450199004
],
[
10.473256740610974,
46.50105163016521
],
[
10.476825122409167,
46.49525174264408
],
[
10.486340807204346,
46.494091765139856
],
[
10.491098649601938,
46.498731675156755
],
[
10.511319479791695,
46.4964117201483
],
[
10.529161388782654,
46.49525174264408
],
[
10.542245455376028,
46.491771810131404
],
[
10.549382218972411,
46.492931787635634
],
[
10.5553295219694,
46.49061183262718
],
[
10.556518982568797,
46.487131900114505
],
[
10.563655746165182,
46.481332012593384
],
[
10.59220280055072,
46.47205219255959
],
[
10.600529024746502,
46.46857226004691
],
[
10.621939315535656,
46.44885264247509
],
[
10.617181473138066,
46.44421273245818
],
[
10.619560394336862,
46.433772934920164
],
[
10.617181473138066,
46.43029300240749
],
[
10.618370933737463,
46.41521329485256
],
[
10.621939315535656,
46.41405331734834
],
[
10.630265539731438,
46.40825342982722
],
[
10.629076079132041,
46.40361351981032
],
[
10.632644460930234,
46.40129356480187
],
[
10.617181473138066,
46.393173722272294
],
[
10.608855248942284,
46.38621385724694
],
[
10.608855248942284,
46.38041396972582
],
[
10.580308194556746,
46.37809401471737
],
[
10.57792927335795,
46.375774059708924
],
[
10.566034667363976,
46.37809401471737
],
[
10.552950600770604,
46.36765421717935
],
[
10.543434915975425,
46.36649423967512
],
[
10.54105599477663,
46.36185432965822
],
[
10.543434915975425,
46.3560544421371
],
[
10.533919231180246,
46.35489446463288
],
[
10.532729770580847,
46.35721441964132
],
[
10.519645703987475,
46.3560544421371
],
[
10.516077322189282,
46.3467746221033
],
[
10.52678246758386,
46.34329468959062
],
[
10.538677073577835,
46.33865477957373
],
[
10.548192758373014,
46.335174847061054
],
[
10.557708443168194,
46.329374959539926
],
[
10.566034667363976,
46.32705500453147
],
[
10.564845206764579,
46.31313527448078
],
[
10.579118733957348,
46.30269547694276
],
[
10.580308194556746,
46.29921554443008
],
[
10.569603049162168,
46.29225567940473
],
[
10.56008736436699,
46.28413583687516
],
[
10.567224127963375,
46.27833594935403
],
[
10.575550352159155,
46.27717597184981
],
[
10.576739812758554,
46.269056129320234
],
[
10.579118733957348,
46.26673617431179
],
[
10.583876576354937,
46.25165646675686
],
[
10.586255497553733,
46.24817653424419
],
[
10.58268711575554,
46.24469660173151
],
[
10.580308194556746,
46.23889671421039
],
[
10.570792509761565,
46.23657675920194
],
[
10.568413588562771,
46.23425680419349
],
[
10.570792509761565,
46.22149705164702
],
[
10.567224127963375,
46.22033707414279
],
[
10.562466285565783,
46.21337720911744
],
[
10.5553295219694,
46.211057254108994
],
[
10.55057167957181,
46.206417344092095
],
[
10.548192758373014,
46.19597754655407
],
[
10.542245455376028,
46.189017681528725
],
[
10.557708443168194,
46.1785778839907
],
[
10.566034667363976,
46.16697810894845
],
[
10.557708443168194,
46.15653831141043
],
[
10.5553295219694,
46.1553783339062
],
[
10.547003297773617,
46.1460985138724
],
[
10.547003297773617,
46.14029862635128
],
[
10.551761140171207,
46.124058941292134
],
[
10.549382218972411,
46.11593909876255
],
[
10.542245455376028,
46.107819256232986
],
[
10.542245455376028,
46.10317934621608
],
[
10.533919231180246,
46.09621948119073
],
[
10.530350849382053,
46.09505950368651
],
[
10.516077322189282,
46.07881981862736
],
[
10.501803794996514,
46.07301993110624
],
[
10.498235413198323,
46.06953999859356
],
[
10.489909189002539,
46.06606006608089
],
[
10.482772425406155,
46.05794022355131
],
[
10.478014583008566,
46.05214033603019
],
[
10.48515134660495,
46.047500426013286
],
[
10.486340807204346,
46.02778080844146
],
[
10.483961886005552,
46.02198092092034
],
[
10.47087781941218,
46.02198092092034
],
[
10.469688358812784,
46.019660965911896
],
[
10.457793752818809,
46.01038114587809
],
[
10.45303591042122,
45.990661528306276
],
[
10.454225371020616,
45.976741798255574
],
[
10.464930516415194,
45.97442184324713
],
[
10.467309437613988,
45.972101888238676
],
[
10.472067280011577,
45.9732618657429
],
[
10.48039350420736,
45.96978193323022
],
[
10.487530267803745,
45.97094191073445
],
[
10.489909189002539,
45.96166209070065
],
[
10.487530267803745,
45.960502113196426
],
[
10.483961886005552,
45.9500623156584
],
[
10.48515134660495,
45.94426242813728
],
[
10.492288110201335,
45.941942473128826
],
[
10.498235413198323,
45.929182720582354
],
[
10.508940558592899,
45.924542810565455
],
[
10.511319479791695,
45.91526299053166
],
[
10.507751097993502,
45.912943035523206
],
[
10.507751097993502,
45.90482319299363
],
[
10.49466703140013,
45.900183282976734
],
[
10.493477570800732,
45.895543372959835
],
[
10.497045952598924,
45.89322341795138
],
[
10.489909189002539,
45.88510357542181
],
[
10.495856491999527,
45.87930368790069
],
[
10.50418271619531,
45.876983732892235
],
[
10.50299325559591,
45.85610413781619
],
[
10.506561637394103,
45.854944160311966
],
[
10.505372176794706,
45.84450436277394
],
[
10.507751097993502,
45.83986445275704
],
[
10.50299325559591,
45.836384520244366
],
[
10.506561637394103,
45.825944722706346
],
[
10.513698400990489,
45.824784745202116
],
[
10.530350849382053,
45.82710470021057
],
[
10.533919231180246,
45.82362476769789
],
[
10.544624376574822,
45.81782488017677
],
[
10.537487612978438,
45.81086501515142
],
[
10.530350849382053,
45.8097050376472
],
[
10.52678246758386,
45.8050651276303
],
[
10.533919231180246,
45.8050651276303
],
[
10.535108691779643,
45.800425217613395
],
[
10.530350849382053,
45.79694528510072
],
[
10.53629815237904,
45.79346535258804
],
[
10.532729770580847,
45.78882544257115
],
[
10.538677073577835,
45.7865054875627
],
[
10.564845206764579,
45.78418553255425
],
[
10.574360891559758,
45.7865054875627
],
[
10.581497655156143,
45.789985420075375
],
[
10.586255497553733,
45.79694528510072
],
[
10.599339564147105,
45.800425217613395
],
[
10.601718485345899,
45.80390515012607
],
[
10.612423630740476,
45.80622510513452
],
[
10.635023382129027,
45.807385082638746
],
[
10.640970685126014,
45.80274517262185
],
[
10.649296909321798,
45.80854506014297
],
[
10.654054751719386,
45.82130481268945
],
[
10.657623133517578,
45.82246479019367
],
[
10.654054751719386,
45.82710470021057
],
[
10.654054751719386,
45.83290458773169
],
[
10.665949357713362,
45.83174461022747
],
[
10.67070720011095,
45.83290458773169
],
[
10.679033424306734,
45.83174461022747
],
[
10.693306951499503,
45.837544497748596
],
[
10.700443715095886,
45.842184407765494
],
[
10.707580478692272,
45.83870447525282
],
[
10.707580478692272,
45.836384520244366
],
[
10.736127533077811,
45.84334438526972
],
[
10.74564321787299,
45.84102443026127
],
[
10.751590520869978,
45.837544497748596
],
[
10.753969442068772,
45.83174461022747
],
[
10.757537823866965,
45.830584632723244
],
[
10.762295666264555,
45.83986445275704
],
[
10.778948114656117,
45.84334438526972
],
[
10.78251649645431,
45.836384520244366
],
[
10.79203218124949,
45.83406456523592
],
[
10.795600563047682,
45.836384520244366
],
[
10.817010853836837,
45.83522454274014
],
[
10.82057923563503,
45.837544497748596
],
[
10.840800065824785,
45.83290458773169
],
[
10.834852762827797,
45.818984857680995
],
[
10.831284381029606,
45.81318497015987
],
[
10.825337078032618,
45.81086501515142
],
[
10.814631932638042,
45.80390515012607
],
[
10.795600563047682,
45.77954562253735
],
[
10.784895417653106,
45.766785869990876
],
[
10.77300081165913,
45.75054618493173
],
[
10.771811351059734,
45.75054618493173
],
[
10.736127533077811,
45.70994697228386
],
[
10.727801308882029,
45.701827129754285
],
[
10.719475084686247,
45.69138733221626
],
[
10.712338321089861,
45.684427467190915
],
[
10.702822636294682,
45.672827692148665
],
[
10.68973856970131,
45.66238789461064
],
[
10.68022288490613,
45.65310807457684
],
[
10.627886618532642,
45.60670897440785
],
[
10.630265539731438,
45.596269176869825
],
[
10.630265539731438,
45.590469289348704
],
[
10.636212842728426,
45.537110324154355
],
[
10.63859176392722,
45.501151021523384
],
[
10.640970685126014,
45.479111448943115
],
[
10.644539066924207,
45.454751921354394
],
[
10.6481074487224,
45.45127198884172
],
[
10.624318236734451,
45.438512236295246
],
[
10.642160145725413,
45.44431212381637
],
[
10.651675830520592,
45.425752483748774
],
[
10.6481074487224,
45.42459250624455
],
[
10.644539066924207,
45.4176326412192
],
[
10.655244212318784,
45.41647266371497
],
[
10.656433672918181,
45.4222725512361
],
[
10.671896660710349,
45.425752483748774
],
[
10.692117490900106,
45.42459250624455
],
[
10.702822636294682,
45.4222725512361
],
[
10.71709616348745,
45.41647266371497
],
[
10.71709616348745,
45.40719284368117
],
[
10.719475084686247,
45.40603286617695
],
[
10.719475084686247,
45.3990730011516
],
[
10.70876993929167,
45.38747322610935
],
[
10.707580478692272,
45.38283331609245
],
[
10.698064793897093,
45.380513361084
],
[
10.706391018092875,
45.37007356354598
],
[
10.714717242288657,
45.36775360853753
],
[
10.704012096894079,
45.35847378850373
],
[
10.692117490900106,
45.35383387848683
],
[
10.687359648502515,
45.34223410344458
],
[
10.69925425449649,
45.33991414843614
],
[
10.704012096894079,
45.34107412594036
],
[
10.711148860490464,
45.33527423841923
],
[
10.715906702888054,
45.33411426091501
],
[
10.713527781689258,
45.32367446337699
],
[
10.71709616348745,
45.31671459835164
],
[
10.72661184828263,
45.31903455336008
],
[
10.733748611879015,
45.303954845805166
],
[
10.728990769481426,
45.296994980779814
],
[
10.737316993677208,
45.28771516074602
],
[
10.783705957053709,
45.31555462084741
],
[
10.807495169041658,
45.29931493578826
],
[
10.817010853836837,
45.295835003275585
],
[
10.822958156833824,
45.285395205737565
],
[
10.83009492043021,
45.285395205737565
],
[
10.833663302228402,
45.27611538570377
],
[
10.840800065824785,
45.273795430695316
],
[
10.839610605225388,
45.267995543174194
],
[
10.846747368821774,
45.256395768131945
],
[
10.855073593017554,
45.25755574563617
],
[
10.856263053616953,
45.25523579062772
],
[
10.880052265604903,
45.25291583561927
],
[
10.889567950400082,
45.249435903106594
],
[
10.899083635195261,
45.24827592560237
],
[
10.902652016993454,
45.24247603808124
],
[
10.901462556394055,
45.237836128064345
],
[
10.937146374375978,
45.233196218047446
],
[
10.931199071378991,
45.226236353022095
],
[
10.945472598571762,
45.21115664546717
],
[
10.947851519770555,
45.20651673545028
],
[
10.965693428761517,
45.20651673545028
],
[
10.970451271159106,
45.20535675794605
],
[
10.985914258951274,
45.19955687042493
],
[
10.993051022547657,
45.1937569829038
],
[
10.998998325544646,
45.185637140374226
],
[
10.991861561948262,
45.18215720786155
],
[
10.998998325544646,
45.15895765777706
],
[
10.994240483147056,
45.150837815247485
],
[
11.001377246743441,
45.150837815247485
],
[
11.007324549740428,
45.15315777025593
],
[
11.01089293153862,
45.14851786023903
],
[
11.022787537532594,
45.157797680272836
],
[
11.029924301128979,
45.15895765777706
],
[
11.032303222327773,
45.149677837743255
],
[
11.047766210119942,
45.15315777025593
],
[
11.051334591918133,
45.149677837743255
],
[
11.04300836772235,
45.14503792772636
],
[
11.040629446523557,
45.13343815268411
],
[
11.028734840529582,
45.127638265162986
],
[
11.033492682927172,
45.11835844512919
],
[
11.051334591918133,
45.11023860259961
],
[
11.07631326450548,
45.098638827557366
],
[
11.085828949300659,
45.09979880506159
],
[
11.096534094695237,
45.09631887254891
],
[
11.094155173496441,
45.10211876007004
],
[
11.095344634095838,
45.10675867008694
],
[
11.101291937092826,
45.113718535112284
],
[
11.106049779490416,
45.10791864759116
],
[
11.115565464285595,
45.10443871507849
],
[
11.12746007027957,
45.103278737574264
],
[
11.13221791267716,
45.10559869258272
],
[
11.139354676273545,
45.120678400137635
],
[
11.138165215674146,
45.12415833265031
],
[
11.147680900469325,
45.12647828765876
],
[
11.153628203466313,
45.12415833265031
],
[
11.159575506463302,
45.11835844512919
],
[
11.175038494255467,
45.11603849012074
],
[
11.192880403246429,
45.11023860259961
],
[
11.203585548641005,
45.11255855760806
],
[
11.20239608804161,
45.10791864759116
],
[
11.177417415454261,
45.097478850053136
],
[
11.184554179050647,
45.08819903001934
],
[
11.18812256084884,
45.08239914249822
],
[
11.18336471845125,
45.08123916499399
],
[
11.173849033656069,
45.07311932246442
],
[
11.175038494255467,
45.05919959241372
],
[
11.17860687605366,
45.061519547422165
],
[
11.217859075833776,
45.05455968239682
],
[
11.232132603026544,
45.04643983986725
],
[
11.240458827222326,
45.04295990735457
],
[
11.249974512017506,
45.04527986236302
],
[
11.257111275613891,
45.05455968239682
],
[
11.26662696040907,
45.056879637405274
],
[
11.271384802806661,
45.04527986236302
],
[
11.263058578610877,
45.033680087320775
],
[
11.269005881607866,
45.0302001548081
],
[
11.273763724005455,
45.02440026728698
],
[
11.289226711797621,
45.0162804247574
],
[
11.29041617239702,
45.015120447253175
],
[
11.305879160189185,
45.01396046974895
],
[
11.31420538438497,
45.010480537236276
],
[
11.31777376618316,
45.004680649715155
],
[
11.341562978171108,
44.98844096465601
],
[
11.35464704476448,
44.986121009647555
],
[
11.374867874954237,
44.97800116711798
],
[
11.396278165743393,
44.97220127959686
],
[
11.396278165743393,
44.97104130209263
],
[
11.422446298930137,
44.96408143706728
],
[
11.428393601927123,
44.95364163952926
],
[
11.427204141327724,
44.95016170701658
],
[
11.427204141327724,
44.952481662025036
],
[
11.415309535333751,
44.951321684520806
],
[
11.40222546874038,
44.94784175200813
],
[
11.40103600814098,
44.95364163952926
],
[
11.397467626342788,
44.95596159453771
],
[
11.384383559749416,
44.95596159453771
],
[
11.37367841435484,
44.95828154954616
],
[
11.357025965963278,
44.95016170701658
],
[
11.3463208205687,
44.95596159453771
],
[
11.339184056972314,
44.95596159453771
],
[
11.327289450978341,
44.962921459563056
],
[
11.31420538438497,
44.95828154954616
],
[
11.302310778390993,
44.962921459563056
],
[
11.303500238990392,
44.95828154954616
],
[
11.2987423965928,
44.95944152705038
],
[
11.284468869400033,
44.957121572041935
],
[
11.272574263406057,
44.938561931974334
],
[
11.271384802806661,
44.94204186448701
],
[
11.247595590818712,
44.952481662025036
],
[
11.241648287821725,
44.945521796999685
],
[
11.208343391038596,
44.94320184199123
],
[
11.190501482047633,
44.938561931974334
],
[
11.170280651857878,
44.938561931974334
],
[
11.159575506463302,
44.939721909478564
],
[
11.15005982166812,
44.933922021957436
],
[
11.141733597472339,
44.94320184199123
],
[
11.13102845207776,
44.944361819495455
],
[
11.123891688481377,
44.952481662025036
],
[
11.109618161288608,
44.957121572041935
],
[
11.092965712897044,
44.95828154954616
],
[
11.088207870499453,
44.9606015045546
],
[
11.078692185704273,
44.9606015045546
],
[
11.07512380390608,
44.962921459563056
],
[
11.070365961508493,
44.9606015045546
],
[
11.060850276713314,
44.95016170701658
],
[
11.048955670719337,
44.95016170701658
],
[
11.047766210119942,
44.952481662025036
],
[
11.041818907122954,
44.951321684520806
],
[
11.014461313336813,
44.952481662025036
],
[
11.008514010339825,
44.95480161703348
],
[
10.994240483147056,
44.95480161703348
],
[
10.968072349960313,
44.93508199946166
],
[
10.951419901568748,
44.933922021957436
],
[
10.952609362168145,
44.92812213443631
],
[
10.941904216773569,
44.92464220192364
],
[
10.941904216773569,
44.922322246915186
],
[
10.919304465385018,
44.92464220192364
],
[
10.890757410999477,
44.91304242688139
],
[
10.889567950400082,
44.91768233689829
],
[
10.897894174595862,
44.922322246915186
],
[
10.88481010800249,
44.92000229190674
],
[
10.87648388380671,
44.91768233689829
],
[
10.875294423207311,
44.922322246915186
],
[
10.869347120210325,
44.921162269410964
],
[
10.865778738412132,
44.93044208944476
],
[
10.861020896014542,
44.92812213443631
],
[
10.85745251421635,
44.92928211194054
],
[
10.84793682942117,
44.92580217942786
],
[
10.840800065824785,
44.93044208944476
],
[
10.839610605225388,
44.93508199946166
],
[
10.834852762827797,
44.93624197696589
],
[
10.826526538632017,
44.93276204445321
],
[
10.818200314436234,
44.93740195447011
],
[
10.81106355083985,
44.938561931974334
],
[
10.805116247842863,
44.93508199946166
],
[
10.80154786604467,
44.94320184199123
],
[
10.793221641848888,
44.939721909478564
],
[
10.783705957053709,
44.94088188698279
],
[
10.748022139071786,
44.94784175200813
],
[
10.744453757273593,
44.94900172951236
],
[
10.743264296674194,
44.95480161703348
],
[
10.748022139071786,
44.96176148205883
],
[
10.742074836074798,
44.981481099630656
],
[
10.738506454276607,
44.98728098715178
],
[
10.725422387683235,
44.991920897168676
],
[
10.713527781689258,
44.98728098715178
],
[
10.712338321089861,
44.974521234605305
],
[
10.702822636294682,
44.96524141457151
],
[
10.693306951499503,
44.96176148205883
],
[
10.688549109101913,
44.96524141457151
],
[
10.6944964120989,
44.96988132458841
],
[
10.696875333297694,
44.974521234605305
],
[
10.687359648502515,
44.98728098715178
],
[
10.681412345505528,
44.97800116711798
],
[
10.663570436514567,
44.968721347084184
],
[
10.658812594116977,
44.962921459563056
],
[
10.651675830520592,
44.94900172951236
],
[
10.644539066924207,
44.944361819495455
],
[
10.631455000330835,
44.93160206694898
],
[
10.629076079132041,
44.92464220192364
],
[
10.621939315535656,
44.92580217942786
],
[
10.600529024746502,
44.915362381889835
],
[
10.571981970360962,
44.90840251686449
],
[
10.55057167957181,
44.91072247187294
],
[
10.520835164586874,
44.91304242688139
],
[
10.506561637394103,
44.922322246915186
],
[
10.491098649601938,
44.92812213443631
],
[
10.483961886005552,
44.92928211194054
],
[
10.464930516415194,
44.93740195447011
],
[
10.442330765026643,
44.94088188698279
],
[
10.434004540830859,
44.944361819495455
],
[
10.420920474237487,
44.968721347084184
],
[
10.412594250041707,
44.98264107713488
],
[
10.406646947044718,
44.98496103214333
],
[
10.386426116854961,
44.981481099630656
],
[
10.379289353258578,
44.97684118961375
],
[
10.376910432059782,
44.97336125710108
],
[
10.366205286665206,
44.96640139207573
],
[
10.355500141270628,
44.96640139207573
],
[
10.347173917074846,
44.96988132458841
],
[
10.324574165686295,
44.9838010546391
],
[
10.309111177894128,
44.98728098715178
],
[
10.310300638493526,
44.99424085217713
],
[
10.304353335496538,
45.00004073969825
],
[
10.293648190101962,
45.00120071720248
],
[
10.274616820511602,
44.997720784689804
],
[
10.265101135716423,
45.004680649715155
],
[
10.26153275391823,
45.01396046974895
],
[
10.257964372120039,
45.01744040226163
],
[
10.223470014737511,
45.03136013231232
],
[
10.215143790541731,
45.033680087320775
],
[
10.209196487544743,
45.033680087320775
],
[
10.197301881550768,
45.0302001548081
],
[
10.193733499752575,
45.02788019979965
],
[
10.184217814957396,
45.02904017730387
],
[
10.175891590761614,
45.032520109816545
],
[
10.17351266956282,
45.040639952346126
],
[
10.16875482716523,
45.044119884858794
],
[
10.156860221171256,
45.044119884858794
],
[
10.147344536376076,
45.034840064825
],
[
10.136639390981498,
45.032520109816545
],
[
10.133071009183308,
45.0302001548081
],
[
10.111660718394152,
45.02440026728698
],
[
10.095008270002587,
45.02324028978275
],
[
10.084303124608011,
45.033680087320775
],
[
10.083113664008614,
45.04759981737147
],
[
10.074787439812832,
45.04527986236302
],
[
10.060513912620063,
45.04295990735457
],
[
10.050998227824882,
45.044119884858794
],
[
10.053377149023678,
45.051079749884146
],
[
10.043861464228499,
45.06383950243062
],
[
10.03434577943332,
45.06499947993484
],
[
10.023640634038742,
45.07311932246442
],
[
10.021261712839946,
45.07775923248131
],
[
10.028398476436331,
45.084719097506664
],
[
10.030777397635127,
45.09283894003624
],
[
10.028398476436331,
45.097478850053136
],
[
10.01531440984296,
45.10559869258272
],
[
9.995093579653203,
45.12879824266721
],
[
9.984388434258626,
45.13459813018834
],
[
9.968925446466459,
45.12995822017143
],
[
9.952272998074895,
45.11719846762496
],
[
9.936810010282729,
45.10443871507849
],
[
9.916589180092972,
45.09979880506159
],
[
9.914210258894176,
45.109078625095385
],
[
9.92253648308996,
45.114878512616514
],
[
9.927294325487548,
45.132278175179884
],
[
9.917778640692369,
45.139238040205235
],
[
9.90826295589719,
45.13575810769256
],
[
9.880905362111049,
45.127638265162986
],
[
9.87614751971346,
45.12299835514609
],
[
9.883284283309843,
45.109078625095385
],
[
9.895178889303818,
45.10211876007004
],
[
9.901126192300804,
45.085879075010894
],
[
9.895178889303818,
45.07891920998554
],
[
9.886852665108036,
45.07543927747287
],
[
9.87495805911406,
45.07891920998554
],
[
9.870200216716471,
45.08819903001934
],
[
9.859495071321895,
45.09515889504469
],
[
9.84284262293033,
45.097478850053136
],
[
9.832137477535753,
45.09051898502779
],
[
9.832137477535753,
45.07891920998554
],
[
9.835705859333945,
45.06731943494329
],
[
9.827379635138163,
45.0533997048926
],
[
9.816674489743587,
45.05455968239682
],
[
9.816674489743587,
45.07543927747287
],
[
9.808348265547805,
45.08123916499399
],
[
9.79169581715624,
45.08239914249822
],
[
9.788127435358048,
45.085879075010894
],
[
9.777422289963472,
45.091678962532015
],
[
9.77266444756588,
45.10095878256581
],
[
9.763148762770701,
45.11139858010384
],
[
9.756011999174317,
45.113718535112284
],
[
9.74530685377974,
45.11255855760806
],
[
9.747685774978535,
45.09631887254891
],
[
9.753633077975522,
45.08819903001934
],
[
9.751254156776728,
45.07891920998554
],
[
9.747685774978535,
45.07543927747287
],
[
9.739359550782753,
45.074279299968644
],
[
9.733412247785765,
45.069639389951746
],
[
9.729843865987572,
45.062679524926395
],
[
9.715570338794803,
45.0580396149095
],
[
9.702486272201432,
45.06499947993484
],
[
9.690591666207457,
45.06731943494329
],
[
9.683454902611073,
45.07079936745597
],
[
9.676318139014688,
45.07891920998554
],
[
9.663234072421316,
45.08239914249822
],
[
9.640634321032765,
45.08123916499399
],
[
9.635876478635176,
45.08355912000244
],
[
9.632308096836983,
45.09283894003624
],
[
9.63825539983397,
45.10211876007004
],
[
9.641823781632162,
45.11719846762496
],
[
9.637065939234573,
45.127638265162986
],
[
9.62873971503879,
45.13343815268411
],
[
9.620413490843008,
45.13459813018834
],
[
9.613276727246625,
45.11255855760806
],
[
9.59662427885506,
45.10211876007004
],
[
9.58710859405988,
45.10095878256581
],
[
9.585919133460482,
45.10559869258272
],
[
9.5775929092647,
45.10211876007004
],
[
9.569266685068918,
45.10675867008694
],
[
9.565698303270725,
45.11603849012074
],
[
9.559751000273739,
45.12531831015453
],
[
9.553803697276752,
45.13111819767566
],
[
9.54904585487916,
45.13343815268411
],
[
9.543098551882174,
45.132278175179884
],
[
9.537151248885188,
45.12647828765876
],
[
9.537151248885188,
45.11603849012074
],
[
9.551424776077956,
45.09515889504469
],
[
9.54547747308097,
45.084719097506664
],
[
9.527635564090009,
45.07891920998554
],
[
9.522877721692417,
45.085879075010894
],
[
9.508604194499648,
45.10095878256581
],
[
9.501467430903265,
45.10443871507849
],
[
9.491951746108084,
45.103278737574264
],
[
9.471730915918329,
45.09631887254891
],
[
9.47054145531893,
45.09515889504469
],
[
9.4384260191352,
45.08703905251512
],
[
9.437236558535801,
45.08239914249822
],
[
9.425341952541828,
45.084719097506664
],
[
9.411068425349058,
45.08355912000244
],
[
9.415826267746649,
45.07659925497709
],
[
9.40987896474966,
45.07311932246442
],
[
9.401552740553878,
45.074279299968644
],
[
9.400363279954481,
45.069639389951746
],
[
9.390847595159302,
45.06615945743907
],
[
9.386089752761713,
45.05919959241372
],
[
9.371816225568942,
45.04875979487569
],
[
9.376574067966532,
45.04527986236302
],
[
9.374195146767738,
45.040639952346126
],
[
9.370626764969545,
45.02440026728698
],
[
9.37300568616834,
45.0209203347743
],
[
9.369437304370148,
45.00816058222782
],
[
9.367058383171353,
45.003520672210925
],
[
9.362300540773763,
45.00004073969825
],
[
9.352784855978584,
45.00120071720248
],
[
9.345648092382199,
44.99540082968135
],
[
9.343269171183405,
44.986121009647555
],
[
9.33613240758702,
44.967561369579954
],
[
9.337321868186416,
44.96408143706728
],
[
9.327806183391237,
44.9606015045546
],
[
9.323048340993648,
44.945521796999685
],
[
9.313532656198468,
44.93624197696589
],
[
9.301638050204494,
44.93624197696589
],
[
9.292122365409314,
44.93276204445321
],
[
9.288553983611122,
44.93508199946166
],
[
9.284985601812929,
44.93160206694898
],
[
9.288553983611122,
44.926962156932085
],
[
9.295690747207505,
44.922322246915186
],
[
9.289743444210519,
44.91768233689829
],
[
9.293311826008711,
44.91304242688139
],
[
9.287364523011725,
44.91304242688139
],
[
9.286175062412326,
44.90376260684759
],
[
9.27903829881594,
44.89680274182224
],
[
9.281417220014736,
44.89680274182224
],
[
9.293311826008711,
44.89100285430112
],
[
9.289743444210519,
44.88288301177154
],
[
9.30282751080389,
44.879403079258864
],
[
9.308774813800877,
44.875923146746196
],
[
9.321858880394249,
44.880563056763094
],
[
9.330185104590033,
44.8712832367293
],
[
9.342079710584006,
44.862003416695494
],
[
9.348027013580994,
44.84112382161945
],
[
9.355163777177378,
44.8341639565941
],
[
9.35873215897557,
44.8248841365603
],
[
9.36349000137316,
44.821404204047624
],
[
9.357542698376173,
44.81444433902227
],
[
9.342079710584006,
44.80516451898848
],
[
9.332564025788827,
44.80284456398003
],
[
9.320669419794852,
44.7970446764589
],
[
9.318290498596058,
44.78544490141665
],
[
9.30282751080389,
44.77964501389553
],
[
9.301638050204494,
44.77732505888708
],
[
9.290932904809917,
44.775005103878634
],
[
9.287364523011725,
44.77268514887018
],
[
9.284985601812929,
44.76688526134906
],
[
9.286175062412326,
44.75992539632371
],
[
9.294501286608108,
44.75412550880259
],
[
9.30758535320148,
44.74948559878568
],
[
9.324237801593044,
44.74368571126456
],
[
9.328995643990634,
44.73672584623921
],
[
9.332564025788827,
44.73556586873499
],
[
9.33137456518943,
44.73092595871809
],
[
9.325427262192441,
44.722806116188515
],
[
9.314722116797865,
44.71932618367584
],
[
9.313532656198468,
44.70888638613781
],
[
9.308774813800877,
44.704246476120915
],
[
9.313532656198468,
44.70192652111247
],
[
9.318290498596058,
44.69496665608712
],
[
9.325427262192441,
44.69032674607022
],
[
9.30401697140329,
44.689166768566
],
[
9.288553983611122,
44.681046926036416
],
[
9.283796141213532,
44.681046926036416
],
[
9.286175062412326,
44.68568683605332
],
[
9.268333153421365,
44.68452685854909
],
[
9.261196389824981,
44.67988694853219
],
[
9.257628008026789,
44.681046926036416
],
[
9.255249086827993,
44.686846813557544
],
[
9.254059626228596,
44.697286611095564
],
[
9.24811232323161,
44.70076654360824
],
[
9.240975559635224,
44.71236631865049
],
[
9.237407177837031,
44.71352629615471
],
[
9.233838796038839,
44.71004636364204
],
[
9.232649335439442,
44.70192652111247
],
[
9.243354480834018,
44.686846813557544
],
[
9.217186347647274,
44.68336688104487
],
[
9.201723359855109,
44.686846813557544
],
[
9.20053389925571,
44.686846813557544
],
[
9.204102281053903,
44.69148672357444
],
[
9.208860123451492,
44.705406453625145
],
[
9.202912820454506,
44.71700622866739
],
[
9.205291741653301,
44.71932618367584
],
[
9.202912820454506,
44.722806116188515
],
[
9.21004958405089,
44.72976598121386
],
[
9.211239044650288,
44.73904580124766
],
[
9.21480742644848,
44.74368571126456
],
[
9.207670662852095,
44.75528548630681
],
[
9.189828753861134,
44.758765418819486
],
[
9.186260372062941,
44.763405328836384
],
[
9.179123608466556,
44.76572528384483
],
[
9.171986844870172,
44.77152517136596
],
[
9.170797384270774,
44.77964501389553
],
[
9.175555226668365,
44.78312494640821
],
[
9.17317630546957,
44.78660487892088
],
[
9.175555226668365,
44.79124478893778
],
[
9.17317630546957,
44.792404766442004
],
[
9.174365766068966,
44.798204653963126
],
[
9.167229002472581,
44.799364631467355
],
[
9.164850081273787,
44.80284456398003
],
[
9.155334396478608,
44.809804429005375
],
[
9.156523857078005,
44.8156043165265
],
[
9.147008172282826,
44.80864445150115
],
[
9.14462925108403,
44.809804429005375
],
[
9.126787342093069,
44.80632449649271
],
[
9.10775597250271,
44.80748447399693
],
[
9.106566511903313,
44.81328436151805
],
[
9.093482445309942,
44.81908424903918
],
[
9.081587839315967,
44.81444433902227
],
[
9.073261615120185,
44.816764294030726
],
[
9.075640536318978,
44.821404204047624
],
[
9.072072154520786,
44.83068402408142
],
[
9.064935390924402,
44.8341639565941
],
[
9.050661863731634,
44.84692370914057
],
[
9.049472403132235,
44.850403641653244
],
[
9.060177548526813,
44.85852348418282
],
[
9.067314312123196,
44.85968346168705
],
[
9.070882693921389,
44.86432337170395
],
[
9.062556469725607,
44.87012325922507
],
[
9.05660916672862,
44.88868289929267
],
[
9.041146178936453,
44.88520296677999
],
[
9.039956718337056,
44.88868289929267
],
[
9.030441033541877,
44.88868289929267
],
[
9.022114809346094,
44.89912269683069
],
[
9.006651821553927,
44.90376260684759
],
[
9.00070451855694,
44.909562494368714
],
[
9.003083439755734,
44.91072247187294
],
[
8.998325597358145,
44.91420240438561
],
[
9.001893979156337,
44.915362381889835
],
[
8.99594667615935,
44.91884231440251
],
[
8.989999373162362,
44.92580217942786
],
[
8.992378294361158,
44.93160206694898
],
[
8.982862609565979,
44.93160206694898
],
[
8.97810476716839,
44.94088188698279
],
[
8.969778542972607,
44.944361819495455
],
[
8.973346924770798,
44.95480161703348
],
[
8.980483688367183,
44.952481662025036
],
[
8.981673148966582,
44.95596159453771
],
[
8.97691530656899,
44.95944152705038
],
[
8.97810476716839,
44.96524141457151
],
[
8.974536385370197,
44.97336125710108
],
[
8.965020700575018,
44.980321122126426
],
[
8.960262858177426,
44.98844096465601
],
[
8.948368252183453,
44.98844096465601
],
[
8.925768500794902,
44.98264107713488
],
[
8.917442276599118,
44.98728098715178
],
[
8.915063355400324,
44.99076091966445
],
[
8.907926591803939,
45.003520672210925
],
[
8.90316874940635,
45.004680649715155
],
[
8.901979288806952,
45.00816058222782
],
[
8.904358210005746,
45.01976035727007
],
[
8.904358210005746,
45.032520109816545
],
[
8.900789828207554,
45.039479974841896
],
[
8.894842525210567,
45.040639952346126
],
[
8.900789828207554,
45.044119884858794
],
[
8.89841090700876,
45.051079749884146
],
[
8.887705761614182,
45.04991977237992
],
[
8.881758458617195,
45.05455968239682
],
[
8.88889522221358,
45.0580396149095
],
[
8.886516301014785,
45.061519547422165
],
[
8.880568998017798,
45.06035956991794
],
[
8.872242773822016,
45.05223972738837
],
[
8.86629547082503,
45.05223972738837
],
[
8.863916549626234,
45.051079749884146
],
[
8.853211404231658,
45.04759981737147
],
[
8.84726410123467,
45.051079749884146
],
[
8.841316798237683,
45.04991977237992
],
[
8.84250625883708,
45.04295990735457
],
[
8.835369495240695,
45.04643983986725
],
[
8.829422192243708,
45.040639952346126
],
[
8.823474889246722,
45.04759981737147
],
[
8.819906507448529,
45.04527986236302
],
[
8.823474889246722,
45.03716001983345
],
[
8.812769743852144,
45.03831999733767
],
[
8.809201362053951,
45.03600004232922
],
[
8.81395920445154,
45.0302001548081
],
[
8.805632980255758,
45.03600004232922
],
[
8.794927834861182,
45.034840064825
],
[
8.803254059056965,
45.02788019979965
],
[
8.79611729546058,
45.01976035727007
],
[
8.7866016106654,
45.02324028978275
],
[
8.778275386469618,
45.02440026728698
],
[
8.775896465270822,
45.022080312278526
],
[
8.779464847069015,
45.015120447253175
],
[
8.775896465270822,
45.00816058222782
],
[
8.767570241075042,
45.0070006047236
],
[
8.765191319876246,
45.01396046974895
],
[
8.760433477478657,
45.010480537236276
],
[
8.748538871484682,
45.00932055973205
],
[
8.75448617448167,
45.015120447253175
],
[
8.752107253282874,
45.01976035727007
],
[
8.743781029087092,
45.02440026728698
],
[
8.728318041294926,
45.022080312278526
],
[
8.719991817099142,
45.02788019979965
],
[
8.714044514102156,
45.03831999733767
],
[
8.700960447508784,
45.032520109816545
],
[
8.703339368707578,
45.026720222295424
],
[
8.696202605111194,
45.0255602447912
],
[
8.692634223313002,
45.01976035727007
],
[
8.692634223313002,
45.02440026728698
],
[
8.683118538517823,
45.02904017730387
],
[
8.666466090126258,
45.02788019979965
],
[
8.666466090126258,
45.0209203347743
],
[
8.658139865930476,
45.01860037976585
],
[
8.65219256293349,
45.02440026728698
],
[
8.656950405331079,
45.0302001548081
],
[
8.640297956939515,
45.03600004232922
],
[
8.635540114541925,
45.040639952346126
],
[
8.641487417538912,
45.04527986236302
],
[
8.639108496340118,
45.051079749884146
],
[
8.647434720535898,
45.056879637405274
],
[
8.643866338737707,
45.062679524926395
],
[
8.637919035740719,
45.06731943494329
],
[
8.646245259936501,
45.07543927747287
],
[
8.640297956939515,
45.07659925497709
],
[
8.636729575141322,
45.08239914249822
],
[
8.635540114541925,
45.08935900752357
],
[
8.62840335094554,
45.08819903001934
],
[
8.622456047948553,
45.09051898502779
],
[
8.624834969147347,
45.097478850053136
],
[
8.621266587349155,
45.098638827557366
],
[
8.609371981355181,
45.11139858010384
],
[
8.612940363153374,
45.113718535112284
],
[
8.609371981355181,
45.121838377641865
],
[
8.615319284352168,
45.12531831015453
],
[
8.614129823752771,
45.127638265162986
],
[
8.603424678358193,
45.12879824266721
],
[
8.599856296560002,
45.132278175179884
],
[
8.592719532963617,
45.13111819767566
],
[
8.589151151165424,
45.13575810769256
],
[
8.58677222996663,
45.14735788273481
],
[
8.580824926969642,
45.15315777025593
],
[
8.573688163373257,
45.15199779275171
],
[
8.565361939177475,
45.15547772526438
],
[
8.560604096779885,
45.15895765777706
],
[
8.553467333183502,
45.157797680272836
],
[
8.552277872584103,
45.16707750030663
],
[
8.543951648388322,
45.172877387827754
],
[
8.543951648388322,
45.18215720786155
],
[
8.552277872584103,
45.185637140374226
],
[
8.553467333183502,
45.191437027895354
],
[
8.566551399776873,
45.19955687042493
],
[
8.573688163373257,
45.1983968929207
],
[
8.579635466370245,
45.2030368029376
],
[
8.578446005770846,
45.2076767129545
],
[
8.551088411984706,
45.201876825433374
],
[
8.552277872584103,
45.197236915416475
],
[
8.547520030186513,
45.19491696040802
],
[
8.529678121195552,
45.1937569829038
],
[
8.524920278797962,
45.1983968929207
],
[
8.52610973939736,
45.201876825433374
],
[
8.532057042394348,
45.19955687042493
],
[
8.548709490785912,
45.20535675794605
],
[
8.541572727189527,
45.2123166229714
],
[
8.529678121195552,
45.2169565329883
],
[
8.523730818198565,
45.2215964430052
],
[
8.527299199996758,
45.22971628553477
],
[
8.541572727189527,
45.230876263038994
],
[
8.543951648388322,
45.233196218047446
],
[
8.529678121195552,
45.237836128064345
],
[
8.54514110898772,
45.2401560830728
],
[
8.548709490785912,
45.237836128064345
],
[
8.557035714981694,
45.2401560830728
],
[
8.555846254382296,
45.243636015585466
],
[
8.549898951385309,
45.24247603808124
],
[
8.532057042394348,
45.244795993089696
],
[
8.523730818198565,
45.24827592560237
],
[
8.522541357599167,
45.25407581312349
],
[
8.532057042394348,
45.25407581312349
],
[
8.536814884791937,
45.24827592560237
],
[
8.543951648388322,
45.25523579062772
],
[
8.534435963593141,
45.25987570064462
],
[
8.53562542419254,
45.26451561066152
],
[
8.53086758179495,
45.267995543174194
],
[
8.536814884791937,
45.27495540819954
],
[
8.522541357599167,
45.27959531821644
],
[
8.52135189699977,
45.273795430695316
],
[
8.514215133403386,
45.27495540819954
],
[
8.513025672803987,
45.28075529572067
],
[
8.517783515201577,
45.29119509325869
],
[
8.498752145611219,
45.29351504826714
],
[
8.499941606210616,
45.296994980779814
],
[
8.505888909207604,
45.30163489079671
],
[
8.508267830406398,
45.308594755822064
],
[
8.513025672803987,
45.31323466583896
],
[
8.522541357599167,
45.31207468833473
],
[
8.527299199996758,
45.314394643343185
],
[
8.532057042394348,
45.32019453086431
],
[
8.538004345391334,
45.31787457585586
],
[
8.536814884791937,
45.32715439588966
],
[
8.533246502993745,
45.33643421592346
],
[
8.527299199996758,
45.33643421592346
],
[
8.527299199996758,
45.34455405845303
],
[
8.539193805990731,
45.34571403595726
],
[
8.551088411984706,
45.35267390098261
],
[
8.554656793782899,
45.361953721016405
],
[
8.558225175581091,
45.35383387848683
],
[
8.568930320975667,
45.34919396846993
],
[
8.580824926969642,
45.3480339909657
],
[
8.583203848168438,
45.35151392347838
],
[
8.593908993563014,
45.35151392347838
],
[
8.592719532963617,
45.3480339909657
],
[
8.598666835960604,
45.34919396846993
],
[
8.603424678358193,
45.35267390098261
],
[
8.610561441954578,
45.35267390098261
],
[
8.622456047948553,
45.35731381099951
],
[
8.62364550854795,
45.35267390098261
],
[
8.629592811544939,
45.35151392347838
],
[
8.631971732743732,
45.337594193427684
],
[
8.646245259936501,
45.32947435089811
],
[
8.656950405331079,
45.32367446337699
],
[
8.655760944731682,
45.31903455336008
],
[
8.664087168927463,
45.30975473332629
],
[
8.660518787129272,
45.308594755822064
],
[
8.664087168927463,
45.302794868300936
],
[
8.67479231432204,
45.292355070762916
],
[
8.690255302114206,
45.29467502577136
],
[
8.691444762713605,
45.292355070762916
],
[
8.716423435300952,
45.302794868300936
],
[
8.724749659496734,
45.31903455336008
],
[
8.723560198897335,
45.32251448587276
],
[
8.727128580695528,
45.332954283410785
],
[
8.724749659496734,
45.33643421592346
],
[
8.7402126472889,
45.332954283410785
],
[
8.743781029087092,
45.33527423841923
],
[
8.742591568487695,
45.33875417093191
],
[
8.76281239867745,
45.3480339909657
],
[
8.750917792683477,
45.35731381099951
],
[
8.747349410885285,
45.354993855991054
],
[
8.743781029087092,
45.35847378850373
],
[
8.728318041294926,
45.37007356354598
],
[
8.719991817099142,
45.37239351855443
],
[
8.718802356499745,
45.37819340607555
],
[
8.723560198897335,
45.380513361084
],
[
8.7402126472889,
45.3758734510671
],
[
8.748538871484682,
45.37471347356288
],
[
8.75805455627986,
45.379353383579776
],
[
8.76400185927685,
45.37819340607555
],
[
8.761622938078053,
45.38283331609245
],
[
8.765191319876246,
45.383993293596674
],
[
8.767570241075042,
45.38863320361358
],
[
8.777085925870221,
45.383993293596674
],
[
8.798496216659375,
45.379353383579776
],
[
8.811580283252747,
45.38283331609245
],
[
8.81514866505094,
45.390953158622025
],
[
8.827043271044914,
45.39211313612625
],
[
8.831801113442502,
45.390953158622025
],
[
8.843695719436477,
45.3944330911347
],
[
8.838937877038887,
45.40487288867273
],
[
8.824664349846119,
45.425752483748774
],
[
8.821095968047926,
45.42807243875722
],
[
8.827043271044914,
45.43271234877412
],
[
8.823474889246722,
45.43619228128679
],
[
8.809201362053951,
45.43271234877412
],
[
8.808011901454554,
45.43619228128679
],
[
8.812769743852144,
45.43967221379947
],
[
8.811580283252747,
45.44547210132059
],
[
8.788980531864194,
45.46287176388397
],
[
8.79135945306299,
45.467511673900866
],
[
8.784222689466606,
45.48723129147269
],
[
8.773517544072028,
45.484911336464236
],
[
8.768759701674439,
45.48839126897691
],
[
8.760433477478657,
45.49767108901071
],
[
8.747349410885285,
45.49883106651494
],
[
8.741402107888298,
45.49767108901071
],
[
8.736644265490707,
45.501151021523384
],
[
8.728318041294926,
45.502310999027614
],
[
8.719991817099142,
45.515070751574086
],
[
8.714044514102156,
45.51855068408676
],
[
8.712855053502759,
45.52203061659944
],
[
8.719991817099142,
45.531310436633234
],
[
8.712855053502759,
45.538270301658585
],
[
8.70690775050577,
45.55103005420506
],
[
8.705718289906374,
45.57074967177688
],
[
8.693823683912399,
45.576549559298
],
[
8.699770986909387,
45.5858293793318
],
[
8.704528829306977,
45.58698935683603
],
[
8.705718289906374,
45.595109199365595
],
[
8.703339368707578,
45.60090908688672
],
[
8.693823683912399,
45.603229041895176
],
[
8.68906584151481,
45.6090289294163
],
[
8.686686920316015,
45.618308749450094
],
[
8.680739617319027,
45.62178868196277
],
[
8.666466090126258,
45.62062870445855
],
[
8.662897708328066,
45.62410863697122
],
[
8.666466090126258,
45.631068501996566
],
[
8.659329326529873,
45.64034832203037
],
[
8.67003447192445,
45.642668277038815
],
[
8.673602853722644,
45.636868389517694
],
[
8.683118538517823,
45.63338845700502
],
[
8.68906584151481,
45.636868389517694
],
[
8.685497459716618,
45.647308187055714
],
[
8.67003447192445,
45.661227917106416
],
[
8.671223932523848,
45.665867827123314
],
[
8.680739617319027,
45.66818778213177
],
[
8.681929077918426,
45.677467602165564
],
[
8.668845011325054,
45.67514764715711
],
[
8.641487417538912,
45.67630762466134
],
[
8.641487417538912,
45.68790739970359
],
[
8.647434720535898,
45.69370728722471
],
[
8.649813641734694,
45.70298710725851
],
[
8.655760944731682,
45.71110694978808
],
[
8.649813641734694,
45.719226792317656
],
[
8.643866338737707,
45.72386670233456
],
[
8.635540114541925,
45.72270672483033
],
[
8.602235217758796,
45.72618665734301
],
[
8.595098454162411,
45.72966658985568
],
[
8.584393308767835,
45.748226229923276
],
[
8.579635466370245,
45.75170616243595
],
[
8.570119781575066,
45.7633059374782
],
[
8.560604096779885,
45.77026580250355
],
[
8.554656793782899,
45.777225667528896
],
[
8.553467333183502,
45.78766546506692
],
[
8.554656793782899,
45.79810526260495
],
[
8.558225175581091,
45.80390515012607
],
[
8.564172478578078,
45.807385082638746
],
[
8.580824926969642,
45.81318497015987
],
[
8.587961690566027,
45.818984857680995
],
[
8.595098454162411,
45.829424655219015
],
[
8.595098454162411,
45.84566434027816
],
[
8.59153007236422,
45.854944160311966
],
[
8.583203848168438,
45.86886389036266
],
[
8.580824926969642,
45.87582375538801
],
[
8.574877623972656,
45.88278362041336
],
[
8.570119781575066,
45.894383395455606
],
[
8.573688163373257,
45.90366321548941
],
[
8.578446005770846,
45.90598317049786
],
[
8.587961690566027,
45.917582945540104
],
[
8.617698205550964,
45.93846254061616
],
[
8.654571484132283,
45.96630200071755
],
[
8.683118538517823,
45.9871815957936
],
[
8.709286671704566,
46.005741235861194
],
[
8.715233974701555,
46.00806119086965
],
[
8.727128580695528,
46.018500988407666
],
[
8.729507501894323,
46.024300875928795
],
[
8.721181277698541,
46.04054056098794
],
[
8.717612895900348,
46.05794022355131
],
[
8.716423435300952,
46.059100201055536
],
[
8.710476132303963,
46.07649986361891
],
[
8.705718289906374,
46.082299751140035
],
[
8.70809721110517,
46.09157957117383
],
[
8.715233974701555,
46.09853943619918
],
[
8.717612895900348,
46.100859391207635
],
[
8.723560198897335,
46.10897923373721
],
[
8.742591568487695,
46.122898963787904
],
[
8.749728332084079,
46.11361914375411
],
[
8.761622938078053,
46.10201936871186
],
[
8.772328083472631,
46.099699413703405
],
[
8.784222689466606,
46.093899526182284
],
[
8.800875137858169,
46.09505950368651
],
[
8.809201362053951,
46.100859391207635
],
[
8.81514866505094,
46.09853943619918
],
[
8.81871704684913,
46.093899526182284
],
[
8.8329905740419,
46.08345972864426
],
[
8.84250625883708,
46.08113977363581
],
[
8.844885180035874,
46.077659841123136
],
[
8.85202194363226,
46.07533988611468
],
[
8.855590325430452,
46.06142015606399
],
[
8.844885180035874,
46.048660403517516
],
[
8.835369495240695,
46.05214033603019
],
[
8.831801113442502,
46.04634044850906
],
[
8.835369495240695,
46.04402049350061
],
[
8.830611652843105,
46.041700538492165
],
[
8.827043271044914,
46.03126074095414
],
[
8.819906507448529,
46.02546085343302
],
[
8.812769743852144,
46.024300875928795
],
[
8.797306756059978,
46.012701100886545
],
[
8.79135945306299,
46.00342128085275
],
[
8.7866016106654,
45.989501550802046
],
[
8.792548913662387,
45.9918215058105
],
[
8.81395920445154,
45.990661528306276
],
[
8.831801113442502,
45.988341573297824
],
[
8.840127337638286,
45.98486164078515
],
[
8.843695719436477,
45.9779017757598
],
[
8.86629547082503,
45.965142023213325
],
[
8.867484931424427,
45.96166209070065
],
[
8.879379537418401,
45.95586220317953
],
[
8.894842525210567,
45.959342135692204
],
[
8.899600367608157,
45.9454224056415
],
[
8.892463604011773,
45.93382263059925
],
[
8.899600367608157,
45.924542810565455
],
[
8.915063355400324,
45.917582945540104
],
[
8.925768500794902,
45.900183282976734
],
[
8.92220011899671,
45.89670335046406
],
[
8.924579040195503,
45.89206344044716
],
[
8.931715803791889,
45.88742353043026
],
[
8.936473646189478,
45.86886389036266
],
[
8.943610409785862,
45.87002386786689
],
[
8.945989330984657,
45.866543935354215
],
[
8.935284185590081,
45.86306400284154
],
[
8.918631737198517,
45.84682431778239
],
[
8.913873894800926,
45.84102443026127
],
[
8.912684434201529,
45.830584632723244
],
[
8.923389579596106,
45.83522454274014
],
[
8.924579040195503,
45.83406456523592
],
[
8.934094724990683,
45.83986445275704
],
[
8.947178791584054,
45.84334438526972
],
[
8.962641779376222,
45.83986445275704
],
[
8.961452318776825,
45.836384520244366
],
[
8.974536385370197,
45.83290458773169
],
[
8.97810476716839,
45.837544497748596
],
[
8.984052070165376,
45.836384520244366
],
[
8.98643099136417,
45.83870447525282
],
[
8.993567754960555,
45.83406456523592
],
[
8.998325597358145,
45.83522454274014
],
[
8.99594667615935,
45.83174461022747
],
[
8.993567754960555,
45.82246479019367
],
[
8.999515057957542,
45.82362476769789
],
[
9.017356966948505,
45.81782488017677
],
[
9.026872651743684,
45.82246479019367
],
[
9.03400941534007,
45.82246479019367
],
[
9.03281995474067,
45.82826467771479
],
[
9.038767257737659,
45.83522454274014
],
[
9.036388336538863,
45.84102443026127
],
[
9.041146178936453,
45.84682431778239
],
[
9.045904021334042,
45.847984295286615
],
[
9.050661863731634,
45.854944160311966
],
[
9.049472403132235,
45.86422398034576
],
[
9.05660916672862,
45.87582375538801
],
[
9.070882693921389,
45.88162364290913
],
[
9.076829996918377,
45.883943597917586
],
[
9.086345681713556,
45.89670335046406
],
[
9.087535142312953,
45.90250323798519
],
[
9.076829996918377,
45.900183282976734
],
[
9.076829996918377,
45.91178305801898
],
[
9.058988087927414,
45.91642296803588
],
[
9.060177548526813,
45.92106287805278
],
[
9.050661863731634,
45.91990290054856
],
[
9.04233563953585,
45.92802274307813
],
[
9.029251572942478,
45.9268627655739
],
[
9.019735888147299,
45.93150267559081
],
[
9.022114809346094,
45.93846254061616
],
[
9.013788585150312,
45.9454224056415
],
[
9.017356966948505,
45.9500623156584
],
[
9.014978045749709,
45.960502113196426
],
[
9.003083439755734,
45.965142023213325
],
[
8.99594667615935,
45.96630200071755
],
[
8.988809912562965,
45.97094191073445
],
[
8.99594667615935,
45.972101888238676
],
[
9.007841282153326,
45.98022173076825
],
[
9.014978045749709,
45.988341573297824
],
[
9.023304269945491,
45.99298148331472
],
[
9.029251572942478,
45.994141460818945
],
[
9.024493730544888,
46.001101325844296
],
[
9.023304269945491,
46.01734101090344
],
[
9.012599124550913,
46.02546085343302
],
[
9.009030742752723,
46.02662083093724
],
[
9.009030742752723,
46.03706062847527
],
[
9.017356966948505,
46.04402049350061
],
[
9.017356966948505,
46.05098035852596
],
[
9.030441033541877,
46.053300313534415
],
[
9.03400941534007,
46.05678024604709
],
[
9.047093481933441,
46.06026017855976
],
[
9.048282942532838,
46.06258013356821
],
[
9.063745930325005,
46.06142015606399
],
[
9.076829996918377,
46.063740111072434
],
[
9.079208918117171,
46.06722004358511
],
[
9.079208918117171,
46.07649986361891
],
[
9.08396676051476,
46.07881981862736
],
[
9.089914063511749,
46.09041959366961
],
[
9.081587839315967,
46.10201936871186
],
[
9.078019457517774,
46.11013921124143
],
[
9.072072154520786,
46.11941903127523
],
[
9.082777299915364,
46.12173898628368
],
[
9.08872460291235,
46.12521891879636
],
[
9.100619208906325,
46.1275388738048
],
[
9.10299813010512,
46.13101880631748
],
[
9.119650578496685,
46.135658716334376
],
[
9.13630302688825,
46.15421835640198
],
[
9.14462925108403,
46.158858266418875
],
[
9.156523857078005,
46.16233819893155
],
[
9.1589027782768,
46.170458041461124
],
[
9.177934147867159,
46.17161801896535
],
[
9.182691990264749,
46.170458041461124
],
[
9.196965517457517,
46.187857704024495
],
[
9.194586596258723,
46.194817569049846
],
[
9.196965517457517,
46.19713752405829
],
[
9.20053389925571,
46.20757732159632
],
[
9.213617965849082,
46.211057254108994
],
[
9.21956526884607,
46.21569716412589
],
[
9.223133650644261,
46.223817006655466
],
[
9.220754729445467,
46.22961689417659
],
[
9.237407177837031,
46.23425680419349
],
[
9.238596638436428,
46.23309682668926
],
[
9.250491244430403,
46.241216669218836
],
[
9.249301783831006,
46.24933651174841
],
[
9.2516807050298,
46.25049648925264
],
[
9.249301783831006,
46.25513639926954
],
[
9.260006929225582,
46.27369603933714
],
[
9.260006929225582,
46.27833594935403
],
[
9.268333153421365,
46.281815881866706
],
[
9.27546991701775,
46.29225567940473
],
[
9.284985601812929,
46.30153549943853
],
[
9.281417220014736,
46.3096553419681
],
[
9.295690747207505,
46.31777518449768
],
[
9.300448589605097,
46.32705500453147
],
[
9.293311826008711,
46.33169491454838
],
[
9.292122365409314,
46.3374948020695
],
[
9.299259129005698,
46.345614644599074
],
[
9.295690747207505,
46.3560544421371
],
[
9.282606680614133,
46.358374397145546
],
[
9.277848838216544,
46.36765421717935
],
[
9.276659377617147,
46.374614082204694
],
[
9.284985601812929,
46.38505387974272
],
[
9.27903829881594,
46.388533812255396
],
[
9.276659377617147,
46.39665365478497
],
[
9.281417220014736,
46.400133587297645
],
[
9.281417220014736,
46.41289333984412
],
[
9.274280456418353,
46.41985320486947
],
[
9.269522614020762,
46.41869322736524
],
[
9.258817468626185,
46.42681306989481
],
[
9.24811232323161,
46.433772934920164
],
[
9.24692286263221,
46.44769266497086
],
[
9.261196389824981,
46.45001261997931
],
[
9.271901535219557,
46.45465252999621
],
[
9.277848838216544,
46.46161239502156
],
[
9.274280456418353,
46.46393235003001
],
[
9.276659377617147,
46.47205219255959
],
[
9.274280456418353,
46.48249199009761
],
[
9.283796141213532,
46.49757169765253
],
[
9.300448589605097,
46.49989165266098
],
[
9.330185104590033,
46.505691540182106
],
[
9.337321868186416,
46.50685151768633
],
[
9.342079710584006,
46.50453156267788
],
[
9.356353237776776,
46.505691540182106
],
[
9.362300540773763,
46.510331450199004
],
[
9.367058383171353,
46.505691540182106
],
[
9.37300568616834,
46.50453156267788
],
[
9.374195146767738,
46.49989165266098
],
[
9.369437304370148,
46.49757169765253
],
[
9.371816225568942,
46.48945185512296
],
[
9.378952989165327,
46.48365196760183
],
[
9.386089752761713,
46.48249199009761
],
[
9.395605437556892,
46.47089221505536
],
[
9.413447346547853,
46.46741228254268
],
[
9.425341952541828,
46.47785208008071
],
[
9.425341952541828,
46.48945185512296
],
[
9.434857637337007,
46.498731675156755
],
[
9.451510085728572,
46.49989165266098
],
[
9.453889006927366,
46.50685151768633
],
[
9.462215231123148,
46.50917147269478
],
[
9.46102577052375,
46.491771810131404
],
[
9.459836309924354,
46.48481194510606
],
[
9.462215231123148,
46.480172035089154
],
[
9.464594152321943,
46.469732237551135
],
[
9.459836309924354,
46.46509232753424
],
[
9.457457388725558,
46.45697248500466
],
[
9.459836309924354,
46.451172597483534
],
[
9.459836309924354,
46.44421273245818
],
[
9.453889006927366,
46.422173159877914
],
[
9.46102577052375,
46.41405331734834
],
[
9.464594152321943,
46.407093452323
],
[
9.466973073520737,
46.39201374476807
],
[
9.462215231123148,
46.37693403721315
],
[
9.48005714011411,
46.371134149692026
],
[
9.500277970303866,
46.360694352154
],
[
9.500277970303866,
46.3560544421371
],
[
9.508604194499648,
46.3514145321202
],
[
9.509793655099045,
46.34445466709485
],
[
9.514551497496637,
46.3328548920526
],
[
9.518119879294828,
46.33169491454838
],
[
9.5312039458882,
46.316615206993454
],
[
9.534772327686392,
46.311975296976556
],
[
9.544288012481571,
46.305015431951205
],
[
9.551424776077956,
46.30269547694276
],
[
9.558561539674342,
46.30733538695966
],
[
9.563319382071931,
46.30269547694276
],
[
9.584729672861085,
46.29457563441318
],
[
9.610897806047829,
46.29457563441318
],
[
9.621602951442405,
46.287615769387834
],
[
9.625171333240598,
46.28877574689206
],
[
9.640634321032765,
46.28645579188361
],
[
9.650150005827944,
46.28993572439629
],
[
9.651339466427341,
46.293415656908955
],
[
9.664423533020713,
46.298055566925854
],
[
9.669181375418304,
46.29689558942163
],
[
9.670370836017701,
46.300375521934306
],
[
9.676318139014688,
46.30385545444698
],
[
9.681075981412278,
46.298055566925854
],
[
9.690591666207457,
46.293415656908955
],
[
9.697728429803842,
46.29225567940473
],
[
9.715570338794803,
46.293415656908955
],
[
9.715570338794803,
46.30153549943853
],
[
9.725086023589984,
46.3096553419681
],
[
9.726275484189381,
46.32009513950613
],
[
9.719138720592996,
46.32125511701035
],
[
9.717949259993599,
46.32589502702725
],
[
9.723896562990586,
46.33169491454838
],
[
9.727464944788778,
46.3328548920526
],
[
9.723896562990586,
46.33981475707795
],
[
9.725086023589984,
46.34329468959062
],
[
9.74054901138215,
46.3514145321202
],
[
9.751254156776728,
46.3467746221033
],
[
9.757201459773714,
46.345614644599074
],
[
9.778611750562868,
46.335174847061054
],
[
9.784559053559855,
46.340974734582176
],
[
9.79169581715624,
46.34329468959062
],
[
9.802400962550816,
46.34445466709485
],
[
9.807158804948408,
46.34793459960753
],
[
9.81905341094238,
46.35025455461597
],
[
9.840463701731535,
46.363014307162445
],
[
9.846411004728523,
46.36185432965822
],
[
9.851168847126113,
46.3653342621709
],
[
9.86663183491828,
46.364174284666674
],
[
9.871389677315868,
46.363014307162445
],
[
9.879715901511652,
46.36765421717935
],
[
9.88447374390924,
46.37345410470047
],
[
9.89874727110201,
46.37693403721315
],
[
9.907073495297793,
46.381573947230045
],
[
9.916589180092972,
46.371134149692026
],
[
9.93086270728574,
46.36765421717935
],
[
9.93086270728574,
46.37345410470047
],
[
9.958220301071883,
46.37925399222159
],
[
9.955841379873087,
46.37345410470047
],
[
9.96416760406887,
46.364174284666674
],
[
9.980820052460434,
46.3560544421371
],
[
9.98676735545742,
46.3514145321202
],
[
9.995093579653203,
46.352574509624425
],
[
9.9962830402526,
46.3421347120864
],
[
9.992714658454409,
46.340974734582176
],
[
9.985577894858023,
46.335174847061054
],
[
9.980820052460434,
46.323575072018805
],
[
9.999851422050792,
46.314295251985
],
[
9.999851422050792,
46.3096553419681
],
[
9.9962830402526,
46.30733538695966
],
[
10.00104088265019,
46.30153549943853
],
[
9.992714658454409,
46.298055566925854
],
[
9.9962830402526,
46.28529581437938
],
[
10.031966858234524,
46.27717597184981
],
[
10.049808767225485,
46.26789615181601
],
[
10.055756070222472,
46.26209626429488
],
[
10.060513912620063,
46.25049648925264
],
[
10.058134991421268,
46.24469660173151
],
[
10.053377149023678,
46.242376646723066
],
[
10.054566609623075,
46.23657675920194
],
[
10.045050924827896,
46.22961689417659
],
[
10.053377149023678,
46.22729693916814
],
[
10.067650676216447,
46.218017119134345
],
[
10.081924203409216,
46.22497698415969
],
[
10.105713415397165,
46.228456916672364
],
[
10.119986942589934,
46.22613696166392
],
[
10.123555324388127,
46.223817006655466
],
[
10.128313166785716,
46.22613696166392
],
[
10.133071009183308,
46.22497698415969
],
[
10.14615507577668,
46.23077687168082
],
[
10.150912918174267,
46.240056691714614
],
[
10.158049681770652,
46.24353662422729
],
[
10.16875482716523,
46.25165646675686
],
[
10.175891590761614,
46.25513639926954
],
[
10.177081051361013,
46.25977630928644
],
[
10.167565366565832,
46.271376084328686
],
[
10.161618063568845,
46.27717597184981
],
[
10.162807524168242,
46.282975859370936
],
[
10.15448129997246,
46.28645579188361
],
[
10.156860221171256,
46.29109570190051
],
[
10.14496561517728,
46.29689558942163
],
[
10.139018312180294,
46.305015431951205
],
[
10.134260469782705,
46.306175409455435
],
[
10.121176403189331,
46.31313527448078
],
[
10.118797481990537,
46.31313527448078
],
[
10.114039639592947,
46.32241509451458
],
[
10.104523954797768,
46.334014869556825
],
[
10.106902875996562,
46.34329468959062
],
[
10.109281797195358,
46.345614644599074
],
[
10.10809233659596,
46.352574509624425
],
[
10.129502627385115,
46.360694352154
],
[
10.12712370618632,
46.37345410470047
],
[
10.128313166785716,
46.37809401471737
],
[
10.141397233379088,
46.38621385724694
],
[
10.160428602969448,
46.38621385724694
],
[
10.163996984767639,
46.39781363228919
],
[
10.162807524168242,
46.404773497314544
],
[
10.167565366565832,
46.40825342982722
],
[
10.156860221171256,
46.41637327235679
],
[
10.14972345757487,
46.41289333984412
],
[
10.148533996975473,
46.42101318237369
],
[
10.133071009183308,
46.429133024903265
],
[
10.130692087984512,
46.43261295741594
],
[
10.111660718394152,
46.42681306989481
],
[
10.10809233659596,
46.427973047399036
],
[
10.102145033598973,
46.42449311488637
],
[
10.081924203409216,
46.422173159877914
],
[
10.080734742809819,
46.42681306989481
],
[
10.075976900412229,
46.429133024903265
],
[
10.064082294418254,
46.42681306989481
],
[
10.060513912620063,
46.427973047399036
],
[
10.058134991421268,
46.440732799945515
],
[
10.041482543029703,
46.44421273245818
],
[
10.043861464228499,
46.45465252999621
],
[
10.053377149023678,
46.46161239502156
],
[
10.05218768842428,
46.47089221505536
],
[
10.043861464228499,
46.480172035089154
],
[
10.047429846026692,
46.488291877618735
],
[
10.049808767225485,
46.49989165266098
],
[
10.043861464228499,
46.50685151768633
],
[
10.05218768842428,
46.51381138271168
],
[
10.054566609623075,
46.52077124773703
],
[
10.050998227824882,
46.52657113525815
],
[
10.053377149023678,
46.53121104527505
],
[
10.043861464228499,
46.5381709103004
],
[
10.047429846026692,
46.5428108203173
],
[
10.058134991421268,
46.545130775325745
],
[
10.068840136815844,
46.552090640351096
],
[
10.073597979213435,
46.56021048288067
],
[
10.083113664008614,
46.563690415393346
],
[
10.085492585207408,
46.568330325410244
],
[
10.079545282210422,
46.57297023542715
],
[
10.097387191201383,
46.57877012294827
],
[
10.102145033598973,
46.58341003296517
],
[
10.102145033598973,
46.59036989799052
],
[
10.097387191201383,
46.59384983050319
],
[
10.100955572999576,
46.60196967303277
],
[
10.099766112400179,
46.605449605545445
],
[
10.102145033598973,
46.611249493066566
],
[
10.11760802139114,
46.60660958304967
],
[
10.130692087984512,
46.605449605545445
],
[
10.165186445367038,
46.615889403083465
],
[
10.17351266956282,
46.62052931310036
],
[
10.188975657354987,
46.62632920062149
],
[
10.196112420951371,
46.622849268108816
],
[
10.21038594814414,
46.62052931310036
],
[
10.211575408743538,
46.61820935809192
],
[
10.218712172339922,
46.61936933559614
],
[
10.223470014737511,
46.62864915562994
],
[
10.232985699532692,
46.633289065646835
],
[
10.241311923728475,
46.63560902065529
],
[
10.241311923728475,
46.627489178125714
],
[
10.249638147924255,
46.61820935809192
],
[
10.259153832719436,
46.610089515562336
],
[
10.254395990321846,
46.60660958304967
],
[
10.242501384327872,
46.58804994298207
],
[
10.244880305526667,
46.57877012294827
],
[
10.247259226725461,
46.575290190435595
],
[
10.254395990321846,
46.57181025792292
],
[
10.263911675117026,
46.57761014544404
],
[
10.276995741710397,
46.57297023542715
],
[
10.29007980830377,
46.568330325410244
],
[
10.297216571900154,
46.556730550368
],
[
10.294837650701359,
46.553250617855326
],
[
10.298406032499551,
46.54977068534265
],
[
10.313869020291719,
46.54861070783842
],
[
10.325763626285692,
46.552090640351096
],
[
10.33171092928268,
46.54977068534265
],
[
10.340037153478463,
46.5428108203173
],
[
10.350742298873039,
46.54977068534265
],
[
10.353121220071834,
46.55557057286377
],
[
10.398320722848936,
46.54397079782152
],
[
10.412594250041707,
46.55093066284687
],
[
10.41973101363809,
46.55093066284687
],
[
10.45303591042122,
46.53121104527505
]
],
[
[
9.289743444210519,
44.70192652111247
],
[
9.30282751080389,
44.70308649861669
],
[
9.293311826008711,
44.70656643112937
],
[
9.289743444210519,
44.70192652111247
]
],
[
[
9.299259129005698,
44.692646701078665
],
[
9.299259129005698,
44.692646701078665
],
[
9.299259129005698,
44.692646701078665
],
[
9.299259129005698,
44.692646701078665
]
]
],
[
[
[
8.974536385370197,
45.983701663280925
],
[
8.97691530656899,
45.983701663280925
],
[
8.97691530656899,
45.968621955726
],
[
8.968589082373208,
45.96166209070065
],
[
8.95907339757803,
45.96746197822178
],
[
8.967399621773811,
45.98486164078515
],
[
8.974536385370197,
45.983701663280925
]
]
],
[
[
[
8.70690775050577,
45.01396046974895
],
[
8.703339368707578,
45.015120447253175
],
[
8.705718289906374,
45.02440026728698
],
[
8.70690775050577,
45.02324028978275
],
[
8.70690775050577,
45.01396046974895
]
]
],
[
[
[
8.81514866505094,
45.01744040226163
],
[
8.811580283252747,
45.01744040226163
],
[
8.81039082265335,
45.01976035727007
],
[
8.817527586249733,
45.022080312278526
],
[
8.81514866505094,
45.01744040226163
]
]
]
]
}
},
{
"type": "Feature",
"id": 4,
"properties": {
"COD_REG": 4,
"pil": 129,
"name": "TRENTINO-ALTO ADIGE",
"SHAPE_Leng": 859832.34523,
"SHAPE_Area": 13604646912
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
12.477497850595668,
46.67968816581583
],
[
12.476308389996271,
46.67968816581583
],
[
12.471550547598682,
46.67736821080738
],
[
12.453708638607718,
46.67388827829471
],
[
12.43467726901736,
46.669248368277806
],
[
12.428729966020374,
46.662288503252455
],
[
12.420403741824591,
46.656488615731334
],
[
12.415645899427002,
46.65068872821021
],
[
12.406130214631823,
46.64372886318486
],
[
12.39304614803845,
46.64256888568064
],
[
12.379962081445079,
46.64372886318486
],
[
12.37877262084568,
46.63676899815951
],
[
12.390667226839655,
46.627489178125714
],
[
12.366878014851707,
46.61936933559614
],
[
12.34665718466195,
46.62400924561304
],
[
12.341899342264359,
46.62980913313416
],
[
12.315731209077615,
46.62980913313416
],
[
12.316920669677014,
46.62400924561304
],
[
12.306215524282436,
46.61936933559614
],
[
12.295510378887858,
46.61820935809192
],
[
12.27172116689991,
46.62052931310036
],
[
12.26815278510172,
46.62632920062149
],
[
12.262205482104731,
46.62980913313416
],
[
12.247931954911962,
46.622849268108816
],
[
12.245553033713167,
46.62400924561304
],
[
12.240795191315577,
46.615889403083465
],
[
12.232468967119795,
46.61472942557924
],
[
12.21224813693004,
46.60892953805811
],
[
12.202732452134859,
46.598489740520094
],
[
12.192027306740282,
46.59500980800742
],
[
12.19678514913787,
46.60776956055389
],
[
12.19321676733968,
46.615889403083465
],
[
12.195595688538475,
46.62168929060459
],
[
12.181322161345705,
46.62168929060459
],
[
12.171806476550525,
46.634449043151065
],
[
12.158722409957154,
46.63676899815951
],
[
12.145638343363782,
46.634449043151065
],
[
12.139691040366795,
46.63908895316796
],
[
12.136122658568603,
46.644888840689084
],
[
12.121849131375832,
46.64720879569754
],
[
12.111143985981256,
46.65300868321866
],
[
12.109954525381859,
46.656488615731334
],
[
12.090923155791499,
46.66576843576513
],
[
12.089733695192102,
46.66808839077358
],
[
12.077839089198127,
46.67388827829471
],
[
12.068323404402948,
46.675048255798934
],
[
12.071891786201139,
46.65996854824401
],
[
12.067133943803551,
46.65300868321866
],
[
12.074270707399934,
46.64256888568064
],
[
12.070702325601744,
46.64140890817641
],
[
12.063565562005358,
46.62052931310036
],
[
12.051670956011383,
46.61472942557924
],
[
12.05286041661078,
46.611249493066566
],
[
12.044534192415,
46.60776956055389
],
[
12.050481495411987,
46.59384983050319
],
[
12.043344731815601,
46.581090077956716
],
[
12.035018507619819,
46.57761014544404
],
[
12.033829047020422,
46.57297023542715
],
[
12.03026066522223,
46.5706502804187
],
[
12.027881744023436,
46.56137046038489
],
[
12.021934441026447,
46.56021048288067
],
[
12.00647145323428,
46.540490865308854
],
[
11.999334689637896,
46.5335310002835
],
[
11.9969557684391,
46.534690977787726
],
[
11.989819004842715,
46.545130775325745
],
[
11.954135186860793,
46.54165084281308
],
[
11.948187883863806,
46.53585095529195
],
[
11.946998423264407,
46.53005106777083
],
[
11.927967053674049,
46.5288910902666
],
[
11.924398671875856,
46.53121104527505
],
[
11.912504065881883,
46.5335310002835
],
[
11.901798920487305,
46.53005106777083
],
[
11.851841575312612,
46.51845129272858
],
[
11.832810205722254,
46.510331450199004
],
[
11.83043128452346,
46.510331450199004
],
[
11.824483981526472,
46.50337158517365
],
[
11.814968296731292,
46.49989165266098
],
[
11.812589375532497,
46.48597192261028
],
[
11.813778836131895,
46.47785208008071
],
[
11.8577888783096,
46.475532125072256
],
[
11.875630787300562,
46.47321217006381
],
[
11.88633593269514,
46.46625230503846
],
[
11.888714853893934,
46.45697248500466
],
[
11.88633593269514,
46.45465252999621
],
[
11.889904314493332,
46.44305275495396
],
[
11.882767550896947,
46.440732799945515
],
[
11.873251866101768,
46.433772934920164
],
[
11.850652114713215,
46.43493291242439
],
[
11.847083732915024,
46.42681306989481
],
[
11.83875750871924,
46.41637327235679
],
[
11.843515351116832,
46.410573384835665
],
[
11.839946969318639,
46.40593347481877
],
[
11.835189126921048,
46.39665365478497
],
[
11.832810205722254,
46.38621385724694
],
[
11.835189126921048,
46.3838939022385
],
[
11.832810205722254,
46.37925399222159
],
[
11.832810205722254,
46.36649423967512
],
[
11.818536678529483,
46.37693403721315
],
[
11.810210454333703,
46.36649423967512
],
[
11.799505308939125,
46.3653342621709
],
[
11.797126387740331,
46.36765421717935
],
[
11.789989624143946,
46.364174284666674
],
[
11.779284478749368,
46.363014307162445
],
[
11.776905557550574,
46.35721441964132
],
[
11.780473939348767,
46.35025455461597
],
[
11.789989624143946,
46.34909457711175
],
[
11.80188423013792,
46.34445466709485
],
[
11.80188423013792,
46.33865477957373
],
[
11.8113999149331,
46.33169491454838
],
[
11.812589375532497,
46.3328548920526
],
[
11.832810205722254,
46.32589502702725
],
[
11.831620745122855,
46.323575072018805
],
[
11.833999666321652,
46.314295251985
],
[
11.831620745122855,
46.31313527448078
],
[
11.842325890517433,
46.30733538695966
],
[
11.832810205722254,
46.298055566925854
],
[
11.83043128452346,
46.287615769387834
],
[
11.826862902725267,
46.28413583687516
],
[
11.835189126921048,
46.276015994345585
],
[
11.83875750871924,
46.27021610682446
],
[
11.863736181306587,
46.271376084328686
],
[
11.870872944902972,
46.276015994345585
],
[
11.88633593269514,
46.27949592685826
],
[
11.888714853893934,
46.26789615181601
],
[
11.885146472095741,
46.26325624179911
],
[
11.88633593269514,
46.258616331782214
],
[
11.89466215689092,
46.25165646675686
],
[
11.906556762884895,
46.25629637677376
],
[
11.926777593074652,
46.24817653424419
],
[
11.927967053674049,
46.245856579235735
],
[
11.91369352648128,
46.23193684918504
],
[
11.910125144683088,
46.22613696166392
],
[
11.911314605282485,
46.223817006655466
],
[
11.926777593074652,
46.21569716412589
],
[
11.927967053674049,
46.20873729910054
],
[
11.933914356671036,
46.20525736658787
],
[
11.943430041466216,
46.199457479066744
],
[
11.962461411056575,
46.199457479066744
],
[
11.963650871655972,
46.19017765903295
],
[
11.958893029258384,
46.18437777151182
],
[
11.951756265661999,
46.1832177940076
],
[
11.9505668050626,
46.1785778839907
],
[
11.951756265661999,
46.170458041461124
],
[
11.939861659668024,
46.17277799646958
],
[
11.929156514273448,
46.176257928982245
],
[
11.929156514273448,
46.16697810894845
],
[
11.92320921127646,
46.16349817643577
],
[
11.91845136887887,
46.1553783339062
],
[
11.922019750677062,
46.14957844638508
],
[
11.910125144683088,
46.14029862635128
],
[
11.901798920487305,
46.136818693838606
],
[
11.906556762884895,
46.13449873883015
],
[
11.892283235692126,
46.12057900877946
],
[
11.885146472095741,
46.11709907626678
],
[
11.875630787300562,
46.118259053771006
],
[
11.86254672070719,
46.11477912125833
],
[
11.84827319351442,
46.11361914375411
],
[
11.835189126921048,
46.111299188745654
],
[
11.831620745122855,
46.107819256232986
],
[
11.810210454333703,
46.10201936871186
],
[
11.795936927140932,
46.10433932372031
],
[
11.778095018149973,
46.10317934621608
],
[
11.773337175752381,
46.106659278728756
],
[
11.766200412155996,
46.09853943619918
],
[
11.756684727360817,
46.09621948119073
],
[
11.751926884963227,
46.10549930122453
],
[
11.738842818369855,
46.10549930122453
],
[
11.716243066981304,
46.10317934621608
],
[
11.706727382186124,
46.09505950368651
],
[
11.70434846098733,
46.09041959366961
],
[
11.687696012595765,
46.09505950368651
],
[
11.684127630797573,
46.09273954867806
],
[
11.684127630797573,
46.07997979613158
],
[
11.686506551996368,
46.06606006608089
],
[
11.69007493379456,
46.06258013356821
],
[
11.698401157990343,
46.06026017855976
],
[
11.70434846098733,
46.047500426013286
],
[
11.684127630797573,
46.04402049350061
],
[
11.68055924899938,
46.04634044850906
],
[
11.666285721806613,
46.03706062847527
],
[
11.674611946002393,
46.02894078594569
],
[
11.681748709598779,
46.02546085343302
],
[
11.673422485402996,
46.019660965911896
],
[
11.667475182406008,
46.01734101090344
],
[
11.6722330248036,
46.01502105589499
],
[
11.6710435642042,
46.011541123382315
],
[
11.675801406601792,
46.00922116837387
],
[
11.69007493379456,
45.989501550802046
],
[
11.682938170198176,
45.976741798255574
],
[
11.686506551996368,
45.972101888238676
],
[
11.674611946002393,
45.965142023213325
],
[
11.654391115812636,
45.965142023213325
],
[
11.642496509818663,
45.9639820457091
],
[
11.637738667421072,
45.96166209070065
],
[
11.628222982625893,
45.960502113196426
],
[
11.630601903824688,
45.96978193323022
],
[
11.621086219029507,
45.972101888238676
],
[
11.615138916032521,
45.96746197822178
],
[
11.594918085842764,
45.972101888238676
],
[
11.58778132224638,
45.96978193323022
],
[
11.578265637451201,
46.006901213365424
],
[
11.572318334454213,
46.00806119086965
],
[
11.567560492056625,
46.005741235861194
],
[
11.554476425463251,
46.011541123382315
],
[
11.543771280068675,
46.011541123382315
],
[
11.539013437671084,
46.01386107839077
],
[
11.519982068080726,
46.011541123382315
],
[
11.518792607481329,
46.00922116837387
],
[
11.499761237890969,
46.011541123382315
],
[
11.487866631896996,
46.006901213365424
],
[
11.483108789499404,
45.99878137083584
],
[
11.468835262306637,
45.99762139333162
],
[
11.462887959309649,
45.994141460818945
],
[
11.454561735113867,
45.98486164078515
],
[
11.447424971517481,
45.98138170827247
],
[
11.436719826122905,
45.982541685776695
],
[
11.417688456532545,
45.98022173076825
],
[
11.406983311137969,
45.982541685776695
],
[
11.396278165743393,
45.98022173076825
],
[
11.377246796153033,
45.98486164078515
],
[
11.37367841435484,
45.983701663280925
],
[
11.37367841435484,
45.9732618657429
],
[
11.376057335553636,
45.960502113196426
],
[
11.383194099150021,
45.953542248171075
],
[
11.382004638550622,
45.943102450633056
],
[
11.377246796153033,
45.94426242813728
],
[
11.367731111357854,
45.941942473128826
],
[
11.358215426562673,
45.941942473128826
],
[
11.360594347761468,
45.93382263059925
],
[
11.357025965963278,
45.929182720582354
],
[
11.358215426562673,
45.92570278806968
],
[
11.345131359969301,
45.92106287805278
],
[
11.35107866296629,
45.912943035523206
],
[
11.345131359969301,
45.90946310301053
],
[
11.340373517571713,
45.91178305801898
],
[
11.33680513577352,
45.91642296803588
],
[
11.324910529779546,
45.917582945540104
],
[
11.318963226782557,
45.92106287805278
],
[
11.31301592378557,
45.93034269808658
],
[
11.304689699589789,
45.9268627655739
],
[
11.2987423965928,
45.936142585607705
],
[
11.2987423965928,
45.93034269808658
],
[
11.301121317791598,
45.92802274307813
],
[
11.2987423965928,
45.918742923044334
],
[
11.286847790598827,
45.91642296803588
],
[
11.271384802806661,
45.91990290054856
],
[
11.263058578610877,
45.917582945540104
],
[
11.260679657412084,
45.90482319299363
],
[
11.249974512017506,
45.900183282976734
],
[
11.255921815014492,
45.883943597917586
],
[
11.245216669619918,
45.88626355292604
],
[
11.235700984824737,
45.88046366540491
],
[
11.245216669619918,
45.876983732892235
],
[
11.23926936662293,
45.85610413781619
],
[
11.229753681827749,
45.85146422779929
],
[
11.228564221228353,
45.84914427279084
],
[
11.22023799703257,
45.847984295286615
],
[
11.219048536433172,
45.83290458773169
],
[
11.208343391038596,
45.829424655219015
],
[
11.198827706243417,
45.824784745202116
],
[
11.198827706243417,
45.818984857680995
],
[
11.191690942647032,
45.81782488017677
],
[
11.189312021448236,
45.81086501515142
],
[
11.190501482047633,
45.80274517262185
],
[
11.200017166842812,
45.800425217613395
],
[
11.194069863845826,
45.79346535258804
],
[
11.203585548641005,
45.78418553255425
],
[
11.198827706243417,
45.7818655775458
],
[
11.17860687605366,
45.78882544257115
],
[
11.175038494255467,
45.783025555050024
],
[
11.179796336653057,
45.766785869990876
],
[
11.180985797252454,
45.76214595997398
],
[
11.175038494255467,
45.749386207427506
],
[
11.177417415454261,
45.74590627491483
],
[
11.17860687605366,
45.73662645488103
],
[
11.169091191258481,
45.72850661235145
],
[
11.15481766406571,
45.72270672483033
],
[
11.153628203466313,
45.71806681481343
],
[
11.138165215674146,
45.708786994779636
],
[
11.135786294475352,
45.694867264728934
],
[
11.123891688481377,
45.690227354712036
],
[
11.12270222788198,
45.69602724223316
],
[
11.101291937092826,
45.69602724223316
],
[
11.095344634095838,
45.69370728722471
],
[
11.088207870499453,
45.69834719724161
],
[
11.07155542210789,
45.706467039771184
],
[
11.058471355514518,
45.71574685980498
],
[
11.057281894915121,
45.719226792317656
],
[
11.050145131318736,
45.71458688230076
],
[
11.041818907122954,
45.706467039771184
],
[
11.033492682927172,
45.70762701727541
],
[
11.022787537532594,
45.70530706226696
],
[
11.01565077393621,
45.713426904796535
],
[
11.012082392138018,
45.719226792317656
],
[
11.008514010339825,
45.71110694978808
],
[
10.998998325544646,
45.70762701727541
],
[
10.993051022547657,
45.708786994779636
],
[
10.994240483147056,
45.70414708476274
],
[
10.998998325544646,
45.69950717474583
],
[
10.989482640749465,
45.694867264728934
],
[
10.990672101348864,
45.69138733221626
],
[
10.979966955954286,
45.68558744469514
],
[
10.970451271159106,
45.683267489686685
],
[
10.96926181055971,
45.68790739970359
],
[
10.975209113556698,
45.69602724223316
],
[
10.972830192357902,
45.701827129754285
],
[
10.965693428761517,
45.69370728722471
],
[
10.962125046963326,
45.68558744469514
],
[
10.95023044096935,
45.68558744469514
],
[
10.946662059171159,
45.68210751218246
],
[
10.945472598571762,
45.67398766965289
],
[
10.937146374375978,
45.67398766965289
],
[
10.921683386583812,
45.67978755717401
],
[
10.912167701788633,
45.69138733221626
],
[
10.924062307782606,
45.69718721973739
],
[
10.925251768382005,
45.70066715225006
],
[
10.912167701788633,
45.70414708476274
],
[
10.910978241189234,
45.706467039771184
],
[
10.899083635195261,
45.708786994779636
],
[
10.89432579279767,
45.713426904796535
],
[
10.874104962607914,
45.71806681481343
],
[
10.872915502008517,
45.71574685980498
],
[
10.846747368821774,
45.71806681481343
],
[
10.843178987023581,
45.720386769821886
],
[
10.844368447622978,
45.725026679838784
],
[
10.84793682942117,
45.72734663484723
],
[
10.850315750619966,
45.73662645488103
],
[
10.858641974815747,
45.74358631990638
],
[
10.863399817213338,
45.74358631990638
],
[
10.865778738412132,
45.76214595997398
],
[
10.868157659610926,
45.76562589248665
],
[
10.87648388380671,
45.764465914982424
],
[
10.88481010800249,
45.772585757512005
],
[
10.885999568601889,
45.777225667528896
],
[
10.881241726204298,
45.7818655775458
],
[
10.874104962607914,
45.795785307596496
],
[
10.877673344406105,
45.80390515012607
],
[
10.888378489800683,
45.812024992655644
],
[
10.878862805005504,
45.818984857680995
],
[
10.859831435415146,
45.82710470021057
],
[
10.840800065824785,
45.83290458773169
],
[
10.82057923563503,
45.837544497748596
],
[
10.817010853836837,
45.83522454274014
],
[
10.795600563047682,
45.836384520244366
],
[
10.79203218124949,
45.83406456523592
],
[
10.78251649645431,
45.836384520244366
],
[
10.778948114656117,
45.84334438526972
],
[
10.762295666264555,
45.83986445275704
],
[
10.757537823866965,
45.830584632723244
],
[
10.753969442068772,
45.83174461022747
],
[
10.751590520869978,
45.837544497748596
],
[
10.74564321787299,
45.84102443026127
],
[
10.736127533077811,
45.84334438526972
],
[
10.707580478692272,
45.836384520244366
],
[
10.707580478692272,
45.83870447525282
],
[
10.700443715095886,
45.842184407765494
],
[
10.693306951499503,
45.837544497748596
],
[
10.679033424306734,
45.83174461022747
],
[
10.67070720011095,
45.83290458773169
],
[
10.665949357713362,
45.83174461022747
],
[
10.654054751719386,
45.83290458773169
],
[
10.654054751719386,
45.82710470021057
],
[
10.657623133517578,
45.82246479019367
],
[
10.654054751719386,
45.82130481268945
],
[
10.649296909321798,
45.80854506014297
],
[
10.640970685126014,
45.80274517262185
],
[
10.635023382129027,
45.807385082638746
],
[
10.612423630740476,
45.80622510513452
],
[
10.601718485345899,
45.80390515012607
],
[
10.599339564147105,
45.800425217613395
],
[
10.586255497553733,
45.79694528510072
],
[
10.581497655156143,
45.789985420075375
],
[
10.574360891559758,
45.7865054875627
],
[
10.564845206764579,
45.78418553255425
],
[
10.538677073577835,
45.7865054875627
],
[
10.532729770580847,
45.78882544257115
],
[
10.53629815237904,
45.79346535258804
],
[
10.530350849382053,
45.79694528510072
],
[
10.535108691779643,
45.800425217613395
],
[
10.533919231180246,
45.8050651276303
],
[
10.52678246758386,
45.8050651276303
],
[
10.530350849382053,
45.8097050376472
],
[
10.537487612978438,
45.81086501515142
],
[
10.544624376574822,
45.81782488017677
],
[
10.533919231180246,
45.82362476769789
],
[
10.530350849382053,
45.82710470021057
],
[
10.513698400990489,
45.824784745202116
],
[
10.506561637394103,
45.825944722706346
],
[
10.50299325559591,
45.836384520244366
],
[
10.507751097993502,
45.83986445275704
],
[
10.505372176794706,
45.84450436277394
],
[
10.506561637394103,
45.854944160311966
],
[
10.50299325559591,
45.85610413781619
],
[
10.50418271619531,
45.876983732892235
],
[
10.495856491999527,
45.87930368790069
],
[
10.489909189002539,
45.88510357542181
],
[
10.497045952598924,
45.89322341795138
],
[
10.493477570800732,
45.895543372959835
],
[
10.49466703140013,
45.900183282976734
],
[
10.507751097993502,
45.90482319299363
],
[
10.507751097993502,
45.912943035523206
],
[
10.511319479791695,
45.91526299053166
],
[
10.508940558592899,
45.924542810565455
],
[
10.498235413198323,
45.929182720582354
],
[
10.492288110201335,
45.941942473128826
],
[
10.48515134660495,
45.94426242813728
],
[
10.483961886005552,
45.9500623156584
],
[
10.487530267803745,
45.960502113196426
],
[
10.489909189002539,
45.96166209070065
],
[
10.487530267803745,
45.97094191073445
],
[
10.48039350420736,
45.96978193323022
],
[
10.472067280011577,
45.9732618657429
],
[
10.467309437613988,
45.972101888238676
],
[
10.464930516415194,
45.97442184324713
],
[
10.454225371020616,
45.976741798255574
],
[
10.45303591042122,
45.990661528306276
],
[
10.457793752818809,
46.01038114587809
],
[
10.469688358812784,
46.019660965911896
],
[
10.47087781941218,
46.02198092092034
],
[
10.483961886005552,
46.02198092092034
],
[
10.486340807204346,
46.02778080844146
],
[
10.48515134660495,
46.047500426013286
],
[
10.478014583008566,
46.05214033603019
],
[
10.482772425406155,
46.05794022355131
],
[
10.489909189002539,
46.06606006608089
],
[
10.498235413198323,
46.06953999859356
],
[
10.501803794996514,
46.07301993110624
],
[
10.516077322189282,
46.07881981862736
],
[
10.530350849382053,
46.09505950368651
],
[
10.533919231180246,
46.09621948119073
],
[
10.542245455376028,
46.10317934621608
],
[
10.542245455376028,
46.107819256232986
],
[
10.549382218972411,
46.11593909876255
],
[
10.551761140171207,
46.124058941292134
],
[
10.547003297773617,
46.14029862635128
],
[
10.547003297773617,
46.1460985138724
],
[
10.5553295219694,
46.1553783339062
],
[
10.557708443168194,
46.15653831141043
],
[
10.566034667363976,
46.16697810894845
],
[
10.557708443168194,
46.1785778839907
],
[
10.542245455376028,
46.189017681528725
],
[
10.548192758373014,
46.19597754655407
],
[
10.55057167957181,
46.206417344092095
],
[
10.5553295219694,
46.211057254108994
],
[
10.562466285565783,
46.21337720911744
],
[
10.567224127963375,
46.22033707414279
],
[
10.570792509761565,
46.22149705164702
],
[
10.568413588562771,
46.23425680419349
],
[
10.570792509761565,
46.23657675920194
],
[
10.580308194556746,
46.23889671421039
],
[
10.58268711575554,
46.24469660173151
],
[
10.586255497553733,
46.24817653424419
],
[
10.583876576354937,
46.25165646675686
],
[
10.579118733957348,
46.26673617431179
],
[
10.576739812758554,
46.269056129320234
],
[
10.575550352159155,
46.27717597184981
],
[
10.567224127963375,
46.27833594935403
],
[
10.56008736436699,
46.28413583687516
],
[
10.569603049162168,
46.29225567940473
],
[
10.580308194556746,
46.29921554443008
],
[
10.579118733957348,
46.30269547694276
],
[
10.564845206764579,
46.31313527448078
],
[
10.566034667363976,
46.32705500453147
],
[
10.557708443168194,
46.329374959539926
],
[
10.548192758373014,
46.335174847061054
],
[
10.538677073577835,
46.33865477957373
],
[
10.52678246758386,
46.34329468959062
],
[
10.516077322189282,
46.3467746221033
],
[
10.519645703987475,
46.3560544421371
],
[
10.532729770580847,
46.35721441964132
],
[
10.533919231180246,
46.35489446463288
],
[
10.543434915975425,
46.3560544421371
],
[
10.54105599477663,
46.36185432965822
],
[
10.543434915975425,
46.36649423967512
],
[
10.552950600770604,
46.36765421717935
],
[
10.566034667363976,
46.37809401471737
],
[
10.57792927335795,
46.375774059708924
],
[
10.580308194556746,
46.37809401471737
],
[
10.608855248942284,
46.38041396972582
],
[
10.608855248942284,
46.38621385724694
],
[
10.617181473138066,
46.393173722272294
],
[
10.632644460930234,
46.40129356480187
],
[
10.629076079132041,
46.40361351981032
],
[
10.630265539731438,
46.40825342982722
],
[
10.621939315535656,
46.41405331734834
],
[
10.618370933737463,
46.41521329485256
],
[
10.617181473138066,
46.43029300240749
],
[
10.619560394336862,
46.433772934920164
],
[
10.617181473138066,
46.44421273245818
],
[
10.621939315535656,
46.44885264247509
],
[
10.600529024746502,
46.46857226004691
],
[
10.59220280055072,
46.47205219255959
],
[
10.563655746165182,
46.481332012593384
],
[
10.556518982568797,
46.487131900114505
],
[
10.5553295219694,
46.49061183262718
],
[
10.549382218972411,
46.492931787635634
],
[
10.542245455376028,
46.491771810131404
],
[
10.529161388782654,
46.49525174264408
],
[
10.511319479791695,
46.4964117201483
],
[
10.491098649601938,
46.498731675156755
],
[
10.486340807204346,
46.494091765139856
],
[
10.476825122409167,
46.49525174264408
],
[
10.473256740610974,
46.50105163016521
],
[
10.457793752818809,
46.510331450199004
],
[
10.455414831620015,
46.51845129272858
],
[
10.45303591042122,
46.5288910902666
],
[
10.45303591042122,
46.53121104527505
],
[
10.458983213418206,
46.53701093279618
],
[
10.472067280011577,
46.5428108203173
],
[
10.472067280011577,
46.54977068534265
],
[
10.478014583008566,
46.556730550368
],
[
10.474446201210373,
46.56485039289757
],
[
10.48515134660495,
46.57761014544404
],
[
10.483961886005552,
46.582250055460946
],
[
10.487530267803745,
46.59036989799052
],
[
10.483961886005552,
46.592689852998966
],
[
10.487530267803745,
46.597329763015864
],
[
10.48515134660495,
46.60312965053699
],
[
10.492288110201335,
46.611249493066566
],
[
10.486340807204346,
46.615889403083465
],
[
10.482772425406155,
46.62052931310036
],
[
10.47563566180977,
46.62400924561304
],
[
10.467309437613988,
46.63096911063839
],
[
10.45303591042122,
46.63908895316796
],
[
10.445899146824834,
46.64140890817641
],
[
10.428057237833873,
46.63908895316796
],
[
10.417352092439295,
46.63792897566374
],
[
10.405457486445322,
46.63560902065529
],
[
10.401889104647129,
46.63676899815951
],
[
10.400699644047732,
46.64372886318486
],
[
10.39237341985195,
46.65880857073979
],
[
10.39237341985195,
46.67272830079048
],
[
10.389994498653154,
46.67736821080738
],
[
10.381668274457372,
46.68432807583273
],
[
10.384047195656168,
46.68780800834541
],
[
10.393562880451347,
46.68896798584963
],
[
10.399510183448335,
46.70056776089188
],
[
10.416162631839898,
46.70868760342145
],
[
10.418541553038693,
46.71912740095948
],
[
10.410215328842911,
46.7249272884806
],
[
10.409025868243514,
46.7295671984975
],
[
10.400699644047732,
46.733047131010174
],
[
10.411404789442308,
46.73768704102707
],
[
10.413783710641104,
46.74116697353975
],
[
10.42924669843327,
46.7481268385651
],
[
10.442330765026643,
46.752766748582
],
[
10.444709686225437,
46.75856663610312
],
[
10.442330765026643,
46.76552650112847
],
[
10.441141304427244,
46.774806321162266
],
[
10.434004540830859,
46.779446231179165
],
[
10.42448885603568,
46.786406096204516
],
[
10.428057237833873,
46.78988602871719
],
[
10.426867777234476,
46.79452593873409
],
[
10.442330765026643,
46.798005871246765
],
[
10.454225371020616,
46.80844566878479
],
[
10.460172674017603,
46.82468535384394
],
[
10.457793752818809,
46.82932526386084
],
[
10.460172674017603,
46.83512515138196
],
[
10.467309437613988,
46.83628512888619
],
[
10.464930516415194,
46.84324499391153
],
[
10.472067280011577,
46.84904488143266
],
[
10.469688358812784,
46.85484476895378
],
[
10.479204043607963,
46.85948467897068
],
[
10.482772425406155,
46.85832470146646
],
[
10.491098649601938,
46.850204858936884
],
[
10.495856491999527,
46.84904488143266
],
[
10.514887861589886,
46.84788490392843
],
[
10.524403546385066,
46.845564948919986
],
[
10.545813837174219,
46.84904488143266
],
[
10.554140061370003,
46.850204858936884
],
[
10.557708443168194,
46.84092503890309
],
[
10.570792509761565,
46.84208501640731
],
[
10.573171430960361,
46.84672492642421
],
[
10.591013339951322,
46.850204858936884
],
[
10.59220280055072,
46.85368479144956
],
[
10.610044709541683,
46.85832470146646
],
[
10.617181473138066,
46.862964611483356
],
[
10.649296909321798,
46.86528456649181
],
[
10.656433672918181,
46.867604521500255
],
[
10.66238097591517,
46.874564386525606
],
[
10.668328278912156,
46.87572436402983
],
[
10.673086121309746,
46.86992447650871
],
[
10.692117490900106,
46.867604521500255
],
[
10.696875333297694,
46.862964611483356
],
[
10.693306951499503,
46.85832470146646
],
[
10.693306951499503,
46.85252481394534
],
[
10.702822636294682,
46.850204858936884
],
[
10.705201557493478,
46.84672492642421
],
[
10.71709616348745,
46.84672492642421
],
[
10.733748611879015,
46.83744510639041
],
[
10.752779981469374,
46.833965173877736
],
[
10.757537823866965,
46.82816528635661
],
[
10.76467458746335,
46.82236539883549
],
[
10.746832678472387,
46.804965736272116
],
[
10.728990769481426,
46.79916584875099
],
[
10.72661184828263,
46.798005871246765
],
[
10.728990769481426,
46.78988602871719
],
[
10.737316993677208,
46.787566073708746
],
[
10.758727284466362,
46.78524611870029
],
[
10.771811351059734,
46.78872605121297
],
[
10.77300081165913,
46.791046006221414
],
[
10.786084878252503,
46.79684589374254
],
[
10.794411102448286,
46.791046006221414
],
[
10.795600563047682,
46.792205983725644
],
[
10.812253011439246,
46.77712627617072
],
[
10.82890545983081,
46.774806321162266
],
[
10.841989526424182,
46.78176618618762
],
[
10.843178987023581,
46.77828625367494
],
[
10.864589277812733,
46.773646343658044
],
[
10.868157659610926,
46.77248636615382
],
[
10.869347120210325,
46.76552650112847
],
[
10.888378489800683,
46.76320654612002
],
[
10.893136332198274,
46.769006433641145
],
[
10.897894174595862,
46.77016641114537
],
[
10.906220398791646,
46.76784645613692
],
[
10.915736083586825,
46.774806321162266
],
[
10.938335834975376,
46.773646343658044
],
[
10.958556665165133,
46.774806321162266
],
[
10.968072349960313,
46.773646343658044
],
[
10.982345877153081,
46.77016641114537
],
[
10.98829318015007,
46.76784645613692
],
[
11.001377246743441,
46.76784645613692
],
[
11.013271852737414,
46.77248636615382
],
[
11.022787537532594,
46.76552650112847
],
[
11.02516645873139,
46.76668647863269
],
[
11.033492682927172,
46.78408614119607
],
[
11.037061064725364,
46.79336596122987
],
[
11.04419782832175,
46.802645781263664
],
[
11.040629446523557,
46.804965736272116
],
[
11.060850276713314,
46.81308557880169
],
[
11.083450028101865,
46.821205421331264
],
[
11.082260567502466,
46.82816528635661
],
[
11.07631326450548,
46.83628512888619
],
[
11.07155542210789,
46.839765061398865
],
[
11.07512380390608,
46.84904488143266
],
[
11.07155542210789,
46.85136483644111
],
[
11.072744882707287,
46.85832470146646
],
[
11.082260567502466,
46.86412458898758
],
[
11.09058679169825,
46.88036427404673
],
[
11.095344634095838,
46.88268422905518
],
[
11.10010247649343,
46.897763936610104
],
[
11.09891301589403,
46.903563824131226
],
[
11.095344634095838,
46.9070437566439
],
[
11.096534094695237,
46.91284364416502
],
[
11.109618161288608,
46.9163235766777
],
[
11.110807621888005,
46.9256033967115
],
[
11.114376003686198,
46.93140328423262
],
[
11.123891688481377,
46.92908332922417
],
[
11.140544136872942,
46.92792335171995
],
[
11.15005982166812,
46.93140328423262
],
[
11.16433334886089,
46.9395231267622
],
[
11.169091191258481,
46.94532301428332
],
[
11.163143888261493,
46.94996292430022
],
[
11.165522809460288,
46.955762811821344
],
[
11.165522809460288,
46.96620260935937
],
[
11.177417415454261,
46.962722676846695
],
[
11.190501482047633,
46.97084251937627
],
[
11.192880403246429,
46.96852256436782
],
[
11.203585548641005,
46.96852256436782
],
[
11.208343391038596,
46.962722676846695
],
[
11.24283774842112,
46.96968254187205
],
[
11.257111275613891,
46.974322451888945
],
[
11.25830073621329,
46.97780238440161
],
[
11.264248039210276,
46.98128231691429
],
[
11.27614264520425,
46.980122339410066
],
[
11.286847790598827,
46.98360227192274
],
[
11.288037251198224,
46.985922226931194
],
[
11.299931857192199,
46.98360227192274
],
[
11.310637002586777,
46.984762249426964
],
[
11.316584305583763,
46.991722114452315
],
[
11.321342147981353,
46.99288209195654
],
[
11.327289450978341,
46.98940215944387
],
[
11.335615675174122,
46.98824218193964
],
[
11.337994596372917,
46.984762249426964
],
[
11.342752438770507,
46.98940215944387
],
[
11.359404887162071,
46.99056213694809
],
[
11.374867874954237,
46.98128231691429
],
[
11.380815177951225,
46.97200249688049
],
[
11.393899244544597,
46.96968254187205
],
[
11.405793850538572,
46.96504263185514
],
[
11.418877917131944,
46.967362586863594
],
[
11.427204141327724,
46.96968254187205
],
[
11.42958306252652,
46.97200249688049
],
[
11.441477668520495,
46.97548242939317
],
[
11.445046050318687,
46.984762249426964
],
[
11.44861443211688,
46.985922226931194
],
[
11.453372274514468,
46.99288209195654
],
[
11.461698498710252,
46.991722114452315
],
[
11.470024722906032,
46.99752200197344
],
[
11.468835262306637,
46.99984195698189
],
[
11.478350947101816,
47.01144173202414
],
[
11.502140159089764,
47.01028175451991
],
[
11.500950698490367,
47.00680182200724
],
[
11.51403476508374,
47.00448186699879
],
[
11.523550449878918,
46.996362024469214
],
[
11.542581819469277,
46.98708220443542
],
[
11.552097504264456,
46.99056213694809
],
[
11.571128873854816,
46.99288209195654
],
[
11.581834019249392,
46.99752200197344
],
[
11.580644558649997,
47.00216191199034
],
[
11.590160243445176,
47.00564184450302
],
[
11.615138916032521,
47.01144173202414
],
[
11.628222982625893,
47.01260170952836
],
[
11.634170285622881,
47.00680182200724
],
[
11.636549206821677,
47.00216191199034
],
[
11.659148958210228,
46.996362024469214
],
[
11.665096261207214,
46.991722114452315
],
[
11.674611946002393,
46.99404206946076
],
[
11.68055924899938,
46.99288209195654
],
[
11.693643315592752,
46.99520204696499
],
[
11.712674685183112,
46.99288209195654
],
[
11.724569291177087,
46.980122339410066
],
[
11.72694821237588,
46.97316247438472
],
[
11.75073742436383,
46.96968254187205
],
[
11.751926884963227,
46.97200249688049
],
[
11.766200412155996,
46.97316247438472
],
[
11.767389872755395,
46.97896236190584
],
[
11.773337175752381,
46.985922226931194
],
[
11.781663399948163,
46.99288209195654
],
[
11.794747466541535,
46.99056213694809
],
[
11.82091559972828,
46.99056213694809
],
[
11.836378587520446,
46.99288209195654
],
[
11.839946969318639,
46.99868197947767
],
[
11.847083732915024,
47.00100193448611
],
[
11.85303103591201,
46.99984195698189
],
[
11.860167799508396,
47.00796179951146
],
[
11.869683484303575,
47.01260170952836
],
[
11.874441326701163,
47.01028175451991
],
[
11.878009708499356,
47.01608164204104
],
[
11.89466215689092,
47.020721552057935
],
[
11.902988381086704,
47.025361462074834
],
[
11.914882987080677,
47.02884139458751
],
[
11.916072447680076,
47.03348130460441
],
[
11.929156514273448,
47.03580125961286
],
[
11.938672199068627,
47.03812121462131
],
[
11.948187883863806,
47.03348130460441
],
[
11.9505668050626,
47.03812121462131
],
[
11.956514108059588,
47.043921102142434
],
[
11.961271950457178,
47.04044116962976
],
[
11.982682241246332,
47.049720989663555
],
[
11.985061162445128,
47.04740103465511
],
[
11.999334689637896,
47.049720989663555
],
[
12.023123901625844,
47.04740103465511
],
[
12.03026066522223,
47.049720989663555
],
[
12.035018507619819,
47.05784083219313
],
[
12.042155271216203,
47.06016078720158
],
[
12.057618259008372,
47.061320764705805
],
[
12.058807719607767,
47.05900080969736
],
[
12.074270707399934,
47.06016078720158
],
[
12.077839089198127,
47.05900080969736
],
[
12.079028549797524,
47.06480069721848
],
[
12.088544234592703,
47.07060058473961
],
[
12.092112616390896,
47.072920539748054
],
[
12.094491537589692,
47.07756044976495
],
[
12.10400722238487,
47.07756044976495
],
[
12.115901828378846,
47.074080517252284
],
[
12.138501579767397,
47.08104038227763
],
[
12.153964567559564,
47.079880404773405
],
[
12.168238094752333,
47.0845203147903
],
[
12.169427555351731,
47.086840269798756
],
[
12.17894324014691,
47.09032020231143
],
[
12.190837846140884,
47.091480179815655
],
[
12.21581651872823,
47.086840269798756
],
[
12.226521664122806,
47.08336033728608
],
[
12.228900585321602,
47.078720427269175
],
[
12.236037348917987,
47.074080517252284
],
[
12.238416270116783,
47.0659606747227
],
[
12.232468967119795,
47.06480069721848
],
[
12.225332203523411,
47.06016078720158
],
[
12.217005979327627,
47.05900080969736
],
[
12.217005979327627,
47.04508107964666
],
[
12.21224813693004,
47.03696123711708
],
[
12.205111373333654,
47.027681417083286
],
[
12.180132700746308,
47.025361462074834
],
[
12.168238094752333,
47.021881529562165
],
[
12.167048634152936,
47.01956157455371
],
[
12.145638343363782,
47.02420148457061
],
[
12.139691040366795,
47.01840159704949
],
[
12.126606973773423,
47.013761687032584
],
[
12.121849131375832,
47.00564184450302
],
[
12.126606973773423,
46.99752200197344
],
[
12.128985894972217,
46.996362024469214
],
[
12.130175355571614,
46.98824218193964
],
[
12.127796434372819,
46.985922226931194
],
[
12.138501579767397,
46.98360227192274
],
[
12.136122658568603,
46.96852256436782
],
[
12.137312119168,
46.96504263185514
],
[
12.131364816171011,
46.962722676846695
],
[
12.136122658568603,
46.95924274433402
],
[
12.152775106960167,
46.9534428568129
],
[
12.162290791755346,
46.94764296929177
],
[
12.168238094752333,
46.932563261736846
],
[
12.163480252354743,
46.93140328423262
],
[
12.15634348875836,
46.92328344170305
],
[
12.144448882764383,
46.91400362166925
],
[
12.15991187055655,
46.909363711652354
],
[
12.161101331155947,
46.9070437566439
],
[
12.170617015951127,
46.91052368915658
],
[
12.177753779547512,
46.9070437566439
],
[
12.190837846140884,
46.9070437566439
],
[
12.200353530936063,
46.896603959105875
],
[
12.202732452134859,
46.886164161567855
],
[
12.214627058128833,
46.874564386525606
],
[
12.22057436112582,
46.879204296542504
],
[
12.232468967119795,
46.88036427404673
],
[
12.236037348917987,
46.88848411657631
],
[
12.24436357311377,
46.89080407158475
],
[
12.24912141551136,
46.88848411657631
],
[
12.26815278510172,
46.88732413907208
],
[
12.275289548698103,
46.8838442065594
],
[
12.278857930496295,
46.879204296542504
],
[
12.275289548698103,
46.874564386525606
],
[
12.280047391095692,
46.86992447650871
],
[
12.291941997089667,
46.86644454399603
],
[
12.289563075890872,
46.86412458898758
],
[
12.291941997089667,
46.850204858936884
],
[
12.307404984881835,
46.84208501640731
],
[
12.306215524282436,
46.83512515138196
],
[
12.296699839487257,
46.82584533134816
],
[
12.293131457689064,
46.82468535384394
],
[
12.283615772893885,
46.816565511314366
],
[
12.283615772893885,
46.81424555630591
],
[
12.289563075890872,
46.809605646289015
],
[
12.293131457689064,
46.80380575876789
],
[
12.288373615291475,
46.79452593873409
],
[
12.281236851695091,
46.78872605121297
],
[
12.283615772893885,
46.78292616369184
],
[
12.307404984881835,
46.78292616369184
],
[
12.308594445481232,
46.78524611870029
],
[
12.3240574332734,
46.78292616369184
],
[
12.337141499866771,
46.779446231179165
],
[
12.344278263463154,
46.775966298666496
],
[
12.352604487658937,
46.77712627617072
],
[
12.358551790655923,
46.774806321162266
],
[
12.359741251255322,
46.76436652362425
],
[
12.366878014851707,
46.75392672608622
],
[
12.369256936050501,
46.74116697353975
],
[
12.377583160246283,
46.722607333472155
],
[
12.38353046324327,
46.71680744595103
],
[
12.390667226839655,
46.71332751343835
],
[
12.400182911634834,
46.709847580925675
],
[
12.401372372234231,
46.70752762591723
],
[
12.41088805702941,
46.70636764841301
],
[
12.414456438827603,
46.70056776089188
],
[
12.427540505420975,
46.699407783387656
],
[
12.428729966020374,
46.69476787337075
],
[
12.445382414411938,
46.68896798584963
],
[
12.445382414411938,
46.69012796335386
],
[
12.465603244601695,
46.686648030841184
],
[
12.472740008198079,
46.68780800834541
],
[
12.477497850595668,
46.68316809832851
],
[
12.477497850595668,
46.67968816581583
]
]
]
}
},
{
"type": "Feature",
"id": 5,
"properties": {
"COD_REG": 5,
"pil": 115,
"name": "VENETO",
"SHAPE_Leng": 1141613.61928,
"SHAPE_Area": 18407166944.4
},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
12.732042418866722,
46.634449043151065
],
[
12.730852958267324,
46.633289065646835
],
[
12.727284576469131,
46.63096911063839
],
[
12.732042418866722,
46.62516922311726
],
[
12.72847403706853,
46.61356944807501
],
[
12.729663497667927,
46.610089515562336
],
[
12.73680026126431,
46.605449605545445
],
[
12.737989721863709,
46.598489740520094
],
[
12.742747564261299,
46.59616978551164
],
[
12.739179182463106,
46.59152987549474
],
[
12.742747564261299,
46.57645016793982
],
[
12.732042418866722,
46.5706502804187
],
[
12.73680026126431,
46.5660103704018
],
[
12.733231879466118,
46.563690415393346
],
[
12.73680026126431,
46.553250617855326
],
[
12.748694867258285,
46.54397079782152
],
[
12.740368643062503,
46.54397079782152
],
[
12.727284576469131,
46.539330887804624
],
[
12.721337273472145,
46.54397079782152
],
[
12.713011049276362,
46.545130775325745
],
[
12.701116443282388,
46.540490865308854
],
[
12.698737522083594,
46.54165084281308
],
[
12.686842916089619,
46.53585095529195
],
[
12.683274534291426,
46.53005106777083
],
[
12.667811546499259,
46.52541115775393
],
[
12.6487801769089,
46.5196112702328
],
[
12.630938267917939,
46.51265140520745
],
[
12.630938267917939,
46.49989165266098
],
[
12.636885570914925,
46.4964117201483
],
[
12.64402233451131,
46.48945185512296
],
[
12.652348558707093,
46.48481194510606
],
[
12.65829586170408,
46.47321217006381
],
[
12.66305370410167,
46.469732237551135
],
[
12.657106401104683,
46.46509232753424
],
[
12.651159098107694,
46.46625230503846
],
[
12.64402233451131,
46.47205219255959
],
[
12.62618042552035,
46.47437214756803
],
[
12.62499096492095,
46.475532125072256
],
[
12.614285819526375,
46.47205219255959
],
[
12.605959595330592,
46.46393235003001
],
[
12.595254449936014,
46.47089221505536
],
[
12.576223080345656,
46.47321217006381
],
[
12.56908631674927,
46.47669210257648
],
[
12.566707395550477,
46.47321217006381
],
[
12.561949553152886,
46.47205219255959
],
[
12.54172872296313,
46.45697248500466
],
[
12.531023577568554,
46.46509232753424
],
[
12.527455195770361,
46.46045241751733
],
[
12.521507892773375,
46.44885264247509
],
[
12.50485544438181,
46.440732799945515
],
[
12.492960838387834,
46.42565309239059
],
[
12.494150298987233,
46.41869322736524
],
[
12.498908141384822,
46.41289333984412
],
[
12.49533975958663,
46.41289333984412
],
[
12.48106623239386,
46.40245354230609
],
[
12.470361086999283,
46.39085376726385
],
[
12.465603244601695,
46.388533812255396
],
[
12.456087559806514,
46.39201374476807
],
[
12.4632243234029,
46.369974172187796
],
[
12.452519178008323,
46.371134149692026
],
[
12.456087559806514,
46.3653342621709
],
[
12.450140256809526,
46.360694352154
],
[
12.428729966020374,
46.3514145321202
],
[
12.418024820625796,
46.35489446463288
],
[
12.421593202423988,
46.3467746221033
],
[
12.41207751762881,
46.33169491454838
],
[
12.38353046324327,
46.329374959539926
],
[
12.381151542044474,
46.33169491454838
],
[
12.371635857249295,
46.32589502702725
],
[
12.353793948258335,
46.31893516200191
],
[
12.357362330056526,
46.310815319472326
],
[
12.352604487658937,
46.30733538695966
],
[
12.352604487658937,
46.30153549943853
],
[
12.35498340885773,
46.29573561191741
],
[
12.345467724062551,
46.29225567940473
],
[
12.340709881664962,
46.28529581437938
],
[
12.337141499866771,
46.28645579188361
],
[
12.325246893872794,
46.27717597184981
],
[
12.321678512074604,
46.27021610682446
],
[
12.3240574332734,
46.25513639926954
],
[
12.333573118068578,
46.253976421765316
],
[
12.333573118068578,
46.247016556739965
],
[
12.338330960466166,
46.23889671421039
],
[
12.344278263463154,
46.241216669218836
],
[
12.353793948258335,
46.23657675920194
],
[
12.359741251255322,
46.22961689417659
],
[
12.369256936050501,
46.228456916672364
],
[
12.372825317848694,
46.223817006655466
],
[
12.39304614803845,
46.228456916672364
],
[
12.404940754032424,
46.22729693916814
],
[
12.408509135830617,
46.21917709663857
],
[
12.40256183283363,
46.21569716412589
],
[
12.400182911634834,
46.211057254108994
],
[
12.413266978228206,
46.20757732159632
],
[
12.432298347818566,
46.209897276604764
],
[
12.44419295381254,
46.20873729910054
],
[
12.445382414411938,
46.20409738908364
],
[
12.443003493213142,
46.20061745657097
],
[
12.44895079621013,
46.1832177940076
],
[
12.447761335610732,
46.17973786149492
],
[
12.454898099207117,
46.17741790648647
],
[
12.456087559806514,
46.17161801896535
],
[
12.4632243234029,
46.1692980639569
],
[
12.465603244601695,
46.165818131444226
],
[
12.476308389996271,
46.164658153939996
],
[
12.491771377788439,
46.15769828891465
],
[
12.496529220186027,
46.153058378897754
],
[
12.49533975958663,
46.147258491376625
],
[
12.497718680785425,
46.129858828813255
],
[
12.492960838387834,
46.1275388738048
],
[
12.494150298987233,
46.122898963787904
],
[
12.487013535390847,
46.111299188745654
],
[
12.482255692993258,
46.10201936871186
],
[
12.467982165800489,
46.09853943619918
],
[
12.471550547598682,
46.09621948119073
],
[
12.445382414411938,
46.08461970614849
],
[
12.428729966020374,
46.07649986361891
],
[
12.418024820625796,
46.06026017855976
],
[
12.409698596430015,
46.059100201055536
],
[
12.406130214631823,
46.04402049350061
],
[
12.403751293433027,
46.03706062847527
],
[
12.41088805702941,
46.03358069596259
],
[
12.415645899427002,
46.02778080844146
],
[
12.415645899427002,
46.02082094341612
],
[
12.419214281225194,
46.01618103339922
],
[
12.419214281225194,
46.00806119086965
],
[
12.423972123622782,
45.99878137083584
],
[
12.428729966020374,
45.990661528306276
],
[
12.426351044821578,
45.96978193323022
],
[
12.423972123622782,
45.95586220317953
],
[
12.426351044821578,
45.947742360649954
],
[
12.438245650815553,
45.9454224056415
],
[
12.446571875011335,
45.947742360649954
],
[
12.450140256809526,
45.94426242813728
],
[
12.452519178008323,
45.947742360649954
],
[
12.464413784002296,
45.941942473128826
],
[
12.464413784002296,
45.93266265309503
],
[
12.478687311195067,
45.9268627655739
],
[
12.502476523183015,
45.92570278806968
],
[
12.508423826180003,
45.92106287805278
],
[
12.506044904981206,
45.91642296803588
],
[
12.509613286779398,
45.90946310301053
],
[
12.516750050375784,
45.90482319299363
],
[
12.523886813972169,
45.90482319299363
],
[
12.521507892773375,
45.90134326048096
],
[
12.507234365580604,
45.89902330547251
],
[
12.516750050375784,
45.89206344044716
],
[
12.521507892773375,
45.88510357542181
],
[
12.534591959366747,
45.88510357542181
],
[
12.529834116969155,
45.87814371039646
],
[
12.53697088056554,
45.871183845371114
],
[
12.529834116969155,
45.865383957849986
],
[
12.534591959366747,
45.86190402533731
],
[
12.54648656536072,
45.86306400284154
],
[
12.55124440775831,
45.859584070328864
],
[
12.553623328957105,
45.854944160311966
],
[
12.550054947158912,
45.85030425029507
],
[
12.559570631954092,
45.84566434027816
],
[
12.550054947158912,
45.83986445275704
],
[
12.557191710755298,
45.836384520244366
],
[
12.554812789556502,
45.83174461022747
],
[
12.561949553152886,
45.825944722706346
],
[
12.566707395550477,
45.83174461022747
],
[
12.573844159146862,
45.824784745202116
],
[
12.582170383342643,
45.825944722706346
],
[
12.583359843942041,
45.82130481268945
],
[
12.595254449936014,
45.81550492516832
],
[
12.59287552873722,
45.82014483518522
],
[
12.598822831734207,
45.82362476769789
],
[
12.595254449936014,
45.82710470021057
],
[
12.601201752933003,
45.836384520244366
],
[
12.605959595330592,
45.83870447525282
],
[
12.611906898327579,
45.83174461022747
],
[
12.623801504321554,
45.82826467771479
],
[
12.62618042552035,
45.830584632723244
],
[
12.632127728517336,
45.830584632723244
],
[
12.629748807318542,
45.82710470021057
],
[
12.638075031514322,
45.81782488017677
],
[
12.646401255710106,
45.82014483518522
],
[
12.647590716309502,
45.8143449476641
],
[
12.654727479905887,
45.807385082638746
],
[
12.649969637508297,
45.80274517262185
],
[
12.671379928297451,
45.7911453975796
],
[
12.674948310095644,
45.79230537508382
],
[
12.695169140285401,
45.807385082638746
],
[
12.702305903881786,
45.81550492516832
],
[
12.716579431074553,
45.824784745202116
],
[
12.72847403706853,
45.836384520244366
],
[
12.734421340065516,
45.836384520244366
],
[
12.739179182463106,
45.829424655219015
],
[
12.743937024860696,
45.82710470021057
],
[
12.759400012652861,
45.83986445275704
],
[
12.768915697448042,
45.84566434027816
],
[
12.766536776249247,
45.847984295286615
],
[
12.780810303442017,
45.854944160311966
],
[
12.791515448836593,
45.84914427279084
],
[
12.793894370035389,
45.84566434027816
],
[
12.803410054830568,
45.84566434027816
],
[
12.803410054830568,
45.84102443026127
],
[
12.798652212432978,
45.83290458773169
],
[
12.801031133631774,
45.824784745202116
],
[
12.80697843662876,
45.82014483518522
],
[
12.818873042622734,
45.824784745202116
],
[
12.818873042622734,
45.83406456523592
],
[
12.823630885020325,
45.836384520244366
],
[
12.829578188017312,
45.83522454274014
],
[
12.83076764861671,
45.83870447525282
],
[
12.860504163601645,
45.85030425029507
],
[
12.870019848396826,
45.84566434027816
],
[
12.875967151393812,
45.85030425029507
],
[
12.875967151393812,
45.83986445275704
],
[
12.870019848396826,
45.83522454274014
],
[
12.87715661199321,
45.824784745202116
],
[
12.885482836188991,
45.825944722706346
],
[
12.891430139185978,
45.82362476769789
],
[
12.893809060384774,
45.82014483518522
],
[
12.899756363381762,
45.82246479019367
],
[
12.903324745179953,
45.82826467771479
],
[
12.908082587577542,
45.829424655219015
],
[
12.915219351173928,
45.824784745202116
],
[
12.921166654170914,
45.83174461022747
],
[
12.929492878366698,
45.81782488017677
],
[
12.959229393351633,
45.82246479019367
],
[
12.95090316915585,
45.829424655219015
],
[
12.954471550954043,
45.84566434027816
],
[
12.958039932752236,
45.847984295286615
],
[
12.962797775149825,
45.84682431778239
],
[
12.967555617547415,
45.836384520244366
],
[
12.97945022354139,
45.83406456523592
],
[
12.971123999345608,
45.82826467771479
],
[
12.9746923811438,
45.82362476769789
],
[
12.977071302342594,
45.82710470021057
],
[
12.981829144740185,
45.824784745202116
],
[
12.973502920544401,
45.82014483518522
],
[
12.986586987137773,
45.818984857680995
],
[
12.993723750734159,
45.81550492516832
],
[
12.992534290134762,
45.81086501515142
],
[
12.986586987137773,
45.8097050376472
],
[
12.98420806593898,
45.81550492516832
],
[
12.978260762941993,
45.8143449476641
],
[
12.9746923811438,
45.80854506014297
],
[
12.981829144740185,
45.800425217613395
],
[
12.981829144740185,
45.795785307596496
],
[
12.991344829535365,
45.801585195117624
],
[
12.992534290134762,
45.79810526260495
],
[
12.975881841743197,
45.79346535258804
],
[
12.973502920544401,
45.78882544257115
],
[
12.981829144740185,
45.78766546506692
],
[
12.98420806593898,
45.777225667528896
],
[
12.993723750734159,
45.77606569002467
],
[
12.999671053731145,
45.7679458474951
],
[
13.00680781732753,
45.766785869990876
],
[
13.012755120324517,
45.7633059374782
],
[
13.011565659725122,
45.76098598246975
],
[
12.999671053731145,
45.759826004965525
],
[
13.005618356728133,
45.75518609494863
],
[
13.00204997492994,
45.75054618493173
],
[
13.00680781732753,
45.7447462974106
],
[
13.01632350212271,
45.74126636489793
],
[
13.009186738526326,
45.73314652236836
],
[
13.007997277926929,
45.72618665734301
],
[
13.01632350212271,
45.725026679838784
],
[
13.028218108116686,
45.737786432385256
],
[
13.028218108116686,
45.72734663484723
],
[
13.036544332312467,
45.72386670233456
],
[
13.038923253511262,
45.70994697228386
],
[
13.036544332312467,
45.701827129754285
],
[
13.044870556508249,
45.69370728722471
],
[
13.053196780704031,
45.69718721973739
],
[
13.043681095908852,
45.68558744469514
],
[
13.065091386698006,
45.677467602165564
],
[
13.067470307896802,
45.67050773714021
],
[
13.06271246549921,
45.65774798459374
],
[
13.066280847297403,
45.655428029585295
],
[
13.079364913890775,
45.660067939602186
],
[
13.085312216887761,
45.65774798459374
],
[
13.080554374490173,
45.654268052081065
],
[
13.087691138086557,
45.65194809707262
],
[
13.101964665279326,
45.64382825454304
],
[
13.093638441083545,
45.63570841201347
],
[
13.024649726318493,
45.631068501996566
],
[
13.003239435529338,
45.62874854698812
],
[
12.986586987137773,
45.625268614475445
],
[
12.978260762941993,
45.62642859197967
],
[
12.969934538746209,
45.622948659467
],
[
12.943766405559465,
45.619468726954324
],
[
12.919977193571517,
45.613668839433196
],
[
12.911650969375735,
45.61482881693742
],
[
12.899756363381762,
45.6090289294163
],
[
12.893809060384774,
45.60090908688672
],
[
12.889051217987184,
45.59742915437405
],
[
12.878346072592606,
45.595109199365595
],
[
12.865262005999234,
45.58814933434025
],
[
12.865262005999234,
45.58814933434025
],
[
12.856935781803454,
45.5858293793318
],
[
12.850988478806466,
45.58234944681912
],
[
12.837904412213094,
45.57886951430645
],
[
12.829578188017312,
45.574229604289556
],
[
12.818873042622734,
45.57074967177688
],
[
12.804599515429965,
45.56494978425575
],
[
12.781999764041414,
45.55450998671773
],
[
12.780810303442017,
45.55219003170928
],
[
12.771294618646838,
45.548710099196605
],
[
12.762968394451054,
45.544070189179706
],
[
12.720147812872746,
45.525510549112106
],
[
12.689221837288414,
45.51855068408676
],
[
12.66305370410167,
45.50927086405296
],
[
12.6487801769089,
45.50579093154029
],
[
12.645211795110708,
45.50347097653184
],
[
12.600012292333606,
45.48723129147269
],
[
12.586928225740234,
45.48143140395156
],
[
12.583359843942041,
45.477951471438885
],
[
12.56908631674927,
45.47679149393466
],
[
12.550054947158912,
45.47099160641354
],
[
12.535781419966142,
45.46403174138819
],
[
12.49058191718904,
45.45243196634594
],
[
12.484634614192053,
45.448952033833265
],
[
12.479876771794462,
45.450112011337495
],
[
12.462034862803502,
45.443152146312144
],
[
12.441814032613745,
45.431552371269895
],
[
12.43467726901736,
45.42459250624455
],
[
12.43467726901736,
45.421112573731875
],
[
12.427540505420975,
45.41879261872342
],
[
12.423972123622782,
45.419952596227645
],
[
12.41207751762881,
45.42807243875722
],
[
12.400182911634834,
45.43039239376567
],
[
12.387098845041463,
45.4222725512361
],
[
12.369256936050501,
45.40603286617695
],
[
12.357362330056526,
45.39327311363048
],
[
12.347846645261347,
45.379353383579776
],
[
12.339520421065565,
45.36543365352908
],
[
12.331194196869783,
45.35383387848683
],
[
12.328815275670987,
45.337594193427684
],
[
12.343088802863758,
45.33411426091501
],
[
12.337141499866771,
45.331794305906556
],
[
12.33238365746918,
45.332954283410785
],
[
12.3240574332734,
45.33063432840233
],
[
12.315731209077615,
45.314394643343185
],
[
12.313352287878821,
45.303954845805166
],
[
12.307404984881835,
45.292355070762916
],
[
12.307404984881835,
45.28887513825024
],
[
12.302647142484243,
45.27495540819954
],
[
12.29907876068605,
45.256395768131945
],
[
12.30026822128545,
45.24827592560237
],
[
12.296699839487257,
45.244795993089696
],
[
12.297889300086656,
45.2355161730559
],
[
12.314541748478218,
45.22855630803055
],
[
12.302647142484243,
45.22971628553477
],
[
12.29907876068605,
45.215796555484076
],
[
12.303836603083642,
45.19955687042493
],
[
12.312162827279423,
45.18099723035733
],
[
12.316920669677014,
45.18447716287
],
[
12.3240574332734,
45.17403736533198
],
[
12.330004736270386,
45.168237477810855
],
[
12.331194196869783,
45.16359756779396
],
[
12.334762578667975,
45.161277612785504
],
[
12.330004736270386,
45.15315777025593
],
[
12.326436354472193,
45.12995822017143
],
[
12.32762581507159,
45.120678400137635
],
[
12.331194196869783,
45.109078625095385
],
[
12.334762578667975,
45.09979880506159
],
[
12.331194196869783,
45.09051898502779
],
[
12.340709881664962,
45.08935900752357
],
[
12.358551790655923,
45.074279299968644
],
[
12.35617286945713,
45.06731943494329
],
[
12.365688554252309,
45.068479412447516
],
[
12.389477766240258,
45.0533997048926
],
[
12.401372372234231,
45.04295990735457
],
[
12.41088805702941,
45.04295990735457
],
[
12.419214281225194,
45.03136013231232
],
[
12.43943511141495,
45.0162804247574
],
[
12.457277020405911,
45.0070006047236
],
[
12.465603244601695,
45.003520672210925
],
[
12.475118929396874,
44.997720784689804
],
[
12.48582407479145,
44.993080874672906
],
[
12.51437112917699,
44.98844096465601
],
[
12.544107644161926,
44.97568121210953
],
[
12.548865486559514,
44.974521234605305
],
[
12.548865486559514,
44.96988132458841
],
[
12.552433868357706,
44.96524141457151
],
[
12.55124440775831,
44.9606015045546
],
[
12.54172872296313,
44.957121572041935
],
[
12.529834116969155,
44.94784175200813
],
[
12.50485544438181,
44.922322246915186
],
[
12.506044904981206,
44.91768233689829
],
[
12.49533975958663,
44.897962719326465
],
[
12.483445153592655,
44.87360319173774
],
[
12.479876771794462,
44.8712832367293
],
[
12.478687311195067,
44.86316339419972
],
[
12.46679270520109,
44.84460375413212
],
[
12.460845402204104,
44.8434437766279
],
[
12.445382414411938,
44.8341639565941
],
[
12.432298347818566,
44.83068402408142
],
[
12.42991942661977,
44.83184400158565
],
[
12.415645899427002,
44.8202442265434
],
[
12.423972123622782,
44.81444433902227
],
[
12.420403741824591,
44.80632449649271
],
[
12.41088805702941,
44.798204653963126
],
[
12.403751293433027,
44.80632449649271
],
[
12.394235608637846,
44.79472472145045
],
[
12.381151542044474,
44.80052460897158
],
[
12.368067475451102,
44.809804429005375
],
[
12.35498340885773,
44.8156043165265
],
[
12.34665718466195,
44.8295240465772
],
[
12.344278263463154,
44.83764388910677
],
[
12.343088802863758,
44.8480836866448
],
[
12.337141499866771,
44.8527235966617
],
[
12.306215524282436,
44.85504355167015
],
[
12.294320918288463,
44.86084343919127
],
[
12.287184154692078,
44.87012325922507
],
[
12.284805233493282,
44.87824310175464
],
[
12.285994694092679,
44.897962719326465
],
[
12.282426312294486,
44.90840251686449
],
[
12.295510378887858,
44.92580217942786
],
[
12.282426312294486,
44.94204186448701
],
[
12.275289548698103,
44.944361819495455
],
[
12.263394942704128,
44.93740195447011
],
[
12.256258179107743,
44.94320184199123
],
[
12.255068718508348,
44.93508199946166
],
[
12.246742494312564,
44.93624197696589
],
[
12.238416270116783,
44.93508199946166
],
[
12.230090045921,
44.92464220192364
],
[
12.221763821725219,
44.923482224419416
],
[
12.213437597529435,
44.926962156932085
],
[
12.189648385541487,
44.92580217942786
],
[
12.177753779547512,
44.933922021957436
],
[
12.172995937149922,
44.94204186448701
],
[
12.161101331155947,
44.938561931974334
],
[
12.15991187055655,
44.93160206694898
],
[
12.150396185761371,
44.93160206694898
],
[
12.143259422164988,
44.92812213443631
],
[
12.138501579767397,
44.93160206694898
],
[
12.127796434372819,
44.933922021957436
],
[
12.120659670776435,
44.944361819495455
],
[
12.11828074957764,
44.95480161703348
],
[
12.111143985981256,
44.96176148205883
],
[
12.099249379987281,
44.962921459563056
],
[
12.10043884058668,
44.97104130209263
],
[
12.095680998189088,
44.97220127959686
],
[
12.08497585279451,
44.967561369579954
],
[
12.08140747099632,
44.97336125710108
],
[
12.077839089198127,
44.974521234605305
],
[
12.067133943803551,
44.96988132458841
],
[
12.05404987721018,
44.97220127959686
],
[
12.049292034812588,
44.97684118961375
],
[
11.9969557684391,
44.98264107713488
],
[
11.983871701845729,
44.98496103214333
],
[
11.961271950457178,
44.98728098715178
],
[
11.930345974872843,
44.97568121210953
],
[
11.911314605282485,
44.97568121210953
],
[
11.892283235692126,
44.97800116711798
],
[
11.87206240550237,
44.974521234605305
],
[
11.870872944902972,
44.97568121210953
],
[
11.833999666321652,
44.97336125710108
],
[
11.824483981526472,
44.97684118961375
],
[
11.80664207253551,
44.97800116711798
],
[
11.797126387740331,
44.974521234605305
],
[
11.79236854534274,
44.968721347084184
],
[
11.767389872755395,
44.9606015045546
],
[
11.75073742436383,
44.95944152705038
],
[
11.741221739568651,
44.95364163952926
],
[
11.740032278969252,
44.94668177450391
],
[
11.744790121366844,
44.933922021957436
],
[
11.706727382186124,
44.92464220192364
],
[
11.698401157990343,
44.92000229190674
],
[
11.669854103604804,
44.91420240438561
],
[
11.655580576412035,
44.90724253936027
],
[
11.64368597041806,
44.89912269683069
],
[
11.630601903824688,
44.892162831805344
],
[
11.609191613035534,
44.88868289929267
],
[
11.593728625243369,
44.89100285430112
],
[
11.588970782845777,
44.897962719326465
],
[
11.584212940448188,
44.91420240438561
],
[
11.579455098050598,
44.91768233689829
],
[
11.565181570857828,
44.91884231440251
],
[
11.559234267860841,
44.921162269410964
],
[
11.549718583065662,
44.92928211194054
],
[
11.537823977071689,
44.93508199946166
],
[
11.518792607481329,
44.93740195447011
],
[
11.474782565303624,
44.93740195447011
],
[
11.472403644104828,
44.93624197696589
],
[
11.446235510918084,
44.93160206694898
],
[
11.43434090492411,
44.92928211194054
],
[
11.42482522012893,
44.93276204445321
],
[
11.427204141327724,
44.95016170701658
],
[
11.428393601927123,
44.95364163952926
],
[
11.422446298930137,
44.96408143706728
],
[
11.396278165743393,
44.97104130209263
],
[
11.396278165743393,
44.97220127959686
],
[
11.374867874954237,
44.97800116711798
],
[
11.35464704476448,
44.986121009647555
],
[
11.341562978171108,
44.98844096465601
],
[
11.31777376618316,
45.004680649715155
],
[
11.31420538438497,
45.010480537236276
],
[
11.305879160189185,
45.01396046974895
],
[
11.29041617239702,
45.015120447253175
],
[
11.289226711797621,
45.0162804247574
],
[
11.273763724005455,
45.02440026728698
],
[
11.269005881607866,
45.0302001548081
],
[
11.263058578610877,
45.033680087320775
],
[
11.271384802806661,
45.04527986236302
],
[
11.26662696040907,
45.056879637405274
],
[
11.257111275613891,
45.05455968239682
],
[
11.249974512017506,
45.04527986236302
],
[
11.240458827222326,
45.04295990735457
],
[
11.232132603026544,
45.04643983986725
],
[
11.217859075833776,
45.05455968239682
],
[
11.17860687605366,
45.061519547422165
],
[
11.175038494255467,
45.05919959241372
],
[
11.173849033656069,
45.07311932246442
],
[
11.18336471845125,
45.08123916499399
],
[
11.18812256084884,
45.08239914249822
],
[
11.184554179050647,
45.08819903001934
],
[
11.177417415454261,
45.097478850053136
],
[
11.20239608804161,
45.10791864759116
],
[
11.203585548641005,
45.11255855760806
],
[
11.192880403246429,
45.11023860259961
],
[
11.175038494255467,
45.11603849012074
],
[
11.159575506463302,
45.11835844512919
],
[
11.153628203466313,
45.12415833265031
],
[
11.147680900469325,
45.12647828765876
],
[
11.138165215674146,
45.12415833265031
],
[
11.139354676273545,
45.120678400137635
],
[
11.13221791267716,
45.10559869258272
],
[
11.12746007027957,
45.103278737574264
],
[
11.115565464285595,
45.10443871507849
],
[
11.106049779490416,
45.10791864759116
],
[
11.101291937092826,
45.113718535112284
],
[
11.095344634095838,
45.10675867008694
],
[
11.094155173496441,
45.10211876007004
],
[
11.096534094695237,
45.09631887254891
],
[
11.085828949300659,
45.09979880506159
],
[
11.07631326450548,
45.098638827557366
],
[
11.051334591918133,
45.11023860259961
],
[
11.033492682927172,
45.11835844512919
],
[
11.028734840529582,
45.127638265162986
],
[
11.040629446523557,
45.13343815268411
],
[
11.04300836772235,
45.14503792772636
],
[
11.051334591918133,
45.149677837743255
],
[
11.047766210119942,
45.15315777025593
],
[
11.032303222327773,
45.149677837743255
],
[
11.029924301128979,
45.15895765777706
],
[
11.022787537532594,
45.157797680272836
],
[
11.01089293153862,
45.14851786023903
],
[
11.007324549740428,
45.15315777025593
],
[
11.001377246743441,
45.150837815247485
],
[
10.994240483147056,
45.150837815247485
],
[
10.998998325544646,
45.15895765777706
],
[
10.991861561948262,
45.18215720786155
],
[
10.998998325544646,
45.185637140374226
],
[
10.993051022547657,
45.1937569829038
],
[
10.985914258951274,
45.19955687042493
],
[
10.970451271159106,
45.20535675794605
],
[
10.965693428761517,
45.20651673545028
],
[
10.947851519770555,
45.20651673545028
],
[
10.945472598571762,
45.21115664546717
],
[
10.931199071378991,
45.226236353022095
],
[
10.937146374375978,
45.233196218047446
],
[
10.901462556394055,
45.237836128064345
],
[
10.902652016993454,
45.24247603808124
],
[
10.899083635195261,
45.24827592560237
],
[
10.889567950400082,
45.249435903106594
],
[
10.880052265604903,
45.25291583561927
],
[
10.856263053616953,
45.25523579062772
],
[
10.855073593017554,
45.25755574563617
],
[
10.846747368821774,
45.256395768131945
],
[
10.839610605225388,
45.267995543174194
],
[
10.840800065824785,
45.273795430695316
],
[
10.833663302228402,
45.27611538570377
],
[
10.83009492043021,
45.285395205737565
],
[
10.822958156833824,
45.285395205737565
],
[
10.817010853836837,
45.295835003275585
],
[
10.807495169041658,
45.29931493578826
],
[
10.783705957053709,
45.31555462084741
],
[
10.737316993677208,
45.28771516074602
],
[
10.728990769481426,
45.296994980779814
],
[
10.733748611879015,
45.303954845805166
],
[
10.72661184828263,
45.31903455336008
],
[
10.71709616348745,
45.31671459835164
],
[
10.713527781689258,
45.32367446337699
],
[
10.715906702888054,
45.33411426091501
],
[
10.711148860490464,
45.33527423841923
],
[
10.704012096894079,
45.34107412594036
],
[
10.69925425449649,
45.33991414843614
],
[
10.687359648502515,
45.34223410344458
],
[
10.692117490900106,
45.35383387848683
],
[
10.704012096894079,
45.35847378850373
],
[
10.714717242288657,
45.36775360853753
],
[
10.706391018092875,
45.37007356354598
],
[
10.698064793897093,
45.380513361084
],
[
10.707580478692272,
45.38283331609245
],
[
10.70876993929167,
45.38747322610935
],
[
10.719475084686247,
45.3990730011516
],
[
10.719475084686247,
45.40603286617695
],
[
10.71709616348745,
45.40719284368117
],
[
10.71709616348745,
45.41647266371497
],
[
10.702822636294682,
45.4222725512361
],
[
10.692117490900106,
45.42459250624455
],
[
10.671896660710349,
45.425752483748774
],
[
10.656433672918181,
45.4222725512361
],
[
10.655244212318784,
45.41647266371497
],
[
10.644539066924207,
45.4176326412192
],
[
10.6481074487224,
45.42459250624455
],
[
10.651675830520592,
45.425752483748774
],
[
10.642160145725413,
45.44431212381637
],
[
10.624318236734451,
45.438512236295246
],
[
10.6481074487224,
45.45127198884172
],
[
10.644539066924207,
45.454751921354394
],
[
10.640970685126014,
45.479111448943115
],
[
10.63859176392722,
45.501151021523384
],
[
10.636212842728426,
45.537110324154355
],
[
10.630265539731438,
45.590469289348704
],
[
10.630265539731438,
45.596269176869825
],
[
10.627886618532642,
45.60670897440785
],
[
10.68022288490613,
45.65310807457684
],
[
10.68973856970131,
45.66238789461064
],
[
10.702822636294682,
45.672827692148665
],
[
10.712338321089861,
45.684427467190915
],
[
10.719475084686247,
45.69138733221626
],
[
10.727801308882029,
45.701827129754285
],
[
10.736127533077811,
45.70994697228386
],
[
10.771811351059734,
45.75054618493173
],
[
10.77300081165913,
45.75054618493173
],
[
10.784895417653106,
45.766785869990876
],
[
10.795600563047682,
45.77954562253735
],
[
10.814631932638042,
45.80390515012607
],
[
10.825337078032618,
45.81086501515142
],
[
10.831284381029606,
45.81318497015987
],
[
10.834852762827797,
45.818984857680995
],
[
10.840800065824785,
45.83290458773169
],
[
10.859831435415146,
45.82710470021057
],
[
10.878862805005504,
45.818984857680995
],
[
10.888378489800683,
45.812024992655644
],
[
10.877673344406105,
45.80390515012607
],
[
10.874104962607914,
45.795785307596496
],
[
10.881241726204298,
45.7818655775458
],
[
10.885999568601889,
45.777225667528896
],
[
10.88481010800249,
45.772585757512005
],
[
10.87648388380671,
45.764465914982424
],
[
10.868157659610926,
45.76562589248665
],
[
10.865778738412132,
45.76214595997398
],
[
10.863399817213338,
45.74358631990638
],
[
10.858641974815747,
45.74358631990638
],
[
10.850315750619966,
45.73662645488103
],
[
10.84793682942117,
45.72734663484723
],
[
10.844368447622978,
45.725026679838784
],
[
10.843178987023581,
45.720386769821886
],
[
10.846747368821774,
45.71806681481343
],
[
10.872915502008517,
45.71574685980498
],
[
10.874104962607914,
45.71806681481343
],
[
10.89432579279767,
45.713426904796535
],
[
10.899083635195261,
45.708786994779636
],
[
10.910978241189234,
45.706467039771184
],
[
10.912167701788633,
45.70414708476274
],
[
10.925251768382005,
45.70066715225006
],
[
10.924062307782606,
45.69718721973739
],
[
10.912167701788633,
45.69138733221626
],
[
10.921683386583812,
45.67978755717401
],
[
10.937146374375978,
45.67398766965289
],
[
10.945472598571762,
45.67398766965289
],
[
10.946662059171159,
45.68210751218246
],
[
10.95023044096935,
45.68558744469514
],
[
10.962125046963326,
45.68558744469514
],
[
10.965693428761517,
45.69370728722471
],
[
10.972830192357902,
45.701827129754285
],
[
10.975209113556698,
45.69602724223316
],
[
10.96926181055971,
45.68790739970359
],
[
10.970451271159106,
45.683267489686685
],
[
10.979966955954286,
45.68558744469514
],
[
10.990672101348864,
45.69138733221626
],
[
10.989482640749465,
45.694867264728934
],
[
10.998998325544646,
45.69950717474583
],
[
10.994240483147056,
45.70414708476274
],
[
10.993051022547657,
45.708786994779636
],
[
10.998998325544646,
45.70762701727541
],
[
11.008514010339825,
45.71110694978808
],
[
11.012082392138018,
45.719226792317656
],
[
11.01565077393621,
45.713426904796535
],
[
11.022787537532594,
45.70530706226696
],
[
11.033492682927172,
45.70762701727541
],
[
11.041818907122954,
45.706467039771184
],
[
11.050145131318736,
45.71458688230076
],
[
11.057281894915121,
45.719226792317656
],
[
11.058471355514518,
45.71574685980498
],
[
11.07155542210789,
45.706467039771184
],
[
11.088207870499453,
45.69834719724161
],
[
11.095344634095838,
45.69370728722471
],
[
11.101291937092826,
45.69602724223316
],
[
11.12270222788198,
45.69602724223316
],
[
11.123891688481377,
45.690227354712036
],
[
11.135786294475352,
45.694867264728934
],
[
11.138165215674146,
45.708786994779636
],
[
11.153628203466313,
45.71806681481343
],
[
11.15481766406571,
45.72270672483033
],
[
11.169091191258481,
45.72850661235145
],
[
11.17860687605366,
45.73662645488103
],
[
11.177417415454261,
45.74590627491483
],
[
11.175038494255467,
45.749386207427506
],
[
11.180985797252454,
45.76214595997398
],
[
11.179796336653057,
45.766785869990876
],
[
11.175038494255467,
45.783025555050024
],
[
11.17860687605366,
45.78882544257115
],
[
11.198827706243417,
45.7818655775458
],
[
11.203585548641005,
45.78418553255425
],
[
11.194069863845826,
45.79346535258804
],
[
11.200017166842812,
45.800425217613395
],
[
11.190501482047633,
45.80274517262185
],
[
11.189312021448236,
45.81086501515142
],
[
11.191690942647032,
45.81782488017677
],
[
11.198827706243417,
45.818984857680995
],
[
11.198827706243417,
45.824784745202116
],
[
11.208343391038596,
45.829424655219015
],
[
11.219048536433172,
45.83290458773169
],
[
11.22023799703257,
45.847984295286615
],
[
11.228564221228353,
45.84914427279084
],
[
11.229753681827749,
45.85146422779929
],
[
11.23926936662293,
45.85610413781619
],
[
11.245216669619918,
45.876983732892235
],
[
11.235700984824737,
45.88046366540491
],
[
11.245216669619918,
45.88626355292604
],
[
11.255921815014492,
45.883943597917586
],
[
11.249974512017506,
45.900183282976734
],
[
11.260679657412084,
45.90482319299363
],
[
11.263058578610877,
45.917582945540104
],
[
11.271384802806661,
45.91990290054856
],
[
11.286847790598827,
45.91642296803588
],
[
11.2987423965928,
45.918742923044334
],
[
11.301121317791598,
45.92802274307813
],
[
11.2987423965928,
45.93034269808658
],
[
11.2987423965928,
45.936142585607705
],
[
11.304689699589789,
45.9268627655739
],
[
11.31301592378557,
45.93034269808658
],
[
11.318963226782557,
45.92106287805278
],
[
11.324910529779546,
45.917582945540104
],
[
11.33680513577352,
45.91642296803588
],
[
11.340373517571713,
45.91178305801898
],
[
11.345131359969301,
45.90946310301053
],
[
11.35107866296629,
45.912943035523206
],
[
11.345131359969301,
45.92106287805278
],
[
11.358215426562673,
45.92570278806968
],
[
11.357025965963278,
45.929182720582354
],
[
11.360594347761468,
45.93382263059925
],
[
11.358215426562673,
45.941942473128826
],
[
11.367731111357854,
45.941942473128826
],
[
11.377246796153033,
45.94426242813728
],
[
11.382004638550622,
45.943102450633056
],
[
11.383194099150021,
45.953542248171075
],
[
11.376057335553636,
45.960502113196426
],
[
11.37367841435484,
45.9732618657429
],
[
11.37367841435484,
45.983701663280925
],
[
11.377246796153033,
45.98486164078515
],
[
11.396278165743393,
45.98022173076825
],
[
11.406983311137969,
45.982541685776695
],
[
11.417688456532545,
45.98022173076825
],
[
11.436719826122905,
45.982541685776695
],
[
11.447424971517481,
45.98138170827247
],
[
11.454561735113867,
45.98486164078515
],
[
11.462887959309649,
45.994141460818945
],
[
11.468835262306637,
45.99762139333162
],
[
11.483108789499404,
45.99878137083584
],
[
11.487866631896996,
46.006901213365424
],
[
11.499761237890969,
46.011541123382315
],
[
11.518792607481329,
46.00922116837387
],
[
11.519982068080726,
46.011541123382315
],
[
11.539013437671084,
46.01386107839077
],
[
11.543771280068675,
46.011541123382315
],
[
11.554476425463251,
46.011541123382315
],
[
11.567560492056625,
46.005741235861194
],
[
11.572318334454213,
46.00806119086965
],
[
11.578265637451201,
46.006901213365424
],
[
11.58778132224638,
45.96978193323022
],
[
11.594918085842764,
45.972101888238676
],
[
11.615138916032521,
45.96746197822178
],
[
11.621086219029507,
45.972101888238676
],
[
11.630601903824688,
45.96978193323022
],
[
11.628222982625893,
45.960502113196426
],
[
11.637738667421072,
45.96166209070065
],
[
11.642496509818663,
45.9639820457091
],
[
11.654391115812636,
45.965142023213325
],
[
11.674611946002393,
45.965142023213325
],
[
11.686506551996368,
45.972101888238676
],
[
11.682938170198176,
45.976741798255574
],
[
11.69007493379456,
45.989501550802046
],
[
11.675801406601792,
46.00922116837387
],
[
11.6710435642042,
46.011541123382315
],
[
11.6722330248036,
46.01502105589499
],
[
11.667475182406008,
46.01734101090344
],
[
11.673422485402996,
46.019660965911896
],
[
11.681748709598779,
46.02546085343302
],
[
11.674611946002393,
46.02894078594569
],
[
11.666285721806613,
46.03706062847527
],
[
11.68055924899938,
46.04634044850906
],
[
11.684127630797573,
46.04402049350061
],
[
11.70434846098733,
46.047500426013286
],
[
11.698401157990343,
46.06026017855976
],
[
11.69007493379456,
46.06258013356821
],
[
11.686506551996368,
46.06606006608089
],
[
11.684127630797573,
46.07997979613158
],
[
11.684127630797573,
46.09273954867806
],
[
11.687696012595765,
46.09505950368651
],
[
11.70434846098733,
46.09041959366961
],
[
11.706727382186124,
46.09505950368651
],
[
11.716243066981304,
46.10317934621608
],
[
11.738842818369855,
46.10549930122453
],
[
11.751926884963227,
46.10549930122453
],
[
11.756684727360817,
46.09621948119073
],
[
11.766200412155996,
46.09853943619918
],
[
11.773337175752381,
46.106659278728756
],
[
11.778095018149973,
46.10317934621608
],
[
11.795936927140932,
46.10433932372031
],
[
11.810210454333703,
46.10201936871186
],
[
11.831620745122855,
46.107819256232986
],
[
11.835189126921048,
46.111299188745654
],
[
11.84827319351442,
46.11361914375411
],
[
11.86254672070719,
46.11477912125833
],
[
11.875630787300562,
46.118259053771006
],
[
11.885146472095741,
46.11709907626678
],
[
11.892283235692126,
46.12057900877946
],
[
11.906556762884895,
46.13449873883015
],
[
11.901798920487305,
46.136818693838606
],
[
11.910125144683088,
46.14029862635128
],
[
11.922019750677062,
46.14957844638508
],
[
11.91845136887887,
46.1553783339062
],
[
11.92320921127646,
46.16349817643577
],
[
11.929156514273448,
46.16697810894845
],
[
11.929156514273448,
46.176257928982245
],
[
11.939861659668024,
46.17277799646958
],
[
11.951756265661999,
46.170458041461124
],
[
11.9505668050626,
46.1785778839907
],
[
11.951756265661999,
46.1832177940076
],
[
11.958893029258384,
46.18437777151182
],
[
11.963650871655972,
46.19017765903295
],
[
11.962461411056575,
46.199457479066744
],
[
11.943430041466216,
46.199457479066744
],
[
11.933914356671036,
46.20525736658787
],
[
11.927967053674049,
46.20873729910054
],
[
11.926777593074652,
46.21569716412589
],
[
11.911314605282485,
46.223817006655466
],
[
11.910125144683088,
46.22613696166392
],
[
11.91369352648128,
46.23193684918504
],
[
11.927967053674049,
46.245856579235735
],
[
11.926777593074652,
46.24817653424419
],
[
11.906556762884895,
46.25629637677376
],
[
11.89466215689092,
46.25165646675686
],
[
11.88633593269514,
46.258616331782214
],
[
11.885146472095741,
46.26325624179911
],
[
11.888714853893934,
46.26789615181601
],
[
11.88633593269514,
46.27949592685826
],
[
11.870872944902972,
46.276015994345585
],
[
11.863736181306587,
46.271376084328686
],
[
11.83875750871924,
46.27021610682446
],
[
11.835189126921048,
46.276015994345585
],
[
11.826862902725267,
46.28413583687516
],
[
11.83043128452346,
46.287615769387834
],
[
11.832810205722254,
46.298055566925854
],
[
11.842325890517433,
46.30733538695966
],
[
11.831620745122855,
46.31313527448078
],
[
11.833999666321652,
46.314295251985
],
[
11.831620745122855,
46.323575072018805
],
[
11.832810205722254,
46.32589502702725
],
[
11.812589375532497,
46.3328548920526
],
[
11.8113999149331,
46.33169491454838
],
[
11.80188423013792,
46.33865477957373
],
[
11.80188423013792,
46.34445466709485
],
[
11.789989624143946,
46.34909457711175
],
[
11.780473939348767,
46.35025455461597
],
[
11.776905557550574,
46.35721441964132
],
[
11.779284478749368,
46.363014307162445
],
[
11.789989624143946,
46.364174284666674
],
[
11.797126387740331,
46.36765421717935
],
[
11.799505308939125,
46.3653342621709
],
[
11.810210454333703,
46.36649423967512
],
[
11.818536678529483,
46.37693403721315
],
[
11.832810205722254,
46.36649423967512
],
[
11.832810205722254,
46.37925399222159
],
[
11.835189126921048,
46.3838939022385
],
[
11.832810205722254,
46.38621385724694
],
[
11.835189126921048,
46.39665365478497
],
[
11.839946969318639,
46.40593347481877
],
[
11.843515351116832,
46.410573384835665
],
[
11.83875750871924,
46.41637327235679
],
[
11.847083732915024,
46.42681306989481
],
[
11.850652114713215,
46.43493291242439
],
[
11.873251866101768,
46.433772934920164
],
[
11.882767550896947,
46.440732799945515
],
[
11.889904314493332,
46.44305275495396
],
[
11.88633593269514,
46.45465252999621
],
[
11.888714853893934,
46.45697248500466
],
[
11.88633593269514,
46.46625230503846
],
[
11.875630787300562,
46.47321217006381
],
[
11.8577888783096,
46.475532125072256
],
[
11.813778836131895,
46.47785208008071
],
[
11.812589375532497,
46.48597192261028
],
[
11.814968296731292,
46.49989165266098
],
[
11.824483981526472,
46.50337158517365
],
[
11.83043128452346,
46.510331450199004
],
[
11.832810205722254,
46.510331450199004
],
[
11.851841575312612,
46.51845129272858
],
[
11.901798920487305,
46.53005106777083
],
[
11.912504065881883,
46.5335310002835
],
[
11.924398671875856,
46.53121104527505
],
[
11.927967053674049,
46.5288910902666
],
[
11.946998423264407,
46.53005106777083
],
[
11.948187883863806,
46.53585095529195
],
[
11.954135186860793,
46.54165084281308
],
[
11.989819004842715,
46.545130775325745
],
[
11.9969557684391,
46.534690977787726
],
[
11.999334689637896,
46.5335310002835
],
[
12.00647145323428,
46.540490865308854
],
[
12.021934441026447,
46.56021048288067
],
[
12.027881744023436,
46.56137046038489
],
[
12.03026066522223,
46.5706502804187
],
[
12.033829047020422,
46.57297023542715
],
[
12.035018507619819,
46.57761014544404
],
[
12.043344731815601,
46.581090077956716
],
[
12.050481495411987,
46.59384983050319
],
[
12.044534192415,
46.60776956055389
],
[
12.05286041661078,
46.611249493066566
],
[
12.051670956011383,
46.61472942557924
],
[
12.063565562005358,
46.62052931310036
],
[
12.070702325601744,
46.64140890817641
],
[
12.074270707399934,
46.64256888568064
],
[
12.067133943803551,
46.65300868321866
],
[
12.071891786201139,
46.65996854824401
],
[
12.068323404402948,
46.675048255798934
],
[
12.077839089198127,
46.67388827829471
],
[
12.089733695192102,
46.66808839077358
],
[
12.090923155791499,
46.66576843576513
],
[
12.109954525381859,
46.656488615731334
],
[
12.111143985981256,
46.65300868321866
],
[
12.121849131375832,
46.64720879569754
],
[
12.136122658568603,
46.644888840689084
],
[
12.139691040366795,
46.63908895316796
],
[
12.145638343363782,
46.634449043151065
],
[
12.158722409957154,
46.63676899815951
],
[
12.171806476550525,
46.634449043151065
],
[
12.181322161345705,
46.62168929060459
],
[
12.195595688538475,
46.62168929060459
],
[
12.19321676733968,
46.615889403083465
],
[
12.19678514913787,
46.60776956055389
],
[
12.192027306740282,
46.59500980800742
],
[
12.202732452134859,
46.598489740520094
],
[
12.21224813693004,
46.60892953805811
],
[
12.232468967119795,
46.61472942557924
],
[
12.240795191315577,
46.615889403083465
],
[
12.245553033713167,
46.62400924561304
],
[
12.247931954911962,
46.622849268108816
],
[
12.262205482104731,
46.62980913313416
],
[
12.26815278510172,
46.62632920062149
],
[
12.27172116689991,
46.62052931310036
],
[
12.295510378887858,
46.61820935809192
],
[
12.306215524282436,
46.61936933559614
],
[
12.316920669677014,
46.62400924561304
],
[
12.315731209077615,
46.62980913313416
],
[
12.341899342264359,
46.62980913313416
],
[
12.34665718466195,
46.62400924561304
],
[
12.366878014851707,
46.61936933559614
],
[
12.390667226839655,
46.627489178125714
],
[
12.37877262084568,
46.63676899815951
],
[
12.379962081445079,
46.64372886318486
],
[
12.39304614803845,
46.64256888568064
],
[
12.406130214631823,
46.64372886318486
],
[
12.415645899427002,
46.65068872821021
],
[
12.420403741824591,
46.656488615731334
],
[
12.428729966020374,
46.662288503252455
],
[
12.43467726901736,
46.669248368277806
],
[
12.453708638607718,
46.67388827829471
],
[
12.471550547598682,
46.67736821080738
],
[
12.476308389996271,
46.67968816581583
],
[
12.477497850595668,
46.67968816581583
],
[
12.48106623239386,
46.67736821080738
],
[
12.497718680785425,
46.67736821080738
],
[
12.50485544438181,
46.680848143320055
],
[
12.506044904981206,
46.67736821080738
],
[
12.516750050375784,
46.6785281883116
],
[
12.529834116969155,
46.67272830079048
],
[
12.528644656369758,
46.670408345782036
],
[
12.538160341164938,
46.66692841326936
],
[
12.547676025960119,
46.65880857073979
],
[
12.558381171354695,
46.657648593235564
],
[
12.559570631954092,
46.65416866072289
],
[
12.57027577734867,
46.65068872821021
],
[
12.613096358926978,
46.657648593235564
],
[
12.617854201324565,
46.66112852574823
],
[
12.63450664971613,
46.65416866072289
],
[
12.645211795110708,
46.651848705714436
],
[
12.667811546499259,
46.657648593235564
],
[
12.676137770695043,
46.657648593235564
],
[
12.684463994890823,
46.65532863822711
],
[
12.69041129788781,
46.656488615731334
],
[
12.701116443282388,
46.65068872821021
],
[
12.716579431074553,
46.64836877320176
],
[
12.721337273472145,
46.64140890817641
],
[
12.727284576469131,
46.640248930672186
],
[
12.732042418866722,
46.634449043151065
]
]
]
}
},
{
"type": "Feature",
"id": 6,
"properties": {
"COD_REG": 6,
"pil": 114,
"name": "FRIULI VENEZIA GIULIA",
"SHAPE_Leng": 764140.66989,
"SHAPE_Area": 7862283303.89
},
"geometry": {
"type": "MultiPolygon",
"coordinates": [
[
[
[
13.101964665279326,
45.64382825454304
],
[
13.087691138086557,
45.65194809707262
],
[
13.080554374490173,
45.654268052081065
],
[
13.085312216887761,
45.65774798459374
],
[
13.079364913890775,
45.660067939602186
],
[
13.066280847297403,
45.655428029585295
],
[
13.06271246549921,
45.65774798459374
],
[
13.067470307896802,
45.67050773714021
],
[
13.065091386698006,
45.677467602165564
],
[
13.043681095908852,
45.68558744469514
],
[
13.053196780704031,
45.69718721973739
],
[
13.044870556508249,
45.69370728722471
],
[
13.036544332312467,
45.701827129754285
],
[
13.038923253511262,
45.70994697228386
],
[
13.036544332312467,
45.72386670233456
],
[
13.028218108116686,
45.72734663484723
],
[
13.028218108116686,
45.737786432385256
],
[
13.01632350212271,
45.725026679838784
],
[
13.007997277926929,
45.72618665734301
],
[
13.009186738526326,
45.73314652236836
],
[
13.01632350212271,
45.74126636489793
],
[
13.00680781732753,
45.7447462974106
],
[
13.00204997492994,
45.75054618493173
],
[
13.005618356728133,
45.75518609494863
],
[
12.999671053731145,
45.759826004965525
],
[
13.011565659725122,
45.76098598246975
],
[
13.012755120324517,
45.7633059374782
],
[
13.00680781732753,
45.766785869990876
],
[
12.999671053731145,
45.7679458474951
],
[
12.993723750734159,
45.77606569002467
],
[
12.98420806593898,
45.777225667528896
],
[
12.981829144740185,
45.78766546506692
],
[
12.973502920544401,
45.78882544257115
],
[
12.975881841743197,
45.79346535258804
],
[
12.992534290134762,
45.79810526260495
],
[
12.991344829535365,
45.801585195117624
],
[
12.981829144740185,
45.795785307596496
],
[
12.981829144740185,
45.800425217613395
],
[
12.9746923811438,
45.80854506014297
],
[
12.978260762941993,
45.8143449476641
],
[
12.98420806593898,
45.81550492516832
],
[
12.986586987137773,
45.8097050376472
],
[
12.992534290134762,
45.81086501515142
],
[
12.993723750734159,
45.81550492516832
],
[
12.986586987137773,
45.818984857680995
],
[
12.973502920544401,
45.82014483518522
],
[
12.981829144740185,
45.824784745202116
],
[
12.977071302342594,
45.82710470021057
],
[
12.9746923811438,
45.82362476769789
],
[
12.971123999345608,
45.82826467771479
],
[
12.97945022354139,
45.83406456523592
],
[
12.967555617547415,
45.836384520244366
],
[
12.962797775149825,
45.84682431778239
],
[
12.958039932752236,
45.847984295286615
],
[
12.954471550954043,
45.84566434027816
],
[
12.95090316915585,
45.829424655219015
],
[
12.959229393351633,
45.82246479019367
],
[
12.929492878366698,
45.81782488017677
],
[
12.921166654170914,
45.83174461022747
],
[
12.915219351173928,
45.824784745202116
],
[
12.908082587577542,
45.829424655219015
],
[
12.903324745179953,
45.82826467771479
],
[
12.899756363381762,
45.82246479019367
],
[
12.893809060384774,
45.82014483518522
],
[
12.891430139185978,
45.82362476769789
],
[
12.885482836188991,
45.825944722706346
],
[
12.87715661199321,
45.824784745202116
],
[
12.870019848396826,
45.83522454274014
],
[
12.875967151393812,
45.83986445275704
],
[
12.875967151393812,
45.85030425029507
],
[
12.870019848396826,
45.84566434027816
],
[
12.860504163601645,
45.85030425029507
],
[
12.83076764861671,
45.83870447525282
],
[
12.829578188017312,
45.83522454274014
],
[
12.823630885020325,
45.836384520244366
],
[
12.818873042622734,
45.83406456523592
],
[
12.818873042622734,
45.824784745202116
],
[
12.80697843662876,
45.82014483518522
],
[
12.801031133631774,
45.824784745202116
],
[
12.798652212432978,
45.83290458773169
],
[
12.803410054830568,
45.84102443026127
],
[
12.803410054830568,
45.84566434027816
],
[
12.793894370035389,
45.84566434027816
],
[
12.791515448836593,
45.84914427279084
],
[
12.780810303442017,
45.854944160311966
],
[
12.766536776249247,
45.847984295286615
],
[
12.768915697448042,
45.84566434027816
],
[
12.759400012652861,
45.83986445275704
],
[
12.743937024860696,
45.82710470021057
],
[
12.739179182463106,
45.829424655219015
],
[
12.734421340065516,
45.836384520244366
],
[
12.72847403706853,
45.836384520244366
],
[
12.716579431074553,
45.824784745202116
],
[
12.702305903881786,
45.81550492516832
],
[
12.695169140285401,
45.807385082638746
],
[
12.674948310095644,
45.79230537508382
],
[
12.671379928297451,
45.7911453975796
],
[
12.649969637508297,
45.80274517262185
],
[
12.654727479905887,
45.807385082638746
],
[
12.647590716309502,
45.8143449476641
],
[
12.646401255710106,
45.82014483518522
],
[
12.638075031514322,
45.81782488017677
],
[
12.629748807318542,
45.82710470021057
],
[
12.632127728517336,
45.830584632723244
],
[
12.62618042552035,
45.830584632723244
],
[
12.623801504321554,
45.82826467771479
],
[
12.611906898327579,
45.83174461022747
],
[
12.605959595330592,
45.83870447525282
],
[
12.601201752933003,
45.836384520244366
],
[
12.595254449936014,
45.82710470021057
],
[
12.598822831734207,
45.82362476769789
],
[
12.59287552873722,
45.82014483518522
],
[
12.595254449936014,
45.81550492516832
],
[
12.583359843942041,
45.82130481268945
],
[
12.582170383342643,
45.825944722706346
],
[
12.573844159146862,
45.824784745202116
],
[
12.566707395550477,
45.83174461022747
],
[
12.561949553152886,
45.825944722706346
],
[
12.554812789556502,
45.83174461022747
],
[
12.557191710755298,
45.836384520244366
],
[
12.550054947158912,
45.83986445275704
],
[
12.559570631954092,
45.84566434027816
],
[
12.550054947158912,
45.85030425029507
],
[
12.553623328957105,
45.854944160311966
],
[
12.55124440775831,
45.859584070328864
],
[
12.54648656536072,
45.86306400284154
],
[
12.534591959366747,
45.86190402533731
],
[
12.529834116969155,
45.865383957849986
],
[
12.53697088056554,
45.871183845371114
],
[
12.529834116969155,
45.87814371039646
],
[
12.534591959366747,
45.88510357542181
],
[
12.521507892773375,
45.88510357542181
],
[
12.516750050375784,
45.89206344044716
],
[
12.507234365580604,
45.89902330547251
],
[
12.521507892773375,
45.90134326048096
],
[
12.523886813972169,
45.90482319299363
],
[
12.516750050375784,
45.90482319299363
],
[
12.509613286779398,
45.90946310301053
],
[
12.506044904981206,
45.91642296803588
],
[
12.508423826180003,
45.92106287805278
],
[
12.502476523183015,
45.92570278806968
],
[
12.478687311195067,
45.9268627655739
],
[
12.464413784002296,
45.93266265309503
],
[
12.464413784002296,
45.941942473128826
],
[
12.452519178008323,
45.947742360649954
],
[
12.450140256809526,
45.94426242813728
],
[
12.446571875011335,
45.947742360649954
],
[
12.438245650815553,
45.9454224056415
],
[
12.426351044821578,
45.947742360649954
],
[
12.423972123622782,
45.95586220317953
],
[
12.426351044821578,
45.96978193323022
],
[
12.428729966020374,
45.990661528306276
],
[
12.423972123622782,
45.99878137083584
],
[
12.419214281225194,
46.00806119086965
],
[
12.419214281225194,
46.01618103339922
],
[
12.415645899427002,
46.02082094341612
],
[
12.415645899427002,
46.02778080844146
],
[
12.41088805702941,
46.03358069596259
],
[
12.403751293433027,
46.03706062847527
],
[
12.406130214631823,
46.04402049350061
],
[
12.409698596430015,
46.059100201055536
],
[
12.418024820625796,
46.06026017855976
],
[
12.428729966020374,
46.07649986361891
],
[
12.445382414411938,
46.08461970614849
],
[
12.471550547598682,
46.09621948119073
],
[
12.467982165800489,
46.09853943619918
],
[
12.482255692993258,
46.10201936871186
],
[
12.487013535390847,
46.111299188745654
],
[
12.494150298987233,
46.122898963787904
],
[
12.492960838387834,
46.1275388738048
],
[
12.497718680785425,
46.129858828813255
],
[
12.49533975958663,
46.147258491376625
],
[
12.496529220186027,
46.153058378897754
],
[
12.491771377788439,
46.15769828891465
],
[
12.476308389996271,
46.164658153939996
],
[
12.465603244601695,
46.165818131444226
],
[
12.4632243234029,
46.1692980639569
],
[
12.456087559806514,
46.17161801896535
],
[
12.454898099207117,
46.17741790648647
],
[
12.447761335610732,
46.17973786149492
],
[
12.44895079621013,
46.1832177940076
],
[
12.443003493213142,
46.20061745657097
],
[
12.445382414411938,
46.20409738908364
],
[
12.44419295381254,
46.20873729910054
],
[
12.432298347818566,
46.209897276604764
],
[
12.413266978228206,
46.20757732159632
],
[
12.400182911634834,
46.211057254108994
],
[
12.40256183283363,
46.21569716412589
],
[
12.408509135830617,
46.21917709663857
],
[
12.404940754032424,
46.22729693916814
],
[
12.39304614803845,
46.228456916672364
],
[
12.372825317848694,
46.223817006655466
],
[
12.369256936050501,
46.228456916672364
],
[
12.359741251255322,
46.22961689417659
],
[
12.353793948258335,
46.23657675920194
],
[
12.344278263463154,
46.241216669218836
],
[
12.338330960466166,
46.23889671421039
],
[
12.333573118068578,
46.247016556739965
],
[
12.333573118068578,
46.253976421765316
],
[
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment