Skip to content

Instantly share code, notes, and snippets.

@DamonOehlman
Forked from max-mapper/index.html
Created March 14, 2011 00:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DamonOehlman/868587 to your computer and use it in GitHub Desktop.
Save DamonOehlman/868587 to your computer and use it in GitHub Desktop.
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>API Builder</title>
<style type="text/css">
path, circle {
stroke: black;
stroke-width: 2px;
fill: transparent;
}
.map_container {
width: 100%;
height: 90%;
}
.slider {
position: absolute !important;
bottom: 10px;
margin: 10px 20px;
width: 200px;
}
</style>
<link rel="stylesheet" href="http://taitems.github.com/Aristo-jQuery-UI-Theme/css/Aristo/jquery-ui-1.8.7.custom.css" type="text/css" media="screen" title="no title" charset="utf-8">
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.5/jquery.min.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.7/jquery-ui.min.js"></script>
<script type="text/javascript" src="https://github.com/simplegeo/polymaps/raw/master/polymaps.js"></script>
<script type="text/javascript">
var map, po, currentData, dataz;
var simplify = function (source, kink)
/* source[] array of geojson points */
/* kink in metres, kinks above this depth kept */
/* kink depth is the height of the triangle abc where a-b and b-c are two consecutive line segments */
{
kink = kink || 20;
source = source.map(function(o) { return {lng: function() { return o[0]}, lat: function() {return o[1]}} });
var n_source, n_stack, n_dest, start, end, i, sig;
var dev_sqr, max_dev_sqr, band_sqr;
var x12, y12, d12, x13, y13, d13, x23, y23, d23;
var F = ((Math.PI / 180.0) * 0.5 );
var index = new Array(); /* aray of indexes of source points to include in the reduced line */
var sig_start = new Array(); /* indices of start & end of working section */
var sig_end = new Array();
/* check for simple cases */
if ( source.length < 3 )
return(source); /* one or two points */
/* more complex case. initialize stack */
n_source = source.length;
band_sqr = kink * 360.0 / (2.0 * Math.PI * 6378137.0); /* Now in degrees */
band_sqr *= band_sqr;
n_dest = 0;
sig_start[0] = 0;
sig_end[0] = n_source-1;
n_stack = 1;
/* while the stack is not empty ... */
while ( n_stack > 0 ){
/* ... pop the top-most entries off the stacks */
start = sig_start[n_stack-1];
end = sig_end[n_stack-1];
n_stack--;
if ( (end - start) > 1 ){ /* any intermediate points ? */
/* ... yes, so find most deviant intermediate point to
either side of line joining start & end points */
x12 = (source[end].lng() - source[start].lng());
y12 = (source[end].lat() - source[start].lat());
if (Math.abs(x12) > 180.0)
x12 = 360.0 - Math.abs(x12);
x12 *= Math.cos(F * (source[end].lat() + source[start].lat()));/* use avg lat to reduce lng */
d12 = (x12*x12) + (y12*y12);
for ( i = start + 1, sig = start, max_dev_sqr = -1.0; i < end; i++ ){
x13 = (source[i].lng() - source[start].lng());
y13 = (source[i].lat() - source[start].lat());
if (Math.abs(x13) > 180.0)
x13 = 360.0 - Math.abs(x13);
x13 *= Math.cos (F * (source[i].lat() + source[start].lat()));
d13 = (x13*x13) + (y13*y13);
x23 = (source[i].lng() - source[end].lng());
y23 = (source[i].lat() - source[end].lat());
if (Math.abs(x23) > 180.0)
x23 = 360.0 - Math.abs(x23);
x23 *= Math.cos(F * (source[i].lat() + source[end].lat()));
d23 = (x23*x23) + (y23*y23);
if ( d13 >= ( d12 + d23 ) )
dev_sqr = d23;
else if ( d23 >= ( d12 + d13 ) )
dev_sqr = d13;
else
dev_sqr = (x13 * y12 - y13 * x12) * (x13 * y12 - y13 * x12) / d12;// solve triangle
if ( dev_sqr > max_dev_sqr ){
sig = i;
max_dev_sqr = dev_sqr;
}
}
if ( max_dev_sqr < band_sqr ){ /* is there a sig. intermediate point ? */
/* ... no, so transfer current start point */
index[n_dest] = start;
n_dest++;
}
else{
/* ... yes, so push two sub-sections on stack for further processing */
n_stack++;
sig_start[n_stack-1] = sig;
sig_end[n_stack-1] = end;
n_stack++;
sig_start[n_stack-1] = start;
sig_end[n_stack-1] = sig;
}
}
else{
/* ... no intermediate points, so transfer current start point */
index[n_dest] = start;
n_dest++;
}
}
/* transfer last point */
index[n_dest] = n_source-1;
n_dest++;
/* make return array */
var r = new Array();
for(var i=0; i < n_dest; i++)
r.push(source[index[i]]);
return r.map(function(o) { return [o.lng(), o.lat()] });;
}
$(function() {
var mapel = $('div.map_container');
po = org.polymaps;
map = po.map()
.container($('.map_container')[0].appendChild(po.svg("svg")))
.center({lat: 42.3630, lon: -71.0585})
.zoom(15)
.add(po.interact())
.add(po.hash());
map.add(po.image()
.url(po.url("http://{S}tile.cloudmade.com"
+ "/d3394c6c242a4f26bb7dd4f7e132e5ff" // http://cloudmade.com/register
+ "/998/256/{Z}/{X}/{Y}.png")
.hosts(["a.", "b.", "c.", ""])));
map.add(po.compass()
.pan("none"));
var gj = data.map(function(d) {
return({"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [d]}})
})
currentData = po.geoJson()
.features( gj );
map.add( currentData );
$( ".slider" ).slider({
min: 1,
max: 100,
values: [ 1 ],
slide: function( event, ui ) {
console.log(ui.values[ 0 ]);
map.remove(currentData);
dataz = data.map(function(poly) { return simplify(poly, ui.values[ 0 ]) });
var gj = dataz.map(function(d) {
return({"type": "Feature", "geometry": {"type": "Polygon", "coordinates": [d]}})
})
currentData = po.geoJson().features( gj );
map.add( currentData );
}
});
});
var data = [[[[-71.073099,42.361184],[-71.073062,42.361181],[-71.073059,42.361195],[-71.072925,42.361184],[-71.072925,42.361175],[-71.072933,42.361061],[-71.072926,42.361001],[-71.072913,42.360941],[-71.072898,42.360888],[-71.072879,42.360835],[-71.072846,42.360771],[-71.072821,42.360729],[-71.072814,42.36072],[-71.072808,42.36071],[-71.072776,42.36066],[-71.072735,42.360609],[-71.072695,42.360558],[-71.072613,42.360455],[-71.072594,42.360429],[-71.072567,42.360387],[-71.07254,42.360345],[-71.0725,42.360285],[-71.072459,42.360223],[-71.072414,42.360145],[-71.072399,42.360109],[-71.072384,42.360071],[-71.072374,42.360034],[-71.072367,42.359999],[-71.072362,42.359964],[-71.07236,42.359929],[-71.072374,42.359799],[-71.072394,42.359678],[-71.072413,42.359575],[-71.072435,42.359466],[-71.072502,42.359222],[-71.072563,42.359],[-71.072649,42.358679],[-71.072779,42.358215],[-71.072875,42.357867],[-71.072956,42.357632],[-71.073061,42.357381],[-71.073151,42.357169],[-71.073292,42.356842],[-71.073255,42.356747],[-71.073361,42.356529],[-71.073395,42.356465],[-71.073435,42.356402],[-71.073481,42.356342],[-71.073533,42.356284],[-71.073589,42.356228],[-71.073651,42.356177],[-71.073671,42.356161],[-71.073693,42.356144],[-71.073756,42.356102],[-71.073821,42.356063],[-71.073889,42.356026],[-71.073962,42.355993],[-71.074035,42.355963],[-71.074112,42.355935],[-71.07419,42.355913],[-71.074678,42.355783],[-71.077329,42.355073],[-71.077653,42.354986],[-71.078903,42.354648],[-71.078937,42.354637],[-71.079088,42.354591],[-71.079172,42.354562],[-71.079256,42.354533],[-71.079302,42.354518],[-71.079385,42.354489],[-71.079468,42.354459],[-71.079486,42.354453],[-71.079597,42.354412],[-71.079667,42.354388],[-71.079834,42.35433],[-71.079921,42.354303],[-71.080006,42.354278],[-71.080093,42.354254],[-71.08011,42.354249],[-71.080191,42.354226],[-71.080662,42.354101],[-71.080684,42.354096],[-71.080707,42.354091],[-71.080729,42.354088],[-71.080752,42.354086],[-71.080775,42.354084],[-71.080806,42.354084],[-71.080828,42.354082],[-71.080848,42.35408],[-71.08087,42.354078],[-71.08089,42.354073],[-71.080911,42.354069],[-71.080992,42.354048],[-71.081013,42.354042],[-71.081035,42.354034],[-71.081055,42.354026],[-71.081142,42.353987],[-71.081194,42.353966],[-71.081247,42.353946],[-71.081301,42.35393],[-71.081744,42.353807],[-71.084531,42.353056],[-71.084564,42.353047],[-71.085014,42.352926],[-71.085159,42.352887],[-71.085184,42.352881],[-71.085211,42.352876],[-71.085239,42.352872],[-71.085265,42.35287],[-71.085335,42.352866],[-71.085367,42.352863],[-71.085401,42.352858],[-71.085432,42.352853],[-71.085464,42.352845],[-71.085496,42.352836],[-71.085526,42.352827],[-71.085555,42.352814],[-71.085583,42.352802],[-71.085663,42.352761],[-71.08569,42.35275],[-71.085718,42.352738],[-71.085745,42.352728],[-71.085774,42.35272],[-71.086067,42.352641],[-71.086897,42.35242],[-71.086985,42.352398],[-71.087074,42.35238],[-71.087164,42.352362],[-71.087224,42.352351],[-71.087313,42.352336],[-71.087404,42.352322],[-71.08746,42.352314],[-71.08755,42.352301],[-71.087641,42.352289],[-71.087658,42.352286],[-71.087749,42.352276],[-71.087841,42.352266],[-71.087918,42.352257],[-71.088021,42.352246],[-71.088126,42.352234],[-71.088193,42.352227],[-71.088347,42.352212],[-71.089923,42.352033],[-71.090238,42.351994],[-71.090376,42.35198],[-71.09054,42.351962],[-71.090683,42.351947],[-71.090841,42.35193],[-71.090984,42.351914],[-71.091093,42.351902],[-71.091215,42.351888],[-71.091339,42.351874],[-71.091471,42.351859],[-71.091595,42.351845],[-71.091731,42.351829],[-71.091864,42.351809],[-71.091997,42.351784],[-71.0921,42.351762],[-71.092235,42.351731],[-71.092308,42.351713],[-71.09241,42.351685],[-71.092528,42.351651],[-71.092563,42.35164],[-71.092645,42.351613],[-71.092746,42.351579],[-71.092855,42.351537],[-71.092911,42.351513],[-71.092924,42.351573],[-71.092859,42.351593],[-71.092797,42.351611],[-71.092735,42.351629],[-71.092605,42.351667],[-71.092563,42.35168],[-71.092467,42.351711],[-71.092398,42.351731],[-71.092331,42.35175],[-71.092172,42.351797],[-71.092173,42.351802],[-71.092174,42.351805],[-71.092178,42.351821],[-71.092179,42.351837],[-71.09218,42.351854],[-71.09218,42.351857],[-71.09218,42.35186],[-71.092179,42.351861],[-71.092179,42.351863],[-71.092178,42.351865],[-71.092176,42.351866],[-71.092175,42.351868],[-71.092174,42.351869],[-71.092173,42.35187],[-71.092171,42.351872],[-71.092168,42.351874],[-71.092165,42.351876],[-71.092158,42.35188],[-71.092151,42.351883],[-71.092134,42.351889],[-71.092121,42.351893],[-71.092108,42.351897],[-71.09208,42.351904],[-71.09207,42.351907],[-71.092057,42.351912],[-71.092045,42.351917],[-71.092027,42.351923],[-71.092021,42.351924],[-71.092015,42.351926],[-71.092009,42.351927],[-71.091999,42.351927],[-71.091981,42.351927],[-71.091962,42.351926],[-71.09194,42.351926],[-71.091919,42.351928],[-71.091897,42.35193],[-71.091867,42.351931],[-71.091837,42.351933],[-71.091759,42.351943],[-71.091728,42.351947],[-71.091712,42.351951],[-71.09169,42.351957],[-71.091669,42.351963],[-71.091623,42.351973],[-71.091574,42.351981],[-71.091533,42.351985],[-71.091491,42.351988],[-71.091437,42.351994],[-71.091383,42.352001],[-71.091362,42.352003],[-71.091341,42.352004],[-71.091301,42.352008],[-71.091261,42.352012],[-71.091213,42.352016],[-71.091164,42.352018],[-71.091143,42.35202],[-71.091122,42.352022],[-71.0911,42.352021],[-71.09108,42.352022],[-71.091028,42.352025],[-71.090976,42.352026],[-71.090907,42.352028],[-71.090869,42.352028],[-71.090832,42.352029],[-71.090812,42.35203],[-71.090791,42.352032],[-71.090766,42.352033],[-71.090746,42.352033],[-71.090725,42.352033],[-71.09071,42.352033],[-71.090689,42.352036],[-71.090668,42.352039],[-71.090618,42.352043],[-71.090588,42.352045],[-71.090558,42.352046],[-71.090498,42.352051],[-71.090445,42.352057],[-71.090412,42.352061],[-71.090383,42.352065],[-71.090353,42.352071],[-71.090293,42.352079],[-71.09027,42.352082],[-71.090248,42.352083],[-71.090242,42.352084],[-71.089977,42.352147],[-71.089953,42.35215],[-71.089926,42.352156],[-71.089922,42.352156],[-71.089882,42.35216],[-71.089875,42.352161],[-71.089872,42.352161],[-71.089867,42.352161],[-71.089863,42.352161],[-71.089861,42.352161],[-71.089857,42.35216],[-71.089855,42.35216],[-71.089851,42.352159],[-71.08985,42.352158],[-71.089849,42.352158],[-71.089848,42.352157],[-71.089846,42.352157],[-71.089846,42.352156],[-71.089845,42.352155],[-71.089844,42.352155],[-71.089844,42.352154],[-71.089844,42.352153],[-71.089843,42.352153],[-71.089843,42.352152],[-71.089843,42.352152],[-71.089843,42.352151],[-71.089843,42.35215],[-71.089843,42.352147],[-71.089824,42.352152],[-71.089822,42.352152],[-71.089786,42.352162],[-71.08978,42.352164],[-71.089769,42.352166],[-71.089769,42.352167],[-71.089769,42.352168],[-71.089769,42.352169],[-71.089769,42.35217],[-71.089769,42.352171],[-71.089769,42.352172],[-71.089769,42.352173],[-71.089769,42.352173],[-71.089768,42.352174],[-71.089768,42.352175],[-71.089767,42.352176],[-71.089767,42.352177],[-71.089766,42.352177],[-71.089763,42.352179],[-71.089761,42.352181],[-71.089759,42.352181],[-71.089753,42.352185],[-71.089745,42.352188],[-71.089738,42.35219],[-71.089728,42.352192],[-71.08972,42.352194],[-71.08971,42.352195],[-71.089702,42.352196],[-71.089692,42.352196],[-71.089683,42.352196],[-71.089665,42.352196],[-71.089658,42.352196],[-71.089651,42.352197],[-71.089646,42.352198],[-71.089641,42.3522],[-71.089624,42.352203],[-71.089602,42.352207],[-71.089572,42.352209],[-71.089542,42.352211],[-71.089507,42.352215],[-71.08949,42.352217],[-71.089436,42.352229],[-71.089382,42.352242],[-71.089357,42.352246],[-71.089339,42.352248],[-71.089322,42.352249],[-71.089304,42.352249],[-71.089281,42.352251],[-71.089257,42.352254],[-71.089233,42.352257],[-71.089213,42.352259],[-71.089192,42.352261],[-71.089111,42.35227],[-71.089053,42.352278],[-71.088881,42.352305],[-71.08886,42.352308],[-71.08884,42.352312],[-71.0888,42.352317],[-71.088762,42.352322],[-71.088728,42.352328],[-71.088715,42.352331],[-71.0887,42.352335],[-71.088646,42.352346],[-71.088639,42.352347],[-71.088638,42.352347],[-71.088636,42.352347],[-71.088632,42.352347],[-71.088627,42.352348],[-71.088622,42.352349],[-71.088617,42.35235],[-71.088613,42.352352],[-71.088608,42.352355],[-71.088603,42.352357],[-71.088575,42.352366],[-71.088567,42.352369],[-71.088555,42.352371],[-71.088544,42.352374],[-71.088537,42.352375],[-71.088509,42.352378],[-71.088488,42.35238],[-71.088467,42.352383],[-71.088453,42.352385],[-71.088445,42.352387],[-71.088441,42.352389],[-71.088435,42.352391],[-71.088425,42.352395],[-71.088402,42.352402],[-71.088379,42.352409],[-71.088364,42.352413],[-71.088308,42.352423],[-71.088252,42.352434],[-71.088237,42.352436],[-71.08821,42.352446],[-71.088182,42.352456],[-71.088164,42.352461],[-71.088145,42.352464],[-71.088125,42.352469],[-71.088101,42.352476],[-71.088076,42.352482],[-71.088057,42.352487],[-71.088036,42.352492],[-71.088005,42.352502],[-71.087974,42.352513],[-71.087942,42.352522],[-71.087911,42.35253],[-71.08787,42.352544],[-71.087864,42.352546],[-71.087858,42.35255],[-71.087855,42.352551],[-71.08785,42.352552],[-71.087841,42.352554],[-71.087833,42.352555],[-71.087823,42.352556],[-71.087815,42.352557],[-71.087805,42.352558],[-71.087791,42.352561],[-71.08775,42.352573],[-71.087736,42.352578],[-71.087722,42.352583],[-71.08769,42.352591],[-71.087661,42.352598],[-71.087637,42.352602],[-71.087613,42.352606],[-71.087582,42.352611],[-71.087483,42.352636],[-71.087452,42.352645],[-71.087429,42.352653],[-71.087406,42.35266],[-71.087384,42.352668],[-71.087344,42.352676],[-71.08732,42.352681],[-71.087305,42.352683],[-71.087289,42.352685],[-71.087273,42.352688],[-71.087246,42.352695],[-71.087219,42.352702],[-71.0872,42.352706],[-71.08718,42.35271],[-71.087163,42.352715],[-71.087115,42.352732],[-71.087066,42.352748],[-71.087035,42.352758],[-71.087004,42.352768],[-71.086982,42.352776],[-71.086965,42.352783],[-71.086948,42.352791],[-71.086934,42.352795],[-71.086914,42.3528],[-71.086887,42.352804],[-71.086859,42.352808],[-71.086839,42.352813],[-71.086764,42.352836],[-71.086747,42.352842],[-71.086731,42.352847],[-71.086709,42.352853],[-71.086687,42.352858],[-71.086667,42.352864],[-71.08664,42.352871],[-71.086615,42.352878],[-71.086601,42.35288],[-71.086585,42.352884],[-71.086541,42.352895],[-71.086526,42.3529],[-71.086524,42.352901],[-71.086521,42.352901],[-71.086518,42.352903],[-71.086515,42.352903],[-71.086512,42.352904],[-71.086509,42.352904],[-71.086507,42.352904],[-71.086506,42.352904],[-71.086504,42.352904],[-71.086503,42.352903],[-71.086501,42.352902],[-71.086496,42.352902],[-71.086494,42.352902],[-71.086492,42.352901],[-71.08649,42.352901],[-71.086488,42.3529],[-71.086487,42.3529],[-71.086485,42.3529],[-71.086484,42.3529],[-71.086484,42.352901],[-71.086278,42.352956],[-71.086118,42.352999],[-71.085927,42.35305],[-71.085566,42.35315],[-71.085566,42.353149],[-71.085565,42.353151],[-71.085563,42.353152],[-71.085561,42.353154],[-71.085559,42.353155],[-71.085554,42.353157],[-71.085549,42.35316],[-71.085543,42.353162],[-71.085525,42.353168],[-71.085502,42.353174],[-71.085461,42.353183],[-71.085326,42.353205],[-71.085259,42.353213],[-71.085192,42.353221],[-71.085097,42.353238],[-71.085026,42.353258],[-71.084955,42.353277],[-71.084945,42.35328],[-71.084937,42.353282],[-71.084901,42.353293],[-71.084865,42.353304],[-71.084774,42.353328],[-71.084721,42.353342],[-71.084772,42.353445],[-71.084781,42.353443],[-71.084799,42.35344],[-71.084861,42.353432],[-71.084924,42.353424],[-71.084941,42.353421],[-71.084959,42.353417],[-71.084977,42.353414],[-71.085007,42.353408],[-71.08504,42.353404],[-71.085105,42.353399],[-71.085128,42.353398],[-71.085145,42.353399],[-71.085162,42.3534],[-71.085179,42.353402],[-71.085187,42.353404],[-71.085192,42.353405],[-71.085197,42.353406],[-71.085201,42.353408],[-71.085206,42.35341],[-71.08521,42.353413],[-71.085215,42.353415],[-71.085217,42.353417],[-71.085219,42.353419],[-71.085222,42.353421],[-71.085224,42.353423],[-71.085226,42.353425],[-71.085228,42.353429],[-71.08523,42.353431],[-71.085232,42.353436],[-71.085234,42.353441],[-71.085236,42.353446],[-71.085236,42.353451],[-71.085237,42.353455],[-71.085237,42.353461],[-71.085236,42.353467],[-71.085235,42.353473],[-71.085232,42.353479],[-71.08523,42.353486],[-71.085227,42.353492],[-71.085224,42.353498],[-71.08522,42.353504],[-71.085215,42.353509],[-71.085209,42.353514],[-71.085204,42.353519],[-71.085199,42.353523],[-71.085193,42.353529],[-71.085189,42.353536],[-71.085178,42.353549],[-71.085143,42.353581],[-71.085134,42.353588],[-71.085127,42.353595],[-71.085116,42.353605],[-71.085111,42.353611],[-71.085106,42.353617],[-71.085103,42.353623],[-71.085099,42.35363],[-71.085094,42.353636],[-71.085089,42.353641],[-71.085083,42.353646],[-71.085077,42.353651],[-71.085068,42.353657],[-71.085058,42.353663],[-71.085051,42.353669],[-71.085045,42.353673],[-71.085039,42.353679],[-71.085035,42.353685],[-71.085031,42.35369],[-71.085024,42.353701],[-71.085014,42.353712],[-71.085006,42.35372],[-71.084997,42.353729],[-71.084987,42.353742],[-71.084966,42.353773],[-71.084944,42.353805],[-71.084907,42.353853],[-71.084867,42.3539],[-71.08485,42.353917],[-71.084844,42.353922],[-71.084836,42.353926],[-71.084826,42.353933],[-71.084815,42.35394],[-71.084807,42.353946],[-71.084793,42.353958],[-71.08478,42.353971],[-71.084752,42.353995],[-71.084741,42.354003],[-71.08473,42.35401],[-71.084719,42.354016],[-71.084696,42.354027],[-71.084654,42.354054],[-71.084626,42.354073],[-71.084599,42.35409],[-71.08459,42.354095],[-71.08457,42.354104],[-71.084548,42.354111],[-71.084537,42.354113],[-71.084528,42.354116],[-71.084517,42.35412],[-71.084507,42.354126],[-71.084486,42.354134],[-71.084465,42.354142],[-71.084443,42.354149],[-71.084416,42.354156],[-71.084401,42.354159],[-71.084386,42.354162],[-71.084363,42.354168],[-71.084333,42.354177],[-71.084302,42.354186],[-71.084257,42.354198],[-71.08424,42.354201],[-71.084223,42.354205],[-71.084185,42.354214],[-71.084098,42.354238],[-71.084011,42.354261],[-71.083982,42.354269],[-71.083952,42.354277],[-71.083902,42.354291],[-71.08385,42.354305],[-71.083768,42.354326],[-71.083756,42.354329],[-71.083743,42.354331],[-71.083714,42.354341],[-71.083684,42.35435],[-71.083666,42.354354],[-71.083648,42.354359],[-71.083627,42.354366],[-71.083606,42.354373],[-71.083578,42.354379],[-71.083566,42.354381],[-71.083554,42.354383],[-71.083543,42.354387],[-71.083531,42.35439],[-71.083508,42.354397],[-71.083484,42.354403],[-71.083469,42.354406],[-71.083454,42.35441],[-71.083378,42.354429],[-71.083357,42.354435],[-71.083334,42.354442],[-71.083311,42.354447],[-71.083287,42.354453],[-71.0832,42.354477],[-71.083181,42.354483],[-71.083163,42.35449],[-71.08313,42.354497],[-71.083099,42.354505],[-71.083035,42.354525],[-71.08297,42.354543],[-71.082956,42.354547],[-71.082941,42.354551],[-71.08292,42.354557],[-71.082898,42.354564],[-71.082877,42.35457],[-71.082865,42.354572],[-71.082854,42.354575],[-71.08281,42.354585],[-71.082769,42.354597],[-71.082749,42.354603],[-71.082728,42.354608],[-71.082713,42.354611],[-71.082697,42.354613],[-71.082686,42.354614],[-71.082677,42.354617],[-71.082662,42.354622],[-71.082648,42.354627],[-71.082626,42.354633],[-71.082584,42.354644],[-71.082542,42.354655],[-71.082502,42.354666],[-71.082488,42.354672],[-71.082472,42.354677],[-71.082452,42.354683],[-71.082428,42.354687],[-71.082404,42.354693],[-71.08236,42.354704],[-71.082317,42.354715],[-71.082287,42.354723],[-71.082271,42.354726],[-71.082256,42.35473],[-71.082104,42.354767],[-71.082083,42.354773],[-71.082064,42.35478],[-71.082051,42.354786],[-71.082038,42.354792],[-71.082021,42.354798],[-71.082002,42.354803],[-71.081982,42.354809],[-71.081958,42.354816],[-71.081935,42.354823],[-71.08192,42.354826],[-71.081903,42.354831],[-71.08184,42.354847],[-71.081811,42.354856],[-71.081781,42.354865],[-71.081726,42.354879],[-71.081689,42.354886],[-71.081653,42.354894],[-71.081625,42.3549],[-71.081608,42.354906],[-71.08159,42.354912],[-71.081566,42.354919],[-71.081542,42.354926],[-71.081532,42.354928],[-71.081507,42.354938],[-71.081482,42.354948],[-71.081455,42.354955],[-71.081429,42.354962],[-71.08142,42.354964],[-71.081412,42.354967],[-71.081382,42.354976],[-71.081346,42.354985],[-71.081288,42.354998],[-71.081282,42.355],[-71.081248,42.355006],[-71.081199,42.355018],[-71.081151,42.355031],[-71.081122,42.355041],[-71.081094,42.35505],[-71.08108,42.355054],[-71.081065,42.355057],[-71.081051,42.355059],[-71.081027,42.355065],[-71.080994,42.355076],[-71.080962,42.355087],[-71.080939,42.355094],[-71.080905,42.355102],[-71.080884,42.355105],[-71.080863,42.355109],[-71.080846,42.355113],[-71.080808,42.355122],[-71.080793,42.355127],[-71.080779,42.355133],[-71.080763,42.355138],[-71.080748,42.355144],[-71.080731,42.355149],[-71.080713,42.355153],[-71.080687,42.355162],[-71.080674,42.355167],[-71.080661,42.355173],[-71.080639,42.35518],[-71.080625,42.355184],[-71.080609,42.355188],[-71.080592,42.355191],[-71.080585,42.355192],[-71.080583,42.355192],[-71.08058,42.355192],[-71.080578,42.355193],[-71.080576,42.355194],[-71.080574,42.355194],[-71.080569,42.355196],[-71.080563,42.355197],[-71.080557,42.355198],[-71.080545,42.355201],[-71.080458,42.355222],[-71.080312,42.355261],[-71.080291,42.355266],[-71.080277,42.355271],[-71.080263,42.355276],[-71.080243,42.355283],[-71.080224,42.355287],[-71.080204,42.355291],[-71.080183,42.355294],[-71.080164,42.355298],[-71.080128,42.355307],[-71.080101,42.355315],[-71.08006,42.355329],[-71.080019,42.355344],[-71.080003,42.355349],[-71.079975,42.355356],[-71.079947,42.355362],[-71.079863,42.355385],[-71.079829,42.355395],[-71.079812,42.355401],[-71.079796,42.355408],[-71.079778,42.355414],[-71.079748,42.355421],[-71.079719,42.355428],[-71.079692,42.355434],[-71.079668,42.355442],[-71.079644,42.355449],[-71.079626,42.355453],[-71.079609,42.355457],[-71.07959,42.355462],[-71.079544,42.355475],[-71.079512,42.355482],[-71.07948,42.35549],[-71.07945,42.355498],[-71.07943,42.355504],[-71.079409,42.355511],[-71.079382,42.355518],[-71.079355,42.355525],[-71.079269,42.355551],[-71.079255,42.355556],[-71.079241,42.355561],[-71.079222,42.355568],[-71.079201,42.355574],[-71.079184,42.355578],[-71.079142,42.355585],[-71.0791,42.355592],[-71.079084,42.355596],[-71.079065,42.355602],[-71.079045,42.355607],[-71.079023,42.355612],[-71.079,42.355618],[-71.07896,42.355628],[-71.078929,42.355638],[-71.078916,42.355643],[-71.078901,42.355648],[-71.078886,42.355652],[-71.078858,42.355658],[-71.078832,42.355664],[-71.078792,42.355674],[-71.078767,42.355682],[-71.078741,42.355691],[-71.078725,42.355695],[-71.078709,42.355698],[-71.078692,42.355704],[-71.078676,42.355708],[-71.07865,42.355714],[-71.078623,42.35572],[-71.078593,42.355729],[-71.078564,42.355738],[-71.078555,42.355741],[-71.07854,42.355743],[-71.078525,42.355746],[-71.078507,42.355751],[-71.078487,42.355756],[-71.078465,42.355762],[-71.078453,42.355763],[-71.07844,42.355766],[-71.078425,42.35577],[-71.078409,42.355778],[-71.078394,42.355784],[-71.078374,42.355789],[-71.078348,42.355795],[-71.078321,42.355801],[-71.078282,42.355811],[-71.078243,42.355822],[-71.078197,42.355837],[-71.078172,42.355847],[-71.078164,42.355852],[-71.078148,42.355861],[-71.078107,42.355893],[-71.07809,42.355907],[-71.078085,42.355912],[-71.07808,42.355916],[-71.078076,42.355921],[-71.078069,42.355925],[-71.078062,42.35593],[-71.078014,42.355951],[-71.077965,42.355969],[-71.077947,42.355976],[-71.077916,42.355985],[-71.077841,42.356003],[-71.077764,42.35602],[-71.077723,42.356031],[-71.077707,42.356036],[-71.077688,42.356043],[-71.077669,42.356051],[-71.077651,42.356056],[-71.07764,42.356058],[-71.077629,42.35606],[-71.077613,42.356062],[-71.077595,42.356061],[-71.077541,42.35606],[-71.077487,42.356057],[-71.077454,42.356056],[-71.077437,42.356056],[-71.077421,42.356057],[-71.077413,42.356058],[-71.077404,42.356059],[-71.077401,42.356061],[-71.077396,42.356062],[-71.077392,42.356062],[-71.077387,42.356062],[-71.07738,42.356063],[-71.077365,42.356067],[-71.077308,42.356084],[-71.077294,42.356088],[-71.07728,42.356092],[-71.077263,42.356095],[-71.077248,42.356099],[-71.077227,42.356105],[-71.077212,42.35611],[-71.077195,42.356115],[-71.07718,42.35612],[-71.077127,42.356132],[-71.077074,42.356145],[-71.077053,42.356152],[-71.077031,42.356158],[-71.077012,42.356163],[-71.076993,42.356168],[-71.076959,42.356178],[-71.076925,42.356187],[-71.076855,42.356205],[-71.076833,42.356209],[-71.07681,42.356214],[-71.07674,42.356233],[-71.076717,42.35624],[-71.076693,42.356248],[-71.076646,42.35626],[-71.076627,42.356265],[-71.076611,42.356267],[-71.076596,42.356271],[-71.076574,42.356276],[-71.076503,42.356295],[-71.076482,42.356302],[-71.076463,42.356309],[-71.076433,42.356317],[-71.076404,42.356324],[-71.076385,42.356331],[-71.076352,42.356342],[-71.076321,42.356354],[-71.076308,42.356361],[-71.076293,42.356367],[-71.076267,42.356377],[-71.076248,42.356384],[-71.076237,42.356387],[-71.076227,42.35639],[-71.076222,42.356392],[-71.076216,42.356395],[-71.076211,42.356398],[-71.076209,42.3564],[-71.076207,42.356402],[-71.076127,42.356442],[-71.076113,42.356449],[-71.076099,42.356455],[-71.076078,42.356467],[-71.076069,42.356471],[-71.076062,42.356476],[-71.076055,42.356483],[-71.076044,42.356491],[-71.076039,42.356495],[-71.076034,42.356499],[-71.076022,42.356507],[-71.07597,42.356535],[-71.075955,42.356543],[-71.075939,42.356552],[-71.075922,42.356563],[-71.075908,42.356575],[-71.075892,42.356588],[-71.075875,42.356602],[-71.075844,42.356626],[-71.075811,42.356649],[-71.075798,42.356661],[-71.075787,42.356672],[-71.075779,42.356682],[-71.075772,42.356692],[-71.075747,42.356716],[-71.075708,42.356752],[-71.075708,42.356753],[-71.07569,42.356767],[-71.075683,42.356773],[-71.075676,42.356777],[-71.075662,42.356789],[-71.075645,42.356804],[-71.07563,42.35682],[-71.075612,42.356834],[-71.075601,42.356841],[-71.075595,42.356845],[-71.075589,42.356849],[-71.075583,42.356855],[-71.075578,42.35686],[-71.075573,42.356866],[-71.075564,42.356876],[-71.075549,42.356892],[-71.075538,42.3569],[-71.075527,42.356908],[-71.075505,42.356931],[-71.075482,42.356954],[-71.075469,42.356965],[-71.075456,42.356977],[-71.07543,42.357002],[-71.075419,42.357016],[-71.075406,42.357028],[-71.075395,42.357036],[-71.075385,42.357043],[-71.075346,42.357076],[-71.075333,42.357088],[-71.07532,42.357098],[-71.075306,42.357108],[-71.075272,42.357128],[-71.075254,42.357137],[-71.075236,42.357146],[-71.075216,42.357153],[-71.075198,42.35716],[-71.075184,42.357165],[-71.07517,42.35717],[-71.075155,42.357175],[-71.075142,42.35718],[-71.075121,42.357188],[-71.075102,42.357191],[-71.075083,42.357195],[-71.07507,42.3572],[-71.075055,42.357204],[-71.075041,42.357209],[-71.075025,42.357212],[-71.075008,42.357215],[-71.074982,42.357218],[-71.074896,42.357229],[-71.074872,42.35723],[-71.074848,42.357232],[-71.074828,42.357235],[-71.074806,42.357237],[-71.074725,42.357243],[-71.074678,42.357245],[-71.074651,42.357245],[-71.074643,42.357245],[-71.074634,42.357244],[-71.074626,42.357242],[-71.074618,42.35724],[-71.074602,42.357235],[-71.074581,42.357226],[-71.074574,42.357224],[-71.074569,42.357221],[-71.074564,42.357218],[-71.074559,42.357216],[-71.074554,42.357212],[-71.074549,42.357207],[-71.074545,42.357201],[-71.074541,42.357196],[-71.074536,42.35719],[-71.074533,42.357184],[-71.07453,42.357178],[-71.074393,42.357188],[-71.074395,42.35719],[-71.074395,42.357196],[-71.074394,42.357203],[-71.074394,42.357209],[-71.074393,42.357214],[-71.074392,42.357218],[-71.074391,42.357221],[-71.074388,42.357227],[-71.074385,42.357232],[-71.074379,42.357239],[-71.074373,42.357247],[-71.074368,42.357252],[-71.074362,42.357258],[-71.074356,42.357263],[-71.074348,42.357268],[-71.074341,42.357274],[-71.074333,42.357278],[-71.074324,42.357282],[-71.074306,42.357288],[-71.074287,42.357293],[-71.074251,42.357305],[-71.074217,42.357316],[-71.07421,42.357319],[-71.074203,42.357322],[-71.074201,42.357324],[-71.074199,42.357326],[-71.074197,42.357328],[-71.074194,42.357334],[-71.07419,42.357339],[-71.074188,42.357345],[-71.074187,42.357351],[-71.074186,42.357354],[-71.074186,42.357357],[-71.074186,42.357361],[-71.074186,42.357365],[-71.074187,42.357369],[-71.074188,42.357375],[-71.074189,42.357377],[-71.07419,42.35738],[-71.07419,42.357384],[-71.07419,42.357386],[-71.07419,42.357389],[-71.07419,42.357392],[-71.074189,42.357396],[-71.074187,42.3574],[-71.074185,42.357404],[-71.074178,42.357416],[-71.074168,42.357428],[-71.07416,42.35744],[-71.074152,42.357452],[-71.074146,42.357464],[-71.07414,42.357473],[-71.074136,42.357481],[-71.074129,42.357492],[-71.074126,42.357504],[-71.074122,42.357516],[-71.074121,42.357528],[-71.074119,42.35754],[-71.074118,42.357547],[-71.074067,42.357677],[-71.073948,42.357652],[-71.073941,42.357654],[-71.073934,42.357655],[-71.073918,42.357658],[-71.073901,42.35766],[-71.073874,42.357662],[-71.073845,42.357665],[-71.073809,42.357671],[-71.073785,42.357675],[-71.073761,42.357681],[-71.073745,42.357685],[-71.073736,42.357688],[-71.073727,42.357692],[-71.073717,42.357696],[-71.073708,42.357701],[-71.073702,42.357704],[-71.073698,42.357708],[-71.073694,42.357711],[-71.073692,42.357713],[-71.073687,42.357719],[-71.073683,42.357724],[-71.073681,42.357727],[-71.07368,42.35773],[-71.073677,42.357734],[-71.073676,42.357737],[-71.073675,42.357742],[-71.073674,42.357745],[-71.073672,42.357749],[-71.073672,42.357752],[-71.073675,42.35776],[-71.073675,42.357762],[-71.073776,42.357784],[-71.073643,42.358082],[-71.073547,42.358058],[-71.073582,42.357976],[-71.073499,42.357959],[-71.073496,42.357968],[-71.073461,42.357961],[-71.073412,42.358078],[-71.073362,42.358203],[-71.073346,42.358246],[-71.073354,42.358248],[-71.073245,42.35853],[-71.073233,42.358528],[-71.073121,42.358811],[-71.073158,42.358821],[-71.073164,42.358881],[-71.073158,42.358884],[-71.073155,42.358887],[-71.073153,42.358889],[-71.073149,42.358895],[-71.073147,42.358901],[-71.073142,42.358913],[-71.073137,42.358928],[-71.073135,42.358943],[-71.073129,42.358979],[-71.073126,42.359022],[-71.073126,42.359035],[-71.073127,42.359045],[-71.073128,42.359055],[-71.073134,42.359074],[-71.073139,42.359093],[-71.073149,42.359115],[-71.073158,42.359133],[-71.073182,42.359176],[-71.073191,42.359187],[-71.073196,42.359191],[-71.07321,42.359203],[-71.073225,42.359215],[-71.073237,42.359223],[-71.073255,42.359234],[-71.073276,42.359243],[-71.073293,42.359251],[-71.073302,42.359255],[-71.07331,42.359259],[-71.073317,42.359262],[-71.073324,42.359274],[-71.073417,42.359296],[-71.073428,42.359253],[-71.07351,42.359278],[-71.073398,42.359528],[-71.073296,42.359701],[-71.073208,42.359945],[-71.073158,42.360036],[-71.073101,42.360198],[-71.073055,42.360197],[-71.073125,42.36022],[-71.07311,42.360259],[-71.073109,42.360337],[-71.073112,42.360381],[-71.073113,42.360397],[-71.073114,42.360404],[-71.073115,42.360412],[-71.073114,42.360424],[-71.073111,42.360438],[-71.073109,42.360451],[-71.073109,42.360457],[-71.073106,42.360484],[-71.073106,42.360512],[-71.073108,42.360553],[-71.073109,42.360594],[-71.073109,42.360608],[-71.073105,42.360634],[-71.073103,42.360659],[-71.073101,42.36069],[-71.0731,42.36072],[-71.073098,42.360753],[-71.073096,42.360786],[-71.073095,42.360848],[-71.073096,42.360914],[-71.073096,42.360979],[-71.073095,42.360989],[-71.073095,42.360998],[-71.073097,42.361017],[-71.073096,42.361035],[-71.073095,42.361062],[-71.073092,42.36109],[-71.073093,42.361109],[-71.073096,42.36112],[-71.073098,42.361128],[-71.073101,42.361136],[-71.073103,42.361143],[-71.073108,42.36115],[-71.073109,42.361152],[-71.073111,42.361155],[-71.073112,42.361158],[-71.073113,42.361161],[-71.073115,42.361166],[-71.073115,42.36117],[-71.073116,42.361175],[-71.073116,42.361181],[-71.073115,42.361186],[-71.073115,42.36119],[-71.073113,42.361198],[-71.073098,42.361197],[-71.073099,42.361184]],[[-71.08117,42.354301],[-71.081225,42.354409],[-71.081245,42.354404],[-71.081256,42.354402],[-71.081275,42.354395],[-71.081296,42.354389],[-71.081335,42.354379],[-71.081376,42.354368],[-71.081393,42.354365],[-71.081398,42.354366],[-71.081403,42.354365],[-71.081409,42.354366],[-71.081411,42.354366],[-71.081413,42.354366],[-71.081416,42.354366],[-71.081418,42.354366],[-71.081419,42.354367],[-71.081422,42.354369],[-71.081423,42.354371],[-71.081427,42.354375],[-71.081429,42.354379],[-71.081435,42.354387],[-71.08144,42.354392],[-71.081444,42.354396],[-71.081458,42.354406],[-71.081476,42.354417],[-71.081493,42.354428],[-71.081503,42.354435],[-71.081514,42.354442],[-71.081527,42.354451],[-71.081558,42.354468],[-71.081589,42.354483],[-71.081602,42.354489],[-71.08161,42.354492],[-71.081617,42.354495],[-71.081632,42.354498],[-71.081654,42.354502],[-71.081674,42.354505],[-71.081694,42.354509],[-71.081712,42.354514],[-71.081728,42.354516],[-71.081746,42.354519],[-71.081763,42.35452],[-71.08178,42.354521],[-71.081797,42.354521],[-71.081828,42.35452],[-71.081861,42.354517],[-71.081901,42.354512],[-71.081917,42.35451],[-71.081937,42.354506],[-71.081959,42.3545],[-71.081972,42.354497],[-71.081986,42.354492],[-71.081999,42.35449],[-71.082011,42.354486],[-71.082096,42.354463],[-71.082118,42.354456],[-71.082126,42.354453],[-71.082134,42.35445],[-71.082151,42.354444],[-71.082177,42.354438],[-71.082205,42.354432],[-71.082271,42.354415],[-71.082288,42.35441],[-71.082303,42.354404],[-71.082324,42.354399],[-71.082343,42.354394],[-71.082368,42.354386],[-71.082394,42.354378],[-71.082423,42.354371],[-71.082451,42.354364],[-71.082477,42.354357],[-71.082502,42.354349],[-71.082516,42.354346],[-71.082531,42.354342],[-71.082583,42.354327],[-71.082634,42.354311],[-71.082668,42.354303],[-71.082702,42.354295],[-71.082721,42.35429],[-71.082739,42.354285],[-71.082773,42.354277],[-71.082805,42.354269],[-71.082823,42.354264],[-71.082838,42.354259],[-71.082852,42.354254],[-71.082874,42.354248],[-71.082897,42.354243],[-71.082942,42.354232],[-71.08296,42.354226],[-71.082978,42.35422],[-71.083012,42.354211],[-71.083031,42.354207],[-71.083051,42.354202],[-71.083101,42.354187],[-71.083152,42.354172],[-71.08317,42.354168],[-71.083185,42.354164],[-71.083201,42.354162],[-71.08322,42.354157],[-71.083244,42.354149],[-71.083269,42.354142],[-71.083293,42.354135],[-71.083318,42.354129],[-71.083335,42.354124],[-71.08335,42.35412],[-71.083373,42.354114],[-71.083396,42.354109],[-71.083469,42.354089],[-71.083487,42.354084],[-71.083507,42.354077],[-71.08353,42.354071],[-71.083553,42.354066],[-71.083585,42.354056],[-71.083616,42.354046],[-71.083701,42.354025],[-71.083714,42.354021],[-71.083728,42.354018],[-71.083749,42.354012],[-71.083768,42.354007],[-71.083782,42.354004],[-71.083796,42.354],[-71.08382,42.353993],[-71.083843,42.353986],[-71.083869,42.35398],[-71.083895,42.353974],[-71.083921,42.353967],[-71.083962,42.353956],[-71.084003,42.353945],[-71.084028,42.353939],[-71.084054,42.353932],[-71.084078,42.353924],[-71.084101,42.353916],[-71.084137,42.353907],[-71.084174,42.353897],[-71.084194,42.353891],[-71.084213,42.353885],[-71.084248,42.353875],[-71.084283,42.353865],[-71.084307,42.353857],[-71.08432,42.353851],[-71.084342,42.353841],[-71.084364,42.353829],[-71.084376,42.353821],[-71.084384,42.353816],[-71.084393,42.35381],[-71.084401,42.353802],[-71.084411,42.353794],[-71.084419,42.353788],[-71.084429,42.353781],[-71.08444,42.353772],[-71.084454,42.353756],[-71.084475,42.353731],[-71.084491,42.353709],[-71.0845,42.353692],[-71.08451,42.353672],[-71.084521,42.353638],[-71.084528,42.353615],[-71.084531,42.353599],[-71.084532,42.353583],[-71.084531,42.353558],[-71.084529,42.353538],[-71.084527,42.35353],[-71.084526,42.353526],[-71.084524,42.353521],[-71.084524,42.35352],[-71.084524,42.353518],[-71.084524,42.353516],[-71.084524,42.353515],[-71.084526,42.353514],[-71.084527,42.353513],[-71.084527,42.353513],[-71.084528,42.353513],[-71.084529,42.353512],[-71.084529,42.353511],[-71.084545,42.353506],[-71.084707,42.353463],[-71.084713,42.353462],[-71.084717,42.353461],[-71.084665,42.353356],[-71.084656,42.353361],[-71.084652,42.353363],[-71.084644,42.353365],[-71.084637,42.353367],[-71.084635,42.353368],[-71.084631,42.353368],[-71.084629,42.353368],[-71.084625,42.353368],[-71.084614,42.353368],[-71.084601,42.353369],[-71.084588,42.353372],[-71.084565,42.353376],[-71.084541,42.353383],[-71.084517,42.353391],[-71.084504,42.353394],[-71.08449,42.353397],[-71.084477,42.353399],[-71.084475,42.353398],[-71.084472,42.353398],[-71.08447,42.353398],[-71.084461,42.353392],[-71.084454,42.353387],[-71.084447,42.35338],[-71.084435,42.353369],[-71.084423,42.353357],[-71.084369,42.353322],[-71.084346,42.353306],[-71.084335,42.353301],[-71.084324,42.353296],[-71.084301,42.353286],[-71.084277,42.353278],[-71.084247,42.353269],[-71.084217,42.353261],[-71.084186,42.353255],[-71.084169,42.353253],[-71.084145,42.35325],[-71.084121,42.353248],[-71.084097,42.353249],[-71.084034,42.353256],[-71.083993,42.353262],[-71.083964,42.353269],[-71.083934,42.353276],[-71.083923,42.353279],[-71.083911,42.353281],[-71.0839,42.353285],[-71.083889,42.353288],[-71.083867,42.353296],[-71.083843,42.353303],[-71.083809,42.353311],[-71.083774,42.35332],[-71.083735,42.35333],[-71.083695,42.35334],[-71.083687,42.353342],[-71.083679,42.353344],[-71.083633,42.353357],[-71.083592,42.353368],[-71.083552,42.353381],[-71.083534,42.353385],[-71.083515,42.35339],[-71.083499,42.353394],[-71.083482,42.353398],[-71.08347,42.353401],[-71.083457,42.353404],[-71.083444,42.353408],[-71.083431,42.353411],[-71.083422,42.353412],[-71.083414,42.353414],[-71.083405,42.353417],[-71.083398,42.353419],[-71.083383,42.353426],[-71.083355,42.353434],[-71.083313,42.353446],[-71.083256,42.35346],[-71.0832,42.353474],[-71.083186,42.353478],[-71.083173,42.353482],[-71.083148,42.353488],[-71.083121,42.353494],[-71.083088,42.353504],[-71.083077,42.353508],[-71.083065,42.353513],[-71.083031,42.353521],[-71.083018,42.353524],[-71.083005,42.353527],[-71.082939,42.353543],[-71.082918,42.35355],[-71.082896,42.353557],[-71.082866,42.353565],[-71.082835,42.353573],[-71.082823,42.353577],[-71.082811,42.353581],[-71.082781,42.353587],[-71.082751,42.353594],[-71.082712,42.353605],[-71.082674,42.353616],[-71.082664,42.353617],[-71.082656,42.353619],[-71.082634,42.353626],[-71.082612,42.353633],[-71.082593,42.353638],[-71.082575,42.353644],[-71.082561,42.353649],[-71.082546,42.353654],[-71.082539,42.353657],[-71.082528,42.353659],[-71.082517,42.353661],[-71.082496,42.353666],[-71.082453,42.353677],[-71.082419,42.353687],[-71.082384,42.353697],[-71.082356,42.353703],[-71.082328,42.35371],[-71.082307,42.353717],[-71.082285,42.353724],[-71.082269,42.353727],[-71.082254,42.353731],[-71.082185,42.353749],[-71.082131,42.353765],[-71.082076,42.353781],[-71.082058,42.353785],[-71.082041,42.353789],[-71.082026,42.353794],[-71.082012,42.353798],[-71.081961,42.353812],[-71.081931,42.353818],[-71.081901,42.353825],[-71.08179,42.353855],[-71.081778,42.353858],[-71.081766,42.353862],[-71.081724,42.353871],[-71.081682,42.353881],[-71.081667,42.353885],[-71.081648,42.353892],[-71.081629,42.353898],[-71.0816,42.353906],[-71.081571,42.353913],[-71.081564,42.353915],[-71.081561,42.353917],[-71.081557,42.353919],[-71.081553,42.353921],[-71.081544,42.353925],[-71.081533,42.353929],[-71.081523,42.353934],[-71.081516,42.353937],[-71.081509,42.353942],[-71.081497,42.35395],[-71.081469,42.35397],[-71.081459,42.353978],[-71.081445,42.353993],[-71.081422,42.354023],[-71.081402,42.35405],[-71.081389,42.354071],[-71.081378,42.354091],[-71.081368,42.354115],[-71.08136,42.354145],[-71.081353,42.354176],[-71.08135,42.354208],[-71.081351,42.354228],[-71.081352,42.35423],[-71.081353,42.354232],[-71.081353,42.354233],[-71.081354,42.354234],[-71.081354,42.354236],[-71.081354,42.354238],[-71.081354,42.35424],[-71.081354,42.354242],[-71.081354,42.354243],[-71.081354,42.354245],[-71.081353,42.354247],[-71.081353,42.354249],[-71.081349,42.35425],[-71.081347,42.354252],[-71.081316,42.354263],[-71.081271,42.354276],[-71.081259,42.354278],[-71.081248,42.35428],[-71.081224,42.354286],[-71.081212,42.354291],[-71.081199,42.354294],[-71.081183,42.354298],[-71.08117,42.354301]],[[-71.077529,42.355353],[-71.077581,42.355462],[-71.077598,42.355457],[-71.077631,42.355451],[-71.077691,42.355441],[-71.077728,42.355436],[-71.077739,42.355435],[-71.077756,42.355434],[-71.077816,42.355434],[-71.077841,42.355435],[-71.077893,42.35544],[-71.077911,42.355442],[-71.077948,42.35545],[-71.078066,42.355481],[-71.078092,42.35549],[-71.078117,42.355498],[-71.078158,42.355508],[-71.078198,42.355516],[-71.078219,42.355519],[-71.078234,42.355521],[-71.078257,42.355523],[-71.078281,42.355524],[-71.078302,42.355524],[-71.07832,42.355522],[-71.078352,42.355518],[-71.078421,42.355506],[-71.078438,42.355501],[-71.078504,42.355483],[-71.078533,42.355474],[-71.078561,42.355465],[-71.078666,42.355435],[-71.078702,42.355425],[-71.078717,42.355422],[-71.078731,42.355419],[-71.078759,42.355411],[-71.078782,42.355402],[-71.078806,42.355394],[-71.078819,42.35539],[-71.078842,42.355384],[-71.078866,42.355378],[-71.078915,42.355366],[-71.078941,42.355359],[-71.078966,42.355352],[-71.079,42.355343],[-71.079034,42.355335],[-71.079059,42.355328],[-71.079083,42.355322],[-71.079098,42.355319],[-71.079113,42.355316],[-71.079136,42.355309],[-71.079158,42.355302],[-71.079181,42.355296],[-71.079204,42.35529],[-71.07927,42.355273],[-71.079332,42.355253],[-71.079392,42.355234],[-71.079491,42.355207],[-71.079522,42.3552],[-71.079552,42.355193],[-71.079592,42.355182],[-71.0796,42.35518],[-71.079618,42.355174],[-71.079637,42.355169],[-71.079681,42.355159],[-71.079724,42.355149],[-71.079736,42.355145],[-71.079748,42.355142],[-71.079772,42.355137],[-71.079796,42.355132],[-71.079824,42.355125],[-71.079852,42.355117],[-71.079872,42.355113],[-71.079892,42.355108],[-71.079951,42.355091],[-71.080009,42.355073],[-71.080033,42.355068],[-71.080057,42.355062],[-71.080115,42.355047],[-71.080198,42.355025],[-71.080226,42.355016],[-71.080239,42.355012],[-71.080251,42.355006],[-71.080274,42.355],[-71.080298,42.354996],[-71.080302,42.354995],[-71.080341,42.354984],[-71.080353,42.35498],[-71.080366,42.354977],[-71.080384,42.354972],[-71.080402,42.354968],[-71.080473,42.354947],[-71.080491,42.35494],[-71.080509,42.354934],[-71.080534,42.354926],[-71.080548,42.354923],[-71.080563,42.354919],[-71.080583,42.354912],[-71.080604,42.354906],[-71.080623,42.3549],[-71.080642,42.354895],[-71.08066,42.354889],[-71.080674,42.354883],[-71.080684,42.354878],[-71.080701,42.354869],[-71.080715,42.35486],[-71.080728,42.35485],[-71.08074,42.354841],[-71.080753,42.354824],[-71.080776,42.354793],[-71.080786,42.354777],[-71.080796,42.354752],[-71.080809,42.354713],[-71.080812,42.354698],[-71.080813,42.354692],[-71.080813,42.354679],[-71.080813,42.354665],[-71.080812,42.35464],[-71.080814,42.354625],[-71.080815,42.354616],[-71.080817,42.354608],[-71.08082,42.3546],[-71.080822,42.354594],[-71.080826,42.354587],[-71.080829,42.354581],[-71.080834,42.354576],[-71.080838,42.354572],[-71.080841,42.354568],[-71.080845,42.354566],[-71.08085,42.354561],[-71.080856,42.354558],[-71.080863,42.354554],[-71.080869,42.354551],[-71.080881,42.354546],[-71.080893,42.354541],[-71.080923,42.354528],[-71.080954,42.354514],[-71.080972,42.354507],[-71.08099,42.3545],[-71.081051,42.354472],[-71.081084,42.354458],[-71.081097,42.35445],[-71.08111,42.354443],[-71.081126,42.354437],[-71.081166,42.354423],[-71.081112,42.354316],[-71.081111,42.354316],[-71.081076,42.354327],[-71.081029,42.35434],[-71.081008,42.354345],[-71.080986,42.354351],[-71.080962,42.354357],[-71.080939,42.354364],[-71.080922,42.354367],[-71.080905,42.354371],[-71.080888,42.354373],[-71.08087,42.354378],[-71.080833,42.354387],[-71.080796,42.354398],[-71.080769,42.354403],[-71.080744,42.354408],[-71.080727,42.354412],[-71.080696,42.354422],[-71.080666,42.354431],[-71.080638,42.354439],[-71.08061,42.354447],[-71.080572,42.354463],[-71.080532,42.354479],[-71.080509,42.354488],[-71.080496,42.354492],[-71.080483,42.354497],[-71.080465,42.354504],[-71.080449,42.354512],[-71.080433,42.35452],[-71.080418,42.354526],[-71.080409,42.354529],[-71.080403,42.35453],[-71.080397,42.354531],[-71.080384,42.354534],[-71.080367,42.354538],[-71.080334,42.354549],[-71.080301,42.35456],[-71.080287,42.354566],[-71.080273,42.354574],[-71.080259,42.354581],[-71.080248,42.354585],[-71.080236,42.354589],[-71.080225,42.354594],[-71.080213,42.354597],[-71.080206,42.354598],[-71.080202,42.354599],[-71.080197,42.3546],[-71.08019,42.354603],[-71.080179,42.354607],[-71.08017,42.354612],[-71.08016,42.354617],[-71.080153,42.354621],[-71.080146,42.354626],[-71.080138,42.35463],[-71.08013,42.354634],[-71.080121,42.354637],[-71.080118,42.354638],[-71.080114,42.35464],[-71.080111,42.354641],[-71.080107,42.354641],[-71.080102,42.354642],[-71.080099,42.354641],[-71.080094,42.354641],[-71.08009,42.354641],[-71.080087,42.354641],[-71.080083,42.354641],[-71.080078,42.354639],[-71.080073,42.354638],[-71.080073,42.354637],[-71.080072,42.354637],[-71.080072,42.354636],[-71.080071,42.354636],[-71.08007,42.354636],[-71.08007,42.354635],[-71.080069,42.354635],[-71.080067,42.354635],[-71.080066,42.354635],[-71.080065,42.354635],[-71.080064,42.354635],[-71.080065,42.354637],[-71.07988,42.354683],[-71.079698,42.354731],[-71.079703,42.354748],[-71.079717,42.354776],[-71.079524,42.354823],[-71.079513,42.354798],[-71.079507,42.354782],[-71.079278,42.354846],[-71.079142,42.354882],[-71.07914,42.354879],[-71.07914,42.354879],[-71.079138,42.354879],[-71.079138,42.35488],[-71.079138,42.354881],[-71.079138,42.354882],[-71.079138,42.354883],[-71.079137,42.354884],[-71.079136,42.354886],[-71.079135,42.354887],[-71.079134,42.354888],[-71.079132,42.35489],[-71.079129,42.354892],[-71.079125,42.354894],[-71.079122,42.354895],[-71.079118,42.354897],[-71.079114,42.354899],[-71.079111,42.3549],[-71.079102,42.354902],[-71.079071,42.354909],[-71.07904,42.354915],[-71.079001,42.354924],[-71.078904,42.354947],[-71.078887,42.354952],[-71.078866,42.354958],[-71.078847,42.354964],[-71.078757,42.35499],[-71.078748,42.354992],[-71.078702,42.355008],[-71.078655,42.355023],[-71.078627,42.355031],[-71.078599,42.35504],[-71.078564,42.355051],[-71.078528,42.355062],[-71.07851,42.355068],[-71.078482,42.355074],[-71.078454,42.355079],[-71.078426,42.355086],[-71.078392,42.355097],[-71.078357,42.355107],[-71.07833,42.355114],[-71.078301,42.355121],[-71.078272,42.355126],[-71.078244,42.35513],[-71.078218,42.355136],[-71.0782,42.355141],[-71.078186,42.355145],[-71.078173,42.355149],[-71.078155,42.355155],[-71.078138,42.355159],[-71.078107,42.355166],[-71.078074,42.355172],[-71.078049,42.355178],[-71.077993,42.355195],[-71.077935,42.355212],[-71.07791,42.355218],[-71.077883,42.355224],[-71.077813,42.355243],[-71.077789,42.355251],[-71.077765,42.355258],[-71.077729,42.355269],[-71.077693,42.355279],[-71.077679,42.355283],[-71.077674,42.355286],[-71.07767,42.355287],[-71.077665,42.35529],[-71.077653,42.355297],[-71.07764,42.355303],[-71.077626,42.355309],[-71.077612,42.355314],[-71.077595,42.355321],[-71.077566,42.355335],[-71.077539,42.355349],[-71.077529,42.355353]],[[-71.075647,42.356049],[-71.075655,42.356044],[-71.075662,42.356041],[-71.07567,42.356038],[-71.075685,42.356033],[-71.075723,42.356016],[-71.075761,42.356],[-71.075807,42.355983],[-71.07582,42.355978],[-71.075833,42.355974],[-71.075846,42.355969],[-71.075858,42.355963],[-71.075871,42.355959],[-71.075883,42.355954],[-71.075891,42.355951],[-71.0759,42.355947],[-71.075925,42.35594],[-71.075952,42.355932],[-71.075978,42.355925],[-71.076006,42.355918],[-71.076097,42.355892],[-71.076109,42.355888],[-71.076122,42.355884],[-71.076139,42.355879],[-71.076157,42.355874],[-71.076174,42.355868],[-71.076191,42.355862],[-71.076209,42.355856],[-71.076243,42.355849],[-71.076275,42.355842],[-71.076344,42.355826],[-71.076381,42.355816],[-71.076412,42.355807],[-71.076444,42.355797],[-71.076462,42.355792],[-71.076487,42.355787],[-71.076511,42.355781],[-71.076591,42.355762],[-71.076601,42.355758],[-71.076613,42.355755],[-71.076654,42.355746],[-71.07666,42.355746],[-71.076666,42.355745],[-71.076672,42.355744],[-71.076678,42.355743],[-71.076684,42.355741],[-71.07669,42.355739],[-71.076695,42.355737],[-71.076699,42.355735],[-71.076701,42.355733],[-71.076713,42.355728],[-71.076724,42.355723],[-71.076736,42.35572],[-71.076748,42.355716],[-71.07676,42.355714],[-71.076774,42.355712],[-71.076844,42.355692],[-71.076858,42.355687],[-71.076871,42.355683],[-71.076917,42.355671],[-71.076962,42.35566],[-71.076991,42.355652],[-71.077019,42.355644],[-71.07705,42.355637],[-71.07707,42.355634],[-71.077089,42.355629],[-71.077118,42.355621],[-71.077147,42.355613],[-71.077202,42.355599],[-71.077226,42.355593],[-71.07725,42.355587],[-71.07726,42.355584],[-71.077268,42.355582],[-71.077275,42.355578],[-71.077292,42.355571],[-71.077305,42.355566],[-71.077319,42.355561],[-71.077333,42.355555],[-71.077369,42.355539],[-71.077407,42.355522],[-71.077438,42.355508],[-71.077484,42.355489],[-71.077502,42.355482],[-71.077521,42.355476],[-71.077534,42.355472],[-71.077483,42.355369],[-71.077423,42.355381],[-71.077373,42.35539],[-71.077322,42.355398],[-71.077304,42.355401],[-71.077286,42.355405],[-71.077252,42.355409],[-71.07722,42.355413],[-71.077104,42.355432],[-71.077089,42.355435],[-71.077076,42.355439],[-71.077064,42.355444],[-71.077037,42.355454],[-71.077001,42.355465],[-71.076949,42.355479],[-71.076922,42.355485],[-71.076894,42.355492],[-71.076813,42.355512],[-71.07679,42.355519],[-71.076753,42.355531],[-71.076715,42.355543],[-71.0767,42.355548],[-71.076668,42.355556],[-71.076652,42.355558],[-71.076635,42.355562],[-71.076613,42.355568],[-71.076591,42.355574],[-71.076565,42.355579],[-71.076541,42.355584],[-71.076521,42.355591],[-71.076515,42.355593],[-71.07651,42.355597],[-71.076498,42.355602],[-71.076485,42.355608],[-71.076471,42.355614],[-71.076462,42.355617],[-71.076453,42.35562],[-71.076449,42.355621],[-71.076443,42.355622],[-71.076433,42.355622],[-71.076418,42.355623],[-71.076403,42.355624],[-71.076393,42.355625],[-71.076364,42.355632],[-71.076335,42.35564],[-71.076316,42.355646],[-71.076298,42.355652],[-71.076279,42.355659],[-71.07621,42.355679],[-71.07618,42.355686],[-71.07615,42.355693],[-71.076116,42.355704],[-71.076082,42.355715],[-71.076044,42.355723],[-71.076007,42.35573],[-71.075982,42.355737],[-71.075938,42.355749],[-71.075896,42.355763],[-71.075864,42.355774],[-71.075843,42.355783],[-71.075821,42.355795],[-71.075799,42.355806],[-71.075767,42.35582],[-71.075758,42.355824],[-71.075744,42.355828],[-71.075731,42.355832],[-71.075712,42.355839],[-71.075685,42.35585],[-71.075659,42.355861],[-71.075641,42.355869],[-71.075628,42.355872],[-71.075614,42.355877],[-71.075599,42.355882],[-71.075589,42.355887],[-71.075581,42.35589],[-71.075572,42.355895],[-71.075553,42.355909],[-71.075534,42.355923],[-71.075525,42.355927],[-71.075509,42.355935],[-71.075494,42.355942],[-71.075474,42.355955],[-71.075454,42.355967],[-71.075443,42.355972],[-71.075432,42.355979],[-71.075368,42.356018],[-71.075356,42.356026],[-71.075345,42.356034],[-71.075337,42.356038],[-71.075328,42.356042],[-71.075322,42.356046],[-71.075316,42.35605],[-71.075306,42.356058],[-71.075297,42.356064],[-71.075277,42.356074],[-71.075256,42.356085],[-71.07524,42.356095],[-71.075219,42.35611],[-71.075204,42.356122],[-71.07519,42.356134],[-71.075175,42.356145],[-71.07516,42.356156],[-71.075143,42.356171],[-71.075132,42.35618],[-71.075122,42.35619],[-71.075108,42.356201],[-71.075093,42.356213],[-71.07508,42.356224],[-71.075071,42.356233],[-71.075064,42.356242],[-71.075057,42.356252],[-71.075049,42.356261],[-71.075042,42.356269],[-71.075014,42.356299],[-71.075012,42.356301],[-71.074993,42.356315],[-71.074978,42.356324],[-71.074965,42.356331],[-71.074953,42.356337],[-71.074929,42.356352],[-71.074911,42.356366],[-71.074893,42.356379],[-71.074879,42.356389],[-71.074866,42.356399],[-71.074851,42.35641],[-71.074826,42.356431],[-71.074808,42.356449],[-71.074798,42.356461],[-71.074793,42.356467],[-71.07479,42.356474],[-71.074784,42.356481],[-71.07478,42.356484],[-71.074775,42.356488],[-71.074767,42.356496],[-71.074761,42.356503],[-71.074756,42.356509],[-71.074744,42.356521],[-71.074732,42.356532],[-71.074709,42.356556],[-71.074677,42.356592],[-71.074666,42.356608],[-71.074654,42.356624],[-71.07463,42.356656],[-71.074619,42.356667],[-71.074609,42.356678],[-71.0746,42.356692],[-71.074596,42.356698],[-71.074592,42.356704],[-71.074584,42.356719],[-71.074543,42.35677],[-71.074533,42.356783],[-71.074522,42.356794],[-71.074512,42.356807],[-71.074505,42.356818],[-71.074497,42.35683],[-71.074483,42.356846],[-71.074469,42.356862],[-71.074458,42.356879],[-71.074446,42.356897],[-71.074432,42.356916],[-71.074419,42.356935],[-71.074413,42.356944],[-71.074408,42.356954],[-71.0744,42.356967],[-71.074396,42.356972],[-71.074392,42.356978],[-71.074388,42.356989],[-71.074383,42.357007],[-71.074375,42.357045],[-71.074373,42.357067],[-71.074371,42.357088],[-71.074371,42.357103],[-71.074373,42.357115],[-71.074379,42.357135],[-71.074383,42.357147],[-71.074523,42.35714],[-71.074525,42.357133],[-71.074526,42.357128],[-71.074527,42.357125],[-71.07453,42.35712],[-71.074532,42.357117],[-71.074534,42.357112],[-71.074538,42.357109],[-71.074542,42.357103],[-71.074547,42.357099],[-71.074553,42.357095],[-71.074557,42.35709],[-71.074565,42.357086],[-71.074571,42.357081],[-71.074577,42.357079],[-71.074592,42.357071],[-71.074608,42.357066],[-71.074626,42.357061],[-71.074641,42.357057],[-71.074656,42.357054],[-71.074674,42.357048],[-71.074692,42.357043],[-71.074722,42.357035],[-71.074755,42.357028],[-71.074789,42.35702],[-71.074807,42.357014],[-71.07482,42.357009],[-71.074833,42.357005],[-71.074869,42.356993],[-71.074904,42.356983],[-71.074921,42.356977],[-71.074945,42.356967],[-71.074968,42.356956],[-71.075001,42.356938],[-71.075032,42.356917],[-71.075045,42.356908],[-71.075054,42.356901],[-71.075067,42.356888],[-71.075077,42.356877],[-71.075085,42.356867],[-71.075091,42.356855],[-71.075095,42.35685],[-71.075102,42.356835],[-71.075107,42.35682],[-71.075111,42.356807],[-71.075113,42.356795],[-71.075114,42.356783],[-71.075115,42.356758],[-71.075114,42.356722],[-71.075111,42.356711],[-71.075104,42.356687],[-71.075099,42.356663],[-71.075096,42.356654],[-71.075095,42.356645],[-71.075086,42.356613],[-71.075077,42.356581],[-71.075074,42.356569],[-71.075065,42.356507],[-71.075062,42.356475],[-71.075063,42.356464],[-71.075064,42.356458],[-71.075065,42.356451],[-71.075066,42.356444],[-71.075071,42.356435],[-71.075076,42.356426],[-71.075087,42.356409],[-71.075099,42.356394],[-71.075109,42.356383],[-71.075128,42.356367],[-71.075157,42.356338],[-71.07516,42.356336],[-71.075172,42.356325],[-71.075183,42.356316],[-71.075195,42.356308],[-71.075207,42.3563],[-71.075242,42.35628],[-71.075279,42.356261],[-71.075304,42.356249],[-71.07533,42.356238],[-71.075338,42.356233],[-71.075348,42.356227],[-71.075356,42.356221],[-71.075374,42.356208],[-71.075392,42.356198],[-71.07541,42.356188],[-71.075424,42.356179],[-71.075432,42.356173],[-71.075441,42.356166],[-71.075454,42.356157],[-71.075468,42.356149],[-71.075483,42.356141],[-71.075517,42.356121],[-71.07555,42.356101],[-71.075564,42.356094],[-71.075566,42.356093],[-71.075568,42.356091],[-71.075571,42.356091],[-71.075574,42.356089],[-71.075577,42.356087],[-71.075578,42.356085],[-71.075581,42.356083],[-71.075588,42.356078],[-71.075595,42.356074],[-71.075605,42.356068],[-71.075617,42.356063],[-71.075626,42.356059],[-71.075637,42.356054],[-71.075647,42.356049]]],[[-71.06982,42.365177],[-71.069996,42.364791],[-71.070224,42.364336],[-71.07054,42.363719],[-71.071051,42.363405],[-71.071721,42.36296],[-71.072223,42.362552],[-71.072485,42.362245],[-71.072709,42.36187],[-71.072795,42.36118],[-71.073062,42.361196],[-71.073076,42.361481],[-71.073076,42.361487],[-71.073076,42.361488],[-71.073076,42.361491],[-71.073076,42.361493],[-71.073076,42.361496],[-71.073076,42.361497],[-71.073076,42.361499],[-71.073075,42.361502],[-71.073074,42.361504],[-71.073073,42.361506],[-71.073072,42.361508],[-71.07307,42.36151],[-71.073068,42.361513],[-71.073065,42.361515],[-71.073064,42.361517],[-71.073061,42.361519],[-71.073058,42.36152],[-71.073056,42.361522],[-71.073045,42.361548],[-71.073036,42.361574],[-71.073028,42.3616],[-71.073021,42.361626],[-71.073015,42.361653],[-71.073012,42.361679],[-71.073008,42.361706],[-71.073006,42.361733],[-71.073006,42.36176],[-71.073007,42.361787],[-71.073009,42.361813],[-71.073012,42.36184],[-71.073017,42.361867],[-71.073023,42.361893],[-71.07303,42.361919],[-71.073039,42.361946],[-71.073048,42.361972],[-71.073059,42.361997],[-71.07308,42.362053],[-71.073091,42.362074],[-71.0731,42.362096],[-71.073109,42.362118],[-71.073117,42.362139],[-71.073122,42.362162],[-71.07313,42.362184],[-71.073133,42.362207],[-71.073138,42.362229],[-71.073139,42.362252],[-71.073141,42.362275],[-71.073141,42.362298],[-71.073141,42.362321],[-71.073139,42.362343],[-71.073135,42.362366],[-71.073132,42.362389],[-71.073127,42.362411],[-71.073121,42.362434],[-71.073073,42.362751],[-71.073073,42.362773],[-71.073072,42.362795],[-71.073072,42.362817],[-71.073069,42.362839],[-71.073066,42.36286],[-71.073061,42.362882],[-71.073056,42.362904],[-71.073049,42.362925],[-71.072916,42.363719],[-71.072903,42.363769],[-71.072888,42.363819],[-71.072871,42.363869],[-71.072852,42.363918],[-71.07283,42.363967],[-71.072806,42.364015],[-71.072779,42.364063],[-71.072751,42.364109],[-71.07272,42.364156],[-71.072687,42.364201],[-71.072652,42.364245],[-71.072615,42.364288],[-71.072576,42.364331],[-71.072534,42.364372],[-71.072491,42.364412],[-71.072447,42.364451],[-71.0724,42.364489],[-71.072351,42.364526],[-71.072301,42.364561],[-71.072249,42.364595],[-71.072196,42.364628],[-71.072141,42.364659],[-71.072084,42.364689],[-71.072027,42.364718],[-71.071968,42.364744],[-71.071908,42.36477],[-71.071845,42.364793],[-71.071783,42.364815],[-71.07172,42.364836],[-71.071656,42.364855],[-71.07159,42.364872],[-71.071524,42.364887],[-71.071407,42.364913],[-71.0713,42.364935],[-71.071193,42.364959],[-71.071172,42.364966],[-71.071146,42.364972],[-71.07112,42.364977],[-71.071094,42.364981],[-71.071067,42.364985],[-71.071042,42.364988],[-71.071014,42.364991],[-71.070988,42.364993],[-71.070986,42.364994],[-71.070984,42.364996],[-71.070983,42.364997],[-71.070981,42.364999],[-71.07098,42.365001],[-71.070979,42.365002],[-71.070978,42.365004],[-71.070977,42.365006],[-71.070977,42.365008],[-71.070977,42.365009],[-71.070975,42.365011],[-71.070974,42.365013],[-71.070974,42.365015],[-71.070974,42.365017],[-71.070973,42.365019],[-71.070973,42.365021],[-71.070973,42.365023],[-71.070973,42.365025],[-71.070973,42.365027],[-71.070973,42.365029],[-71.070973,42.365031],[-71.070421,42.364881],[-71.070103,42.365546],[-71.070102,42.365549],[-71.070082,42.365611],[-71.070307,42.365711],[-71.07008,42.365991],[-71.069131,42.367028],[-71.0686,42.366767],[-71.06853,42.366661],[-71.068592,42.366539],[-71.069116,42.366101],[-71.069374,42.365889],[-71.069488,42.365776],[-71.069602,42.365602],[-71.069602,42.365594],[-71.06982,42.365177]],[[-71.069704,42.368833],[-71.069703,42.368835],[-71.069698,42.368836],[-71.068474,42.368935],[-71.067665,42.369],[-71.067803,42.36894],[-71.068165,42.368693],[-71.068354,42.368534],[-71.068383,42.368554],[-71.068431,42.368585],[-71.06846,42.368604],[-71.068536,42.368582],[-71.068526,42.368529],[-71.068526,42.368428],[-71.068538,42.368393],[-71.068505,42.368381],[-71.06853,42.368354],[-71.068566,42.36831],[-71.068636,42.368245],[-71.068712,42.368201],[-71.068799,42.368169],[-71.068892,42.368152],[-71.069021,42.368152],[-71.069084,42.368162],[-71.069173,42.368189],[-71.06924,42.368222],[-71.069323,42.368264],[-71.069328,42.368292],[-71.069394,42.368394],[-71.069389,42.368474],[-71.069362,42.368555],[-71.069295,42.368676],[-71.069248,42.368708],[-71.069321,42.368763],[-71.069376,42.368731],[-71.069399,42.368714],[-71.069481,42.368752],[-71.069595,42.368625],[-71.069575,42.368614],[-71.069708,42.36846],[-71.069956,42.368596],[-71.069704,42.368833]],[[-71.063298,42.357617],[-71.063294,42.357616],[-71.063291,42.357616],[-71.063288,42.357616],[-71.063284,42.357615],[-71.06328,42.357614],[-71.063278,42.357614],[-71.063274,42.357613],[-71.063272,42.357612],[-71.063268,42.357611],[-71.063266,42.35761],[-71.063262,42.357609],[-71.06326,42.357608],[-71.063256,42.357606],[-71.063254,42.357605],[-71.06325,42.357604],[-71.063249,42.357602],[-71.063246,42.357601],[-71.063244,42.357599],[-71.063241,42.357598],[-71.063238,42.357596],[-71.063237,42.357594],[-71.062204,42.356602],[-71.062199,42.356599],[-71.062195,42.356596],[-71.062191,42.356593],[-71.062187,42.35659],[-71.062183,42.356586],[-71.062179,42.356583],[-71.062176,42.356579],[-71.062173,42.356576],[-71.06217,42.356572],[-71.062167,42.356568],[-71.062164,42.356564],[-71.062161,42.356561],[-71.062158,42.356556],[-71.062157,42.356552],[-71.062155,42.356548],[-71.062153,42.356544],[-71.062153,42.35654],[-71.06215,42.356536],[-71.062149,42.356531],[-71.062148,42.356527],[-71.062148,42.356523],[-71.062147,42.356518],[-71.062147,42.356514],[-71.062146,42.356509],[-71.062146,42.356505],[-71.062147,42.356501],[-71.062147,42.356496],[-71.062148,42.356492],[-71.062149,42.356488],[-71.062151,42.356483],[-71.062151,42.356479],[-71.062153,42.356475],[-71.062156,42.356471],[-71.062157,42.356467],[-71.062159,42.356463],[-71.062162,42.356459],[-71.062164,42.356454],[-71.062166,42.356451],[-71.062169,42.356447],[-71.062172,42.356443],[-71.062176,42.356439],[-71.062179,42.356436],[-71.062182,42.356433],[-71.062186,42.356429],[-71.062191,42.356426],[-71.063383,42.355223],[-71.063406,42.355197],[-71.063426,42.355171],[-71.063446,42.355145],[-71.063463,42.355118],[-71.06348,42.355091],[-71.063496,42.355063],[-71.063814,42.354448],[-71.064198,42.353666],[-71.064247,42.353569],[-71.06429,42.353471],[-71.06433,42.353371],[-71.064365,42.353271],[-71.064393,42.353169],[-71.064611,42.352501],[-71.064612,42.352499],[-71.064612,42.352498],[-71.064613,42.352496],[-71.064614,42.352494],[-71.064616,42.352492],[-71.064616,42.35249],[-71.064617,42.352488],[-71.064618,42.352486],[-71.064619,42.352485],[-71.064622,42.352483],[-71.064622,42.352481],[-71.064624,42.352479],[-71.064625,42.352478],[-71.064626,42.352476],[-71.064629,42.352475],[-71.064631,42.352473],[-71.064632,42.352472],[-71.064634,42.352471],[-71.064636,42.352469],[-71.064639,42.352468],[-71.06464,42.352467],[-71.064643,42.352466],[-71.064645,42.352464],[-71.064647,42.352463],[-71.064649,42.352462],[-71.064652,42.352461],[-71.064654,42.35246],[-71.064657,42.352459],[-71.064659,42.352459],[-71.064661,42.352458],[-71.064664,42.352457],[-71.064666,42.352457],[-71.064669,42.352456],[-71.064671,42.352456],[-71.064673,42.352455],[-71.064677,42.352455],[-71.064679,42.352455],[-71.064682,42.352454],[-71.064685,42.352454],[-71.064688,42.352454],[-71.06469,42.352454],[-71.064693,42.352454],[-71.064696,42.352454],[-71.064697,42.352454],[-71.064701,42.352455],[-71.064703,42.352455],[-71.065636,42.352512],[-71.065286,42.353232],[-71.066068,42.353244],[-71.066901,42.352588],[-71.067153,42.352603],[-71.067158,42.352603],[-71.067164,42.352603],[-71.067169,42.352603],[-71.067173,42.352603],[-71.067179,42.352604],[-71.067184,42.352604],[-71.067189,42.352605],[-71.067194,42.352605],[-71.067199,42.352606],[-71.067203,42.352607],[-71.067209,42.352608],[-71.067214,42.35261],[-71.067219,42.352611],[-71.067223,42.352613],[-71.067227,42.352614],[-71.067233,42.352616],[-71.067237,42.352618],[-71.067242,42.35262],[-71.067247,42.352622],[-71.06725,42.352624],[-71.067254,42.352626],[-71.067259,42.352629],[-71.067262,42.352631],[-71.067266,42.352634],[-71.067269,42.352636],[-71.067273,42.352639],[-71.067276,42.352642],[-71.06728,42.352645],[-71.067282,42.352648],[-71.067286,42.352651],[-71.067288,42.352654],[-71.067291,42.352658],[-71.067294,42.352661],[-71.067296,42.352664],[-71.067298,42.352668],[-71.068326,42.354479],[-71.069199,42.356023],[-71.069201,42.356027],[-71.069203,42.35603],[-71.069205,42.356034],[-71.069207,42.356038],[-71.069209,42.356041],[-71.06921,42.356045],[-71.069211,42.356049],[-71.069212,42.356053],[-71.069212,42.356057],[-71.069214,42.356061],[-71.069214,42.356064],[-71.069215,42.356068],[-71.069215,42.356072],[-71.069215,42.356076],[-71.069215,42.35608],[-71.069213,42.356084],[-71.069213,42.356088],[-71.069213,42.356092],[-71.069212,42.356096],[-71.069211,42.356099],[-71.06921,42.356103],[-71.069208,42.356107],[-71.069207,42.356111],[-71.069205,42.356114],[-71.069202,42.356118],[-71.069201,42.356122],[-71.069199,42.356125],[-71.069196,42.356129],[-71.069194,42.356132],[-71.069192,42.356136],[-71.069188,42.356139],[-71.069185,42.356142],[-71.069182,42.356145],[-71.069178,42.356148],[-71.069175,42.356151],[-71.069171,42.356154],[-71.069167,42.356157],[-71.069164,42.356159],[-71.06916,42.356162],[-71.069156,42.356164],[-71.06915,42.356167],[-71.069147,42.356169],[-71.069143,42.356171],[-71.069138,42.356173],[-71.069134,42.356175],[-71.069129,42.356177],[-71.069124,42.356179],[-71.069119,42.35618],[-71.069114,42.356181],[-71.069109,42.356183],[-71.069103,42.356184],[-71.069099,42.356185],[-71.069094,42.356186],[-71.069089,42.356187],[-71.069084,42.356187],[-71.064902,42.35713],[-71.064711,42.357174],[-71.064523,42.357223],[-71.064336,42.357277],[-71.064153,42.357335],[-71.063359,42.357606],[-71.063355,42.357607],[-71.063353,42.357608],[-71.063349,42.357609],[-71.063347,42.357611],[-71.063343,42.357612],[-71.06334,42.357612],[-71.063337,42.357613],[-71.063335,42.357614],[-71.063331,42.357615],[-71.063327,42.357615],[-71.063324,42.357616],[-71.063321,42.357616],[-71.063318,42.357616],[-71.063314,42.357617],[-71.06331,42.357617],[-71.063308,42.357617],[-71.063304,42.357617],[-71.063301,42.357617],[-71.063298,42.357617]],[[-71.068949,42.365438],[-71.068783,42.365642],[-71.068707,42.365717],[-71.068188,42.365408],[-71.067703,42.365295],[-71.0672,42.3652],[-71.066416,42.365073],[-71.066393,42.365205],[-71.065873,42.365097],[-71.065349,42.364988],[-71.065218,42.364846],[-71.065093,42.364712],[-71.065253,42.364206],[-71.064746,42.364092],[-71.064733,42.364124],[-71.063573,42.36388],[-71.063715,42.3636],[-71.064512,42.363782],[-71.064896,42.363852],[-71.065062,42.36339],[-71.065014,42.363246],[-71.065055,42.363294],[-71.065098,42.363317],[-71.065205,42.363334],[-71.065412,42.363381],[-71.065331,42.3636],[-71.065371,42.363767],[-71.065403,42.364004],[-71.06519,42.364604],[-71.065465,42.36466],[-71.066237,42.364832],[-71.0665,42.364922],[-71.067117,42.365044],[-71.067167,42.364897],[-71.06778,42.365046],[-71.067913,42.365198],[-71.068949,42.365438]],[[-71.06881,42.35877],[-71.068806,42.358769],[-71.068802,42.358769],[-71.068799,42.358769],[-71.068795,42.358768],[-71.068792,42.358767],[-71.068788,42.358767],[-71.068786,42.358766],[-71.068782,42.358765],[-71.06878,42.358764],[-71.068776,42.358763],[-71.068772,42.358762],[-71.068769,42.358761],[-71.068766,42.358759],[-71.068763,42.358758],[-71.06876,42.358757],[-71.068758,42.358755],[-71.068756,42.358754],[-71.068752,42.358752],[-71.068748,42.35875],[-71.068747,42.358748],[-71.068744,42.358747],[-71.068742,42.358745],[-71.06874,42.358743],[-71.068738,42.358741],[-71.068736,42.358739],[-71.068734,42.358737],[-71.068732,42.358734],[-71.068731,42.358732],[-71.068728,42.35873],[-71.068727,42.358728],[-71.068725,42.358725],[-71.068725,42.358723],[-71.068723,42.358721],[-71.068721,42.358718],[-71.06872,42.358716],[-71.068719,42.358713],[-71.068717,42.358711],[-71.068597,42.35812],[-71.068597,42.358119],[-71.068597,42.358116],[-71.068597,42.358115],[-71.068597,42.358113],[-71.068597,42.358111],[-71.068595,42.35811],[-71.068595,42.358109],[-71.068597,42.358106],[-71.068598,42.358104],[-71.068599,42.358101],[-71.0686,42.358099],[-71.068601,42.358098],[-71.068601,42.358097],[-71.068603,42.358094],[-71.068605,42.358093],[-71.068608,42.358091],[-71.068608,42.358089],[-71.068611,42.358088],[-71.068614,42.358086],[-71.068614,42.358085],[-71.068617,42.358084],[-71.068618,42.358083],[-71.068621,42.358082],[-71.068623,42.358081],[-71.068624,42.358081],[-71.068628,42.35808],[-71.06863,42.358079],[-71.068633,42.358079],[-71.068768,42.358062],[-71.068769,42.358062],[-71.068774,42.358063],[-71.068776,42.358063],[-71.068777,42.358064],[-71.06878,42.358064],[-71.068781,42.358065],[-71.068783,42.358066],[-71.068786,42.358067],[-71.068788,42.358069],[-71.068791,42.35807],[-71.068791,42.358071],[-71.068793,42.358072],[-71.068794,42.358073],[-71.068796,42.358075],[-71.068798,42.358077],[-71.068799,42.358079],[-71.068801,42.358081],[-71.068802,42.358083],[-71.068803,42.358084],[-71.068803,42.358085],[-71.068805,42.358087],[-71.068921,42.358687],[-71.068921,42.358689],[-71.068921,42.358692],[-71.068921,42.358694],[-71.068921,42.358697],[-71.068921,42.358699],[-71.068921,42.358702],[-71.068921,42.358705],[-71.068921,42.358707],[-71.068919,42.35871],[-71.068918,42.358712],[-71.068918,42.358715],[-71.068916,42.358717],[-71.068914,42.35872],[-71.068914,42.358722],[-71.068913,42.358724],[-71.068911,42.358727],[-71.06891,42.358729],[-71.068908,42.358731],[-71.068906,42.358734],[-71.068903,42.358736],[-71.068903,42.358738],[-71.0689,42.35874],[-71.068897,42.358742],[-71.068896,42.358744],[-71.068894,42.358746],[-71.068891,42.358748],[-71.068889,42.358749],[-71.068887,42.358751],[-71.068884,42.358753],[-71.068881,42.358754],[-71.068878,42.358756],[-71.068875,42.358758],[-71.068872,42.358759],[-71.068868,42.35876],[-71.068866,42.358761],[-71.068863,42.358763],[-71.06886,42.358764],[-71.068856,42.358764],[-71.068853,42.358766],[-71.06885,42.358766],[-71.068847,42.358767],[-71.068843,42.358768],[-71.06884,42.358768],[-71.068837,42.358769],[-71.068834,42.358769],[-71.06883,42.358769],[-71.068826,42.35877],[-71.068823,42.35877],[-71.068819,42.35877],[-71.068816,42.35877],[-71.068812,42.35877],[-71.06881,42.35877]],[[-71.065663,42.367776],[-71.065689,42.367742],[-71.065726,42.367749],[-71.065762,42.367754],[-71.065801,42.367759],[-71.065839,42.367763],[-71.065877,42.367766],[-71.065915,42.367768],[-71.065953,42.367768],[-71.065992,42.367768],[-71.06603,42.367767],[-71.066068,42.367765],[-71.066106,42.367762],[-71.066145,42.367758],[-71.066181,42.367752],[-71.066219,42.367746],[-71.066256,42.367739],[-71.066293,42.367732],[-71.066329,42.367723],[-71.066365,42.367713],[-71.0664,42.367702],[-71.066435,42.36769],[-71.06647,42.367678],[-71.066474,42.367676],[-71.06705,42.367451],[-71.067154,42.367409],[-71.067404,42.367305],[-71.06798,42.367058],[-71.067984,42.367057],[-71.068155,42.366978],[-71.068346,42.36707],[-71.068135,42.367316],[-71.067463,42.367605],[-71.066991,42.367813],[-71.066271,42.368063],[-71.065565,42.368191],[-71.065535,42.368055],[-71.065541,42.368026],[-71.065549,42.367997],[-71.065559,42.367968],[-71.06557,42.367939],[-71.065582,42.367911],[-71.065596,42.367883],[-71.065612,42.367856],[-71.065627,42.367828],[-71.065644,42.367802],[-71.065663,42.367776]],[[-71.067286,42.360393],[-71.067434,42.36039],[-71.067438,42.36053],[-71.067441,42.360637],[-71.067298,42.360641],[-71.067298,42.360659],[-71.067192,42.360661],[-71.067189,42.360615],[-71.067184,42.360522],[-71.067238,42.36052],[-71.067295,42.360518],[-71.067286,42.360393]],[[-71.065885,42.359118],[-71.066284,42.359116],[-71.066288,42.359277],[-71.065895,42.359286],[-71.065885,42.359118]],[[[-71.064687,42.36547],[-71.064196,42.364957],[-71.064365,42.364489],[-71.064583,42.364529],[-71.064733,42.364124],[-71.064743,42.364094],[-71.065256,42.364202],[-71.06509,42.364715],[-71.065349,42.364988],[-71.065873,42.365097],[-71.065787,42.365338],[-71.065677,42.365318],[-71.065363,42.365491],[-71.065269,42.365469],[-71.065159,42.365692],[-71.064891,42.365605],[-71.064757,42.365527],[-71.064687,42.36547]]],[[[-71.064272,42.37116],[-71.064236,42.37105],[-71.06388,42.37106],[-71.063673,42.371059],[-71.063398,42.371148],[-71.063222,42.37114],[-71.063162,42.371019],[-71.063183,42.370973],[-71.063341,42.370915],[-71.063644,42.370905],[-71.063933,42.370906],[-71.063993,42.370786],[-71.064053,42.370786],[-71.064446,42.370677],[-71.064714,42.370558],[-71.065745,42.37133],[-71.065708,42.371407],[-71.065535,42.371769],[-71.065408,42.372],[-71.065206,42.372158],[-71.065169,42.372207],[-71.065124,42.372234],[-71.065415,42.371774],[-71.065412,42.371555],[-71.065012,42.371311],[-71.064724,42.37125],[-71.064272,42.37116]]],[[-71.065005,42.372045],[-71.064964,42.372034],[-71.06485,42.372043],[-71.064701,42.372033],[-71.063677,42.371528],[-71.063151,42.371301],[-71.063145,42.371301],[-71.063186,42.371286],[-71.063321,42.371266],[-71.063571,42.371232],[-71.063787,42.371218],[-71.063977,42.371203],[-71.064193,42.371219],[-71.064578,42.371255],[-71.064794,42.371302],[-71.064881,42.371337],[-71.06503,42.371388],[-71.065137,42.371458],[-71.065225,42.371524],[-71.065291,42.371594],[-71.065319,42.371665],[-71.065318,42.371739],[-71.06529,42.37185],[-71.065248,42.371915],[-71.065181,42.371979],[-71.065093,42.37203],[-71.065005,42.372045]],[[-71.064772,42.365887],[-71.064147,42.365901],[-71.064142,42.365772],[-71.064253,42.365668],[-71.064412,42.365586],[-71.064512,42.36554],[-71.064599,42.365627],[-71.064791,42.365739],[-71.064772,42.365887]],[[-71.06149,42.369434],[-71.061916,42.369323],[-71.062382,42.369389],[-71.063324,42.369409],[-71.063941,42.369991],[-71.063789,42.370056],[-71.062837,42.370416],[-71.062309,42.370692],[-71.06215,42.370808],[-71.062016,42.370849],[-71.061964,42.370838],[-71.061828,42.370783],[-71.061667,42.370705],[-71.061626,42.370674],[-71.061436,42.370536],[-71.061007,42.370141],[-71.06086,42.369921],[-71.061078,42.369836],[-71.061216,42.369699],[-71.061284,42.369561],[-71.061272,42.369467],[-71.06149,42.369434]],[[-71.063503,42.35951],[-71.063616,42.359501],[-71.063771,42.361058],[-71.063647,42.361065],[-71.063503,42.35951]],[[-71.062906,42.358551],[-71.063408,42.358484],[-71.063692,42.359391],[-71.062982,42.359423],[-71.062906,42.358551]],[[-71.063342,42.359991],[-71.063546,42.35998],[-71.063545,42.36012],[-71.063365,42.360128],[-71.063365,42.360099],[-71.063362,42.36009],[-71.063362,42.360058],[-71.063357,42.360041],[-71.06335,42.360018],[-71.063342,42.359991]],[[-71.063181,42.361933],[-71.063119,42.363072],[-71.062901,42.363186],[-71.062717,42.36312],[-71.062386,42.363128],[-71.062086,42.363059],[-71.062434,42.362303],[-71.062637,42.362062],[-71.062728,42.362077],[-71.062832,42.362236],[-71.063067,42.36219],[-71.063093,42.362014],[-71.06311,42.361927],[-71.063181,42.361933]],[[-71.062763,42.371822],[-71.062754,42.371823],[-71.062741,42.37183],[-71.062732,42.37184],[-71.06273,42.371854],[-71.062548,42.371744],[-71.06268,42.371612],[-71.062732,42.371584],[-71.06274,42.371582],[-71.062748,42.371581],[-71.06276,42.371583],[-71.06277,42.371587],[-71.062782,42.371596],[-71.062788,42.371602],[-71.062803,42.371626],[-71.06284,42.371624],[-71.062856,42.37176],[-71.062852,42.371784],[-71.062839,42.371801],[-71.062819,42.371813],[-71.062795,42.371819],[-71.062775,42.371821],[-71.062763,42.371822]],[[-71.062076,42.361529],[-71.062168,42.361307],[-71.062315,42.361323],[-71.06238,42.361336],[-71.062441,42.361339],[-71.062517,42.361345],[-71.062522,42.361345],[-71.062527,42.361345],[-71.062533,42.361345],[-71.062537,42.361345],[-71.062541,42.361345],[-71.062546,42.361346],[-71.062551,42.361346],[-71.062555,42.361347],[-71.062561,42.361348],[-71.062565,42.361349],[-71.06257,42.36135],[-71.062575,42.361351],[-71.062579,42.361353],[-71.062584,42.361354],[-71.062588,42.361356],[-71.062593,42.361358],[-71.062597,42.361359],[-71.062601,42.361361],[-71.062605,42.361363],[-71.062609,42.361366],[-71.062613,42.361368],[-71.062617,42.36137],[-71.06262,42.361373],[-71.062623,42.361375],[-71.062626,42.361378],[-71.06263,42.361381],[-71.062633,42.361383],[-71.062636,42.361386],[-71.062638,42.361389],[-71.062642,42.361393],[-71.062644,42.361396],[-71.062646,42.361399],[-71.062647,42.361402],[-71.06265,42.361405],[-71.062652,42.361409],[-71.062653,42.361412],[-71.062655,42.361416],[-71.062656,42.361419],[-71.062657,42.361422],[-71.062658,42.361426],[-71.062659,42.36143],[-71.062661,42.361433],[-71.06266,42.361437],[-71.06266,42.361441],[-71.06266,42.361444],[-71.06266,42.361448],[-71.06266,42.361451],[-71.062651,42.361477],[-71.06263,42.361526],[-71.062606,42.361576],[-71.062581,42.361624],[-71.062553,42.361671],[-71.062523,42.361718],[-71.06249,42.361764],[-71.06246,42.361804],[-71.062076,42.361529]],[[-71.06156,42.360324],[-71.061666,42.359775],[-71.062059,42.359766],[-71.062068,42.359844],[-71.061864,42.35985],[-71.061874,42.359988],[-71.062598,42.359988],[-71.062592,42.360346],[-71.06156,42.360324]],[[-71.061269,42.371761],[-71.061926,42.371307],[-71.061947,42.371296],[-71.061973,42.371288],[-71.061997,42.371285],[-71.062022,42.371287],[-71.06204,42.37129],[-71.062065,42.371299],[-71.062446,42.371453],[-71.062468,42.371466],[-71.062481,42.371482],[-71.062485,42.371497],[-71.062484,42.371511],[-71.062471,42.371533],[-71.061935,42.37207],[-71.061915,42.372082],[-71.061904,42.372086],[-71.061878,42.372089],[-71.061865,42.372088],[-71.061853,42.372086],[-71.061841,42.372082],[-71.061277,42.371838],[-71.061266,42.371827],[-71.061256,42.371815],[-71.061251,42.371796],[-71.061256,42.371777],[-71.061269,42.371761]],[[-71.06104,42.357546],[-71.061796,42.356826],[-71.061945,42.356969],[-71.062013,42.357034],[-71.062103,42.357118],[-71.062192,42.357203],[-71.062283,42.357287],[-71.062324,42.357327],[-71.062469,42.357468],[-71.062381,42.357519],[-71.062361,42.357531],[-71.062117,42.357756],[-71.061965,42.357899],[-71.061811,42.35786],[-71.061562,42.357798],[-71.06143,42.357765],[-71.061063,42.357672],[-71.061105,42.357571],[-71.06104,42.357546]],[[-71.06186,42.368023],[-71.061683,42.368067],[-71.061658,42.368143],[-71.060957,42.368241],[-71.060877,42.367622],[-71.060805,42.367396],[-71.060733,42.367278],[-71.060624,42.367168],[-71.060829,42.367077],[-71.06186,42.368023]],[[-71.061343,42.360192],[-71.061342,42.360192],[-71.061342,42.360192],[-71.060751,42.360183],[-71.060734,42.360169],[-71.060702,42.36014],[-71.060671,42.360109],[-71.060639,42.360078],[-71.060611,42.360046],[-71.060573,42.360005],[-71.060538,42.359963],[-71.060502,42.359921],[-71.060472,42.359877],[-71.060442,42.359832],[-71.060415,42.359787],[-71.060388,42.359741],[-71.060365,42.359695],[-71.060345,42.359648],[-71.060325,42.3596],[-71.060309,42.359552],[-71.060295,42.359503],[-71.060283,42.359454],[-71.060279,42.359437],[-71.060273,42.359405],[-71.060266,42.359356],[-71.06026,42.359306],[-71.060258,42.359257],[-71.060259,42.359207],[-71.060261,42.359158],[-71.060265,42.359108],[-71.060274,42.359059],[-71.060283,42.359009],[-71.060293,42.35897],[-71.06061,42.359049],[-71.060679,42.359047],[-71.060681,42.359021],[-71.060672,42.35902],[-71.060673,42.358991],[-71.060709,42.358989],[-71.060719,42.358939],[-71.060732,42.358884],[-71.060746,42.35883],[-71.060748,42.35883],[-71.060738,42.358868],[-71.060724,42.358923],[-71.060715,42.358973],[-71.060706,42.359033],[-71.060701,42.359088],[-71.060698,42.359144],[-71.060699,42.359199],[-71.060701,42.359254],[-71.060706,42.35931],[-71.060713,42.359365],[-71.060723,42.35942],[-71.060737,42.359475],[-71.060751,42.359529],[-71.06077,42.359583],[-71.060792,42.359636],[-71.060794,42.359744],[-71.060789,42.359745],[-71.060711,42.359756],[-71.060715,42.359771],[-71.060763,42.359988],[-71.060786,42.359988],[-71.060815,42.360105],[-71.061196,42.360101],[-71.061197,42.360086],[-71.061397,42.3601],[-71.061394,42.360116],[-71.061381,42.360203],[-71.061372,42.360203],[-71.061371,42.360202],[-71.06137,42.360202],[-71.061369,42.360201],[-71.061368,42.3602],[-71.061368,42.3602],[-71.061367,42.360199],[-71.061366,42.360198],[-71.061365,42.360198],[-71.061364,42.360197],[-71.061363,42.360197],[-71.061362,42.360196],[-71.06136,42.360195],[-71.061359,42.360195],[-71.061358,42.360195],[-71.061357,42.360194],[-71.061356,42.360194],[-71.061355,42.360193],[-71.061353,42.360193],[-71.061352,42.360193],[-71.061351,42.360192],[-71.06135,42.360192],[-71.061348,42.360192],[-71.061347,42.360192],[-71.061346,42.360192],[-71.061345,42.360192],[-71.061343,42.360192]],[[-71.061395,42.358811],[-71.060782,42.358835],[-71.060783,42.358834],[-71.060649,42.358817],[-71.060854,42.358744],[-71.061392,42.358728],[-71.061395,42.358811]],[[-71.060798,42.366156],[-71.060247,42.366457],[-71.060076,42.366273],[-71.060175,42.366226],[-71.060638,42.366007],[-71.060798,42.366156]],[[-71.060325,42.358867],[-71.060339,42.358833],[-71.06036,42.358785],[-71.06059,42.358839],[-71.060645,42.358818],[-71.060746,42.35883],[-71.060732,42.358884],[-71.060719,42.358939],[-71.060709,42.358989],[-71.060673,42.358991],[-71.060672,42.35902],[-71.060681,42.359021],[-71.060679,42.359047],[-71.06061,42.359049],[-71.060293,42.35897],[-71.060295,42.358961],[-71.060297,42.358954],[-71.060309,42.358912],[-71.060309,42.358911],[-71.060325,42.358867]],[[-71.058659,42.360709],[-71.058524,42.359868],[-71.057871,42.359934],[-71.057838,42.359679],[-71.057979,42.359673],[-71.057972,42.359592],[-71.058464,42.359633],[-71.058504,42.35961],[-71.058534,42.359612],[-71.058563,42.359614],[-71.058593,42.359615],[-71.058622,42.359616],[-71.058651,42.359615],[-71.058681,42.359614],[-71.05871,42.359612],[-71.058739,42.359609],[-71.058767,42.359605],[-71.058798,42.359601],[-71.058825,42.359596],[-71.058854,42.35959],[-71.058882,42.359584],[-71.058909,42.359577],[-71.058937,42.359569],[-71.058964,42.35956],[-71.058991,42.359551],[-71.059017,42.359541],[-71.059042,42.35953],[-71.059068,42.359519],[-71.059093,42.359507],[-71.059115,42.359494],[-71.059139,42.359481],[-71.059163,42.359467],[-71.059181,42.359455],[-71.059184,42.359453],[-71.059206,42.359438],[-71.059226,42.359423],[-71.059246,42.359406],[-71.059265,42.35939],[-71.059284,42.359373],[-71.059235,42.359327],[-71.059404,42.359398],[-71.05941,42.3594],[-71.059418,42.359403],[-71.059425,42.359406],[-71.059433,42.359409],[-71.059439,42.359412],[-71.059446,42.359415],[-71.059454,42.359419],[-71.05946,42.359423],[-71.059466,42.359427],[-71.059471,42.359431],[-71.059478,42.359435],[-71.059483,42.359439],[-71.059489,42.359444],[-71.059494,42.359449],[-71.059499,42.359454],[-71.059504,42.359459],[-71.059509,42.359464],[-71.059513,42.359469],[-71.059517,42.359474],[-71.05952,42.35948],[-71.059524,42.359485],[-71.059528,42.359491],[-71.059531,42.359497],[-71.059533,42.359503],[-71.059536,42.359508],[-71.059538,42.359514],[-71.059578,42.359626],[-71.059624,42.359756],[-71.05965,42.359825],[-71.05968,42.359893],[-71.059709,42.359955],[-71.059713,42.359961],[-71.059746,42.360021],[-71.059782,42.360081],[-71.05982,42.360139],[-71.059861,42.360196],[-71.059905,42.360253],[-71.059953,42.360308],[-71.060002,42.360362],[-71.060054,42.360414],[-71.060108,42.360465],[-71.060166,42.360515],[-71.060224,42.360563],[-71.060193,42.36057],[-71.057979,42.36166],[-71.057928,42.361594],[-71.057879,42.361527],[-71.057834,42.361459],[-71.057791,42.361389],[-71.057753,42.361319],[-71.057718,42.361247],[-71.057685,42.361175],[-71.057657,42.361102],[-71.057644,42.361066],[-71.058659,42.360709]],[[-71.059679,42.358077],[-71.059707,42.35804],[-71.060191,42.358184],[-71.05994,42.358523],[-71.059923,42.358544],[-71.059501,42.35833],[-71.059679,42.358077]],[[-71.059228,42.357895],[-71.059325,42.357748],[-71.059826,42.357877],[-71.059709,42.358038],[-71.059682,42.358075],[-71.059509,42.358003],[-71.059228,42.357895]],[[[-71.057362,42.367878],[-71.057416,42.367841],[-71.05776,42.368134],[-71.058103,42.367926],[-71.058378,42.367756],[-71.058081,42.367375],[-71.05828,42.367324],[-71.058273,42.367284],[-71.058361,42.367241],[-71.058475,42.367255],[-71.058584,42.367309],[-71.058841,42.367661],[-71.058852,42.367826],[-71.05866,42.367961],[-71.058603,42.367928],[-71.058184,42.367944],[-71.05823,42.368036],[-71.057688,42.368339],[-71.057646,42.368483],[-71.057268,42.368739],[-71.057085,42.368799],[-71.056938,42.368664],[-71.05699,42.368635],[-71.057078,42.368694],[-71.057433,42.368476],[-71.057394,42.368433],[-71.057772,42.368214],[-71.057362,42.367878]]],[[-71.058694,42.357486],[-71.058693,42.357485],[-71.05869,42.357485],[-71.058689,42.357485],[-71.058688,42.357484],[-71.058478,42.357433],[-71.058476,42.357433],[-71.058473,42.357433],[-71.058472,42.357433],[-71.05847,42.357432],[-71.058468,42.357432],[-71.058466,42.357431],[-71.058466,42.357429],[-71.058464,42.357428],[-71.058462,42.357427],[-71.058461,42.357426],[-71.05846,42.357426],[-71.05846,42.357424],[-71.058459,42.357423],[-71.058459,42.357422],[-71.058459,42.35742],[-71.058459,42.357418],[-71.058459,42.357418],[-71.058459,42.357417],[-71.058459,42.357416],[-71.05846,42.357415],[-71.058461,42.357412],[-71.058461,42.357411],[-71.058463,42.35741],[-71.058631,42.357238],[-71.058631,42.357237],[-71.058632,42.357236],[-71.058632,42.357236],[-71.058633,42.357235],[-71.058636,42.357235],[-71.058637,42.357234],[-71.058638,42.357233],[-71.05864,42.357231],[-71.058642,42.35723],[-71.058644,42.35723],[-71.058645,42.357229],[-71.058648,42.357229],[-71.05865,42.357229],[-71.058651,42.357229],[-71.058654,42.357229],[-71.058656,42.357229],[-71.058659,42.35723],[-71.058661,42.35723],[-71.058662,42.357231],[-71.058664,42.357233],[-71.058666,42.357234],[-71.058668,42.357235],[-71.058668,42.357236],[-71.058671,42.357237],[-71.058672,42.357237],[-71.058673,42.357239],[-71.058674,42.35724],[-71.058674,42.357242],[-71.058674,42.357244],[-71.058674,42.357245],[-71.058707,42.357472],[-71.058707,42.357473],[-71.058708,42.357474],[-71.058708,42.357475],[-71.058708,42.357476],[-71.058708,42.357476],[-71.058708,42.357477],[-71.058708,42.357478],[-71.058707,42.35748],[-71.058707,42.357481],[-71.058706,42.357481],[-71.058706,42.357483],[-71.058704,42.357484],[-71.058702,42.357484],[-71.0587,42.357485],[-71.058698,42.357485],[-71.058696,42.357485],[-71.058694,42.357486]],[[[-71.053792,42.372854],[-71.052244,42.371485],[-71.052831,42.37159],[-71.054157,42.371826],[-71.054473,42.371779],[-71.054786,42.371732],[-71.055263,42.371576],[-71.055366,42.371542],[-71.056641,42.372161],[-71.057351,42.372506],[-71.057451,42.372555],[-71.058353,42.372129],[-71.058536,42.372344],[-71.057764,42.372707],[-71.057764,42.372707],[-71.057387,42.372889],[-71.057399,42.372904],[-71.057388,42.372912],[-71.057501,42.373032],[-71.057596,42.373042],[-71.057599,42.373103],[-71.057598,42.37311],[-71.057598,42.373133],[-71.057599,42.373156],[-71.057601,42.373179],[-71.057603,42.373197],[-71.057604,42.373223],[-71.05761,42.373233],[-71.057613,42.373247],[-71.057619,42.37327],[-71.057627,42.373292],[-71.057635,42.373314],[-71.057644,42.373336],[-71.057655,42.373357],[-71.057666,42.373379],[-71.057679,42.3734],[-71.057692,42.37342],[-71.057695,42.373424],[-71.057707,42.37344],[-71.057722,42.37346],[-71.057739,42.37348],[-71.057756,42.373499],[-71.057775,42.373517],[-71.057785,42.373526],[-71.057794,42.373535],[-71.057814,42.373552],[-71.057835,42.373569],[-71.057856,42.373586],[-71.057891,42.373605],[-71.057894,42.373607],[-71.057896,42.373608],[-71.057898,42.373609],[-71.0579,42.373611],[-71.057902,42.373612],[-71.057904,42.373614],[-71.057906,42.373615],[-71.057907,42.373617],[-71.057909,42.373619],[-71.05791,42.37362],[-71.057912,42.373622],[-71.057913,42.373624],[-71.057915,42.373626],[-71.057916,42.373628],[-71.057917,42.37363],[-71.057918,42.373631],[-71.057919,42.373633],[-71.05792,42.373635],[-71.057921,42.373637],[-71.057921,42.373639],[-71.057922,42.373641],[-71.057922,42.373643],[-71.057923,42.373645],[-71.057931,42.373693],[-71.057933,42.373718],[-71.057934,42.373743],[-71.057871,42.373955],[-71.0577,42.374117],[-71.057254,42.374533],[-71.057062,42.37469],[-71.056712,42.374893],[-71.056622,42.374944],[-71.056178,42.375196],[-71.056032,42.375092],[-71.055992,42.375058],[-71.055879,42.374961],[-71.055743,42.374834],[-71.05576,42.374823],[-71.055735,42.374801],[-71.05575,42.374787],[-71.053789,42.373087],[-71.053829,42.373062],[-71.053821,42.373055],[-71.053817,42.373052],[-71.053827,42.373045],[-71.053684,42.372924],[-71.05369,42.37292],[-71.053781,42.372865],[-71.053778,42.372863],[-71.053792,42.372854]]],[[-71.057541,42.363769],[-71.057346,42.363776],[-71.05733,42.363572],[-71.057541,42.363769]],[[-71.056986,42.360707],[-71.057156,42.360586],[-71.05731,42.361131],[-71.057344,42.361219],[-71.057382,42.361306],[-71.057424,42.361393],[-71.057448,42.361439],[-71.05745,42.361442],[-71.057451,42.361444],[-71.057453,42.361446],[-71.057453,42.361448],[-71.057455,42.361451],[-71.057457,42.361453],[-71.057458,42.361456],[-71.057459,42.361459],[-71.057459,42.361461],[-71.057459,42.361464],[-71.05746,42.361467],[-71.05746,42.361469],[-71.05746,42.361472],[-71.05746,42.361475],[-71.05746,42.361477],[-71.05746,42.361479],[-71.05746,42.361483],[-71.05746,42.361485],[-71.05746,42.361487],[-71.05746,42.361491],[-71.057459,42.361492],[-71.057459,42.361495],[-71.057458,42.361499],[-71.057457,42.3615],[-71.057456,42.361503],[-71.057454,42.361505],[-71.057453,42.361508],[-71.057452,42.36151],[-71.057449,42.361512],[-71.057449,42.361516],[-71.057447,42.361517],[-71.057445,42.361519],[-71.057443,42.361523],[-71.057441,42.361524],[-71.057438,42.361526],[-71.057437,42.361528],[-71.057434,42.361531],[-71.057321,42.361598],[-71.057264,42.361498],[-71.057214,42.361397],[-71.057165,42.361294],[-71.057123,42.361191],[-71.056986,42.360707]],[[-71.056576,42.366148],[-71.056725,42.366007],[-71.057036,42.366199],[-71.057411,42.366615],[-71.056549,42.367041],[-71.05658,42.366634],[-71.056576,42.366148]],[[[-71.0569,42.363113],[-71.056898,42.363112],[-71.056895,42.363112],[-71.056894,42.363111],[-71.056892,42.363111],[-71.056889,42.36311],[-71.056887,42.363109],[-71.056886,42.363108],[-71.056883,42.363107],[-71.055959,42.362579],[-71.055958,42.362577],[-71.055956,42.362576],[-71.055954,42.362575],[-71.055953,42.362574],[-71.055952,42.362572],[-71.055951,42.362571],[-71.05595,42.362569],[-71.055949,42.362567],[-71.055947,42.362566],[-71.055947,42.362564],[-71.055946,42.362563],[-71.055946,42.362561],[-71.055945,42.362559],[-71.055945,42.362557],[-71.055945,42.362556],[-71.055945,42.362554],[-71.055946,42.362552],[-71.055946,42.36255],[-71.055948,42.362549],[-71.055948,42.362547],[-71.055949,42.362546],[-71.05595,42.362544],[-71.055951,42.362542],[-71.055952,42.362541],[-71.055954,42.36254],[-71.055955,42.362539],[-71.055956,42.362537],[-71.055958,42.362536],[-71.05596,42.362535],[-71.056515,42.362221],[-71.056516,42.36222],[-71.056518,42.362218],[-71.056519,42.362218],[-71.056522,42.362217],[-71.056524,42.362217],[-71.056526,42.362216],[-71.056529,42.362216],[-71.056531,42.362216],[-71.056534,42.362215],[-71.056536,42.362215],[-71.056538,42.362215],[-71.05654,42.362215],[-71.056542,42.362216],[-71.056545,42.362216],[-71.056547,42.362217],[-71.056549,42.362217],[-71.056552,42.362217],[-71.056554,42.362219],[-71.056555,42.362219],[-71.056558,42.36222],[-71.056848,42.362379],[-71.057124,42.36255],[-71.057388,42.362731],[-71.05739,42.362732],[-71.057392,42.362733],[-71.057393,42.362735],[-71.057394,42.362736],[-71.057395,42.362738],[-71.057396,42.362739],[-71.057397,42.36274],[-71.057397,42.362742],[-71.057399,42.362744],[-71.057399,42.362746],[-71.057399,42.362747],[-71.0574,42.362749],[-71.0574,42.362751],[-71.057399,42.362752],[-71.057399,42.362754],[-71.057399,42.362756],[-71.057399,42.362757],[-71.057397,42.362759],[-71.057396,42.362761],[-71.057396,42.362762],[-71.057395,42.362763],[-71.057394,42.362765],[-71.057392,42.362766],[-71.05739,42.362768],[-71.057389,42.362769],[-71.057388,42.362771],[-71.057385,42.362771],[-71.057384,42.362772],[-71.057382,42.362773],[-71.057381,42.362774],[-71.057295,42.362811],[-71.057214,42.362852],[-71.057136,42.362896],[-71.057062,42.362944],[-71.057043,42.362957],[-71.057026,42.362972],[-71.05701,42.362987],[-71.056995,42.363003],[-71.056981,42.36302],[-71.056969,42.363037],[-71.056958,42.363055],[-71.05695,42.363074],[-71.056942,42.363092],[-71.056941,42.363094],[-71.05694,42.363096],[-71.05694,42.363098],[-71.056938,42.363098],[-71.056937,42.3631],[-71.056935,42.363102],[-71.056934,42.363103],[-71.056932,42.363105],[-71.056931,42.363106],[-71.056929,42.363106],[-71.056928,42.363107],[-71.056925,42.363108],[-71.056923,42.363109],[-71.056921,42.36311],[-71.056919,42.363111],[-71.056917,42.363112],[-71.056915,42.363112],[-71.056912,42.363113],[-71.05691,42.363113],[-71.056907,42.363113],[-71.056905,42.363113],[-71.056902,42.363113],[-71.0569,42.363113]]],[[-71.056882,42.360472],[-71.057045,42.36042],[-71.057094,42.360422],[-71.057122,42.360448],[-71.057159,42.36058],[-71.05698,42.360708],[-71.056962,42.360642],[-71.056882,42.360472]],[[-71.054929,42.369036],[-71.055044,42.368828],[-71.055123,42.368846],[-71.055364,42.36834],[-71.055315,42.368263],[-71.05539,42.368237],[-71.055681,42.3683],[-71.056106,42.368397],[-71.056263,42.36841],[-71.05638,42.368406],[-71.056507,42.368394],[-71.056589,42.368368],[-71.056659,42.368338],[-71.056737,42.368495],[-71.057087,42.368799],[-71.056509,42.36893],[-71.055526,42.369033],[-71.055128,42.368923],[-71.055052,42.369077],[-71.054929,42.369036]],[[-71.056465,42.360354],[-71.056443,42.360223],[-71.055977,42.360272],[-71.055905,42.359897],[-71.056372,42.359846],[-71.056365,42.359804],[-71.056903,42.359777],[-71.057,42.360134],[-71.057002,42.360157],[-71.056996,42.360184],[-71.056984,42.360205],[-71.056949,42.360237],[-71.056914,42.360254],[-71.05688,42.360262],[-71.056778,42.360283],[-71.056621,42.360321],[-71.056465,42.360354]],[[-71.056096,42.363657],[-71.056132,42.363601],[-71.056161,42.363611],[-71.056217,42.363537],[-71.056273,42.36346],[-71.056181,42.363403],[-71.056212,42.363362],[-71.056245,42.36332],[-71.056609,42.363544],[-71.056653,42.363555],[-71.056628,42.363582],[-71.056548,42.363666],[-71.056471,42.363789],[-71.056096,42.363657]],[[-71.05575,42.360365],[-71.05384,42.360541],[-71.05382,42.360411],[-71.055809,42.360241],[-71.055764,42.359963],[-71.053784,42.360153],[-71.053751,42.359949],[-71.055662,42.359766],[-71.055647,42.35962],[-71.055788,42.359596],[-71.055842,42.359786],[-71.056108,42.359757],[-71.056107,42.359755],[-71.056351,42.359729],[-71.056365,42.359804],[-71.056372,42.359846],[-71.055905,42.359897],[-71.055977,42.360272],[-71.056443,42.360223],[-71.056457,42.360309],[-71.056462,42.360345],[-71.056333,42.360368],[-71.056224,42.360408],[-71.056117,42.360455],[-71.056074,42.360491],[-71.056009,42.360515],[-71.055904,42.360588],[-71.055864,42.360588],[-71.055772,42.360527],[-71.05575,42.360365]],[[-71.055148,42.366999],[-71.055369,42.366713],[-71.056421,42.367109],[-71.056319,42.367985],[-71.055439,42.367534],[-71.05536,42.367497],[-71.055445,42.367326],[-71.055427,42.367308],[-71.055489,42.367175],[-71.055148,42.366999]],[[-71.055919,42.356921],[-71.056209,42.356898],[-71.056221,42.356907],[-71.056235,42.356915],[-71.056267,42.35725],[-71.056266,42.357261],[-71.056255,42.357269],[-71.056244,42.357277],[-71.056232,42.357275],[-71.056219,42.357272],[-71.055899,42.356963],[-71.055897,42.356951],[-71.055899,42.356943],[-71.055903,42.356928],[-71.055919,42.356921]],[[-71.055019,42.356097],[-71.055644,42.355724],[-71.055844,42.355918],[-71.05596,42.356098],[-71.056152,42.356521],[-71.056176,42.356751],[-71.055774,42.356828],[-71.055019,42.356097]],[[-71.054878,42.367879],[-71.055192,42.367515],[-71.055756,42.367804],[-71.055703,42.368088],[-71.054878,42.367879]],[[-71.054597,42.368911],[-71.054694,42.368717],[-71.054415,42.368627],[-71.054065,42.368547],[-71.053724,42.368491],[-71.054181,42.367923],[-71.054294,42.367954],[-71.054584,42.368042],[-71.05517,42.368186],[-71.055375,42.368241],[-71.055315,42.36827],[-71.055369,42.368325],[-71.055128,42.36885],[-71.05504,42.368827],[-71.054942,42.368985],[-71.054597,42.368911]],[[-71.055278,42.357824],[-71.055291,42.357821],[-71.055302,42.357825],[-71.055312,42.357828],[-71.055359,42.357942],[-71.055359,42.357945],[-71.055359,42.357948],[-71.055355,42.357951],[-71.055349,42.357952],[-71.055342,42.357955],[-71.055329,42.357951],[-71.055223,42.357919],[-71.055202,42.357913],[-71.055192,42.357906],[-71.055185,42.357896],[-71.055189,42.357887],[-71.055278,42.357824]],[[-71.053117,42.375013],[-71.051893,42.373968],[-71.052679,42.373466],[-71.052031,42.372905],[-71.05124,42.373403],[-71.051283,42.37344],[-71.050956,42.373652],[-71.051148,42.373822],[-71.051403,42.373857],[-71.051566,42.373997],[-71.051599,42.373976],[-71.051652,42.374019],[-71.050752,42.374595],[-71.050595,42.374461],[-71.050664,42.374188],[-71.050724,42.373947],[-71.050826,42.373473],[-71.052112,42.372741],[-71.050526,42.371323],[-71.050721,42.371221],[-71.05241,42.372707],[-71.052659,42.372922],[-71.052724,42.372881],[-71.054228,42.374229],[-71.054616,42.374416],[-71.054756,42.374327],[-71.0546,42.374052],[-71.05304,42.372717],[-71.053106,42.372649],[-71.052837,42.372427],[-71.05305,42.37233],[-71.053709,42.372938],[-71.053835,42.373047],[-71.053778,42.373081],[-71.055194,42.374309],[-71.055139,42.374344],[-71.05467,42.374641],[-71.054257,42.374289],[-71.053117,42.375013]],[[-71.054918,42.362612],[-71.054639,42.362469],[-71.054762,42.362359],[-71.054837,42.362294],[-71.054953,42.362194],[-71.055168,42.362305],[-71.054918,42.362612]],[[-71.054743,42.358493],[-71.054759,42.358489],[-71.054808,42.35859],[-71.054516,42.358661],[-71.054469,42.358566],[-71.05463,42.358524],[-71.054743,42.358493]],[[-71.054115,42.36517],[-71.054391,42.364924],[-71.054406,42.364937],[-71.054614,42.364773],[-71.054787,42.364874],[-71.054491,42.365116],[-71.054284,42.365285],[-71.054115,42.36517]],[[-71.053926,42.367454],[-71.054036,42.367289],[-71.054149,42.367348],[-71.054198,42.367373],[-71.054126,42.36747],[-71.05419,42.367498],[-71.054129,42.367573],[-71.053912,42.367495],[-71.053937,42.367458],[-71.053926,42.367454]],[[-71.053768,42.366157],[-71.053641,42.366071],[-71.053518,42.365928],[-71.053447,42.365959],[-71.053374,42.365888],[-71.05333,42.365846],[-71.053392,42.365793],[-71.053178,42.365671],[-71.053034,42.365622],[-71.05314,42.365349],[-71.053248,42.365396],[-71.053369,42.365482],[-71.053443,42.365535],[-71.053421,42.365553],[-71.053441,42.365565],[-71.053482,42.365593],[-71.053473,42.365599],[-71.053554,42.365651],[-71.053603,42.365682],[-71.053607,42.365679],[-71.053644,42.365702],[-71.053646,42.365711],[-71.05368,42.365732],[-71.053761,42.365663],[-71.053836,42.365709],[-71.053903,42.365749],[-71.053962,42.365785],[-71.054015,42.365817],[-71.05411,42.365873],[-71.054103,42.36588],[-71.054058,42.365922],[-71.054173,42.36599],[-71.054045,42.366121],[-71.053922,42.366043],[-71.053873,42.366084],[-71.053861,42.366076],[-71.053813,42.366118],[-71.053768,42.366157]],[[-71.053722,42.36063],[-71.05367,42.360263],[-71.053621,42.360272],[-71.053591,42.360276],[-71.053575,42.360276],[-71.05353,42.359967],[-71.053587,42.359955],[-71.053557,42.359806],[-71.053639,42.3598],[-71.053725,42.359799],[-71.053744,42.359942],[-71.053862,42.360682],[-71.053722,42.36063]],[[-71.05338,42.363079],[-71.05367,42.362861],[-71.053786,42.362952],[-71.053666,42.363039],[-71.053471,42.363129],[-71.05338,42.363079]],[[-71.053357,42.363482],[-71.053578,42.363452],[-71.053579,42.363452],[-71.053582,42.363452],[-71.053583,42.363452],[-71.053585,42.363452],[-71.053587,42.363452],[-71.053589,42.363453],[-71.05359,42.363453],[-71.053594,42.363454],[-71.053594,42.363455],[-71.053596,42.363456],[-71.053597,42.363456],[-71.053599,42.363458],[-71.053599,42.363459],[-71.053601,42.36346],[-71.053602,42.363462],[-71.053628,42.363531],[-71.053612,42.36357],[-71.053611,42.363572],[-71.05361,42.363574],[-71.053608,42.363576],[-71.053607,42.363577],[-71.053606,42.363579],[-71.053603,42.36358],[-71.053603,42.363582],[-71.053601,42.363583],[-71.053599,42.363584],[-71.053597,42.363586],[-71.053596,42.363587],[-71.053594,42.363588],[-71.053593,42.36359],[-71.05359,42.363591],[-71.053588,42.363592],[-71.053586,42.363593],[-71.053469,42.363664],[-71.053417,42.363579],[-71.053357,42.363482]],[[-71.053527,42.359968],[-71.05353,42.359967],[-71.053575,42.360276],[-71.053561,42.360276],[-71.053509,42.360267],[-71.053464,42.360259],[-71.053435,42.360244],[-71.053411,42.360232],[-71.053393,42.360213],[-71.053369,42.360186],[-71.053355,42.360156],[-71.053348,42.360129],[-71.053351,42.360096],[-71.053372,42.360058],[-71.053394,42.36003],[-71.053429,42.360004],[-71.053471,42.359985],[-71.053527,42.359968]],[[-71.053172,42.366727],[-71.053182,42.36671],[-71.053192,42.366714],[-71.053239,42.366648],[-71.05337,42.366699],[-71.053474,42.366556],[-71.053552,42.366644],[-71.053222,42.367045],[-71.053215,42.367041],[-71.053134,42.366998],[-71.053031,42.366945],[-71.053039,42.366932],[-71.053127,42.366798],[-71.053172,42.366727]],[[-71.053545,42.360813],[-71.053269,42.361161],[-71.053167,42.361106],[-71.052926,42.360957],[-71.052925,42.360955],[-71.052924,42.360954],[-71.052921,42.360953],[-71.05292,42.360952],[-71.052919,42.36095],[-71.052918,42.360948],[-71.052917,42.360947],[-71.052917,42.360945],[-71.052916,42.360944],[-71.052916,42.360942],[-71.052914,42.36094],[-71.052914,42.360939],[-71.052914,42.360937],[-71.052915,42.360936],[-71.052915,42.360934],[-71.052915,42.360932],[-71.052916,42.36093],[-71.052916,42.360928],[-71.052917,42.360927],[-71.052918,42.360926],[-71.052918,42.360924],[-71.052919,42.360922],[-71.052921,42.360921],[-71.053054,42.360783],[-71.053195,42.360651],[-71.053198,42.360649],[-71.0532,42.360647],[-71.053203,42.360645],[-71.053206,42.360644],[-71.053209,42.360643],[-71.053211,42.360641],[-71.053214,42.36064],[-71.053218,42.360639],[-71.05322,42.360638],[-71.053224,42.360637],[-71.053228,42.360637],[-71.053231,42.360637],[-71.053235,42.360637],[-71.053237,42.360637],[-71.053241,42.360637],[-71.053244,42.360637],[-71.053248,42.360637],[-71.053252,42.360638],[-71.053256,42.360638],[-71.053258,42.360639],[-71.053261,42.36064],[-71.053265,42.360641],[-71.053267,42.360643],[-71.05327,42.360644],[-71.053273,42.360646],[-71.053461,42.36075],[-71.053491,42.360764],[-71.053498,42.360769],[-71.053507,42.360773],[-71.053513,42.360779],[-71.05352,42.360783],[-71.053526,42.360789],[-71.053532,42.360794],[-71.053537,42.360801],[-71.053541,42.360807],[-71.053545,42.360813]],[[-71.05337,42.363818],[-71.053498,42.363753],[-71.053485,42.363795],[-71.053406,42.364017],[-71.053232,42.363895],[-71.05337,42.363818]],[[-71.053104,42.358802],[-71.053101,42.358801],[-71.0531,42.358801],[-71.053098,42.358801],[-71.053097,42.3588],[-71.053094,42.3588],[-71.053093,42.358799],[-71.053092,42.358798],[-71.053089,42.358797],[-71.053088,42.358796],[-71.053087,42.358795],[-71.053086,42.358793],[-71.053085,42.358792],[-71.053083,42.358792],[-71.053083,42.35879],[-71.053082,42.358789],[-71.053081,42.358788],[-71.053081,42.358786],[-71.05308,42.358785],[-71.053065,42.358732],[-71.053226,42.358708],[-71.053186,42.358563],[-71.053277,42.358549],[-71.05347,42.358678],[-71.053472,42.35868],[-71.053475,42.358682],[-71.053477,42.358683],[-71.053479,42.358685],[-71.053482,42.358687],[-71.053483,42.35869],[-71.053485,42.358692],[-71.053487,42.358694],[-71.053488,42.358697],[-71.053489,42.358699],[-71.05349,42.358701],[-71.053491,42.358704],[-71.053491,42.358707],[-71.053491,42.358709],[-71.053491,42.358712],[-71.053491,42.358715],[-71.053491,42.358717],[-71.05349,42.35872],[-71.05349,42.358722],[-71.053489,42.358725],[-71.053488,42.358727],[-71.053485,42.35873],[-71.053484,42.358732],[-71.053483,42.358734],[-71.05348,42.358736],[-71.053478,42.358738],[-71.053475,42.35874],[-71.053473,42.358741],[-71.053471,42.358743],[-71.053467,42.358745],[-71.053465,42.358746],[-71.053461,42.358748],[-71.053459,42.358748],[-71.053455,42.358749],[-71.053122,42.358801],[-71.053121,42.358802],[-71.053118,42.358801],[-71.053116,42.358802],[-71.053115,42.358802],[-71.053112,42.358802],[-71.053111,42.358802],[-71.053109,42.358802],[-71.053107,42.358802],[-71.053105,42.358802],[-71.053104,42.358802]],[[[-71.051507,42.357038],[-71.051592,42.357247],[-71.051647,42.357375],[-71.051712,42.3575],[-71.051826,42.357739],[-71.051827,42.357741],[-71.051827,42.357742],[-71.051827,42.357743],[-71.051827,42.357745],[-71.051828,42.357747],[-71.051827,42.357749],[-71.051827,42.35775],[-71.051827,42.357752],[-71.051826,42.357754],[-71.051826,42.357756],[-71.051824,42.357758],[-71.051823,42.357759],[-71.051822,42.35776],[-71.051821,42.357762],[-71.05182,42.357764],[-71.051818,42.357765],[-71.051816,42.357766],[-71.051815,42.357767],[-71.051812,42.357768],[-71.051811,42.357769],[-71.051809,42.35777],[-71.051807,42.357771],[-71.051805,42.357772],[-71.051803,42.357773],[-71.0518,42.357773],[-71.051798,42.357773],[-71.051646,42.357796],[-71.051547,42.357811],[-71.051407,42.357832],[-71.051405,42.357832],[-71.051402,42.357833],[-71.0514,42.357833],[-71.051399,42.357833],[-71.051396,42.357833],[-71.051394,42.357832],[-71.051391,42.357832],[-71.051389,42.357832],[-71.051387,42.357832],[-71.051384,42.357831],[-71.051383,42.35783],[-71.051381,42.357829],[-71.051378,42.357828],[-71.051377,42.357827],[-71.051375,42.357826],[-71.051374,42.357825],[-71.051372,42.357824],[-71.05137,42.357823],[-71.051369,42.357821],[-71.051367,42.35782],[-71.051366,42.357818],[-71.051366,42.357816],[-71.051365,42.357814],[-71.051343,42.357773],[-71.051317,42.357731],[-71.051288,42.357692],[-71.051255,42.357655],[-71.051219,42.357618],[-71.051083,42.357491],[-71.051037,42.357444],[-71.050996,42.357396],[-71.050995,42.357394],[-71.050993,42.357393],[-71.050992,42.357392],[-71.050992,42.35739],[-71.050991,42.357388],[-71.050991,42.357386],[-71.050991,42.357385],[-71.050991,42.357384],[-71.050991,42.357382],[-71.050991,42.35738],[-71.050895,42.357229],[-71.050839,42.357102],[-71.05084,42.356913],[-71.050828,42.356762],[-71.050911,42.356715],[-71.051345,42.356703],[-71.051426,42.356741],[-71.051458,42.356769],[-71.051469,42.356821],[-71.051507,42.357038]]],[[-71.052736,42.358322],[-71.052734,42.358321],[-71.05307,42.358451],[-71.052724,42.358499],[-71.052726,42.358498],[-71.052735,42.358493],[-71.052742,42.358489],[-71.052748,42.358486],[-71.052754,42.358481],[-71.052759,42.358476],[-71.052765,42.358471],[-71.05277,42.358466],[-71.052773,42.35846],[-71.052778,42.358454],[-71.052781,42.358446],[-71.052784,42.358439],[-71.052786,42.358433],[-71.052788,42.358426],[-71.052789,42.358419],[-71.052791,42.358412],[-71.052791,42.358406],[-71.052789,42.358398],[-71.05279,42.358391],[-71.052787,42.358384],[-71.052785,42.358378],[-71.052783,42.358371],[-71.052778,42.358364],[-71.052773,42.358356],[-71.052767,42.358349],[-71.052761,42.358343],[-71.052755,42.358338],[-71.052749,42.358332],[-71.052743,42.358327],[-71.052736,42.358322]],[[-71.050864,42.362357],[-71.05079,42.360601],[-71.050719,42.360603],[-71.050714,42.360473],[-71.050873,42.360448],[-71.050947,42.360436],[-71.051917,42.360285],[-71.051954,42.360279],[-71.052086,42.360416],[-71.052336,42.360679],[-71.052352,42.360693],[-71.052363,42.360708],[-71.052377,42.360723],[-71.052388,42.360739],[-71.052402,42.360754],[-71.052412,42.360771],[-71.052422,42.360787],[-71.052431,42.360803],[-71.05244,42.36082],[-71.052447,42.360837],[-71.052454,42.360854],[-71.05246,42.360872],[-71.052465,42.360889],[-71.052469,42.360907],[-71.052472,42.360924],[-71.052475,42.360943],[-71.052477,42.36096],[-71.052478,42.360978],[-71.052478,42.360996],[-71.052478,42.361014],[-71.052476,42.361032],[-71.052474,42.36105],[-71.05247,42.361068],[-71.052467,42.361085],[-71.052462,42.361103],[-71.052455,42.36112],[-71.052449,42.361137],[-71.052442,42.361154],[-71.052433,42.361171],[-71.052425,42.361188],[-71.052415,42.361204],[-71.052404,42.361221],[-71.052393,42.361236],[-71.052381,42.361252],[-71.052369,42.361267],[-71.052355,42.361282],[-71.052341,42.361297],[-71.052323,42.361314],[-71.052311,42.361325],[-71.052295,42.361338],[-71.052278,42.361351],[-71.052262,42.361363],[-71.052243,42.361376],[-71.052224,42.361387],[-71.052206,42.361398],[-71.052185,42.361409],[-71.051628,42.361709],[-71.051583,42.361704],[-71.051228,42.361891],[-71.051204,42.361904],[-71.05118,42.361918],[-71.051157,42.361932],[-71.051134,42.361947],[-71.051114,42.361962],[-71.051091,42.361978],[-71.051071,42.361994],[-71.051052,42.362011],[-71.051033,42.362029],[-71.051016,42.362047],[-71.050999,42.362065],[-71.050983,42.362084],[-71.050968,42.362103],[-71.050954,42.362123],[-71.05094,42.362143],[-71.050928,42.362163],[-71.050917,42.362184],[-71.050908,42.362205],[-71.050898,42.362226],[-71.050889,42.362247],[-71.050882,42.362269],[-71.050876,42.362291],[-71.050871,42.362313],[-71.050867,42.362335],[-71.050864,42.362357]],[[-71.051993,42.362149],[-71.052207,42.361907],[-71.052456,42.362027],[-71.052242,42.362272],[-71.051993,42.362149]],[[-71.049664,42.360743],[-71.049612,42.360672],[-71.049363,42.360686],[-71.049245,42.360657],[-71.049242,42.360402],[-71.049152,42.360409],[-71.04915,42.360402],[-71.049125,42.360318],[-71.048477,42.360475],[-71.048482,42.36049],[-71.047706,42.360616],[-71.047674,42.360588],[-71.047678,42.360063],[-71.047715,42.360018],[-71.050015,42.359753],[-71.050177,42.359705],[-71.050671,42.359632],[-71.050682,42.35963],[-71.050684,42.359788],[-71.050678,42.359789],[-71.050683,42.359887],[-71.049754,42.360033],[-71.049758,42.360048],[-71.049746,42.36005],[-71.049816,42.360301],[-71.049902,42.360614],[-71.050705,42.360489],[-71.05071,42.360534],[-71.05072,42.360619],[-71.050714,42.360619],[-71.050714,42.360632],[-71.050496,42.360666],[-71.050463,42.360571],[-71.049901,42.360677],[-71.049891,42.360713],[-71.049664,42.360743]],[[-71.048455,42.359558],[-71.048384,42.359271],[-71.04852,42.359244],[-71.048451,42.358968],[-71.048732,42.358918],[-71.048768,42.358908],[-71.048805,42.358907],[-71.048912,42.358885],[-71.048925,42.358922],[-71.04925,42.358897],[-71.049385,42.358875],[-71.049416,42.358872],[-71.049433,42.358875],[-71.049586,42.358946],[-71.049602,42.358945],[-71.050326,42.358829],[-71.050373,42.358818],[-71.050382,42.358851],[-71.049706,42.358957],[-71.049691,42.358982],[-71.049611,42.358995],[-71.049414,42.358899],[-71.048909,42.358979],[-71.048892,42.358933],[-71.048517,42.358994],[-71.048599,42.359268],[-71.048429,42.359294],[-71.048502,42.359527],[-71.049012,42.359446],[-71.049782,42.359339],[-71.049906,42.359318],[-71.049993,42.359302],[-71.05008,42.359289],[-71.05039,42.35924],[-71.050683,42.359193],[-71.050686,42.359206],[-71.050657,42.359213],[-71.050436,42.359241],[-71.050439,42.359261],[-71.05033,42.35928],[-71.048455,42.359558]],[[-71.050439,42.358856],[-71.050627,42.358835],[-71.050659,42.359196],[-71.050457,42.359224],[-71.050079,42.359283],[-71.049962,42.358923],[-71.050262,42.358878],[-71.050439,42.358856]],[[[-71.042532,42.370003],[-71.043079,42.369348],[-71.043116,42.369364],[-71.043157,42.369381],[-71.043195,42.369399],[-71.043232,42.369417],[-71.043271,42.369432],[-71.043309,42.369447],[-71.043347,42.369464],[-71.043386,42.369481],[-71.043434,42.3695],[-71.043632,42.369252],[-71.043565,42.369224],[-71.043602,42.369178],[-71.043783,42.369255],[-71.043747,42.369303],[-71.043685,42.369278],[-71.043492,42.369526],[-71.043513,42.369533],[-71.043555,42.369549],[-71.043588,42.369561],[-71.043622,42.369575],[-71.043664,42.369591],[-71.043706,42.369606],[-71.043771,42.369633],[-71.043804,42.369648],[-71.043836,42.369662],[-71.0439,42.369691],[-71.043928,42.369701],[-71.043944,42.369705],[-71.043958,42.369709],[-71.043974,42.369713],[-71.04399,42.369715],[-71.044006,42.369717],[-71.044022,42.369718],[-71.044034,42.369717],[-71.044047,42.369717],[-71.044059,42.369716],[-71.044071,42.369714],[-71.044083,42.369711],[-71.044097,42.369707],[-71.044111,42.369701],[-71.044123,42.369695],[-71.044144,42.369687],[-71.044164,42.369679],[-71.044189,42.369671],[-71.044197,42.36967],[-71.044205,42.369668],[-71.044213,42.369668],[-71.044222,42.369667],[-71.04423,42.369668],[-71.044239,42.369668],[-71.044246,42.369669],[-71.044254,42.36967],[-71.044261,42.369672],[-71.044277,42.369676],[-71.044293,42.369682],[-71.044308,42.369688],[-71.04432,42.369693],[-71.044332,42.369698],[-71.044344,42.369704],[-71.044355,42.369711],[-71.044366,42.369718],[-71.044376,42.369725],[-71.044385,42.369733],[-71.044388,42.369737],[-71.044392,42.369741],[-71.044394,42.369746],[-71.044395,42.36975],[-71.044398,42.369754],[-71.044399,42.369759],[-71.0444,42.369763],[-71.044395,42.369776],[-71.044389,42.369788],[-71.044382,42.3698],[-71.04433,42.369866],[-71.044276,42.369935],[-71.044219,42.370003],[-71.044165,42.370069],[-71.044138,42.370101],[-71.04411,42.370133],[-71.044061,42.370195],[-71.044029,42.370242],[-71.044016,42.370273],[-71.044001,42.370304],[-71.043996,42.370314],[-71.043995,42.370318],[-71.043992,42.37032],[-71.043991,42.370324],[-71.04399,42.370328],[-71.04399,42.370331],[-71.04399,42.370335],[-71.04399,42.370339],[-71.04399,42.370343],[-71.04399,42.370346],[-71.043991,42.370349],[-71.043992,42.370353],[-71.043993,42.370355],[-71.043995,42.370359],[-71.043997,42.370361],[-71.044003,42.370367],[-71.04401,42.370371],[-71.044016,42.370377],[-71.044096,42.370413],[-71.04413,42.370427],[-71.044165,42.370441],[-71.04425,42.370481],[-71.044337,42.370526],[-71.044373,42.370546],[-71.04441,42.370564],[-71.04443,42.370575],[-71.044453,42.370585],[-71.044476,42.370594],[-71.044481,42.370593],[-71.044486,42.370593],[-71.044489,42.370592],[-71.044494,42.370591],[-71.044499,42.37059],[-71.044548,42.370536],[-71.04458,42.370502],[-71.04461,42.370467],[-71.04463,42.370449],[-71.04465,42.370432],[-71.044654,42.37043],[-71.044657,42.370428],[-71.044661,42.370427],[-71.044666,42.370426],[-71.044669,42.370425],[-71.044675,42.370424],[-71.04468,42.370424],[-71.044686,42.370424],[-71.044692,42.370424],[-71.044737,42.37044],[-71.04478,42.370457],[-71.044866,42.370494],[-71.04494,42.370528],[-71.044979,42.370546],[-71.04498,42.37055],[-71.044981,42.370554],[-71.044981,42.370558],[-71.044981,42.370562],[-71.044981,42.370567],[-71.04495,42.370635],[-71.044934,42.37067],[-71.044885,42.370749],[-71.044844,42.370833],[-71.044798,42.370959],[-71.044652,42.370929],[-71.044161,42.370718],[-71.042532,42.370003]]]]
</script>
</head>
<body>
<div class="map_container"></div>
<div class="slider"></div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment