function genImgContent(p,m){p=JSON.parse(p);if(Array.isArray(p[0])){let d='carousel'+Math.random().toString(36).substr(2,9);b='';for(let i=0;i`;} let c=``;return c;}else{return genImg(p,m);}} function genImg(p,m){var c=m?'w-100 h-100 object-fit-cover':'img-fluid w-100';var a=p[0];var u=`https://cdn.lazytrips.com/photos/`+a.slice(0,2)+'/'+a.slice(2,4)+'/'+a;var r=``+p[1]+``;return r;} function getNewLngLat(m,o,f){var p=m.project(new mapboxgl.LngLat(o[0],o[1]));p.x+=f.x;p.y+=f.y;return m.unproject(p);} function onMapZoom(m){if(contentMaps[m]){contentMaps[m].on('zoom',function(){Object.keys(markerData[m]).forEach(function(i){var p=markerData[m][i];if(!mDev()&&p.cardInstance){var o={x:p.c.card.oX,y:p.c.card.oY};var n=getNewLngLat(contentMaps[m],p.lonLat,o);p.cardInstance.setLngLat([n.lng,n.lat]);}});});}} async function fetchRoute(d,m,i,c){const p={routeId:d};const r=await fetch('/api/request-route',{method:'POST',headers:{'Content-Type':'application/json'},body:JSON.stringify(p)});if(r.ok){const j=await r.json();if(j.response&&j.response.route){const d=JSON.parse(j.response.route);markerData[m][i].c.route.json=d;updateMapWithRoute(m,i,d,c);}}} function updateMapWithRoute(m,i,r,c){const l='iconRoute_'+m+'_'+i;const g={type:'Feature',properties:{},geometry:{type:'LineString',coordinates:r}};if(contentMaps[m].getLayer(l)){contentMaps[m].setLayoutProperty(l,'visibility','visible');contentMaps[m].getSource(l).setData(g);}else{contentMaps[m].addLayer({id:l,type:'line',source:{type:'geojson',data:g},layout:{'line-join':'round','line-cap':'round'},paint:{'line-color':c,'line-width':5,'line-opacity':0.8}});}} function hideRouteLayer(m,i){const l='iconRoute_'+m+'_'+i;if(contentMaps[m].getLayer(l)){contentMaps[m].setLayoutProperty(l,'visibility','none');}} window.toggleMapIconClick=function(m,i,e=true){if(markerData[m][i].a){return;} for(const[key,icon]of Object.entries(markerData[m])){if(parseInt(key)===i){continue;} if(icon.popupInstance){icon.popupInstance.remove();delete icon.popupInstance;} if(icon.c?.route&&contentMaps[m].getLayer('iconRoute_'+m+'_'+key)){hideRouteLayer(m,key);} if(icon.marker){icon.marker.getElement().classList.remove('markerSpanSelect');} if(icon.cardInstance){icon.cardInstance.remove();delete icon.cardInstance;} if(icon.cardOverlay){var o=icon.cardOverlay;if(o&&o.parentNode){o.parentNode.removeChild(o);delete icon.cardOverlay;}} icon.a=false;} if(!markerData[m][i].a){markerData[m][i].marker.getElement().classList.add('markerSpanSelect');if(markerData[m][i].c?.popup){const t=markerData[m][i].c.popup.title;const p=markerData[m][i].c.popup.text;let popupHTML='
';if(t){popupHTML+='

'+t+'

';} if(p){popupHTML+='

'+p+'

';} popupHTML+='
';var popup=new mapboxgl.Popup({anchor:'bottom',closeButton:false,closeOnClick:false,className:'pointer'}).setLngLat(markerData[m][i].lonLat).setHTML(popupHTML).addTo(contentMaps[m]);markerData[m][i].popupInstance=popup;popup._content.addEventListener('click',function(){toggleMapIconClick(m,i);});markerData[m][i].marker.getElement().style.display='none';} if(markerData[m][i].c?.route){const layerId='iconRoute_'+m+'_'+i;if(contentMaps[m].getLayer(layerId)){contentMaps[m].setLayoutProperty(layerId,'visibility','visible');}else{fetchRoute(markerData[m][i].c.route.id,m,i,markerData[m][i].c.route.color);}} if(markerData[m][i].c?.card){var cardContent={n:markerData[m][i].c.card.title,d:markerData[m][i].c.card.d,t:markerData[m][i].c.card.t,p:markerData[m][i].c.card.p,};if(markerData[m][i].c.card.hasOwnProperty('link')){cardContent.l=markerData[m][i].c.card.link;} if(markerData[m][i].c.card.hasOwnProperty('linkText')){cardContent.s=markerData[m][i].c.card.linkText;} if(!mDev()){var cardContentHtml=createCardContentHtml(cardContent,false);var offsets={x:markerData[m][i].c.card.oX,y:markerData[m][i].c.card.oY};var newLngLat=getNewLngLat(contentMaps[m],markerData[m][i]['lonLat'],offsets);var cardPopup=new mapboxgl.Popup({anchor:'bottom',closeButton:false,closeOnClick:false,className:'mapPopupCard'}).setHTML(cardContentHtml).setLngLat([newLngLat.lng,newLngLat.lat]).addTo(contentMaps[m]);markerData[m][i].cardInstance=cardPopup;setTimeout(()=>{if(markerData[m][i].cardInstance&&markerData[m][i].cardInstance.isOpen()){markerData[m][i].c.card.height=markerData[m][i].cardInstance.getElement().offsetHeight;}},10);}else{var cardMobile=document.createElement('div');cardMobile.className='mapPopupCardMobile';cardMobile.innerHTML=createCardContentHtml(cardContent,true);var mapContainer=contentMaps[m].getContainer();mapContainer.appendChild(cardMobile);markerData[m][i].cardOverlay=cardMobile;}} markerData[m][i].a=true;if(e){updateMapBounds(m,i);}}else{resetMarkersAndCards(m);}} window.resetMarkersAndCards=function(m){Object.keys(markerData[m]).forEach((i)=>{if(markerData[m][i].marker){markerData[m][i].marker.getElement().classList.remove('markerSpanSelect');} if(markerData[m][i].popupInstance){markerData[m][i].popupInstance.remove();delete markerData[m][i].popupInstance;} if(markerData[m][i].c&&markerData[m][i].c.route){if(contentMaps[m].getLayer('iconRoute_'+m+'_'+i)){hideRouteLayer(m,i);}} if(markerData[m][i].c&&markerData[m][i].c.card){if(markerData[m][i].cardInstance){markerData[m][i].cardInstance.remove();delete markerData[m][i].cardInstance;}} if(markerData[m][i].cardOverlay){var o=markerData[m][i].cardOverlay;if(o&&o.parentNode){o.parentNode.removeChild(o);delete markerData[m][i].cardOverlay;}} markerData[m][i].marker.getElement().style.display='block';markerData[m][i].a=false;});} function formatTime(t){const h=Math.floor(t / 60);const m=t%60;return`⏱️ ${h > 0 ? h + " hour" + (h > 1 ? "s" : "") : ""}${h > 0 && m > 0 ? ", " : ""}${m > 0 ? m + " minute" + (m > 1 ? "s" : "") : ""}`;} function createCardContentHtml(c,m){cC='';if(m){cC=' d-flex flex-row';} let h='
';if(c.p){p=genImgContent(c.p,m);h+='
'+p+'
';} if(c.n||c.d||c.t||c.l){h+='
';if(c.n){h+='
'+c.n+'
';} if(c.d){h+='
';} if(c.d){h+='
🚗 '+c.d+'
';} if(c.t){h+='
'+formatTime(c.t)+'
';} if(!m){h+='
';} if(c.l){var z=c.s||'Read more';p='';if(m){p=' pt-2';} h+='';}} if(m){h+='
';} h+='
';return h;} document.addEventListener('shown.bs.modal',function(e){if(e.target.id.startsWith('contentMapModal_')){let m=e.target.id.replace('contentMapModal_','');let t=window.contentMaps[m];if(t){setTimeout(()=>{e.target.style.borderBottom='1px solid #eee';setTimeout(()=>{e.target.style.borderBottom='';},1);},1);}}});window.addEventListener('resize',function(){document.querySelectorAll('[id^="contentMapModal_"]').forEach(p=>{if(p.classList.contains('show')){let m=p.id.replace('contentMapModal_','');let t=window.contentMaps[m];if(t){setTimeout(()=>{t.style.borderBottom='1px solid #eee';setTimeout(()=>{t.style.borderBottom='';},1);},1);}}});});function mDev(){return window.innerWidth<=768||window.innerHeight<=600;} async function updateMapBounds(m,n){const map=contentMaps[m];const oldBounds=contentMaps[m].getBounds();var T=contentMaps[m].getBounds();const D=contentMaps[m].getContainer().getBoundingClientRect();const x=markerData[m][n];const lngDiff=oldBounds.getNorthEast().lng-oldBounds.getSouthWest().lng;const latDiff=oldBounds.getNorthEast().lat-oldBounds.getSouthWest().lat;const lngPerPx=lngDiff / D.width;const latPerPx=latDiff / D.height;const U=[];var B=new mapboxgl.LngLatBounds(T.toArray());var R=new mapboxgl.LngLatBounds(T.toArray());if(!mDev()&&markerData[m][n].c.card&&markerData[m][n].a){const cP=new Promise(async(resolve)=>{const h=await new Promise(resolveHeight=>{const hInt=setInterval(()=>{let chk=markerData[m][n].c.card.height;if(chk){clearInterval(hInt);resolveHeight(chk);}},100);});const w=300;var p=15;const z=contentMaps[m].getZoom();var a=0;if(z<7){a=(8-z)*10;} const oX=markerData[m][n].c.card.oX;const oY=markerData[m][n].c.card.oY;const P=map.project(new mapboxgl.LngLat(x.lonLat[0],x.lonLat[1]));const tG=P.y+oY-h if(tG{const jR=await new Promise(resolve=>{const intervalId=setInterval(()=>{if(x.c.route.json&&Array.isArray(x.c.route.json)&&x.c.route.json.length>0){clearInterval(intervalId);resolve(true);}},100);});if(jR){const paddingRoutePixels=20;let extendWest=false,extendEast=false,extendNorth=false,extendSouth=false;x.c.route.json.forEach(coord=>{if(coord[0]R.getEast())extendEast=true;if(coord[1]>R.getNorth())extendNorth=true;if(coord[1]status)){T.extend(B.getSouthWest());T.extend(B.getNorthEast());T.extend(R.getSouthWest());T.extend(R.getNorthEast());map.fitBounds(T,{padding:0,duration:600,easing:(t)=>t*(2-t)});}}const markerConfig={'finish':{className:'marker_finish',size:[58,58],offset:[0,-29],span:false,best:false,text:false,},'start':{className:'marker_start',size:[58,58],offset:[0,-29],span:false,best:false,text:false,},'star':{className:'marker_star',size:[58,58],offset:[0,-29],span:false,best:false,text:false,},'numbered':{className:'mapMarkerNum',size:false,offset:[0,0],span:true,best:true,text:false,},'star-plain':{className:'mapMarkerNum markerSpanRed',size:false,offset:[0,0],span:true,best:false,text:'☆',},'grey':{className:'mapMarkerNum markerSpanGrey',size:false,offset:[0,0],span:true,best:false,text:false,},};function addMarkersToMap(m,f=null){Object.values(markerData[m]).forEach((i,n)=>{if(f!==null&&n'+t+'';} if(mC.width&&mC.height){el.style.width=mC.width+'px';el.style.height=mC.height+'px';} var marker=new mapboxgl.Marker(el,{offset:mC.offset}).setLngLat(i.lonLat).addTo(window.contentMaps[m]);marker.markerType=i.iconType;if(f!==null){} i.marker=marker;window.bounds[m].extend(i.lonLat);if(i.c){marker.getElement().addEventListener('click',function(){event.stopPropagation();toggleMapIconClick(m,n,true);});}});}if(typeof window.contentMaps==='undefined'){window.contentMaps={};window.initialMapBounds={};} if(typeof window.bounds==='undefined'){window.bounds={};} if(typeof window.markerData==='undefined'){window.markerData={};} if(!markerData[1]){markerData[1]={};} function initMapbox_1(){mapboxgl.accessToken='pk.eyJ1IjoibGF6eXRyaXBzIiwiYSI6ImNsaTJ4anh2MTA5NDYzZW85ODJmMm45ZzcifQ.9u5pN47V7SsoFwF6_Pw5bQ';const contentMap_1=new mapboxgl.Map({container:'contentMap_1',style:'mapbox://styles/mapbox/streets-v11',center:[-75.90839,42.12576],zoom:5,cooperativeGestures:true});window.contentMaps[1]=contentMap_1;if(typeof window.bounds[1]==='undefined'){window.bounds[1]=new mapboxgl.LngLatBounds();} markerData[1][0]={"lonLat":[-74.007372,40.713043],"type":"start"};markerData[1][1]={"lonLat":[-79.037757,43.096249],"type":"finish"};markerData[1][2]={"lonLat":[-76.09923934292213,42.35629461239851],"type":"star","c":{"popup":{"title":"Finger Lakes Route","text":"420 miles (7 hours 50 minutes)"}}};markerData[1][3]={"lonLat":[-75.0949577721383,43.05437540670886],"type":"star","c":{"popup":{"title":"Catskills Route","text":"530 miles (9 hours 20 minutes)"}}};const geojson_1_0={type:'Feature',properties:{},geometry:{type:'LineString',coordinates:[["-74.0089078","40.7138323"],["-74.0111428","40.7148437"],["-74.0112725","40.7148947"],["-74.011341","40.7149136"],["-74.0114163","40.7149321"],["-74.0117286","40.7149835"],["-74.0132047","40.7152271"],["-74.0129123","40.7165082"],["-74.0129039","40.7165435"],["-74.0128368","40.7168144"],["-74.0127568","40.7171404"],["-74.0120533","40.7203103"],["-74.0120484","40.7203305"],["-74.0116472","40.722291"],["-74.0116352","40.7223458"],["-74.011371","40.7236184"],["-74.0112423","40.7242358"],["-74.011056","40.7251611"],["-74.0110413","40.7251648"],["-74.0100942","40.7250644"],["-74.0100602","40.7250588"],["-74.0100044","40.7250486"],["-74.0099221","40.7250285"],["-74.0098534","40.725007"],["-74.0097866","40.7249837"],["-74.0097219","40.724954"],["-74.0096652","40.7249234"],["-74.0094496","40.7247723"],["-74.0092468","40.7246244"],["-74.0085245","40.7240848"],["-74.0079539","40.7236689"],["-74.007927","40.72376"],["-74.0078542","40.7238206"],["-74.0077262","40.7239205"],["-74.0076987","40.7239414"],["-74.0073601","40.7241753"],["-74.0072848","40.7242365"],["-74.0072092","40.7243036"],["-74.0071021","40.7244038"],["-74.007031","40.7245113"],["-74.0069785","40.7248703"],["-74.0069655","40.7250076"],["-74.006965","40.7250579"],["-74.0069813","40.725119"],["-74.0070206","40.7252023"],["-74.0070657","40.7252793"],["-74.0071034","40.7253404"],["-74.0071547","40.7254188"],["-74.0072139","40.7254992"],["-74.0072648","40.7255537"],["-74.0073402","40.7256212"],["-74.0074538","40.7256988"],["-74.0075989","40.7257717"],["-74.0077649","40.7258275"],["-74.0079399","40.7258722"],["-74.0080944","40.7259036"],["-74.0089392","40.7259894"],["-74.0154389","40.7266341"],["-74.0158495","40.7266968"],["-74.0241234","40.7280914"],["-74.0263004","40.7284413"],["-74.0264465","40.7284588"],["-74.031798","40.7289253"],["-74.0320461","40.7289596"],["-74.0328099","40.7291302"],["-74.033462","40.7292792"],["-74.0344665","40.7295159"],["-74.0346131","40.7295622"],["-74.0347687","40.7296218"],["-74.0349169","40.7296904"],["-74.0352061","40.7298446"],["-74.0354936","40.7300118"],["-74.0356184","40.7300899"],["-74.0363138","40.7305554"],["-74.0366529","40.730818"],["-74.0367646","40.7308979"],["-74.0368384","40.7309452"],["-74.0369799","40.7310296"],["-74.037134","40.7311129"],["-74.0374123","40.7312437"],["-74.0376047","40.7313312"],["-74.0376855","40.7313649"],["-74.0377327","40.7313776"],["-74.0377911","40.7313873"],["-74.0379208","40.7313995"],["-74.0393168","40.7315244"],["-74.0394395","40.7315441"],["-74.0427429","40.7318488"],["-74.042841","40.7318578"],["-74.0430331","40.7318761"],["-74.0437274","40.7319473"],["-74.0447699","40.7320369"],["-74.0449046","40.7320438"],["-74.0450282","40.7320478"],["-74.0451196","40.732049"],["-74.0452026","40.7320461"],["-74.0454347","40.7320344"],["-74.045606","40.732018"],["-74.0482909","40.7316447"],["-74.0495217","40.7313927"],["-74.0501237","40.7312556"],["-74.0503193","40.731212"],["-74.0504075","40.731199"],["-74.0505694","40.7311817"],["-74.0507253","40.7311746"],["-74.0507987","40.7311731"],["-74.0508778","40.7311747"],["-74.0509683","40.7311785"],["-74.0510678","40.731186"],["-74.0511624","40.7311961"],["-74.0512679","40.731211"],["-74.0513796","40.731229"],["-74.0514977","40.7312563"],["-74.0516822","40.7313041"],["-74.0518183","40.7313492"],["-74.0518732","40.731369"],["-74.0519988","40.7314194"],["-74.0520567","40.7314447"],["-74.0521229","40.7314762"],["-74.0521905","40.7315109"],["-74.0522966","40.7315726"],["-74.0524218","40.7316498"],["-74.0525251","40.7317181"],["-74.0526294","40.7317898"],["-74.0527205","40.7318568"],["-74.0528609","40.7319655"],["-74.0598273","40.7379711"],["-74.0599101","40.7380367"],["-74.0600024","40.7381046"],["-74.0600862","40.7381611"],["-74.0601849","40.7382224"],["-74.0604941","40.7383987"],["-74.0610492","40.7386762"],["-74.0611755","40.7387329"],["-74.0612923","40.7387815"],["-74.0614128","40.7388286"],["-74.061743","40.7389467"],["-74.061837","40.7389762"],["-74.062209","40.7390794"],["-74.062603","40.7391721"],["-74.0627448","40.739199"],["-74.0630139","40.739243"],["-74.0632995","40.7392791"],["-74.0634283","40.7392925"],["-74.0635803","40.7393056"],["-74.063724","40.7393141"],["-74.0640065","40.7393231"],["-74.0643226","40.7393288"],["-74.0644946","40.7393339"],["-74.0646783","40.739343"],["-74.0648961","40.7393634"],["-74.0651035","40.7393889"],["-74.0655281","40.7394615"],["-74.0658057","40.7395038"],["-74.0658999","40.7395137"],["-74.0659913","40.7395213"],["-74.0660749","40.7395263"],["-74.0661575","40.7395282"],["-74.0662416","40.7395289"],["-74.0663227","40.7395255"],["-74.0663966","40.7395212"],["-74.0665469","40.7395065"],["-74.0668183","40.7394655"],["-74.067035","40.7394322"],["-74.0671871","40.7394104"],["-74.06725","40.7394055"],["-74.0673114","40.7394033"],["-74.0673732","40.7394043"],["-74.0674402","40.7394104"],["-74.0674953","40.7394192"],["-74.0675559","40.7394311"],["-74.0676124","40.739445"],["-74.0676701","40.739463"],["-74.0677337","40.7394862"],["-74.0677918","40.7395109"],["-74.0678502","40.739542"],["-74.0679034","40.7395733"],["-74.0679534","40.7396096"],["-74.068001","40.7396481"],["-74.0680412","40.7396872"],["-74.0680806","40.7397325"],["-74.068115","40.7397765"],["-74.0681498","40.7398253"],["-74.0681783","40.739876"],["-74.0681963","40.7399204"],["-74.0682117","40.7399698"],["-74.0682256","40.7400175"],["-74.0682318","40.7400668"],["-74.0682324","40.7401155"],["-74.0682276","40.7401695"],["-74.0682193","40.740222"],["-74.0682069","40.7402788"],["-74.0681896","40.7403437"],["-74.0681665","40.7404084"],["-74.0681393","40.7404671"],["-74.0681145","40.7405089"],["-74.068078","40.7405563"],["-74.0680358","40.7406034"],["-74.0679902","40.740647"],["-74.0679398","40.7406865"],["-74.0678878","40.7407234"],["-74.0678329","40.7407537"],["-74.06777","40.7407864"],["-74.0677088","40.7408129"],["-74.0676443","40.7408353"],["-74.0675802","40.7408552"],["-74.0675069","40.7408729"],["-74.0674358","40.7408857"],["-74.0673611","40.7408942"],["-74.0672877","40.7408981"],["-74.0672079","40.7408992"],["-74.0671306","40.7408955"],["-74.0670521","40.7408872"],["-74.0669793","40.7408749"],["-74.0669102","40.7408604"],["-74.06684","40.7408405"],["-74.0667742","40.7408149"],["-74.0667095","40.7407845"],["-74.0666494","40.7407511"],["-74.066595","40.7407155"],["-74.0665469","40.7406755"],["-74.0665073","40.7406336"],["-74.0664722","40.7405914"],["-74.0664432","40.7405476"],["-74.0664217","40.7405014"],["-74.0664064","40.7404559"],["-74.0663992","40.7404148"],["-74.0663972","40.7403732"],["-74.0664006","40.7403257"],["-74.0664109","40.7402783"],["-74.0664245","40.7402414"],["-74.0664422","40.7402012"],["-74.0664665","40.7401611"],["-74.0664951","40.7401234"],["-74.0665324","40.7400873"],["-74.0665722","40.7400534"],["-74.0666142","40.7400239"],["-74.0666602","40.739997"],["-74.0667091","40.7399735"],["-74.0667666","40.7399527"],["-74.0668251","40.7399353"],["-74.0668863","40.7399224"],["-74.066972","40.7399076"],["-74.0680149","40.7397954"],["-74.07443","40.7392087"],["-74.0755293","40.739169"],["-74.0758389","40.7391661"],["-74.0761248","40.7391695"],["-74.0763231","40.7391842"],["-74.0764852","40.739203"],["-74.0766529","40.7392235"],["-74.076903","40.7392592"],["-74.0773611","40.7393368"],["-74.0775919","40.7393853"],["-74.0778145","40.739439"],["-74.0780067","40.7394883"],["-74.0782138","40.7395508"],["-74.078427","40.7396204"],["-74.0786288","40.739693"],["-74.0790125","40.7398478"],["-74.0791955","40.7399292"],["-74.0793683","40.7400122"],["-74.0796837","40.7401849"],["-74.0839989","40.7426171"],["-74.0842871","40.7427568"],["-74.0845254","40.7428568"],["-74.0847483","40.7429448"],["-74.0850105","40.7430351"],["-74.0852754","40.7431141"],["-74.0858982","40.7432654"],["-74.0886168","40.7438458"],["-74.0888306","40.7438933"],["-74.0889988","40.7439329"],["-74.0896783","40.7441118"],["-74.0904911","40.7443326"],["-74.0912214","40.7445624"],["-74.0914821","40.7446571"],["-74.0917127","40.7447441"],["-74.0919931","40.744853"],["-74.0924762","40.7450557"],["-74.0955657","40.7464966"],["-74.0962487","40.7467912"],["-74.0965345","40.7468794"],["-74.0966566","40.7469098"],["-74.0968015","40.746943"],["-74.0969467","40.7469714"],["-74.0970939","40.7469947"],["-74.0972395","40.7470134"],["-74.0973932","40.7470292"],["-74.0975319","40.7470389"],["-74.097667","40.7470433"],["-74.0978245","40.7470467"],["-74.097972","40.7470426"],["-74.0981162","40.7470357"],["-74.0982576","40.7470233"],["-74.0984084","40.7470056"],["-74.0985555","40.7469839"],["-74.0986883","40.7469601"],["-74.0988358","40.7469299"],["-74.0989831","40.7468937"],["-74.100553","40.7464674"],["-74.1008833","40.7463817"],["-74.1010265","40.7463491"],["-74.1011672","40.7463214"],["-74.101304","40.7462997"],["-74.1014565","40.7462799"],["-74.1015951","40.7462664"],["-74.1017381","40.7462563"],["-74.1018889","40.7462514"],["-74.102028","40.7462522"],["-74.1021779","40.7462564"],["-74.1031729","40.7463444"],["-74.121298","40.7498575"],["-74.1222296","40.7500693"],["-74.1230513","40.7502237"],["-74.1241311","40.7503679"],["-74.1249821","40.7504487"],["-74.1254714","40.7504836"],["-74.1270665","40.7505401"],["-74.1276354","40.7505437"],["-74.1280787","40.7505329"],["-74.1288092","40.7505055"],["-74.1298099","40.7504262"],["-74.1304208","40.7503674"],["-74.1310993","40.7502829"],["-74.1318742","40.7501711"],["-74.1335206","40.7498884"],["-74.1346466","40.7497129"],["-74.1348449","40.7496902"],["-74.1352243","40.7496361"],["-74.1359457","40.7495117"],["-74.1438327","40.748328"],["-74.1438992","40.7483187"],["-74.1443964","40.7482465"],["-74.1602662","40.7459677"],["-74.1603801","40.7463215"],["-74.1604132","40.7463869"],["-74.1604425","40.7464338"],["-74.1605089","40.7465184"],["-74.1605533","40.7465608"],["-74.1605982","40.746596"],["-74.1606444","40.7466294"],["-74.1607042","40.7466615"],["-74.1607628","40.7466888"],["-74.1608682","40.746731"],["-74.1609807","40.7467753"],["-74.161134","40.7468359"],["-74.1612114","40.7468699"],["-74.1612787","40.7469011"],["-74.1615161","40.747024"],["-74.1620965","40.7473266"],["-74.1622468","40.7473986"],["-74.162363","40.7474509"],["-74.1624895","40.747502"],["-74.1627581","40.7476027"],["-74.1628867","40.7476475"],["-74.1631647","40.7477346"],["-74.1633115","40.7477768"],["-74.1634478","40.747812"],["-74.1635824","40.7478416"],["-74.1637134","40.7478675"],["-74.1638269","40.7478858"],["-74.163965","40.7479005"],["-74.1642308","40.7479179"],["-74.1644169","40.7479398"],["-74.1646553","40.7479688"],["-74.1666229","40.748121"],["-74.1668291","40.7481295"],["-74.1668993","40.7481308"],["-74.1672128","40.7481233"],["-74.1673649","40.7481136"],["-74.1675677","40.7480908"],["-74.1698719","40.7477714"],["-74.1701586","40.7477438"],["-74.1704499","40.7477402"],["-74.1705541","40.7477424"],["-74.1706712","40.7477474"],["-74.1708079","40.7477569"],["-74.1709802","40.7477738"],["-74.1712218","40.7478061"],["-74.1714774","40.7478554"],["-74.1715788","40.7478734"],["-74.1716922","40.7478967"],["-74.1735224","40.7483211"],["-74.1838519","40.7509875"],["-74.1840713","40.7510584"],["-74.1842496","40.7511117"],["-74.1843895","40.7511487"],["-74.1845228","40.7511804"],["-74.1847851","40.7512333"],["-74.184927","40.7512571"],["-74.1850704","40.7512771"],["-74.18561","40.7513371"],["-74.1858811","40.7513673"],["-74.1863448","40.7514189"],["-74.186627","40.751457"],["-74.1867569","40.7514793"],["-74.1868991","40.7515078"],["-74.1871625","40.7515691"],["-74.1873123","40.7516098"],["-74.1874359","40.7516467"],["-74.188984","40.7522298"],["-74.1892348","40.7523203"],["-74.189505","40.7524088"],["-74.1897593","40.7524836"],["-74.1900955","40.7525709"],["-74.1903246","40.7526192"],["-74.190996","40.7527164"],["-74.1918424","40.7527917"],["-74.1924325","40.7528434"],["-74.1931717","40.7529201"],["-74.193537","40.7529735"],["-74.1936691","40.7529973"],["-74.1938069","40.7530253"],["-74.1938917","40.7530438"],["-74.1940843","40.75309"],["-74.1943637","40.7531662"],["-74.1946241","40.7532483"],["-74.194787","40.753305"],["-74.1952217","40.753486"],["-74.2013656","40.7565988"],["-74.2017354","40.7567769"],["-74.2020823","40.7569353"],["-74.2023359","40.7570461"],["-74.210532","40.7602907"],["-74.2112727","40.7606722"],["-74.2184933","40.764763"],["-74.2193691","40.7652253"],["-74.2202005","40.7656222"],["-74.2209747","40.765943"],["-74.222019","40.7663171"],["-74.2233708","40.7666729"],["-74.2251456","40.7671122"],["-74.2260353","40.7674208"],["-74.2266449","40.7677151"],["-74.2290946","40.7692342"],["-74.2297041","40.7695923"],["-74.2301207","40.7698133"],["-74.2305315","40.7699881"],["-74.2309628","40.7701433"],["-74.2313876","40.7702633"],["-74.2317791","40.7703481"],["-74.2321982","40.7704221"],["-74.233283","40.7705609"],["-74.2356822","40.7708542"],["-74.2361295","40.7709294"],["-74.2366438","40.7710433"],["-74.2370909","40.77116"],["-74.237459","40.7712748"],["-74.237885","40.771439"],["-74.238382","40.7716583"],["-74.2390248","40.7719718"],["-74.2395143","40.7722918"],["-74.2401611","40.7728574"],["-74.2407676","40.7736096"],["-74.24097","40.7739758"],["-74.2411215","40.7742937"],["-74.2412446","40.7746709"],["-74.2414283","40.7757576"],["-74.2418647","40.7787141"],["-74.2420464","40.7794874"],["-74.2423881","40.7803401"],["-74.242838","40.7810289"],["-74.2432666","40.7815609"],["-74.2438775","40.7821857"],["-74.2444122","40.7825993"],["-74.2459749","40.7836642"],["-74.2466232","40.7842113"],["-74.247215","40.7848059"],["-74.2477617","40.7855517"],["-74.24816","40.7862573"],["-74.2484147","40.7868217"],["-74.2486278","40.7873734"],["-74.2487785","40.7881081"],["-74.2489049","40.7888415"],["-74.2489338","40.7898875"],["-74.2486759","40.7924537"],["-74.2486126","40.7935402"],["-74.2487076","40.7942614"],["-74.2489004","40.7948465"],["-74.2491462","40.7952812"],["-74.2494132","40.7956933"],["-74.2497314","40.7960456"],["-74.2501562","40.7964588"],["-74.2505887","40.7968142"],["-74.2510359","40.7970755"],["-74.2515626","40.7973635"],["-74.2520493","40.7975572"],["-74.2524856","40.7976962"],["-74.2531444","40.7978435"],["-74.2539131","40.7979491"],["-74.2545956","40.7979757"],["-74.2555046","40.7979144"],["-74.2580682","40.7976515"],["-74.2592998","40.7975657"],["-74.2602616","40.797532"],["-74.2612825","40.7975442"],["-74.2625324","40.7975904"],["-74.2640958","40.7977181"],["-74.265141","40.7978183"],["-74.2690357","40.7983473"],["-74.2700742","40.7985664"],["-74.2706721","40.7987104"],["-74.2712854","40.7988766"],["-74.2720006","40.7990918"],["-74.2725733","40.7992749"],["-74.2740827","40.7997962"],["-74.2764484","40.8006974"],["-74.2778768","40.8013004"],["-74.2793603","40.8019608"],["-74.2805545","40.802552"],["-74.2815021","40.8030666"],["-74.2822986","40.8035443"],["-74.2830781","40.804062"],["-74.2884799","40.8081677"],["-74.2893992","40.8087946"],["-74.2902765","40.8092235"],["-74.2914947","40.8097092"],["-74.292255","40.8099591"],["-74.2935285","40.8102402"],["-74.2942883","40.8103389"],["-74.2955351","40.8104227"],["-74.3007907","40.8107044"],["-74.30206","40.8108538"],["-74.3029418","40.8110026"],["-74.3041226","40.811257"],["-74.3051816","40.8115563"],["-74.3063647","40.811931"],["-74.3073729","40.8123176"],["-74.3080455","40.81262"],["-74.3087499","40.8129549"],["-74.3092331","40.8132167"],["-74.3104832","40.8139856"],["-74.311563","40.8146773"],["-74.3122884","40.81524"],["-74.3127619","40.8156917"],["-74.3132099","40.8161461"],["-74.3138389","40.8168821"],["-74.3148539","40.8182994"],["-74.3155064","40.8192122"],["-74.3178052","40.8224318"],["-74.3190649","40.8239402"],["-74.319873","40.8246143"],["-74.3206446","40.8251584"],["-74.3214388","40.8256758"],["-74.3307002","40.8313429"],["-74.3311548","40.8316351"],["-74.3316952","40.8320013"],["-74.3322952","40.8324427"],["-74.3331891","40.8331594"],["-74.3336478","40.8335719"],["-74.3340923","40.834001"],["-74.3345296","40.834442"],["-74.33493","40.8348797"],["-74.3352508","40.8352519"],["-74.3358562","40.8360237"],["-74.3387686","40.839823"],["-74.3391308","40.8402747"],["-74.3394014","40.8405816"],["-74.3396736","40.8408639"],["-74.3399369","40.8411153"],["-74.3402422","40.8413826"],["-74.3405304","40.8416135"],["-74.3408779","40.8418704"],["-74.3413476","40.8421887"],["-74.3416771","40.8423888"],["-74.342059","40.8426028"],["-74.3424423","40.8427972"],["-74.3429138","40.8430144"],["-74.3447263","40.8437208"],["-74.3467484","40.8445017"],["-74.3478406","40.8449315"],["-74.3481125","40.8450449"],["-74.3485342","40.845222"],["-74.3489381","40.8454235"],["-74.3493329","40.8456252"],["-74.3506997","40.8464961"],["-74.35112","40.8468133"],["-74.3514971","40.8471279"],["-74.3518774","40.8474858"],["-74.3522138","40.8478243"],["-74.3525858","40.8482492"],["-74.3528383","40.8485657"],["-74.355752","40.8525291"],["-74.355963","40.8527956"],["-74.3561778","40.8530496"],["-74.3566233","40.8535433"],["-74.3568305","40.8537564"],["-74.3570893","40.8540121"],["-74.3574322","40.8543309"],["-74.3578631","40.8547109"],["-74.3583092","40.8550722"],["-74.3588445","40.8554769"],["-74.3593443","40.8558236"],["-74.3604169","40.8565101"],["-74.3608799","40.8567895"],["-74.3618906","40.8573731"],["-74.3627558","40.8578324"],["-74.3642558","40.8585707"],["-74.364793","40.8588162"],["-74.3652885","40.8590185"],["-74.3656444","40.8591463"],["-74.3659196","40.8592316"],["-74.3662124","40.8593073"],["-74.3666263","40.8593833"],["-74.3671349","40.8594675"],["-74.3674293","40.8594971"],["-74.3677709","40.8595127"],["-74.3681661","40.8595171"],["-74.3686045","40.8594935"],["-74.3723039","40.8591682"],["-74.3727915","40.859139"],["-74.3732678","40.8591184"],["-74.3736874","40.8591067"],["-74.374325","40.8591204"],["-74.3748665","40.8591579"],["-74.3753586","40.8591977"],["-74.3759495","40.8592509"],["-74.3762533","40.8592884"],["-74.378524","40.8596466"],["-74.3806913","40.8599859"],["-74.3836694","40.8604451"],["-74.3847488","40.8605626"],["-74.3856702","40.8606379"],["-74.3866753","40.8606937"],["-74.3877354","40.860729"],["-74.3892702","40.8606943"],["-74.3956364","40.8604838"],["-74.3963328","40.8605022"],["-74.3970881","40.8605415"],["-74.3976672","40.8605885"],["-74.3981749","40.8606534"],["-74.3987016","40.860728"],["-74.3994363","40.8608639"],["-74.4112106","40.8633533"],["-74.4391206","40.8664494"],["-74.4398758","40.8665332"],["-74.4407167","40.8666454"],["-74.4415608","40.8667802"],["-74.4483916","40.8679406"],["-74.4490976","40.8680355"],["-74.4503376","40.8681268"],["-74.4508796","40.8681517"],["-74.4513962","40.8681657"],["-74.4518487","40.8681747"],["-74.4537546","40.8682151"],["-74.4547208","40.8682449"],["-74.4552852","40.868286"],["-74.4556736","40.8683336"],["-74.4561669","40.8684143"],["-74.4565756","40.8684991"],["-74.4569861","40.8685993"],["-74.4572965","40.8686872"],["-74.4576502","40.8688024"],["-74.4579631","40.8689119"],["-74.4582571","40.8690272"],["-74.458634","40.8691893"],["-74.4589916","40.8693523"],["-74.4593873","40.8695433"],["-74.4597772","40.8697478"],["-74.4602059","40.8699881"],["-74.4606795","40.8702731"],["-74.4611926","40.870612"],["-74.4616759","40.8709568"],["-74.4620606","40.8712531"],["-74.4627851","40.8718566"],["-74.4631484","40.8721806"],["-74.463626","40.8726309"],["-74.464712","40.8737228"],["-74.4651891","40.8742265"],["-74.4658753","40.874997"],["-74.4663547","40.8755638"],["-74.4666111","40.8758914"],["-74.4669247","40.8763156"],["-74.4672999","40.8768647"],["-74.4677099","40.8775582"],["-74.4679226","40.8779496"],["-74.4680766","40.878272"],["-74.468235","40.8786292"],["-74.4683445","40.8788884"],["-74.4685818","40.8795205"],["-74.4688133","40.8802691"],["-74.4694704","40.8827117"],["-74.4696238","40.8832106"],["-74.4697566","40.8835831"],["-74.469911","40.88396"],["-74.4700708","40.8843215"],["-74.4702587","40.8846974"],["-74.4704289","40.8850144"],["-74.4706041","40.8853103"],["-74.4707919","40.8856075"],["-74.4710082","40.8859097"],["-74.4711961","40.8861588"],["-74.4714911","40.8865065"],["-74.4717806","40.8868166"],["-74.4720828","40.8871125"],["-74.4723718","40.8873704"],["-74.4726513","40.8876011"],["-74.472927","40.8878136"],["-74.4733296","40.8880969"],["-74.4736089","40.888278"],["-74.4739016","40.8884532"],["-74.4741919","40.8886159"],["-74.4745088","40.8887833"],["-74.4748341","40.8889423"],["-74.4751192","40.8890696"],["-74.475367","40.8891738"],["-74.4759211","40.8893861"],["-74.4814362","40.8912088"],["-74.4817758","40.8913341"],["-74.4820529","40.8914451"],["-74.4823031","40.8915529"],["-74.4825378","40.8916604"],["-74.4828096","40.8917914"],["-74.4830876","40.8919352"],["-74.4834483","40.8921366"],["-74.4837271","40.8923044"],["-74.4839426","40.8924425"],["-74.4841442","40.8925776"],["-74.4843479","40.8927217"],["-74.4847938","40.8930673"],["-74.4851327","40.8933608"],["-74.4855623","40.8937686"],["-74.4857549","40.8939662"],["-74.4859271","40.8941531"],["-74.4860765","40.894337"],["-74.4862415","40.8945576"],["-74.4864128","40.8948008"],["-74.4866934","40.8952434"],["-74.4877771","40.8971232"],["-74.4880257","40.8975669"],["-74.4881745","40.8978208"],["-74.4883117","40.8980372"],["-74.4884707","40.8982707"],["-74.4887217","40.8986146"],["-74.4892063","40.8992255"],["-74.4894175","40.8994608"],["-74.4896388","40.8996962"],["-74.4898389","40.8998973"],["-74.4904451","40.9004503"],["-74.4926126","40.9023615"],["-74.4946072","40.9040062"],["-74.4951369","40.9044043"],["-74.4963475","40.9052691"],["-74.4976618","40.9061309"],["-74.4988989","40.9068797"],["-74.5014618","40.9083589"],["-74.5021405","40.9087188"],["-74.5028018","40.9090389"],["-74.5032463","40.9092395"],["-74.503813","40.9094829"],["-74.5047612","40.9098485"],["-74.5055179","40.9101097"],["-74.5065923","40.9104315"],["-74.5077562","40.9107232"],["-74.5087243","40.910922"],["-74.5093515","40.9110296"],["-74.5099166","40.9111176"],["-74.51064","40.911213"],["-74.5117258","40.9113114"],["-74.5122046","40.9113433"],["-74.513054","40.9113766"],["-74.5135108","40.9113862"],["-74.5520809","40.9106731"],["-74.5541728","40.9106327"],["-74.563204","40.9104536"],["-74.5648342","40.9103491"],["-74.5672612","40.9100856"],["-74.5785651","40.9081488"],["-74.5792763","40.9080726"],["-74.5795696","40.9080598"],["-74.5812147","40.9079725"],["-74.5819789","40.9079634"],["-74.5823813","40.9079755"],["-74.5827488","40.9079936"],["-74.5833641","40.9080356"],["-74.5842376","40.9081243"],["-74.5902671","40.9089189"],["-74.5908522","40.9089737"],["-74.5913989","40.9090056"],["-74.5920062","40.9090336"],["-74.5925964","40.9090504"],["-74.5937614","40.9090253"],["-74.594617","40.908972"],["-74.5949365","40.9089461"],["-74.5956557","40.9088656"],["-74.5961261","40.9088012"],["-74.5967764","40.9086942"],["-74.5974882","40.9085627"],["-74.5978514","40.9084885"],["-74.5987243","40.9082641"],["-74.6104204","40.9048106"],["-74.6337415","40.8978863"],["-74.6341091","40.8977791"],["-74.6489303","40.8933787"],["-74.6498652","40.8931324"],["-74.6515558","40.8927777"],["-74.6521352","40.8926841"],["-74.6528131","40.8925836"],["-74.6539158","40.892467"],["-74.6546604","40.8924097"],["-74.6552433","40.8923788"],["-74.6558856","40.8923585"],["-74.6568817","40.892346"],["-74.6607646","40.8925531"],["-74.6629832","40.8926837"],["-74.6664382","40.8928522"],["-74.6677308","40.8928726"],["-74.668194","40.8928638"],["-74.6687368","40.8928439"],["-74.6693538","40.8928104"],["-74.6708008","40.8926808"],["-74.6713437","40.8926134"],["-74.6717255","40.8925594"],["-74.6728376","40.8923652"],["-74.673493","40.8922325"],["-74.6741142","40.8920923"],["-74.6760702","40.8915681"],["-74.6771","40.8912959"],["-74.678895","40.8908253"],["-74.6798805","40.8906029"],["-74.6809176","40.8904356"],["-74.6815787","40.8903412"],["-74.683701","40.8901476"],["-74.6841396","40.8901297"],["-74.6848418","40.890109"],["-74.6853591","40.8901035"],["-74.6860777","40.8901239"],["-74.6910688","40.8903408"],["-74.692249","40.8903939"],["-74.6934802","40.8904493"],["-74.6945667","40.8904843"],["-74.696318","40.8905538"],["-74.6966972","40.8905841"],["-74.6968576","40.8905928"],["-74.6972202","40.8906086"],["-74.6982505","40.8906524"],["-74.6982702","40.8906529"],["-74.6985964","40.8906484"],["-74.7031112","40.8908396"],["-74.707345","40.8910393"],["-74.7077262","40.8910661"],["-74.7078605","40.8910783"],["-74.7086115","40.8911578"],["-74.7090315","40.8912228"],["-74.7097525","40.8913694"],["-74.710133","40.8914614"],["-74.7104644","40.8915497"],["-74.7108333","40.8916594"],["-74.7115387","40.8918897"],["-74.7118667","40.8920104"],["-74.7121131","40.8921096"],["-74.7128106","40.8924294"],["-74.7130875","40.8925721"],["-74.7134453","40.8927661"],["-74.7137824","40.8929598"],["-74.7142859","40.8932736"],["-74.7145547","40.8934593"],["-74.7149977","40.8937878"],["-74.7153187","40.8940503"],["-74.7154563","40.8941703"],["-74.7156561","40.8943536"],["-74.7159021","40.8945957"],["-74.7161854","40.8949025"],["-74.7164196","40.8951727"],["-74.7166469","40.8954479"],["-74.7168451","40.8957019"],["-74.7170278","40.8959582"],["-74.7172087","40.89624"],["-74.7173443","40.89646"],["-74.7194641","40.9001991"],["-74.7196645","40.9005272"],["-74.7201737","40.9013016"],["-74.7203702","40.9015782"],["-74.7214971","40.9030849"],["-74.7219757","40.9035666"],["-74.7222607","40.9038598"],["-74.7225483","40.9041532"],["-74.7229053","40.9045034"],["-74.7233375","40.9049146"],["-74.7239024","40.9054237"],["-74.7244167","40.9058586"],["-74.7247795","40.9061509"],["-74.7253081","40.9065504"],["-74.7257963","40.9069053"],["-74.7263042","40.9072557"],["-74.7269798","40.9077043"],["-74.72716","40.9078335"],["-74.7272277","40.9078776"],["-74.7273637","40.9079595"],["-74.7275997","40.9081013"],["-74.7278864","40.9082623"],["-74.7282027","40.9084367"],["-74.7285872","40.9086414"],["-74.7293304","40.9090298"],["-74.7296552","40.9091944"],["-74.7303073","40.9095117"],["-74.7307749","40.9097193"],["-74.7312955","40.9099453"],["-74.7319927","40.9102287"],["-74.7345381","40.9111107"],["-74.7377349","40.9119083"],["-74.7383302","40.912022"],["-74.7397058","40.9122436"],["-74.7411177","40.9124137"],["-74.7433617","40.9125723"],["-74.7440601","40.9125938"],["-74.7447266","40.9126067"],["-74.7471499","40.9125287"],["-74.7543742","40.9119869"],["-74.7546501","40.9119737"],["-74.7549","40.9119644"],["-74.7551638","40.9119661"],["-74.755469","40.9119747"],["-74.7557546","40.9119931"],["-74.7560001","40.9120135"],["-74.7562931","40.9120461"],["-74.7565349","40.9120798"],["-74.7568244","40.9121274"],["-74.7570768","40.9121798"],["-74.7573416","40.9122439"],["-74.7575954","40.9123131"],["-74.7578675","40.9123948"],["-74.7581137","40.9124793"],["-74.7583592","40.91257"],["-74.7585909","40.9126658"],["-74.7588192","40.9127699"],["-74.7590616","40.9128871"],["-74.7593885","40.9130544"],["-74.7626284","40.9147749"],["-74.7631035","40.9150179"],["-74.7636023","40.9152615"],["-74.7638531","40.9153767"],["-74.7641052","40.9154823"],["-74.7643717","40.9155825"],["-74.764606","40.9156647"],["-74.7648253","40.9157371"],["-74.7650668","40.9158087"],["-74.7653328","40.9158789"],["-74.7656592","40.915957"],["-74.7659712","40.9160211"],["-74.7662487","40.9160722"],["-74.7665222","40.9161152"],["-74.7667992","40.9161491"],["-74.7671077","40.9161808"],["-74.7673694","40.9161996"],["-74.7676748","40.9162151"],["-74.767976","40.9162242"],["-74.7691424","40.9162358"],["-74.7711226","40.9162225"],["-74.7723293","40.9162581"],["-74.7730119","40.9163112"],["-74.7737948","40.9164152"],["-74.7745074","40.9165598"],["-74.77511","40.9167091"],["-74.7756093","40.9168634"],["-74.7760712","40.9170221"],["-74.7764815","40.9171787"],["-74.7768744","40.9173443"],["-74.7772296","40.9175103"],["-74.7775399","40.9176647"],["-74.7779675","40.9179208"],["-74.7783578","40.9182064"],["-74.7786844","40.9184681"],["-74.7789309","40.9186922"],["-74.7791399","40.9188905"],["-74.7793142","40.9190889"],["-74.7794755","40.9192895"],["-74.7796092","40.91947"],["-74.779746","40.9196732"],["-74.7798583","40.9198496"],["-74.7799928","40.920072"],["-74.7801498","40.9203501"],["-74.7811991","40.9222641"],["-74.7812986","40.9224262"],["-74.7814274","40.9226229"],["-74.7815629","40.9228058"],["-74.7816964","40.922975"],["-74.7818794","40.9231877"],["-74.7821666","40.9234826"],["-74.78246","40.923755"],["-74.7827446","40.9239906"],["-74.7830687","40.9242154"],["-74.7835424","40.9244968"],["-74.7840224","40.9247416"],["-74.7844921","40.9249432"],["-74.7848821","40.9250876"],["-74.7852741","40.9252137"],["-74.7856206","40.9253053"],["-74.7860107","40.925395"],["-74.7865013","40.9254887"],["-74.7870256","40.9255458"],["-74.7874688","40.9255794"],["-74.7877909","40.9255893"],["-74.788104","40.9255923"],["-74.7884364","40.9255687"],["-74.7888584","40.9255266"],["-74.7893995","40.9254575"],["-74.7898367","40.9253775"],["-74.7900317","40.9253326"],["-74.7904239","40.9252238"],["-74.7930513","40.9244275"],["-74.7936994","40.9242379"],["-74.7941878","40.9241039"],["-74.7945657","40.9240171"],["-74.794955","40.9239417"],["-74.7961145","40.9237612"],["-74.7988535","40.9233357"],["-74.7992182","40.9232677"],["-74.7995512","40.9231927"],["-74.8000372","40.9230522"],["-74.8004808","40.9229068"],["-74.8007869","40.9227876"],["-74.8010845","40.9226601"],["-74.8014047","40.9225023"],["-74.801683","40.9223569"],["-74.8019449","40.9222119"],["-74.8021405","40.9220906"],["-74.8023343","40.9219612"],["-74.8025321","40.9218176"],["-74.8027312","40.9216642"],["-74.8029663","40.9214683"],["-74.8033481","40.9211086"],["-74.8051103","40.9192977"],["-74.8057922","40.9186548"],["-74.8065081","40.9181264"],["-74.8069966","40.917841"],["-74.8073497","40.9176748"],["-74.8077313","40.917519"],["-74.8083102","40.9173294"],["-74.808662","40.9172216"],["-74.8089024","40.917161"],["-74.8092921","40.9170899"],["-74.8098112","40.9170145"],["-74.8101939","40.9169809"],["-74.8105922","40.9169551"],["-74.8109608","40.9169467"],["-74.8114186","40.9169559"],["-74.8117914","40.9169815"],["-74.8121599","40.9170294"],["-74.8125163","40.9170852"],["-74.8130449","40.917195"],["-74.8166752","40.9180441"],["-74.8174685","40.9181995"],["-74.818179","40.9183005"],["-74.8187141","40.9183436"],["-74.8192033","40.9183683"],["-74.8197694","40.9183508"],["-74.8242376","40.9179343"],["-74.8245909","40.9179089"],["-74.8251478","40.9178954"],["-74.8254431","40.9178996"],["-74.8260204","40.9179373"],["-74.8264762","40.9179998"],["-74.8269338","40.918076"],["-74.8272867","40.918155"],["-74.82754","40.9182195"],["-74.8278017","40.9182966"],["-74.8281643","40.9184203"],["-74.8309895","40.9195091"],["-74.831923","40.9198581"],["-74.8326518","40.9200877"],["-74.8331572","40.9201979"],["-74.8336983","40.9202884"],["-74.8342321","40.9203465"],["-74.8347315","40.9203737"],["-74.8351262","40.9203771"],["-74.8355205","40.9203565"],["-74.8358716","40.9203276"],["-74.8363303","40.9202665"],["-74.8378287","40.9200034"],["-74.8388207","40.9198403"],["-74.8402993","40.9195891"],["-74.84097","40.9195081"],["-74.8414839","40.9194691"],["-74.8420546","40.9194544"],["-74.8425235","40.9194673"],["-74.8430199","40.919488"],["-74.8434267","40.9195256"],["-74.8438704","40.9195743"],["-74.844241","40.9196243"],["-74.8444744","40.9196624"],["-74.845874","40.9199878"],["-74.8498251","40.9209704"],["-74.8501243","40.9210412"],["-74.8509993","40.9212398"],["-74.8519877","40.9214584"],["-74.8536101","40.921718"],["-74.8545204","40.9218184"],["-74.8553405","40.9218935"],["-74.8716937","40.9231212"],["-74.8724515","40.9232187"],["-74.8733158","40.9233527"],["-74.8742764","40.9235561"],["-74.8753586","40.9238058"],["-74.8768659","40.9242725"],["-74.8776769","40.9245752"],["-74.8784387","40.9249044"],["-74.8791834","40.9252603"],["-74.8833022","40.9274446"],["-74.884528","40.9280413"],["-74.8853959","40.9283766"],["-74.8859862","40.9285758"],["-74.8868594","40.9288134"],["-74.8872523","40.9289055"],["-74.8882023","40.9290822"],["-74.8886452","40.9291467"],["-74.8894795","40.9292335"],["-74.8930908","40.9294035"],["-74.8944487","40.9295013"],["-74.895231","40.9295884"],["-74.8963649","40.9297834"],["-74.8998662","40.9304287"],["-74.901293","40.930642"],["-74.9018802","40.9306869"],["-74.9025978","40.9307099"],["-74.9032602","40.9307014"],["-74.9038252","40.9306759"],["-74.9043001","40.9306302"],["-74.9048301","40.9305623"],["-74.9053597","40.9304697"],["-74.9062757","40.9302627"],["-74.9074946","40.9299358"],["-74.9148623","40.9279373"],["-74.9180896","40.9271564"],["-74.9256055","40.9254854"],["-74.9267287","40.9252563"],["-74.9285136","40.9250324"],["-74.9290031","40.9249908"],["-74.9309045","40.9249078"],["-74.9313981","40.9249034"],["-74.9363732","40.9251097"],["-74.9414069","40.9251247"],["-74.9422256","40.9251249"],["-74.9442657","40.9251369"],["-74.9464988","40.9251201"],["-74.9467383","40.9251103"],["-74.9474051","40.92505"],["-74.9477263","40.9250087"],["-74.9516408","40.9244104"],["-74.953403","40.9241935"],["-74.953922","40.924154"],["-74.9550333","40.9241071"],["-74.9557072","40.9240953"],["-74.9560656","40.9241034"],["-74.9574558","40.924177"],["-74.9579344","40.9242295"],["-74.9582936","40.9242773"],["-74.9587287","40.9243497"],["-74.9593147","40.9244748"],["-74.9597648","40.9245913"],["-74.9604377","40.9248043"],["-74.9606961","40.9248961"],["-74.9609501","40.9250014"],["-74.9611588","40.9250932"],["-74.9614714","40.9252333"],["-74.9616836","40.9253382"],["-74.9621171","40.9255699"],["-74.9623851","40.9257212"],["-74.9649783","40.9273426"],["-74.9654264","40.9276033"],["-74.9658072","40.9278057"],["-74.9661821","40.9279801"],["-74.9665617","40.9281387"],["-74.9669836","40.9282982"],["-74.9673888","40.9284291"],["-74.9678188","40.9285537"],["-74.968292","40.9286768"],["-74.9691077","40.9288487"],["-74.9702141","40.9290369"],["-74.9709091","40.9291224"],["-74.9715084","40.9291816"],["-74.9727413","40.9292496"],["-74.9739383","40.929273"],["-74.9784379","40.9293284"],["-74.9790545","40.9293563"],["-74.9799218","40.9294625"],["-74.980472","40.9295627"],["-74.9808796","40.9296544"],["-74.9813001","40.9297631"],["-74.9816661","40.9298703"],["-74.982117","40.930035"],["-74.982773","40.930308"],["-74.984268","40.9309582"],["-74.9857528","40.9316048"],["-74.9865441","40.9319181"],["-74.9870939","40.932081"],["-74.9876473","40.9322109"],["-74.988276","40.9323289"],["-74.988983","40.9324271"],["-74.990485","40.9325597"],["-74.9914229","40.9326485"],["-74.9930593","40.9327905"],["-74.9937481","40.9328855"],["-74.9944458","40.933002"],["-74.9964684","40.9334356"],["-75.0001766","40.9342577"],["-75.0020008","40.934616"],["-75.0061723","40.9352781"],["-75.0075872","40.9354467"],["-75.0093384","40.9356346"],["-75.01049","40.9357291"],["-75.0114812","40.9357713"],["-75.0124028","40.9357878"],["-75.0134026","40.9357982"],["-75.0141191","40.9357703"],["-75.0147703","40.9357342"],["-75.0153098","40.9356794"],["-75.0158406","40.935608"],["-75.0164989","40.9354869"],["-75.020537","40.9345441"],["-75.0237077","40.9338519"],["-75.0246228","40.9336455"],["-75.0251374","40.9335052"],["-75.026485","40.9330461"],["-75.0293312","40.9320759"],["-75.030868","40.9316367"],["-75.0344088","40.9306885"],["-75.0350524","40.9305022"],["-75.0354686","40.9303557"],["-75.0365206","40.9299197"],["-75.0377839","40.929394"],["-75.0392087","40.9288079"],["-75.0400269","40.9285157"],["-75.0422909","40.9277761"],["-75.0437906","40.9272541"],["-75.0469171","40.9259849"],["-75.0485097","40.9254151"],["-75.0533637","40.9238141"],["-75.054758","40.923392"],["-75.0555129","40.9232054"],["-75.0561631","40.9230722"],["-75.0568415","40.9229493"],["-75.0573879","40.9228707"],["-75.0580272","40.9228017"],["-75.0587327","40.9227401"],["-75.0594359","40.92271"],["-75.0601158","40.9226919"],["-75.0608063","40.9227026"],["-75.0613615","40.9227273"],["-75.0620223","40.9227721"],["-75.0626093","40.9228435"],["-75.0630915","40.9229265"],["-75.0635599","40.923031"],["-75.0640514","40.9231735"],["-75.0645248","40.9233457"],["-75.0650166","40.9235486"],["-75.0654441","40.923765"],["-75.0658807","40.9240221"],["-75.0664393","40.9244139"],["-75.0668033","40.9247131"],["-75.0671145","40.9250152"],["-75.0673124","40.9252234"],["-75.0677743","40.9258014"],["-75.0691773","40.9275769"],["-75.0695951","40.9280193"],["-75.0700249","40.9283931"],["-75.0704752","40.9287246"],["-75.0709082","40.9289927"],["-75.0713683","40.9292334"],["-75.0718776","40.9294607"],["-75.0723185","40.9296269"],["-75.072765","40.9297583"],["-75.0732638","40.9298867"],["-75.0739067","40.9299949"],["-75.0745222","40.9300682"],["-75.0749786","40.9300918"],["-75.0754102","40.9300968"],["-75.0759014","40.9300719"],["-75.0763631","40.9300288"],["-75.0768486","40.9299575"],["-75.0773279","40.9298636"],["-75.077851","40.9297236"],["-75.0784445","40.9295467"],["-75.0788525","40.9294106"],["-75.0818859","40.9282418"],["-75.0825235","40.9280021"],["-75.0830089","40.9278403"],["-75.0837375","40.9276184"],["-75.08423","40.9275083"],["-75.0845855","40.9274382"],["-75.0849125","40.92739"],["-75.085346","40.9273476"],["-75.0858698","40.9273171"],["-75.086345","40.9273112"],["-75.0869299","40.9273445"],["-75.087618","40.9274046"],["-75.0883867","40.9274886"],["-75.0890955","40.9275862"],["-75.0898781","40.9277137"],["-75.0903469","40.927799"],["-75.0909105","40.9279117"],["-75.0913077","40.9280062"],["-75.092173","40.9282353"],["-75.0928618","40.9284449"],["-75.0936548","40.928716"],["-75.0943908","40.9289979"],["-75.0950962","40.9292969"],["-75.0957239","40.9295937"],["-75.0963168","40.9299019"],["-75.096779","40.9301577"],["-75.0973676","40.9305104"],["-75.0978612","40.9308573"],["-75.1014942","40.9334906"],["-75.1018358","40.9337532"],["-75.1021486","40.9340339"],["-75.1024673","40.9343691"],["-75.1026942","40.9346399"],["-75.1028673","40.9348721"],["-75.1030243","40.9351033"],["-75.1032051","40.9354206"],["-75.1033572","40.9357262"],["-75.1034893","40.9360647"],["-75.1035926","40.9364031"],["-75.1036598","40.9366695"],["-75.1037022","40.9369013"],["-75.1037493","40.9374363"],["-75.1038181","40.9383268"],["-75.103872","40.9387532"],["-75.1039216","40.9389594"],["-75.1039774","40.939168"],["-75.1040477","40.9393787"],["-75.1041813","40.9397052"],["-75.1043297","40.94004"],["-75.1046131","40.9405552"],["-75.1047903","40.9408164"],["-75.104998","40.9410728"],["-75.1068634","40.9432658"],["-75.107551","40.9441049"],["-75.1079444","40.9446305"],["-75.1086301","40.9456182"],["-75.1102734","40.9480303"],["-75.1107979","40.9487143"],["-75.1111018","40.9490665"],["-75.1115439","40.9495217"],["-75.1132157","40.9511731"],["-75.1136027","40.951577"],["-75.1140189","40.9520515"],["-75.1143882","40.952517"],["-75.1148266","40.9531232"],["-75.1154211","40.9540708"],["-75.1157856","40.9547842"],["-75.1160744","40.9554663"],["-75.1162436","40.9559376"],["-75.1163899","40.956393"],["-75.1165062","40.9568126"],["-75.1166144","40.9573073"],["-75.1167535","40.9580526"],["-75.1170557","40.9609082"],["-75.1174631","40.9641562"],["-75.1175666","40.9647162"],["-75.1177034","40.9652542"],["-75.1178375","40.9656423"],["-75.1180598","40.9661558"],["-75.1182821","40.9665551"],["-75.1187011","40.9672856"],["-75.1188606","40.9676247"],["-75.1189259","40.9678159"],["-75.1189775","40.968058"],["-75.1190011","40.9683245"],["-75.1190126","40.968553"],["-75.1190273","40.9687102"],["-75.119052","40.968849"],["-75.1191006","40.9690109"],["-75.1192337","40.9693242"],["-75.1193962","40.9696306"],["-75.1195624","40.9698796"],["-75.1197186","40.9700799"],["-75.1198985","40.9702862"],["-75.120111","40.970493"],["-75.1203361","40.9706787"],["-75.1205787","40.9708458"],["-75.1209106","40.9710332"],["-75.1212565","40.9711824"],["-75.121599","40.9713007"],["-75.1219449","40.9713856"],["-75.1222857","40.9714368"],["-75.1226648","40.9714621"],["-75.1230964","40.9714425"],["-75.1236141","40.971378"],["-75.1281302","40.9707127"],["-75.1287532","40.9706312"],["-75.1291922","40.9705967"],["-75.1296309","40.9705999"],["-75.1300651","40.970645"],["-75.1304873","40.9707233"],["-75.1308933","40.9708366"],["-75.1312248","40.9709685"],["-75.1315684","40.9711416"],["-75.1318468","40.9713171"],["-75.1320615","40.9714714"],["-75.1323202","40.9717056"],["-75.1326647","40.9720877"],["-75.1332532","40.9728183"],["-75.1340637","40.9738869"],["-75.1342821","40.9742681"],["-75.134442","40.9745947"],["-75.1372256","40.9814943"],["-75.137341","40.9818403"],["-75.1375152","40.9822751"],["-75.1376698","40.9827553"],["-75.1380754","40.9843929"],["-75.1382224","40.9849797"],["-75.1384126","40.9856878"],["-75.1385537","40.9861691"],["-75.1386781","40.98652"],["-75.138894","40.9870161"],["-75.1391482","40.9875505"],["-75.1427522","40.9947299"],["-75.14316","40.9955119"],["-75.1433923","40.9958834"],["-75.143598","40.9961555"],["-75.143825","40.9964117"],["-75.1440453","40.9966139"],["-75.144228","40.9967695"],["-75.1444294","40.9969197"],["-75.1446717","40.9970781"],["-75.144948","40.9972427"],["-75.145223","40.9973879"],["-75.1455269","40.9975221"],["-75.1458624","40.9976442"],["-75.1463137","40.9977705"],["-75.1467749","40.9978686"],["-75.1500847","40.9982904"],["-75.1519494","40.9984913"],["-75.1522414","40.9985102"],["-75.1525527","40.9985204"],["-75.1528771","40.9985248"],["-75.1532784","40.9985181"],["-75.1536658","40.998494"],["-75.1540514","40.9984588"],["-75.154502","40.9984024"],["-75.1548912","40.9983366"],["-75.1551096","40.9982939"],["-75.1554101","40.9982237"],["-75.1558932","40.9980895"],["-75.1568277","40.9977893"],["-75.164069","40.9953639"],["-75.1654459","40.9948607"],["-75.1677164","40.9938021"],["-75.1722872","40.9915195"],["-75.1740355","40.9906547"],["-75.1746695","40.9903694"],["-75.1758239","40.9898857"],["-75.1878116","40.9854856"],["-75.1888051","40.9850496"],["-75.1894025","40.9847367"],["-75.1902558","40.9842198"],["-75.1907469","40.9838769"],["-75.1911894","40.9835347"],["-75.1915623","40.9832325"],["-75.1919224","40.9829153"],["-75.1921764","40.9826671"],["-75.194109","40.9806055"],["-75.1945016","40.9802169"],["-75.1948497","40.9799191"],["-75.1952277","40.979666"],["-75.1956268","40.9794361"],["-75.1960008","40.9792607"],["-75.1963328","40.9791347"],["-75.196687","40.979019"],["-75.1970468","40.9789286"],["-75.1974855","40.9788493"],["-75.1979308","40.9787938"],["-75.1982781","40.9787748"],["-75.1986989","40.9787671"],["-75.1990064","40.9787847"],["-75.1992744","40.9788104"],["-75.1995869","40.9788591"],["-75.2001128","40.978961"],["-75.2113415","40.9814704"],["-75.2116968","40.9815645"],["-75.2120096","40.9816587"],["-75.2123251","40.9817723"],["-75.2125732","40.9818713"],["-75.212773","40.9819581"],["-75.2130388","40.9820906"],["-75.2132908","40.9822225"],["-75.2135144","40.9823497"],["-75.2137167","40.9824743"],["-75.213953","40.9826487"],["-75.2155444","40.9838649"],["-75.2159312","40.9841376"],["-75.2164134","40.9844139"],["-75.2169127","40.9846102"],["-75.217342","40.9847602"],["-75.2177213","40.9848576"],["-75.2181011","40.9849318"],["-75.2184326","40.9849745"],["-75.2191455","40.9850335"],["-75.2287187","40.9857135"],["-75.2296692","40.9858149"],["-75.2304745","40.9859115"],["-75.2321993","40.9861852"],["-75.2328852","40.9863227"],["-75.2345849","40.9867351"],["-75.2354939","40.9869776"],["-75.2383997","40.9878992"],["-75.2426334","40.9892608"],["-75.2675956","40.9972371"],["-75.2686235","40.997584"],["-75.2696378","40.9979815"],["-75.270465","40.9983517"],["-75.2713623","40.9987942"],["-75.2964933","41.0113225"],["-75.296865","41.0115351"],["-75.2972325","41.0117596"],["-75.2975614","41.0119831"],["-75.2978656","41.0122019"],["-75.2981904","41.0124573"],["-75.2984934","41.0127079"],["-75.2987514","41.0129457"],["-75.2990114","41.0131972"],["-75.2992588","41.0134594"],["-75.2995082","41.0137442"],["-75.2997705","41.0140688"],["-75.3000089","41.0143995"],["-75.3002815","41.0148297"],["-75.3098754","41.0316533"],["-75.3102268","41.0325476"],["-75.3126654","41.0403248"],["-75.313366","41.0425997"],["-75.3142481","41.0454583"],["-75.3149899","41.0478298"],["-75.3151833","41.0484248"],["-75.3155693","41.0496551"],["-75.3157925","41.0503829"],["-75.3161388","41.0516192"],["-75.3164274","41.0525256"],["-75.3167686","41.0533498"],["-75.3170255","41.053888"],["-75.3173718","41.0543379"],["-75.3176927","41.0547016"],["-75.3180127","41.0549997"],["-75.3185014","41.0553855"],["-75.3188403","41.055627"],["-75.3192027","41.0558382"],["-75.3196951","41.056106"],["-75.3268967","41.0597051"],["-75.3295462","41.0610184"],["-75.330126","41.0612731"],["-75.3306719","41.0614857"],["-75.3311279","41.0616494"],["-75.3316205","41.0618089"],["-75.3321764","41.0619658"],["-75.3326876","41.0620902"],["-75.3332004","41.0622033"],["-75.3336914","41.0622966"],["-75.3542573","41.0654531"],["-75.3548314","41.0655048"],["-75.3554071","41.0655461"],["-75.3560126","41.065572"],["-75.3566957","41.0655651"],["-75.35735","41.0655326"],["-75.3578934","41.0654898"],["-75.358647","41.065404"],["-75.3662518","41.0642159"],["-75.3666888","41.0641719"],["-75.3671558","41.0641375"],["-75.3675773","41.0641222"],["-75.3681058","41.0641408"],["-75.3686197","41.0641772"],["-75.3691377","41.0642352"],["-75.3697418","41.0643368"],["-75.3834503","41.0669394"],["-75.3843782","41.0671336"],["-75.3849194","41.0672715"],["-75.3855011","41.0674419"],["-75.3861387","41.0676493"],["-75.3867625","41.0678836"],["-75.3873512","41.0681367"],["-75.3879792","41.0684328"],["-75.3886028","41.0687627"],["-75.3892135","41.0691324"],["-75.3898009","41.0695257"],["-75.3902597","41.0698724"],["-75.3908277","41.0704"],["-75.3913511","41.0709022"],["-75.3918042","41.0713787"],["-75.392223","41.0718912"],["-75.3926274","41.0724793"],["-75.3929485","41.0729809"],["-75.3932469","41.0735526"],["-75.3934852","41.0740884"],["-75.3936589","41.0745708"],["-75.3937789","41.074953"],["-75.3938633","41.0753002"],["-75.3939401","41.0756576"],["-75.3940349","41.0763305"],["-75.4009099","41.1341782"],["-75.4013911","41.1386408"],["-75.4014313","41.1391314"],["-75.4015596","41.1398698"],["-75.4018465","41.1410681"],["-75.4021151","41.1418625"],["-75.4025156","41.1428238"],["-75.4028198","41.1434553"],["-75.4033826","41.1444362"],["-75.4038759","41.1451788"],["-75.405899","41.1475373"],["-75.4156592","41.1582309"],["-75.4220815","41.1651598"],["-75.4233924","41.1667342"],["-75.4241578","41.1677681"],["-75.4255337","41.1698526"],["-75.4323018","41.1801101"],["-75.4332307","41.1814797"],["-75.4336841","41.1821659"],["-75.4342156","41.182955"],["-75.4347887","41.1837766"],["-75.4352277","41.1843017"],["-75.4356318","41.1847346"],["-75.4359397","41.185067"],["-75.4364084","41.185576"],["-75.4366504","41.1858536"],["-75.4379986","41.1870501"],["-75.4394683","41.1882084"],["-75.4530859","41.1986833"],["-75.490041","41.2270123"],["-75.4913092","41.2277911"],["-75.491676","41.2279977"],["-75.4920055","41.2281774"],["-75.504346","41.2341375"],["-75.5048738","41.2344141"],["-75.5054271","41.2347518"],["-75.5066665","41.2355666"],["-75.5079017","41.2365047"],["-75.5092786","41.2378689"],["-75.510518","41.2392202"],["-75.5113955","41.2405619"],["-75.512117","41.2417858"],["-75.5127473","41.2428511"],["-75.5131644","41.2437469"],["-75.5137497","41.2450672"],["-75.5144354","41.2467379"],["-75.5148069","41.2477344"],["-75.5151121","41.2486272"],["-75.5155008","41.2498897"],["-75.5159199","41.2516114"],["-75.5160885","41.2524694"],["-75.5165726","41.2557573"],["-75.51678","41.2574434"],["-75.5168905","41.2584566"],["-75.5179041","41.2662839"],["-75.5181981","41.2676209"],["-75.5185604","41.2690277"],["-75.5189325","41.2705128"],["-75.5194028","41.2722452"],["-75.5197651","41.2735431"],["-75.520125","41.2748985"],["-75.520617","41.2767058"],["-75.5216834","41.2804682"],["-75.5221894","41.2819096"],["-75.5228432","41.2834647"],["-75.523539","41.2848451"],["-75.5242152","41.2860653"],["-75.5250941","41.2874165"],["-75.5266038","41.289472"],["-75.5271045","41.2900903"],["-75.5282099","41.291297"],["-75.5291838","41.2922909"],["-75.5300167","41.2930664"],["-75.5309168","41.2938417"],["-75.5319692","41.2947182"],["-75.5401223","41.3007018"],["-75.5407238","41.3011084"],["-75.5412273","41.3014785"],["-75.5418888","41.3019646"],["-75.5427375","41.3026212"],["-75.543458","41.3033341"],["-75.5441597","41.3041319"],["-75.5447857","41.304995"],["-75.5452633","41.3058321"],["-75.545689","41.3068983"],["-75.5460012","41.3079031"],["-75.5461295","41.3086917"],["-75.5466032","41.3136721"],["-75.5467336","41.3148733"],["-75.5468122","41.3154405"],["-75.5469399","41.3159187"],["-75.5470999","41.3164598"],["-75.5474216","41.317154"],["-75.5477839","41.317796"],["-75.5549712","41.3272199"],["-75.5554801","41.3281796"],["-75.5557776","41.3290965"],["-75.5558654","41.3300765"],["-75.5556964","41.3324878"],["-75.5556106","41.3335757"],["-75.5555686","41.3342643"],["-75.5554632","41.3356663"],["-75.5553376","41.3371845"],["-75.555339","41.337843"],["-75.5554191","41.338444"],["-75.5556671","41.3392679"],["-75.5561089","41.3401933"],["-75.5566552","41.3409428"],["-75.5573545","41.341786"],["-75.5674489","41.3525518"],["-75.5681931","41.3536165"],["-75.5689556","41.3550942"],["-75.5706904","41.3592489"],["-75.5710931","41.3601703"],["-75.5714966","41.3611098"],["-75.5717873","41.3618174"],["-75.5723189","41.3634695"],["-75.5724589","41.3640232"],["-75.572571","41.3646003"],["-75.5726955","41.3655045"],["-75.5728349","41.366709"],["-75.5729449","41.3675357"],["-75.5731054","41.3694087"],["-75.5732377","41.3704469"],["-75.5733481","41.3710017"],["-75.5734727","41.3714719"],["-75.5736688","41.3719896"],["-75.573894","41.3725363"],["-75.5742615","41.373217"],["-75.5746715","41.3739138"],["-75.5753458","41.3748467"],["-75.5773744","41.3775629"],["-75.5781712","41.3786357"],["-75.5787552","41.3794431"],["-75.5793117","41.3802348"],["-75.5801234","41.3817722"],["-75.5810046","41.383918"],["-75.5815251","41.3852379"],["-75.582112","41.386868"],["-75.5825047","41.3883136"],["-75.5828568","41.389766"],["-75.5830894","41.3913166"],["-75.5832312","41.3931791"],["-75.5833568","41.3955035"],["-75.5834498","41.3973082"],["-75.583589","41.3983349"],["-75.5837664","41.3987648"],["-75.5842812","41.3995418"],["-75.5846051","41.3999421"],["-75.5848912","41.4002059"],["-75.5853062","41.4005109"],["-75.5860865","41.4010225"],["-75.5870406","41.4015405"],["-75.5877332","41.4019198"],["-75.588095","41.4021213"],["-75.5888535","41.4025363"],["-75.5894084","41.4028404"],["-75.590172","41.4033306"],["-75.5905606","41.403605"],["-75.5908909","41.4039428"],["-75.5912466","41.4043501"],["-75.5917211","41.4051242"],["-75.5921226","41.4057736"],["-75.5925054","41.406429"],["-75.5935535","41.4078745"],["-75.5938351","41.4081736"],["-75.5941082","41.4084379"],["-75.5944167","41.4086781"],["-75.5953473","41.4092798"],["-75.5963422","41.4098384"],["-75.5968477","41.4101112"],["-75.5979194","41.410744"],["-75.5982748","41.4109629"],["-75.5985824","41.4111512"],["-75.598911","41.4113857"],["-75.599171","41.4116293"],["-75.5994168","41.4118886"],["-75.5996989","41.4122637"],["-75.5998961","41.4126276"],["-75.6004228","41.4136886"],["-75.6005833","41.4140515"],["-75.6008788","41.4148594"],["-75.6011825","41.4155271"],["-75.6015232","41.4161455"],["-75.6019094","41.4168384"],["-75.602224","41.4173501"],["-75.6025163","41.4177795"],["-75.6044722","41.4202853"],["-75.6049644","41.4209642"],["-75.6054393","41.4215547"],["-75.6057092","41.4218591"],["-75.6059103","41.4220762"],["-75.6061699","41.422344"],["-75.6064708","41.4226328"],["-75.6067219","41.422864"],["-75.607001","41.423106"],["-75.607304","41.4233535"],["-75.6076285","41.4236054"],["-75.6079507","41.4238376"],["-75.6085672","41.424262"],["-75.6092463","41.4246886"],["-75.6095897","41.4248861"],["-75.6102927","41.4252563"],["-75.6106298","41.4254243"],["-75.6122906","41.4262116"],["-75.6271459","41.433425"],["-75.6273864","41.4335539"],["-75.6276144","41.4336887"],["-75.6278382","41.4338374"],["-75.6280529","41.4339947"],["-75.6282489","41.4341567"],["-75.6284368","41.4343359"],["-75.6286012","41.4345062"],["-75.6287518","41.4346817"],["-75.6288996","41.4348863"],["-75.6290325","41.4350889"],["-75.6291424","41.4352879"],["-75.6292434","41.4355075"],["-75.6293196","41.4357096"],["-75.6293863","41.4359316"],["-75.629433","41.4361415"],["-75.6294658","41.4363579"],["-75.6294803","41.4365721"],["-75.629478","41.4368014"],["-75.6294597","41.4370192"],["-75.6294286","41.437236"],["-75.6293114","41.4378089"],["-75.6286769","41.4407532"],["-75.6284338","41.4419085"],["-75.628398","41.442149"],["-75.6283786","41.4423843"],["-75.6283722","41.4426064"],["-75.6283774","41.4428787"],["-75.6283902","41.4430605"],["-75.6284119","41.4432504"],["-75.6284531","41.4434741"],["-75.6285107","41.4436935"],["-75.6285779","41.443908"],["-75.6286557","41.4441261"],["-75.6287403","41.4443263"],["-75.6288382","41.4445381"],["-75.6289557","41.4447552"],["-75.6290769","41.4449529"],["-75.6292133","41.4451518"],["-75.6293567","41.4453446"],["-75.6295168","41.4455388"],["-75.6296799","41.4457198"],["-75.6298491","41.4458847"],["-75.6300387","41.4460541"],["-75.6302411","41.4462233"],["-75.630438","41.4463752"],["-75.6306542","41.4465338"],["-75.6308698","41.4466768"],["-75.6310961","41.4468135"],["-75.6313677","41.4469644"],["-75.6323359","41.447433"],["-75.639196","41.4505488"],["-75.6394575","41.4506517"],["-75.6397231","41.4507455"],["-75.6399965","41.4508328"],["-75.6402696","41.4509113"],["-75.6405745","41.4509854"],["-75.6408566","41.4510441"],["-75.6414504","41.451151"],["-75.6444714","41.4515717"],["-75.6447425","41.4516167"],["-75.6450247","41.45167"],["-75.6452927","41.4517276"],["-75.6455656","41.4517986"],["-75.645834","41.4518779"],["-75.6460927","41.451964"],["-75.6463366","41.4520555"],["-75.6465846","41.4521558"],["-75.6468572","41.4522748"],["-75.6483348","41.4530152"],["-75.6512668","41.4544843"],["-75.6516434","41.4546585"],["-75.6520001","41.4548143"],["-75.652393","41.454972"],["-75.6528128","41.4551271"],["-75.6531888","41.4552571"],["-75.6536084","41.4553898"],["-75.6540052","41.4555037"],["-75.6547497","41.4556878"],["-75.6617094","41.4572931"],["-75.6621425","41.4574004"],["-75.6624066","41.4574766"],["-75.6626791","41.4575674"],["-75.6629339","41.4576613"],["-75.6631765","41.4577578"],["-75.6634165","41.4578648"],["-75.6636533","41.4579782"],["-75.6639046","41.4581119"],["-75.6641389","41.4582474"],["-75.6643605","41.4583885"],["-75.6645904","41.458549"],["-75.6648075","41.4587147"],["-75.6650134","41.458884"],["-75.6651945","41.4590429"],["-75.665379","41.4592232"],["-75.665547","41.4594037"],["-75.6656959","41.4595746"],["-75.6658449","41.4597651"],["-75.6659887","41.4599635"],["-75.6661151","41.4601592"],["-75.6662296","41.4603527"],["-75.6663291","41.4605493"],["-75.6664182","41.4607562"],["-75.6665004","41.4609757"],["-75.6665661","41.461178"],["-75.6666201","41.4613962"],["-75.6666627","41.4616012"],["-75.6666975","41.4618179"],["-75.6667191","41.4620333"],["-75.6667266","41.4625832"],["-75.6667055","41.4644502"],["-75.6667031","41.4652294"],["-75.6667233","41.4654528"],["-75.6667611","41.4656843"],["-75.6668118","41.4659186"],["-75.6668801","41.4661473"],["-75.6669544","41.4663549"],["-75.6670523","41.4665827"],["-75.6671599","41.4667944"],["-75.6672898","41.4670087"],["-75.6674251","41.4672102"],["-75.6675704","41.4674035"],["-75.6677394","41.4676032"],["-75.6679194","41.4677943"],["-75.6681223","41.4679819"],["-75.668323","41.4681569"],["-75.6685367","41.4683184"],["-75.6687739","41.4684794"],["-75.6689935","41.4686179"],["-75.6692358","41.4687533"],["-75.6694971","41.4688858"],["-75.6697521","41.4690017"],["-75.6700424","41.4691192"],["-75.6704063","41.4692509"],["-75.6751122","41.4708749"],["-75.6754269","41.4710018"],["-75.6757159","41.4711322"],["-75.675999","41.4712831"],["-75.676288","41.4714585"],["-75.6765585","41.4716384"],["-75.6771787","41.4720929"],["-75.680068","41.4742687"],["-75.6803432","41.4744944"],["-75.6805277","41.4746667"],["-75.6806831","41.4748264"],["-75.6808465","41.4750099"],["-75.6809887","41.4751856"],["-75.6811247","41.4753701"],["-75.6812493","41.4755587"],["-75.6813623","41.4757468"],["-75.6814617","41.475936"],["-75.6815546","41.4761383"],["-75.6816331","41.4763407"],["-75.6816961","41.4765389"],["-75.681752","41.4767433"],["-75.6817965","41.4769569"],["-75.6818237","41.4771552"],["-75.6818413","41.4773646"],["-75.6818492","41.4775763"],["-75.6818397","41.4777915"],["-75.6818232","41.4779938"],["-75.6817904","41.4782091"],["-75.6817447","41.4784098"],["-75.6816885","41.4786165"],["-75.6816242","41.4788081"],["-75.6815421","41.4790242"],["-75.6814573","41.4792143"],["-75.6811173","41.4798827"],["-75.6789513","41.4840254"],["-75.6786546","41.4846093"],["-75.6785575","41.4848341"],["-75.6784751","41.4850457"],["-75.678399","41.4852748"],["-75.6783414","41.48549"],["-75.6782935","41.4857209"],["-75.6782588","41.4859407"],["-75.6782365","41.4861701"],["-75.678226","41.4864007"],["-75.67823","41.4866264"],["-75.6782473","41.4868494"],["-75.6782779","41.4870866"],["-75.6783183","41.4873016"],["-75.678376","41.487531"],["-75.6784416","41.4877448"],["-75.6785265","41.4879679"],["-75.6786127","41.4881759"],["-75.678717","41.4883993"],["-75.6790232","41.4889881"],["-75.6795316","41.4899556"],["-75.6803004","41.4915143"],["-75.6805336","41.4921838"],["-75.6806644","41.4927454"],["-75.6806881","41.4934527"],["-75.6805878","41.4941341"],["-75.6803914","41.4947311"],["-75.6800819","41.4953385"],["-75.6793577","41.4963979"],["-75.6790453","41.4968948"],["-75.6745574","41.5035867"],["-75.6721447","41.5071381"],["-75.6713443","41.5081112"],["-75.6701087","41.5094657"],["-75.6680466","41.5115579"],["-75.6572039","41.5235836"],["-75.6542381","41.526884"],["-75.65338","41.5280285"],["-75.6531115","41.5285762"],["-75.6529258","41.5289498"],["-75.6528218","41.5292581"],["-75.6525791","41.5301222"],["-75.650973","41.5387191"],["-75.6507452","41.5399551"],["-75.6505644","41.5409916"],["-75.6502837","41.5424749"],["-75.6502201","41.543124"],["-75.6502069","41.5438674"],["-75.650277","41.5447608"],["-75.6509179","41.5479347"],["-75.6515679","41.5509969"],["-75.6517657","41.5518634"],["-75.6522664","41.5543431"],["-75.6529992","41.5576895"],["-75.6530939","41.5583114"],["-75.6531117","41.5588795"],["-75.6530137","41.559425"],["-75.6529164","41.5598915"],["-75.6527768","41.5603384"],["-75.6524747","41.5608824"],["-75.6518988","41.5618284"],["-75.651318","41.5627792"],["-75.6505293","41.5641151"],["-75.6503392","41.5645278"],["-75.6502008","41.5649752"],["-75.6500743","41.5654295"],["-75.650023","41.5659054"],["-75.6500412","41.5663896"],["-75.6501358","41.5669248"],["-75.650275","41.5674372"],["-75.6505714","41.5680896"],["-75.6526271","41.5712323"],["-75.6529177","41.5718302"],["-75.6531416","41.5725387"],["-75.6533107","41.5732424"],["-75.6534091","41.5740286"],["-75.6535858","41.5754779"],["-75.6536959","41.5767524"],["-75.6538599","41.5781793"],["-75.6539263","41.5787344"],["-75.6541726","41.5808079"],["-75.6542115","41.5814303"],["-75.6542522","41.5828191"],["-75.6542248","41.5836566"],["-75.6541567","41.5845315"],["-75.6541081","41.5853057"],["-75.6540456","41.5859352"],["-75.6538522","41.5866178"],["-75.6536159","41.5873066"],["-75.6532165","41.5881491"],["-75.6528567","41.5887696"],["-75.6522309","41.5899133"],["-75.651973","41.5903693"],["-75.6517526","41.5907746"],["-75.6514432","41.5914306"],["-75.6511388","41.5920958"],["-75.6507882","41.593006"],["-75.6501133","41.5949527"],["-75.6461558","41.6069879"],["-75.6452729","41.6097317"],["-75.6446628","41.61182"],["-75.6444342","41.6129446"],["-75.6444203","41.613265"],["-75.644199","41.6142755"],["-75.6432433","41.6275986"],["-75.6432528","41.6283251"],["-75.6433223","41.6289223"],["-75.643451","41.6295709"],["-75.6435348","41.6298566"],["-75.6436234","41.6301291"],["-75.6437167","41.6303631"],["-75.6438432","41.6306416"],["-75.6439814","41.6309005"],["-75.6441406","41.6311836"],["-75.6443373","41.6314852"],["-75.6445597","41.631804"],["-75.6448019","41.6321163"],["-75.6450494","41.6324008"],["-75.6452943","41.6326652"],["-75.6455528","41.632911"],["-75.645825","41.6331544"],["-75.6462002","41.6334524"],["-75.6494759","41.6358727"],["-75.6510208","41.6370142"],["-75.6514486","41.6373533"],["-75.651708","41.6375724"],["-75.6519543","41.6378011"],["-75.6522041","41.6380463"],["-75.6524347","41.638282"],["-75.6526603","41.6385278"],["-75.6531339","41.6390827"],["-75.6570484","41.6437614"],["-75.6572766","41.6440703"],["-75.6574586","41.6443375"],["-75.6576147","41.6445903"],["-75.6577468","41.6448236"],["-75.6578654","41.6450555"],["-75.657973","41.645295"],["-75.6580766","41.6455426"],["-75.6582482","41.6460565"],["-75.6583167","41.6463058"],["-75.6583693","41.6465383"],["-75.6584224","41.6468395"],["-75.6584614","41.6472208"],["-75.6584779","41.6476058"],["-75.6584707","41.6479904"],["-75.6584426","41.6483581"],["-75.6580511","41.6511376"],["-75.6579725","41.6517325"],["-75.6579681","41.6517833"],["-75.6579627","41.6518839"],["-75.6579615","41.6521895"],["-75.65797","41.6523847"],["-75.657991","41.6525875"],["-75.6580129","41.6527333"],["-75.6580482","41.652911"],["-75.6580916","41.6531063"],["-75.6581714","41.6533709"],["-75.6582555","41.653604"],["-75.6583312","41.6537866"],["-75.6583895","41.653914"],["-75.6584463","41.6540251"],["-75.6585597","41.6542284"],["-75.6586973","41.6544451"],["-75.6588415","41.6546557"],["-75.658912","41.6547511"],["-75.6590016","41.6548659"],["-75.6591175","41.6549999"],["-75.6592523","41.6551476"],["-75.6594376","41.6553384"],["-75.6596359","41.6555263"],["-75.659873","41.6557247"],["-75.6601237","41.6559158"],["-75.6604662","41.6561476"],["-75.6607982","41.6563476"],["-75.6610911","41.6565027"],["-75.6613521","41.6566316"],["-75.6615869","41.6567359"],["-75.6622933","41.6570009"],["-75.6727685","41.6607436"],["-75.6729979","41.6608377"],["-75.673271","41.6609632"],["-75.673533","41.6610956"],["-75.6737959","41.6612404"],["-75.6740367","41.6613903"],["-75.6742806","41.6615499"],["-75.6744976","41.6617086"],["-75.6746858","41.6618609"],["-75.6748719","41.6620239"],["-75.6750945","41.6622365"],["-75.6752977","41.6624598"],["-75.6754665","41.6626569"],["-75.6756141","41.662858"],["-75.6757631","41.6630712"],["-75.6758926","41.6632854"],["-75.6759987","41.6634843"],["-75.6761489","41.6638015"],["-75.6778729","41.6677012"],["-75.6780296","41.668027"],["-75.6782958","41.6685569"],["-75.6814135","41.6740254"],["-75.6815975","41.6743187"],["-75.6817691","41.6745737"],["-75.6819503","41.6748174"],["-75.6821686","41.6750934"],["-75.6824073","41.6753768"],["-75.6826737","41.675673"],["-75.6829633","41.6759687"],["-75.6832681","41.6762615"],["-75.6836585","41.6766117"],["-75.6860666","41.6784956"],["-75.686436","41.678792"],["-75.6866758","41.6790018"],["-75.6868839","41.6792003"],["-75.6870528","41.6793769"],["-75.6872148","41.6795648"],["-75.6873742","41.6797688"],["-75.687523","41.6799827"],["-75.6876451","41.6801771"],["-75.6877412","41.6803455"],["-75.6878385","41.6805331"],["-75.6879184","41.6807093"],["-75.6879918","41.6808969"],["-75.6880505","41.6810632"],["-75.6880971","41.6812325"],["-75.6881427","41.6814219"],["-75.6881842","41.6816151"],["-75.6882108","41.6818015"],["-75.6882281","41.6819739"],["-75.6882352","41.6821665"],["-75.688238","41.6823621"],["-75.688209","41.6827563"],["-75.6881798","41.6829239"],["-75.6881431","41.6831078"],["-75.6880955","41.6832977"],["-75.688038","41.6834833"],["-75.6879673","41.6836804"],["-75.6878939","41.6838648"],["-75.6878034","41.6840521"],["-75.6877054","41.684239"],["-75.6875983","41.6844229"],["-75.6874957","41.6845783"],["-75.6873904","41.684725"],["-75.6872669","41.6848859"],["-75.6871384","41.6850411"],["-75.6869751","41.6852218"],["-75.6864145","41.6857727"],["-75.6773127","41.6944655"],["-75.6767561","41.6949844"],["-75.6765596","41.6951518"],["-75.676339","41.6953284"],["-75.6761047","41.6955038"],["-75.6758459","41.6956886"],["-75.6756288","41.6958333"],["-75.6753968","41.6959787"],["-75.6749619","41.6962297"],["-75.6747351","41.6963478"],["-75.6742378","41.6965885"],["-75.6736191","41.6968496"],["-75.6724661","41.6973379"],["-75.6721327","41.697494"],["-75.6718489","41.6976384"],["-75.6715869","41.6977833"],["-75.6713807","41.6979109"],["-75.6710063","41.6981676"],["-75.6706543","41.6984531"],["-75.6704853","41.6985999"],["-75.670275","41.6987977"],["-75.6700956","41.6989879"],["-75.6699258","41.6991815"],["-75.6697964","41.6993493"],["-75.6696685","41.6995303"],["-75.6695407","41.6997216"],["-75.6694314","41.6999045"],["-75.6693453","41.7000659"],["-75.6692683","41.7002205"],["-75.6691955","41.7003882"],["-75.6691315","41.7005473"],["-75.669069","41.7007257"],["-75.6690172","41.7008984"],["-75.6689716","41.7010902"],["-75.6689365","41.7012643"],["-75.6689105","41.7014156"],["-75.6688878","41.7016"],["-75.6688744","41.7017764"],["-75.6688694","41.702116"],["-75.6688813","41.7022978"],["-75.6689009","41.702481"],["-75.6689263","41.7026653"],["-75.6689652","41.7028614"],["-75.6690131","41.7030606"],["-75.6690679","41.7032466"],["-75.6693298","41.7039834"],["-75.6698991","41.7055149"],["-75.6701372","41.7061642"],["-75.67025","41.7065221"],["-75.6703198","41.7068547"],["-75.6703587","41.7071107"],["-75.6703794","41.7073077"],["-75.6703873","41.7075459"],["-75.670377","41.7080014"],["-75.6702404","41.7110133"],["-75.6702237","41.7118197"],["-75.6702308","41.7119938"],["-75.6702421","41.7121672"],["-75.6702609","41.7123044"],["-75.6702857","41.7124577"],["-75.6703209","41.7126288"],["-75.6703678","41.7128092"],["-75.6704372","41.7130312"],["-75.6705084","41.7132242"],["-75.670593","41.7134381"],["-75.6706927","41.713644"],["-75.6707957","41.713841"],["-75.6708754","41.7139793"],["-75.6708853","41.7139941"],["-75.6709894","41.7141477"],["-75.6712344","41.7144704"],["-75.6713962","41.7146589"],["-75.6715885","41.7148668"],["-75.6725167","41.7158212"],["-75.672773","41.7160925"],["-75.6731467","41.716523"],["-75.6733168","41.7167363"],["-75.6736668","41.7172209"],["-75.6738497","41.7175005"],["-75.6739899","41.7177313"],["-75.6741356","41.7179826"],["-75.6742756","41.7182446"],["-75.6744032","41.7185082"],["-75.6745214","41.7187705"],["-75.6746187","41.7190108"],["-75.6747213","41.7192831"],["-75.6748036","41.7195287"],["-75.6748842","41.719788"],["-75.6749451","41.7200174"],["-75.6750071","41.7202695"],["-75.6750579","41.7205038"],["-75.6750927","41.7207097"],["-75.6751231","41.7209297"],["-75.6751725","41.7214102"],["-75.6767889","41.7408953"],["-75.6768262","41.741207"],["-75.6768672","41.7414682"],["-75.676972","41.7419621"],["-75.6770292","41.7421793"],["-75.6770902","41.7423924"],["-75.6771588","41.7426044"],["-75.6773159","41.7430499"],["-75.677401","41.7432522"],["-75.6775179","41.7435111"],["-75.6854829","41.7596462"],["-75.6856084","41.7599228"],["-75.6857329","41.7602129"],["-75.6859338","41.760721"],["-75.686125","41.7612857"],["-75.6862834","41.7618473"],["-75.6863506","41.7621152"],["-75.6864148","41.7624029"],["-75.6864717","41.7626935"],["-75.6865231","41.762993"],["-75.6865636","41.763273"],["-75.6866221","41.763802"],["-75.6866442","41.7641074"],["-75.6866603","41.7644424"],["-75.6866674","41.7647988"],["-75.6866636","41.7651024"],["-75.6866398","41.7656143"],["-75.6865477","41.7664853"],["-75.6865044","41.7667698"],["-75.6864482","41.7670789"],["-75.6861203","41.7684063"],["-75.6836639","41.7778207"],["-75.6836156","41.7780596"],["-75.6835825","41.7782767"],["-75.6835541","41.7785092"],["-75.6835345","41.7787566"],["-75.6835233","41.7790177"],["-75.6835259","41.7794974"],["-75.6835607","41.7799548"],["-75.6835841","41.7801449"],["-75.683616","41.7803469"],["-75.6875524","41.7986487"],["-75.6879289","41.8004275"],["-75.6880003","41.8008559"],["-75.6880557","41.8012955"],["-75.6880916","41.8016685"],["-75.6881146","41.8020194"],["-75.6881211","41.8023177"],["-75.6881187","41.8026677"],["-75.6881093","41.8030438"],["-75.6880888","41.8034431"],["-75.688054","41.8038388"],["-75.6880039","41.8042207"],["-75.6879353","41.8046346"],["-75.6878685","41.8049817"],["-75.6877807","41.8053562"],["-75.6876855","41.8057169"],["-75.687553","41.8061593"],["-75.6874067","41.8065822"],["-75.6872421","41.8070063"],["-75.6869011","41.8077947"],["-75.6866799","41.808234"],["-75.6864681","41.8086311"],["-75.6862073","41.8090654"],["-75.682439","41.8147144"],["-75.6821739","41.8151276"],["-75.6819881","41.8154483"],["-75.6818451","41.8157128"],["-75.6817368","41.8159318"],["-75.6816398","41.8161528"],["-75.6815377","41.8164075"],["-75.6814519","41.8166547"],["-75.6813753","41.8168885"],["-75.6813041","41.8171421"],["-75.6812322","41.8174334"],["-75.6811841","41.8176936"],["-75.6799588","41.8262685"],["-75.6799199","41.8266503"],["-75.6798851","41.827201"],["-75.6798797","41.8275917"],["-75.6798821","41.8279581"],["-75.6798935","41.8282883"],["-75.6799094","41.8285714"],["-75.6799465","41.8289317"],["-75.6800434","41.8296155"],["-75.6839972","41.8542229"],["-75.6840598","41.854525"],["-75.6841278","41.8548088"],["-75.6842158","41.8550929"],["-75.6843298","41.8554045"],["-75.6844782","41.8557496"],["-75.6846278","41.8560505"],["-75.6847908","41.8563288"],["-75.6849419","41.8565683"],["-75.6851311","41.856835"],["-75.6853289","41.8570881"],["-75.6855462","41.8573411"],["-75.6857812","41.8575966"],["-75.6860651","41.8578695"],["-75.6863686","41.8581322"],["-75.6867172","41.8584066"],["-75.6870453","41.8586462"],["-75.6874476","41.8588977"],["-75.6878382","41.8591222"],["-75.6882387","41.85933"],["-75.6886163","41.8595084"],["-75.6889876","41.8596586"],["-75.6896488","41.8599058"],["-75.7133641","41.8683371"],["-75.7138124","41.8685131"],["-75.7141914","41.8686721"],["-75.7145365","41.8688275"],["-75.7149417","41.8690246"],["-75.7152893","41.8692037"],["-75.7156832","41.8694195"],["-75.7159793","41.8695899"],["-75.7163221","41.8697984"],["-75.71666","41.8700173"],["-75.7171145","41.8703256"],["-75.7174899","41.8706082"],["-75.717755","41.8708168"],["-75.7180515","41.8710622"],["-75.7183473","41.8713234"],["-75.7186261","41.8715861"],["-75.7189476","41.8719083"],["-75.7192195","41.8721986"],["-75.7194682","41.8724763"],["-75.7197052","41.8727666"],["-75.7199111","41.873029"],["-75.7201376","41.8733372"],["-75.720414","41.8737646"],["-75.7206737","41.8742115"],["-75.7208763","41.8745812"],["-75.721023","41.8748732"],["-75.7211705","41.8752022"],["-75.7213176","41.875579"],["-75.7214404","41.8759211"],["-75.7215703","41.8763236"],["-75.7216684","41.8766925"],["-75.7217375","41.8770141"],["-75.7217839","41.8772859"],["-75.7218807","41.8780274"],["-75.7221168","41.8800476"],["-75.7221622","41.880322"],["-75.7222198","41.8805895"],["-75.722284","41.880823"],["-75.7223654","41.8810992"],["-75.7224446","41.8813276"],["-75.7225438","41.881576"],["-75.7226668","41.8818453"],["-75.7228016","41.8821065"],["-75.7229425","41.8823532"],["-75.7230797","41.8825818"],["-75.7232093","41.8827875"],["-75.7234069","41.8830658"],["-75.7245911","41.884568"],["-75.7250999","41.8852256"],["-75.7252744","41.885481"],["-75.7254581","41.8857759"],["-75.7256258","41.8860591"],["-75.7257974","41.8863783"],["-75.7260324","41.8868767"],["-75.7261503","41.887169"],["-75.7262526","41.8874453"],["-75.7263483","41.887729"],["-75.7264336","41.8880248"],["-75.7265055","41.8883276"],["-75.7266841","41.8892749"],["-75.7282721","41.8978081"],["-75.7288371","41.9000039"],["-75.7318498","41.9114328"],["-75.7319042","41.9116722"],["-75.7319462","41.9119084"],["-75.7319861","41.9121879"],["-75.7320164","41.9124566"],["-75.7320276","41.9127281"],["-75.7320205","41.9130383"],["-75.7320035","41.9133252"],["-75.7319226","41.9139316"],["-75.7303048","41.9229525"],["-75.7302386","41.9234337"],["-75.7301236","41.9245823"],["-75.7300904","41.9250163"],["-75.7300636","41.9256291"],["-75.7300542","41.9262958"],["-75.7300643","41.9271105"],["-75.7300999","41.927933"],["-75.7301478","41.9285318"],["-75.7302619","41.9295707"],["-75.7303579","41.9302033"],["-75.7304458","41.9307105"],["-75.7305615","41.9313158"],["-75.7307991","41.9323329"],["-75.7310374","41.9332094"],["-75.7314378","41.9344346"],["-75.7370754","41.9491224"],["-75.7374463","41.9501113"],["-75.7375585","41.9504598"],["-75.7376631","41.9508227"],["-75.7377572","41.9511913"],["-75.7378336","41.9515568"],["-75.7378888","41.9519019"],["-75.7379319","41.9522252"],["-75.7379645","41.9525287"],["-75.7379875","41.952832"],["-75.7380036","41.9531181"],["-75.7380078","41.953443"],["-75.7379852","41.9541296"],["-75.7379565","41.9545186"],["-75.7379161","41.9548625"],["-75.7378577","41.9552129"],["-75.7377973","41.9555336"],["-75.7377312","41.9558478"],["-75.7376372","41.9562023"],["-75.7374162","41.9569388"],["-75.736866","41.9587224"],["-75.7367264","41.9591937"],["-75.736669","41.9594646"],["-75.7366301","41.9596712"],["-75.7366016","41.9599189"],["-75.7365812","41.9601547"],["-75.7365748","41.9603748"],["-75.736581","41.9605988"],["-75.736595","41.9608317"],["-75.7366253","41.9610702"],["-75.7366689","41.9613275"],["-75.7367253","41.9615853"],["-75.7367999","41.9618491"],["-75.7409156","41.974104"],["-75.7410307","41.9743978"],["-75.7414343","41.9753282"],["-75.7416083","41.9756848"],["-75.741989","41.9764065"],["-75.742376","41.977074"],["-75.7429901","41.978024"],["-75.7467098","41.9836197"],["-75.7471668","41.9843267"],["-75.7475982","41.9850201"],["-75.7478823","41.9855217"],["-75.7482538","41.9862386"],["-75.7484171","41.9865859"],["-75.7485899","41.9869724"],["-75.74874","41.987324"],["-75.7490081","41.9880143"],["-75.7491417","41.9884015"],["-75.7492785","41.9888362"],["-75.7528155","42.0016245"],["-75.7531785","42.0025737"],["-75.753488","42.0032278"],["-75.7539052","42.0040042"],["-75.7542168","42.0045061"],["-75.7545018","42.0049304"],["-75.7548359","42.0054067"],["-75.7551933","42.0058617"],["-75.7556578","42.006406"],["-75.7560992","42.0068972"],["-75.7564872","42.0072737"],["-75.7569294","42.0076811"],["-75.7579283","42.008522"],["-75.761935","42.0117671"],["-75.7628963","42.01252"],["-75.763296","42.0128094"],["-75.7643293","42.0134778"],["-75.764994","42.0138741"],["-75.7655969","42.0141962"],["-75.7662041","42.0144997"],["-75.7669895","42.0148641"],["-75.7677025","42.0151668"],["-75.7683747","42.0154252"],["-75.7691728","42.015698"],["-75.7707312","42.016157"],["-75.7729117","42.0167757"],["-75.7782083","42.0182555"],["-75.7788299","42.0184744"],["-75.7794071","42.018714"],["-75.7798367","42.0189173"],["-75.780342","42.0191824"],["-75.7808827","42.0195075"],["-75.7812699","42.0197686"],["-75.7817401","42.0201243"],["-75.782303","42.0206238"],["-75.7826951","42.0210233"],["-75.7830058","42.0213903"],["-75.7833517","42.0218426"],["-75.7836492","42.0223059"],["-75.7839132","42.0228073"],["-75.7841734","42.0234373"],["-75.787968","42.0344823"],["-75.7882169","42.0350756"],["-75.7885977","42.0358486"],["-75.7906836","42.0395356"],["-75.7955263","42.0480529"],["-75.7962385","42.0492866"],["-75.7966188","42.0499464"],["-75.7973266","42.0511843"],["-75.7976457","42.0517471"],["-75.7980707","42.0525344"],["-75.7983068","42.0530569"],["-75.7985125","42.0536218"],["-75.7986696","42.0541312"],["-75.7988079","42.0547529"],["-75.7988889","42.0553665"],["-75.798926","42.0559921"],["-75.7989212","42.0564916"],["-75.7988726","42.0570725"],["-75.7987608","42.0577795"],["-75.798122","42.0613038"],["-75.7979147","42.0624961"],["-75.7978806","42.0629087"],["-75.7978807","42.0632533"],["-75.7978897","42.0635333"],["-75.7979165","42.0638736"],["-75.7980208","42.0644714"],["-75.7981361","42.0649322"],["-75.8006814","42.0735473"],["-75.8009668","42.0743886"],["-75.8011984","42.0749708"],["-75.8014114","42.0754368"],["-75.801711","42.0760016"],["-75.8020053","42.0765236"],["-75.8023578","42.0770902"],["-75.8027352","42.0776116"],["-75.8072319","42.0835481"],["-75.808349","42.0850319"],["-75.8087233","42.0855436"],["-75.8091037","42.0861125"],["-75.8093534","42.086557"],["-75.8098986","42.0877734"],["-75.8117827","42.0923645"],["-75.8123552","42.0936956"],["-75.8126308","42.0941742"],["-75.8129358","42.0946519"],["-75.8132234","42.0950235"],["-75.8136409","42.0954803"],["-75.8138315","42.0956705"],["-75.8140975","42.0959042"],["-75.8144681","42.0962161"],["-75.814854","42.0965112"],["-75.8155011","42.0969624"],["-75.8162346","42.0974474"],["-75.8169144","42.0978857"],["-75.8190743","42.0992659"],["-75.8202421","42.1000148"],["-75.8206676","42.1002758"],["-75.8218633","42.1009385"],["-75.8224824","42.1012526"],["-75.8230955","42.1015591"],["-75.8279297","42.103924"],["-75.8291411","42.104517"],["-75.8297936","42.1048374"],["-75.8305944","42.1052272"],["-75.834882","42.1073081"],["-75.8362109","42.1079585"],["-75.836736","42.1082064"],["-75.8372293","42.1084133"],["-75.837673","42.1085632"],["-75.8382946","42.1087452"],["-75.838833","42.1088708"],["-75.8393882","42.1089628"],["-75.8398491","42.1090243"],["-75.8402853","42.1090627"],["-75.840665","42.1090792"],["-75.8412756","42.1090754"],["-75.8418175","42.1090489"],["-75.842429","42.1089867"],["-75.8430231","42.1088954"],["-75.8438367","42.108715"],["-75.8476785","42.1076825"],["-75.8486296","42.1074383"],["-75.8490837","42.1073482"],["-75.8495264","42.107279"],["-75.8499618","42.1072333"],["-75.8506323","42.1072057"],["-75.851107","42.1072183"],["-75.8516302","42.1072489"],["-75.8522291","42.1073277"],["-75.8528883","42.1074599"],["-75.857942","42.1089191"],["-75.8599881","42.1095004"],["-75.8608666","42.10972"],["-75.861346","42.1098062"],["-75.8618161","42.1098684"],["-75.86246","42.1099215"],["-75.8639367","42.1099884"],["-75.8672739","42.1101161"],["-75.8678332","42.1101507"],["-75.8681926","42.1101797"],["-75.8687665","42.1102594"],["-75.8691512","42.1103345"],["-75.869539","42.1104293"],["-75.8700566","42.1105898"],["-75.8705407","42.1107713"],["-75.8717934","42.1113591"],["-75.8732322","42.1120394"],["-75.8740285","42.1123829"],["-75.8745386","42.1125584"],["-75.875","42.1126804"],["-75.8757866","42.1128499"],["-75.878764","42.1134467"],["-75.8791046","42.1135232"],["-75.879967","42.1137678"],["-75.8837712","42.1150117"],["-75.8842533","42.1151636"],["-75.8845333","42.11523"],["-75.8846813","42.1152605"],["-75.8848396","42.1152884"],["-75.8849656","42.1153078"],["-75.8851241","42.1153293"],["-75.8852689","42.1153462"],["-75.8855785","42.1153733"],["-75.8858649","42.1153865"],["-75.8861814","42.1153915"],["-75.8957273","42.1152345"],["-75.9008808","42.1149914"],["-75.9017099","42.1149707"],["-75.9026663","42.1149994"],["-75.9054678","42.1152829"],["-75.9061876","42.1153992"],["-75.9063492","42.1154272"],["-75.9064756","42.1154542"],["-75.906745","42.1155217"],["-75.9069707","42.1155888"],["-75.9072365","42.1156891"],["-75.9074632","42.1157862"],["-75.9076383","42.1158736"],["-75.907874","42.1160137"],["-75.9080835","42.1161576"],["-75.9082486","42.1162954"],["-75.9084852","42.1165122"],["-75.9086004","42.1166358"],["-75.9087128","42.1167747"],["-75.9087828","42.1168771"],["-75.9089258","42.1171035"],["-75.9089799","42.1172034"],["-75.9090294","42.117308"],["-75.9090756","42.1174143"],["-75.9091173","42.1175257"],["-75.9091514","42.1176317"],["-75.9091787","42.1177394"],["-75.9092223","42.1179579"],["-75.9092351","42.1180777"],["-75.9092415","42.118207"],["-75.9092451","42.1184227"],["-75.9092399","42.1185053"],["-75.9092207","42.1186156"],["-75.9091989","42.1187226"],["-75.9091737","42.1188288"],["-75.9091409","42.1189342"],["-75.9090991","42.1190423"],["-75.9090567","42.1191429"],["-75.9090049","42.1192489"],["-75.9089549","42.1193453"],["-75.9087615","42.1196494"],["-75.9085689","42.1199104"],["-75.9062981","42.1228819"],["-75.9058625","42.1234753"],["-75.9053876","42.1242104"],["-75.9049866","42.1249958"],["-75.9047822","42.1254717"],["-75.9046763","42.1257702"],["-75.9045395","42.1263063"],["-75.9043643","42.1270526"],["-75.9034074","42.1319838"],["-75.9028261","42.1351054"],["-75.9021305","42.1387064"],["-75.9020949","42.1388624"],["-75.9020402","42.1390844"],["-75.9019984","42.1392643"],["-75.9018894","42.1396968"],["-75.9017681","42.1400908"],["-75.9014965","42.140807"],["-75.9014133","42.1409634"],["-75.9012067","42.1414219"],["-75.9011315","42.1416231"],["-75.9010136","42.1418774"],["-75.8971033","42.1483771"],["-75.8969647","42.1486369"],["-75.8967785","42.1490482"],["-75.896653","42.1494262"],["-75.8965704","42.1498107"],["-75.8965307","42.1501771"],["-75.8965128","42.1504324"],["-75.8965222","42.1506676"],["-75.8965561","42.1510582"],["-75.8966414","42.1514409"],["-75.8968614","42.1521353"],["-75.8971468","42.1528715"],["-75.8975922","42.1540308"],["-75.8977441","42.1544611"],["-75.8978761","42.1549865"],["-75.8979434","42.1555019"],["-75.8979485","42.1558191"],["-75.8979075","42.1562249"],["-75.897821","42.1567208"],["-75.8971186","42.1596768"],["-75.8964555","42.1624933"],["-75.8962591","42.1632776"],["-75.8961173","42.1638857"],["-75.8960211","42.1643795"],["-75.895652","42.1659972"],["-75.8955632","42.1665087"],["-75.895539","42.1668577"],["-75.8955452","42.1671312"],["-75.8955786","42.167502"],["-75.8956523","42.1678962"],["-75.8957594","42.1682835"],["-75.8976048","42.1743539"],["-75.8979978","42.1754679"],["-75.8983434","42.1763281"],["-75.898986","42.1777134"],["-75.9015639","42.18295"],["-75.9018513","42.1836679"],["-75.9019571","42.18402"],["-75.9020575","42.1844508"],["-75.9021388","42.1850264"],["-75.9021708","42.1855102"],["-75.9021489","42.1860336"],["-75.9020642","42.1866806"],["-75.9019461","42.1871636"],["-75.9016929","42.1879392"],["-75.8993374","42.1947619"],["-75.8989436","42.1959318"],["-75.8987603","42.1966142"],["-75.8986295","42.1972056"],["-75.8985111","42.1978187"],["-75.8984178","42.1984105"],["-75.8983533","42.1989995"],["-75.8983027","42.1998159"],["-75.898293","42.2007421"],["-75.8983133","42.2013516"],["-75.8983581","42.201907"],["-75.8984379","42.2025826"],["-75.8985443","42.2032531"],["-75.8987066","42.2040601"],["-75.8988487","42.204619"],["-75.8990505","42.2052765"],["-75.8993156","42.2060586"],["-75.8996085","42.2067896"],["-75.8998532","42.2073499"],["-75.9060931","42.2191318"],["-75.90782","42.2223702"],["-75.9080691","42.2227718"],["-75.9082183","42.2229936"],["-75.9084481","42.2232705"],["-75.908729","42.2235808"],["-75.9094908","42.2242955"],["-75.9122192","42.2267891"],["-75.9126421","42.2272201"],["-75.9129628","42.2276034"],["-75.913161","42.2278758"],["-75.9133653","42.2282053"],["-75.9134995","42.2284445"],["-75.9136849","42.2288443"],["-75.9138274","42.229203"],["-75.9139889","42.2298128"],["-75.9175609","42.2472039"],["-75.9180057","42.2494564"],["-75.9180816","42.2501189"],["-75.9181397","42.2508435"],["-75.9181611","42.2514905"],["-75.9181554","42.252056"],["-75.9180662","42.2535897"],["-75.9179403","42.2555499"],["-75.9179105","42.2565408"],["-75.9179386","42.2573299"],["-75.9179778","42.2578911"],["-75.9180458","42.2584947"],["-75.9181813","42.2593616"],["-75.9184255","42.2604608"],["-75.9204447","42.2675054"],["-75.9207651","42.2684842"],["-75.9210894","42.2692752"],["-75.9215412","42.2701762"],["-75.9226443","42.2722497"],["-75.9229436","42.2728099"],["-75.9236898","42.274195"],["-75.9252153","42.2770388"],["-75.9255151","42.2776276"],["-75.9257212","42.2780924"],["-75.925894","42.2785869"],["-75.9260143","42.2789851"],["-75.9261693","42.2796299"],["-75.9262438","42.2801981"],["-75.9262887","42.2806998"],["-75.926294","42.2812421"],["-75.9262594","42.2818118"],["-75.9261591","42.2824923"],["-75.926013","42.2831086"],["-75.9256677","42.2841492"],["-75.9242026","42.2881538"],["-75.9233326","42.2905389"],["-75.9231982","42.2909773"],["-75.9231218","42.2913608"],["-75.923089","42.2916972"],["-75.9230871","42.2919857"],["-75.9231068","42.2923282"],["-75.9231762","42.292792"],["-75.9232935","42.2931982"],["-75.9233953","42.2934594"],["-75.9235521","42.2937895"],["-75.9237077","42.294066"],["-75.9238476","42.2942876"],["-75.9241503","42.2946835"],["-75.9244482","42.2950186"],["-75.9247804","42.2953186"],["-75.92511","42.2955836"],["-75.9260284","42.2961629"],["-75.9385327","42.303493"],["-75.9398101","42.3043033"],["-75.9524217","42.3129642"],["-75.9537866","42.3138297"],["-75.9543973","42.3141923"],["-75.9550111","42.3144697"],["-75.9559565","42.314916"],["-75.9570817","42.3154128"],["-75.9669465","42.3194347"],["-75.9686007","42.3201534"],["-75.9689511","42.3203447"],["-75.9693478","42.3206256"],["-75.9698374","42.3209991"],["-75.9701153","42.321204"],["-75.9703262","42.3213316"],["-75.9708398","42.3216056"],["-75.9691033","42.3240524"],["-75.9688529","42.3243717"],["-75.9683875","42.3249522"],["-75.9678874","42.3255453"],["-75.9677032","42.3257569"],["-75.9671985","42.3263347"],["-75.9669672","42.3265827"],["-75.9667855","42.3267409"],["-75.966493","42.3269654"],["-75.966091","42.3272111"],["-75.9657404","42.3273806"],["-75.9652695","42.3275551"],["-75.9646008","42.3278126"],["-75.964831","42.3281871"],["-75.9652251","42.328617"],["-75.9658352","42.3292059"],["-75.9698355","42.33293"],["-75.9701176","42.3331826"],["-75.9705458","42.3335863"],["-75.9708154","42.3338147"],["-75.9711867","42.3341227"],["-75.971738","42.3346079"],["-75.9723312","42.3350618"],["-75.9742537","42.3363144"],["-75.9743289","42.336366"],["-75.9744142","42.33642"],["-75.9745484","42.3365033"],["-75.9749212","42.3367305"],["-75.9751082","42.3368338"],["-75.975578","42.3370638"],["-75.9757472","42.3371406"],["-75.978733","42.3385255"],["-75.9791285","42.3387288"],["-75.9797959","42.3390973"],["-75.9864074","42.3427684"],["-75.9880951","42.3436877"],["-75.9888539","42.3440515"],["-75.9924999","42.3456873"],["-75.9944079","42.3465699"],["-75.9951836","42.3469642"],["-75.9959399","42.347372"],["-75.9964298","42.3476817"],["-75.9970718","42.3481388"],["-75.9980127","42.348841"],["-75.9983836","42.3490907"],["-75.9986437","42.3492375"],["-75.9989127","42.3493671"],["-75.9993588","42.349542"],["-75.9999235","42.3497183"],["-76.0003943","42.3498373"],["-76.0007141","42.3499114"],["-76.0009534","42.34998"],["-76.0012802","42.3500974"],["-76.0046899","42.3518348"],["-76.0063121","42.3526656"],["-76.0066855","42.3528507"],["-76.0068973","42.3529347"],["-76.0071259","42.3530242"],["-76.0074635","42.3531274"],["-76.0078263","42.3532207"],["-76.0082076","42.3532748"],["-76.0086186","42.3533248"],["-76.0090605","42.3533224"],["-76.0094013","42.3533097"],["-76.0096957","42.3532748"],["-76.0119293","42.3529316"],["-76.0124895","42.3528578"],["-76.0126286","42.3528517"],["-76.012759","42.3528482"],["-76.0128655","42.3528443"],["-76.0133014","42.3528813"],["-76.0135449","42.3529096"],["-76.0138543","42.3529549"],["-76.0142116","42.3530299"],["-76.0145147","42.3531202"],["-76.0153375","42.353426"],["-76.0158833","42.3536538"],["-76.0190639","42.3549466"],["-76.0194319","42.3550642"],["-76.0200544","42.355212"],["-76.0204984","42.3552848"],["-76.0208772","42.355318"],["-76.0211935","42.3553361"],["-76.0216151","42.3553333"],["-76.021869","42.3553344"],["-76.0221675","42.3553217"],["-76.0224591","42.3553019"],["-76.0227121","42.3552873"],["-76.0236846","42.3552613"],["-76.0240462","42.3552725"],["-76.0245247","42.3552936"],["-76.0264058","42.3554247"],["-76.0270646","42.3554926"],["-76.0279548","42.3556438"],["-76.0286652","42.3557633"],["-76.0292966","42.3558678"],["-76.0296797","42.3559032"],["-76.0300644","42.3559197"],["-76.0304899","42.3559198"],["-76.0365798","42.3557192"],["-76.0370751","42.3557344"],["-76.0387275","42.3558956"],["-76.0407933","42.3561184"],["-76.0430126","42.3563718"],["-76.0434209","42.3564511"],["-76.0438872","42.3565715"],["-76.044372","42.3567445"],["-76.0455253","42.3572006"],["-76.0459908","42.3573621"],["-76.0482317","42.3579634"],["-76.0505283","42.3585754"],["-76.050932","42.3586635"],["-76.0514161","42.3587445"],["-76.0546733","42.3591696"],["-76.0552012","42.3592087"],["-76.0554894","42.359215"],["-76.0558106","42.3591988"],["-76.0560553","42.3591753"],["-76.0564624","42.3591147"],["-76.0570665","42.3589786"],["-76.058574","42.3586218"],["-76.0607814","42.3581038"],["-76.0613914","42.3580056"],["-76.0618733","42.3579534"],["-76.0623129","42.3579316"],["-76.0626529","42.3579208"],["-76.0668484","42.3580865"],["-76.0671019","42.358091"],["-76.0687608","42.3580484"],["-76.0706375","42.3579714"],["-76.0734502","42.3578944"],["-76.0761264","42.3578986"],["-76.076829","42.3578944"],["-76.0781885","42.3579265"],["-76.0788143","42.3579662"],["-76.0795669","42.3580381"],["-76.0802107","42.3581153"],["-76.0810736","42.3582479"],["-76.0895135","42.3597273"],["-76.0904301","42.3599266"],["-76.0911383","42.3601353"],["-76.0917405","42.360332"],["-76.0930239","42.3608116"],["-76.0946608","42.3614362"],["-76.095723","42.3618172"],["-76.0964471","42.3620393"],["-76.0974873","42.3622917"],["-76.1021864","42.3632381"],["-76.1029839","42.3633315"],["-76.1036271","42.363368"],["-76.1045457","42.363387"],["-76.1055337","42.363406"],["-76.1066585","42.3634348"],["-76.1068061","42.3634445"],["-76.1084839","42.3636395"],["-76.1110851","42.3640503"],["-76.1119093","42.3641563"],["-76.1125498","42.3642125"],["-76.1131619","42.3642507"],["-76.11369","42.3642567"],["-76.1232391","42.364075"],["-76.1239391","42.3641335"],["-76.1247229","42.3642841"],["-76.1383413","42.3676023"],["-76.1397993","42.367954"],["-76.1517582","42.3708743"],["-76.1527855","42.371129"],["-76.1554888","42.3718013"],["-76.1563887","42.3719108"],["-76.1570817","42.3718955"],["-76.1576249","42.3718491"],["-76.1581121","42.3717612"],["-76.1586327","42.3716107"],["-76.1592033","42.3713856"],["-76.1596827","42.3711353"],["-76.1600077","42.3709243"],["-76.1606286","42.3703997"],["-76.1643416","42.3669778"],["-76.1657933","42.3656361"],["-76.166622","42.3648654"],["-76.1674795","42.3642114"],["-76.1680864","42.36383"],["-76.1688365","42.3634081"],["-76.1695952","42.3630749"],["-76.1704295","42.3627743"],["-76.1714536","42.362508"],["-76.1722762","42.3623372"],["-76.1729608","42.3622305"],["-76.1736358","42.3621762"],["-76.1745105","42.362136"],["-76.1755012","42.3621744"],["-76.1765901","42.3622796"],["-76.1774062","42.3624309"],["-76.1867339","42.3646521"],["-76.1879332","42.3648581"],["-76.1884947","42.3648966"],["-76.1890715","42.3648828"],["-76.1896838","42.3648416"],["-76.19031","42.3647501"],["-76.1909883","42.364588"],["-76.1915461","42.3644003"],["-76.1921131","42.3641398"],["-76.1925724","42.3638772"],["-76.1929663","42.3636375"],["-76.1932988","42.363339"],["-76.1938208","42.3628354"],["-76.1939992","42.3626136"],["-76.1941868","42.3623212"],["-76.1943812","42.3619228"],["-76.1946238","42.3613611"],["-76.1947743","42.3609865"],["-76.1951514","42.359925"],["-76.1954158","42.3591577"],["-76.195508","42.3589167"],["-76.1955888","42.3587442"],["-76.1957154","42.358523"],["-76.1958189","42.3583779"],["-76.1959323","42.3582319"],["-76.1960917","42.3580604"],["-76.1962858","42.3578738"],["-76.1965291","42.3576794"],["-76.1969657","42.3573887"],["-76.1976074","42.357106"],["-76.1987119","42.3568223"],["-76.2021171","42.3560334"],["-76.2025082","42.3559646"],["-76.2028415","42.3559647"],["-76.2030679","42.3559979"],["-76.2033081","42.3560456"],["-76.2035005","42.3561045"],["-76.2036507","42.3561614"],["-76.2038428","42.3562662"],["-76.204033","42.3563882"],["-76.2041763","42.3565282"],["-76.2044331","42.3568041"],["-76.204673","42.3570591"],["-76.2048082","42.3571674"],["-76.2049666","42.3572845"],["-76.2050996","42.3573678"],["-76.2056715","42.3576661"],["-76.206472","42.3580731"],["-76.2090367","42.3594021"],["-76.2094578","42.3596543"],["-76.2098488","42.3599361"],["-76.2102785","42.3603131"],["-76.211058","42.3610235"],["-76.2121266","42.3619052"],["-76.2150205","42.3641356"],["-76.2160642","42.3649091"],["-76.216665","42.3652628"],["-76.2170711","42.3654643"],["-76.2174433","42.3656182"],["-76.2178793","42.3657727"],["-76.2184911","42.3659301"],["-76.2190062","42.366052"],["-76.2194024","42.3661075"],["-76.2197993","42.3661519"],["-76.2201979","42.3661879"],["-76.2205602","42.3662015"],["-76.220961","42.3661962"],["-76.2213567","42.3661753"],["-76.2218061","42.3661291"],["-76.2224133","42.3660323"],["-76.2234506","42.3658482"],["-76.2238841","42.365796"],["-76.2242347","42.3657765"],["-76.2284431","42.3659866"],["-76.2290602","42.3659764"],["-76.2294911","42.3659378"],["-76.2299053","42.3658741"],["-76.2302843","42.3657898"],["-76.2306834","42.3656762"],["-76.2310449","42.3655518"],["-76.2313717","42.3654127"],["-76.2319825","42.3650695"],["-76.2355259","42.3625272"],["-76.2360649","42.3621847"],["-76.2363664","42.3620498"],["-76.2367185","42.3619332"],["-76.2371788","42.3618689"],["-76.23767","42.3618806"],["-76.2382373","42.3619998"],["-76.2386539","42.3621697"],["-76.2390217","42.3624186"],["-76.2394917","42.36282"],["-76.2397629","42.3630392"],["-76.2398913","42.3631275"],["-76.2400527","42.3632251"],["-76.2402166","42.3633213"],["-76.2403862","42.3634085"],["-76.2406235","42.3635131"],["-76.241231","42.3637603"],["-76.2418069","42.364011"],["-76.2422145","42.3642247"],["-76.2464219","42.366806"],["-76.2470325","42.3671955"],["-76.2477082","42.3676567"],["-76.249895","42.3693296"],["-76.2501456","42.3695167"],["-76.2506878","42.3699182"],["-76.251","42.3701353"],["-76.2514746","42.3704427"],["-76.2519752","42.3707413"],["-76.2523862","42.37098"],["-76.2539229","42.3718283"],["-76.2541532","42.3719427"],["-76.254398","42.3720518"],["-76.254722","42.3721785"],["-76.2576458","42.3732377"],["-76.2582133","42.3734889"],["-76.2589409","42.3738568"],["-76.259591","42.3742341"],["-76.2600864","42.3745217"],["-76.2603859","42.3746735"],["-76.2606723","42.3748069"],["-76.2610389","42.3749554"],["-76.2634974","42.3758796"],["-76.2666066","42.3770912"],["-76.2700222","42.3785022"],["-76.2703698","42.3786284"],["-76.2706277","42.3787083"],["-76.2709458","42.3787854"],["-76.271253","42.3788454"],["-76.2715916","42.3788955"],["-76.2719059","42.3789246"],["-76.2724037","42.3789407"],["-76.275079","42.3788583"],["-76.2760641","42.3787616"],["-76.2767722","42.3785924"],["-76.2791702","42.3778686"],["-76.2797494","42.3777227"],["-76.2803824","42.3776086"],["-76.28087","42.3775533"],["-76.2814521","42.377534"],["-76.284477","42.3775215"],["-76.2860192","42.377552"],["-76.2866653","42.3775867"],["-76.3045073","42.3792047"],["-76.3053695","42.3793027"],["-76.306358","42.379523"],["-76.3068044","42.3796562"],["-76.307427","42.3799088"],["-76.3079132","42.3801273"],["-76.321509","42.3869041"],["-76.3224175","42.3873389"],["-76.3235998","42.3878148"],["-76.325211","42.3884057"],["-76.3259065","42.3886435"],["-76.3265789","42.388833"],["-76.3294056","42.389519"],["-76.3322253","42.3902032"],["-76.3326169","42.3903016"],["-76.3336153","42.3905417"],["-76.3355765","42.3910064"],["-76.3369174","42.3913249"],["-76.33799","42.3915924"],["-76.3391184","42.391907"],["-76.3404746","42.3923201"],["-76.3409484","42.3924407"],["-76.3414091","42.3925508"],["-76.341981","42.3926883"],["-76.342496","42.3928377"],["-76.3430988","42.3930594"],["-76.3436985","42.3933053"],["-76.3446486","42.3937168"],["-76.3450346","42.3938649"],["-76.3452498","42.3939225"],["-76.3454464","42.3939618"],["-76.3456932","42.3940035"],["-76.3460085","42.3940239"],["-76.3559108","42.393809"],["-76.3567435","42.3938094"],["-76.3594842","42.3937817"],["-76.3632871","42.3938225"],["-76.3638475","42.3938124"],["-76.3647736","42.3937567"],["-76.3655445","42.3936971"],["-76.3666603","42.393657"],["-76.3671879","42.3936672"],["-76.3685948","42.393754"],["-76.3714987","42.3939468"],["-76.3725879","42.394026"],["-76.3730412","42.3940589"],["-76.3733472","42.3940876"],["-76.3738425","42.3941492"],["-76.3742261","42.3942126"],["-76.375363","42.3944434"],["-76.376336","42.394637"],["-76.3774252","42.3948354"],["-76.3786823","42.3950222"],["-76.3795398","42.3951468"],["-76.3812136","42.3953664"],["-76.3816109","42.3954004"],["-76.3822012","42.3954448"],["-76.3861281","42.395539"],["-76.387173","42.3955295"],["-76.3879088","42.3955038"],["-76.3890005","42.395431"],["-76.3913502","42.3952399"],["-76.3920535","42.3952018"],["-76.3927557","42.3952101"],["-76.4029472","42.395897"],["-76.405548","42.3960166"],["-76.406505","42.3960521"],["-76.4091086","42.3961413"],["-76.4095652","42.3961899"],["-76.4101169","42.3962647"],["-76.4105734","42.3963576"],["-76.4109268","42.3964571"],["-76.4112415","42.3965666"],["-76.4117672","42.3968196"],["-76.4124137","42.397153"],["-76.4161642","42.3990689"],["-76.4253344","42.4033805"],["-76.4317678","42.406516"],["-76.4390122","42.4100585"],["-76.43953","42.4102887"],["-76.4401319","42.4104933"],["-76.4407492","42.410698"],["-76.4416786","42.4110765"],["-76.4440973","42.4121943"],["-76.4461806","42.4132557"],["-76.4471283","42.4137715"],["-76.447415","42.4139335"],["-76.4595235","42.420946"],["-76.4604346","42.42157"],["-76.4638392","42.4240016"],["-76.471404","42.4288517"],["-76.4743763","42.430872"],["-76.4746877","42.4310672"],["-76.4750417","42.4312645"],["-76.4763448","42.431858"],["-76.4778403","42.4325171"],["-76.4783144","42.4327285"],["-76.4785708","42.4328423"],["-76.4788818","42.432982"],["-76.4792174","42.4331426"],["-76.47956","42.4333623"],["-76.4797582","42.4335314"],["-76.4798886","42.433648"],["-76.4800705","42.4337825"],["-76.4802728","42.433906"],["-76.4807257","42.4341495"],["-76.481396","42.4344954"],["-76.4820541","42.4347714"],["-76.4823546","42.4349103"],["-76.4825718","42.4350225"],["-76.4829423","42.4352346"],["-76.4855951","42.4369591"],["-76.4860905","42.4372714"],["-76.4866036","42.4375704"],["-76.4870429","42.4378179"],["-76.4879699","42.4383622"],["-76.4895178","42.4392319"],["-76.4896935","42.4392748"],["-76.4898041","42.439275"],["-76.4904845","42.4392939"],["-76.4918834","42.4392729"],["-76.4921084","42.4392757"],["-76.4924089","42.4392975"],["-76.4934944","42.4394185"],["-76.4937875","42.4395243"],["-76.4938782","42.4395744"],["-76.4939417","42.4396189"],["-76.4940022","42.4396689"],["-76.4940721","42.4397406"],["-76.4943243","42.4400392"],["-76.4944208","42.4401353"],["-76.4945168","42.4402166"],["-76.4946065","42.4402735"],["-76.4946938","42.4403246"],["-76.4948008","42.4403734"],["-76.494871","42.440399"],["-76.4949686","42.4404316"],["-76.4951573","42.4404868"],["-76.4952489","42.4405072"],["-76.4953427","42.4405205"],["-76.4954455","42.4405245"],["-76.4955874","42.4405212"],["-76.49568","42.4405207"],["-76.4966205","42.4404934"],["-76.496649","42.4404929"],["-76.4968432","42.440485"],["-76.4989664","42.4404031"],["-76.4990505","42.440403"],["-76.5017617","42.4403225"],["-76.5019852","42.4445136"],["-76.5035624","42.4444699"],["-76.5038196","42.4444623"],["-76.5041818","42.4444487"],["-76.5041006","42.4427736"],["-76.5040835","42.442459"],["-76.5040213","42.4411664"],["-76.5124758","42.4409078"],["-76.5125099","42.4410038"],["-76.5125676","42.4413679"],["-76.5125809","42.4417679"],["-76.5125969","42.4419651"],["-76.5126359","42.442151"],["-76.5127275","42.4423665"],["-76.5127864","42.4424729"],["-76.5128737","42.4425997"],["-76.5129391","42.4426876"],["-76.5130539","42.4427861"],["-76.5132302","42.4429345"],["-76.5137306","42.4433885"],["-76.5138943","42.4435594"],["-76.5140137","42.4437385"],["-76.5140949","42.4438993"],["-76.5141422","42.44404"],["-76.5141731","42.4442364"],["-76.5141798","42.4443975"],["-76.5141659","42.4445309"],["-76.5140672","42.4449785"],["-76.5135874","42.4469648"],["-76.513453","42.447494"],["-76.5133786","42.4476955"],["-76.5132667","42.4479554"],["-76.5130832","42.4483054"],["-76.512437","42.4494693"],["-76.5121759","42.4499447"],["-76.5121044","42.4501253"],["-76.5120647","42.4503029"],["-76.5120503","42.4504575"],["-76.512059","42.4506215"],["-76.5120671","42.4506907"],["-76.5121041","42.4508298"],["-76.5121534","42.4509642"],["-76.5122083","42.4510764"],["-76.5122955","42.4512208"],["-76.5123867","42.4513501"],["-76.5125027","42.4514717"],["-76.5126297","42.4515817"],["-76.5127461","42.4516686"],["-76.512978","42.4518119"],["-76.5132058","42.4519244"],["-76.5135984","42.4520552"],["-76.5148674","42.4523707"],["-76.515068","42.4524165"],["-76.5152641","42.452475"],["-76.5154591","42.4525381"],["-76.5155146","42.4525611"],["-76.5155892","42.4525888"],["-76.5158769","42.4527142"],["-76.5160634","42.452812"],["-76.5163199","42.4529622"],["-76.5167081","42.4532252"],["-76.517013","42.4534777"],["-76.5171096","42.4535729"],["-76.5172515","42.4537213"],["-76.5174192","42.4539475"],["-76.5179852","42.4549425"],["-76.5181563","42.4552488"],["-76.51853","42.4559071"],["-76.5193385","42.4572673"],["-76.5196721","42.457803"],["-76.51973","42.4578751"],["-76.5198666","42.4580393"],["-76.520686","42.4588987"],["-76.5210046","42.4592814"],["-76.5237051","42.4627799"],["-76.5243138","42.4636015"],["-76.5249035","42.4644634"],["-76.5255837","42.4654489"],["-76.526102","42.4661848"],["-76.5268025","42.4672219"],["-76.5282762","42.4695188"],["-76.5287342","42.4701865"],["-76.5296976","42.4714788"],["-76.530184","42.4721008"],["-76.5305647","42.4726515"],["-76.5310246","42.4735168"],["-76.5314167","42.4742381"],["-76.5319974","42.4752813"],["-76.533784","42.478213"],["-76.5341107","42.4788018"],["-76.5343345","42.4793671"],["-76.5345325","42.4799654"],["-76.5349452","42.4810776"],["-76.5358016","42.4830174"],["-76.5362729","42.4841092"],["-76.5370058","42.4858778"],["-76.5373991","42.4867353"],["-76.5392165","42.4903501"],["-76.5395485","42.4911539"],["-76.5397618","42.4922636"],["-76.5399332","42.492824"],["-76.5400653","42.4931162"],["-76.5402624","42.4934741"],["-76.541606","42.4957179"],["-76.5419697","42.4962265"],["-76.5425059","42.496877"],["-76.5427417","42.4971492"],["-76.5432577","42.4977548"],["-76.5439209","42.4985135"],["-76.544846","42.499579"],["-76.5458675","42.5007568"],["-76.5462503","42.5012622"],["-76.5465402","42.5017628"],["-76.5467438","42.5022425"],["-76.5468943","42.5028066"],["-76.5469803","42.5037243"],["-76.5472287","42.5090293"],["-76.5472675","42.509624"],["-76.5472865","42.5097697"],["-76.5473207","42.5099655"],["-76.5473818","42.5102653"],["-76.5476006","42.5109261"],["-76.5478882","42.5115214"],["-76.5483663","42.512236"],["-76.5496008","42.513842"],["-76.5499455","42.5142227"],["-76.5503536","42.5145911"],["-76.550614","42.5147916"],["-76.5509014","42.5150066"],["-76.5514659","42.5154252"],["-76.5518515","42.5157304"],["-76.5523084","42.5161553"],["-76.5527024","42.5165987"],["-76.5536851","42.5179498"],["-76.5544597","42.5189971"],["-76.5548117","42.5193872"],["-76.5562081","42.5206785"],["-76.5567125","42.5211007"],["-76.557226","42.5214482"],["-76.5578712","42.5218008"],["-76.5636533","42.5246985"],["-76.5637533","42.5247438"],["-76.5640256","42.5248629"],["-76.5646261","42.525086"],["-76.5659278","42.5255188"],["-76.5661829","42.525592"],["-76.5668862","42.5257418"],["-76.5672607","42.5258026"],["-76.5678633","42.5258609"],["-76.5683307","42.525897"],["-76.5688385","42.5259393"],["-76.5694086","42.5260212"],["-76.5703504","42.5262299"],["-76.5706451","42.5262985"],["-76.5713383","42.5264767"],["-76.571968","42.5266421"],["-76.5727683","42.5268668"],["-76.5732244","42.527042"],["-76.573596","42.5272057"],["-76.5738939","42.5273578"],["-76.574205","42.5275309"],["-76.5748586","42.5279674"],["-76.5758133","42.5286859"],["-76.576819","42.5294898"],["-76.5796106","42.5318769"],["-76.5807936","42.5328633"],["-76.5816898","42.5335462"],["-76.582339","42.5339417"],["-76.5829013","42.5342689"],["-76.583941","42.5348882"],["-76.5847295","42.535371"],["-76.5851672","42.5356311"],["-76.5862915","42.5363636"],["-76.5886427","42.5378914"],["-76.5904954","42.5390209"],["-76.591342","42.539448"],["-76.5922573","42.5398452"],["-76.593004","42.540191"],["-76.5935522","42.54051"],["-76.5941518","42.5409285"],["-76.5942815","42.5410371"],["-76.5946545","42.5413807"],["-76.5948591","42.5415888"],["-76.5951323","42.5419136"],["-76.5964066","42.5436189"],["-76.5966777","42.5439565"],["-76.5969611","42.5442554"],["-76.5971473","42.5444249"],["-76.5973512","42.5445995"],["-76.5976587","42.5448281"],["-76.5979375","42.5450106"],["-76.5982318","42.5451886"],["-76.5983803","42.5452691"],["-76.5987531","42.545449"],["-76.6001766","42.5460444"],["-76.6005979","42.5462142"],["-76.6009027","42.5463321"],["-76.6018698","42.5466717"],["-76.602293","42.5467827"],["-76.602612","42.5468458"],["-76.6029047","42.5468934"],["-76.6033814","42.5469327"],["-76.6037069","42.546943"],["-76.6042652","42.546917"],["-76.6047293","42.5468609"],["-76.6066501","42.5464816"],["-76.6069307","42.5464376"],["-76.6071984","42.5463973"],["-76.6077243","42.5463281"],["-76.6087257","42.5462716"],["-76.6122437","42.5461556"],["-76.6130191","42.5461623"],["-76.6137526","42.5462204"],["-76.6144431","42.5463325"],["-76.6150891","42.5464862"],["-76.618587","42.5475342"],["-76.6223714","42.548639"],["-76.6266496","42.5498438"],["-76.6282748","42.5502443"],["-76.6315209","42.5510235"],["-76.6318618","42.5511148"],["-76.6326305","42.5513815"],["-76.634596","42.5521532"],["-76.6350084","42.5523474"],["-76.635342","42.5525393"],["-76.6356537","42.5527501"],["-76.6359174","42.5529542"],["-76.6361922","42.5532147"],["-76.6364066","42.5534426"],["-76.6365814","42.5536593"],["-76.6367801","42.5539545"],["-76.637028","42.5543561"],["-76.6377019","42.5554561"],["-76.6383788","42.5565483"],["-76.6387423","42.5571072"],["-76.63896","42.5573783"],["-76.6393759","42.5578397"],["-76.6397131","42.5581504"],["-76.6399745","42.558366"],["-76.6406556","42.558863"],["-76.6497334","42.5652703"],["-76.6501044","42.5655632"],["-76.650382","42.5658207"],["-76.6507363","42.5661904"],["-76.6510226","42.5665393"],["-76.6512755","42.5669039"],["-76.6516084","42.5674536"],["-76.6525297","42.5690139"],["-76.6529692","42.5697345"],["-76.6533916","42.570338"],["-76.6566414","42.5744934"],["-76.6573208","42.5754195"],["-76.657632","42.5759078"],["-76.6578509","42.5763027"],["-76.6580991","42.5768795"],["-76.6588312","42.5786959"],["-76.6590197","42.5791429"],["-76.6591839","42.5794459"],["-76.6594218","42.5797963"],["-76.6597281","42.5801578"],["-76.6600604","42.5804777"],["-76.6604001","42.5807595"],["-76.6606585","42.5809416"],["-76.6610937","42.5812007"],["-76.6627834","42.5820796"],["-76.6633254","42.5823407"],["-76.6639197","42.5825537"],["-76.6678091","42.5838268"],["-76.6690887","42.584255"],["-76.6694252","42.5843841"],["-76.669787","42.5845358"],["-76.6702374","42.5847474"],["-76.6729125","42.5860846"],["-76.6750019","42.5870894"],["-76.6756199","42.5874091"],["-76.6759241","42.5876014"],["-76.6789325","42.5899927"],["-76.6796431","42.590604"],["-76.680157","42.5910523"],["-76.6806406","42.5914503"],["-76.6825267","42.5928055"],["-76.6835539","42.5934664"],["-76.6846552","42.5941497"],["-76.6854411","42.5946502"],["-76.6857876","42.5949067"],["-76.686643","42.5956314"],["-76.6872727","42.5961688"],["-76.687718","42.596574"],["-76.6880169","42.5968973"],["-76.6882675","42.5972386"],["-76.6884218","42.5974791"],["-76.6885752","42.5977848"],["-76.6887144","42.5981317"],["-76.6887727","42.5983283"],["-76.6888191","42.5985022"],["-76.6889857","42.599533"],["-76.6890741","42.5999141"],["-76.6891827","42.600241"],["-76.6892666","42.6004609"],["-76.6894717","42.6008575"],["-76.6897342","42.6012734"],["-76.6902437","42.6019094"],["-76.6911493","42.6030186"],["-76.691614","42.60363"],["-76.6917712","42.6038853"],["-76.6918986","42.6041302"],["-76.6920453","42.6044772"],["-76.6921643","42.6048141"],["-76.6922535","42.6051858"],["-76.6923066","42.6055875"],["-76.6926528","42.6102201"],["-76.6928194","42.6110891"],["-76.693182","42.6125512"],["-76.6933733","42.6132302"],["-76.6935019","42.6135599"],["-76.6936626","42.6138669"],["-76.6938133","42.6141031"],["-76.694006","42.614388"],["-76.6942968","42.6147412"],["-76.6946051","42.6150644"],["-76.694801","42.6152425"],["-76.6970346","42.6170176"],["-76.6974171","42.6173428"],["-76.6990358","42.6190073"],["-76.7001795","42.6201939"],["-76.7012144","42.621351"],["-76.7013485","42.6215569"],["-76.7015459","42.6219187"],["-76.7016905","42.6222313"],["-76.7018428","42.6226991"],["-76.7019783","42.6233967"],["-76.7027885","42.6283866"],["-76.7034937","42.6333428"],["-76.7039242","42.6359564"],["-76.7040307","42.6364144"],["-76.7041874","42.6368516"],["-76.7043127","42.6371261"],["-76.7044733","42.6374175"],["-76.7047058","42.6377668"],["-76.7049412","42.6380656"],["-76.7051733","42.6383209"],["-76.709868","42.6430404"],["-76.7112772","42.6444664"],["-76.7116116","42.6448576"],["-76.7118549","42.6451665"],["-76.7120834","42.6455069"],["-76.7123229","42.6458903"],["-76.7125463","42.6462662"],["-76.7147353","42.6499147"],["-76.7153256","42.6508662"],["-76.7155087","42.65112"],["-76.7268287","42.6645811"],["-76.7275428","42.6655138"],["-76.7280488","42.6662785"],["-76.7287349","42.6673271"],["-76.7290994","42.6678735"],["-76.7294562","42.6682677"],["-76.7297175","42.6685105"],["-76.7299693","42.6687095"],["-76.7302346","42.6688913"],["-76.7305169","42.6690592"],["-76.7307589","42.6691905"],["-76.7310945","42.6693414"],["-76.7331724","42.6701371"],["-76.736243","42.671306"],["-76.7376526","42.6718655"],["-76.7379326","42.6720062"],["-76.7381814","42.6721566"],["-76.7385107","42.6723821"],["-76.7388592","42.6726692"],["-76.7390569","42.672868"],["-76.7392924","42.6731301"],["-76.7394435","42.6733265"],["-76.7396447","42.6736645"],["-76.7408551","42.6761584"],["-76.7411017","42.676611"],["-76.7413686","42.6770053"],["-76.7416582","42.6773642"],["-76.7418691","42.6775846"],["-76.7421895","42.6778828"],["-76.7429943","42.6785592"],["-76.7433343","42.6788634"],["-76.7435211","42.6790476"],["-76.7437193","42.6792708"],["-76.7439926","42.6796303"],["-76.7441912","42.679934"],["-76.7444141","42.6803603"],["-76.7446043","42.6808547"],["-76.7446892","42.6811705"],["-76.7447528","42.6815243"],["-76.7448004","42.6820768"],["-76.7448337","42.6825695"],["-76.7448641","42.6831854"],["-76.7454405","42.6920603"],["-76.7455061","42.6926517"],["-76.7456432","42.6933721"],["-76.7472208","42.700396"],["-76.7474561","42.7011463"],["-76.7478062","42.7020423"],["-76.748829","42.7045495"],["-76.7491079","42.7053563"],["-76.7496113","42.7071604"],["-76.7497176","42.7075004"],["-76.7498654","42.7078465"],["-76.7500572","42.7081997"],["-76.7508993","42.7093926"],["-76.7522819","42.711311"],["-76.7528724","42.7120654"],["-76.7531311","42.7123412"],["-76.7533793","42.7125845"],["-76.7537027","42.7128709"],["-76.7540467","42.7131492"],["-76.7543004","42.7133455"],["-76.7548264","42.7137284"],["-76.7560107","42.7146066"],["-76.7565473","42.7150109"],["-76.7567961","42.7152164"],["-76.7570238","42.7154238"],["-76.7573746","42.7157903"],["-76.7576836","42.7161641"],["-76.7579333","42.7165264"],["-76.7581399","42.7168811"],["-76.7583055","42.7172061"],["-76.7585451","42.7178417"],["-76.7596541","42.721148"],["-76.7597897","42.7215066"],["-76.7599033","42.7217651"],["-76.7600689","42.7220903"],["-76.7602493","42.7224042"],["-76.7604575","42.722731"],["-76.7665958","42.7312757"],["-76.7669479","42.7318094"],["-76.7671391","42.7321716"],["-76.7672649","42.7324938"],["-76.767337","42.7327073"],["-76.7674093","42.7329847"],["-76.7674772","42.7333848"],["-76.7675462","42.7344918"],["-76.7676027","42.7349914"],["-76.7677046","42.7354743"],["-76.7678196","42.7358673"],["-76.7681635","42.7367283"],["-76.7689622","42.7385875"],["-76.7692106","42.7392581"],["-76.7693774","42.7400275"],["-76.7699737","42.7437694"],["-76.7700672","42.7443099"],["-76.7701407","42.7448274"],["-76.7702076","42.7453027"],["-76.7702462","42.7457357"],["-76.7702474","42.7462738"],["-76.7702025","42.7468144"],["-76.7701508","42.7471363"],["-76.7695865","42.7494166"],["-76.7694143","42.7500967"],["-76.7692432","42.7507752"],["-76.7691191","42.7512927"],["-76.7690279","42.7517269"],["-76.7689963","42.7519981"],["-76.7689792","42.7523171"],["-76.7689835","42.7527597"],["-76.769009","42.7530394"],["-76.7690827","42.753417"],["-76.7695331","42.7552082"],["-76.7702711","42.7590794"],["-76.7703469","42.7596527"],["-76.7703454","42.760002"],["-76.7703115","42.7603078"],["-76.770253","42.7605966"],["-76.7701305","42.7609667"],["-76.7699161","42.7615559"],["-76.7697908","42.7619412"],["-76.7697339","42.7622561"],["-76.76971","42.7626319"],["-76.7697181","42.7636989"],["-76.7699459","42.7646388"],["-76.7789657","42.7654917"],["-76.7799781","42.7655776"],["-76.8154039","42.7686785"],["-76.8109141","42.8034566"],["-76.8104121","42.8073462"],["-76.8100687","42.810157"],["-76.8098447","42.8119922"],["-76.8091152","42.8174548"],["-76.8064511","42.8384402"],["-76.8062504","42.8399996"],["-76.8013674","42.8769066"],["-76.8012701","42.8775953"],["-76.7990025","42.8940572"],["-76.7974086","42.9057293"],["-76.7973518","42.906067"],["-76.797256","42.9063556"],["-76.7971636","42.9065394"],["-76.7961389","42.9084068"],["-76.796057","42.9086052"],["-76.7959907","42.908917"],["-76.7957764","42.9100465"],["-76.7957691","42.9101196"],["-76.7957651","42.9102287"],["-76.7957889","42.910411"],["-76.7958606","42.9106485"],["-76.7959471","42.9108626"],["-76.7959825","42.9109622"],["-76.7963645","42.9110526"],["-76.7965467","42.910978"],["-76.7968224","42.9110372"],["-76.7968407","42.910947"],["-76.7968144","42.9108984"],["-76.7961711","42.9107447"],["-76.7959818","42.9107568"],["-76.7959937","42.9105208"],["-76.7960191","42.910467"],["-76.7960497","42.910433"],["-76.7960874","42.9104028"],["-76.796166","42.9103596"],["-76.7962523","42.9103444"],["-76.7965008","42.9103191"],["-76.796939","42.9103583"],["-76.7994382","42.910546"],["-76.7999501","42.9105584"],["-76.800539","42.9105571"],["-76.8014941","42.9105599"],["-76.8069381","42.9105333"],["-76.8091928","42.9105536"],["-76.8104771","42.9106344"],["-76.8123736","42.9108128"],["-76.8133158","42.9108932"],["-76.8135076","42.9108883"],["-76.8137607","42.9108596"],["-76.8139931","42.9108131"],["-76.8143597","42.9106982"],["-76.8159751","42.910088"],["-76.8164693","42.9099311"],["-76.8168758","42.9098604"],["-76.8175706","42.9097761"],["-76.8180315","42.9097244"],["-76.8188039","42.9096433"],["-76.8194886","42.909567"],["-76.8201767","42.9094625"],["-76.8206155","42.9093511"],["-76.821245","42.9091385"],["-76.8222889","42.9087375"],["-76.823569","42.9082236"],["-76.8238657","42.9080807"],["-76.8241502","42.9079186"],["-76.8242891","42.9078117"],["-76.8245837","42.9075372"],["-76.8253182","42.9066635"],["-76.8258834","42.90599"],["-76.8260566","42.9058101"],["-76.8263035","42.9055872"],["-76.8266637","42.9052924"],["-76.8272307","42.9048872"],["-76.827503","42.9047321"],["-76.828732","42.9041073"],["-76.8293383","42.9038071"],["-76.8295381","42.9037191"],["-76.8300011","42.9035361"],["-76.8302669","42.9034584"],["-76.8309791","42.9032907"],["-76.8311156","42.9032682"],["-76.8315229","42.9032256"],["-76.8349232","42.9029464"],["-76.8350958","42.9029318"],["-76.8359043","42.9028526"],["-76.8389748","42.9025553"],["-76.8405519","42.9024072"],["-76.8422322","42.9022369"],["-76.8423347","42.9022273"],["-76.8425447","42.902198"],["-76.842633","42.9021868"],["-76.8487089","42.9015438"],["-76.8490416","42.9015236"],["-76.8492131","42.9015276"],["-76.8494895","42.9015577"],["-76.8528542","42.9022306"],["-76.8532047","42.9023046"],["-76.8533733","42.902349"],["-76.8541375","42.9025845"],["-76.8574015","42.9036375"],["-76.8579992","42.9038105"],["-76.8626391","42.9046283"],["-76.8629729","42.9046507"],["-76.8633837","42.9046378"],["-76.865242","42.9045463"],["-76.8655931","42.9045293"],["-76.8659117","42.9045071"],["-76.8665649","42.9044325"],["-76.8718263","42.9034472"],["-76.8733019","42.9032484"],["-76.8737706","42.9032206"],["-76.8741491","42.9032289"],["-76.8744432","42.9032552"],["-76.8757122","42.9034607"],["-76.8761038","42.9035158"],["-76.8766217","42.9035624"],["-76.8768987","42.9035538"],["-76.877178","42.9035287"],["-76.8775063","42.9034727"],["-76.8955642","42.8989676"],["-76.8957299","42.8989266"],["-76.9165014","42.8938414"],["-76.9175747","42.8935558"],["-76.9179394","42.8934298"],["-76.9183008","42.8932819"],["-76.9187119","42.8930867"],["-76.9192321","42.8928148"],["-76.9217799","42.8914116"],["-76.9309553","42.8861524"],["-76.9358407","42.8833481"],["-76.9363329","42.8830992"],["-76.9366586","42.8829669"],["-76.9381636","42.8824473"],["-76.9391778","42.8820812"],["-76.9396994","42.8818504"],["-76.9403743","42.88151"],["-76.9408805","42.8811884"],["-76.9411518","42.8810089"],["-76.9413765","42.8808487"],["-76.9415143","42.8807501"],["-76.9418218","42.8805083"],["-76.9420327","42.8803297"],["-76.9421848","42.8802746"],["-76.9424461","42.8800411"],["-76.9427498","42.8797256"],["-76.9428844","42.8795644"],["-76.9435452","42.8786569"],["-76.9438516","42.8781887"],["-76.9441199","42.8778204"],["-76.9442409","42.8776559"],["-76.9444893","42.8773284"],["-76.9445318","42.877269"],["-76.9446131","42.8771553"],["-76.9448561","42.8768281"],["-76.9450663","42.8765849"],["-76.9452895","42.8763615"],["-76.9454651","42.8762165"],["-76.9456522","42.8760765"],["-76.9458611","42.8759448"],["-76.9462918","42.875712"],["-76.9468928","42.8754789"],["-76.9472962","42.8753685"],["-76.9475693","42.8753146"],["-76.9480455","42.8752507"],["-76.9485413","42.8752299"],["-76.9487737","42.8752361"],["-76.9498979","42.8753451"],["-76.9595936","42.8764248"],["-76.9603298","42.8764878"],["-76.9606362","42.8765015"],["-76.9608689","42.8764942"],["-76.961416","42.8764521"],["-76.961731","42.8764146"],["-76.9620656","42.8763542"],["-76.9623432","42.8762876"],["-76.9625992","42.8762178"],["-76.9629105","42.8761188"],["-76.9633293","42.8759577"],["-76.9636099","42.875792"],["-76.9642695","42.8755582"],["-76.9650595","42.8752487"],["-76.9662007","42.8748139"],["-76.9680527","42.8741302"],["-76.9704154","42.8733271"],["-76.9741687","42.8719379"],["-76.9745961","42.8717958"],["-76.9753931","42.871559"],["-76.9761553","42.8713234"],["-76.976642","42.8711423"],["-76.9771061","42.8709248"],["-76.9776314","42.8706308"],["-76.9780281","42.8703834"],["-76.9783118","42.8701792"],["-76.9785177","42.87002"],["-76.9787139","42.8698773"],["-76.9804605","42.8701221"],["-76.9805626","42.8700026"],["-76.9806755","42.869735"],["-76.980753","42.8695524"],["-76.9808769","42.8692556"],["-76.9809978","42.8689668"],["-76.981082","42.8687701"],["-76.9813628","42.8681357"],["-76.9814197","42.8679632"],["-76.9814785","42.8678199"],["-76.9816051","42.867534"],["-76.981911","42.8668703"],["-76.982007","42.8666893"],["-76.9820191","42.8666683"],["-76.9820252","42.8666575"],["-76.9820346","42.8666538"],["-76.9821845","42.8666823"],["-76.9828322","42.8666839"],["-76.9830983","42.8666832"],["-76.984659","42.8666829"],["-76.9849583","42.866682"],["-76.9851027","42.8667092"],["-76.9852647","42.8670972"],["-76.985386","42.8674107"],["-76.9855685","42.8678827"],["-76.9856772","42.8681502"],["-76.9856747","42.8682201"],["-76.9856865","42.8683199"],["-76.985979","42.8690622"],["-76.9860836","42.8690759"],["-76.9857639","42.8682553"],["-76.9856795","42.8681461"],["-76.985578","42.8679037"],["-76.985381","42.8673975"],["-76.9852699","42.8671112"],["-76.9851112","42.8667031"],["-76.9849122","42.8661949"],["-76.9847781","42.865847"],["-76.9846968","42.8656359"],["-76.9845996","42.8653802"],["-76.9833353","42.862059"],["-76.9834184","42.8620218"],["-76.9838467","42.8619352"],["-76.9843032","42.861842"],["-76.9844397","42.8618099"],["-76.9844865","42.8617913"],["-76.9845309","42.8617696"],["-76.9845701","42.8617424"],["-76.9846094","42.8617119"],["-76.9846376","42.8616799"],["-76.9846594","42.8616451"],["-76.9846756","42.8616072"],["-76.9846888","42.8615689"],["-76.9846975","42.8615321"],["-76.9847028","42.8614963"],["-76.9847027","42.8614659"],["-76.9846988","42.8614338"],["-76.9846857","42.8613926"],["-76.9846649","42.8613308"],["-76.9846297","42.8611366"],["-76.9846304","42.8610659"],["-76.9846389","42.861035"],["-76.9846839","42.8609523"],["-76.9848275","42.8609054"],["-76.9852234","42.8607912"],["-76.9861711","42.8605956"],["-76.9872123","42.8603668"],["-76.9896714","42.8598208"],["-76.9903015","42.8596815"],["-76.9908923","42.8595542"],["-76.9918741","42.8593739"],["-76.9988167","42.857993"],["-76.9998469","42.8577697"],["-77.0005801","42.8576173"],["-77.002541","42.8572003"],["-77.0034929","42.8569985"],["-77.0049245","42.856721"],["-77.0057373","42.8566228"],["-77.0061691","42.8565771"],["-77.0070428","42.8565223"],["-77.008136","42.8565068"],["-77.0112912","42.8567078"],["-77.0154239","42.8570571"],["-77.0166176","42.8571631"],["-77.0178253","42.8572702"],["-77.021795","42.8578114"],["-77.022676","42.8579423"],["-77.0438744","42.8612081"],["-77.0459028","42.8614923"],["-77.0473193","42.8616471"],["-77.0492918","42.8616824"],["-77.0508243","42.8616268"],["-77.0538201","42.8614018"],["-77.0558338","42.8612457"],["-77.0664089","42.8604397"],["-77.0681204","42.860399"],["-77.0698662","42.8605214"],["-77.0774834","42.8609598"],["-77.0792695","42.8609362"],["-77.0803445","42.8608465"],["-77.0815112","42.8607093"],["-77.0821586","42.8606241"],["-77.1014485","42.8580248"],["-77.104071","42.8577095"],["-77.1049746","42.8577159"],["-77.1057584","42.8577571"],["-77.1065549","42.8578539"],["-77.1078708","42.8581713"],["-77.1099245","42.8587821"],["-77.1119014","42.8594239"],["-77.1141991","42.860113"],["-77.1159781","42.8605307"],["-77.1184878","42.8608353"],["-77.1209237","42.8609991"],["-77.1245441","42.8610377"],["-77.1261296","42.8609979"],["-77.1281107","42.8609621"],["-77.1603207","42.8606002"],["-77.1683878","42.8606011"],["-77.1851764","42.8623312"],["-77.186079","42.8624154"],["-77.1869095","42.8624535"],["-77.188151","42.8624209"],["-77.1998563","42.8617393"],["-77.2002469","42.8617427"],["-77.2005991","42.8617625"],["-77.2013703","42.8618498"],["-77.2029741","42.8621099"],["-77.2153094","42.8643105"],["-77.215892","42.8644217"],["-77.2251267","42.8661518"],["-77.2270298","42.8666033"],["-77.2282252","42.8668981"],["-77.2292308","42.867188"],["-77.2297994","42.8673937"],["-77.2360171","42.8702716"],["-77.237989","42.8712261"],["-77.238625","42.8715831"],["-77.2457109","42.8749283"],["-77.2470347","42.8754678"],["-77.2478914","42.8757788"],["-77.2491265","42.876202"],["-77.250127","42.8765049"],["-77.2506633","42.8766482"],["-77.251518","42.8768604"],["-77.2522939","42.8770401"],["-77.2538052","42.8773282"],["-77.2551887","42.8775456"],["-77.2556487","42.8776058"],["-77.257089","42.8777502"],["-77.258332","42.8778317"],["-77.2708022","42.8782429"],["-77.2714967","42.8783229"],["-77.274108","42.8784155"],["-77.2742398","42.8784297"],["-77.2743777","42.8784583"],["-77.2744963","42.8785037"],["-77.2745869","42.8785616"],["-77.2747092","42.8786597"],["-77.2748914","42.8789017"],["-77.2799351","42.8859"],["-77.2803872","42.8865345"],["-77.2807149","42.8869946"],["-77.2813975","42.8879123"],["-77.2815162","42.8878779"],["-77.2794151","42.8849704"],["-77.2793015","42.8850144"],["-77.279968","42.8859465"],["-77.2803719","42.8865124"],["-77.2807293","42.8870146"],["-77.2814162","42.8879572"],["-77.2820162","42.8887988"],["-77.2829902","42.8901287"],["-77.2830851","42.890264"],["-77.283327","42.8906016"],["-77.2836775","42.8910768"],["-77.2840646","42.8916045"],["-77.2863669","42.8947792"],["-77.2866464","42.895165"],["-77.287577","42.8964613"],["-77.287925","42.8969377"],["-77.2880357","42.8970965"],["-77.2911152","42.9014394"],["-77.2915016","42.9019824"],["-77.2925068","42.9034121"],["-77.292744","42.9037553"],["-77.292936","42.9040358"],["-77.2931248","42.9043002"],["-77.293315","42.9045244"],["-77.2934937","42.9047233"],["-77.2936592","42.9049235"],["-77.2938899","42.9051803"],["-77.2978489","42.9091295"],["-77.2985323","42.9098461"],["-77.299152","42.9105804"],["-77.3008373","42.912976"],["-77.3018171","42.9143095"],["-77.302186","42.9148381"],["-77.3025797","42.9154322"],["-77.3047874","42.9186118"],["-77.3057899","42.9200158"],["-77.3058756","42.9201392"],["-77.3060183","42.9203158"],["-77.3062297","42.9205779"],["-77.3065203","42.9209864"],["-77.3074165","42.9222608"],["-77.3078268","42.9228577"],["-77.3084264","42.9236876"],["-77.3086679","42.9240051"],["-77.3094138","42.9251293"],["-77.3097464","42.9255255"],["-77.3107581","42.9265875"],["-77.3120394","42.9277289"],["-77.3136804","42.928909"],["-77.3147959","42.9297827"],["-77.3196353","42.9333335"],["-77.3207646","42.9341612"],["-77.326905","42.9388525"],["-77.3312447","42.9421241"],["-77.331857","42.9427257"],["-77.3322109","42.94314"],["-77.3367198","42.9490079"],["-77.3369936","42.9493809"],["-77.3380222","42.9506768"],["-77.3392097","42.9522134"],["-77.3401214","42.9533766"],["-77.3431583","42.9573944"],["-77.3436579","42.9580654"],["-77.3439278","42.9584244"],["-77.3442068","42.9587893"],["-77.3446544","42.9593732"],["-77.3450084","42.9598381"],["-77.3453929","42.9603416"],["-77.3479667","42.9639113"],["-77.3491629","42.965746"],["-77.3498466","42.9668222"],["-77.3516757","42.9696954"],["-77.3520464","42.970249"],["-77.3525074","42.9709162"],["-77.3532167","42.9718661"],["-77.353472","42.972167"],["-77.3536929","42.9724469"],["-77.3584721","42.9783861"],["-77.3590639","42.9792884"],["-77.3605511","42.9817165"],["-77.3611296","42.9827627"],["-77.3615942","42.9836353"],["-77.3617828","42.9839878"],["-77.3619749","42.9844104"],["-77.3634287","42.9874114"],["-77.3638641","42.9883167"],["-77.3641921","42.9888965"],["-77.3653772","42.9912435"],["-77.3663341","42.9932768"],["-77.3665588","42.9937383"],["-77.3668416","42.9943028"],["-77.3671565","42.9949"],["-77.3674437","42.9954439"],["-77.3676914","42.9959166"],["-77.3679774","42.9963706"],["-77.3684462","42.9967486"],["-77.3687662","42.9969072"],["-77.3690915","42.9970188"],["-77.3693643","42.9970854"],["-77.3696599","42.9971069"],["-77.3700361","42.9970997"],["-77.3704352","42.997033"],["-77.3711342","42.996787"],["-77.372006","42.9963976"],["-77.3724195","42.9962445"],["-77.3728062","42.9961712"],["-77.3745143","42.99612"],["-77.4025068","42.9976148"],["-77.4102946","42.998108"],["-77.4123012","42.9983058"],["-77.4161985","42.9988529"],["-77.4185775","42.9992982"],["-77.4218292","43.0000037"],["-77.4236651","43.0004341"],["-77.4245643","43.0007104"],["-77.4256668","43.0011084"],["-77.4267323","43.001517"],["-77.4280962","43.0021747"],["-77.429782","43.0031486"],["-77.4354538","43.0068078"],["-77.4361975","43.0073417"],["-77.4369168","43.007812"],["-77.4375867","43.0082708"],["-77.4380269","43.0087279"],["-77.438328","43.0092702"],["-77.4385194","43.0099828"],["-77.4388238","43.0114633"],["-77.4389135","43.0124066"],["-77.4392666","43.0142593"],["-77.4397094","43.0156565"],["-77.4399708","43.0161427"],["-77.4404488","43.0167631"],["-77.4431775","43.01988"],["-77.4461222","43.0239924"],["-77.4478952","43.0263336"],["-77.4499348","43.0281929"],["-77.452394","43.0302047"],["-77.4551399","43.0326346"],["-77.4609316","43.038874"],["-77.4615017","43.0398297"],["-77.461885","43.0406399"],["-77.4621221","43.0413831"],["-77.4623331","43.0422927"],["-77.4628454","43.0451356"],["-77.4632102","43.0465695"],["-77.463488","43.0473974"],["-77.4638442","43.0480917"],["-77.4642261","43.0487969"],["-77.4646862","43.0493505"],["-77.4652833","43.0498929"],["-77.4659649","43.0504132"],["-77.4678273","43.0516617"],["-77.4686256","43.0522193"],["-77.4690342","43.052626"],["-77.4695851","43.0532018"],["-77.4697568","43.0533978"],["-77.4699309","43.0536324"],["-77.4703391","43.0542789"],["-77.4706818","43.054967"],["-77.4709412","43.055708"],["-77.4710904","43.0565341"],["-77.4711261","43.0576087"],["-77.4711409","43.0582546"],["-77.4711381","43.0589532"],["-77.4711458","43.0603477"],["-77.4711852","43.0613018"],["-77.4712514","43.062001"],["-77.4714596","43.0629742"],["-77.4724891","43.0659816"],["-77.4728008","43.0666721"],["-77.4731524","43.0673679"],["-77.4735802","43.0681674"],["-77.4743432","43.069218"],["-77.4752595","43.0702136"],["-77.4760507","43.0709305"],["-77.4770024","43.0716588"],["-77.4811191","43.0746486"],["-77.4825713","43.0757307"],["-77.4833898","43.0765129"],["-77.4837993","43.076959"],["-77.4843763","43.0776527"],["-77.486333","43.0802842"],["-77.4871137","43.0811945"],["-77.4885382","43.0824638"],["-77.4889881","43.0828215"],["-77.490762","43.0838577"],["-77.4915257","43.0842678"],["-77.4923522","43.0846864"],["-77.4944417","43.0857297"],["-77.4951837","43.0861304"],["-77.4956689","43.0864229"],["-77.4961047","43.0867196"],["-77.4965116","43.0870127"],["-77.4969301","43.087343"],["-77.4973222","43.0876951"],["-77.4976903","43.0880482"],["-77.4980693","43.088465"],["-77.4983903","43.0888489"],["-77.498922","43.0896136"],["-77.4991706","43.0900501"],["-77.4993763","43.0904497"],["-77.4995756","43.0909135"],["-77.4997154","43.0913042"],["-77.5001879","43.0929568"],["-77.501419","43.0973715"],["-77.5015421","43.0977734"],["-77.5017099","43.0982424"],["-77.5018894","43.0986886"],["-77.5022962","43.0995025"],["-77.5060351","43.1054974"],["-77.5064119","43.1062935"],["-77.5066858","43.1070253"],["-77.5068409","43.1075213"],["-77.5069539","43.108272"],["-77.5070036","43.1088108"],["-77.5070133","43.1093338"],["-77.5069731","43.1098403"],["-77.5063479","43.1139431"],["-77.5063088","43.1143425"],["-77.5063027","43.1146644"],["-77.5063289","43.1149688"],["-77.506392","43.1153169"],["-77.5064793","43.1156214"],["-77.5065902","43.1159082"],["-77.5066953","43.1161355"],["-77.5068203","43.1163649"],["-77.5070902","43.1167854"],["-77.5072679","43.1169893"],["-77.5078089","43.117532"],["-77.50823","43.1178758"],["-77.508739","43.1181618"],["-77.5092488","43.118423"],["-77.5096993","43.1186177"],["-77.5105536","43.1188816"],["-77.513356","43.1193425"],["-77.5148648","43.1196147"],["-77.5157068","43.1198555"],["-77.5162279","43.1200418"],["-77.5166469","43.1201965"],["-77.5171859","43.1204063"],["-77.5176228","43.1206298"],["-77.5188436","43.1213589"],["-77.5219946","43.1232894"],["-77.5224451","43.1236086"],["-77.5227745","43.1238935"],["-77.5230471","43.1241487"],["-77.5233649","43.1245095"],["-77.5236662","43.1249312"],["-77.5239226","43.1253562"],["-77.5241086","43.1258553"],["-77.524257","43.1263853"],["-77.5243745","43.1273846"],["-77.5244513","43.1281035"],["-77.5245321","43.1285672"],["-77.5246321","43.1289692"],["-77.5247246","43.1292053"],["-77.5247975","43.1293836"],["-77.5250434","43.1298223"],["-77.5253797","43.1303027"],["-77.525882","43.1308713"],["-77.5261307","43.1310674"],["-77.5280822","43.1324809"],["-77.5309932","43.1346764"],["-77.5336852","43.1365083"],["-77.5340265","43.1367239"],["-77.5342481","43.1368573"],["-77.534496","43.1369969"],["-77.5346145","43.1370608"],["-77.534734","43.1371248"],["-77.5413364","43.1405855"],["-77.5421388","43.1411116"],["-77.5425033","43.1413563"],["-77.5431124","43.1417528"],["-77.5437111","43.1420878"],["-77.5439696","43.1422139"],["-77.5443318","43.1423738"],["-77.5445973","43.1424816"],["-77.5447398","43.1425354"],["-77.5450088","43.1426289"],["-77.5455521","43.1427995"],["-77.5517515","43.1442524"],["-77.5533871","43.1446176"],["-77.5536648","43.1446633"],["-77.5539665","43.1447016"],["-77.5545657","43.1447455"],["-77.5554391","43.1447651"],["-77.5560692","43.144763"],["-77.5565157","43.1447691"],["-77.5595054","43.1449131"],["-77.5599562","43.1449029"],["-77.5631636","43.1446168"],["-77.5632729","43.1446049"],["-77.5912872","43.1418107"],["-77.5924703","43.1417631"],["-77.5929132","43.1417712"],["-77.593664","43.1418141"],["-77.5945103","43.1419106"],["-77.5947115","43.1419405"],["-77.594835","43.1419606"],["-77.5948551","43.1419645"],["-77.595268","43.1420421"],["-77.5957033","43.1421378"],["-77.5961262","43.1422478"],["-77.5964003","43.1423301"],["-77.5965533","43.1423806"],["-77.5966836","43.1424259"],["-77.5968042","43.1424717"],["-77.5970593","43.1425786"],["-77.5971818","43.142633"],["-77.5973524","43.1427152"],["-77.5974298","43.1427555"],["-77.5975746","43.1428378"],["-77.5976772","43.1429005"],["-77.5977869","43.1429715"],["-77.5978937","43.1430475"],["-77.5981015","43.1432089"],["-77.5983078","43.1433824"],["-77.5984035","43.1434686"],["-77.5984868","43.1435472"],["-77.5986544","43.1437229"],["-77.5988229","43.1439123"],["-77.5992474","43.144448"],["-77.6006105","43.1461968"],["-77.6017046","43.1476988"],["-77.6022185","43.148411"],["-77.6022933","43.148512"],["-77.6024294","43.1486908"],["-77.6024787","43.148749"],["-77.6025239","43.1487963"],["-77.6025766","43.1488447"],["-77.6026225","43.1488845"],["-77.6026785","43.1489303"],["-77.6027255","43.1489662"],["-77.6027815","43.1490065"],["-77.6028355","43.1490414"],["-77.6028903","43.1490746"],["-77.6029528","43.1491106"],["-77.6035105","43.1494105"],["-77.6035943","43.1494585"],["-77.6036485","43.149492"],["-77.6036992","43.1495264"],["-77.603756","43.1495693"],["-77.6038033","43.1496066"],["-77.6038492","43.1496456"],["-77.603889","43.1496836"],["-77.6039223","43.1497192"],["-77.6039614","43.1497658"],["-77.6039965","43.1498121"],["-77.6040256","43.1498579"],["-77.6040519","43.1499044"],["-77.6040771","43.1499567"],["-77.6041226","43.150079"],["-77.6041497","43.1501609"],["-77.6041755","43.1502519"],["-77.6041982","43.1503434"],["-77.6042276","43.1504941"],["-77.6042639","43.1507153"],["-77.6043003","43.1509331"],["-77.6043482","43.15116"],["-77.6045098","43.1518454"],["-77.6046431","43.1523318"],["-77.6047005","43.1525418"],["-77.6050892","43.1540112"],["-77.6051424","43.1541618"],["-77.6064169","43.1571634"],["-77.6065272","43.1571425"],["-77.6156546","43.1550099"],["-77.6157725","43.1551598"],["-77.6158089","43.1552085"],["-77.6158451","43.1552551"],["-77.6168387","43.1564033"],["-77.6169382","43.1565192"],["-77.6169941","43.1565957"],["-77.6170218","43.156637"],["-77.6170534","43.1566898"],["-77.6172219","43.1570011"],["-77.6172725","43.1570912"],["-77.6173039","43.1571359"],["-77.617324","43.157163"],["-77.617356","43.157206"],["-77.6173829","43.1572399"],["-77.617417","43.1572818"],["-77.6177312","43.1576298"],["-77.6177786","43.1576534"],["-77.6180008","43.157534"],["-77.618574","43.1572441"],["-77.6200501","43.1565914"],["-77.6200989","43.1565735"],["-77.620149","43.1565571"],["-77.6201986","43.1565423"],["-77.6202493","43.1565314"],["-77.6202999","43.1565263"],["-77.6203518","43.1565224"],["-77.6204044","43.15652"],["-77.6204594","43.1565205"],["-77.6205123","43.1565222"],["-77.6205633","43.1565292"],["-77.6206077","43.1565359"],["-77.6206621","43.1565472"],["-77.6207099","43.1565591"],["-77.6207601","43.1565735"],["-77.6208071","43.1565897"],["-77.6208438","43.1566032"],["-77.6208689","43.1566127"],["-77.6209146","43.156634"],["-77.6209799","43.1566665"],["-77.6213884","43.1568897"],["-77.6215067","43.1569535"],["-77.6216316","43.1570153"],["-77.6218197","43.1570959"],["-77.6219547","43.1571491"],["-77.6220193","43.1571726"],["-77.6222327","43.1572426"],["-77.6224856","43.1573227"],["-77.6225965","43.1573567"],["-77.6227971","43.1574135"],["-77.6229969","43.1574613"],["-77.6231493","43.1574944"],["-77.6232768","43.1575192"],["-77.6234326","43.1575467"],["-77.6235662","43.1575669"],["-77.6237338","43.1575888"],["-77.6240214","43.1576159"],["-77.6241434","43.1576244"],["-77.6243998","43.1576354"],["-77.6245036","43.1576378"],["-77.6249298","43.1576273"],["-77.6250659","43.1576199"],["-77.6253422","43.1575964"],["-77.6254552","43.157584"],["-77.6261104","43.1574734"],["-77.6292706","43.1568282"],["-77.6295519","43.156781"],["-77.6297133","43.1567577"],["-77.6300061","43.1567227"],["-77.6301583","43.1567085"],["-77.6313855","43.1566679"],["-77.6395951","43.1567124"],["-77.6436985","43.1571766"],["-77.6478833","43.1572129"],["-77.6552634","43.1571242"],["-77.6745059","43.157753"],["-77.6752971","43.1577729"],["-77.6757011","43.1577979"],["-77.6762312","43.157833"],["-77.6770381","43.1579274"],["-77.6789353","43.1581686"],["-77.6801041","43.1583065"],["-77.6808568","43.1583707"],["-77.6813286","43.1583909"],["-77.681895","43.1584028"],["-77.682222","43.1583908"],["-77.6831038","43.1583472"],["-77.6835745","43.1583068"],["-77.6871938","43.1578541"],["-77.6888935","43.1576397"],["-77.6900305","43.1575196"],["-77.6920415","43.1573851"],["-77.6958771","43.1571687"],["-77.6973094","43.1571371"],["-77.6983145","43.1571631"],["-77.6996089","43.1572212"],["-77.7052024","43.1576574"],["-77.7094129","43.1579715"],["-77.7105347","43.1580355"],["-77.7112403","43.1580183"],["-77.7119277","43.1579598"],["-77.7124806","43.1578855"],["-77.7129728","43.1577914"],["-77.7136315","43.1575891"],["-77.7142676","43.1573432"],["-77.7148525","43.157061"],["-77.7155369","43.1566631"],["-77.7160898","43.1562497"],["-77.7165202","43.155835"],["-77.7168377","43.1554792"],["-77.7170929","43.155149"],["-77.7173469","43.1547123"],["-77.7175176","43.1543201"],["-77.7176685","43.1539065"],["-77.7177703","43.1534412"],["-77.7178425","43.1525468"],["-77.7178774","43.15142"],["-77.7179436","43.1465773"],["-77.7179594","43.1456132"],["-77.718082","43.1386069"],["-77.7181728","43.1379415"],["-77.7183587","43.137001"],["-77.7186972","43.1361351"],["-77.7189174","43.1356942"],["-77.7192204","43.1351584"],["-77.7198611","43.1341731"],["-77.7202888","43.133635"],["-77.7212916","43.1327026"],["-77.7221471","43.1319368"],["-77.7245519","43.1299564"],["-77.7282519","43.1268882"],["-77.729387","43.1259875"],["-77.7298751","43.125631"],["-77.7299811","43.1255553"],["-77.7301218","43.1254558"],["-77.7301334","43.1254473"],["-77.7303446","43.1253072"],["-77.7310814","43.1248388"],["-77.7321527","43.1242688"],["-77.7335539","43.123621"],["-77.7349852","43.1230523"],["-77.736626","43.1225144"],["-77.7392089","43.1218739"],["-77.7402036","43.1217083"],["-77.7409154","43.1216174"],["-77.743549","43.12135"],["-77.7492032","43.1208919"],["-77.7519247","43.120627"],["-77.7536787","43.120408"],["-77.7564119","43.1199665"],["-77.7586498","43.1195193"],["-77.7596378","43.119292"],["-77.7613631","43.1188447"],["-77.7628518","43.1183699"],["-77.7645816","43.1177992"],["-77.7663665","43.1170933"],["-77.7686124","43.1161037"],["-77.7706907","43.1150503"],["-77.7734277","43.1135289"],["-77.7752164","43.1123371"],["-77.7790641","43.1094234"],["-77.7899343","43.1011091"],["-77.7911245","43.1002413"],["-77.7926511","43.0992095"],["-77.7944564","43.0981254"],["-77.7957212","43.097464"],["-77.7966649","43.097004"],["-77.7989905","43.0960617"],["-77.8014151","43.0953302"],["-77.8034838","43.0948311"],["-77.8045009","43.0946445"],["-77.8061488","43.0943784"],["-77.8073907","43.0942395"],["-77.8092739","43.0941005"],["-77.8121394","43.0940314"],["-77.820468","43.0941644"],["-77.8219779","43.0942024"],["-77.8305667","43.0944402"],["-77.8337641","43.0946372"],["-77.8597139","43.0975667"],["-77.8650148","43.0981317"],["-77.8660473","43.0981445"],["-77.8669897","43.0981048"],["-77.8683644","43.0979728"],["-77.8693772","43.0978128"],["-77.8703749","43.097619"],["-77.8718362","43.0972427"],["-77.8845814","43.0937064"],["-77.8855343","43.0934179"],["-77.8893387","43.0923425"],["-77.8969413","43.0902401"],["-77.8997295","43.0895334"],["-77.9039744","43.0888393"],["-77.9185454","43.0866162"],["-77.9202483","43.0862559"],["-77.9214788","43.0859309"],["-77.9223935","43.0856424"],["-77.9232192","43.0853566"],["-77.9240241","43.0850406"],["-77.925297","43.0844589"],["-77.9260081","43.0840944"],["-77.9268046","43.083647"],["-77.927603","43.0831884"],["-77.9290072","43.082195"],["-77.9297022","43.0816326"],["-77.9302278","43.081191"],["-77.9307518","43.0807274"],["-77.9312442","43.080285"],["-77.9314308","43.0800662"],["-77.9317","43.0797566"],["-77.9319894","43.0794156"],["-77.9324459","43.0788311"],["-77.9327851","43.0783524"],["-77.9331002","43.0778639"],["-77.9333513","43.0774427"],["-77.9337239","43.0767408"],["-77.9343125","43.075527"],["-77.9351577","43.073782"],["-77.93595","43.0721034"],["-77.9371333","43.069664"],["-77.9378908","43.0681505"],["-77.94865","43.0488859"],["-77.949105","43.0481289"],["-77.9494579","43.0476217"],["-77.9498801","43.0470495"],["-77.9504186","43.0464102"],["-77.9510517","43.0457276"],["-77.9515408","43.0452382"],["-77.9523054","43.0445696"],["-77.9528532","43.044124"],["-77.9545041","43.0429619"],["-77.961217","43.0384"],["-77.9617344","43.038024"],["-77.9620812","43.0377414"],["-77.9624317","43.0374093"],["-77.9629173","43.0368777"],["-77.9632555","43.0364546"],["-77.9635452","43.036032"],["-77.9637207","43.0357427"],["-77.9639171","43.0353737"],["-77.9640311","43.0351175"],["-77.9641425","43.0348487"],["-77.9642314","43.0345987"],["-77.9642592","43.0345114"],["-77.9643511","43.034197"],["-77.9644303","43.0338694"],["-77.964506","43.0334463"],["-77.964536","43.0331344"],["-77.9645567","43.03282"],["-77.9646046","43.0312458"],["-77.9646935","43.0307424"],["-77.9647502","43.030549"],["-77.9648281","43.0303523"],["-77.9650024","43.0300446"],["-77.9650598","43.0299795"],["-77.96517","43.02986"],["-77.9652814","43.029764"],["-77.9654056","43.0296758"],["-77.9655467","43.0295951"],["-77.9656853","43.0295334"],["-77.9659434","43.0294542"],["-77.9662279","43.0294091"],["-77.9672689","43.0293039"],["-77.9682951","43.0292181"],["-77.9694835","43.0291678"],["-78.0309848","43.0303756"],["-78.0325465","43.0303545"],["-78.0354895","43.0302418"],["-78.0381457","43.0300143"],["-78.039493","43.0298676"],["-78.0413004","43.029625"],["-78.0424731","43.0294442"],["-78.0453775","43.028899"],["-78.0463965","43.0286754"],["-78.0473216","43.02845"],["-78.0487013","43.0280959"],["-78.0519209","43.0271624"],["-78.0927762","43.0150205"],["-78.0944419","43.0145554"],["-78.0955216","43.0143125"],["-78.0966024","43.0141207"],["-78.097704","43.0139659"],["-78.0985967","43.0138646"],["-78.0995091","43.013801"],["-78.1006585","43.0137503"],["-78.1019684","43.0137645"],["-78.1033763","43.0138369"],["-78.1043805","43.0139231"],["-78.1052884","43.0140362"],["-78.1061325","43.0141668"],["-78.1068624","43.0143046"],["-78.1076054","43.0144669"],["-78.1084337","43.0146671"],["-78.1094253","43.0149453"],["-78.1105597","43.0153143"],["-78.1170234","43.0179014"],["-78.1191857","43.0187771"],["-78.1225657","43.0201092"],["-78.1235831","43.020459"],["-78.1247098","43.020813"],["-78.1256024","43.0210666"],["-78.1266732","43.0213298"],["-78.1279051","43.0215838"],["-78.1308228","43.0220683"],["-78.1318206","43.022175"],["-78.1348293","43.0223271"],["-78.1359462","43.0223376"],["-78.1374616","43.0222799"],["-78.1811766","43.0191712"],["-78.1822082","43.0190846"],["-78.184392","43.018946"],["-78.1857126","43.0188654"],["-78.1861019","43.0188486"],["-78.1865411","43.0188159"],["-78.2773634","43.0163541"],["-78.3849442","43.0105252"],["-78.3906855","43.0104126"],["-78.3929423","43.0102426"],["-78.3943921","43.0100697"],["-78.3967011","43.0097259"],["-78.3982024","43.0094328"],["-78.400748","43.0088153"],["-78.4019082","43.00849"],["-78.4029065","43.0081728"],["-78.4057999","43.0071195"],["-78.4070874","43.006577"],["-78.4082211","43.00605"],["-78.4090994","43.0056196"],["-78.4103832","43.0049291"],["-78.4150565","43.002262"],["-78.4160569","43.0016739"],["-78.42053","42.9990944"],["-78.4215019","42.9985459"],["-78.4278312","42.9948998"],["-78.4286617","42.99445"],["-78.4294285","42.9940843"],["-78.4299531","42.9938477"],["-78.4308764","42.9934605"],["-78.4315698","42.9932081"],["-78.4322742","42.9929689"],["-78.4331167","42.9927102"],["-78.4340921","42.9924566"],["-78.4349917","42.9922491"],["-78.4357348","42.9920907"],["-78.4506984","42.9889122"],["-78.4578527","42.9873669"],["-78.4725513","42.9841324"],["-78.4793719","42.9821964"],["-78.4807091","42.9818917"],["-78.4822248","42.9816142"],["-78.4841929","42.9812962"],["-78.4857045","42.9811329"],["-78.4873032","42.9810207"],["-78.4903271","42.9808916"],["-78.4916201","42.9808161"],["-78.4931735","42.9806891"],["-78.4946037","42.9805434"],["-78.496302","42.9803077"],["-78.4979619","42.9800347"],["-78.4999249","42.9796484"],["-78.5020699","42.9791206"],["-78.5041211","42.9785492"],["-78.5060819","42.9779084"],["-78.5079574","42.9772071"],["-78.5098274","42.9764355"],["-78.5113164","42.9757437"],["-78.5147913","42.974068"],["-78.5178273","42.9726963"],["-78.5218934","42.9711162"],["-78.5244702","42.9702358"],["-78.5272857","42.9693679"],["-78.5299155","42.9686501"],["-78.5322521","42.9680847"],["-78.5350507","42.9675019"],["-78.5609547","42.9631634"],["-78.5646616","42.9622993"],["-78.6077578","42.9507642"],["-78.6100672","42.9503541"],["-78.6134559","42.95005"],["-78.6421971","42.9479323"],["-78.67087","42.9474765"],["-78.6737893","42.9476004"],["-78.7053487","42.9507772"],["-78.7069354","42.9508346"],["-78.7134018","42.9508737"],["-78.7242612","42.9508432"],["-78.7256101","42.9508417"],["-78.7319147","42.9508111"],["-78.7330587","42.950853"],["-78.7343446","42.9509205"],["-78.7359557","42.9510672"],["-78.7428519","42.9519951"],["-78.7436281","42.9520643"],["-78.7477883","42.9521306"],["-78.7508087","42.9521431"],["-78.7539513","42.9521326"],["-78.7542337","42.9521316"],["-78.7555848","42.9521195"],["-78.7564063","42.9520735"],["-78.7567467","42.9520414"],["-78.7579612","42.9518709"],["-78.7586044","42.9517273"],["-78.7591354","42.9515871"],["-78.7596781","42.9514334"],["-78.760363","42.951174"],["-78.7619495","42.9504193"],["-78.7627589","42.9499097"],["-78.763503","42.949376"],["-78.7641577","42.9488192"],["-78.7646591","42.9483174"],["-78.7650976","42.9478112"],["-78.765512","42.9471958"],["-78.7658459","42.9465307"],["-78.7662125","42.9455906"],["-78.7663033","42.945286"],["-78.7664212","42.9447618"],["-78.766492","42.9442201"],["-78.7665138","42.9433191"],["-78.766445","42.9369876"],["-78.7664898","42.9365155"],["-78.7665387","42.9363356"],["-78.7666317","42.9361527"],["-78.766939","42.9356956"],["-78.7671009","42.9355182"],["-78.7672649","42.9353567"],["-78.7674493","42.9352212"],["-78.767928","42.9349533"],["-78.7682794","42.9347631"],["-78.7684049","42.9346735"],["-78.7684852","42.9345906"],["-78.7685386","42.9345126"],["-78.7685757","42.9344182"],["-78.7685897","42.9342606"],["-78.7686085","42.933239"],["-78.7686275","42.9331062"],["-78.7686673","42.9330101"],["-78.7687214","42.9329356"],["-78.768817","42.9328522"],["-78.7689147","42.9327858"],["-78.7690327","42.9327293"],["-78.7691632","42.9326885"],["-78.7693321","42.9326517"],["-78.7694858","42.9326312"],["-78.7697686","42.9326247"],["-78.770079","42.9326417"],["-78.7735239","42.9329743"],["-78.7752525","42.9330508"],["-78.7771853","42.9330664"],["-78.7788064","42.9330616"],["-78.7798277","42.9330893"],["-78.7856087","42.9330613"],["-78.7864643","42.9330667"],["-78.7871829","42.933075"],["-78.7880526","42.9330497"],["-78.7885081","42.933013"],["-78.7893679","42.9329323"],["-78.7901184","42.9328656"],["-78.7916873","42.9327524"],["-78.7922773","42.9327327"],["-78.7932834","42.9327395"],["-78.7938117","42.9327677"],["-78.7943733","42.9328174"],["-78.7963772","42.9330775"],["-78.7973417","42.9331538"],["-78.7984028","42.9331972"],["-78.7988663","42.933198"],["-78.7992441","42.9331977"],["-78.8018374","42.9331941"],["-78.8022373","42.9331939"],["-78.8031464","42.9331931"],["-78.8088238","42.9332164"],["-78.8107952","42.9332085"],["-78.811296","42.9331665"],["-78.8117397","42.9330968"],["-78.8121958","42.9329971"],["-78.8126863","42.9328591"],["-78.8130747","42.9327449"],["-78.8134859","42.9326159"],["-78.8140235","42.9324237"],["-78.8173142","42.9312389"],["-78.8181689","42.9309235"],["-78.819874","42.9303355"],["-78.8204904","42.9301622"],["-78.8210832","42.9300548"],["-78.8219884","42.929911"],["-78.82242","42.9298761"],["-78.8230271","42.9298572"],["-78.8287959","42.9298908"],["-78.8297462","42.9298726"],["-78.8307684","42.9297846"],["-78.8317963","42.9296465"],["-78.8330712","42.9293817"],["-78.833824","42.9291548"],["-78.8347111","42.9288447"],["-78.8355331","42.9284986"],["-78.8364049","42.9280819"],["-78.8374985","42.9274955"],["-78.8381527","42.9270936"],["-78.8385657","42.9268189"],["-78.8401546","42.9256375"],["-78.8407626","42.9251834"],["-78.8414262","42.9246829"],["-78.8421277","42.9241569"],["-78.8425044","42.9238596"],["-78.8425858","42.9237411"],["-78.8427505","42.923567"],["-78.8428478","42.9234513"],["-78.842924","42.9233492"],["-78.8430657","42.9231456"],["-78.8431353","42.9230374"],["-78.8431934","42.9229339"],["-78.8432373","42.922851"],["-78.8432778","42.9227704"],["-78.8433325","42.9226335"],["-78.8433736","42.9225256"],["-78.8434355","42.9223027"],["-78.8434627","42.9221708"],["-78.8434836","42.9220212"],["-78.8434992","42.9218404"],["-78.8435034","42.9208375"],["-78.8435429","42.9206759"],["-78.8435314","42.9197463"],["-78.8435271","42.919127"],["-78.8435242","42.9172955"],["-78.8434645","42.9094763"],["-78.8434882","42.9089928"],["-78.8436288","42.9083864"],["-78.8438697","42.9075968"],["-78.8440714","42.9071247"],["-78.8442924","42.9066556"],["-78.8447609","42.9058663"],["-78.8451031","42.9052536"],["-78.8461792","42.9033461"],["-78.8468176","42.9022646"],["-78.8473191","42.9015839"],["-78.8476357","42.9012309"],["-78.848105","42.9007544"],["-78.8488933","42.9000748"],["-78.8494203","42.8997165"],["-78.8501654","42.899301"],["-78.8515898","42.8985735"],["-78.8525628","42.89812"],["-78.8541744","42.8974054"],["-78.8627191","42.8939225"],["-78.8629434","42.8938484"],["-78.8632127","42.8937837"],["-78.8658667","42.8933485"],["-78.866261","42.8932656"],["-78.8664976","42.8932027"],["-78.8667397","42.8931286"],["-78.8669649","42.8930367"],["-78.8671964","42.8929275"],["-78.8674427","42.8927852"],["-78.8676217","42.89265"],["-78.8678286","42.892477"],["-78.8680235","42.892308"],["-78.8683695","42.8918853"],["-78.8685188","42.8916587"],["-78.8687691","42.8911675"],["-78.8700723","42.8871521"],["-78.8703943","42.8862222"],["-78.8709654","42.8860984"],["-78.8713257","42.8860191"],["-78.8719592","42.8858816"],["-78.8725401","42.8858046"],["-78.8727339","42.8857946"],["-78.872897","42.8858026"],["-78.8732567","42.8858583"],["-78.873649","42.885924"],["-78.8738829","42.8859458"],["-78.8740114","42.8859296"],["-78.874107","42.885909"],["-78.8743029","42.8858592"],["-78.8746314","42.8858075"],["-78.8771208","42.8862365"],["-78.8774596","42.8864071"],["-78.8774638","42.8864758"],["-78.8774656","42.886568"],["-78.8775356","42.8866889"],["-78.8776643","42.8868204"],["-78.8778659","42.8868669"],["-78.8781156","42.886905"],["-78.8783296","42.8869297"],["-78.8784948","42.8868651"],["-78.8786401","42.8867924"],["-78.8787425","42.8866524"],["-78.8788596","42.8862573"],["-78.8788556","42.8861871"],["-78.8787867","42.8860999"],["-78.8787011","42.8860343"],["-78.8785178","42.8859642"],["-78.8783153","42.8858791"],["-78.8784715","42.8854086"],["-78.8786267","42.8849738"],["-78.8786323","42.8849574"],["-78.8786454","42.8849162"],["-78.8786703","42.8848388"],["-78.8789674","42.8839079"],["-78.8789878","42.8838063"],["-78.8790216","42.8838087"],["-78.8798078","42.8839436"],["-78.8822142","42.8843598"],["-78.8828131","42.8844127"],["-78.8830054","42.8844028"],["-78.8831835","42.884393"],["-78.8833405","42.8844008"],["-78.883471","42.8844129"],["-78.8835628","42.8844343"],["-78.8836348","42.8844571"],["-78.8837583","42.8845369"],["-78.8843348","42.8850968"],["-78.8851075","42.885852"],["-78.8860385","42.8866671"],["-78.8875108","42.8881518"],["-78.888237","42.888886"],["-78.890266","42.8909373"],["-78.8959657","42.8966038"],["-78.8965358","42.8971953"],["-78.8970342","42.8976683"],["-78.8981279","42.8988004"],["-78.8983592","42.89905"],["-78.8985756","42.8993126"],["-78.89891","42.899753"],["-78.8993647","42.9004508"],["-78.9001236","42.9016833"],["-78.9002116","42.9018306"],["-78.9007362","42.9027025"],["-78.9008717","42.9029485"],["-78.9009663","42.9031471"],["-78.9010402","42.9033374"],["-78.9010983","42.9035166"],["-78.9011465","42.9036832"],["-78.9011896","42.9038741"],["-78.9012161","42.904039"],["-78.901234","42.9041814"],["-78.9012417","42.9042952"],["-78.9012447","42.9043547"],["-78.9012493","42.9045034"],["-78.9012279","42.905246"],["-78.9012217","42.9054213"],["-78.901217","42.9054893"],["-78.901211","42.9055764"],["-78.9012083","42.9056155"],["-78.9011993","42.9057913"],["-78.9014799","42.913632"],["-78.9014766","42.9141979"],["-78.9014571","42.9146747"],["-78.9014236","42.9150274"],["-78.9013301","42.9156162"],["-78.9011315","42.9163781"],["-78.90094","42.9170282"],["-78.8989429","42.9234986"],["-78.8987496","42.9246949"],["-78.89858","42.9270092"],["-78.8985615","42.9278236"],["-78.8985879","42.928207"],["-78.8986295","42.9284922"],["-78.898664","42.9286547"],["-78.8986983","42.9287817"],["-78.8987958","42.9290684"],["-78.8988526","42.9292037"],["-78.8989784","42.9294642"],["-78.8990678","42.9296219"],["-78.899171","42.9297875"],["-78.8993306","42.9300117"],["-78.8995524","42.9302771"],["-78.8998575","42.9306144"],["-78.9004009","42.9310698"],["-78.9009569","42.931536"],["-78.9017567","42.9322565"],["-78.9028262","42.9336821"],["-78.903489","42.934779"],["-78.9047109","42.9371885"],["-78.905552","42.9388485"],["-78.9076286","42.9430095"],["-78.9081016","42.9440863"],["-78.9083434","42.9447043"],["-78.9085241","42.9451921"],["-78.9085973","42.9455153"],["-78.9086646","42.9458516"],["-78.9087287","42.9462945"],["-78.9087839","42.9468363"],["-78.9090611","42.9501486"],["-78.9091346","42.950817"],["-78.9091874","42.9511686"],["-78.9092638","42.9515765"],["-78.9093762","42.9520634"],["-78.9096711","42.9529483"],["-78.9098434","42.953385"],["-78.9101168","42.9539638"],["-78.9106357","42.9548294"],["-78.9112277","42.9555347"],["-78.9117085","42.9559571"],["-78.9122502","42.9563932"],["-78.913079","42.9569663"],["-78.9149912","42.9582218"],["-78.9170182","42.9595856"],["-78.9184634","42.9606504"],["-78.9195505","42.9615785"],["-78.9199584","42.9619798"],["-78.920227","42.9622659"],["-78.9204666","42.9625622"],["-78.9207005","42.9629319"],["-78.9208266","42.9631235"],["-78.920915","42.9633001"],["-78.9210089","42.9635279"],["-78.9210942","42.9638718"],["-78.9211581","42.9642008"],["-78.9211753","42.9645186"],["-78.9211678","42.9648373"],["-78.9211164","42.9651096"],["-78.9210544","42.9653755"],["-78.9209666","42.9656187"],["-78.9208607","42.9658661"],["-78.9207471","42.9660887"],["-78.9205591","42.966382"],["-78.9203743","42.9666259"],["-78.9201031","42.9669226"],["-78.9198918","42.9671212"],["-78.919603","42.9673511"],["-78.9187393","42.9679232"],["-78.9138121","42.9710234"],["-78.9132845","42.9714124"],["-78.9130253","42.9716428"],["-78.9127168","42.9719549"],["-78.9124911","42.9722217"],["-78.9122047","42.9726372"],["-78.9118754","42.9732549"],["-78.9116374","42.9737709"],["-78.9113725","42.974448"],["-78.9111111","42.9752539"],["-78.9100464","42.9786689"],["-78.9099598","42.9790008"],["-78.9099152","42.9792614"],["-78.9098818","42.9795204"],["-78.9098683","42.9798365"],["-78.909888","42.9802438"],["-78.9099343","42.9805712"],["-78.9100012","42.9808693"],["-78.9101862","42.9813556"],["-78.9103904","42.9818367"],["-78.910598","42.9822009"],["-78.9110118","42.9827608"],["-78.9140252","42.9863339"],["-78.9149063","42.9871978"],["-78.9154846","42.9876777"],["-78.9162942","42.9882116"],["-78.9175639","42.9889649"],["-78.923043","42.9914956"],["-78.9242396","42.9920322"],["-78.926992","42.9931504"],["-78.928158","42.9937088"],["-78.9285425","42.993926"],["-78.929752","42.9946325"],["-78.9414355","43.0014076"],["-78.944","43.0029022"],["-78.9458856","43.0039038"],["-78.9483318","43.0051581"],["-78.9485499","43.0052649"],["-78.949551","43.0057157"],["-78.9649621","43.0121271"],["-78.966056","43.0125906"],["-78.9665132","43.0128028"],["-78.9675301","43.0133627"],["-78.9678497","43.0135563"],["-78.9681354","43.0137523"],["-78.9684549","43.0139961"],["-78.9691075","43.0145176"],["-78.9694014","43.0147698"],["-78.9699606","43.015351"],["-78.9703013","43.0157464"],["-78.970703","43.0162547"],["-78.987495","43.0413419"],["-78.9887233","43.0432009"],["-78.989128","43.043885"],["-78.9893025","43.044268"],["-78.9897307","43.0453184"],["-78.9898366","43.0456189"],["-78.9899147","43.0459414"],["-78.9900221","43.0463902"],["-78.9901307","43.0469075"],["-78.9902141","43.0473994"],["-78.9902629","43.047932"],["-78.9902985","43.0484033"],["-78.9903482","43.0540753"],["-78.9903305","43.0556433"],["-78.9903364","43.0598027"],["-78.9904352","43.0612284"],["-78.9905514","43.0625205"],["-78.9905947","43.0633466"],["-78.990671","43.0865276"],["-78.9906075","43.0872175"],["-78.9905775","43.0874815"],["-78.990556","43.0875904"],["-78.990497","43.0878429"],["-78.9904605","43.0879772"],["-78.9904071","43.0881378"],["-78.9903475","43.0882875"],["-78.9902667","43.08846"],["-78.9900786","43.0888459"],["-78.9899877","43.0890351"],["-78.9899198","43.0891925"],["-78.9898003","43.089521"],["-78.9898016","43.0896318"],["-78.9909616","43.0897691"],["-78.9916462","43.0898055"],["-78.9922078","43.089836"],["-78.9956697","43.0902305"],["-78.9966128","43.0903105"],["-78.9970764","43.0903634"],["-78.9998569","43.0907893"],["-79.0080562","43.0931367"],["-79.0107094","43.093861"],["-79.0111775","43.094009"],["-79.0116928","43.0940741"],["-79.0121479","43.094109"],["-79.0126223","43.0941238"],["-79.0132635","43.0941036"],["-79.0140825","43.0940294"],["-79.0144299","43.0940173"],["-79.0145799","43.0940203"],["-79.0147243","43.0940421"],["-79.0148839","43.0940718"],["-79.0150357","43.0941171"],["-79.0151531","43.0941662"],["-79.0153393","43.0942693"],["-79.0155662","43.0944235"],["-79.0157606","43.0945045"],["-79.0161322","43.0947316"],["-79.0164134","43.0948916"],["-79.0167243","43.0950119"],["-79.017116","43.0951206"],["-79.0175288","43.0951712"],["-79.0180325","43.0951673"],["-79.0189868","43.0951664"],["-79.0214962","43.0951489"],["-79.0220019","43.0951499"],["-79.0234564","43.095147"],["-79.0236473","43.0951465"],["-79.0247456","43.0951372"],["-79.024868","43.0951369"],["-79.0321513","43.0951102"],["-79.0322007","43.09511"],["-79.032436","43.095109"],["-79.0325867","43.0951087"],["-79.0343903","43.0951026"],["-79.0347646","43.0951095"],["-79.0350095","43.0951074"],["-79.0353308","43.0951089"],["-79.0365049","43.0950986"],["-79.0376662","43.0951335"],["-79.0376981","43.0961335"]]}};const coordinates_1_0=geojson_1_0.geometry.coordinates;for(const coord of coordinates_1_0){window.bounds[1].extend(coord);contentMap_1.fitBounds(window.bounds[1],{padding:{top:60,bottom:60,left:60,right:60}});} contentMap_1.on('load',()=>{contentMap_1.addLayer({id:'route1_0',type:'line',source:{type:'geojson',data:geojson_1_0},layout:{'line-join':'round','line-cap':'round'},paint:{'line-color':'#0b7172','line-width':5,'line-opacity':0.80}});});contentMap_1.fitBounds(window.bounds[1],{padding:{top:60,bottom:60,left:60,right:60}});const geojson_1_1={type:'Feature',properties:{},geometry:{type:'LineString',coordinates:[["-74.0089077","40.7138322"],["-74.0111477","40.7148462"],["-74.0112765","40.714896"],["-74.0113421","40.7149139"],["-74.0114147","40.7149318"],["-74.0117254","40.714983"],["-74.0132049","40.7152273"],["-74.0129123","40.7165081"],["-74.0129042","40.7165434"],["-74.0128289","40.7168457"],["-74.0127561","40.717143"],["-74.012053","40.7203105"],["-74.0120488","40.7203296"],["-74.0116466","40.7222928"],["-74.0116352","40.722346"],["-74.0113722","40.7236114"],["-74.0112426","40.7242345"],["-74.0109437","40.7257553"],["-74.0108038","40.7266449"],["-74.0099737","40.7352768"],["-74.0099682","40.7353374"],["-74.0098603","40.7367298"],["-74.0098144","40.7373356"],["-74.0098026","40.7375574"],["-74.0098051","40.7376599"],["-74.0098902","40.7385083"],["-74.0099036","40.7387932"],["-74.0099029","40.7389923"],["-74.0098492","40.7393003"],["-74.0098064","40.7394217"],["-74.0097449","40.7395673"],["-74.0095906","40.7398502"],["-74.0092375","40.7404699"],["-74.0091177","40.7407449"],["-74.0090315","40.7410092"],["-74.0087126","40.7422109"],["-74.00866","40.7424852"],["-74.0082588","40.7446737"],["-74.0082399","40.7447749"],["-74.008192","40.7450283"],["-74.0081405","40.7453006"],["-74.0079949","40.7460811"],["-74.0078874","40.7466591"],["-74.0078203","40.7470205"],["-74.0076682","40.7478756"],["-74.0076418","40.7481379"],["-74.0076306","40.7482828"],["-74.0076319","40.7483757"],["-74.0076415","40.7484717"],["-74.0076572","40.748584"],["-74.0076793","40.7486837"],["-74.0077288","40.7488449"],["-74.0078236","40.7490533"],["-74.0080674","40.7494975"],["-74.0081586","40.749671"],["-74.0082024","40.7497863"],["-74.0082446","40.7499206"],["-74.0082698","40.7500379"],["-74.008281","40.7501315"],["-74.0082758","40.7502515"],["-74.0082668","40.750389"],["-74.0082522","40.7505131"],["-74.0082352","40.750612"],["-74.0082066","40.7507096"],["-74.008137","40.7509036"],["-74.0075739","40.752367"],["-74.0071151","40.7535863"],["-74.0069919","40.7538942"],["-74.0068969","40.7540798"],["-74.0068284","40.7541883"],["-74.0067199","40.7543432"],["-74.0051356","40.756523"],["-74.002728","40.7598175"],["-74.0024487","40.7602007"],["-74.0015329","40.7614622"],["-74.0014358","40.7615896"],["-74.0013236","40.7617123"],["-74.0012378","40.761795"],["-74.0011438","40.7618799"],["-74.0010489","40.7619608"],["-74.000915","40.7620735"],["-74.0004961","40.7623866"],["-73.9999317","40.7628035"],["-73.9997574","40.7629326"],["-73.9995873","40.763057"],["-73.9993048","40.7632923"],["-73.9991338","40.7634502"],["-73.9989602","40.7636273"],["-73.9988098","40.7638004"],["-73.9987216","40.7639226"],["-73.9986637","40.7640024"],["-73.9968682","40.7664682"],["-73.9967205","40.7666702"],["-73.9965904","40.7668514"],["-73.9961444","40.7674683"],["-73.9948979","40.769178"],["-73.9948438","40.769258"],["-73.9947777","40.7693538"],["-73.9947028","40.7694899"],["-73.9946307","40.7696532"],["-73.9945779","40.7697893"],["-73.9945316","40.7699199"],["-73.9945103","40.770009"],["-73.9944882","40.7701244"],["-73.9943863","40.7708852"],["-73.9943639","40.7710291"],["-73.9943078","40.771251"],["-73.9942487","40.7714303"],["-73.9942047","40.7715301"],["-73.9941445","40.7716538"],["-73.9940888","40.7717558"],["-73.9940103","40.7718777"],["-73.9937261","40.7722773"],["-73.9930553","40.7732206"],["-73.9902685","40.7771779"],["-73.9880858","40.7801651"],["-73.9879335","40.7803513"],["-73.9877609","40.7805539"],["-73.9873873","40.7809525"],["-73.9869113","40.7814364"],["-73.9867473","40.7816205"],["-73.9866547","40.7817287"],["-73.9865874","40.7818154"],["-73.9843696","40.7848918"],["-73.9840214","40.7853967"],["-73.9836986","40.7858633"],["-73.9835758","40.7860613"],["-73.9834796","40.7862338"],["-73.9833938","40.7864022"],["-73.983314","40.7865682"],["-73.9830864","40.78711"],["-73.9828025","40.7878775"],["-73.9827442","40.7880228"],["-73.9826699","40.7882141"],["-73.9825912","40.7884143"],["-73.982518","40.7885866"],["-73.9821086","40.7894613"],["-73.9817374","40.7901502"],["-73.9814253","40.7906742"],["-73.9811098","40.7911615"],["-73.980789","40.7916266"],["-73.9806177","40.7918637"],["-73.9804535","40.7920886"],["-73.9803106","40.7922798"],["-73.9799359","40.7927482"],["-73.9795643","40.7931807"],["-73.9791214","40.793653"],["-73.978817","40.7939484"],["-73.9781833","40.7945101"],["-73.9771996","40.7953032"],["-73.9769916","40.7954663"],["-73.9767585","40.7956651"],["-73.9765501","40.7958537"],["-73.97639","40.7960131"],["-73.9762254","40.7961866"],["-73.9760969","40.7963461"],["-73.9760151","40.7964586"],["-73.9759492","40.7965579"],["-73.9758897","40.7966556"],["-73.9758293","40.7967659"],["-73.9757805","40.7968653"],["-73.9757042","40.797022"],["-73.9756215","40.7971966"],["-73.9754936","40.7975027"],["-73.9751935","40.7983896"],["-73.9748202","40.7994697"],["-73.9747419","40.7996617"],["-73.9746594","40.7998519"],["-73.9745616","40.8000615"],["-73.9744612","40.800257"],["-73.9741224","40.8008483"],["-73.9739278","40.8011557"],["-73.9735633","40.8017213"],["-73.9731273","40.802354"],["-73.9730281","40.8024946"],["-73.9679005","40.8094931"],["-73.965296","40.8131259"],["-73.9650611","40.8134409"],["-73.9648523","40.8137548"],["-73.9646366","40.8141077"],["-73.9644537","40.814433"],["-73.9641714","40.8149638"],["-73.9640886","40.8151146"],["-73.9639941","40.8152749"],["-73.9638782","40.8154483"],["-73.9637666","40.8156049"],["-73.9635312","40.8159115"],["-73.963386","40.8160898"],["-73.9631332","40.8163856"],["-73.962846","40.8167004"],["-73.9612181","40.8182739"],["-73.9608723","40.8186238"],["-73.956289","40.8242475"],["-73.9559816","40.8246289"],["-73.9556648","40.8249938"],["-73.9522419","40.8286894"],["-73.9520904","40.828866"],["-73.951932","40.8290669"],["-73.9517929","40.829254"],["-73.9516497","40.8294542"],["-73.9515172","40.8296487"],["-73.9513921","40.8298416"],["-73.9512625","40.8300494"],["-73.9511506","40.8302464"],["-73.9510454","40.8304458"],["-73.9509493","40.8306443"],["-73.9508496","40.8308622"],["-73.9507418","40.8311202"],["-73.950526","40.8317089"],["-73.9503515","40.8322785"],["-73.9495431","40.8350137"],["-73.9491022","40.8365024"],["-73.9490666","40.8366018"],["-73.9490293","40.8366943"],["-73.9489794","40.8367988"],["-73.948927","40.8368999"],["-73.9488704","40.8369991"],["-73.9488086","40.8370956"],["-73.9487484","40.8371826"],["-73.948683","40.8372706"],["-73.9486051","40.8373666"],["-73.9485323","40.8374492"],["-73.9480034","40.838002"],["-73.9479198","40.8380891"],["-73.9474685","40.8385669"],["-73.9468219","40.8393058"],["-73.9466689","40.8394967"],["-73.9465319","40.8396778"],["-73.9463955","40.8398675"],["-73.9462656","40.8400558"],["-73.9461347","40.840261"],["-73.9460229","40.8404505"],["-73.9459004","40.8406698"],["-73.9458021","40.8408575"],["-73.9457061","40.8410527"],["-73.9455972","40.8412987"],["-73.9454537","40.8416266"],["-73.945066","40.8424108"],["-73.9445454","40.8433894"],["-73.9445116","40.8434518"],["-73.9444798","40.8435022"],["-73.9444421","40.843557"],["-73.9443936","40.843621"],["-73.9443437","40.8436827"],["-73.9442925","40.8437404"],["-73.9442453","40.8437878"],["-73.9441455","40.8438779"],["-73.9439512","40.8440442"],["-73.9438229","40.8441537"],["-73.9437732","40.8441996"],["-73.943731","40.8442428"],["-73.9436905","40.8442884"],["-73.9436543","40.8443325"],["-73.9436223","40.8443772"],["-73.943593","40.8444227"],["-73.9435642","40.8444753"],["-73.9435282","40.8445457"],["-73.9434324","40.8447457"],["-73.9433371","40.8449558"],["-73.9432798","40.845074"],["-73.9432236","40.8452723"],["-73.9431175","40.845747"],["-73.943108","40.8458684"],["-73.943112","40.8459827"],["-73.9430975","40.8460887"],["-73.9430851","40.8461993"],["-73.9430781","40.8463068"],["-73.9430747","40.8464265"],["-73.943075","40.8465274"],["-73.9430789","40.8466453"],["-73.9431223","40.8468933"],["-73.9431332","40.847007"],["-73.9431342","40.8470988"],["-73.943128","40.8471978"],["-73.9431109","40.8473165"],["-73.9430904","40.8474247"],["-73.9425997","40.8493737"],["-73.9425604","40.8495189"],["-73.9425173","40.8496476"],["-73.9424657","40.8497944"],["-73.9424194","40.8499191"],["-73.9423903","40.8499831"],["-73.9423604","40.8500382"],["-73.9423274","40.8500956"],["-73.9422965","40.8501406"],["-73.9422589","40.8501871"],["-73.9422173","40.8502348"],["-73.9421763","40.850278"],["-73.9421321","40.8503199"],["-73.9420815","40.8503639"],["-73.9420259","40.8504078"],["-73.9419777","40.8504416"],["-73.9419253","40.8504741"],["-73.9418642","40.8505057"],["-73.9417998","40.8505324"],["-73.9417313","40.8505525"],["-73.94166","40.8505654"],["-73.9415951","40.8505694"],["-73.9415292","40.8505695"],["-73.9414623","40.8505601"],["-73.9413962","40.8505475"],["-73.941336","40.8505288"],["-73.941277","40.8505033"],["-73.9412198","40.8504686"],["-73.9411696","40.8504322"],["-73.9411253","40.8503877"],["-73.9410871","40.8503342"],["-73.9410576","40.8502755"],["-73.9410394","40.8502177"],["-73.9410327","40.8501603"],["-73.9410397","40.8500991"],["-73.9410608","40.8500396"],["-73.9410875","40.8499842"],["-73.9411224","40.8499344"],["-73.9411671","40.8498906"],["-73.9412217","40.8498469"],["-73.9412797","40.8498157"],["-73.9413461","40.8497866"],["-73.9414156","40.849762"],["-73.9415056","40.8497397"],["-73.9415975","40.8497259"],["-73.9416885","40.8497194"],["-73.9417757","40.8497217"],["-73.9419268","40.849734"],["-73.9423133","40.8497832"],["-73.9431829","40.8499407"],["-73.9436686","40.8500164"],["-73.944806","40.8501891"],["-73.9587679","40.8529197"],["-73.960938","40.8533429"],["-73.9614394","40.8534465"],["-73.9620559","40.8536526"],["-73.962259","40.853726"],["-73.9623289","40.8537573"],["-73.9624603","40.8538225"],["-73.9625154","40.8538582"],["-73.9625653","40.8538932"],["-73.9626083","40.8539297"],["-73.9626536","40.8539786"],["-73.9626864","40.8540186"],["-73.9627247","40.854071"],["-73.9627871","40.8541777"],["-73.962812","40.8542329"],["-73.9628316","40.8542951"],["-73.9628403","40.8543522"],["-73.9628435","40.8544086"],["-73.9628366","40.85453"],["-73.9628302","40.8545902"],["-73.9628033","40.8546788"],["-73.9627113","40.8548833"],["-73.9626138","40.8550561"],["-73.9625316","40.8551893"],["-73.9624423","40.85532"],["-73.9623505","40.855436"],["-73.9622477","40.8555568"],["-73.9621619","40.8556648"],["-73.9620734","40.8557779"],["-73.9619759","40.8559005"],["-73.9615008","40.8565759"],["-73.961437","40.8566812"],["-73.9613834","40.8567846"],["-73.9613391","40.8568955"],["-73.9613049","40.8570007"],["-73.9612729","40.8571091"],["-73.9612416","40.8572161"],["-73.9611715","40.8574328"],["-73.9610868","40.857663"],["-73.9609928","40.8578889"],["-73.960942","40.8579953"],["-73.9608851","40.8581062"],["-73.9608276","40.858211"],["-73.9606999","40.8584228"],["-73.9606312","40.8585292"],["-73.960553","40.8586412"],["-73.9604834","40.8587359"],["-73.9604034","40.8588402"],["-73.9602362","40.8590387"],["-73.9600567","40.8592328"],["-73.9594812","40.8597947"],["-73.9592297","40.8600407"],["-73.958573","40.8606989"],["-73.957949","40.8613199"],["-73.9567396","40.8625004"],["-73.9565651","40.8626721"],["-73.9563836","40.862858"],["-73.9562031","40.8630523"],["-73.956024","40.8632536"],["-73.9558582","40.8634548"],["-73.9556913","40.8636715"],["-73.9555406","40.8638821"],["-73.9554116","40.864073"],["-73.9552799","40.8642843"],["-73.9551537","40.8645005"],["-73.9550304","40.8647288"],["-73.9549196","40.8649464"],["-73.9548102","40.8651824"],["-73.954721","40.8653912"],["-73.954467","40.8660628"],["-73.9543941","40.8662928"],["-73.9543261","40.8665411"],["-73.9542689","40.8667755"],["-73.9542167","40.8670175"],["-73.9541733","40.8672446"],["-73.9539161","40.8691403"],["-73.9538095","40.8695021"],["-73.953675","40.8698497"],["-73.9534895","40.8702414"],["-73.9532412","40.8706411"],["-73.9529701","40.8710309"],["-73.9526472","40.8714643"],["-73.9522833","40.8719519"],["-73.9519432","40.8724328"],["-73.951336","40.8733995"],["-73.9509525","40.8741824"],["-73.9506782","40.8748635"],["-73.9503972","40.8757612"],["-73.9501773","40.8765032"],["-73.9499926","40.87711"],["-73.9498346","40.8775296"],["-73.9496363","40.877992"],["-73.9493516","40.878579"],["-73.9480074","40.8810091"],["-73.9474837","40.8818776"],["-73.9470981","40.8824534"],["-73.9466849","40.8830406"],["-73.9462412","40.8835805"],["-73.9458102","40.8840993"],["-73.9454502","40.8845429"],["-73.9452297","40.8849314"],["-73.9450228","40.8853436"],["-73.9448295","40.8857777"],["-73.9446526","40.8863579"],["-73.9441398","40.8882268"],["-73.9439781","40.8887371"],["-73.9437949","40.8892025"],["-73.9436064","40.8895967"],["-73.9434319","40.8899458"],["-73.943315","40.8901633"],["-73.9430871","40.8905549"],["-73.9429497","40.8907692"],["-73.9426771","40.8911776"],["-73.942548","40.8913604"],["-73.9419441","40.8922364"],["-73.9412113","40.8934068"],["-73.94061","40.8945525"],["-73.9404032","40.8949431"],["-73.9400168","40.8956728"],["-73.9397389","40.8961615"],["-73.9394241","40.8966561"],["-73.938212","40.8984713"],["-73.9378681","40.8990581"],["-73.9375468","40.8996804"],["-73.9371489","40.9005165"],["-73.936332","40.9025964"],["-73.9361119","40.9030891"],["-73.935862","40.9036096"],["-73.9355501","40.904168"],["-73.9347667","40.9054734"],["-73.934502","40.9059577"],["-73.934271","40.9064444"],["-73.9340542","40.9069782"],["-73.9338971","40.9074606"],["-73.9337569","40.9079648"],["-73.9336548","40.908534"],["-73.9335996","40.9090176"],["-73.9335667","40.9094365"],["-73.9335844","40.9098939"],["-73.9336362","40.9103665"],["-73.9337237","40.9108215"],["-73.9338678","40.9113599"],["-73.9340364","40.911854"],["-73.9349248","40.9141645"],["-73.935097","40.914654"],["-73.9352333","40.9150972"],["-73.9353881","40.9157418"],["-73.9354624","40.9161775"],["-73.9355163","40.9165706"],["-73.9355504","40.9170085"],["-73.9355417","40.9174441"],["-73.9354814","40.9179509"],["-73.9353874","40.9183913"],["-73.9352446","40.9188883"],["-73.9350616","40.9193465"],["-73.9348177","40.9197952"],["-73.9345667","40.9202163"],["-73.934251","40.9206409"],["-73.933938","40.9210217"],["-73.9335528","40.9214204"],["-73.9309469","40.9236243"],["-73.9304283","40.924083"],["-73.9300513","40.9244709"],["-73.9296723","40.9249069"],["-73.929382","40.9253057"],["-73.9291356","40.9256846"],["-73.9288754","40.9261222"],["-73.9286322","40.9266201"],["-73.9284152","40.9271801"],["-73.92779","40.9292563"],["-73.9276197","40.9299026"],["-73.927417","40.9307559"],["-73.9272204","40.9316569"],["-73.9264723","40.9353785"],["-73.9262981","40.936065"],["-73.9260803","40.9367834"],["-73.9258556","40.9374462"],["-73.9256225","40.9380176"],["-73.9253779","40.938465"],["-73.9250707","40.9389206"],["-73.9248321","40.9392446"],["-73.9234791","40.9407746"],["-73.9230413","40.9413"],["-73.9227237","40.9417658"],["-73.9224566","40.9422518"],["-73.9222543","40.9427474"],["-73.9220852","40.9432971"],["-73.9219981","40.9438018"],["-73.9219631","40.9442481"],["-73.9219888","40.944773"],["-73.9221706","40.9463145"],["-73.9222208","40.9469184"],["-73.9222231","40.9473921"],["-73.9222004","40.947746"],["-73.922092","40.9482711"],["-73.9217883","40.9493553"],["-73.9216778","40.9498596"],["-73.9216186","40.9503363"],["-73.9215762","40.9509969"],["-73.9215338","40.9516931"],["-73.9214524","40.9523962"],["-73.9213576","40.9530458"],["-73.9211784","40.9537444"],["-73.9209886","40.9543468"],["-73.9207445","40.9549616"],["-73.9205254","40.9554689"],["-73.9202532","40.9560241"],["-73.9192703","40.9578382"],["-73.91899","40.9583835"],["-73.9187794","40.9588842"],["-73.9186098","40.9593516"],["-73.9184706","40.959812"],["-73.9178558","40.9624163"],["-73.9177219","40.9628495"],["-73.9175661","40.9632648"],["-73.9173805","40.9636869"],["-73.9171347","40.9641368"],["-73.9167982","40.9646676"],["-73.9164308","40.9651332"],["-73.9159966","40.9656479"],["-73.9143293","40.9676067"],["-73.9139899","40.9680905"],["-73.913691","40.9685499"],["-73.9134164","40.9690278"],["-73.9131872","40.9694889"],["-73.9129482","40.9700847"],["-73.9128138","40.9705104"],["-73.9127164","40.9709559"],["-73.9126383","40.9714646"],["-73.9125719","40.9719967"],["-73.912531","40.9725572"],["-73.9125304","40.974016"],["-73.9128322","40.9796685"],["-73.9128389","40.9798873"],["-73.9128413","40.9800874"],["-73.9128364","40.9804474"],["-73.9128061","40.9810866"],["-73.9127872","40.9813306"],["-73.9126855","40.9822456"],["-73.9126488","40.9824922"],["-73.9126093","40.9827167"],["-73.9125608","40.9829511"],["-73.9119291","40.9853611"],["-73.9118786","40.9855868"],["-73.9118536","40.9857134"],["-73.9118344","40.9858286"],["-73.9118189","40.9859447"],["-73.9118066","40.9860649"],["-73.9117977","40.9861679"],["-73.9117773","40.9865297"],["-73.9117769","40.9867629"],["-73.9117846","40.9870037"],["-73.9117955","40.987178"],["-73.9118089","40.9873449"],["-73.9118352","40.9875916"],["-73.911869","40.9878313"],["-73.9119053","40.9880544"],["-73.9119495","40.9882924"],["-73.9120032","40.9885372"],["-73.9120567","40.9887538"],["-73.9121182","40.9889808"],["-73.912267","40.9894467"],["-73.9132691","40.9921641"],["-73.9133355","40.9923618"],["-73.9133931","40.9925546"],["-73.9134482","40.992765"],["-73.9134919","40.9929501"],["-73.9135602","40.9933066"],["-73.9135932","40.9935662"],["-73.9138617","40.9965757"],["-73.913912","40.9969767"],["-73.9139262","40.9970653"],["-73.9139834","40.9973681"],["-73.9140301","40.9975893"],["-73.9140558","40.997702"],["-73.9140899","40.9978404"],["-73.9141186","40.9979407"],["-73.9141457","40.9980243"],["-73.9142141","40.9982239"],["-73.9142911","40.9984264"],["-73.9143661","40.9986102"],["-73.9145855","40.9990905"],["-73.9146822","40.9992748"],["-73.9147953","40.9994715"],["-73.9149567","40.9997301"],["-73.9151475","41.0000099"],["-73.9152737","41.0001812"],["-73.9154044","41.0003501"],["-73.9156292","41.0006224"],["-73.9192093","41.0042375"],["-73.9195102","41.0045794"],["-73.9198458","41.0049871"],["-73.9199778","41.0051625"],["-73.9214704","41.0074382"],["-73.9214998","41.0074886"],["-73.9215485","41.007574"],["-73.9236833","41.0119779"],["-73.9237619","41.0121428"],["-73.9239085","41.0124398"],["-73.9249403","41.0142057"],["-73.9254813","41.0149785"],["-73.9257671","41.0153452"],["-73.9260899","41.0157286"],["-73.9265825","41.0162662"],["-73.9267554","41.0164401"],["-73.9273145","41.0169675"],["-73.9276886","41.0172916"],["-73.9283135","41.0177891"],["-73.9323291","41.0204836"],["-73.9331369","41.0210749"],["-73.9336867","41.02152"],["-73.9337934","41.0216102"],["-73.9338219","41.0216356"],["-73.9342764","41.0220554"],["-73.9346265","41.0224024"],["-73.9348127","41.0225974"],["-73.935129","41.0229416"],["-73.9354133","41.0232772"],["-73.9358933","41.0238975"],["-73.9360256","41.0240823"],["-73.9361567","41.0242777"],["-73.9365256","41.0248688"],["-73.9397256","41.0304922"],["-73.9399091","41.0307825"],["-73.9400027","41.0309222"],["-73.9402752","41.0313074"],["-73.9404205","41.0315011"],["-73.940845","41.0320249"],["-73.9411367","41.0323556"],["-73.941327","41.0325597"],["-73.9415444","41.0327815"],["-73.941891","41.0331211"],["-73.9419092","41.0331377"],["-73.9420943","41.0333055"],["-73.9424606","41.0336258"],["-73.9430618","41.0341089"],["-73.943696","41.0345665"],["-73.9445813","41.0351331"],["-73.9460455","41.0359516"],["-73.9462812","41.0360795"],["-73.9506148","41.0384331"],["-73.9507542","41.038509"],["-73.9508049","41.0385368"],["-73.9526251","41.0395275"],["-73.9532946","41.0399293"],["-73.9534923","41.0400584"],["-73.9541237","41.0405057"],["-73.9544903","41.0407869"],["-73.9547559","41.0410035"],["-73.9551222","41.0413238"],["-73.9554772","41.0416549"],["-73.9556424","41.0418174"],["-73.9558259","41.0420047"],["-73.9561668","41.0423723"],["-73.9563229","41.0425524"],["-73.9566227","41.0429151"],["-73.9569196","41.0433084"],["-73.9570392","41.0434778"],["-73.9571707","41.0436695"],["-73.9575523","41.0442703"],["-73.9576647","41.0444613"],["-73.9577902","41.0446876"],["-73.957901","41.0448983"],["-73.95809","41.0452785"],["-73.958197","41.0455111"],["-73.9582941","41.0457369"],["-73.9587465","41.046748"],["-73.9588432","41.0469591"],["-73.9592491","41.0477793"],["-73.959813","41.0487878"],["-73.960426","41.0497504"],["-73.9606992","41.0501443"],["-73.9612035","41.05082"],["-73.9613295","41.050981"],["-73.9736319","41.0611611"],["-73.9756511","41.062747"],["-73.9767036","41.0637596"],["-73.9770555","41.0641353"],["-73.977218","41.0643166"],["-73.9779836","41.0652451"],["-73.9784547","41.0658769"],["-73.9784932","41.0659315"],["-73.9787022","41.0662459"],["-73.9797206","41.0680728"],["-73.979816","41.0682777"],["-73.9800809","41.0688959"],["-73.9824974","41.0749212"],["-73.9838227","41.0771205"],["-73.9882306","41.0840108"],["-73.9900306","41.0888567"],["-73.9901605","41.0893218"],["-73.9903505","41.0901241"],["-73.9904258","41.0905026"],["-73.9904439","41.0905955"],["-73.9905485","41.0912116"],["-73.9906126","41.0916655"],["-73.9910489","41.0959256"],["-73.9911222","41.0966506"],["-73.9911329","41.0967528"],["-73.9911545","41.0969287"],["-73.9912137","41.0973545"],["-73.9912853","41.0977714"],["-73.9916907","41.0995122"],["-73.9917536","41.0997312"],["-73.9918219","41.0999465"],["-73.9918966","41.1001647"],["-73.9919785","41.1003739"],["-73.9924926","41.1015248"],["-73.9927682","41.1020139"],["-73.9928088","41.1020821"],["-73.9928445","41.1021396"],["-73.9928621","41.1021807"],["-73.9929619","41.1025587"],["-73.9929904","41.1026843"],["-73.9930006","41.1027482"],["-73.9930044","41.1028114"],["-73.9930026","41.1028707"],["-73.9929984","41.1029289"],["-73.9929914","41.1029848"],["-73.9929771","41.1030473"],["-73.9929596","41.1031044"],["-73.992936","41.1031631"],["-73.9929118","41.1032149"],["-73.9928852","41.1032653"],["-73.9928566","41.1033111"],["-73.9928219","41.1033618"],["-73.9927827","41.1034097"],["-73.9927384","41.1034567"],["-73.9926917","41.1035005"],["-73.992644","41.1035415"],["-73.9925895","41.1035821"],["-73.9925343","41.1036188"],["-73.9924757","41.1036541"],["-73.9924156","41.1036855"],["-73.9923538","41.1037138"],["-73.9922871","41.1037411"],["-73.9922202","41.1037636"],["-73.9921486","41.1037825"],["-73.9920801","41.1037978"],["-73.9920038","41.1038111"],["-73.9919345","41.1038213"],["-73.9918625","41.1038272"],["-73.9917914","41.1038292"],["-73.9917145","41.1038293"],["-73.9916434","41.1038243"],["-73.9915657","41.1038164"],["-73.9914948","41.1038054"],["-73.9914216","41.1037904"],["-73.9913523","41.1037726"],["-73.9912845","41.1037512"],["-73.9912164","41.103727"],["-73.991152","41.1036997"],["-73.9910877","41.1036691"],["-73.9910277","41.1036359"],["-73.9909713","41.1036001"],["-73.9909186","41.1035626"],["-73.9908696","41.1035219"],["-73.9908206","41.1034761"],["-73.9907802","41.1034312"],["-73.9907413","41.1033848"],["-73.9907062","41.1033352"],["-73.9906746","41.1032839"],["-73.9906479","41.1032323"],["-73.9906241","41.103179"],["-73.9906058","41.1031257"],["-73.9905907","41.1030704"],["-73.9905805","41.1030124"],["-73.9905766","41.1029581"],["-73.9905765","41.1029013"],["-73.9905805","41.1028464"],["-73.9905893","41.1027885"],["-73.9906034","41.1027324"],["-73.990623","41.1026759"],["-73.9906479","41.1026195"],["-73.990672","41.102572"],["-73.9906966","41.1025299"],["-73.9907248","41.1024891"],["-73.9907544","41.1024492"],["-73.9907892","41.1024105"],["-73.9908253","41.1023745"],["-73.9908614","41.1023401"],["-73.9909022","41.1023055"],["-73.9909438","41.1022734"],["-73.9909917","41.1022395"],["-73.9910339","41.1022118"],["-73.9911245","41.1021568"],["-73.9911681","41.1021319"],["-73.9912122","41.1021104"],["-73.9912989","41.1020727"],["-73.9913424","41.102056"],["-73.9913844","41.1020406"],["-73.9914759","41.10201"],["-73.9915212","41.1019968"],["-73.9916145","41.1019745"],["-73.991701","41.1019583"],["-73.9917441","41.1019514"],["-73.9918376","41.1019406"],["-73.9919013","41.1019348"],["-73.9919995","41.1019296"],["-73.9928696","41.1019138"],["-74.0195398","41.1040809"],["-74.0221762","41.1039467"],["-74.0227374","41.1038864"],["-74.039183","41.0980442"],["-74.0400345","41.0977524"],["-74.040342","41.097658"],["-74.0406549","41.0975699"],["-74.0410031","41.09748"],["-74.0413069","41.0974072"],["-74.0416914","41.0973227"],["-74.0427206","41.097134"],["-74.0430603","41.0970834"],["-74.0437991","41.0969943"],["-74.0448693","41.0969115"],["-74.0455683","41.0968875"],["-74.0462602","41.0968934"],["-74.0466316","41.0969044"],["-74.0473599","41.0969446"],["-74.0476569","41.0969676"],["-74.048316","41.0970365"],["-74.0490596","41.0971413"],["-74.0496477","41.0972451"],["-74.0772809","41.1043544"],["-74.0775967","41.1044691"],["-74.077938","41.1046026"],["-74.0783044","41.1047523"],["-74.078678","41.1049231"],["-74.0790453","41.1050997"],["-74.0793892","41.1052767"],["-74.0797534","41.105475"],["-74.0801056","41.1056829"],["-74.0804103","41.1058729"],["-74.0807309","41.1060864"],["-74.0810548","41.1063151"],["-74.0816526","41.1067718"],["-74.0819838","41.1070388"],["-74.0841841","41.1089023"],["-74.0844469","41.1091116"],["-74.0847169","41.109308"],["-74.0849834","41.1094883"],["-74.0852615","41.1096666"],["-74.0855469","41.1098345"],["-74.0858565","41.1100012"],["-74.086149","41.1101508"],["-74.0864615","41.1102998"],["-74.0867872","41.1104405"],["-74.0871009","41.1105678"],["-74.0873956","41.1106784"],["-74.0877377","41.1107956"],["-74.0880886","41.1109032"],["-74.0884179","41.110995"],["-74.0887545","41.1110806"],["-74.1346675","41.1213975"],["-74.1351092","41.1214722"],["-74.1355203","41.1215319"],["-74.1363523","41.1216264"],["-74.137241","41.1216972"],["-74.1376889","41.1217135"],["-74.1385446","41.1217253"],["-74.1393941","41.1216916"],["-74.1398513","41.1216637"],["-74.1402688","41.1216282"],["-74.1411375","41.1215296"],["-74.141583","41.1214629"],["-74.142443","41.1213044"],["-74.142834","41.1212208"],["-74.1432432","41.1211219"],["-74.1522147","41.1185051"],["-74.153071","41.1182901"],["-74.1534729","41.1181992"],["-74.1537894","41.1181363"],["-74.1541092","41.1180817"],["-74.1543584","41.1180436"],["-74.1546458","41.1180095"],["-74.1549462","41.1179827"],["-74.1552278","41.1179672"],["-74.1555196","41.1179584"],["-74.1558755","41.1179636"],["-74.1562556","41.1179818"],["-74.1564711","41.1179997"],["-74.1569114","41.1180492"],["-74.1570967","41.1180764"],["-74.1574623","41.1181405"],["-74.1576505","41.1181801"],["-74.1578444","41.1182256"],["-74.1580351","41.1182761"],["-74.1582378","41.1183336"],["-74.1584284","41.1183945"],["-74.1588232","41.1185353"],["-74.159165","41.1186737"],["-74.1593514","41.1187585"],["-74.1595678","41.1188624"],["-74.159725","41.1189441"],["-74.1599161","41.1190513"],["-74.1601078","41.1191641"],["-74.1603098","41.1192909"],["-74.1604977","41.1194132"],["-74.1610193","41.1197831"],["-74.1613015","41.1200088"],["-74.1620079","41.1206332"],["-74.1625564","41.1211665"],["-74.1628938","41.1215138"],["-74.1630737","41.1217087"],["-74.1633705","41.1220431"],["-74.1635344","41.1222343"],["-74.1641748","41.1230595"],["-74.1643803","41.1233473"],["-74.1647874","41.1239532"],["-74.1649512","41.1242108"],["-74.1653229","41.124828"],["-74.1654859","41.1251117"],["-74.1656606","41.1254402"],["-74.1659463","41.1260215"],["-74.1660922","41.1263451"],["-74.1672292","41.1292481"],["-74.167344","41.1295857"],["-74.1674392","41.1298958"],["-74.1675198","41.1301891"],["-74.1676138","41.130558"],["-74.167685","41.1308646"],["-74.167815","41.1315114"],["-74.1679179","41.1321575"],["-74.1679996","41.1328411"],["-74.1680563","41.1335111"],["-74.1681494","41.1353481"],["-74.1681665","41.1355564"],["-74.1681948","41.1357763"],["-74.1682291","41.135985"],["-74.1682752","41.1362266"],["-74.1683285","41.1364424"],["-74.168464","41.136888"],["-74.1685415","41.1371063"],["-74.1686192","41.1373031"],["-74.1687187","41.1375303"],["-74.1688202","41.1377387"],["-74.1689295","41.1379455"],["-74.1690581","41.1381715"],["-74.1691818","41.1383736"],["-74.1693168","41.1385778"],["-74.1694566","41.1387697"],["-74.1696151","41.1389786"],["-74.1697549","41.1391469"],["-74.169909","41.139323"],["-74.1700627","41.139488"],["-74.1702299","41.1396567"],["-74.1704216","41.1398426"],["-74.1706135","41.1400205"],["-74.171003","41.1403482"],["-74.1714229","41.1406776"],["-74.1716372","41.1408305"],["-74.1718334","41.1409601"],["-74.1720654","41.1411061"],["-74.1723207","41.1412551"],["-74.1725427","41.1413779"],["-74.1728019","41.1415105"],["-74.1732889","41.1417409"],["-74.1735293","41.1418459"],["-74.1737989","41.1419548"],["-74.1743311","41.1421489"],["-74.174603","41.1422375"],["-74.1748489","41.1423099"],["-74.1751363","41.1423878"],["-74.1754123","41.142457"],["-74.1757232","41.1425269"],["-74.176018","41.1425861"],["-74.1765898","41.1426799"],["-74.1808889","41.1432641"],["-74.1810945","41.1433045"],["-74.1813721","41.1433651"],["-74.1817461","41.1434605"],["-74.1819791","41.1435256"],["-74.182237","41.1436033"],["-74.1824979","41.1436893"],["-74.182759","41.1437812"],["-74.1829939","41.1438696"],["-74.1832631","41.1439775"],["-74.1835043","41.1440818"],["-74.1837447","41.1441912"],["-74.1839915","41.1443128"],["-74.1844505","41.1445577"],["-74.1846761","41.1446888"],["-74.1849043","41.1448295"],["-74.1851196","41.1449681"],["-74.1853176","41.1451059"],["-74.1855291","41.1452618"],["-74.1857294","41.1454175"],["-74.185918","41.1455739"],["-74.1861286","41.1457567"],["-74.1863042","41.1459184"],["-74.1864901","41.1460984"],["-74.1866651","41.1462784"],["-74.1868162","41.1464449"],["-74.1869709","41.1466253"],["-74.1872591","41.1469954"],["-74.1874049","41.1471983"],["-74.187524","41.1473781"],["-74.1877709","41.1477868"],["-74.1878823","41.1479898"],["-74.1879839","41.1481865"],["-74.188078","41.1483792"],["-74.1881708","41.1485834"],["-74.1882576","41.1487889"],["-74.1884118","41.1491993"],["-74.1885487","41.1496074"],["-74.1886736","41.1500405"],["-74.1887748","41.1504535"],["-74.1888188","41.1506679"],["-74.1888599","41.1508921"],["-74.1889217","41.1513204"],["-74.1889425","41.1515209"],["-74.1889616","41.151764"],["-74.1889734","41.1520124"],["-74.1889748","41.1523646"],["-74.1889669","41.152618"],["-74.1889383","41.1530409"],["-74.1888812","41.1534869"],["-74.18885","41.1536809"],["-74.1888093","41.1538926"],["-74.1887601","41.1541177"],["-74.1887093","41.1543321"],["-74.1885839","41.1547593"],["-74.1885183","41.1549578"],["-74.1883601","41.1553859"],["-74.1880876","41.1560013"],["-74.1878828","41.1563952"],["-74.1876533","41.1567906"],["-74.1875402","41.1569728"],["-74.1874142","41.1571631"],["-74.1870005","41.1577344"],["-74.1854457","41.15971"],["-74.1852476","41.1599913"],["-74.1850578","41.160288"],["-74.1849017","41.1605679"],["-74.1847205","41.1609368"],["-74.1846105","41.1611896"],["-74.1845013","41.1614862"],["-74.1843878","41.1618177"],["-74.1842992","41.1621322"],["-74.1842324","41.1624225"],["-74.1841858","41.1626949"],["-74.1841486","41.1629786"],["-74.1841227","41.163246"],["-74.1841104","41.1634427"],["-74.1841097","41.1636183"],["-74.1841143","41.1637944"],["-74.1841353","41.1640431"],["-74.1841667","41.1642855"],["-74.1842137","41.1645756"],["-74.1842789","41.1648987"],["-74.1843593","41.1652116"],["-74.1844557","41.1655165"],["-74.1845646","41.1658115"],["-74.1858534","41.1688575"],["-74.1859374","41.1690786"],["-74.1860759","41.1694848"],["-74.1861331","41.1696949"],["-74.1861833","41.1699126"],["-74.1862243","41.1701224"],["-74.1862586","41.1703404"],["-74.1862851","41.1705677"],["-74.1863042","41.1707758"],["-74.1863171","41.1710119"],["-74.1863189","41.1712307"],["-74.1863108","41.1714333"],["-74.1862955","41.1716577"],["-74.18627","41.1718866"],["-74.1862401","41.1721044"],["-74.1862006","41.1723236"],["-74.1861564","41.1725173"],["-74.1860993","41.1727474"],["-74.186038","41.1729508"],["-74.1859639","41.1731785"],["-74.1858833","41.1733939"],["-74.1857982","41.1735987"],["-74.181733","41.1825175"],["-74.1815646","41.1829346"],["-74.1814796","41.1831699"],["-74.1814105","41.1833729"],["-74.1812829","41.1837884"],["-74.1812211","41.1840168"],["-74.1811673","41.1842321"],["-74.1811192","41.1844416"],["-74.1810803","41.1846421"],["-74.1810082","41.1850983"],["-74.1809832","41.1852932"],["-74.1809397","41.1857533"],["-74.1809191","41.1861721"],["-74.1809159","41.1866158"],["-74.1809361","41.1870526"],["-74.180952","41.1872759"],["-74.1810003","41.1876998"],["-74.1817262","41.1923913"],["-74.1818527","41.19362"],["-74.181904","41.1945573"],["-74.1819091","41.1949041"],["-74.1819068","41.1952302"],["-74.1818942","41.1955764"],["-74.1818745","41.1959128"],["-74.1818419","41.1962689"],["-74.1818042","41.1965986"],["-74.1817389","41.1970082"],["-74.1816671","41.1973826"],["-74.1813022","41.1989739"],["-74.1812472","41.1992378"],["-74.1812004","41.1994875"],["-74.1811564","41.199761"],["-74.1811208","41.2000394"],["-74.1810962","41.200308"],["-74.1810814","41.2005832"],["-74.1810772","41.2008666"],["-74.1810846","41.201142"],["-74.1810988","41.2014317"],["-74.1811146","41.2016761"],["-74.1811455","41.2019639"],["-74.181468","41.2038979"],["-74.1815081","41.204189"],["-74.1815372","41.2044546"],["-74.1815765","41.2049887"],["-74.1815847","41.2052534"],["-74.1815836","41.205541"],["-74.1815751","41.205819"],["-74.1813993","41.2081427"],["-74.1812615","41.2100721"],["-74.1812545","41.2106246"],["-74.1812608","41.2108776"],["-74.1812744","41.211165"],["-74.1813173","41.2117201"],["-74.1814155","41.2125427"],["-74.1815015","41.2130763"],["-74.1816672","41.2138663"],["-74.1817391","41.214172"],["-74.1819474","41.2149508"],["-74.1821102","41.2154701"],["-74.1822963","41.216007"],["-74.1823936","41.2162643"],["-74.1837427","41.2195743"],["-74.1838336","41.2198276"],["-74.1839249","41.2201045"],["-74.1840079","41.2203885"],["-74.1840745","41.2206444"],["-74.184133","41.2209144"],["-74.1841794","41.221188"],["-74.1842148","41.2214543"],["-74.1842419","41.2217368"],["-74.1842585","41.221996"],["-74.1842647","41.2222729"],["-74.1842613","41.2225503"],["-74.1842428","41.2228346"],["-74.1842196","41.2230826"],["-74.1841832","41.2233729"],["-74.1841359","41.2236379"],["-74.1840703","41.2239142"],["-74.1839983","41.2241762"],["-74.1839122","41.2244344"],["-74.1838125","41.2247038"],["-74.1837005","41.2249648"],["-74.1835755","41.2252212"],["-74.1834415","41.2254729"],["-74.1832661","41.2257658"],["-74.183103","41.2260143"],["-74.1829287","41.2262568"],["-74.1827459","41.2264939"],["-74.1825574","41.2267205"],["-74.1823435","41.2269512"],["-74.1821461","41.2271542"],["-74.1819148","41.2273776"],["-74.1816899","41.2275797"],["-74.1814494","41.2277857"],["-74.1812068","41.2279812"],["-74.178591","41.2299155"],["-74.1781223","41.2302782"],["-74.1778008","41.2305446"],["-74.1773765","41.2309185"],["-74.1765042","41.2317621"],["-74.17607","41.2322205"],["-74.1756728","41.2326709"],["-74.1750997","41.2333773"],["-74.1747327","41.2338719"],["-74.1744108","41.2343347"],["-74.1739427","41.2350736"],["-74.1735288","41.2358152"],["-74.1732539","41.2363564"],["-74.172804","41.237403"],["-74.1719151","41.2397766"],["-74.1709695","41.2422555"],["-74.1686576","41.2468612"],["-74.1682878","41.247467"],["-74.1679053","41.2480681"],["-74.1676951","41.2483866"],["-74.1675107","41.2486551"],["-74.1609078","41.256193"],["-74.1604316","41.2567453"],["-74.1601842","41.2570459"],["-74.1597397","41.2576073"],["-74.1589193","41.2587378"],["-74.158721","41.2590342"],["-74.1583402","41.2596454"],["-74.157843","41.2605302"],["-74.1576502","41.2609106"],["-74.1533274","41.2701832"],["-74.1530413","41.2707137"],["-74.152737","41.2712361"],["-74.1524156","41.2717373"],["-74.1522414","41.2719907"],["-74.1520682","41.2722321"],["-74.1513473","41.2731529"],["-74.1511961","41.2733351"],["-74.1430438","41.2825787"],["-74.1426613","41.2830515"],["-74.1423201","41.2835193"],["-74.1421523","41.2837631"],["-74.1419922","41.2840069"],["-74.1418305","41.284265"],["-74.1416853","41.2845119"],["-74.1415289","41.2847902"],["-74.1413944","41.2850453"],["-74.1412676","41.2852995"],["-74.1410299","41.2858159"],["-74.1409285","41.2860561"],["-74.140824","41.2863257"],["-74.1405328","41.2871524"],["-74.1403869","41.2876204"],["-74.1388578","41.2931021"],["-74.1387613","41.293399"],["-74.1386344","41.293756"],["-74.1383174","41.2945729"],["-74.138144","41.294986"],["-74.138015","41.2952712"],["-74.1378735","41.29557"],["-74.1377216","41.2958725"],["-74.1373924","41.2964853"],["-74.1368581","41.2973919"],["-74.1366603","41.2977007"],["-74.1362297","41.2983363"],["-74.1354918","41.2993078"],["-74.1341662","41.3009173"],["-74.133497","41.301708"],["-74.1301867","41.3051712"],["-74.129123","41.3061574"],["-74.1279706","41.3071249"],["-74.1273475","41.3076004"],["-74.1263544","41.3082876"],["-74.1212532","41.3114735"],["-74.1209285","41.3116667"],["-74.1202983","41.3120635"],["-74.1196925","41.3124674"],["-74.1193692","41.3126945"],["-74.1190274","41.3129458"],["-74.1184502","41.313406"],["-74.1181485","41.3136549"],["-74.1179388","41.3138007"],["-74.1165303","41.3152185"],["-74.1163003","41.3154747"],["-74.1157835","41.316083"],["-74.115386","41.316594"],["-74.1151703","41.3168935"],["-74.1149827","41.317165"],["-74.114779","41.3174723"],["-74.114265","41.318314"],["-74.1141194","41.3185764"],["-74.1139762","41.3188508"],["-74.1138304","41.3191498"],["-74.1136974","41.3194383"],["-74.1134258","41.320075"],["-74.113295","41.3204082"],["-74.1130745","41.3210232"],["-74.1129755","41.3213317"],["-74.1128807","41.3216606"],["-74.112716","41.3222929"],["-74.1126462","41.3226221"],["-74.1125907","41.3229081"],["-74.1125304","41.3232682"],["-74.1124831","41.3235868"],["-74.1124442","41.3239115"],["-74.1124116","41.3242541"],["-74.1123894","41.3245597"],["-74.1123721","41.324895"],["-74.1123639","41.325567"],["-74.1123725","41.3258605"],["-74.1123906","41.3262219"],["-74.1124142","41.3265363"],["-74.1124475","41.3268684"],["-74.1125338","41.3275119"],["-74.1125919","41.3278496"],["-74.112655","41.3281663"],["-74.1127245","41.3284788"],["-74.1128107","41.3288268"],["-74.1129925","41.329477"],["-74.1130936","41.3297896"],["-74.1132078","41.3301081"],["-74.1134499","41.3307321"],["-74.1135773","41.3310344"],["-74.1144967","41.3330761"],["-74.1159676","41.3363144"],["-74.1163887","41.3373205"],["-74.1165665","41.3378289"],["-74.1167421","41.338368"],["-74.1168959","41.3389667"],["-74.1170669","41.3398071"],["-74.1171743","41.3406663"],["-74.1172142","41.3411858"],["-74.1172221","41.3416696"],["-74.1172227","41.3420989"],["-74.1172016","41.3424071"],["-74.1171232","41.3432062"],["-74.1170827","41.3435226"],["-74.1169967","41.3440079"],["-74.1168957","41.3445066"],["-74.1167842","41.3449458"],["-74.1165365","41.3457248"],["-74.1163215","41.3463064"],["-74.1160934","41.346808"],["-74.1157965","41.3473669"],["-74.1153818","41.3481054"],["-74.1150827","41.3485418"],["-74.1146043","41.349162"],["-74.1141602","41.3496711"],["-74.1136126","41.3502401"],["-74.1122007","41.3516466"],["-74.1114571","41.3523745"],["-74.1098817","41.3539545"],["-74.109031","41.3548214"],["-74.1083923","41.355522"],["-74.1076373","41.3564222"],["-74.1070232","41.3572098"],["-74.106374","41.3581185"],["-74.1057454","41.3590843"],["-74.1051749","41.3600348"],["-74.1046134","41.3610275"],["-74.1041284","41.3619267"],["-74.1037429","41.3626713"],["-74.1028461","41.3645699"],["-74.1022523","41.3659575"],["-74.101882","41.3669125"],["-74.1016653","41.3676435"],["-74.1015471","41.3681632"],["-74.1014442","41.3688262"],["-74.1014052","41.3693861"],["-74.1013902","41.369949"],["-74.1014179","41.3704825"],["-74.1014975","41.3712011"],["-74.1016555","41.3719241"],["-74.1018139","41.3724934"],["-74.10208","41.3732755"],["-74.1025374","41.3745473"],["-74.1026664","41.3749072"],["-74.1028228","41.3753918"],["-74.1029479","41.3758067"],["-74.1030435","41.3762008"],["-74.1031211","41.3765827"],["-74.1031843","41.3770024"],["-74.1032157","41.3779878"],["-74.1031909","41.378564"],["-74.103121","41.3792309"],["-74.1030579","41.3796171"],["-74.10299","41.3798889"],["-74.1027604","41.380663"],["-74.1025541","41.3811943"],["-74.1021882","41.3819626"],["-74.1018553","41.3825251"],["-74.1012913","41.3833477"],["-74.1008995","41.3838635"],["-74.095452","41.391028"],["-74.0944654","41.3922335"],["-74.0937895","41.392987"],["-74.0922867","41.3945492"],["-74.0892213","41.3976177"],["-74.0830423","41.403712"],["-74.0722574","41.4133709"],["-74.0714958","41.4140796"],["-74.0710244","41.4145826"],["-74.0706361","41.4150674"],["-74.0702969","41.4155331"],["-74.0698802","41.4162334"],["-74.0695861","41.4168428"],["-74.0693499","41.4174341"],["-74.0692043","41.4179117"],["-74.0690821","41.4184556"],["-74.0689663","41.4193424"],["-74.0675719","41.4348302"],["-74.0674611","41.4360531"],["-74.0673437","41.4372471"],["-74.0671405","41.4393112"],["-74.0670091","41.4403022"],["-74.0668768","41.4411348"],["-74.0666512","41.4423801"],["-74.0664535","41.4433196"],["-74.0646194","41.4503289"],["-74.0644764","41.4509794"],["-74.0643875","41.4514605"],["-74.0643321","41.4518232"],["-74.0642697","41.4525209"],["-74.0642787","41.45315"],["-74.0642987","41.4536885"],["-74.0643326","41.4540962"],["-74.0643756","41.4544733"],["-74.0644371","41.454868"],["-74.0644763","41.4550325"],["-74.0645037","41.4552221"],["-74.0645626","41.4554853"],["-74.0646526","41.4558191"],["-74.0647377","41.4561099"],["-74.0648705","41.4565343"],["-74.0650311","41.4569577"],["-74.065226","41.4574318"],["-74.0655081","41.4580202"],["-74.0659208","41.4587829"],["-74.0770972","41.4780968"],["-74.0782051","41.4800574"],["-74.0785329","41.4807696"],["-74.0789177","41.4818168"],["-74.0791111","41.4825098"],["-74.0792224","41.4830259"],["-74.0793001","41.4835177"],["-74.0793686","41.4841577"],["-74.0793992","41.4849207"],["-74.0793833","41.4856769"],["-74.0793553","41.4861786"],["-74.0793278","41.4864806"],["-74.0792749","41.4869513"],["-74.0788273","41.4894559"],["-74.0771026","41.4987593"],["-74.0767885","41.500306"],["-74.0765078","41.5014765"],["-74.0746388","41.5083363"],["-74.0742062","41.5099378"],["-74.074008","41.5108109"],["-74.073832","41.51173"],["-74.0736971","41.5125956"],["-74.0735501","41.513925"],["-74.0735204","41.5143193"],["-74.0734803","41.5152198"],["-74.073477","41.5164971"],["-74.0735327","41.5174736"],["-74.0736348","41.5186784"],["-74.0738583","41.5201804"],["-74.074636","41.5241172"],["-74.0749711","41.5258852"],["-74.0751731","41.5271828"],["-74.0753531","41.5285817"],["-74.0755105","41.5301574"],["-74.0759141","41.5348002"],["-74.0761784","41.5370216"],["-74.0763517","41.5379386"],["-74.0765509","41.5388352"],["-74.0767957","41.5397901"],["-74.0770892","41.5407621"],["-74.0774508","41.5418283"],["-74.0792014","41.546835"],["-74.0797883","41.5485792"],["-74.0799472","41.5491919"],["-74.0800755","41.549751"],["-74.080174","41.5503194"],["-74.0802757","41.5510289"],["-74.0803562","41.551932"],["-74.0805545","41.5555132"],["-74.0806304","41.5562901"],["-74.0807392","41.5570264"],["-74.0808934","41.5577896"],["-74.0810916","41.558591"],["-74.0827713","41.5641474"],["-74.0830666","41.5652341"],["-74.0832766","41.5661092"],["-74.0834249","41.5668538"],["-74.0843715","41.5725523"],["-74.0845769","41.5735484"],["-74.0847617","41.574235"],["-74.0851783","41.5755503"],["-74.0856448","41.5767674"],["-74.0862187","41.5780115"],["-74.0876043","41.5809464"],["-74.08783","41.5814822"],["-74.0880774","41.5821503"],["-74.0882713","41.5827669"],["-74.0883965","41.5832347"],["-74.0885044","41.5837327"],["-74.0885951","41.5842372"],["-74.0886656","41.5847468"],["-74.0887141","41.5852236"],["-74.0887485","41.5859841"],["-74.0887367","41.586956"],["-74.0885922","41.5881984"],["-74.0884485","41.5889149"],["-74.0882704","41.5896216"],["-74.0879562","41.5906029"],["-74.0854205","41.5979941"],["-74.0848403","41.5996759"],["-74.0829131","41.6053273"],["-74.082701","41.606093"],["-74.0824744","41.607044"],["-74.0822876","41.608018"],["-74.0821724","41.6088095"],["-74.0819811","41.6110204"],["-74.0817176","41.6144569"],["-74.0815063","41.6169018"],["-74.0813631","41.6178335"],["-74.0811975","41.6186637"],["-74.0809637","41.6196356"],["-74.0789798","41.6261668"],["-74.0787179","41.6271276"],["-74.0785608","41.6278291"],["-74.0784578","41.6283966"],["-74.0783772","41.6289601"],["-74.0782992","41.6297201"],["-74.0782481","41.6306093"],["-74.0782411","41.6311192"],["-74.0783056","41.6327265"],["-74.0783685","41.6341689"],["-74.0784173","41.6355985"],["-74.0784021","41.6362894"],["-74.0783491","41.6369347"],["-74.0782825","41.6375272"],["-74.0781673","41.6382253"],["-74.0779327","41.6392383"],["-74.0769321","41.6431349"],["-74.0767224","41.6441446"],["-74.0766235","41.644822"],["-74.0765527","41.6455104"],["-74.0765069","41.6462917"],["-74.0764943","41.6468714"],["-74.0765101","41.6474813"],["-74.0765532","41.6482672"],["-74.0766635","41.6492219"],["-74.076925","41.650646"],["-74.0776196","41.6541523"],["-74.0777442","41.6548883"],["-74.0778834","41.6558458"],["-74.0780056","41.6568321"],["-74.078104","41.6578985"],["-74.078166","41.6588256"],["-74.0782063","41.6596529"],["-74.0782216","41.6604512"],["-74.0782016","41.6634522"],["-74.0781934","41.6650382"],["-74.0782249","41.6656963"],["-74.0782974","41.6664366"],["-74.078402","41.667218"],["-74.078527","41.6679166"],["-74.078908","41.6694129"],["-74.0798673","41.6729372"],["-74.0802185","41.6742828"],["-74.080273","41.6745457"],["-74.0803377","41.6750391"],["-74.0803912","41.6755852"],["-74.080414","41.6763641"],["-74.0803906","41.6770304"],["-74.0803135","41.6777855"],["-74.0801923","41.6784951"],["-74.0800717","41.6789809"],["-74.0799012","41.6795706"],["-74.0796829","41.6801812"],["-74.0793216","41.6810273"],["-74.0787608","41.6822878"],["-74.0783261","41.6832943"],["-74.0781118","41.6838474"],["-74.0779642","41.6843069"],["-74.0777988","41.6848919"],["-74.0776367","41.6856451"],["-74.077536","41.686289"],["-74.0774772","41.6869027"],["-74.0774433","41.6874921"],["-74.0774428","41.6880213"],["-74.0774549","41.688381"],["-74.0774624","41.6885748"],["-74.0774919","41.6888847"],["-74.0775336","41.6892663"],["-74.0776166","41.6897933"],["-74.0777435","41.6904183"],["-74.0779491","41.6911813"],["-74.0782874","41.6922011"],["-74.0789257","41.6941226"],["-74.0791131","41.6947255"],["-74.0792903","41.6954263"],["-74.0794238","41.6961185"],["-74.0795075","41.6967262"],["-74.0795663","41.697455"],["-74.0795844","41.6981026"],["-74.0795642","41.6987597"],["-74.079504","41.6994835"],["-74.0794174","41.7001134"],["-74.0792169","41.7010698"],["-74.0790439","41.7016861"],["-74.0788586","41.7022259"],["-74.0786156","41.7028227"],["-74.0782987","41.7034829"],["-74.0777239","41.7044718"],["-74.0767581","41.7060513"],["-74.0759298","41.7074327"],["-74.0754088","41.7083952"],["-74.0749489","41.7093096"],["-74.0745543","41.7101892"],["-74.0740478","41.7114213"],["-74.0737935","41.7121354"],["-74.0729359","41.7148742"],["-74.0723491","41.7167508"],["-74.0714085","41.7197824"],["-74.0711087","41.7205949"],["-74.0707978","41.7213443"],["-74.0704772","41.7220348"],["-74.069851","41.7232129"],["-74.068591","41.72547"],["-74.0678198","41.7269164"],["-74.0674342","41.7277631"],["-74.0671505","41.7284653"],["-74.0668663","41.7292404"],["-74.0664897","41.7304909"],["-74.0662646","41.731399"],["-74.0661958","41.731719"],["-74.0660407","41.7325933"],["-74.0644416","41.7427122"],["-74.064288","41.7433725"],["-74.064088","41.7440954"],["-74.0638737","41.7447795"],["-74.0636459","41.7453922"],["-74.0633152","41.7462051"],["-74.062958","41.7469657"],["-74.0618745","41.7489395"],["-74.0583788","41.7552023"],["-74.0577982","41.756299"],["-74.0572262","41.7574834"],["-74.0567196","41.7585747"],["-74.056119","41.7600183"],["-74.0554428","41.7618949"],["-74.0527088","41.7700149"],["-74.0523411","41.7711735"],["-74.0517269","41.773517"],["-74.0515662","41.7742066"],["-74.051332","41.7753895"],["-74.0502993","41.7824163"],["-74.0498975","41.7853908"],["-74.049858","41.7859566"],["-74.0498526","41.786485"],["-74.0498845","41.7873231"],["-74.049935","41.7878334"],["-74.0499997","41.7883428"],["-74.0502185","41.7894048"],["-74.0509062","41.7923214"],["-74.0512271","41.793782"],["-74.0513424","41.7944545"],["-74.0514434","41.795233"],["-74.0515193","41.7960506"],["-74.051566","41.7970605"],["-74.0515123","41.8020408"],["-74.0515194","41.8027155"],["-74.0516533","41.8042148"],["-74.0517991","41.8051698"],["-74.0519959","41.806152"],["-74.052248","41.8071181"],["-74.0525674","41.8081013"],["-74.0532218","41.8097882"],["-74.0535837","41.8106895"],["-74.0545675","41.8131182"],["-74.0551437","41.814569"],["-74.055642","41.8159488"],["-74.0561998","41.8177415"],["-74.0563196","41.818234"],["-74.0564123","41.8186187"],["-74.0565967","41.8194696"],["-74.0567908","41.8204636"],["-74.0569466","41.8214051"],["-74.0570746","41.8224328"],["-74.057131","41.8229795"],["-74.0572193","41.8240584"],["-74.0572651","41.8259096"],["-74.0573836","41.8340789"],["-74.0574762","41.8354983"],["-74.0576112","41.8367675"],["-74.057784","41.8379186"],["-74.0594845","41.846468"],["-74.0596449","41.8473872"],["-74.0597043","41.8478894"],["-74.0597311","41.8483399"],["-74.0597449","41.8488965"],["-74.059721","41.8496238"],["-74.059655","41.8503002"],["-74.0594977","41.8511794"],["-74.0573294","41.8608583"],["-74.0571321","41.8618384"],["-74.0570583","41.8623871"],["-74.0569882","41.8631008"],["-74.0569572","41.8637107"],["-74.0569543","41.8642686"],["-74.0569751","41.8648678"],["-74.0570128","41.865433"],["-74.0570992","41.8661398"],["-74.0572649","41.8670822"],["-74.0578068","41.8696445"],["-74.0579188","41.8702924"],["-74.0579962","41.8708565"],["-74.0580722","41.8716665"],["-74.0581108","41.8739434"],["-74.0581311","41.8814855"],["-74.0580986","41.8823109"],["-74.0580453","41.8827884"],["-74.0579864","41.8831011"],["-74.0578777","41.8835425"],["-74.057717","41.8840066"],["-74.0575495","41.8844118"],["-74.0573543","41.884794"],["-74.0569836","41.8854095"],["-74.0566967","41.8858088"],["-74.0563237","41.8862542"],["-74.0560197","41.8865718"],["-74.0556719","41.8868917"],["-74.05514","41.8873324"],["-74.0543305","41.8879159"],["-74.0536082","41.8884228"],["-74.0526152","41.8890982"],["-74.050368","41.8906351"],["-74.0498676","41.8910218"],["-74.0495034","41.8913288"],["-74.0491184","41.8916763"],["-74.0487389","41.8920542"],["-74.0482672","41.8925625"],["-74.0453128","41.8958987"],["-74.0439938","41.8974125"],["-74.0436256","41.8978967"],["-74.0432797","41.8983994"],["-74.0429926","41.8988741"],["-74.0426717","41.8995102"],["-74.0423653","41.900239"],["-74.0421473","41.9008878"],["-74.041971","41.9016367"],["-74.041891","41.9021464"],["-74.0418391","41.9026843"],["-74.0418205","41.9033868"],["-74.0418556","41.90404"],["-74.0423507","41.9071365"],["-74.0439249","41.9167865"],["-74.0440833","41.9183823"],["-74.0445034","41.9239024"],["-74.0445099","41.9244756"],["-74.044488","41.9250109"],["-74.0444381","41.9255895"],["-74.0443612","41.9261239"],["-74.0442253","41.9268371"],["-74.0440838","41.9273979"],["-74.0438268","41.9282363"],["-74.0435794","41.9288546"],["-74.0433253","41.9294478"],["-74.0431039","41.9298886"],["-74.0428359","41.9303685"],["-74.042488","41.9309501"],["-74.0420933","41.931541"],["-74.0411697","41.9328055"],["-74.0325159","41.9433192"],["-74.0320041","41.9438602"],["-74.0317353","41.944127"],["-74.030941","41.9448587"],["-74.0303512","41.945364"],["-74.0297116","41.9458779"],["-74.0290953","41.9462607"],["-74.0284365","41.9466442"],["-74.0279639","41.946894"],["-74.0275323","41.9471188"],["-74.0272295","41.9472698"],["-74.0270962","41.9473193"],["-74.0269571","41.9473555"],["-74.0268234","41.9473746"],["-74.0266725","41.9473817"],["-74.0265226","41.947375"],["-74.0263831","41.9473554"],["-74.0262471","41.9473216"],["-74.0261134","41.9472736"],["-74.0260092","41.9472251"],["-74.0258997","41.9471596"],["-74.0258075","41.9470878"],["-74.025728","41.947015"],["-74.025664","41.9469344"],["-74.0256148","41.9468585"],["-74.0255798","41.9467811"],["-74.0255538","41.9467045"],["-74.0255378","41.9466253"],["-74.0255316","41.9465366"],["-74.0255347","41.9464491"],["-74.0255478","41.9463682"],["-74.0255764","41.9462839"],["-74.0256117","41.9462098"],["-74.0256481","41.9461511"],["-74.0257053","41.9460779"],["-74.0258891","41.9458954"],["-74.0259338","41.9458531"],["-74.0260533","41.9457608"],["-74.026994","41.9450446"],["-74.0275549","41.9446057"],["-74.0279004","41.9443555"],["-74.0279909","41.9443029"],["-74.0280896","41.9442621"],["-74.0281958","41.9442363"],["-74.0283085","41.9442159"],["-74.0284096","41.9442069"],["-74.0285235","41.9442048"],["-74.0286331","41.9442169"],["-74.0287397","41.9442383"],["-74.0288485","41.94427"],["-74.0289498","41.944308"],["-74.0290546","41.9443639"],["-74.0291544","41.9444301"],["-74.0293143","41.9445616"],["-74.029943","41.9454234"],["-74.0303565","41.9459051"],["-74.0305659","41.9461255"],["-74.030699","41.9462554"],["-74.0308446","41.9463863"],["-74.0309787","41.946496"],["-74.031102","41.9465894"],["-74.0312545","41.9467023"],["-74.0314043","41.9468115"],["-74.0320746","41.9472556"],["-74.0334293","41.9480389"],["-74.0336567","41.9481567"],["-74.0339045","41.9482787"],["-74.0341637","41.9483991"],["-74.0343885","41.9484966"],["-74.0346337","41.9485957"],["-74.0348691","41.9486825"],["-74.0350597","41.9487476"],["-74.0352753","41.9488153"],["-74.0354958","41.9488754"],["-74.0356841","41.9489221"],["-74.0358978","41.9489683"],["-74.036125","41.94901"],["-74.0365967","41.9490785"],["-74.0368325","41.9491057"],["-74.0370768","41.9491276"],["-74.0373605","41.9491451"],["-74.0376344","41.9491549"],["-74.0378827","41.9491585"],["-74.0381508","41.9491495"],["-74.0384301","41.9491347"],["-74.0398272","41.9490247"],["-74.0401067","41.9490126"],["-74.0404006","41.9490046"],["-74.0406833","41.9490102"],["-74.0409688","41.9490252"],["-74.0412566","41.9490458"],["-74.0415694","41.9490791"],["-74.0418619","41.9491213"],["-74.0421149","41.9491649"],["-74.042361","41.9492182"],["-74.0428729","41.949346"],["-74.0430823","41.9494116"],["-74.043301","41.9494847"],["-74.0435384","41.9495717"],["-74.0437602","41.9496581"],["-74.0439779","41.9497481"],["-74.044182","41.9498372"],["-74.0445927","41.9500332"],["-74.044768","41.9501241"],["-74.0449539","41.9502253"],["-74.0454317","41.9505117"],["-74.0455877","41.9506126"],["-74.0458645","41.9508022"],["-74.0460336","41.9509273"],["-74.0462356","41.9510857"],["-74.0464163","41.951234"],["-74.0466123","41.9514051"],["-74.0467692","41.9515516"],["-74.0469188","41.9517005"],["-74.047104","41.9518936"],["-74.0472647","41.95207"],["-74.0474448","41.9522788"],["-74.0475973","41.9524726"],["-74.0477529","41.9526885"],["-74.0478696","41.952863"],["-74.0480829","41.953236"],["-74.0481915","41.9534488"],["-74.0487838","41.9547874"],["-74.0488561","41.954935"],["-74.0489322","41.9550801"],["-74.0489876","41.9551769"],["-74.0490485","41.9552747"],["-74.0491154","41.9553793"],["-74.0491762","41.9554696"],["-74.0493316","41.9556799"],["-74.0494418","41.9558168"],["-74.0497053","41.9561271"],["-74.049853","41.956292"],["-74.0499931","41.9564396"],["-74.0501408","41.9565862"],["-74.0502635","41.9567029"],["-74.050417","41.956843"],["-74.0506589","41.9570518"],["-74.050771","41.9571435"],["-74.0509266","41.9572641"],["-74.0512523","41.9575026"],["-74.0516016","41.9577315"],["-74.051777","41.9578345"],["-74.052155","41.9580422"],["-74.0526159","41.9582507"],["-74.052974","41.9584004"],["-74.0533924","41.9585692"],["-74.0538581","41.9587292"],["-74.0541893","41.9588721"],["-74.0544588","41.9589969"],["-74.0547359","41.9591382"],["-74.0549959","41.9592807"],["-74.0665103","41.9658773"],["-74.0667194","41.9660198"],["-74.0669221","41.9661657"],["-74.0673474","41.9664916"],["-74.067573","41.9666766"],["-74.0698938","41.9687272"],["-74.0701793","41.9689552"],["-74.0704912","41.9691833"],["-74.0710338","41.9695429"],["-74.0711943","41.9696406"],["-74.0713568","41.9697325"],["-74.0731585","41.9706742"],["-74.0733511","41.9708014"],["-74.0736738","41.9709779"],["-74.0749445","41.971636"],["-74.0755487","41.971943"],["-74.0756735","41.9720001"],["-74.075932","41.9721012"],["-74.0760613","41.972146"],["-74.0761907","41.9721863"],["-74.0763407","41.972228"],["-74.0764722","41.9722607"],["-74.0767945","41.9723209"],["-74.078167","41.9725609"],["-74.0786334","41.9726614"],["-74.0789501","41.9727441"],["-74.0792369","41.9728282"],["-74.0795995","41.9729509"],["-74.0798823","41.9730681"],["-74.0801838","41.9732062"],["-74.0807866","41.9735285"],["-74.0811895","41.9737842"],["-74.0814182","41.9739575"],["-74.0816022","41.9741207"],["-74.0817917","41.9743058"],["-74.0820865","41.9746454"],["-74.0829775","41.9758051"],["-74.0831989","41.976033"],["-74.0854654","41.9790301"],["-74.085614","41.97924"],["-74.0857422","41.9794499"],["-74.0858045","41.9795713"],["-74.0858791","41.9797325"],["-74.0859466","41.9798984"],["-74.0860013","41.980067"],["-74.0860409","41.9802142"],["-74.0860743","41.9803786"],["-74.0861005","41.980541"],["-74.086116","41.9806867"],["-74.0861264","41.9808273"],["-74.086217","41.9891016"],["-74.0862573","41.99073"],["-74.086285","41.9912537"],["-74.0863108","41.9914483"],["-74.0863497","41.9916211"],["-74.0863967","41.9917726"],["-74.0864598","41.9919493"],["-74.0865192","41.992079"],["-74.0865736","41.9921784"],["-74.0866356","41.9922818"],["-74.0867114","41.9923946"],["-74.0881617","41.9942351"],["-74.0883826","41.9944548"],["-74.0884922","41.9945545"],["-74.0886382","41.9946641"],["-74.088853","41.9948089"],["-74.0890166","41.9949033"],["-74.089237","41.9950119"],["-74.0895104","41.9951249"],["-74.0898809","41.9952404"],["-74.0908236","41.9954808"],["-74.0911545","41.9955539"],["-74.0913936","41.9956001"],["-74.0919129","41.9956861"],["-74.0922025","41.9957244"],["-74.0924594","41.9957545"],["-74.0930161","41.9958014"],["-74.093567","41.9958266"],["-74.0947573","41.9958688"],["-74.0951977","41.9958898"],["-74.095588","41.9959188"],["-74.0960266","41.9959697"],["-74.1048595","41.9972379"],["-74.1048694","41.9973044"],["-74.1048595","41.9973743"],["-74.1048637","41.997463"],["-74.1049457","41.9981969"],["-74.105077","41.9991065"],["-74.1051791","41.9998331"],["-74.1052206","42.0003181"],["-74.1052393","42.0008231"],["-74.1052969","42.0019207"],["-74.105287","42.0021941"],["-74.1051451","42.0032492"],["-74.1051236","42.0035536"],["-74.1051274","42.0038215"],["-74.1051491","42.0040178"],["-74.1051843","42.0041803"],["-74.1052631","42.0043687"],["-74.105338","42.004515"],["-74.1054856","42.0047445"],["-74.1060961","42.0056665"],["-74.1061462","42.0057578"],["-74.1062009","42.0058913"],["-74.1062308","42.0060026"],["-74.1062463","42.0060949"],["-74.1062602","42.0062026"],["-74.106267","42.0063273"],["-74.1062656","42.006434"],["-74.1062493","42.0065753"],["-74.1061942","42.0067552"],["-74.1060251","42.0071503"],["-74.1059811","42.0073147"],["-74.1059808","42.0074711"],["-74.1060203","42.0076143"],["-74.10606","42.0076989"],["-74.1061152","42.0077722"],["-74.1062009","42.0078568"],["-74.106471","42.0080643"],["-74.1069805","42.0084394"],["-74.1071356","42.0085793"],["-74.107277","42.0087184"],["-74.1074321","42.0089283"],["-74.1075427","42.009176"],["-74.1078723","42.0101421"],["-74.1079624","42.0104355"],["-74.1079778","42.010609"],["-74.1079446","42.01081"],["-74.107646","42.0117245"],["-74.1075278","42.0120422"],["-74.1073899","42.0123687"],["-74.1065112","42.0143118"],["-74.106218","42.0150204"],["-74.1057942","42.016302"],["-74.1057001","42.01672"],["-74.1056283","42.0171921"],["-74.1055319","42.0179348"],["-74.1053991","42.0193126"],["-74.105343","42.0200195"],["-74.1053576","42.0203858"],["-74.1053976","42.0206609"],["-74.1054402","42.0208072"],["-74.1055057","42.0210001"],["-74.1055644","42.021128"],["-74.1057505","42.0214575"],["-74.1060196","42.021925"],["-74.1061183","42.0221329"],["-74.1062107","42.0224116"],["-74.1062703","42.0227327"],["-74.106296","42.0230525"],["-74.1063527","42.0243238"],["-74.1063268","42.0247041"],["-74.1062242","42.0253679"],["-74.106047","42.0261996"],["-74.1059257","42.0268539"],["-74.1059053","42.0270935"],["-74.1058883","42.0274654"],["-74.1059019","42.0276631"],["-74.1059345","42.0278176"],["-74.1060188","42.0280207"],["-74.1061552","42.0282447"],["-74.1063376","42.028508"],["-74.1066975","42.0290112"],["-74.1080941","42.0309351"],["-74.1083593","42.0312993"],["-74.108649","42.0316911"],["-74.1088845","42.0320138"],["-74.1090309","42.0322287"],["-74.1091417","42.0324192"],["-74.109182","42.0325205"],["-74.109206","42.0326052"],["-74.1092275","42.0327241"],["-74.1092399","42.0328453"],["-74.1092509","42.0329479"],["-74.1092704","42.0331036"],["-74.1092942","42.033234"],["-74.1093418","42.03339"],["-74.1095117","42.0337037"],["-74.1099168","42.0343352"],["-74.1107682","42.0356873"],["-74.1109185","42.0359385"],["-74.1109778","42.0360613"],["-74.1109984","42.0361188"],["-74.1110248","42.036232"],["-74.1110311","42.0363943"],["-74.1110043","42.0364971"],["-74.1109183","42.036773"],["-74.1108967","42.0368483"],["-74.1108774","42.0368895"],["-74.1108508","42.0369439"],["-74.1108161","42.037006"],["-74.1107681","42.0370783"],["-74.1107476","42.0371327"],["-74.1180184","42.0409404"],["-74.1181017","42.0409723"],["-74.1181891","42.0409924"],["-74.1183105","42.0410115"],["-74.1183488","42.0410138"],["-74.1183882","42.0410074"],["-74.1184856","42.0409781"],["-74.118585","42.0409429"],["-74.1187091","42.0408854"],["-74.1193868","42.0405321"],["-74.1195358","42.0404732"],["-74.1196342","42.0404516"],["-74.1197361","42.0404347"],["-74.1198634","42.0404218"],["-74.1219939","42.0403079"],["-74.1221683","42.0403041"],["-74.1242929","42.040368"],["-74.130746","42.0404588"],["-74.1317997","42.0404757"],["-74.1365027","42.0404533"],["-74.136929","42.0404538"],["-74.1393069","42.0404502"],["-74.1397966","42.04045"],["-74.1402766","42.040449"],["-74.1407389","42.040449"],["-74.1424184","42.040446"],["-74.1430893","42.0404459"],["-74.1433987","42.0404452"],["-74.1437674","42.040445"],["-74.1439531","42.0404439"],["-74.1453191","42.0404449"],["-74.1513451","42.0403915"],["-74.1519917","42.0404069"],["-74.1532316","42.0404522"],["-74.1537691","42.0404966"],["-74.1541214","42.040546"],["-74.1543811","42.0405947"],["-74.1550306","42.0407428"],["-74.1551785","42.0407918"],["-74.1556376","42.0415763"],["-74.1579593","42.045476"],["-74.1581393","42.0458436"],["-74.1582919","42.046228"],["-74.1583723","42.0465521"],["-74.1584478","42.0469835"],["-74.1585046","42.0473422"],["-74.1585387","42.0475623"],["-74.1585756","42.0477701"],["-74.1586043","42.0478639"],["-74.1586364","42.0479504"],["-74.1586937","42.0480671"],["-74.158801","42.0482455"],["-74.1590056","42.0485592"],["-74.1591436","42.048776"],["-74.1592021","42.0488839"],["-74.15926","42.0490145"],["-74.1592962","42.0491211"],["-74.159371","42.0494667"],["-74.1596607","42.0509917"],["-74.1597465","42.0515722"],["-74.1597461","42.0518179"],["-74.1597347","42.052058"],["-74.1597079","42.0523438"],["-74.1596314","42.0528531"],["-74.1595756","42.0530797"],["-74.1594863","42.0533291"],["-74.1593872","42.0535664"],["-74.1592392","42.0538398"],["-74.1587739","42.0545443"],["-74.1585875","42.0548254"],["-74.1584898","42.0549838"],["-74.1583841","42.0551848"],["-74.1583094","42.055362"],["-74.1582698","42.0554963"],["-74.1582481","42.0556162"],["-74.1582387","42.0557233"],["-74.1582429","42.0559243"],["-74.1583579","42.0574132"],["-74.1583921","42.0577516"],["-74.1584276","42.0579537"],["-74.1584792","42.0581364"],["-74.1586749","42.0586365"],["-74.158777","42.0588099"],["-74.158916","42.0590139"],["-74.1590426","42.0591795"],["-74.1591179","42.0592646"],["-74.159202","42.0593661"],["-74.1593475","42.0595089"],["-74.1596746","42.0598033"],["-74.160564","42.0605631"],["-74.1607295","42.0607451"],["-74.1608106","42.0608782"],["-74.1608598","42.0610285"],["-74.1608892","42.0613309"],["-74.160893","42.0617055"],["-74.1609173","42.061846"],["-74.1610012","42.06203"],["-74.1611044","42.0621581"],["-74.161347","42.0623637"],["-74.1616707","42.0626219"],["-74.1617556","42.062699"],["-74.1618628","42.0628145"],["-74.1619334","42.0629216"],["-74.1619862","42.0630768"],["-74.1620643","42.063555"],["-74.1621077","42.0636786"],["-74.1621897","42.063805"],["-74.162303","42.0639161"],["-74.1627274","42.0642103"],["-74.1634641","42.0647086"],["-74.1642523","42.0652314"],["-74.1646575","42.0655049"],["-74.1648227","42.0655954"],["-74.1650321","42.0656772"],["-74.1652692","42.0657639"],["-74.1654733","42.0658451"],["-74.1656264","42.0659287"],["-74.1657852","42.0660496"],["-74.1661503","42.0663484"],["-74.1662953","42.0664401"],["-74.1664703","42.0665338"],["-74.166675","42.0666112"],["-74.1669229","42.066671"],["-74.1671753","42.0667048"],["-74.1674796","42.0667218"],["-74.1678941","42.0667235"],["-74.1683209","42.0667002"],["-74.1688597","42.0666528"],["-74.1691381","42.0666222"],["-74.1693599","42.0665787"],["-74.1696412","42.066491"],["-74.1706576","42.066145"],["-74.1710065","42.0660404"],["-74.1714227","42.0659334"],["-74.1722747","42.065748"],["-74.1730391","42.0655615"],["-74.1735315","42.065438"],["-74.1739067","42.0653398"],["-74.1740762","42.0653046"],["-74.1742472","42.065278"],["-74.1744611","42.0652536"],["-74.1753042","42.0651911"],["-74.1764514","42.0650736"],["-74.1766483","42.0650633"],["-74.1767661","42.0650672"],["-74.1769384","42.065083"],["-74.1770757","42.0651074"],["-74.1772245","42.0651447"],["-74.1773925","42.0651964"],["-74.1775696","42.065261"],["-74.1778396","42.0653745"],["-74.1782182","42.0655374"],["-74.1786197","42.0657093"],["-74.1789227","42.0658295"],["-74.1791513","42.0659095"],["-74.179361","42.0659692"],["-74.1795617","42.066014"],["-74.1797875","42.0660505"],["-74.1800155","42.0660757"],["-74.1805557","42.0661127"],["-74.1808748","42.0661347"],["-74.1814669","42.0661721"],["-74.1816427","42.0661945"],["-74.1817753","42.0662206"],["-74.1819216","42.0662646"],["-74.1820892","42.0663255"],["-74.1823657","42.0664459"],["-74.1828981","42.0666801"],["-74.1831407","42.066781"],["-74.1833338","42.0668511"],["-74.1835045","42.0669035"],["-74.1837111","42.0669578"],["-74.1864544","42.0674502"],["-74.1871104","42.0676052"],["-74.1886562","42.0680095"],["-74.1890937","42.0681181"],["-74.1908724","42.068514"],["-74.193418","42.0691365"],["-74.1948057","42.0694414"],["-74.1952337","42.0695611"],["-74.1954661","42.0696381"],["-74.1956458","42.0697162"],["-74.1958028","42.069799"],["-74.1959332","42.0698815"],["-74.1960738","42.0699778"],["-74.1961914","42.0700732"],["-74.1962648","42.0701481"],["-74.1963244","42.0702198"],["-74.1963912","42.0703181"],["-74.1964292","42.0703868"],["-74.1964599","42.0704547"],["-74.1964874","42.0705311"],["-74.1965163","42.0706384"],["-74.1965368","42.0707694"],["-74.1965603","42.0712024"],["-74.1965772","42.0713308"],["-74.1965959","42.0714459"],["-74.1966141","42.0715228"],["-74.1966592","42.0716546"],["-74.1967201","42.0717716"],["-74.1967806","42.0718664"],["-74.1968823","42.0719904"],["-74.1970371","42.0721391"],["-74.1973094","42.0723717"],["-74.1974753","42.0725299"],["-74.1975547","42.0726243"],["-74.1976627","42.0727724"],["-74.1977715","42.072954"],["-74.1978688","42.0731264"],["-74.1980668","42.0735429"],["-74.1981421","42.0736939"],["-74.1982562","42.0739006"],["-74.1983416","42.074022"],["-74.1984321","42.0741374"],["-74.1985692","42.0742725"],["-74.1988806","42.0745587"],["-74.199067","42.074719"],["-74.1992545","42.0748601"],["-74.199422","42.0749631"],["-74.1995873","42.0750376"],["-74.1997071","42.0750776"],["-74.1998503","42.075118"],["-74.2002671","42.0752112"],["-74.2006065","42.0752768"],["-74.2012865","42.0753994"],["-74.2015337","42.0754448"],["-74.2017151","42.0754827"],["-74.2018708","42.0755247"],["-74.2023311","42.0756763"],["-74.2032302","42.0759864"],["-74.2035419","42.0760818"],["-74.2037571","42.0761397"],["-74.205031","42.0764288"],["-74.2052836","42.0764721"],["-74.2054694","42.0764913"],["-74.2056787","42.0764961"],["-74.206682","42.0764511"],["-74.206895","42.0764523"],["-74.2070568","42.0764636"],["-74.2072254","42.0764901"],["-74.2074876","42.076545"],["-74.2079257","42.0766556"],["-74.2085677","42.0768376"],["-74.2092898","42.0770465"],["-74.2097882","42.0771877"],["-74.2100603","42.0772543"],["-74.2103671","42.0773236"],["-74.2107262","42.0773946"],["-74.2110119","42.0774427"],["-74.2113384","42.0774878"],["-74.2116175","42.0775252"],["-74.2117933","42.0775613"],["-74.2119089","42.0775909"],["-74.2120209","42.0776247"],["-74.21212","42.0776582"],["-74.2122505","42.0777116"],["-74.2126042","42.0778887"],["-74.2127427","42.0779556"],["-74.2128571","42.0780023"],["-74.2130354","42.0780645"],["-74.2133436","42.0781442"],["-74.2142241","42.0783458"],["-74.2146648","42.0784399"],["-74.2149139","42.0784807"],["-74.215117","42.0785065"],["-74.2153254","42.0785223"],["-74.2154722","42.0785203"],["-74.2156608","42.0785088"],["-74.2159056","42.0784817"],["-74.2161172","42.0784508"],["-74.2166324","42.0783613"],["-74.2176449","42.0781602"],["-74.2183205","42.0780202"],["-74.218577","42.0779467"],["-74.2188636","42.0778521"],["-74.2190746","42.0777524"],["-74.219283","42.0776457"],["-74.2194836","42.0775355"],["-74.2196413","42.0774365"],["-74.2197953","42.0773277"],["-74.2199574","42.0772001"],["-74.22015","42.0770242"],["-74.2243776","42.072847"],["-74.2245853","42.0725992"],["-74.2247262","42.0723745"],["-74.2248601","42.0720924"],["-74.2255329","42.0702449"],["-74.225771","42.0695811"],["-74.2259027","42.069263"],["-74.226002","42.0691003"],["-74.2261882","42.0689067"],["-74.2264242","42.0687437"],["-74.2266059","42.0686615"],["-74.2268154","42.0685976"],["-74.2271684","42.068538"],["-74.2283612","42.0683912"],["-74.2289435","42.0682509"],["-74.2332999","42.0669149"],["-74.2335399","42.066825"],["-74.2337814","42.0667211"],["-74.2339878","42.066611"],["-74.2344737","42.0663102"],["-74.2351762","42.0658641"],["-74.2355422","42.0656367"],["-74.2356837","42.0655597"],["-74.2358206","42.0654959"],["-74.2359733","42.0654424"],["-74.2360821","42.0654098"],["-74.2361878","42.0653846"],["-74.2362927","42.0653652"],["-74.2363786","42.0653545"],["-74.2364705","42.0653459"],["-74.236573","42.0653422"],["-74.2366721","42.0653442"],["-74.2367572","42.0653493"],["-74.2368384","42.0653575"],["-74.2369491","42.0653725"],["-74.2375648","42.0654918"],["-74.2379111","42.0655594"],["-74.2383436","42.0656442"],["-74.2385008","42.065669"],["-74.2386316","42.0656837"],["-74.2387599","42.0656942"],["-74.2389011","42.0656997"],["-74.2390268","42.0656969"],["-74.2391573","42.0656899"],["-74.2392898","42.065674"],["-74.2394129","42.0656541"],["-74.2395252","42.0656312"],["-74.239647","42.0655994"],["-74.239788","42.0655558"],["-74.2399102","42.0655097"],["-74.2407159","42.0651716"],["-74.2408246","42.0651315"],["-74.2409296","42.0650976"],["-74.2410272","42.0650718"],["-74.2411378","42.0650483"],["-74.2412927","42.0650278"],["-74.2414091","42.0650211"],["-74.2415038","42.0650192"],["-74.2415993","42.0650238"],["-74.2417013","42.0650327"],["-74.2418074","42.0650474"],["-74.241912","42.0650676"],["-74.2420287","42.0650979"],["-74.2422097","42.0651552"],["-74.242448","42.0652532"],["-74.2427789","42.0653929"],["-74.2431093","42.0655228"],["-74.2433205","42.0655888"],["-74.2434786","42.065631"],["-74.2436195","42.0656641"],["-74.2437731","42.0656951"],["-74.2439118","42.0657179"],["-74.2440725","42.0657395"],["-74.2443096","42.0657557"],["-74.2445606","42.0657667"],["-74.2448097","42.0657693"],["-74.2462049","42.0657487"],["-74.2466792","42.0657415"],["-74.2468348","42.0657308"],["-74.2469782","42.0657102"],["-74.247095","42.0656862"],["-74.2472037","42.0656593"],["-74.2473149","42.0656216"],["-74.2474157","42.0655712"],["-74.2475008","42.0655225"],["-74.2475811","42.0654666"],["-74.247653","42.0654027"],["-74.2477228","42.0653256"],["-74.2477679","42.0652651"],["-74.2478079","42.065199"],["-74.2478404","42.0651331"],["-74.2478651","42.0650716"],["-74.2478895","42.0649902"],["-74.2479089","42.0648998"],["-74.2479523","42.0646258"],["-74.2480299","42.0640985"],["-74.2480753","42.0638572"],["-74.2481074","42.0637486"],["-74.2481381","42.0636764"],["-74.2481784","42.063602"],["-74.2482252","42.0635321"],["-74.248276","42.063464"],["-74.2483429","42.0633925"],["-74.2484463","42.0632995"],["-74.24855","42.06322"],["-74.2486849","42.0631342"],["-74.2488307","42.0630528"],["-74.2490049","42.0629699"],["-74.2495214","42.0627431"],["-74.2498069","42.0626171"],["-74.2499616","42.0625416"],["-74.2501165","42.0624582"],["-74.2503814","42.0622964"],["-74.2507046","42.0620869"],["-74.2510215","42.0618735"],["-74.2511973","42.0617564"],["-74.2513135","42.0616882"],["-74.251421","42.0616289"],["-74.2515494","42.0615706"],["-74.2516578","42.0615317"],["-74.2517861","42.0614936"],["-74.2519028","42.0614686"],["-74.2520393","42.0614485"],["-74.2522107","42.0614322"],["-74.2528435","42.0613822"],["-74.2530299","42.0613618"],["-74.2531327","42.0613454"],["-74.2532724","42.0613081"],["-74.2533759","42.061275"],["-74.2534912","42.0612286"],["-74.2535968","42.0611819"],["-74.2537165","42.061117"],["-74.2538488","42.0610264"],["-74.253984","42.060918"],["-74.2542919","42.0606418"],["-74.2545512","42.0604055"],["-74.2548223","42.0601435"],["-74.2548935","42.0600666"],["-74.2549491","42.0599964"],["-74.2549909","42.0599361"],["-74.2550353","42.0598577"],["-74.2550711","42.0597794"],["-74.2551096","42.0596725"],["-74.2551319","42.0595682"],["-74.2551459","42.059462"],["-74.2551492","42.0593629"],["-74.2551426","42.0592674"],["-74.2551282","42.0591859"],["-74.2550904","42.0590422"],["-74.2550208","42.0588029"],["-74.2549821","42.0586516"],["-74.2549708","42.0585443"],["-74.25497","42.058445"],["-74.2549929","42.0583294"],["-74.2550316","42.058228"],["-74.2550741","42.0581506"],["-74.2551362","42.0580591"],["-74.2552165","42.057969"],["-74.2553058","42.0578909"],["-74.2553739","42.0578406"],["-74.2554482","42.0577925"],["-74.2555487","42.0577348"],["-74.2556978","42.0576617"],["-74.2561409","42.0574641"],["-74.2563409","42.0573817"],["-74.256534","42.0573081"],["-74.2566621","42.0572658"],["-74.2567762","42.0572325"],["-74.2568944","42.0572044"],["-74.2570125","42.0571804"],["-74.2571171","42.057162"],["-74.2572199","42.0571486"],["-74.2579188","42.0570813"],["-74.2581571","42.0570559"],["-74.2582721","42.0570376"],["-74.2583797","42.0570157"],["-74.2584911","42.056989"],["-74.2586123","42.056956"],["-74.2587328","42.0569135"],["-74.2588297","42.0568739"],["-74.2589307","42.0568258"],["-74.2590776","42.056745"],["-74.2593445","42.0565677"],["-74.26115","42.0552393"],["-74.2612931","42.0551059"],["-74.2613972","42.0549785"],["-74.2614706","42.0548565"],["-74.2615396","42.054711"],["-74.2622035","42.0531172"],["-74.2626616","42.0520123"],["-74.2628306","42.0516763"],["-74.2630152","42.0514713"],["-74.2632544","42.0512765"],["-74.2658828","42.0497365"],["-74.2665023","42.0493948"],["-74.2668592","42.0492502"],["-74.2673936","42.049061"],["-74.2679637","42.0487947"],["-74.2699464","42.0477913"],["-74.2707179","42.0474643"],["-74.2714141","42.0472219"],["-74.2721955","42.0469705"],["-74.272674","42.0468513"],["-74.2750868","42.0462999"],["-74.2755935","42.0461659"],["-74.2758274","42.0460255"],["-74.2759297","42.0459476"],["-74.2761761","42.0456895"],["-74.2763185","42.0455379"],["-74.2764063","42.0454518"],["-74.2765097","42.0453658"],["-74.2766019","42.0452975"],["-74.2766947","42.0452361"],["-74.2768753","42.0451312"],["-74.2770206","42.0450457"],["-74.2772263","42.0449243"],["-74.2773558","42.0448325"],["-74.2774732","42.0447327"],["-74.277627","42.0445669"],["-74.2778515","42.0442936"],["-74.2784969","42.0434768"],["-74.2788648","42.0429523"],["-74.2790362","42.0426932"],["-74.2790887","42.0425954"],["-74.2791315","42.0425025"],["-74.2791575","42.0424006"],["-74.2791721","42.0423093"],["-74.2791771","42.0422252"],["-74.2791625","42.0420673"],["-74.2791361","42.0418478"],["-74.2790362","42.0413341"],["-74.2789433","42.040881"],["-74.2788607","42.040495"],["-74.2788522","42.0403741"],["-74.2788529","42.0402554"],["-74.2788932","42.0401334"],["-74.2789634","42.0400035"],["-74.2790591","42.0398656"],["-74.279178","42.0397529"],["-74.2793102","42.0396587"],["-74.2802793","42.0405787"],["-74.2812834","42.0415758"],["-74.2818013","42.0421095"],["-74.2820378","42.0423817"],["-74.2822788","42.0426784"],["-74.2826308","42.0430846"],["-74.2836784","42.0441753"],["-74.2843941","42.0449532"],["-74.285357","42.0460857"],["-74.2888181","42.0502463"],["-74.2892374","42.0506859"],["-74.2896677","42.0510979"],["-74.2901431","42.0515047"],["-74.2906862","42.0519241"],["-74.2912657","42.0523216"],["-74.2916562","42.0525712"],["-74.2924525","42.0530225"],["-74.2970876","42.055517"],["-74.2978443","42.055889"],["-74.2984058","42.0561463"],["-74.3023382","42.0578145"],["-74.3031089","42.0581582"],["-74.3034564","42.0583546"],["-74.3037339","42.0585411"],["-74.3040396","42.0587862"],["-74.3042035","42.0589369"],["-74.3044583","42.0592216"],["-74.3047017","42.0595466"],["-74.3050914","42.060167"],["-74.3070628","42.063544"],["-74.3072427","42.0639151"],["-74.3073851","42.0642861"],["-74.3074812","42.0646184"],["-74.3075492","42.064932"],["-74.307581","42.0651624"],["-74.3075933","42.0654023"],["-74.3075973","42.0656348"],["-74.3075946","42.0657663"],["-74.3075764","42.0660624"],["-74.3070156","42.0735696"],["-74.3069822","42.0743026"],["-74.3069847","42.074549"],["-74.3070068","42.0748451"],["-74.3070576","42.0752444"],["-74.3071573","42.0757666"],["-74.3072621","42.0761603"],["-74.3073982","42.0765807"],["-74.3075408","42.0769555"],["-74.30776","42.0774179"],["-74.3080706","42.077982"],["-74.3083162","42.0783595"],["-74.3085458","42.0786596"],["-74.3087899","42.0789269"],["-74.3091016","42.0792084"],["-74.3093918","42.0794198"],["-74.3096031","42.0795505"],["-74.3098885","42.0797076"],["-74.3102009","42.0798517"],["-74.310439","42.0799495"],["-74.3108664","42.0800869"],["-74.3111788","42.080175"],["-74.3138921","42.0808127"],["-74.314126","42.0808589"],["-74.3146582","42.0809505"],["-74.3149297","42.0809908"],["-74.315578","42.081071"],["-74.3170041","42.0811608"],["-74.3173377","42.0811647"],["-74.3177392","42.0811616"],["-74.3184876","42.0811416"],["-74.3190188","42.0811317"],["-74.3192521","42.0811411"],["-74.3194924","42.0811541"],["-74.3196906","42.0811688"],["-74.3199318","42.0811948"],["-74.3201621","42.0812255"],["-74.3206431","42.0813195"],["-74.3209441","42.0813904"],["-74.3219891","42.0817028"],["-74.3236384","42.0822234"],["-74.3250979","42.0827031"],["-74.3260525","42.0830617"],["-74.3269748","42.0834502"],["-74.3277581","42.0838057"],["-74.3298984","42.0848046"],["-74.3305288","42.0851176"],["-74.3309131","42.0853577"],["-74.3312236","42.0855863"],["-74.3315372","42.0858694"],["-74.3317962","42.0861465"],["-74.3319987","42.0864072"],["-74.3321792","42.0866677"],["-74.3323118","42.086917"],["-74.3324558","42.0872708"],["-74.3325637","42.087669"],["-74.3327499","42.0889445"],["-74.3329821","42.0906055"],["-74.3330897","42.0911824"],["-74.3331783","42.091453"],["-74.3333166","42.0917743"],["-74.3334695","42.0920691"],["-74.3336911","42.0923949"],["-74.333982","42.0927484"],["-74.3342781","42.0930499"],["-74.3345081","42.0932543"],["-74.3348707","42.0935263"],["-74.3355484","42.0939526"],["-74.3367296","42.0946694"],["-74.3371554","42.0949476"],["-74.3377583","42.0953502"],["-74.3384357","42.0958334"],["-74.3438722","42.0998428"],["-74.3456654","42.1012273"],["-74.3464418","42.1018616"],["-74.3485523","42.1037396"],["-74.3503358","42.1054091"],["-74.3511157","42.1061858"],["-74.3547107","42.1101257"],["-74.3549184","42.1103307"],["-74.3551285","42.1105205"],["-74.3552922","42.1106562"],["-74.3554854","42.1108013"],["-74.3557608","42.1109912"],["-74.3561357","42.1112248"],["-74.3590458","42.1129443"],["-74.3595103","42.1132009"],["-74.3601662","42.1135321"],["-74.3604856","42.1136746"],["-74.3613667","42.1140178"],["-74.3621179","42.1142771"],["-74.3627191","42.1144572"],["-74.3634781","42.1146481"],["-74.3656713","42.115097"],["-74.3667289","42.1153138"],["-74.3674016","42.1154949"],["-74.3685945","42.1158771"],["-74.3712914","42.116774"],["-74.3719068","42.1169574"],["-74.372622","42.117142"],["-74.3733002","42.1172969"],["-74.3738057","42.1173964"],["-74.3743626","42.1174891"],["-74.3756115","42.1176576"],["-74.3863297","42.1186195"],["-74.3878711","42.1187789"],["-74.3909571","42.1192016"],["-74.3916554","42.1192836"],["-74.3921288","42.119324"],["-74.3926154","42.1193467"],["-74.3931417","42.1193562"],["-74.3935821","42.1193438"],["-74.3939892","42.119324"],["-74.3944501","42.1192841"],["-74.3950886","42.1192035"],["-74.3978976","42.1187691"],["-74.3991365","42.1185511"],["-74.4002932","42.1183044"],["-74.4010193","42.1181113"],["-74.4019626","42.1178328"],["-74.40623","42.1163864"],["-74.4067469","42.1162247"],["-74.4072489","42.1160988"],["-74.4078263","42.1159711"],["-74.4085569","42.1158502"],["-74.4092633","42.1157705"],["-74.4168179","42.1151693"],["-74.4178329","42.1151225"],["-74.418666","42.115116"],["-74.4194196","42.1151381"],["-74.4203111","42.1151885"],["-74.4225271","42.1153721"],["-74.4231857","42.1154275"],["-74.4234899","42.1154415"],["-74.4237377","42.1154437"],["-74.4240362","42.1154335"],["-74.4243994","42.1153983"],["-74.4247704","42.1153441"],["-74.4251518","42.1152604"],["-74.4255508","42.1151463"],["-74.4258921","42.1150214"],["-74.4261515","42.114905"],["-74.426401","42.1147848"],["-74.4266921","42.1146083"],["-74.4269808","42.1144101"],["-74.4273377","42.1141145"],["-74.4275908","42.1138538"],["-74.4278134","42.1135698"],["-74.4281555","42.1130303"],["-74.4318997","42.106904"],["-74.4331388","42.1049004"],["-74.4334517","42.104497"],["-74.4337651","42.1041795"],["-74.4340129","42.1039666"],["-74.4343194","42.1037371"],["-74.4346313","42.1035421"],["-74.4349104","42.1033733"],["-74.4355268","42.1030456"],["-74.4360246","42.1028186"],["-74.4364274","42.1026557"],["-74.4368304","42.1025124"],["-74.4373803","42.1023377"],["-74.4378901","42.1022002"],["-74.4383052","42.1021178"],["-74.4387554","42.1020502"],["-74.4390831","42.1020086"],["-74.4392855","42.1019909"],["-74.4395182","42.1019832"],["-74.4398334","42.1019772"],["-74.4402795","42.1019971"],["-74.4406438","42.1020234"],["-74.4410185","42.1020734"],["-74.4415184","42.1021708"],["-74.4418442","42.1022496"],["-74.4422702","42.1023894"],["-74.4427256","42.1025527"],["-74.4432173","42.1027517"],["-74.4434835","42.1027403"],["-74.4439384","42.1026734"],["-74.4440791","42.1026436"],["-74.444216","42.1026066"],["-74.444371","42.1025565"],["-74.4445551","42.1024875"],["-74.4447719","42.1023928"],["-74.4450394","42.1022674"],["-74.4452844","42.1021208"],["-74.4455517","42.1019525"],["-74.4459591","42.101682"],["-74.4464585","42.1013553"],["-74.4470288","42.1010372"],["-74.4474592","42.1008072"],["-74.4479074","42.1005499"],["-74.4481612","42.1003787"],["-74.4484158","42.100172"],["-74.4486009","42.1000076"],["-74.4487622","42.0998464"],["-74.4488759","42.0997004"],["-74.4489177","42.099614"],["-74.4489443","42.0995339"],["-74.4489583","42.0994497"],["-74.4489608","42.099336"],["-74.4489417","42.0991798"],["-74.4488598","42.098798"],["-74.4487988","42.0985065"],["-74.4487793","42.0983289"],["-74.4487837","42.0981897"],["-74.4488241","42.0980199"],["-74.4489237","42.0977061"],["-74.4490154","42.0973892"],["-74.4491156","42.0970063"],["-74.4491856","42.0966336"],["-74.4492374","42.09627"],["-74.4492612","42.095946"],["-74.4492563","42.0957107"],["-74.4492202","42.0955095"],["-74.4491614","42.095349"],["-74.4490499","42.0951485"],["-74.4488033","42.0948069"],["-74.448638","42.0945448"],["-74.4484431","42.0941467"],["-74.4482943","42.0936445"],["-74.4481033","42.0927123"],["-74.4479587","42.0917695"],["-74.4479402","42.0914486"],["-74.4479644","42.0911755"],["-74.4480668","42.0908368"],["-74.4482355","42.090364"],["-74.4483658","42.0898964"],["-74.4484704","42.0891924"],["-74.4484962","42.0889115"],["-74.4484579","42.0886475"],["-74.4482992","42.0879404"],["-74.44822","42.0875512"],["-74.4481903","42.0872756"],["-74.4481934","42.086925"],["-74.4482212","42.0865266"],["-74.4482771","42.0862329"],["-74.4484586","42.0856852"],["-74.4486108","42.0851641"],["-74.4487811","42.0845373"],["-74.4490357","42.08358"],["-74.4493301","42.0824615"],["-74.4494155","42.0822022"],["-74.4494657","42.082106"],["-74.4495329","42.0820085"],["-74.4496357","42.0819055"],["-74.4499209","42.0816815"],["-74.4503265","42.0813502"],["-74.4510099","42.0807084"],["-74.4517331","42.080149"],["-74.4523858","42.0796555"],["-74.4528801","42.0793234"],["-74.4535691","42.0788926"],["-74.4538676","42.0786843"],["-74.4540544","42.0785134"],["-74.4542931","42.0782386"],["-74.4548817","42.077499"],["-74.455554","42.0766843"],["-74.4560499","42.07611"],["-74.456342","42.0757658"],["-74.456511","42.0754992"],["-74.4568907","42.0747902"],["-74.4570972","42.0744962"],["-74.4579587","42.0736448"],["-74.4582234","42.0733611"],["-74.4589743","42.0725435"],["-74.4593285","42.072133"],["-74.4595454","42.0718922"],["-74.4597938","42.0716479"],["-74.4600407","42.0714244"],["-74.4601925","42.071274"],["-74.460304","42.0711278"],["-74.4603993","42.0709256"],["-74.4604602","42.0706959"],["-74.4604922","42.0704525"],["-74.460495","42.0700908"],["-74.4604593","42.0697982"],["-74.4603922","42.069596"],["-74.4602854","42.0693843"],["-74.4599829","42.0689431"],["-74.4598599","42.0687145"],["-74.4597898","42.0685156"],["-74.4597559","42.0683311"],["-74.4597515","42.0680784"],["-74.4598035","42.0674875"],["-74.4598338","42.0670014"],["-74.4598455","42.066337"],["-74.4598394","42.0658497"],["-74.4598092","42.0655461"],["-74.4596799","42.0648904"],["-74.4595086","42.0641801"],["-74.4593939","42.0638656"],["-74.4592182","42.0635616"],["-74.4587837","42.0629104"],["-74.4585601","42.0626064"],["-74.4581569","42.062187"],["-74.458061","42.0620738"],["-74.4579736","42.0619283"],["-74.4579245","42.0617906"],["-74.4578535","42.0613721"],["-74.4577798","42.0611184"],["-74.4575713","42.0607023"],["-74.4574642","42.0605173"],["-74.4573123","42.0603359"],["-74.4567428","42.0598094"],["-74.4564167","42.0594465"],["-74.4560595","42.0590524"],["-74.4557021","42.0587207"],["-74.4555082","42.0585362"],["-74.4553796","42.0583942"],["-74.4552508","42.058225"],["-74.4551161","42.0580286"],["-74.4548832","42.0576697"],["-74.4548004","42.0575038"],["-74.4547591","42.0573907"],["-74.4547369","42.0572858"],["-74.4547275","42.0571425"],["-74.4547386","42.0569581"],["-74.4548324","42.0562658"],["-74.45495","42.0556517"],["-74.455082","42.0550194"],["-74.4550962","42.0548765"],["-74.4550917","42.054589"],["-74.4550395","42.0542646"],["-74.4549293","42.0539586"],["-74.4546945","42.0535526"],["-74.454353","42.0530117"],["-74.4541526","42.0527057"],["-74.453786","42.0521831"],["-74.453385","42.051614"],["-74.4532009","42.0513787"],["-74.4530995","42.0512981"],["-74.4529362","42.0512228"],["-74.4522674","42.0509899"],["-74.4514918","42.0507106"],["-74.4513116","42.0506235"],["-74.4511514","42.0505"],["-74.4508318","42.0501726"],["-74.4506848","42.0500654"],["-74.4504773","42.0499532"],["-74.4499568","42.0497295"],["-74.4497382","42.0496178"],["-74.4495562","42.0494915"],["-74.4494132","42.0493545"],["-74.4492467","42.0491298"],["-74.4490859","42.0489098"],["-74.4489945","42.048795"],["-74.4479254","42.0473786"],["-74.4470793","42.0462073"],["-74.4462444","42.04506"],["-74.4454888","42.0440484"],["-74.4452885","42.0438171"],["-74.4451489","42.0437161"],["-74.4449588","42.0436257"],["-74.4443834","42.0434408"],["-74.4441506","42.0433364"],["-74.4439637","42.0432039"],["-74.4437208","42.0429599"],["-74.4434734","42.0426437"],["-74.4432371","42.0423725"],["-74.4426785","42.0418242"],["-74.4425152","42.0416931"],["-74.4423072","42.0415913"],["-74.4416396","42.0413232"],["-74.4414025","42.0412004"],["-74.4412202","42.0410622"],["-74.4411127","42.0409387"],["-74.4410513","42.0407915"],["-74.44097","42.0403956"],["-74.4408991","42.0401737"],["-74.4407979","42.0400166"],["-74.4405766","42.0397526"],["-74.4402613","42.039382"],["-74.4396271","42.0385756"],["-74.4392121","42.0380144"],["-74.4389873","42.0376312"],["-74.4388187","42.0374106"],["-74.4385794","42.0371633"],["-74.4383676","42.0370003"],["-74.4381414","42.0368744"],["-74.4377919","42.0367446"],["-74.437405","42.036629"],["-74.4369251","42.0364631"],["-74.4362203","42.0361721"],["-74.435826","42.0360261"],["-74.4354541","42.0359317"],["-74.4350788","42.0358354"],["-74.4347454","42.0357151"],["-74.4342567","42.0354879"],["-74.4336614","42.0351652"],["-74.4331023","42.034866"],["-74.4327017","42.0346984"],["-74.4323922","42.0345506"],["-74.4317125","42.0341946"],["-74.4314816","42.0341011"],["-74.4311791","42.0340312"],["-74.4305687","42.0339348"],["-74.4298928","42.0338425"],["-74.4292027","42.0338368"],["-74.4280112","42.0338848"],["-74.4276364","42.0339152"],["-74.4274091","42.0339242"],["-74.4259435","42.033883"],["-74.4250764","42.0339211"],["-74.4241141","42.0340009"],["-74.4232918","42.034082"],["-74.4224439","42.0341821"],["-74.4220978","42.0342084"],["-74.4217754","42.0342017"],["-74.4214917","42.0341684"],["-74.4211338","42.034079"],["-74.4205242","42.033889"],["-74.4200873","42.0337411"],["-74.4198917","42.0336533"],["-74.4196173","42.0334603"],["-74.4192052","42.0330455"],["-74.4186402","42.0324161"],["-74.4183001","42.0321053"],["-74.4180599","42.0319342"],["-74.4174738","42.0315756"],["-74.4167431","42.0311338"],["-74.4156476","42.0304273"],["-74.4152747","42.0302205"],["-74.4149054","42.0300557"],["-74.4143033","42.0298289"],["-74.4132725","42.0294641"],["-74.4123627","42.0291417"],["-74.4119548","42.0290107"],["-74.4116604","42.0289312"],["-74.4099477","42.0285725"],["-74.4093231","42.0283937"],["-74.4089813","42.0282699"],["-74.4083996","42.0280073"],["-74.4075243","42.0275888"],["-74.4069977","42.0273582"],["-74.4067537","42.0272729"],["-74.4064262","42.0271882"],["-74.4051484","42.0269443"],["-74.4040794","42.0267787"],["-74.4038676","42.0267439"],["-74.403715","42.0266952"],["-74.4036291","42.0266498"],["-74.40357","42.0266005"],["-74.4035343","42.026541"],["-74.4035189","42.0264777"],["-74.4035257","42.0264386"],["-74.4035722","42.0263744"],["-74.4037434","42.0262921"],["-74.4049959","42.0259474"],["-74.4053714","42.0257963"],["-74.4056989","42.0255586"],["-74.4061242","42.0252054"],["-74.4064978","42.0248294"],["-74.406684","42.0245671"],["-74.4067776","42.0243019"],["-74.406814","42.0240874"],["-74.4068609","42.0239451"],["-74.4070137","42.0236493"],["-74.4071645","42.0234214"],["-74.4076587","42.0227893"],["-74.4082302","42.022014"],["-74.4085141","42.0215233"],["-74.4087306","42.0209781"],["-74.4090554","42.0199077"],["-74.4095251","42.0188525"],["-74.4098423","42.0179253"],["-74.4099583","42.0176344"],["-74.410077","42.017459"],["-74.4102994","42.0172569"],["-74.41062","42.0170703"],["-74.41109","42.0168293"],["-74.4113391","42.0166627"],["-74.4114772","42.0165134"],["-74.4117663","42.0160854"],["-74.4118482","42.0159934"],["-74.4120102","42.0158415"],["-74.4126347","42.0153079"],["-74.4131201","42.0148013"],["-74.4139419","42.0139195"],["-74.4141036","42.0137154"],["-74.4141606","42.0135908"],["-74.41422","42.0132936"],["-74.4142696","42.0127168"],["-74.4143022","42.0125876"],["-74.4143515","42.0124785"],["-74.4144488","42.0123448"],["-74.4147132","42.0120868"],["-74.4146719","42.0120299"],["-74.4146141","42.0119896"],["-74.4145582","42.0119648"],["-74.4146151","42.01199"],["-74.4146736","42.0120312"],["-74.4147145","42.0120852"],["-74.4144482","42.0123454"],["-74.4143505","42.0124801"],["-74.4143015","42.0125891"],["-74.4142698","42.012717"],["-74.4142196","42.0132943"],["-74.4141604","42.0135918"],["-74.4141038","42.0137153"],["-74.4139445","42.0139167"],["-74.4131195","42.0148021"],["-74.4126332","42.0153092"],["-74.4120188","42.015834"],["-74.4118443","42.0159973"],["-74.4117642","42.0160882"],["-74.4114776","42.0165128"],["-74.4113396","42.0166623"],["-74.4110948","42.0168266"],["-74.4106283","42.0170658"],["-74.4103009","42.0172558"],["-74.4100791","42.0174566"],["-74.409958","42.0176345"],["-74.4098391","42.0179345"],["-74.4095226","42.0188583"],["-74.4090489","42.0199243"],["-74.4087333","42.0209692"],["-74.4085093","42.0215334"],["-74.4082341","42.0220082"],["-74.4076599","42.0227875"],["-74.4071652","42.0234202"],["-74.4070162","42.0236445"],["-74.40686","42.0239473"],["-74.4068147","42.0240849"],["-74.4067783","42.0242994"],["-74.4066834","42.0245689"],["-74.4064937","42.0248341"],["-74.4061314","42.0251988"],["-74.4056912","42.0255646"],["-74.4053739","42.0257949"],["-74.4049908","42.0259486"],["-74.4037966","42.026278"],["-74.4035721","42.0263746"],["-74.4035258","42.0264386"],["-74.4035191","42.0264773"],["-74.4035337","42.0265401"],["-74.4035705","42.0266011"],["-74.4036296","42.0266499"],["-74.4037149","42.0266951"],["-74.4038677","42.0267439"],["-74.4040757","42.0267781"],["-74.405174","42.0269491"],["-74.4064265","42.0271881"],["-74.4067564","42.0272736"],["-74.4069937","42.0273568"],["-74.4074939","42.0275747"],["-74.4084108","42.0280124"],["-74.4089892","42.0282728"],["-74.409339","42.0283987"],["-74.4099374","42.0285701"],["-74.4116509","42.028929"],["-74.4119616","42.0290126"],["-74.4123473","42.0291359"],["-74.4133094","42.0294772"],["-74.4142733","42.0298181"],["-74.4148929","42.0300505"],["-74.4152826","42.0302245"],["-74.4156576","42.0304338"],["-74.4167552","42.0311414"],["-74.4174854","42.0315827"],["-74.4180584","42.0319333"],["-74.4182966","42.0321028"],["-74.4186405","42.032416"],["-74.4192021","42.0330417"],["-74.4196171","42.0334601"],["-74.4198884","42.0336516"],["-74.4200854","42.0337404"],["-74.4204978","42.0338804"],["-74.4211389","42.0340806"],["-74.4214898","42.034168"],["-74.4217772","42.0342017"],["-74.4221026","42.0342099"],["-74.4224516","42.0341812"],["-74.4232742","42.0340839"],["-74.4242211","42.0339913"],["-74.4250782","42.0339209"],["-74.425921","42.0338786"],["-74.4274255","42.0339256"],["-74.4276355","42.0339154"],["-74.4280368","42.0338834"],["-74.4293064","42.0338296"],["-74.4298785","42.0338414"],["-74.4305262","42.0339282"],["-74.431178","42.034031"],["-74.4314787","42.0341001"],["-74.4317224","42.0341997"],["-74.4324146","42.0345624"],["-74.4326933","42.034695"],["-74.4331089","42.0348692"],["-74.4336627","42.035166"],["-74.4342431","42.0354812"],["-74.4347507","42.0357171"],["-74.4350736","42.0358339"],["-74.4354318","42.035926"],["-74.4358286","42.036027"],["-74.4362129","42.0361692"],["-74.4369058","42.0364555"],["-74.4373893","42.0366241"],["-74.437783","42.0367416"],["-74.4381429","42.0368748"],["-74.4383659","42.0369991"],["-74.4385788","42.0371632"],["-74.4388158","42.0374075"],["-74.4389857","42.0376285"],["-74.4392159","42.0380198"],["-74.4396175","42.038563"],["-74.44027","42.0393921"],["-74.4405786","42.0397547"],["-74.4407978","42.0400166"],["-74.4408989","42.0401736"],["-74.4409703","42.0403958"],["-74.4410511","42.0407915"],["-74.4411132","42.0409397"],["-74.4412203","42.041062"],["-74.4414003","42.0411991"],["-74.441639","42.0413229"],["-74.442315","42.0415946"],["-74.4425153","42.0416935"],["-74.4426798","42.041825"],["-74.4432409","42.0423767"],["-74.4434793","42.0426511"],["-74.4437198","42.0429589"],["-74.4439613","42.0432013"],["-74.4441492","42.0433359"],["-74.4443767","42.0434385"],["-74.4449585","42.0436256"],["-74.4451498","42.0437164"],["-74.4452903","42.0438188"],["-74.4454906","42.0440504"],["-74.4462567","42.0450768"],["-74.447131","42.0462792"],["-74.4478901","42.0473303"],["-74.4489897","42.0487891"],["-74.4490859","42.0489102"],["-74.449236","42.049115"],["-74.4494128","42.0493543"],["-74.4495567","42.0494916"],["-74.4497375","42.0496173"],["-74.4499586","42.0497301"],["-74.4504838","42.0499562"],["-74.4506825","42.0500639"],["-74.4508333","42.0501738"],["-74.4511512","42.0504998"],["-74.451313","42.0506244"],["-74.4514867","42.0507086"],["-74.4522038","42.0509677"],["-74.4529347","42.0512221"],["-74.453099","42.0512978"],["-74.4532001","42.0513783"],["-74.4533865","42.0516161"],["-74.4537578","42.0521434"],["-74.4541508","42.0527037"],["-74.454362","42.0530258"],["-74.4546775","42.0535247"],["-74.4549297","42.0539587"],["-74.4550404","42.0542686"],["-74.4550921","42.0545933"],["-74.4550963","42.054876"],["-74.4550823","42.0550183"],["-74.4549478","42.0556615"],["-74.4548333","42.0562613"],["-74.4547388","42.0569573"],["-74.4547274","42.0571413"],["-74.4547367","42.0572829"],["-74.454759","42.0573907"],["-74.4547995","42.0575015"],["-74.4548832","42.0576695"],["-74.455102","42.0580072"],["-74.4552588","42.0582362"],["-74.4553817","42.0583974"],["-74.455508","42.0585357"],["-74.4557029","42.0587216"],["-74.4560668","42.0590598"],["-74.456427","42.0594581"],["-74.4567382","42.0598047"],["-74.4573079","42.0603315"],["-74.4574654","42.0605196"],["-74.4575708","42.0607019"],["-74.4577788","42.0611164"],["-74.4578533","42.0613713"],["-74.4579253","42.0617926"],["-74.4579741","42.0619294"],["-74.4580599","42.0620725"],["-74.4581638","42.0621944"],["-74.4585597","42.062606"],["-74.4587775","42.0629013"],["-74.459224","42.0635708"],["-74.4593926","42.0638631"],["-74.459512","42.0641932"],["-74.4596811","42.0648956"],["-74.4598088","42.0655443"],["-74.4598397","42.0658496"],["-74.4598453","42.0663491"],["-74.4598346","42.0669698"],["-74.4598051","42.067473"],["-74.4597511","42.0680821"],["-74.4597556","42.0683303"],["-74.4597906","42.0685188"],["-74.4598586","42.0687114"],["-74.4599802","42.068939"],["-74.4602852","42.0693839"],["-74.4603928","42.0695977"],["-74.4604596","42.0697991"],["-74.4604953","42.0700955"],["-74.4604923","42.0704489"],["-74.4604599","42.0706984"],["-74.4603985","42.0709278"],["-74.4603051","42.071126"],["-74.4601907","42.071276"],["-74.4600313","42.0714331"],["-74.4597825","42.0716585"],["-74.4595404","42.0718974"],["-74.4593308","42.0721306"],["-74.4589759","42.0725417"],["-74.4582401","42.073343"],["-74.4579461","42.0736573"],["-74.4570975","42.0744958"],["-74.4568858","42.0747989"],["-74.4565042","42.0755118"],["-74.4563424","42.0757652"],["-74.4560695","42.0760876"],["-74.4555529","42.0766857"],["-74.4548785","42.0775031"],["-74.4542864","42.0782471"],["-74.4540525","42.0785151"],["-74.453866","42.0786859"],["-74.4535781","42.0788868"],["-74.4528751","42.0793266"],["-74.4523816","42.0796586"],["-74.4516858","42.0801852"],["-74.4510182","42.0807014"],["-74.4503212","42.081355"],["-74.4499549","42.0816548"],["-74.4496336","42.0819072"],["-74.4495326","42.0820088"],["-74.4494659","42.0821058"],["-74.4494146","42.0822044"],["-74.4493344","42.0824454"],["-74.4490425","42.0835541"],["-74.4487992","42.0844689"],["-74.4486177","42.0851382"],["-74.448463","42.085671"],["-74.448277","42.0862328"],["-74.4482203","42.086533"],["-74.4481935","42.0869244"],["-74.4481905","42.0872834"],["-74.4482195","42.0875479"],["-74.4482957","42.0879249"],["-74.4484578","42.0886463"],["-74.4484962","42.0889129"],["-74.4484696","42.0891999"],["-74.4483667","42.0898919"],["-74.4482377","42.0903574"],["-74.448071","42.0908239"],["-74.4479649","42.0911717"],["-74.4479401","42.0914476"],["-74.4479588","42.0917687"],["-74.4480994","42.0926888"],["-74.4482902","42.0936274"],["-74.4484427","42.0941464"],["-74.4486397","42.0945479"],["-74.4488122","42.0948197"],["-74.4490491","42.0951469"],["-74.4491622","42.0953507"],["-74.44922","42.0955092"],["-74.4492561","42.0957102"],["-74.4492616","42.0959382"],["-74.4492384","42.096262"],["-74.4491859","42.0966331"],["-74.4491158","42.0970053"],["-74.4490248","42.097355"],["-74.4489255","42.0977008"],["-74.448825","42.0980169"],["-74.4487836","42.0981899"],["-74.4487793","42.0983277"],["-74.4487993","42.0985078"],["-74.4488665","42.0988292"],["-74.4489418","42.0991805"],["-74.4489608","42.0993364"],["-74.4489584","42.09945"],["-74.4489441","42.0995342"],["-74.4489175","42.0996144"],["-74.4488752","42.0997014"],["-74.4487624","42.0998464"],["-74.4486031","42.1000053"],["-74.448409","42.1001778"],["-74.4481644","42.1003763"],["-74.4479024","42.1005531"],["-74.4474536","42.1008102"],["-74.4470129","42.1010457"],["-74.4464469","42.1013624"],["-74.4459871","42.1016633"],["-74.4455694","42.1019409"],["-74.4453081","42.1021062"],["-74.4450357","42.1022692"],["-74.4447721","42.1023926"],["-74.4445452","42.1024915"],["-74.4443632","42.1025593"],["-74.4442152","42.1026069"],["-74.4440782","42.1026437"],["-74.4439416","42.1026729"],["-74.4434832","42.1027404"],["-74.4432198","42.1027523"],["-74.4427332","42.1025555"],["-74.4423015","42.1024003"],["-74.4418482","42.1022506"],["-74.4415176","42.1021706"],["-74.4410171","42.1020735"],["-74.4406445","42.1020238"],["-74.4403086","42.1019987"],["-74.4398619","42.1019802"],["-74.4395549","42.1019823"],["-74.4392864","42.1019907"],["-74.439065","42.1020106"],["-74.4387403","42.1020522"],["-74.4383108","42.1021167"],["-74.4378932","42.1021995"],["-74.4373711","42.1023405"],["-74.4368207","42.1025158"],["-74.4363925","42.1026689"],["-74.4360293","42.1028166"],["-74.4355485","42.1030351"],["-74.4349036","42.1033773"],["-74.4346008","42.1035608"],["-74.4343151","42.10374"],["-74.4340055","42.1039726"],["-74.4337663","42.1041782"],["-74.4334516","42.1044971"],["-74.4331398","42.1048988"],["-74.4318579","42.1069718"],["-74.4281497","42.1130402"],["-74.4278189","42.1135624"],["-74.4275856","42.1138598"],["-74.4273362","42.114116"],["-74.426976","42.1144137"],["-74.4266829","42.1146142"],["-74.4263993","42.1147857"],["-74.4261356","42.1149124"],["-74.4258914","42.1150217"],["-74.4255529","42.1151456"],["-74.4251475","42.1152614"],["-74.4247639","42.1153452"],["-74.4243999","42.1153981"],["-74.4240298","42.1154339"],["-74.4237411","42.1154418"],["-74.4234868","42.1154414"],["-74.4232052","42.1154286"],["-74.4224862","42.1153684"],["-74.4203939","42.1151943"],["-74.4194269","42.1151381"],["-74.4186718","42.115122"],["-74.4178089","42.1151232"],["-74.4168615","42.1151668"],["-74.4092616","42.1157707"],["-74.4085444","42.1158519"],["-74.4078244","42.1159716"],["-74.4072508","42.1160984"],["-74.4067574","42.116222"],["-74.4062001","42.1163962"],["-74.4019186","42.1178464"],["-74.4009904","42.1181192"],["-74.4003271","42.118296"],["-74.3991748","42.1185438"],["-74.3979154","42.1187665"],["-74.3950474","42.1192094"],["-74.3944429","42.119285"],["-74.3940252","42.1193217"],["-74.3935521","42.119345"],["-74.3931282","42.1193531"],["-74.3926341","42.1193473"],["-74.3921153","42.1193228"],["-74.3916141","42.1192796"],["-74.3909393","42.1191992"],["-74.3878097","42.1187714"],["-74.3862738","42.1186141"],["-74.3756043","42.1176569"],["-74.3744004","42.1174949"],["-74.3738383","42.1174022"],["-74.3733151","42.1172999"],["-74.3726522","42.1171491"],["-74.3719244","42.1169623"],["-74.3713383","42.1167887"],["-74.3686001","42.1158789"],["-74.3674157","42.1154992"],["-74.3667473","42.1153181"],["-74.3656623","42.115095"],["-74.3634394","42.1146391"],["-74.3626822","42.1144474"],["-74.3620985","42.1142706"],["-74.3613903","42.1140263"],["-74.3604811","42.1136725"],["-74.3601701","42.113534"],["-74.3595398","42.1132167"],["-74.3590434","42.1129431"],["-74.3561034","42.1112049"],["-74.3557596","42.1109906"],["-74.3554864","42.1108023"],["-74.3552866","42.110652"],["-74.355124","42.1105165"],["-74.3549167","42.1103292"],["-74.3547161","42.1101311"],["-74.3511217","42.1061919"],["-74.350362","42.1054339"],["-74.3484145","42.103612"],["-74.3464089","42.1018343"],["-74.3456578","42.1012212"],["-74.3439042","42.0998664"],["-74.3384348","42.0958329"],["-74.3377404","42.0953376"],["-74.3371287","42.09493"],["-74.3366955","42.0946479"],["-74.3355702","42.0939658"],["-74.3348723","42.0935277"],["-74.3345159","42.0932607"],["-74.3342864","42.093058"],["-74.3339883","42.0927548"],["-74.3336943","42.0923994"],["-74.3334681","42.0920669"],["-74.3333183","42.0917777"],["-74.3331819","42.0914623"],["-74.3330902","42.0911843"],["-74.3329783","42.090578"],["-74.3327485","42.0889336"],["-74.3325651","42.0876757"],["-74.3324568","42.0872734"],["-74.3323129","42.0869193"],["-74.3321762","42.0866629"],["-74.3319924","42.0863987"],["-74.3317928","42.0861429"],["-74.3315441","42.0858762"],["-74.3312244","42.0855873"],["-74.3309249","42.0853654"],["-74.33053","42.0851181"],["-74.3298905","42.0848006"],["-74.3277598","42.0838066"],["-74.3269601","42.0834439"],["-74.3260729","42.0830699"],["-74.3251057","42.0827059"],["-74.3238185","42.0822813"],["-74.3220509","42.0817219"],["-74.3209382","42.081389"],["-74.3206471","42.0813202"],["-74.3201551","42.0812244"],["-74.3199256","42.0811941"],["-74.3197064","42.0811702"],["-74.3194772","42.0811532"],["-74.319261","42.0811415"],["-74.3190302","42.0811329"],["-74.3185309","42.0811402"],["-74.3178556","42.0811723"],["-74.3178279","42.0813684"],["-74.3178036","42.0814362"],["-74.3177607","42.0814898"],["-74.3176963","42.0815333"],["-74.3176179","42.0815619"],["-74.3175092","42.081574"],["-74.3172529","42.0815729"],["-74.3171503","42.0815814"],["-74.31707","42.0816023"],["-74.3170074","42.0816298"],["-74.3169381","42.0816854"],["-74.3167099","42.081975"],["-74.3166118","42.0820962"],["-74.3163858","42.082348"],["-74.3162862","42.0824452"],["-74.3161893","42.0825274"],["-74.3161045","42.0825929"],["-74.3160211","42.0826515"],["-74.3159368","42.0827065"],["-74.3158413","42.0827658"],["-74.3156738","42.0828537"],["-74.3152588","42.0830687"],["-74.315753","42.0835409"],["-74.3159205","42.0836818"],["-74.3161641","42.0838634"],["-74.3164207","42.0840536"],["-74.3166599","42.0842337"],["-74.3168101","42.0843567"],["-74.3169782","42.0845029"],["-74.3171638","42.0846795"],["-74.3173525","42.0848769"],["-74.317525","42.0850863"],["-74.3176497","42.0852656"],["-74.3177634","42.0854388"],["-74.317837","42.0855784"],["-74.3178837","42.0856944"],["-74.3179234","42.0858138"],["-74.317928","42.0859206"],["-74.317927","42.0860215"],["-74.3179151","42.0861386"],["-74.3178513","42.0865762"],["-74.3178467","42.0866939"],["-74.3178528","42.0868026"],["-74.3178935","42.0869696"],["-74.318023","42.0874381"],["-74.3180891","42.0876616"],["-74.3181282","42.0877683"],["-74.3181694","42.087848"],["-74.3182443","42.0879479"],["-74.3183895","42.0880766"],["-74.3185939","42.0882121"],["-74.3187467","42.0882954"],["-74.3188817","42.088362"],["-74.3190088","42.0884082"],["-74.3191551","42.088458"],["-74.3192792","42.0884991"],["-74.3194042","42.0885478"],["-74.319626","42.0886553"],["-74.3201681","42.0889694"],["-74.3203432","42.0890869"],["-74.3204522","42.0891972"],["-74.3205164","42.0892852"],["-74.320565","42.0893772"],["-74.3205933","42.0894618"],["-74.3206104","42.0895487"],["-74.3206201","42.0896528"],["-74.320616","42.0897535"],["-74.3205983","42.0898613"],["-74.32056","42.0899786"],["-74.3204932","42.0901033"],["-74.3203707","42.0902843"],["-74.320094","42.0906467"],["-74.3193783","42.0915319"],["-74.3192358","42.091711"],["-74.3191508","42.0918347"],["-74.3190873","42.0919448"],["-74.3190483","42.0920331"],["-74.3190248","42.0921069"],["-74.3190154","42.0921718"],["-74.3190109","42.0922611"],["-74.3190224","42.0923854"],["-74.3190597","42.0926354"],["-74.3191531","42.0932105"],["-74.3191982","42.093665"],["-74.3192468","42.094033"],["-74.3192486","42.0941992"],["-74.3192236","42.0943301"],["-74.3191664","42.0944675"],["-74.3190458","42.09472"],["-74.3188509","42.0952162"],["-74.3187307","42.0954436"],["-74.3178649","42.0969243"],["-74.3176599","42.0972177"],["-74.317375","42.0975451"],["-74.3170944","42.0978446"],["-74.316838","42.0981039"],["-74.3165701","42.0982996"],["-74.3163007","42.0984572"],["-74.3160051","42.0986237"],["-74.3156275","42.0988526"],["-74.3154083","42.0990525"],["-74.3151388","42.0994067"],["-74.3148288","42.0998457"],["-74.3146331","42.1001064"],["-74.3144714","42.1002774"],["-74.3140433","42.1007164"],["-74.3137321","42.1010764"],["-74.3135801","42.1012452"],["-74.3134762","42.1013346"],["-74.3133829","42.1014033"],["-74.3132894","42.1014593"],["-74.3131741","42.1015141"],["-74.3128163","42.1016497"],["-74.3123842","42.101807"],["-74.3120675","42.1019019"],["-74.3119359","42.10192"],["-74.3118102","42.1019332"],["-74.3087819","42.1019688"],["-74.3085018","42.1019671"],["-74.308324","42.1019616"],["-74.3081616","42.1019481"],["-74.3079783","42.1019252"],["-74.3078002","42.1018986"],["-74.3076363","42.1018646"],["-74.3075014","42.1018315"],["-74.3073398","42.1017853"],["-74.3072013","42.1017345"],["-74.307072","42.1016763"],["-74.3068872","42.1015691"],["-74.3066197","42.1013914"],["-74.3063307","42.1011869"],["-74.3061611","42.1010926"],["-74.3060398","42.1010418"],["-74.3058796","42.1010004"],["-74.3057033","42.1009844"],["-74.305529","42.100993"],["-74.305408","42.1010211"],["-74.3052704","42.1010883"],["-74.3051443","42.1011813"],["-74.3049573","42.1013611"],["-74.3048223","42.1014849"],["-74.3046934","42.101565"],["-74.3045679","42.1016293"],["-74.3043989","42.1016984"],["-74.3042121","42.1017581"],["-74.3040253","42.1018065"],["-74.30383","42.1018373"],["-74.3036462","42.1018421"],["-74.3034273","42.1018216"],["-74.3031387","42.1017711"],["-74.302869","42.1017061"],["-74.3026556","42.1016425"],["-74.3024449","42.101548"],["-74.3019667","42.1012875"],["-74.301616","42.1011747"],["-74.301486","42.101156"],["-74.301345","42.1011523"],["-74.3012191","42.1011623"],["-74.3011116","42.1011924"],["-74.3010171","42.1012349"],["-74.3008736","42.1013319"],["-74.3005926","42.1015633"],["-74.3002606","42.1018238"],["-74.3000984","42.1019633"],["-74.2999742","42.1020747"],["-74.299881","42.1021486"],["-74.2997919","42.1022092"],["-74.2996904","42.1022649"],["-74.2995507","42.1023232"],["-74.2993921","42.1023724"],["-74.299196","42.1024177"],["-74.2989693","42.1024589"],["-74.2987247","42.1024943"],["-74.2985434","42.1025054"],["-74.298341","42.1025018"],["-74.2980104","42.1024796"],["-74.2979121","42.1024768"],["-74.2978191","42.1024831"],["-74.2977105","42.1025077"],["-74.2976033","42.102541"],["-74.2974832","42.1026036"],["-74.2973487","42.1026957"],["-74.2972269","42.1027958"],["-74.2971439","42.1028846"],["-74.2970592","42.1029918"],["-74.2968776","42.1032563"],["-74.296735","42.1034636"],["-74.2966323","42.1036127"],["-74.2965437","42.1037278"],["-74.2963852","42.1038928"],["-74.2963173","42.1039581"],["-74.296222","42.1040376"],["-74.2960801","42.1041315"],["-74.295922","42.104218"],["-74.2957111","42.1043148"],["-74.2953639","42.1044528"],["-74.2948807","42.1046554"],["-74.2939732","42.1050791"],["-74.2933925","42.1053485"],["-74.293247","42.1054394"],["-74.2931327","42.1055193"],["-74.2930217","42.1056"],["-74.2928958","42.1056875"],["-74.2927896","42.1057488"],["-74.2926502","42.1058147"],["-74.2925206","42.1058585"],["-74.2923853","42.1058974"],["-74.2922392","42.1059274"],["-74.2920623","42.1059552"],["-74.2918626","42.1059727"],["-74.29161","42.1059871"],["-74.2913868","42.1060035"],["-74.2911624","42.1060342"],["-74.2908412","42.1061214"],["-74.2884499","42.106869"],["-74.2866728","42.107389"],["-74.2860058","42.1075687"],["-74.2853688","42.1077433"],["-74.2846053","42.1079716"],["-74.2842793","42.1080937"],["-74.2840215","42.1082146"],["-74.2837687","42.1083443"],["-74.2835323","42.1084825"],["-74.2833799","42.1085846"],["-74.2832952","42.1086512"],["-74.2832152","42.1087263"],["-74.2831318","42.1088328"],["-74.2830792","42.1089194"],["-74.2829913","42.1091019"],["-74.2828801","42.1093444"],["-74.2827405","42.1096521"],["-74.2826214","42.1098816"],["-74.2824519","42.1101694"],["-74.2823148","42.1103792"],["-74.2821999","42.1105373"],["-74.2820806","42.1106762"],["-74.2819707","42.1107898"],["-74.2818242","42.1109207"],["-74.2816974","42.1110264"],["-74.2815885","42.1111204"],["-74.2814988","42.1112103"],["-74.2813877","42.1113369"],["-74.2812364","42.1115397"],["-74.2810437","42.1118406"],["-74.2808711","42.1121391"],["-74.2807151","42.112433"],["-74.2805849","42.1126788"],["-74.280463","42.1128932"],["-74.2803721","42.1130299"],["-74.2802133","42.1132371"],["-74.2800523","42.113421"],["-74.2798741","42.1135979"],["-74.2795143","42.1138951"],["-74.2776886","42.1152387"],["-74.2774584","42.1154288"],["-74.2772628","42.1156001"],["-74.2771027","42.115765"],["-74.2769408","42.1159532"],["-74.2767246","42.1162375"],["-74.2764733","42.1165794"],["-74.2761852","42.116973"],["-74.2760318","42.1171587"],["-74.2757891","42.117411"],["-74.2755573","42.1176101"],["-74.2753332","42.1177786"],["-74.2751078","42.1179308"],["-74.2749162","42.1180461"],["-74.2747126","42.11815"],["-74.2744293","42.1182815"],["-74.2742241","42.1183666"],["-74.2739734","42.1184569"],["-74.2730624","42.118761"],["-74.272649","42.1189044"],["-74.272249","42.1190606"],["-74.2720336","42.1191614"],["-74.2717721","42.1192995"],["-74.2715573","42.1194304"],["-74.2712483","42.1196563"],["-74.2710454","42.1198222"],["-74.2708001","42.1200477"],["-74.2703217","42.1205158"],["-74.268685","42.1221168"],["-74.2683147","42.1224859"],["-74.268142","42.1226844"],["-74.2679988","42.1228592"],["-74.2678527","42.1230748"],["-74.2677319","42.1232895"],["-74.2675541","42.1236735"],["-74.2671752","42.1245311"],["-74.2670176","42.1248548"],["-74.2669057","42.1250528"],["-74.2668034","42.1252069"],["-74.2666692","42.1253953"],["-74.2665784","42.1255042"],["-74.2664362","42.1256591"],["-74.2660597","42.1260872"],["-74.2658631","42.1263288"],["-74.2657652","42.1264651"],["-74.2655426","42.126864"],["-74.2651619","42.127566"],["-74.265024","42.1277941"],["-74.2649291","42.1279303"],["-74.264789","42.1280995"],["-74.2646401","42.128261"],["-74.2644749","42.1284213"],["-74.2643413","42.1285319"],["-74.2641857","42.1286495"],["-74.2639335","42.1288229"],["-74.2637244","42.1289549"],["-74.2635361","42.1290631"],["-74.2633272","42.1291681"],["-74.2631416","42.1292548"],["-74.2629727","42.1293186"],["-74.2598177","42.1303284"],["-74.2574044","42.1310223"],["-74.2570944","42.1310885"],["-74.2568295","42.1311346"],["-74.2565787","42.1311686"],["-74.2563183","42.1311915"],["-74.2559979","42.1312036"],["-74.2557356","42.131203"],["-74.2554929","42.1311935"],["-74.2552536","42.1311727"],["-74.2550116","42.1311405"],["-74.2547362","42.131091"],["-74.254377","42.1310121"],["-74.2524354","42.1305355"],["-74.2521541","42.1304748"],["-74.2519415","42.1304375"],["-74.2517132","42.130404"],["-74.251457","42.1303767"],["-74.2511975","42.1303565"],["-74.2509492","42.1303465"],["-74.2506907","42.1303462"],["-74.2502775","42.1303647"],["-74.2474126","42.1305841"],["-74.2470775","42.1305972"],["-74.2458782","42.1306177"],["-74.2452468","42.1306536"],["-74.2444657","42.1307094"],["-74.2439704","42.1307299"],["-74.2434299","42.1307132"],["-74.2423413","42.1306575"],["-74.2419548","42.1306598"],["-74.2416478","42.130675"],["-74.2413949","42.1306953"],["-74.2411533","42.1307315"],["-74.2408796","42.1307843"],["-74.2406495","42.1308334"],["-74.240329","42.1309284"],["-74.2399056","42.1310856"],["-74.2394643","42.1312662"],["-74.2384202","42.1317103"],["-74.237867","42.131932"],["-74.2371029","42.1321593"],["-74.2352223","42.1326966"],["-74.2347738","42.1328301"],["-74.2342949","42.1330052"],["-74.2338324","42.1331783"],["-74.2332459","42.1333987"],["-74.2330317","42.1334652"],["-74.232739","42.1335386"],["-74.2324062","42.1335983"],["-74.2319264","42.1336671"],["-74.231453","42.1337248"],["-74.2310671","42.1337774"],["-74.230702","42.1338444"],["-74.2304229","42.133913"],["-74.229733","42.1341292"],["-74.228981","42.1343767"],["-74.228295","42.1346057"],["-74.2264904","42.1352176"],["-74.2257999","42.1354379"],["-74.2253148","42.1355741"],["-74.2239813","42.1358993"],["-74.2235272","42.1360344"],["-74.2231922","42.1361506"],["-74.221714","42.1367214"],["-74.2179225","42.1380044"],["-74.2173917","42.1381924"],["-74.2170999","42.1383123"],["-74.2163473","42.1386694"],["-74.2142932","42.1396724"],["-74.2137928","42.1399304"],["-74.2135289","42.1400907"],["-74.213314","42.1402412"],["-74.2131252","42.1403949"],["-74.2129461","42.1405592"],["-74.2127576","42.1407608"],["-74.2126557","42.140887"],["-74.2125452","42.1410392"],["-74.2124531","42.1411852"],["-74.2123619","42.1413547"],["-74.2122904","42.1415199"],["-74.2122118","42.1417449"],["-74.212169","42.1419305"],["-74.2121375","42.1421101"],["-74.212057","42.1427081"],["-74.2120151","42.14296"],["-74.2119597","42.1431533"],["-74.211899","42.1433325"],["-74.2118164","42.1435072"],["-74.2117079","42.1436729"],["-74.2112757","42.1442422"],["-74.2108554","42.1447324"],["-74.2105742","42.1450693"],["-74.2104356","42.1452703"],["-74.2102956","42.1454853"],["-74.2102108","42.1456461"],["-74.2101604","42.1457992"],["-74.2100792","42.1461379"],["-74.2100407","42.146405"],["-74.2099621","42.1468349"],["-74.209861","42.1471499"],["-74.2097855","42.1473328"],["-74.2096821","42.1475414"],["-74.2094698","42.1479041"],["-74.209299","42.1482209"],["-74.2091395","42.1485427"],["-74.2090403","42.1487785"],["-74.2089732","42.1489943"],["-74.2089074","42.149196"],["-74.2088564","42.1493547"],["-74.2087915","42.1495113"],["-74.2086944","42.1497138"],["-74.2085308","42.1499963"],["-74.2083655","42.1502627"],["-74.2081307","42.1506756"],["-74.2078593","42.1511278"],["-74.2065107","42.1534959"],["-74.2063209","42.1538715"],["-74.2059385","42.1546583"],["-74.2057426","42.1550667"],["-74.2055519","42.1554727"],["-74.2054149","42.1557804"],["-74.2053256","42.1560206"],["-74.2052489","42.1563081"],["-74.2052005","42.1566266"],["-74.2051314","42.1571885"],["-74.205101","42.1573332"],["-74.205039","42.1575522"],["-74.2049861","42.1576862"],["-74.2049073","42.1578538"],["-74.2048179","42.1580188"],["-74.2047345","42.1581508"],["-74.2046472","42.1582716"],["-74.2045416","42.1584016"],["-74.2043616","42.158598"],["-74.204141","42.1588078"],["-74.2034558","42.1593392"],["-74.2032949","42.1594729"],["-74.2032065","42.1595584"],["-74.2030865","42.1596867"],["-74.2029122","42.1599259"],["-74.2027994","42.1601086"],["-74.2027058","42.1602722"],["-74.2026233","42.1604884"],["-74.2025425","42.1607965"],["-74.2022509","42.1621419"],["-74.2021754","42.1624321"],["-74.2018905","42.1634127"],["-74.2017487","42.1639219"],["-74.2016488","42.1643599"],["-74.2014841","42.1649834"],["-74.2012756","42.165593"],["-74.2010991","42.166032"],["-74.2006059","42.167208"],["-74.2003086","42.1679408"],["-74.2001115","42.1684605"],["-74.1999995","42.1688486"],["-74.1998974","42.1692574"],["-74.1998172","42.1697477"],["-74.1996711","42.1706677"],["-74.1988944","42.1751294"],["-74.1987455","42.175746"],["-74.1985512","42.1763217"],["-74.1984476","42.1766396"],["-74.1983904","42.17684"],["-74.1983539","42.1770227"],["-74.1983291","42.1771945"],["-74.1983206","42.177478"],["-74.1983167","42.1778918"],["-74.1982952","42.1782068"],["-74.1982561","42.1784076"],["-74.198214","42.1785712"],["-74.1981729","42.1787042"],["-74.1980314","42.1789951"],["-74.1979497","42.1791331"],["-74.1978236","42.1793119"],["-74.197529","42.1796817"],["-74.1973202","42.1799564"],["-74.1972243","42.1801024"],["-74.1971217","42.1802799"],["-74.1970702","42.1803988"],["-74.1970329","42.1804872"],["-74.1969821","42.1806162"],["-74.1969292","42.1808646"],["-74.1968966","42.1810603"],["-74.1967823","42.1815652"],["-74.1966843","42.1818383"],["-74.1965913","42.1820424"],["-74.1965135","42.1821852"],["-74.1962913","42.1825536"],["-74.1961187","42.1827981"],["-74.1958292","42.1831325"],["-74.193961","42.1850108"],["-74.1938275","42.185141"],["-74.1935621","42.1853988"],["-74.1920898","42.1868719"],["-74.1919602","42.1870045"],["-74.1918391","42.1871387"],["-74.1916784","42.1873302"],["-74.1915548","42.1875129"],["-74.1914032","42.1877861"],["-74.1911943","42.1882137"],["-74.1909878","42.1886308"],["-74.1909085","42.1887463"],["-74.1907668","42.1889224"],["-74.1905935","42.189099"],["-74.1904369","42.1892398"],["-74.1902495","42.1893793"],["-74.1900412","42.1895104"],["-74.1898278","42.1896315"],["-74.1895488","42.1897454"],["-74.1892006","42.1898614"],["-74.1847975","42.1911194"],["-74.1845756","42.1911965"],["-74.184405","42.1912647"],["-74.1841894","42.19136"],["-74.1833307","42.1917948"],["-74.1829348","42.1920028"],["-74.1791461","42.1939627"],["-74.1787921","42.193762"],["-74.1784278","42.193561"],["-74.1779135","42.193299"],["-74.177427","42.1930635"],["-74.1770441","42.1929167"],["-74.1766826","42.1927932"],["-74.176162","42.1926413"],["-74.1748362","42.1923349"],["-74.1731356","42.1919771"],["-74.1722777","42.1918249"],["-74.1716857","42.1917513"],["-74.1711363","42.1917094"],["-74.1690705","42.1916376"],["-74.1680688","42.1916244"],["-74.1674735","42.1916447"],["-74.1611296","42.1922961"],["-74.1605757","42.1923675"],["-74.1602515","42.1924271"],["-74.1598944","42.1924985"],["-74.159525","42.1925861"],["-74.1588382","42.1927721"],["-74.1581046","42.1930156"],["-74.1554102","42.1939804"],["-74.1540957","42.1944196"],["-74.1533882","42.1946463"],["-74.1528053","42.1948306"],["-74.1516853","42.1951551"],["-74.1509253","42.1953523"],["-74.1505915","42.1954321"],["-74.1479654","42.195942"],["-74.1477833","42.1959685"],["-74.1471563","42.1960264"],["-74.146849","42.1960319"],["-74.1464985","42.1960185"],["-74.1461646","42.1959896"],["-74.1459136","42.1959614"],["-74.1456343","42.1959259"],["-74.143601","42.1955035"],["-74.1429696","42.1953987"],["-74.1426105","42.195363"],["-74.1422156","42.1953393"],["-74.1414986","42.1953235"],["-74.141298","42.1953276"],["-74.1410422","42.1953344"],["-74.140125","42.1953655"],["-74.1392299","42.1954058"],["-74.1384989","42.1954561"],["-74.137527","42.1955679"],["-74.1374401","42.1955803"],["-74.1373737","42.1955893"],["-74.137006","42.1956383"],["-74.1367811","42.1956707"],["-74.1364901","42.1956937"],["-74.1360795","42.1957074"],["-74.1269687","42.1957251"],["-74.1248164","42.1956387"],["-74.1235802","42.1956206"],["-74.1233586","42.1956226"],["-74.122454","42.1956504"],["-74.1172192","42.1959384"],["-74.1169145","42.1959757"],["-74.1165146","42.1960453"],["-74.1161109","42.1961421"],["-74.1150877","42.1964147"],["-74.1145125","42.1965533"],["-74.1140182","42.1966421"],["-74.1122243","42.1968986"],["-74.1111004","42.1970526"],["-74.1105894","42.197108"],["-74.1102725","42.1971229"],["-74.1099841","42.197125"],["-74.1095475","42.1971007"],["-74.1092548","42.1970654"],["-74.1088827","42.196999"],["-74.1084738","42.1969077"],["-74.1070944","42.1965045"],["-74.1063095","42.1962679"],["-74.1037228","42.1953461"],["-74.1032929","42.1952162"],["-74.103076","42.1951616"],["-74.1029009","42.1951389"],["-74.1021905","42.1951246"],["-74.1014902","42.1951195"],["-74.1012157","42.1951305"],["-74.101039","42.1951461"],["-74.1008219","42.195178"],["-74.100604","42.1952301"],["-74.1003746","42.195304"],["-74.1002073","42.1953706"],["-74.1000328","42.1954552"],["-74.0994029","42.1958153"],["-74.0992068","42.1959145"],["-74.0989579","42.1960136"],["-74.0986964","42.1960758"],["-74.0984585","42.196104"],["-74.0982049","42.1961032"],["-74.0979934","42.1960815"],["-74.0977765","42.1960415"],["-74.0974972","42.195977"],["-74.0971303","42.1958744"],["-74.0961555","42.1955193"],["-74.0957692","42.1953827"],["-74.0955055","42.1953114"],["-74.0950995","42.1952249"],["-74.0946664","42.195133"],["-74.094262","42.1950418"],["-74.0939961","42.1949672"],["-74.0936684","42.1948416"],["-74.0932443","42.1946449"],["-74.0930019","42.1945428"],["-74.0927752","42.1944657"],["-74.0924133","42.1943741"],["-74.0920626","42.1943087"],["-74.0917197","42.1942641"],["-74.091229","42.1942314"],["-74.0903969","42.1942102"],["-74.0901266","42.1942197"],["-74.0896533","42.1942606"],["-74.0869931","42.1944649"],["-74.0866142","42.1944849"],["-74.0858652","42.1945177"],["-74.0856257","42.1945091"],["-74.085417","42.1944865"],["-74.085222","42.1944465"],["-74.0849373","42.1943606"],["-74.0841287","42.1940523"],["-74.0834602","42.1938734"],["-74.0824089","42.1935971"],["-74.0812967","42.1933054"],["-74.0808752","42.1931991"],["-74.0806828","42.1931797"],["-74.0804069","42.1931809"],["-74.0799891","42.1931949"],["-74.079831","42.1931937"],["-74.0797063","42.1931695"],["-74.0796037","42.1931389"],["-74.0794598","42.1930683"],["-74.078639","42.1925962"],["-74.0784333","42.1924707"],["-74.0782775","42.1923467"],["-74.0781005","42.1921885"],["-74.0778991","42.1919994"],["-74.077707","42.1918211"],["-74.0774634","42.1916285"],["-74.0772259","42.1914555"],["-74.0769191","42.1912681"],["-74.0765461","42.1910517"],["-74.0762055","42.190861"],["-74.0757638","42.1906356"],["-74.0752237","42.190384"],["-74.0745174","42.1900702"],["-74.074289","42.1899962"],["-74.0741631","42.1899763"],["-74.0740635","42.189973"],["-74.0739526","42.1899816"],["-74.0738283","42.1900012"],["-74.0737162","42.1900348"],["-74.0735821","42.1900951"],["-74.0734436","42.1901942"],["-74.072967","42.1906491"],["-74.0728433","42.1907596"],["-74.0726987","42.1908427"],["-74.0725042","42.190942"],["-74.0719477","42.1912016"],["-74.0716644","42.1913097"],["-74.071478","42.191363"],["-74.0713182","42.1914014"],["-74.0711689","42.1914324"],["-74.0710572","42.1914451"],["-74.0709616","42.1914415"],["-74.0708884","42.1914248"],["-74.0708278","42.1913888"],["-74.0707777","42.19135"],["-74.0707322","42.1913176"],["-74.0707087","42.1912922"],["-74.0706331","42.1912083"],["-74.0706124","42.1911848"],["-74.0705856","42.1911423"],["-74.0705682","42.1911014"],["-74.0705693","42.191044"],["-74.0705765","42.1909883"],["-74.0706161","42.1909314"],["-74.0706764","42.1908836"],["-74.0707904","42.190813"],["-74.0709771","42.190709"],["-74.0711637","42.1905938"],["-74.0712994","42.1904946"],["-74.071399","42.190391"],["-74.0715446","42.1901975"],["-74.0717193","42.1899463"],["-74.071774","42.1898332"],["-74.071806","42.1896855"],["-74.0717972","42.1895202"],["-74.0717593","42.1891542"],["-74.0717606","42.1890167"],["-74.0717708","42.1889419"],["-74.0717931","42.1888694"],["-74.0718258","42.1888039"],["-74.071894","42.1886966"],["-74.0719884","42.1885882"],["-74.0720303","42.1885279"],["-74.0720626","42.1884677"],["-74.072071","42.1883729"],["-74.0720573","42.1879326"],["-74.071986","42.1871953"],["-74.0719235","42.1869309"],["-74.0718407","42.1867418"],["-74.0716911","42.1865155"],["-74.0714562","42.1862273"],["-74.0712378","42.1859891"],["-74.0710533","42.1858312"],["-74.0707221","42.1856552"],["-74.0698891","42.185244"],["-74.0696999","42.1851307"],["-74.0695366","42.1849728"],["-74.0691769","42.1846138"],["-74.0688654","42.1843472"],["-74.0686351","42.184185"],["-74.068351","42.1840126"],["-74.0681104","42.1839244"],["-74.0675999","42.1837705"],["-74.0674271","42.1837155"],["-74.0672792","42.1836589"],["-74.0670058","42.1835218"],["-74.0663054","42.1831008"],["-74.0660169","42.1829344"],["-74.0655758","42.182737"],["-74.0644243","42.1822683"],["-74.0634181","42.1818374"],["-74.063063","42.181662"],["-74.0624971","42.1813179"],["-74.0623267","42.1811862"],["-74.0622712","42.1811213"],["-74.0622233","42.1810423"],["-74.0621571","42.1808872"],["-74.062089","42.1807923"],["-74.061655","42.1804423"],["-74.0609591","42.179905"],["-74.0605783","42.1795807"],["-74.0604114","42.1793692"],["-74.0601914","42.1790447"],["-74.0600208","42.1788844"],["-74.0598745","42.178786"],["-74.0595478","42.1786225"],["-74.0591116","42.1784141"],["-74.0588417","42.1782783"],["-74.0586075","42.1781515"],["-74.0583803","42.1779958"],["-74.0580999","42.1777816"],["-74.0578488","42.1775948"],["-74.0577197","42.1775242"],["-74.0576057","42.1774859"],["-74.0574914","42.177469"],["-74.0572771","42.1774706"],["-74.0571175","42.1774639"],["-74.0569921","42.1774365"],["-74.0568772","42.1773948"],["-74.0566488","42.1772869"],["-74.0565018","42.177236"],["-74.0563393","42.1771975"],["-74.0561695","42.1771866"],["-74.0559016","42.1772044"],["-74.0555775","42.1772292"],["-74.0553784","42.1772273"],["-74.0551977","42.1772055"],["-74.0549862","42.1771473"],["-74.0545142","42.1769829"],["-74.0543066","42.1769264"],["-74.054137","42.1768905"],["-74.0539404","42.1768737"],["-74.0537247","42.1768719"],["-74.0532054","42.1768817"],["-74.0529324","42.1769053"],["-74.052654","42.1769451"],["-74.0524027","42.1769991"],["-74.0514753","42.1772588"],["-74.0513655","42.1772989"],["-74.0512517","42.1773509"],["-74.0511171","42.1774384"],["-74.0508865","42.1776361"],["-74.0507637","42.1777279"],["-74.0506668","42.1777894"],["-74.0505419","42.1778458"],["-74.050422","42.1778757"],["-74.0502886","42.1778805"],["-74.050144","42.1778557"],["-74.0500027","42.177788"],["-74.0495673","42.1775064"],["-74.0494183","42.1774348"],["-74.0492567","42.1773764"],["-74.0489897","42.1772959"],["-74.0486804","42.1772099"],["-74.0484039","42.1771226"],["-74.0481539","42.1770106"],["-74.0478248","42.176876"],["-74.0471653","42.1767204"],["-74.0465092","42.1765771"],["-74.0460799","42.1765156"],["-74.0457278","42.1764804"],["-74.0455193","42.1764702"],["-74.0453656","42.1764681"],["-74.0452279","42.1764774"],["-74.0451028","42.1764989"],["-74.044978","42.1765375"],["-74.044821","42.1766096"],["-74.0446174","42.1767276"],["-74.0445084","42.1767705"],["-74.0443994","42.1767849"],["-74.0442703","42.1767775"],["-74.043959","42.1766971"],["-74.0436184","42.1766064"],["-74.0434055","42.1765646"],["-74.0431488","42.1765457"],["-74.0428858","42.1765154"],["-74.0424672","42.176435"],["-74.0407061","42.1760862"],["-74.0404127","42.1760477"],["-74.0401844","42.1760346"],["-74.0400282","42.1760462"],["-74.0398683","42.1760659"],["-74.0396163","42.1761147"],["-74.0380702","42.1764555"],["-74.0369069","42.176774"],["-74.0367221","42.1768234"],["-74.0366126","42.1768444"],["-74.0363174","42.1768824"],["-74.0355646","42.1769591"],["-74.0352725","42.1769785"],["-74.0351324","42.1769736"],["-74.0349691","42.1769582"],["-74.0345585","42.1769043"],["-74.0342959","42.1768872"],["-74.034063","42.1768916"],["-74.0336494","42.1769224"],["-74.0333885","42.1769353"],["-74.033173","42.1769251"],["-74.0329238","42.1768956"],["-74.0326842","42.1768546"],["-74.0325046","42.1768147"],["-74.0323168","42.1767629"],["-74.0299368","42.1759397"],["-74.0295335","42.1758187"],["-74.0280402","42.1755102"],["-74.0275556","42.1754132"],["-74.0274164","42.1753903"],["-74.027263","42.1753762"],["-74.0270288","42.1753682"],["-74.0262557","42.175364"],["-74.02556","42.1753558"],["-74.0241342","42.1752606"],["-74.0205657","42.1748539"],["-74.020137","42.1747931"],["-74.019473","42.1748358"],["-74.0191446","42.174873"],["-74.0184527","42.1749613"],["-74.0176425","42.175072"],["-74.0162295","42.175268"],["-74.0159613","42.1753235"],["-74.0156793","42.1753973"],["-74.0154585","42.1754681"],["-74.009225","42.1779815"],["-74.0082953","42.1783521"],["-74.0075452","42.1786289"],["-74.0065312","42.1789452"],["-74.0055986","42.179247"],["-74.0051531","42.1793866"],["-74.0048276","42.1794781"],["-74.0045294","42.1795457"],["-74.0036235","42.1797146"],["-74.0030998","42.1798176"],["-74.0026764","42.179924"],["-74.002394","42.1800171"],["-74.0020958","42.1801445"],["-74.0017448","42.1803182"],["-74.000399","42.1810746"],["-73.9999025","42.1813688"],["-73.9996688","42.181546"],["-73.9986057","42.1824331"],["-73.9979389","42.182989"],["-73.9976775","42.1831915"],["-73.9974336","42.1833559"],["-73.9972028","42.1834834"],["-73.9970239","42.1835698"],["-73.9964753","42.1838062"],["-73.9955701","42.184172"],["-73.99529","42.1843004"],["-73.9949399","42.1844982"],["-73.9946796","42.1846585"],["-73.9944073","42.184857"],["-73.9941892","42.1850463"],["-73.993933","42.1852939"],["-73.9937709","42.185472"],["-73.9936356","42.1856445"],["-73.9934147","42.1859643"],["-73.991948","42.1886208"],["-73.9915898","42.1892537"],["-73.9914048","42.1894963"],["-73.9912213","42.1896919"],["-73.9908167","42.1900098"],["-73.9905457","42.1901935"],["-73.9901652","42.1904159"],["-73.9899819","42.1905204"],["-73.9897097","42.1906695"],["-73.988311","42.1913788"],["-73.9874714","42.1917521"],["-73.9861798","42.1922826"],["-73.9855959","42.1925162"],["-73.9809039","42.1944242"],["-73.9806103","42.1945138"],["-73.9800019","42.1946507"],["-73.9790488","42.1947762"],["-73.976904","42.1949849"],["-73.9766037","42.1950443"],["-73.9761693","42.1951493"],["-73.9759042","42.1952456"],["-73.9754062","42.1954773"],["-73.9749865","42.1956647"],["-73.9745251","42.1958758"],["-73.9740079","42.1961014"],["-73.9732599","42.1964046"],["-73.972382","42.1967401"],["-73.9712924","42.1970403"],["-73.9700654","42.1972622"],["-73.968927","42.1974594"],["-73.9673111","42.1976747"],["-73.9645456","42.1978948"],["-73.9638625","42.1980131"],["-73.9634384","42.1981443"],["-73.9628922","42.19839"],["-73.9622332","42.19881"],["-73.9617257","42.1991013"],["-73.9613326","42.199273"],["-73.9611272","42.1993272"],["-73.9609184","42.1993571"],["-73.9605785","42.1993806"],["-73.9601315","42.1993998"],["-73.9596131","42.1994718"],["-73.9589977","42.1995511"],["-73.9576691","42.1996696"],["-73.9573433","42.1996765"],["-73.957334","42.1996765"],["-73.9571116","42.1996712"],["-73.9569238","42.1996568"],["-73.9567002","42.1996253"],["-73.9563545","42.1995525"],["-73.9558532","42.1993922"],["-73.9553249","42.1992197"],["-73.9547759","42.1990535"],["-73.9542449","42.1989453"],["-73.954071","42.1989274"],["-73.9531789","42.1987738"],["-73.9524218","42.19867"],["-73.9512943","42.1985098"],["-73.9504448","42.1984051"],["-73.9483382","42.198298"],["-73.9480534","42.1982634"],["-73.9477349","42.1981656"],["-73.9473047","42.1979671"],["-73.9470471","42.1978627"],["-73.9468406","42.1977959"],["-73.9464541","42.1977309"],["-73.946225","42.1977161"],["-73.945905","42.1977122"],["-73.9456172","42.1977246"],["-73.9452718","42.1977824"],["-73.9447586","42.1979181"],["-73.9442561","42.1980864"],["-73.9439787","42.1981748"],["-73.9438169","42.1982113"],["-73.9436115","42.1982418"],["-73.9433922","42.1982614"],["-73.9429017","42.1982353"],["-73.9426209","42.1982025"],["-73.9420612","42.1981062"],["-73.9416767","42.1980205"],["-73.9412857","42.1979222"],["-73.9391949","42.197181"],["-73.9386586","42.197"],["-73.9383686","42.1969331"],["-73.9382006","42.1969174"],["-73.9380316","42.1969244"],["-73.9376757","42.1969558"],["-73.9376313","42.1969664"],["-73.9374947","42.197003"],["-73.9372357","42.1971121"],["-73.9370957","42.1971862"],["-73.9369876","42.1972556"],["-73.9368723","42.197359"],["-73.9367419","42.197517"],["-73.9365923","42.1977332"],["-73.9363276","42.198151"],["-73.9360361","42.1986279"],["-73.9357434","42.1990561"],["-73.9356205","42.1991859"],["-73.9354611","42.1993184"],["-73.9352295","42.1995383"],["-73.9349397","42.1997042"],["-73.9345247","42.1998978"],["-73.9339545","42.2001474"],["-73.9335695","42.2003376"],["-73.9332548","42.2005506"],["-73.9329547","42.2007343"],["-73.932716","42.2008483"],["-73.9324439","42.2009282"],["-73.932223","42.2009801"],["-73.9318769","42.2010294"],["-73.9315645","42.2010313"],["-73.9313518","42.2010173"],["-73.931045","42.2009633"],["-73.930857","42.2009047"],["-73.9305181","42.2007551"],["-73.9299774","42.2004809"],["-73.929554","42.2003026"],["-73.9287114","42.2000593"],["-73.9284004","42.1999976"],["-73.9281703","42.1999789"],["-73.9277166","42.1999734"],["-73.9273869","42.199977"],["-73.9269186","42.1999958"],["-73.9266793","42.2000298"],["-73.9264628","42.2000868"],["-73.9262516","42.200164"],["-73.9261249","42.2002274"],["-73.9259688","42.2003227"],["-73.9257702","42.2004739"],["-73.925112","42.2010964"],["-73.9246408","42.2015279"],["-73.9235063","42.2022476"],["-73.9230506","42.202525"],["-73.922856","42.2026159"],["-73.9225077","42.2027434"],["-73.9223185","42.2027993"],["-73.9220583","42.2028455"],["-73.9217599","42.2028888"],["-73.9215691","42.2029017"],["-73.9213965","42.2029062"],["-73.9211389","42.2028951"],["-73.9208768","42.2028721"],["-73.9206191","42.2028303"],["-73.9203184","42.2027618"],["-73.920068","42.2026732"],["-73.9198288","42.2025803"],["-73.9195166","42.2024349"],["-73.9191137","42.202177"],["-73.9189711","42.2020524"],["-73.9188164","42.2019087"],["-73.918628","42.2016778"],["-73.9185307","42.2015293"],["-73.9184371","42.2013641"],["-73.9183794","42.201217"],["-73.9183169","42.2010349"],["-73.9182695","42.2008355"],["-73.9181701","42.2003936"],["-73.9179808","42.1997218"],["-73.9178653","42.1994856"],["-73.9177576","42.1993025"],["-73.9176308","42.199115"],["-73.9174544","42.1989058"],["-73.9172499","42.1986974"],["-73.9169469","42.1984525"],["-73.9166498","42.198245"],["-73.9163701","42.1980947"],["-73.9161002","42.1979599"],["-73.915685","42.1977859"],["-73.9154261","42.1977105"],["-73.9151584","42.1976409"],["-73.9148913","42.1975841"],["-73.9146078","42.1975469"],["-73.9143571","42.1975259"],["-73.9140871","42.1975114"],["-73.9138095","42.1975177"],["-73.9135353","42.1975328"],["-73.9132845","42.1975587"],["-73.9130074","42.1975961"],["-73.912538","42.1976993"],["-73.9122771","42.197774"],["-73.9119844","42.1978737"],["-73.9116988","42.1979892"],["-73.9112948","42.1982054"],["-73.9107155","42.1985934"],["-73.9088841","42.1999671"],["-73.9078405","42.2008566"],["-73.9070257","42.2015766"],["-73.9059656","42.2024914"],["-73.9037504","42.2041897"],["-73.9034565","42.2044005"],["-73.9032335","42.2045464"],["-73.9030369","42.2046553"],["-73.9022924","42.2050069"],["-73.9013861","42.2054047"],["-73.9007085","42.205711"],["-73.9002497","42.205926"],["-73.89913","42.2065122"],["-73.8987761","42.206697"],["-73.8986135","42.2067749"],["-73.8979758","42.2070117"],["-73.8972258","42.2072781"],["-73.896113","42.2076631"],["-73.8956057","42.2078652"],["-73.8952801","42.2080237"],["-73.894978","42.2081977"],["-73.8946973","42.20838"],["-73.8944045","42.2086051"],["-73.894127","42.2088762"],["-73.8937589","42.2092804"],["-73.8933243","42.2099365"],["-73.8929834","42.2104279"],["-73.8926944","42.2107831"],["-73.8923749","42.2111069"],["-73.8917558","42.211632"],["-73.8911768","42.2120931"],["-73.8907189","42.212464"],["-73.8904269","42.2127331"],["-73.8900647","42.2130991"],["-73.8898185","42.2133127"],["-73.8896737","42.2134288"],["-73.8895563","42.213506"],["-73.8893383","42.2136328"],["-73.8891722","42.2137137"],["-73.888912","42.213819"],["-73.8887366","42.213864"],["-73.8884542","42.2139169"],["-73.8867072","42.2141141"],["-73.8862277","42.2141614"],["-73.8851417","42.2142776"],["-73.8848599","42.2143018"],["-73.8838525","42.2143969"],["-73.8837276","42.2144116"],["-73.8835897","42.2144273"],["-73.8834051","42.2144423"],["-73.8832005","42.2144633"],["-73.8824535","42.2145005"],["-73.8818013","42.2145658"],["-73.8814049","42.2146052"],["-73.8801037","42.2147277"],["-73.8797328","42.2147612"],["-73.8795091","42.214783"],["-73.8792492","42.2148145"],["-73.87905","42.2148586"],["-73.8787896","42.2149294"],["-73.8783971","42.2150955"],["-73.8776425","42.2154699"],["-73.8771611","42.2155635"],["-73.8762492","42.2157317"],["-73.874162","42.2161051"],["-73.873258","42.2162587"],["-73.8711617","42.2166409"],["-73.8698919","42.2168276"],["-73.8682627","42.2170409"],["-73.8680159","42.2170765"],["-73.8668244","42.2172513"],["-73.8661823","42.2173451"],["-73.8648946","42.217621"],["-73.8641165","42.2177469"],["-73.8631079","42.2179152"],["-73.8610444","42.2182971"],["-73.8615321","42.2206081"],["-73.8617033","42.2214394"],["-73.8617628","42.2219529"],["-73.8618061","42.2224628"],["-73.8618627","42.2228766"],["-73.8618959","42.2232292"],["-73.8619959","42.2241096"],["-73.862018","42.2247647"],["-73.8619995","42.2254338"],["-73.8619762","42.2260623"],["-73.8619609","42.2263519"],["-73.8619451","42.2266584"],["-73.8619549","42.2269243"],["-73.86232","42.2270861"],["-73.8625125","42.2271661"],["-73.8629176","42.2273583"],["-73.8631256","42.2274698"],["-73.8633667","42.227609"],["-73.8663812","42.2294087"],["-73.8678457","42.2304145"],["-73.869415","42.2313874"],["-73.8696683","42.2315581"],["-73.8698982","42.2317258"],["-73.8702838","42.2320432"],["-73.8704784","42.2322145"],["-73.8706534","42.2323878"],["-73.8709743","42.2327415"],["-73.871089","42.2328797"],["-73.8711803","42.2329962"],["-73.8714066","42.23333"],["-73.8715319","42.2335338"],["-73.8716389","42.2337188"],["-73.8719086","42.2342443"],["-73.8720829","42.2345814"],["-73.8723875","42.2351416"],["-73.8725195","42.2353394"],["-73.8726609","42.2355337"],["-73.8728154","42.2357196"],["-73.8729844","42.2359096"],["-73.873166","42.2360863"],["-73.8733483","42.2362474"],["-73.8735562","42.2364163"],["-73.8737628","42.2365676"],["-73.8739919","42.2367179"],["-73.874218","42.2368534"],["-73.8744572","42.2369804"],["-73.8747062","42.237099"],["-73.8749659","42.2372141"],["-73.875215","42.2373117"],["-73.8755069","42.2374118"],["-73.8757789","42.2374935"],["-73.8760568","42.2375676"],["-73.876332","42.2376277"],["-73.8766271","42.2376793"],["-73.8769217","42.2377201"],["-73.8772016","42.2377498"],["-73.8775014","42.2377701"],["-73.8778054","42.2377825"],["-73.8780882","42.2377796"],["-73.8809157","42.2376462"],["-73.8811934","42.2376404"],["-73.8814843","42.2376454"],["-73.8820936","42.2376769"],["-73.8823544","42.2377006"],["-73.8826618","42.2377356"],["-73.8829439","42.2377749"],["-73.8834565","42.2378679"],["-73.8837235","42.2379276"],["-73.8839183","42.2379734"],["-73.8843552","42.238092"],["-73.8848904","42.238271"],["-73.8851634","42.2383759"],["-73.8856944","42.2386946"],["-73.8858554","42.2388063"],["-73.8859668","42.2388995"],["-73.8860671","42.2389997"],["-73.8864927","42.2394687"],["-73.886773","42.2397768"],["-73.886871","42.2398734"],["-73.8870479","42.2400395"],["-73.887135","42.2401069"],["-73.8872226","42.2401628"],["-73.8872988","42.2401981"],["-73.8874157","42.2402382"],["-73.8875362","42.2402969"],["-73.8875041","42.2404813"],["-73.8874711","42.2406099"],["-73.8872795","42.2411994"],["-73.8864326","42.2433507"],["-73.8863793","42.2435019"],["-73.8863285","42.2436619"],["-73.8862414","42.2439861"],["-73.8862057","42.2441364"],["-73.886129","42.2445361"],["-73.8861123","42.2446522"],["-73.8860988","42.2447708"],["-73.8860948","42.2448743"],["-73.8860958","42.2449676"],["-73.8860986","42.245065"],["-73.8861005","42.2451754"],["-73.8860533","42.2454625"],["-73.8860324","42.2455915"],["-73.8860154","42.2456418"],["-73.8859881","42.2456876"],["-73.8859524","42.2457349"],["-73.8859101","42.2457751"],["-73.8858672","42.245808"],["-73.8858105","42.2458422"],["-73.8857539","42.2458742"],["-73.8856733","42.24591"],["-73.8855108","42.2459392"],["-73.885361","42.2459725"],["-73.8852151","42.246017"],["-73.8850611","42.2460736"],["-73.8849124","42.2461394"],["-73.8847675","42.2462183"],["-73.8846477","42.2462991"],["-73.884527","42.2463925"],["-73.8843973","42.2465104"],["-73.8842603","42.2466442"],["-73.8839739","42.2469239"],["-73.8833516","42.2475356"],["-73.8830701","42.2478346"],["-73.8826623","42.2482312"],["-73.8825882","42.2483078"],["-73.8825378","42.2483751"],["-73.8824911","42.2484563"],["-73.8824594","42.2485342"],["-73.8824334","42.2486061"],["-73.882422","42.2486579"],["-73.8824108","42.2487187"],["-73.8824077","42.2488074"],["-73.8824146","42.2488954"],["-73.8824299","42.2489745"],["-73.8824516","42.2490472"],["-73.8824855","42.2491276"],["-73.882535","42.2492216"],["-73.8826064","42.2493906"],["-73.8827637","42.2497512"],["-73.8828341","42.2500044"],["-73.8828625","42.2502724"],["-73.8828631","42.2504872"],["-73.8828348","42.2507154"],["-73.8827718","42.2509713"],["-73.8826942","42.2511896"],["-73.882532","42.2514993"],["-73.8823359","42.251771"],["-73.8820473","42.2521953"],["-73.8814707","42.2528763"],["-73.8811958","42.2532546"],["-73.8807695","42.2539102"],["-73.8806134","42.2541702"],["-73.8802185","42.254812"],["-73.8799551","42.2553073"],["-73.8785255","42.258655"],["-73.8782282","42.2593801"],["-73.877983","42.2599674"],["-73.877683","42.260665"],["-73.8774426","42.2612297"],["-73.8772431","42.2617021"],["-73.8770996","42.2620542"],["-73.8769929","42.2623374"],["-73.8756212","42.2656879"],["-73.8752153","42.2668919"],["-73.874327","42.2699825"],["-73.8737435","42.2721577"],["-73.873544","42.2729791"],["-73.8732368","42.2743776"],["-73.872613","42.2774797"],["-73.8725225","42.2781172"],["-73.872478","42.2785936"],["-73.8724546","42.27912"],["-73.8724393","42.2796839"],["-73.8724847","42.2807508"],["-73.872556","42.2821869"],["-73.8726692","42.283225"],["-73.8728443","42.2842924"],["-73.8729961","42.2849684"],["-73.8738983","42.2884387"],["-73.8743219","42.290115"],["-73.8745415","42.2912825"],["-73.8746737","42.2923005"],["-73.8747817","42.2934578"],["-73.8747957","42.2940697"],["-73.8748006","42.2946602"],["-73.8747993","42.2952014"],["-73.8747594","42.2959754"],["-73.8742895","42.3006158"],["-73.8741339","42.3019551"],["-73.874038","42.3024179"],["-73.8739293","42.3028399"],["-73.8736171","42.303847"],["-73.8734456","42.3043077"],["-73.8732477","42.304772"],["-73.8728645","42.3055238"],["-73.8682943","42.3139532"],["-73.8672656","42.3159733"],["-73.8669383","42.3166818"],["-73.8666801","42.3172757"],["-73.8655021","42.3203623"],["-73.863233","42.3262686"],["-73.8629693","42.3268689"],["-73.862863","42.3271266"],["-73.8626602","42.3276072"],["-73.8595678","42.3344998"],["-73.8589706","42.3359187"],["-73.8587708","42.3366008"],["-73.8586154","42.3372545"],["-73.8584946","42.3380012"],["-73.8583832","42.3389918"],["-73.8582822","42.3399267"],["-73.858205","42.3405285"],["-73.8581117","42.3410467"],["-73.8579866","42.3415993"],["-73.8578529","42.3420412"],["-73.8576049","42.3427668"],["-73.857367","42.3433875"],["-73.8571263","42.3439441"],["-73.8565922","42.3449706"],["-73.8547338","42.3484394"],["-73.8544276","42.3489721"],["-73.8541321","42.3494545"],["-73.8537354","42.3500356"],["-73.8529987","42.3510047"],["-73.8525576","42.3515744"],["-73.851318","42.3531524"],["-73.8507799","42.3538553"],["-73.8504415","42.3543511"],["-73.8501571","42.3548048"],["-73.8499315","42.355189"],["-73.8497398","42.3555355"],["-73.8495398","42.3559469"],["-73.8493379","42.3563936"],["-73.8490988","42.3569692"],["-73.8489306","42.3574801"],["-73.848787","42.357978"],["-73.8486838","42.3584124"],["-73.8485872","42.3588663"],["-73.8482908","42.3609559"],["-73.8481566","42.3617173"],["-73.8479955","42.3622888"],["-73.8477943","42.3629061"],["-73.8475482","42.3635573"],["-73.8471379","42.3644015"],["-73.8468109","42.3649851"],["-73.8465629","42.3653937"],["-73.8455982","42.3666857"],["-73.8453402","42.3669997"],["-73.8448959","42.3675924"],["-73.8446865","42.367956"],["-73.8442848","42.3686246"],["-73.8440122","42.369148"],["-73.8437346","42.369744"],["-73.8434806","42.3703954"],["-73.8432878","42.3710033"],["-73.843103","42.3717194"],["-73.8428645","42.3728237"],["-73.8427438","42.3733194"],["-73.8426338","42.373701"],["-73.8425275","42.3740228"],["-73.8423634","42.374468"],["-73.8421768","42.3749218"],["-73.8419626","42.375376"],["-73.8417727","42.3757416"],["-73.841569","42.3761067"],["-73.8413192","42.3765042"],["-73.8411166","42.3768085"],["-73.8409569","42.3770409"],["-73.8408148","42.3772341"],["-73.8406817","42.3774034"],["-73.8405005","42.3776382"],["-73.8402195","42.3779772"],["-73.8397334","42.3785157"],["-73.8391908","42.3790576"],["-73.8386796","42.3795296"],["-73.8381495","42.3799664"],["-73.8376327","42.3803662"],["-73.8369809","42.3808198"],["-73.8362788","42.3812819"],["-73.8352755","42.3819364"],["-73.8327435","42.3835914"],["-73.8321767","42.3839538"],["-73.8306608","42.3849425"],["-73.8300144","42.3854173"],["-73.8297389","42.3856328"],["-73.8294309","42.385886"],["-73.829129","42.386149"],["-73.8288735","42.386381"],["-73.828563","42.3866753"],["-73.8282986","42.3869403"],["-73.8280573","42.3871932"],["-73.8275572","42.3877619"],["-73.8273302","42.3880421"],["-73.8271024","42.3883393"],["-73.8268914","42.3886303"],["-73.8266577","42.3889771"],["-73.8261494","42.3897989"],["-73.8258715","42.3903145"],["-73.8257137","42.3906734"],["-73.8255825","42.3909853"],["-73.8254574","42.3912922"],["-73.8252659","42.3918474"],["-73.82513","42.3923157"],["-73.824946","42.3930364"],["-73.8235837","42.3986241"],["-73.8233539","42.3993619"],["-73.8231593","42.3998819"],["-73.8228898","42.4005067"],["-73.8225918","42.4010947"],["-73.8223448","42.4015125"],["-73.8217913","42.4023565"],["-73.8213259","42.4029779"],["-73.8208696","42.4035185"],["-73.8205075","42.4039104"],["-73.8201435","42.4042782"],["-73.8196866","42.4047104"],["-73.8192213","42.405107"],["-73.8177932","42.406285"],["-73.8146107","42.408922"],["-73.8130839","42.4101771"],["-73.8126884","42.4105077"],["-73.8116721","42.4114079"],["-73.8114885","42.4116006"],["-73.8109889","42.4121317"],["-73.8106763","42.4124828"],["-73.8103518","42.4128679"],["-73.8099952","42.4133217"],["-73.8095499","42.4139359"],["-73.8093598","42.4142277"],["-73.8092327","42.4144377"],["-73.8090791","42.4146962"],["-73.8087674","42.4152689"],["-73.8084532","42.4158909"],["-73.8082323","42.4163915"],["-73.8080043","42.416964"],["-73.8079129","42.4172381"],["-73.8078064","42.4175579"],["-73.8075913","42.4183847"],["-73.8067265","42.4219727"],["-73.8064596","42.4229707"],["-73.8061159","42.4240896"],["-73.8053888","42.4259932"],["-73.8049931","42.4268743"],["-73.8044839","42.4279185"],["-73.8041142","42.4287025"],["-73.8040301","42.4289003"],["-73.8038664","42.4293147"],["-73.803784","42.4295381"],["-73.8036397","42.429968"],["-73.8035138","42.4303982"],["-73.8034551","42.4306204"],["-73.8034021","42.4308464"],["-73.8033573","42.4310551"],["-73.8033132","42.4312768"],["-73.803241","42.4317199"],["-73.8031926","42.432152"],["-73.8031535","42.4328011"],["-73.8031461","42.4330468"],["-73.8031453","42.4332512"],["-73.8031496","42.4334955"],["-73.8032108","42.434359"],["-73.8032822","42.434971"],["-73.8033959","42.435571"],["-73.8035624","42.4362239"],["-73.8037427","42.4368607"],["-73.8039551","42.4374284"],["-73.8042809","42.4381684"],["-73.8044974","42.438611"],["-73.804748","42.4390637"],["-73.805059","42.439579"],["-73.8053976","42.44009"],["-73.8092342","42.4456744"],["-73.8095953","42.4462438"],["-73.8098275","42.4466361"],["-73.8099639","42.4468986"],["-73.8101157","42.4472065"],["-73.8102005","42.447371"],["-73.8102953","42.4475831"],["-73.810541","42.4482281"],["-73.8107162","42.448759"],["-73.8108489","42.449243"],["-73.8109478","42.4497997"],["-73.8110231","42.4503057"],["-73.8110546","42.4506976"],["-73.8110752","42.4512047"],["-73.8110758","42.4515797"],["-73.8110514","42.4520297"],["-73.8110103","42.4524652"],["-73.8109484","42.4529256"],["-73.8108499","42.4534063"],["-73.8107046","42.4539706"],["-73.8105259","42.4545699"],["-73.8098028","42.4565953"],["-73.8091083","42.4586709"],["-73.8088352","42.4594777"],["-73.8085654","42.4601882"],["-73.8073826","42.462992"],["-73.806274","42.465412"],["-73.8061093","42.4658265"],["-73.8059858","42.4661753"],["-73.8058166","42.4667785"],["-73.8057055","42.467241"],["-73.8056002","42.4677611"],["-73.8055038","42.4683952"],["-73.8054491","42.4691166"],["-73.8054491","42.4698948"],["-73.8054752","42.4704211"],["-73.8055802","42.4712421"],["-73.8056788","42.4717336"],["-73.8057592","42.4720592"],["-73.8059318","42.4727036"],["-73.8060408","42.4731318"],["-73.8079744","42.4805345"],["-73.8081358","42.4811568"],["-73.80826","42.4817917"],["-73.8083134","42.4822412"],["-73.8083208","42.4826769"],["-73.8083133","42.4831915"],["-73.8082476","42.4836665"],["-73.8081039","42.4844209"],["-73.8078864","42.4851135"],["-73.8077301","42.4854921"],["-73.8074135","42.4861261"],["-73.8070164","42.4867592"],["-73.8067335","42.487132"],["-73.8050735","42.4890382"],["-73.8006826","42.4940686"],["-73.8001672","42.4946604"],["-73.7978652","42.4973184"],["-73.7966765","42.498739"],["-73.7960681","42.4995322"],["-73.7955998","42.5001879"],["-73.7951345","42.50086"],["-73.7945791","42.5016832"],["-73.7940483","42.5025332"],["-73.7932725","42.5038859"],["-73.7916658","42.5072944"],["-73.7908723","42.5094429"],["-73.7902389","42.5115776"],["-73.7890941","42.5169174"],["-73.7890211","42.5174045"],["-73.788968","42.5178302"],["-73.788852","42.5191288"],["-73.7888164","42.5199739"],["-73.7887991","42.5205455"],["-73.7887925","42.521203"],["-73.7887827","42.522544"],["-73.7887681","42.5228477"],["-73.7887401","42.5231819"],["-73.7887078","42.5234468"],["-73.7886655","42.5237251"],["-73.7886151","42.5240034"],["-73.7885583","42.5242662"],["-73.7884901","42.5245316"],["-73.7884086","42.5248087"],["-73.7883221","42.525068"],["-73.7882218","42.5253452"],["-73.7880129","42.5258509"],["-73.7878931","42.526103"],["-73.7876113","42.5266308"],["-73.7874708","42.5268729"],["-73.7873007","42.5271408"],["-73.7871423","42.5273802"],["-73.7857604","42.5292971"],["-73.7856074","42.5295228"],["-73.7854454","42.5297776"],["-73.7852751","42.5300629"],["-73.7851359","42.5303055"],["-73.78501","42.5305439"],["-73.7848691","42.5308287"],["-73.7847483","42.5310862"],["-73.7846411","42.5313336"],["-73.7845337","42.5316077"],["-73.7844381","42.5318671"],["-73.7843583","42.5321099"],["-73.7842731","42.5323898"],["-73.7841995","42.5326612"],["-73.7841329","42.5329402"],["-73.7840757","42.5332168"],["-73.7839862","42.533761"],["-73.7836564","42.536725"],["-73.7835702","42.5372348"],["-73.7835164","42.5375022"],["-73.783392","42.5380633"],["-73.783254","42.5386065"],["-73.7831029","42.5391483"],["-73.7818994","42.5426243"],["-73.7817297","42.5431859"],["-73.7816045","42.5436928"],["-73.7814892","42.5442756"],["-73.7814108","42.5447997"],["-73.7813562","42.5453386"],["-73.781324","42.5458803"],["-73.7813169","42.5464516"],["-73.7813349","42.5469728"],["-73.7813842","42.5475307"],["-73.7814563","42.5480832"],["-73.7815557","42.548645"],["-73.7816771","42.549179"],["-73.7818149","42.5496893"],["-73.7819888","42.5502314"],["-73.782774","42.5523531"],["-73.7829908","42.5529107"],["-73.7831406","42.5532477"],["-73.7833677","42.5536964"],["-73.7835336","42.5539902"],["-73.7837105","42.5542775"],["-73.7841583","42.5549221"],["-73.7848797","42.5559321"],["-73.7855268","42.5568614"],["-73.7859972","42.5576096"],["-73.7864042","42.5583127"],["-73.7867342","42.558925"],["-73.787165","42.5598383"],["-73.7874421","42.5604987"],["-73.7887751","42.5641645"],["-73.788964","42.5647322"],["-73.7891097","42.5652438"],["-73.789245","42.5658293"],["-73.7893735","42.5665046"],["-73.7894361","42.5669379"],["-73.7894848","42.5674248"],["-73.7895202","42.5679845"],["-73.7895318","42.5685428"],["-73.7894998","42.5693217"],["-73.7894096","42.5702301"],["-73.7890336","42.5725881"],["-73.7888331","42.5735907"],["-73.7885765","42.5747597"],["-73.7883353","42.5757487"],["-73.7880797","42.5767001"],["-73.7864302","42.5822518"],["-73.7862669","42.5828556"],["-73.7861319","42.5833963"],["-73.7859276","42.5843757"],["-73.7857473","42.585497"],["-73.7856624","42.5861995"],["-73.7855846","42.5871476"],["-73.7855398","42.5880022"],["-73.7855273","42.5894117"],["-73.783373","42.6084148"],["-73.7825128","42.6150523"],["-73.7824415","42.6154802"],["-73.7823973","42.6157016"],["-73.7823024","42.6161224"],["-73.782189","42.6165512"],["-73.7821295","42.6167498"],["-73.7820588","42.6169694"],["-73.7819071","42.6174016"],["-73.7818257","42.6176147"],["-73.7816495","42.618039"],["-73.7812652","42.6188424"],["-73.7811527","42.6190543"],["-73.7810491","42.6192402"],["-73.7802568","42.6205591"],["-73.7801449","42.6207495"],["-73.7800328","42.6209505"],["-73.7799185","42.6211658"],["-73.7798216","42.6213615"],["-73.7797182","42.6215887"],["-73.7796255","42.6218037"],["-73.7794656","42.6222115"],["-73.7793948","42.6224167"],["-73.7793235","42.6226359"],["-73.7792729","42.6228028"],["-73.7791513","42.6232903"],["-73.77911","42.6234855"],["-73.7790692","42.6237011"],["-73.7790333","42.6239245"],["-73.7786473","42.6272952"],["-73.7786358","42.6274553"],["-73.7786253","42.6277662"],["-73.7786277","42.6279347"],["-73.7786355","42.6280807"],["-73.7786489","42.6282619"],["-73.7786652","42.6284175"],["-73.7786858","42.6285825"],["-73.7787407","42.6289038"],["-73.7788135","42.6292249"],["-73.7788542","42.6293712"],["-73.7789059","42.6295398"],["-73.7789566","42.6296897"],["-73.7790778","42.6300118"],["-73.7791425","42.6301665"],["-73.7792828","42.6304642"],["-73.7793606","42.6306139"],["-73.7794474","42.6307692"],["-73.779534","42.6309171"],["-73.7797215","42.6312129"],["-73.7798218","42.6313622"],["-73.7800319","42.6316461"],["-73.7801376","42.6317811"],["-73.7802642","42.6319305"],["-73.7805164","42.6322144"],["-73.7806588","42.632365"],["-73.7808114","42.6325166"],["-73.7809794","42.632672"],["-73.7811241","42.6328008"],["-73.7812836","42.6329369"],["-73.7816792","42.6332538"],["-73.7819177","42.6334273"],["-73.7821329","42.6335769"],["-73.7823594","42.6337277"],["-73.7826055","42.6338824"],["-73.7828154","42.6340043"],["-73.7830666","42.6341423"],["-73.783287","42.6342571"],["-73.7835493","42.6343868"],["-73.7880184","42.6364148"],["-73.8043302","42.6441644"],["-73.8154418","42.651095"],["-73.8163649","42.6517919"],["-73.8422397","42.6738409"],["-73.8425127","42.6740883"],["-73.84278","42.6743445"],["-73.8430507","42.6746194"],["-73.8432949","42.6748874"],["-73.843548","42.6751862"],["-73.8437652","42.6754597"],["-73.8439815","42.6757488"],["-73.8441834","42.6760386"],["-73.8443671","42.6763263"],["-73.8445546","42.6766392"],["-73.8447226","42.6769455"],["-73.8448727","42.6772547"],["-73.8450129","42.6775638"],["-73.8451457","42.6778876"],["-73.8452553","42.6781836"],["-73.8453582","42.6784984"],["-73.8454476","42.678816"],["-73.8455329","42.6791686"],["-73.8455956","42.6794876"],["-73.845641","42.6797918"],["-73.845679","42.6801407"],["-73.8457039","42.6804636"],["-73.8457135","42.6808097"],["-73.8457109","42.6811285"],["-73.8456936","42.681455"],["-73.8456612","42.6817872"],["-73.8456198","42.6821158"],["-73.8455601","42.6824601"],["-73.8450044","42.6851354"],["-73.8448344","42.6859261"],["-73.8443629","42.6878876"],["-73.8440648","42.6892186"],["-73.8439972","42.6895893"],["-73.8438746","42.6903204"],["-73.8437985","42.6909162"],["-73.8437642","42.6912496"],["-73.8437421","42.6915762"],["-73.8437287","42.6919155"],["-73.8437231","42.6922381"],["-73.8437259","42.6924076"],["-73.8437533","42.6928853"],["-73.8437833","42.6932366"],["-73.8438209","42.6935658"],["-73.8438697","42.6938911"],["-73.843927","42.6941984"],["-73.8439948","42.6945083"],["-73.8440671","42.6947893"],["-73.844253","42.6954242"],["-73.844351","42.6957091"],["-73.8444701","42.6960222"],["-73.8446037","42.696345"],["-73.8447439","42.6966502"],["-73.8449076","42.6969872"],["-73.8450592","42.6972759"],["-73.8452152","42.6975561"],["-73.8454004","42.6978673"],["-73.8457539","42.6984145"],["-73.8459497","42.6986901"],["-73.8461496","42.6989584"],["-73.8463561","42.6992208"],["-73.8465959","42.6995115"],["-73.8468772","42.6998258"],["-73.8471375","42.7001067"],["-73.8474397","42.7004155"],["-73.8477455","42.7007067"],["-73.8480275","42.7009619"],["-73.8486105","42.7014548"],["-73.8492521","42.7019369"],["-73.8495734","42.7021669"],["-73.8499121","42.7023985"],["-73.8502016","42.7025893"],["-73.8516231","42.703505"],["-73.8528569","42.7043686"],["-73.8564821","42.7071329"],["-73.8567686","42.707336"],["-73.8577218","42.7079584"],["-73.858031","42.7081457"],["-73.8589783","42.7086878"],["-73.8593268","42.708874"],["-73.859683","42.7090534"],["-73.8738766","42.7175379"],["-73.8744359","42.7178615"],["-73.8765036","42.7188765"],["-73.8772655","42.7191934"],["-73.8788638","42.719813"],["-73.8808274","42.7206603"],["-73.8826502","42.7215662"],["-73.885035","42.7229701"],["-73.8924293","42.728212"],["-73.8986763","42.7332241"],["-73.8991512","42.7335602"],["-73.9000371","42.7341578"],["-73.9006794","42.7345627"],["-73.9014182","42.7350039"],["-73.9050043","42.7368499"],["-73.9083454","42.7386178"],["-73.9090813","42.7390626"],["-73.9097726","42.7395076"],["-73.9276586","42.7509969"],["-73.954446","42.7643639"],["-73.956237","42.7651788"],["-73.9591381","42.7663523"],["-73.9853617","42.7744498"],["-73.9934714","42.7759673"],["-73.9941454","42.7761422"],["-73.9948292","42.7763337"],["-73.9955498","42.7765576"],["-73.9962332","42.7767921"],["-73.9968503","42.777023"],["-73.9974561","42.7772644"],["-73.9980232","42.7775067"],["-74.0000643","42.7784874"],["-74.0087274","42.7827352"],["-74.0094345","42.7831415"],["-74.0100795","42.7835468"],["-74.0103973","42.7837621"],["-74.0107474","42.7840104"],["-74.0114452","42.7845375"],["-74.012101","42.7850861"],["-74.0123852","42.7853458"],["-74.0126702","42.7856175"],["-74.0128952","42.785843"],["-74.0131607","42.7861211"],["-74.0133774","42.7863607"],["-74.0137502","42.7867982"],["-74.0138844","42.7869625"],["-74.0143421","42.7875766"],["-74.0145535","42.7878837"],["-74.0147479","42.7881815"],["-74.0149359","42.7884898"],["-74.0151366","42.7888416"],["-74.0153517","42.7892607"],["-74.0156021","42.7897896"],["-74.0157975","42.7902608"],["-74.0159575","42.7907035"],["-74.0161056","42.7911861"],["-74.0162104","42.7915619"],["-74.0163015","42.7919244"],["-74.0163702","42.7922905"],["-74.0164259","42.7926619"],["-74.0164644","42.7929751"],["-74.0169526","42.7975682"],["-74.0173128","42.8001089"],["-74.018997","42.8086113"],["-74.0191261","42.809442"],["-74.0191875","42.8099941"],["-74.0192238","42.8104617"],["-74.0192439","42.8109988"],["-74.0192513","42.8114874"],["-74.0192468","42.8119597"],["-74.0192322","42.8123344"],["-74.0192056","42.812738"],["-74.019177","42.8130711"],["-74.0191397","42.8134166"],["-74.0190509","42.8140439"],["-74.0189793","42.8144484"],["-74.0189082","42.8148019"],["-74.0186641","42.8158123"],["-74.01829","42.8169987"],["-74.018063","42.8176021"],["-74.0177799","42.8182788"],["-74.0175847","42.8186971"],["-74.0171527","42.8195476"],["-74.0168065","42.8201665"],["-74.0163756","42.820855"],["-74.0129862","42.8261581"],["-74.0124404","42.827041"],["-74.0122279","42.8274338"],["-74.0120509","42.8277836"],["-74.0118859","42.8281378"],["-74.0117251","42.8285215"],["-74.0115784","42.828912"],["-74.0114576","42.8292625"],["-74.0113602","42.8295861"],["-74.0112616","42.829943"],["-74.0111799","42.8303114"],["-74.0111057","42.8307032"],["-74.0110378","42.8311072"],["-74.0109934","42.8314618"],["-74.0109696","42.831735"],["-74.0109544","42.8319903"],["-74.01094","42.8325689"],["-74.0109434","42.8329046"],["-74.0109601","42.8332189"],["-74.0109859","42.8335572"],["-74.0110243","42.8338926"],["-74.0110728","42.8342241"],["-74.0111416","42.8346035"],["-74.0112326","42.8350113"],["-74.0113359","42.8354122"],["-74.0114156","42.8356881"],["-74.0115932","42.8362359"],["-74.0117609","42.8366795"],["-74.011848","42.8368863"],["-74.0119538","42.8371238"],["-74.0120566","42.8373433"],["-74.01236","42.8379367"],["-74.0124703","42.8381365"],["-74.0125996","42.8383544"],["-74.0127369","42.8385755"],["-74.0129531","42.8389072"],["-74.01315","42.8391904"],["-74.0133627","42.8394879"],["-74.0135339","42.8397109"],["-74.0139639","42.8402306"],["-74.0141784","42.8404719"],["-74.014892","42.8412201"],["-74.0151366","42.8414537"],["-74.0154673","42.8417501"],["-74.0158597","42.8420833"],["-74.0283958","42.851686"],["-74.0290487","42.8522205"],["-74.030552","42.8535605"],["-74.0316529","42.8546722"],["-74.0368363","42.8606647"],["-74.0385688","42.8626089"],["-74.0436376","42.8676563"],["-74.0446889","42.8686679"],["-74.0451076","42.8690338"],["-74.0458093","42.8695893"],["-74.0463068","42.8699467"],["-74.046594","42.8701404"],["-74.0471627","42.8705049"],["-74.0478052","42.8708801"],["-74.0481339","42.8710606"],["-74.0491134","42.8715524"],["-74.0494401","42.8717036"],["-74.0500473","42.8719599"],["-74.0504699","42.872127"],["-74.0511521","42.8723796"],["-74.0579847","42.8747657"],["-74.0585671","42.8749949"],["-74.0591005","42.8752247"],["-74.0595967","42.8754485"],["-74.0601447","42.8757177"],["-74.0606436","42.8759813"],["-74.061186","42.8762855"],["-74.0617681","42.87663"],["-74.0841426","42.8906108"],["-74.0847014","42.890935"],["-74.0860905","42.8916862"],["-74.088404","42.8927654"],["-74.0977696","42.8964191"],["-74.100473","42.8974425"],["-74.1018035","42.8978958"],["-74.1032969","42.8983496"],["-74.1236645","42.9022133"],["-74.1251151","42.90254"],["-74.1263108","42.9028689"],["-74.1268553","42.9030402"],["-74.1282547","42.9035419"],["-74.1292031","42.9039363"],["-74.1296542","42.9041418"],["-74.1301334","42.9043749"],["-74.1307905","42.9047194"],["-74.1360606","42.9075752"],["-74.1401711","42.9095292"],["-74.1462348","42.9112391"],["-74.1495837","42.9121428"],["-74.1541937","42.913338"],["-74.1667779","42.9166239"],["-74.2451443","42.9330398"],["-74.248621","42.9332432"],["-74.2506402","42.9332686"],["-74.3034042","42.9301607"],["-74.3041861","42.9301372"],["-74.304782","42.9301277"],["-74.3055858","42.9301536"],["-74.3060894","42.9301831"],["-74.3066108","42.9302214"],["-74.3074582","42.9303033"],["-74.3078368","42.9303511"],["-74.3093535","42.9305927"],["-74.3099169","42.9306997"],["-74.311399","42.9310333"],["-74.3128599","42.931437"],["-74.3446029","42.9415691"],["-74.345598","42.9418757"],["-74.3469613","42.9422724"],["-74.3649934","42.9458442"],["-74.3665401","42.946205"],["-74.3681107","42.9466258"],["-74.3691509","42.9469073"],["-74.3710341","42.9474172"],["-74.3716181","42.9475495"],["-74.3722017","42.9476698"],["-74.3727614","42.9477732"],["-74.3740754","42.9479597"],["-74.3750011","42.9480569"],["-74.3762252","42.9481571"],["-74.3779569","42.9482435"],["-74.379343","42.9482704"],["-74.3815647","42.9481864"],["-74.382087","42.9481431"],["-74.3826124","42.9480893"],["-74.3830948","42.9480243"],["-74.3836243","42.9479395"],["-74.3847592","42.9477238"],["-74.3853424","42.9475888"],["-74.3858601","42.9474526"],["-74.3864019","42.9472969"],["-74.3868498","42.9471514"],["-74.3873516","42.9469784"],["-74.3898248","42.9460515"],["-74.3997241","42.9417624"],["-74.4009235","42.9411994"],["-74.4027749","42.9402321"],["-74.4041848","42.9394187"],["-74.4202868","42.9291277"],["-74.422337","42.9278294"],["-74.4249017","42.9263052"],["-74.4507675","42.9118774"],["-74.4517661","42.9112699"],["-74.452245","42.9109576"],["-74.4527974","42.9105894"],["-74.4535501","42.9100631"],["-74.4540641","42.9096902"],["-74.4545692","42.9092955"],["-74.4549577","42.9089792"],["-74.4558665","42.9081526"],["-74.4561803","42.9078331"],["-74.4565585","42.9074235"],["-74.4569596","42.9069701"],["-74.4571725","42.9067068"],["-74.4573827","42.9064178"],["-74.457879","42.9056867"],["-74.4583412","42.9048844"],["-74.459322","42.9031128"],["-74.4597144","42.9024741"],["-74.4599868","42.9020809"],["-74.4602536","42.901732"],["-74.4605012","42.901432"],["-74.4608642","42.9010237"],["-74.4612832","42.9005896"],["-74.4617328","42.9001635"],["-74.4620127","42.8999201"],["-74.462304","42.8996796"],["-74.4626218","42.8994293"],["-74.4629177","42.8992093"],["-74.4632206","42.898995"],["-74.4635139","42.8987997"],["-74.463876","42.8985701"],["-74.4641592","42.8983976"],["-74.4645147","42.8981905"],["-74.4648858","42.89799"],["-74.4656276","42.897621"],["-74.4660131","42.8974447"],["-74.4666905","42.8971601"],["-74.467867","42.8967415"],["-74.4681545","42.8966487"],["-74.4686557","42.8965026"],["-74.4700528","42.896165"],["-74.4712963","42.8959498"],["-74.4717656","42.8958855"],["-74.472363","42.8958172"],["-74.4729159","42.8957706"],["-74.4733891","42.8957426"],["-74.4739078","42.8957227"],["-74.474752","42.8957078"],["-74.4751897","42.895722"],["-74.4761293","42.8957744"],["-74.4798419","42.8960129"],["-74.4809824","42.8960708"],["-74.4814315","42.8960787"],["-74.4831892","42.8960405"],["-74.4847325","42.8959157"],["-74.5218996","42.8933624"],["-74.5225246","42.8933688"],["-74.5231759","42.8933793"],["-74.5252328","42.893498"],["-74.5259117","42.8935612"],["-74.5272769","42.8937237"],["-74.5285688","42.8939256"],["-74.5292363","42.8940473"],["-74.5299535","42.8941942"],["-74.5317144","42.8946125"],["-74.5330046","42.8949865"],["-74.5335764","42.8951658"],["-74.5350622","42.8956886"],["-74.5358475","42.8959989"],["-74.538688","42.8972132"],["-74.5392232","42.8974637"],["-74.5402372","42.8979805"],["-74.5408986","42.8983335"],["-74.5425522","42.8992439"],["-74.5432952","42.8996863"],["-74.5456426","42.9011493"],["-74.5464351","42.9016287"],["-74.5473158","42.9021334"],["-74.5483877","42.9026983"],["-74.5491805","42.9030937"],["-74.5509835","42.9039147"],["-74.5528293","42.9046395"],["-74.5535462","42.9048931"],["-74.558245","42.9062364"],["-74.5665967","42.9079537"],["-74.5677352","42.9081589"],["-74.5683293","42.9082393"],["-74.5693799","42.9083344"],["-74.5699995","42.9083661"],["-74.570834","42.9083817"],["-74.5713723","42.9083744"],["-74.5720607","42.9083416"],["-74.5726372","42.9082977"],["-74.5731663","42.9082451"],["-74.5736738","42.908182"],["-74.5746799","42.9080174"],["-74.5756912","42.907794"],["-74.5761255","42.9076839"],["-74.5769269","42.9074475"],["-74.5786485","42.9069405"],["-74.5791671","42.9068027"],["-74.5795532","42.906712"],["-74.5799313","42.9066324"],["-74.5805845","42.9065184"],["-74.5811553","42.9064505"],["-74.5816687","42.906404"],["-74.5821439","42.906381"],["-74.5826992","42.9063753"],["-74.5830271","42.9063835"],["-74.5833398","42.9063945"],["-74.5836969","42.9064163"],["-74.5839932","42.9064427"],["-74.5842946","42.9064747"],["-74.5849738","42.9065761"],["-74.585343","42.9066447"],["-74.5857098","42.906721"],["-74.5864295","42.9069065"],["-74.5867346","42.9069945"],["-74.5870731","42.9071051"],["-74.5886858","42.9076978"],["-74.6006671","42.9123156"],["-74.6035276","42.913624"],["-74.6043956","42.9140602"],["-74.605119","42.9144607"],["-74.6054471","42.9146524"],["-74.6058582","42.9149069"],["-74.6066393","42.9154213"],["-74.6070646","42.9157262"],["-74.6078166","42.9163156"],["-74.6084683","42.9168789"],["-74.6087687","42.9171554"],["-74.6090409","42.9174171"],["-74.6096183","42.9180203"],["-74.6100446","42.9184992"],["-74.6103898","42.9189188"],["-74.610563","42.9191421"],["-74.6107859","42.9194412"],["-74.6109892","42.9197276"],["-74.6111894","42.920031"],["-74.6197027","42.9343348"],["-74.6198848","42.9346376"],["-74.620034","42.9348536"],["-74.6203644","42.9352972"],["-74.6205417","42.935517"],["-74.6207575","42.9357636"],["-74.6210252","42.9360325"],["-74.6212656","42.9362603"],["-74.6214984","42.9364689"],["-74.6220405","42.9369196"],["-74.6230682","42.9376728"],["-74.623405","42.9379028"],["-74.6239898","42.9382735"],["-74.6253293","42.9390892"],["-74.6260951","42.9395635"],["-74.6263795","42.939759"],["-74.626801","42.9400705"],["-74.6271744","42.9403801"],["-74.6275249","42.9407016"],["-74.6278448","42.9410264"],["-74.6281284","42.9413475"],["-74.6283417","42.941622"],["-74.6285395","42.9419106"],["-74.6287267","42.9422068"],["-74.6289122","42.9425419"],["-74.6292069","42.9431475"],["-74.631105","42.9475825"],["-74.6331013","42.9525552"],["-74.6339239","42.9550437"],["-74.6340966","42.9555391"],["-74.6342634","42.9559735"],["-74.6344569","42.9564486"],["-74.6346138","42.9567832"],["-74.6347739","42.9570978"],["-74.6350499","42.9575834"],["-74.6352415","42.9578981"],["-74.6354254","42.9581839"],["-74.6356426","42.9584962"],["-74.6359223","42.9588718"],["-74.6362701","42.9593201"],["-74.6366047","42.9597227"],["-74.6369024","42.9600655"],["-74.6377157","42.9608936"],["-74.6380671","42.9612182"],["-74.6395992","42.9625058"],["-74.6412656","42.9638978"],["-74.6429415","42.9653054"],["-74.6436395","42.9659739"],["-74.644459","42.9668203"],["-74.6449","42.9673171"],["-74.6459229","42.9686213"],["-74.6477525","42.9709503"],["-74.648121","42.9714094"],["-74.6492063","42.9726961"],["-74.6534777","42.977153"],["-74.6575272","42.9810533"],["-74.6622607","42.9846958"],["-74.6659648","42.9869342"],["-74.6687456","42.9883712"],["-74.671576","42.9894495"],["-74.6744021","42.9902229"],["-74.6767832","42.9906357"],["-74.678436","42.9907923"],["-74.6800705","42.9908912"],["-74.681345","42.9909326"],["-74.6829544","42.9909518"],["-74.6968583","42.9905078"],["-74.7043488","42.9900775"],["-74.7141526","42.9894101"],["-74.7170219","42.9892882"],["-74.7200725","42.9893949"],["-74.7217566","42.989509"],["-74.7234661","42.9896961"],["-74.7255988","42.9900405"],["-74.7298924","42.9910032"],["-74.7349623","42.9926627"],["-74.7415405","42.9955511"],["-74.7452386","42.9972259"],["-74.7478305","42.9983179"],["-74.7494077","42.9989384"],["-74.7509019","42.999493"],["-74.7524515","42.9999926"],["-74.7697755","43.004516"],["-74.7716102","43.0049503"],["-74.7745782","43.0056177"],["-74.7820244","43.0073137"],["-74.7831108","43.0076192"],["-74.7839734","43.0078922"],["-74.7851167","43.0082715"],["-74.7859891","43.0086"],["-74.786984","43.009011"],["-74.7881183","43.0095126"],["-74.7900439","43.0105145"],["-74.7974726","43.0145148"],["-74.7987249","43.0151753"],["-74.7995427","43.0155383"],["-74.8006894","43.0159399"],["-74.8016438","43.0162458"],["-74.8026071","43.0165053"],["-74.8036688","43.0167395"],["-74.8048529","43.0169279"],["-74.8059367","43.0170863"],["-74.8069224","43.0171408"],["-74.8075945","43.0171609"],["-74.8082444","43.0171524"],["-74.8088065","43.0171341"],["-74.8100413","43.0170667"],["-74.818714","43.0165864"],["-74.8196762","43.0164905"],["-74.8207916","43.016336"],["-74.8220738","43.0161021"],["-74.8228267","43.0159315"],["-74.8236363","43.0157255"],["-74.8243752","43.0155171"],["-74.8250782","43.0152906"],["-74.8260286","43.0149528"],["-74.8268785","43.0146179"],["-74.8275829","43.0143176"],["-74.8312487","43.0125586"],["-74.8317587","43.0123143"],["-74.8321623","43.0121171"],["-74.832788","43.0118251"],["-74.8334265","43.0115512"],["-74.8340325","43.0113125"],["-74.8346158","43.0111124"],["-74.8352792","43.0109088"],["-74.8360199","43.010724"],["-74.8366544","43.010581"],["-74.8375433","43.0104277"],["-74.8381786","43.0103458"],["-74.8387915","43.0102792"],["-74.8393533","43.0102442"],["-74.8400326","43.010221"],["-74.8408128","43.0102295"],["-74.8416794","43.0102682"],["-74.8424299","43.0103385"],["-74.8431918","43.0104376"],["-74.8486832","43.0113313"],["-74.8505447","43.0116046"],["-74.8516602","43.011717"],["-74.8528621","43.0117846"],["-74.8537415","43.0118031"],["-74.8543045","43.0117959"],["-74.8550203","43.0117763"],["-74.8555817","43.0117563"],["-74.8573018","43.0116035"],["-74.8580116","43.011509"],["-74.8587312","43.0113903"],["-74.8593565","43.0112791"],["-74.8598063","43.0111926"],["-74.8603625","43.0110699"],["-74.8610224","43.0109029"],["-74.8616661","43.0107324"],["-74.8709641","43.0080545"],["-74.8726447","43.0075671"],["-74.8809602","43.0051724"],["-74.8817913","43.0049695"],["-74.8823664","43.0048604"],["-74.8828112","43.0047922"],["-74.8832849","43.004737"],["-74.8838228","43.0046942"],["-74.8846286","43.0046637"],["-74.8856327","43.0046978"],["-74.8864403","43.0047781"],["-74.8872354","43.0048938"],["-74.9003309","43.0070343"],["-74.9008962","43.007124"],["-74.9038344","43.0076462"],["-74.9053455","43.0079987"],["-74.9071131","43.0085008"],["-74.9100199","43.0093494"],["-74.9113078","43.0097353"],["-74.9206893","43.012482"],["-74.9224133","43.0129579"],["-74.9233628","43.0131812"],["-74.9247828","43.0134667"],["-74.9255445","43.0135834"],["-74.9259254","43.0136382"],["-74.9271525","43.0137766"],["-74.9279575","43.0138479"],["-74.9558052","43.0147186"],["-74.9623926","43.0145422"],["-74.9637766","43.0144778"],["-74.9672032","43.0142142"],["-74.9708246","43.0138612"],["-74.9715392","43.0138309"],["-74.9721168","43.0138323"],["-74.9728538","43.0138741"],["-74.9733158","43.0139147"],["-74.9738979","43.0139888"],["-74.9744954","43.0140977"],["-74.9749623","43.014189"],["-74.9756654","43.0143754"],["-74.9760098","43.014481"],["-74.9766625","43.0147084"],["-74.9769072","43.0148058"],["-74.9775169","43.0150779"],["-74.9784603","43.0155826"],["-74.9800413","43.0164403"],["-74.9803981","43.0166184"],["-74.9807978","43.0168046"],["-74.9811671","43.0169533"],["-74.9816173","43.0171252"],["-74.9820049","43.0172603"],["-74.9825744","43.0174297"],["-74.9831726","43.0175855"],["-74.9836157","43.0176807"],["-74.9843568","43.0178072"],["-74.9849415","43.0178811"],["-74.985678","43.0179521"],["-74.9869047","43.0179696"],["-75.0031462","43.0173328"],["-75.0043656","43.0173045"],["-75.0051051","43.0173252"],["-75.0060773","43.0173822"],["-75.0073088","43.0174938"],["-75.0081957","43.0176027"],["-75.0090183","43.0177326"],["-75.0098474","43.0178908"],["-75.0105108","43.018035"],["-75.011079","43.0181772"],["-75.0118301","43.0183859"],["-75.012551","43.0186046"],["-75.0133047","43.0188572"],["-75.0141697","43.0191858"],["-75.0149754","43.0195251"],["-75.0169121","43.0204572"],["-75.022373","43.0230962"],["-75.0237408","43.0237035"],["-75.0253234","43.0243533"],["-75.0268335","43.0249304"],["-75.0281042","43.0253789"],["-75.0312727","43.0263693"],["-75.0357555","43.0277239"],["-75.036514","43.027987"],["-75.0371932","43.0282351"],["-75.0380905","43.0285926"],["-75.0388563","43.0289236"],["-75.0399067","43.029416"],["-75.0409621","43.0299641"],["-75.0419822","43.0305412"],["-75.0429537","43.0311499"],["-75.043819","43.0317369"],["-75.0445097","43.032244"],["-75.0451278","43.0327344"],["-75.0457907","43.0332907"],["-75.0465006","43.0339358"],["-75.0470637","43.0344919"],["-75.0477917","43.035282"],["-75.0590639","43.0481276"],["-75.0599872","43.0491363"],["-75.0615344","43.0506941"],["-75.0625375","43.0516293"],["-75.0637131","43.0526846"],["-75.064788","43.0535901"],["-75.0702439","43.0575771"],["-75.0714393","43.0583321"],["-75.0725943","43.0590298"],["-75.0986857","43.0732808"],["-75.0995562","43.0737696"],["-75.100973","43.0745343"],["-75.1030694","43.0756643"],["-75.1121055","43.0805597"],["-75.1138334","43.0814785"],["-75.1154963","43.0822627"],["-75.1164003","43.0826547"],["-75.1172712","43.0830045"],["-75.1180964","43.0833168"],["-75.1197023","43.0838784"],["-75.1240326","43.0852907"],["-75.1250074","43.0856516"],["-75.1265815","43.086322"],["-75.1536911","43.0980243"],["-75.1645362","43.1032079"],["-75.1656618","43.1037166"],["-75.1665826","43.1040985"],["-75.1689303","43.1049614"],["-75.1699922","43.1053412"],["-75.1703951","43.1054864"],["-75.1759623","43.107458"],["-75.177085","43.1078106"],["-75.1789698","43.1083396"],["-75.1808896","43.108812"],["-75.1830353","43.1092508"],["-75.1843249","43.1094741"],["-75.1854843","43.1096508"],["-75.1984117","43.1110562"],["-75.1991107","43.111138"],["-75.2004044","43.1112649"],["-75.2020063","43.1114486"],["-75.2026401","43.1115427"],["-75.2034243","43.1116775"],["-75.2041693","43.111838"],["-75.2048432","43.1119943"],["-75.2063094","43.112447"],["-75.2078491","43.1130063"],["-75.2086279","43.1133414"],["-75.2168737","43.1169184"],["-75.2349653","43.1236082"],["-75.2360244","43.1239626"],["-75.2369323","43.124235"],["-75.2376806","43.1244252"],["-75.2383853","43.1245869"],["-75.2390644","43.1247218"],["-75.2398308","43.1248563"],["-75.2446281","43.125568"],["-75.2456237","43.1257419"],["-75.2463564","43.1258923"],["-75.2479635","43.1262805"],["-75.2487488","43.126497"],["-75.2496258","43.1267518"],["-75.2505088","43.127043"],["-75.2516034","43.1274428"],["-75.2525279","43.1278022"],["-75.2533683","43.1281738"],["-75.2543031","43.1286129"],["-75.2671677","43.1351834"],["-75.2682367","43.1357001"],["-75.2690218","43.1360211"],["-75.2697976","43.1362913"],["-75.2704285","43.1364772"],["-75.2710129","43.1366333"],["-75.2715363","43.136759"],["-75.2722508","43.1368917"],["-75.2730308","43.1370189"],["-75.2738469","43.1371133"],["-75.2744734","43.1371639"],["-75.2750142","43.1371938"],["-75.2754966","43.1372059"],["-75.2767765","43.1371855"],["-75.2773563","43.137152"],["-75.2780551","43.1370938"],["-75.2786241","43.1370257"],["-75.2791893","43.1369391"],["-75.279631","43.13686"],["-75.2809481","43.1365627"],["-75.2815076","43.1364119"],["-75.3048627","43.1286479"],["-75.305761","43.1283874"],["-75.3065409","43.1281914"],["-75.3074318","43.1279981"],["-75.3082738","43.1278434"],["-75.3092372","43.1276997"],["-75.3100354","43.1275966"],["-75.310938","43.1275138"],["-75.3115301","43.1274784"],["-75.3123734","43.12745"],["-75.3333813","43.1273786"],["-75.3344209","43.1273765"],["-75.3497204","43.1273385"],["-75.3507813","43.1273413"],["-75.3527395","43.1273284"],["-75.353829","43.1273297"],["-75.3552","43.1273048"],["-75.3567377","43.1272493"],["-75.3590623","43.1270911"],["-75.3599747","43.1270043"],["-75.3622581","43.1267049"],["-75.3817721","43.1234565"],["-75.3829419","43.1233108"],["-75.3842522","43.1231786"],["-75.3856941","43.123075"],["-75.3871905","43.1229912"],["-75.3891844","43.1229387"],["-75.3906208","43.1229551"],["-75.3925119","43.1230242"],["-75.3944612","43.1231613"],["-75.3950356","43.1232142"],["-75.3965331","43.1233786"],["-75.4255426","43.1272196"],["-75.4384868","43.1281471"],["-75.4424976","43.1284342"],["-75.4448654","43.1287145"],["-75.4458476","43.1288563"],["-75.449115","43.1294591"],["-75.475405","43.1352992"],["-75.4780989","43.1358704"],["-75.4788973","43.1359974"],["-75.4797361","43.1361111"],["-75.4807676","43.1362056"],["-75.4817047","43.1362665"],["-75.4827059","43.1362989"],["-75.4835361","43.1363065"],["-75.4843192","43.1362766"],["-75.4851081","43.1362314"],["-75.4858456","43.1361692"],["-75.4891558","43.1357626"],["-75.5809456","43.1239873"],["-75.5819459","43.1238729"],["-75.5831719","43.1237941"],["-75.5840405","43.12377"],["-75.5848281","43.1237584"],["-75.5852875","43.1237679"],["-75.5860968","43.1238044"],["-75.5870468","43.1238707"],["-75.5892988","43.1241053"],["-75.5972933","43.1250961"],["-75.6034707","43.1258292"],["-75.6043129","43.1259185"],["-75.6052936","43.1259962"],["-75.6060847","43.1260284"],["-75.6069518","43.1260503"],["-75.6078181","43.1260331"],["-75.6087681","43.1259946"],["-75.6096623","43.1259294"],["-75.6104097","43.1258567"],["-75.6110945","43.1257672"],["-75.6118043","43.1256572"],["-75.6127071","43.1254899"],["-75.6138589","43.1252357"],["-75.6525765","43.1140681"],["-75.6532803","43.1138685"],["-75.6722241","43.1083848"],["-75.6731497","43.1081555"],["-75.6740759","43.1079525"],["-75.6748057","43.1078252"],["-75.6961626","43.1050671"],["-75.7235801","43.1020133"],["-75.7243982","43.1019049"],["-75.7252902","43.1017641"],["-75.7262199","43.1015908"],["-75.7271309","43.1013784"],["-75.7280061","43.101155"],["-75.7287376","43.1009357"],["-75.7294334","43.1007061"],["-75.7302378","43.1004151"],["-75.7309316","43.1001363"],["-75.7315205","43.099886"],["-75.7458898","43.0932833"],["-75.7468185","43.0929137"],["-75.7477976","43.0925558"],["-75.7488429","43.092212"],["-75.7498268","43.0919332"],["-75.7507591","43.0916869"],["-75.7518953","43.0914666"],["-75.759093","43.0903509"],["-75.7601808","43.0902363"],["-75.7609419","43.0901957"],["-75.7618181","43.0901653"],["-75.7627079","43.0901736"],["-75.7635741","43.0901919"],["-75.7647449","43.0902698"],["-75.7654404","43.0903343"],["-75.8022512","43.0941004"],["-75.8039982","43.0941894"],["-75.805003","43.0942075"],["-75.8277877","43.0940241"],["-75.8288568","43.094042"],["-75.8297701","43.0940798"],["-75.83082","43.094169"],["-75.8321696","43.0943208"],["-75.8377494","43.0950272"],["-75.8394449","43.0952379"],["-75.8430088","43.0956749"],["-75.8441096","43.0957982"],["-75.8457069","43.0959146"],["-75.8468571","43.0959455"],["-75.8764636","43.0954274"],["-75.8771081","43.0953854"],["-75.8789353","43.095188"],["-75.9037395","43.0917516"],["-75.9050247","43.0916663"],["-75.9064512","43.0916267"],["-75.9227657","43.0914718"],["-75.9585469","43.0924712"],["-75.9621867","43.0926505"],["-75.9729412","43.0933949"],["-75.9898353","43.0941823"],["-76.028914","43.0953168"],["-76.0304824","43.0952874"],["-76.0420032","43.0948991"],["-76.0824811","43.093715"],["-76.0830865","43.0936663"],["-76.0969894","43.0920517"],["-76.0980689","43.0919536"],["-76.0988278","43.0919021"],["-76.0996961","43.0918689"],["-76.1006753","43.0918464"],["-76.1018126","43.0918643"],["-76.1028117","43.0919006"],["-76.1245975","43.0934267"],["-76.1256069","43.0934756"],["-76.1270972","43.0934514"],["-76.1342547","43.0931173"],["-76.1426015","43.0925052"],["-76.1530062","43.0919631"],["-76.1551003","43.0918829"],["-76.1567317","43.0919157"],["-76.1573188","43.09195"],["-76.1580645","43.0920102"],["-76.1589425","43.0921077"],["-76.1597619","43.0922213"],["-76.1605399","43.0923489"],["-76.1612764","43.0924971"],["-76.1625096","43.0927893"],["-76.1646026","43.0934448"],["-76.1695949","43.0953718"],["-76.1702653","43.0956674"],["-76.1713636","43.0961693"],["-76.1725063","43.0967516"],["-76.1732306","43.0971723"],["-76.1739292","43.0976203"],["-76.1752409","43.0985134"],["-76.1768664","43.0996212"],["-76.1790336","43.100915"],["-76.1803276","43.1016246"],["-76.1805159","43.1017272"],["-76.1813077","43.1021384"],["-76.1833367","43.1030803"],["-76.1981364","43.1095022"],["-76.2108185","43.1149836"],["-76.2117513","43.1153558"],["-76.2124606","43.1155973"],["-76.2153004","43.1163791"],["-76.218222","43.1171719"],["-76.2184028","43.1172189"],["-76.2184955","43.117244"],["-76.2186188","43.1172754"],["-76.2192111","43.1174015"],["-76.2201201","43.1175794"],["-76.2211072","43.1177528"],["-76.2218061","43.1178536"],["-76.2227293","43.1179357"],["-76.2237435","43.1180006"],["-76.2334835","43.1182019"],["-76.234268","43.1181765"],["-76.2350241","43.1181378"],["-76.2359316","43.11807"],["-76.2366808","43.1179889"],["-76.2375118","43.1178769"],["-76.2383064","43.1177433"],["-76.2392299","43.1175623"],["-76.2402215","43.1173313"],["-76.2500188","43.1146404"],["-76.2535491","43.1138142"],["-76.2587646","43.1126892"],["-76.2634504","43.1118566"],["-76.2646464","43.1116439"],["-76.2649529","43.111586"],["-76.2742065","43.1099559"],["-76.2850946","43.1079477"],["-76.2861126","43.1077022"],["-76.2909339","43.1063764"],["-76.2928314","43.1057916"],["-76.2956085","43.1048925"],["-76.2962436","43.1046624"],["-76.2968568","43.1044115"],["-76.2974354","43.1041641"],["-76.2985083","43.1036608"],["-76.2991765","43.1033042"],["-76.3007086","43.1023841"],["-76.3152351","43.0933673"],["-76.3159226","43.092965"],["-76.3168713","43.0924703"],["-76.3175285","43.0921604"],["-76.3183738","43.091798"],["-76.31922","43.091468"],["-76.3200052","43.0911934"],["-76.3207256","43.0909707"],["-76.3215843","43.0907241"],["-76.3223487","43.0905395"],["-76.3232874","43.0903383"],["-76.3240954","43.0901911"],["-76.3249147","43.0900655"],["-76.3350908","43.0889584"],["-76.3358314","43.0888713"],["-76.3365363","43.0887861"],["-76.3407374","43.08829"],["-76.3420425","43.0881685"],["-76.3437854","43.0880955"],["-76.3447391","43.0881225"],["-76.3474194","43.0882796"],["-76.3551445","43.0887712"],["-76.3733705","43.0899163"],["-76.3740926","43.0899382"],["-76.3752824","43.0899005"],["-76.3820359","43.0895858"],["-76.4094092","43.0868517"],["-76.4224127","43.0853991"],["-76.4494899","43.0816534"],["-76.4512573","43.0814286"],["-76.4592627","43.0805403"],["-76.4615376","43.0802148"],["-76.4814982","43.077112"],["-76.508642","43.0734525"],["-76.5106139","43.0731068"],["-76.5127286","43.0726514"],["-76.5138045","43.0723858"],["-76.5178533","43.0712625"],["-76.5340177","43.0671448"],["-76.5351852","43.0668952"],["-76.5523662","43.0637327"],["-76.5556385","43.0630713"],["-76.5933572","43.0554709"],["-76.6045003","43.0532229"],["-76.6048369","43.053155"],["-76.6054161","43.0530314"],["-76.6061413","43.052871"],["-76.6067079","43.0527242"],["-76.6075719","43.0524715"],["-76.6079929","43.052331"],["-76.6084999","43.052149"],["-76.6090548","43.051934"],["-76.6095914","43.0517035"],["-76.6103917","43.0513303"],["-76.6108623","43.0510849"],["-76.6113598","43.0508084"],["-76.611975","43.0504609"],["-76.6152858","43.0485619"],["-76.6160481","43.0481191"],["-76.6177612","43.0471344"],["-76.6191074","43.046359"],["-76.6219208","43.0447393"],["-76.6242279","43.0434151"],["-76.6294388","43.0404304"],["-76.6299374","43.0401626"],["-76.6309446","43.0396811"],["-76.6355297","43.0376597"],["-76.6372856","43.0368889"],["-76.6387073","43.0362678"],["-76.6435848","43.0341382"],["-76.644242","43.0338837"],["-76.6448892","43.0336477"],["-76.646059","43.033271"],["-76.6464554","43.033152"],["-76.6467321","43.0330716"],["-76.6471413","43.0329502"],["-76.6626312","43.0283763"],["-76.6635527","43.0280848"],["-76.6640171","43.0279203"],["-76.6645811","43.0277066"],["-76.6651161","43.0274922"],["-76.6658792","43.0271564"],["-76.6665143","43.0268669"],["-76.6674839","43.0264134"],["-76.6783317","43.021345"],["-76.6788505","43.0210762"],["-76.6793425","43.0208069"],["-76.6798862","43.0204918"],["-76.6803227","43.0202237"],["-76.6818315","43.0192665"],["-76.688907","43.0147985"],["-76.6907557","43.0136396"],["-76.6912606","43.0133365"],["-76.6915035","43.0131905"],["-76.6923663","43.0126696"],["-76.6985983","43.0089393"],["-76.6991019","43.0086628"],["-76.6995649","43.0084261"],["-76.7001043","43.0081658"],["-76.7018845","43.0073805"],["-76.7022691","43.0072166"],["-76.7025144","43.0071131"],["-76.7133755","43.002515"],["-76.7151307","43.0018243"],["-76.715786","43.0016038"],["-76.7164046","43.0014114"],["-76.7170547","43.0012287"],["-76.7216381","43.0001116"],["-76.7339781","42.997159"],["-76.7357831","42.9966869"],["-76.7720459","42.9855552"],["-76.7728801","42.9853332"],["-76.77426","42.9850238"],["-76.775583","42.9847617"],["-76.7770228","42.9845372"],["-76.7895181","42.982886"],["-76.7906829","42.9827034"],["-76.7920136","42.9824159"],["-76.793019","42.9821675"],["-76.7936765","42.9819749"],["-76.7944092","42.98173"],["-76.7953795","42.9813746"],["-76.7960693","42.9811047"],["-76.7970816","42.980653"],["-76.7976469","42.9803734"],["-76.7988994","42.9797101"],["-76.8060977","42.9757514"],["-76.8076093","42.9750002"],["-76.8084272","42.974639"],["-76.8094967","42.9742384"],["-76.8105036","42.9738961"],["-76.8114635","42.9736169"],["-76.8120637","42.973462"],["-76.821301","42.9714235"],["-76.8365626","42.9684243"],["-76.8373952","42.9682974"],["-76.8386279","42.9681485"],["-76.8397573","42.9680517"],["-76.8469579","42.9678961"],["-76.8479737","42.9678744"],["-76.849902","42.967827"],["-76.8506964","42.967795"],["-76.851717","42.9677153"],["-76.8523851","42.9676509"],["-76.8524759","42.9676427"],["-76.853014","42.9675681"],["-76.8541734","42.9673877"],["-76.8619198","42.966019"],["-76.862905","42.9658696"],["-76.8635943","42.9657965"],["-76.8646565","42.9657137"],["-76.8753762","42.9652158"],["-76.8762204","42.965143"],["-76.8769756","42.9650633"],["-76.8778776","42.964933"],["-76.8790602","42.9647164"],["-76.9055505","42.9593162"],["-76.9071891","42.9590353"],["-76.9081796","42.9589144"],["-76.9091026","42.9588282"],["-76.9255567","42.9581319"],["-76.9267525","42.9581571"],["-76.9273432","42.9581917"],["-76.9287981","42.9583231"],["-76.9416104","42.9598032"],["-76.94328","42.9599704"],["-76.9441466","42.9600157"],["-76.9451947","42.9600331"],["-76.9459491","42.9600084"],["-76.946495","42.9599849"],["-76.9471995","42.9599308"],["-76.9477245","42.9598803"],["-76.9488068","42.9597395"],["-76.9494068","42.9596426"],["-76.9500451","42.959518"],["-76.9507047","42.9593745"],["-76.9515193","42.9591677"],["-76.9603709","42.9565013"],["-76.9610454","42.9563273"],["-76.9623552","42.9559937"],["-76.9632404","42.9557872"],["-76.9642258","42.9555939"],["-76.965609","42.9553749"],["-76.9673351","42.9551327"],["-76.9707558","42.9549079"],["-76.9719683","42.9548902"],["-76.97396","42.9549231"],["-76.9771134","42.9549117"],["-76.9820674","42.9549875"],["-76.9829501","42.9549818"],["-77.0057285","42.9553179"],["-77.0194517","42.9559444"],["-77.0241188","42.9562222"],["-77.026262","42.9564949"],["-77.0283349","42.9569382"],["-77.0303743","42.9574239"],["-77.0329807","42.9582955"],["-77.042248","42.9622086"],["-77.0437741","42.9629127"],["-77.0511746","42.966143"],["-77.0545444","42.9673185"],["-77.0565915","42.9679071"],["-77.0576897","42.9681603"],["-77.0586665","42.968346"],["-77.0599344","42.968577"],["-77.0617232","42.9688216"],["-77.062841","42.9689264"],["-77.0639515","42.9690116"],["-77.0650778","42.9690705"],["-77.0705328","42.9692425"],["-77.0723934","42.9693787"],["-77.0734107","42.9695052"],["-77.0744095","42.9696674"],["-77.0756903","42.9699339"],["-77.0762444","42.9700664"],["-77.076804","42.9702105"],["-77.0778507","42.9705402"],["-77.0790557","42.970956"],["-77.080835","42.9716208"],["-77.082858","42.9723517"],["-77.0862059","42.9733131"],["-77.0893717","42.9739393"],["-77.0911856","42.9741922"],["-77.0953961","42.9744628"],["-77.1041881","42.9745285"],["-77.1384638","42.9734589"],["-77.1479476","42.9733351"],["-77.1761232","42.9739849"],["-77.1792921","42.9742622"],["-77.1823309","42.9747291"],["-77.1895058","42.9761592"],["-77.1927611","42.9767487"],["-77.1952984","42.9769452"],["-77.2010712","42.9771647"],["-77.2124107","42.9780438"],["-77.2203807","42.9783918"],["-77.2226444","42.9784893"],["-77.2266996","42.9786534"],["-77.2291325","42.9787546"],["-77.2421718","42.9792397"],["-77.2586988","42.9794474"],["-77.2666112","42.9797764"],["-77.2689103","42.9799929"],["-77.2715821","42.9803637"],["-77.2743591","42.9808208"],["-77.3370606","42.9933127"],["-77.3399558","42.9937965"],["-77.3447507","42.994461"],["-77.3479036","42.9946996"],["-77.402233","42.9976"],["-77.4104838","42.9981245"],["-77.4122267","42.9982971"],["-77.4163885","42.9988838"],["-77.4184277","42.9992669"],["-77.4217593","42.999988"],["-77.4236504","43.00043"],["-77.4246037","43.0007236"],["-77.4256719","43.0011102"],["-77.4267237","43.0015135"],["-77.4280652","43.0021587"],["-77.429906","43.0032265"],["-77.4354625","43.0068138"],["-77.4361996","43.0073432"],["-77.4369144","43.0078102"],["-77.4375926","43.0082759"],["-77.4380298","43.0087314"],["-77.4383264","43.0092663"],["-77.4385137","43.009956"],["-77.4388236","43.0114631"],["-77.4389135","43.0124085"],["-77.4392698","43.0142729"],["-77.4397118","43.0156627"],["-77.4399756","43.0161502"],["-77.4404509","43.0167659"],["-77.4431532","43.0198472"],["-77.4461311","43.0240042"],["-77.4478796","43.0263163"],["-77.4500035","43.0282512"],["-77.452488","43.0302809"],["-77.4551659","43.0326604"],["-77.4609351","43.0388786"],["-77.4614982","43.0398229"],["-77.4618865","43.0406442"],["-77.4621205","43.041377"],["-77.4623286","43.0422705"],["-77.4628462","43.0451406"],["-77.4632118","43.0465755"],["-77.4634865","43.047394"],["-77.463868","43.0481376"],["-77.4642289","43.048801"],["-77.4646916","43.0493564"],["-77.4652904","43.0498989"],["-77.4659768","43.0504214"],["-77.4677752","43.0516266"],["-77.4686315","43.0522241"],["-77.4690599","43.052652"],["-77.4695847","43.0532018"],["-77.4697564","43.053397"],["-77.4699274","43.0536269"],["-77.4703471","43.054293"],["-77.4706827","43.0549697"],["-77.4709394","43.0557008"],["-77.4710891","43.0565191"],["-77.4711259","43.0576013"],["-77.4711409","43.0582554"],["-77.4711378","43.0589684"],["-77.4711451","43.0603116"],["-77.4711863","43.0613163"],["-77.4712519","43.0620045"],["-77.4714609","43.0629791"],["-77.4724953","43.0659977"],["-77.4728103","43.0666918"],["-77.4731393","43.0673425"],["-77.4735772","43.068162"],["-77.4743451","43.0692199"],["-77.4752596","43.0702138"],["-77.4760312","43.0709142"],["-77.4769635","43.07163"],["-77.4811817","43.0746942"],["-77.4825735","43.0757328"],["-77.4833969","43.0765195"],["-77.4838165","43.0769796"],["-77.484363","43.0776363"],["-77.4863365","43.0802889"],["-77.487114","43.0811944"],["-77.4885389","43.0824641"],["-77.488995","43.082826"],["-77.4908118","43.0838858"],["-77.4915564","43.0842837"],["-77.4923241","43.0846722"],["-77.494461","43.0857395"],["-77.4951668","43.0861206"],["-77.4956812","43.0864308"],["-77.496126","43.0867344"],["-77.4965328","43.087029"],["-77.4969391","43.0873507"],["-77.4973104","43.0876842"],["-77.4976876","43.0880456"],["-77.4980725","43.0884683"],["-77.4983812","43.0888365"],["-77.4989244","43.0896179"],["-77.4991671","43.0900436"],["-77.4993797","43.090457"],["-77.499571","43.0909016"],["-77.4997191","43.0913154"],["-77.5002608","43.0932167"],["-77.5014113","43.0973447"],["-77.5015428","43.097776"],["-77.5017056","43.0982313"],["-77.5018889","43.0986883"],["-77.5022895","43.0994897"],["-77.5060461","43.1055165"],["-77.5064257","43.1063268"],["-77.5066837","43.1070184"],["-77.5068415","43.1075233"],["-77.5069512","43.1082483"],["-77.5070039","43.1088169"],["-77.5070137","43.1093231"],["-77.5069739","43.1098347"],["-77.506348","43.1139446"],["-77.5063093","43.1143352"],["-77.5063025","43.1146574"],["-77.5063296","43.1149749"],["-77.5063927","43.1153184"],["-77.5064796","43.1156221"],["-77.5065849","43.1158951"],["-77.5066952","43.116136"],["-77.5068188","43.1163615"],["-77.5070903","43.1167855"],["-77.5072718","43.1169932"],["-77.5078051","43.1175286"],["-77.5082268","43.1178735"],["-77.5087182","43.1181505"],["-77.5092497","43.1184233"],["-77.5096968","43.1186168"],["-77.5105635","43.1188843"],["-77.5134012","43.11935"],["-77.5148616","43.119614"],["-77.5157107","43.1198569"],["-77.5162563","43.1200522"],["-77.5166274","43.1201893"],["-77.5171866","43.120407"],["-77.5176106","43.1206229"],["-77.5188605","43.1213689"],["-77.5220032","43.1232948"],["-77.5224463","43.12361"],["-77.5227528","43.123874"],["-77.523047","43.1241483"],["-77.5233724","43.1245185"],["-77.52367","43.1249368"],["-77.5239203","43.125351"],["-77.5241065","43.125848"],["-77.5242563","43.1263803"],["-77.5243821","43.1274613"],["-77.5244501","43.1280946"],["-77.524534","43.1285771"],["-77.5246335","43.1289729"],["-77.5247284","43.1292147"],["-77.5248005","43.129389"],["-77.5250443","43.1298238"],["-77.5253798","43.1303031"],["-77.5258839","43.1308731"],["-77.5261326","43.1310688"],["-77.5281073","43.1324992"],["-77.5309735","43.1346622"],["-77.5336838","43.1365074"],["-77.5340279","43.1367248"],["-77.5342639","43.1368668"],["-77.5344949","43.1369965"],["-77.5346132","43.1370603"],["-77.5347427","43.1371294"],["-77.5413377","43.1405863"],["-77.5421331","43.1411076"],["-77.5425379","43.14138"],["-77.5431131","43.1417533"],["-77.5437091","43.1420868"],["-77.5439587","43.1422086"],["-77.544327","43.1423717"],["-77.5446032","43.1424838"],["-77.5447352","43.1425337"],["-77.5450035","43.1426272"],["-77.5455483","43.1427983"],["-77.5518215","43.1442685"],["-77.5533715","43.1446147"],["-77.5536584","43.1446625"],["-77.5539612","43.1447009"],["-77.5545702","43.1447457"],["-77.5554363","43.144765"],["-77.5560687","43.144763"],["-77.5565119","43.144769"],["-77.5595047","43.1449129"],["-77.559952","43.144903"],["-77.5631592","43.1446172"],["-77.5632699","43.1446052"],["-77.5912764","43.1418114"],["-77.5924686","43.141763"],["-77.5929138","43.1417712"],["-77.5936715","43.1418149"],["-77.5945058","43.14191"],["-77.5947276","43.1419431"],["-77.5948362","43.1419609"],["-77.5948547","43.1419643"],["-77.5952747","43.1420434"],["-77.5957025","43.1421376"],["-77.5961384","43.1422514"],["-77.5964028","43.1423309"],["-77.596549","43.142379"],["-77.5966828","43.1424258"],["-77.5968104","43.1424744"],["-77.5970686","43.1425824"],["-77.5971893","43.1426364"],["-77.5973586","43.1427184"],["-77.597431","43.1427559"],["-77.5975783","43.1428403"],["-77.5976762","43.1428997"],["-77.5977821","43.1429683"],["-77.5978916","43.1430459"],["-77.5981014","43.1432089"],["-77.5983087","43.1433831"],["-77.5983976","43.1434629"],["-77.5984923","43.1435527"],["-77.5986567","43.143725"],["-77.5988212","43.1439101"],["-77.5992503","43.1444515"],["-77.6006091","43.1461948"],["-77.6017103","43.1477068"],["-77.6022219","43.1484151"],["-77.6022918","43.1485095"],["-77.6024289","43.1486904"],["-77.6024782","43.1487485"],["-77.6025241","43.1487964"],["-77.6025763","43.1488447"],["-77.6026234","43.1488854"],["-77.6026774","43.148929"],["-77.6027287","43.1489683"],["-77.6027787","43.1490042"],["-77.6028321","43.1490392"],["-77.6028919","43.1490756"],["-77.602947","43.1491071"],["-77.6035092","43.14941"],["-77.6035898","43.1494558"],["-77.6036467","43.149491"],["-77.6037016","43.1495283"],["-77.6037532","43.149567"],["-77.6038034","43.1496066"],["-77.6038484","43.1496453"],["-77.6038878","43.1496826"],["-77.603924","43.149721"],["-77.6039625","43.1497666"],["-77.6039964","43.1498122"],["-77.6040241","43.1498557"],["-77.6040525","43.1499054"],["-77.6040773","43.1499575"],["-77.6041235","43.150082"],["-77.6041488","43.1501585"],["-77.6041732","43.1502435"],["-77.6041974","43.1503401"],["-77.6042261","43.1504849"],["-77.6042629","43.1507078"],["-77.604303","43.1509479"],["-77.6043466","43.151153"],["-77.6045114","43.1518504"],["-77.6046425","43.1523302"],["-77.6047023","43.1525481"],["-77.6050899","43.1540139"],["-77.6051395","43.1541547"],["-77.6064173","43.1571638"],["-77.6065378","43.1571403"],["-77.6156557","43.1550099"],["-77.6157723","43.1551594"],["-77.615809","43.1552087"],["-77.6158456","43.1552561"],["-77.6168269","43.1563892"],["-77.6169368","43.1565172"],["-77.6169946","43.1565968"],["-77.6170218","43.1566371"],["-77.6170535","43.1566899"],["-77.6172213","43.1569998"],["-77.6172726","43.1570908"],["-77.6173029","43.1571342"],["-77.6173241","43.1571629"],["-77.6173577","43.1572082"],["-77.6173863","43.1572448"],["-77.6174202","43.1572856"],["-77.6177317","43.1576302"],["-77.617779","43.1576532"],["-77.6179961","43.1575365"],["-77.6185771","43.1572426"],["-77.6200503","43.1565913"],["-77.620102","43.1565725"],["-77.6201495","43.1565569"],["-77.6201992","43.1565423"],["-77.6202494","43.1565314"],["-77.6203016","43.1565262"],["-77.6203494","43.1565225"],["-77.6204049","43.1565201"],["-77.6204605","43.1565206"],["-77.6205126","43.1565225"],["-77.6205658","43.1565297"],["-77.6206074","43.156536"],["-77.6206636","43.1565476"],["-77.6207106","43.1565592"],["-77.6207597","43.1565735"],["-77.620809","43.1565903"],["-77.6208426","43.1566028"],["-77.6208683","43.1566126"],["-77.6209164","43.1566348"],["-77.6209836","43.1566685"],["-77.621391","43.1568909"],["-77.6215025","43.1569514"],["-77.6216329","43.1570159"],["-77.621817","43.1570945"],["-77.6219485","43.1571467"],["-77.6220251","43.1571746"],["-77.62225","43.1572483"],["-77.6225011","43.1573277"],["-77.6225942","43.1573558"],["-77.6227916","43.157412"],["-77.6229897","43.1574595"],["-77.6231394","43.1574921"],["-77.6232972","43.1575231"],["-77.623439","43.1575476"],["-77.6235874","43.1575699"],["-77.6237305","43.1575884"],["-77.6240289","43.1576167"],["-77.6241434","43.1576244"],["-77.6243828","43.1576347"],["-77.624503","43.1576377"],["-77.624933","43.1576272"],["-77.6250717","43.1576195"],["-77.6253494","43.1575956"],["-77.6254519","43.1575844"],["-77.6261093","43.1574737"],["-77.6292797","43.1568266"],["-77.6295536","43.1567808"],["-77.6297131","43.1567579"],["-77.6299977","43.1567235"],["-77.6301371","43.1567102"],["-77.6313645","43.1566677"],["-77.6395821","43.1567119"],["-77.6437058","43.1571771"],["-77.6478752","43.1572127"],["-77.6552666","43.1571243"],["-77.6745227","43.1577534"],["-77.6752892","43.1577725"],["-77.6756955","43.1577976"],["-77.6762161","43.1578314"],["-77.6769818","43.1579201"],["-77.6789498","43.1581704"],["-77.6800823","43.1583042"],["-77.6808258","43.1583687"],["-77.6812599","43.1583889"],["-77.6818951","43.1584028"],["-77.6822363","43.1583904"],["-77.6831159","43.1583464"],["-77.6835857","43.1583056"],["-77.6871973","43.1578536"],["-77.6889452","43.1576332"],["-77.6901247","43.1575115"],["-77.6921097","43.1573808"],["-77.6959733","43.1571651"],["-77.6973228","43.1571371"],["-77.6983064","43.1571627"],["-77.6996412","43.1572232"],["-77.7050942","43.1576488"],["-77.7093532","43.1579676"],["-77.7105274","43.1580352"],["-77.7112686","43.1580169"],["-77.7119334","43.1579592"],["-77.7124703","43.157887"],["-77.7129659","43.1577932"],["-77.7136192","43.1575933"],["-77.7142567","43.1573478"],["-77.7148346","43.1570705"],["-77.7155344","43.1566647"],["-77.7160841","43.1562541"],["-77.7165101","43.1558458"],["-77.7168335","43.1554842"],["-77.7170942","43.1551471"],["-77.7173465","43.154713"],["-77.7175182","43.1543185"],["-77.7176676","43.1539092"],["-77.7177717","43.1534318"],["-77.7178425","43.1525437"],["-77.7178784","43.1513603"],["-77.7179441","43.1465466"],["-77.7179594","43.1455715"],["-77.7180828","43.1385912"],["-77.7181754","43.1379266"],["-77.7183599","43.1369981"],["-77.7186944","43.1361413"],["-77.7189188","43.1356914"],["-77.7192212","43.1351575"],["-77.7198595","43.1341755"],["-77.720287","43.1336369"],["-77.7213212","43.1326756"],["-77.7221466","43.1319372"],["-77.7245346","43.1299705"],["-77.7282642","43.1268781"],["-77.7293998","43.1259781"],["-77.7298796","43.1256279"],["-77.7299843","43.1255533"],["-77.7301207","43.1254565"],["-77.7301335","43.1254473"],["-77.730341","43.1253095"],["-77.7310836","43.1248376"],["-77.7322015","43.1242444"],["-77.7335341","43.1236291"],["-77.7350182","43.1230403"],["-77.7366677","43.1225024"],["-77.7392026","43.1218752"],["-77.7401895","43.1217103"],["-77.7409119","43.1216179"],["-77.7434795","43.121356"],["-77.7491699","43.1208948"],["-77.7516872","43.1206541"],["-77.7536494","43.1204121"],["-77.7563777","43.1199729"],["-77.7587176","43.1195047"],["-77.759646","43.11929"],["-77.7613456","43.11885"],["-77.7627486","43.1184027"],["-77.764567","43.1178045"],["-77.7663492","43.1171004"],["-77.7685621","43.1161281"],["-77.7706678","43.1150624"],["-77.7734721","43.1135021"],["-77.7752233","43.1123323"],["-77.7792302","43.1092974"],["-77.7899651","43.1010861"],["-77.7911931","43.1001927"],["-77.7926115","43.0992344"],["-77.7944163","43.0981481"],["-77.795717","43.0974661"],["-77.7966952","43.0969904"],["-77.7989606","43.096072"],["-77.8014643","43.095317"],["-77.8034803","43.0948318"],["-77.8046167","43.0946248"],["-77.8061729","43.0943753"],["-77.8074273","43.0942361"],["-77.809303","43.0940991"],["-77.8121439","43.0940314"],["-77.8205152","43.0941657"],["-77.8220148","43.0942034"],["-77.8305431","43.0944393"],["-77.8336371","43.0946261"],["-77.8593186","43.0975222"],["-77.8650287","43.0981323"],["-77.8660326","43.0981446"],["-77.8669993","43.0981043"],["-77.8683821","43.0979705"],["-77.869418","43.0978057"],["-77.8703607","43.097622"],["-77.8719088","43.0972226"],["-77.8845798","43.0937069"],["-77.8854146","43.0934536"],["-77.8892294","43.0923736"],["-77.8970659","43.090207"],["-77.8997206","43.0895351"],["-77.9038379","43.0888606"],["-77.9184761","43.0866277"],["-77.9202717","43.0862503"],["-77.9214367","43.085943"],["-77.9224043","43.0856389"],["-77.9232612","43.0853411"],["-77.9240342","43.0850365"],["-77.9252732","43.0844706"],["-77.9260389","43.0840777"],["-77.9268097","43.0836441"],["-77.9276019","43.0831891"],["-77.9290207","43.082185"],["-77.9296423","43.0816821"],["-77.9302274","43.0811913"],["-77.9307805","43.0807017"],["-77.9312471","43.0802822"],["-77.9314239","43.0800739"],["-77.9317096","43.0797457"],["-77.9320001","43.079403"],["-77.9324546","43.0788195"],["-77.9327846","43.0783531"],["-77.9330985","43.0778669"],["-77.9333724","43.0774059"],["-77.9337262","43.0767359"],["-77.9342799","43.0755947"],["-77.935153","43.0737917"],["-77.9359632","43.0720759"],["-77.9371562","43.0696157"],["-77.9379056","43.0681224"],["-77.948661","43.048867"],["-77.949121","43.0481044"],["-77.9495032","43.0475589"],["-77.9499013","43.0470227"],["-77.9504458","43.0463799"],["-77.9510777","43.0457008"],["-77.9515471","43.0452322"],["-77.9523121","43.0445639"],["-77.9528328","43.0441397"],["-77.9544975","43.0429664"],["-77.9612154","43.0384012"],["-77.9617423","43.0380177"],["-77.9620831","43.0377398"],["-77.9624324","43.0374086"],["-77.9629158","43.0368795"],["-77.9632476","43.0364651"],["-77.9635347","43.0360479"],["-77.9637164","43.0357501"],["-77.9639135","43.0353808"],["-77.9640339","43.0351113"],["-77.9641388","43.0348583"],["-77.9642316","43.0345987"],["-77.9642575","43.0345168"],["-77.9643467","43.0342126"],["-77.9644269","43.0338853"],["-77.9645062","43.0334443"],["-77.9645347","43.0331517"],["-77.9645566","43.0328186"],["-77.9646043","43.0312506"],["-77.9646929","43.0307439"],["-77.964751","43.0305468"],["-77.9648268","43.0303546"],["-77.9650028","43.0300443"],["-77.9650646","43.0299744"],["-77.9651719","43.0298583"],["-77.9652814","43.029764"],["-77.9654058","43.0296757"],["-77.9655495","43.0295938"],["-77.9656851","43.0295335"],["-77.9659378","43.0294555"],["-77.9662093","43.0294112"],["-77.9672577","43.0293051"],["-77.9683592","43.0292146"],["-77.969461","43.0291679"],["-78.0310029","43.0303757"],["-78.0325164","43.030355"],["-78.035497","43.0302412"],["-78.0381934","43.0300094"],["-78.0395493","43.029861"],["-78.0414842","43.0295974"],["-78.042446","43.0294485"],["-78.0454051","43.0288934"],["-78.0463125","43.0286944"],["-78.0473266","43.0284488"],["-78.0487437","43.0280846"],["-78.0519189","43.027163"],["-78.0927396","43.0150311"],["-78.094449","43.0145538"],["-78.0955673","43.0143037"],["-78.0965558","43.0141276"],["-78.0977102","43.0139652"],["-78.0986574","43.0138593"],["-78.0994667","43.0138031"],["-78.1006692","43.0137501"],["-78.1020415","43.0137669"],["-78.1033178","43.0138326"],["-78.104429","43.0139284"],["-78.1052967","43.0140373"],["-78.1061194","43.0141644"],["-78.1068641","43.0143051"],["-78.1075707","43.0144588"],["-78.1084606","43.014674"],["-78.109445","43.0149512"],["-78.1105828","43.0153224"],["-78.1170872","43.0179272"],["-78.1190795","43.0187349"],["-78.1225484","43.020103"],["-78.1235305","43.0204415"],["-78.1246361","43.0207911"],["-78.1256084","43.0210682"],["-78.1267175","43.0213396"],["-78.1279449","43.0215915"],["-78.130827","43.0220688"],["-78.1317832","43.0221714"],["-78.1348893","43.022328"],["-78.1359497","43.0223376"],["-78.1374336","43.0222812"],["-78.1811522","43.0191729"],["-78.1821915","43.0190858"],["-78.1844083","43.018945"],["-78.1857171","43.0188651"],["-78.1861047","43.0188483"],["-78.1865475","43.0188154"],["-78.2772787","43.0163578"],["-78.38529","43.0105192"],["-78.3907239","43.0104105"],["-78.3928927","43.0102475"],["-78.3943608","43.0100739"],["-78.3967143","43.0097234"],["-78.3982397","43.0094252"],["-78.4007761","43.0088079"],["-78.4019652","43.0084727"],["-78.4028905","43.008178"],["-78.4058344","43.0071056"],["-78.4070703","43.0065844"],["-78.4081377","43.00609"],["-78.4091828","43.0055773"],["-78.4103901","43.0049252"],["-78.4150623","43.0022586"],["-78.4160531","43.0016761"],["-78.4205364","42.9990907"],["-78.4215656","42.9985107"],["-78.4278048","42.9949145"],["-78.4286226","42.9944701"],["-78.4294057","42.9940947"],["-78.4299629","42.9938435"],["-78.4308667","42.9934642"],["-78.4315355","42.9932201"],["-78.4322239","42.9929853"],["-78.433152","42.9927003"],["-78.4340711","42.9924617"],["-78.435049","42.992237"],["-78.4357881","42.99208"],["-78.4505647","42.9889385"],["-78.4567413","42.9876053"],["-78.4726266","42.9841128"],["-78.47935","42.9822021"],["-78.4806379","42.9819065"],["-78.4823594","42.9815912"],["-78.4841751","42.9812987"],["-78.4857668","42.9811275"],["-78.4872679","42.9810227"],["-78.4901655","42.9808986"],["-78.4917251","42.9808089"],["-78.4932182","42.980685"],["-78.4946558","42.9805373"],["-78.4963116","42.9803063"],["-78.4979473","42.9800373"],["-78.4998293","42.9796697"],["-78.5020818","42.9791175"],["-78.5040977","42.9785562"],["-78.505985","42.9779418"],["-78.5079202","42.9772218"],["-78.5098443","42.9764282"],["-78.5112324","42.9757841"],["-78.5147502","42.9740876"],["-78.517831","42.9726948"],["-78.5219869","42.9710824"],["-78.5245794","42.9702004"],["-78.5271609","42.969404"],["-78.5298919","42.9686562"],["-78.5323231","42.9680686"],["-78.535056","42.9675009"],["-78.5609351","42.963167"],["-78.5647407","42.9622789"],["-78.6077552","42.9507648"],["-78.6101283","42.9503469"],["-78.6132403","42.9500681"],["-78.6420458","42.9479389"],["-78.6709429","42.947476"],["-78.6737868","42.9476002"],["-78.7053197","42.9507749"],["-78.7068304","42.9508328"],["-78.713395","42.9508737"],["-78.7242531","42.950843"],["-78.72563","42.9508418"],["-78.7319165","42.9508111"],["-78.7332093","42.9508591"],["-78.7343165","42.9509185"],["-78.7359185","42.951063"],["-78.7428346","42.9519932"],["-78.7436361","42.9520648"],["-78.7473758","42.9521287"],["-78.750755","42.9521428"],["-78.753937","42.9521326"],["-78.7542303","42.9521316"],["-78.7556288","42.9521186"],["-78.7563657","42.9520767"],["-78.7567634","42.9520396"],["-78.7579458","42.9518737"],["-78.7586174","42.9517241"],["-78.7591647","42.9515791"],["-78.7596765","42.951434"],["-78.7603592","42.9511756"],["-78.7619375","42.9504259"],["-78.7627282","42.9499301"],["-78.7635043","42.9493749"],["-78.764158","42.9488189"],["-78.7646692","42.9483066"],["-78.7650966","42.9478123"],["-78.7655144","42.9471919"],["-78.7658499","42.9465221"],["-78.7662125","42.9455906"],["-78.7663014","42.9452936"],["-78.7664226","42.9447535"],["-78.7664922","42.9442205"],["-78.7665137","42.9433414"],["-78.7664451","42.9369963"],["-78.7664894","42.9365162"],["-78.7665387","42.936336"],["-78.7666326","42.9361513"],["-78.7669383","42.9356965"],["-78.7671077","42.9355114"],["-78.7672662","42.9353556"],["-78.7674514","42.93522"],["-78.767929","42.9349527"],["-78.7682784","42.9347637"],["-78.768404","42.9346742"],["-78.7684843","42.9345917"],["-78.7685385","42.9345124"],["-78.7685758","42.9344175"],["-78.7685899","42.9342611"],["-78.7686084","42.9332408"],["-78.768628","42.9331051"],["-78.7686672","42.9330104"],["-78.7687212","42.9329359"],["-78.7688183","42.9328512"],["-78.7689129","42.9327867"],["-78.7690348","42.9327286"],["-78.7691598","42.9326894"],["-78.7693326","42.9326516"],["-78.7694898","42.9326311"],["-78.7697673","42.9326248"],["-78.7700847","42.9326423"],["-78.7735083","42.9329727"],["-78.7752559","42.9330509"],["-78.7771796","42.9330665"],["-78.7788221","42.933062"],["-78.7798485","42.9330895"],["-78.7856125","42.9330613"],["-78.7864693","42.9330668"],["-78.7871765","42.9330748"],["-78.7880418","42.9330501"],["-78.7885113","42.9330127"],["-78.7893068","42.932938"],["-78.7901654","42.9328616"],["-78.7916637","42.9327532"],["-78.7922734","42.9327328"],["-78.7932959","42.9327399"],["-78.7937984","42.9327668"],["-78.7944005","42.9328206"],["-78.7963666","42.9330763"],["-78.7973104","42.9331519"],["-78.7984072","42.9331973"],["-78.7988609","42.9331979"],["-78.7992493","42.9331977"],["-78.8018251","42.9331941"],["-78.8022443","42.9331941"],["-78.8031625","42.9331932"],["-78.8088199","42.9332164"],["-78.8107856","42.9332087"],["-78.8112781","42.9331685"],["-78.8117432","42.9330962"],["-78.8122023","42.9329954"],["-78.8126844","42.9328596"],["-78.8130678","42.932747"],["-78.813472","42.9326204"],["-78.8140012","42.9324318"],["-78.817274","42.9312533"],["-78.8181521","42.9309297"],["-78.8199069","42.930325"],["-78.8204881","42.9301627"],["-78.8209968","42.9300696"],["-78.8219897","42.9299108"],["-78.8224045","42.9298769"],["-78.8230488","42.9298574"],["-78.8287956","42.9298907"],["-78.8297023","42.9298746"],["-78.8307755","42.9297838"],["-78.8318122","42.929644"],["-78.833066","42.929383"],["-78.833853","42.9291454"],["-78.8347224","42.9288404"],["-78.8355156","42.9285064"],["-78.8364074","42.9280806"],["-78.837504","42.9274924"],["-78.8381388","42.9271026"],["-78.8385557","42.9268258"],["-78.8401424","42.9256467"],["-78.8407454","42.9251961"],["-78.8414376","42.9246745"],["-78.8421382","42.9241489"],["-78.842504","42.9238601"],["-78.8425858","42.923741"],["-78.8427516","42.9235659"],["-78.8428488","42.92345"],["-78.8429268","42.9233458"],["-78.8430727","42.923135"],["-78.8431358","42.9230364"],["-78.8431947","42.9229319"],["-78.8432374","42.9228507"],["-78.8432771","42.9227715"],["-78.843336","42.9226252"],["-78.8433744","42.9225234"],["-78.8434354","42.9223022"],["-78.8434625","42.9221716"],["-78.8434834","42.9220215"],["-78.8434992","42.9218403"],["-78.8435035","42.9208379"],["-78.8435428","42.9206786"],["-78.8435311","42.9197272"],["-78.8435272","42.9191241"],["-78.8435241","42.9172654"],["-78.8434646","42.9094615"],["-78.8434882","42.9089926"],["-78.8436229","42.9084075"],["-78.8438711","42.9075932"],["-78.8440927","42.9070778"],["-78.844295","42.906651"],["-78.8447594","42.9058692"],["-78.8451163","42.9052298"],["-78.8462017","42.903307"],["-78.846818","42.9022639"],["-78.8473243","42.9015778"],["-78.8476365","42.9012299"],["-78.8481162","42.9007441"],["-78.8489079","42.9000633"],["-78.8494203","42.8997166"],["-78.850108","42.8993319"],["-78.8515782","42.8985789"],["-78.8525576","42.8981224"],["-78.8542166","42.8973881"],["-78.86272","42.8939222"],["-78.8629367","42.8938502"],["-78.8632045","42.8937852"],["-78.8658592","42.8933498"],["-78.8662534","42.8932674"],["-78.8665052","42.8932006"],["-78.8667386","42.8931289"],["-78.8669666","42.893036"],["-78.8671923","42.8929296"],["-78.8674426","42.8927853"],["-78.8676322","42.8926417"],["-78.8678319","42.8924742"],["-78.8680241","42.8923072"],["-78.8683708","42.8918835"],["-78.8685157","42.8916637"],["-78.8687686","42.8911679"],["-78.8700695","42.88716"],["-78.8703926","42.8862233"],["-78.8709832","42.8860946"],["-78.8713776","42.8860077"],["-78.8719583","42.8858819"],["-78.8725334","42.8858053"],["-78.8727318","42.8857946"],["-78.872894","42.8858023"],["-78.8732602","42.8858591"],["-78.8736484","42.885924"],["-78.8738842","42.8859459"],["-78.8740117","42.8859295"],["-78.8741035","42.8859097"],["-78.8743036","42.885859"],["-78.8746308","42.8858075"],["-78.8771195","42.886236"],["-78.8774591","42.8864064"],["-78.8774634","42.8864772"],["-78.8774651","42.8865674"],["-78.8775347","42.8866872"],["-78.8776639","42.8868204"],["-78.8778703","42.8868678"],["-78.8781331","42.8869076"],["-78.8783305","42.8869297"],["-78.878489","42.8868675"],["-78.8786438","42.8867876"],["-78.8787398","42.8866586"],["-78.8788598","42.8862563"],["-78.8788558","42.8861874"],["-78.8787878","42.8861008"],["-78.878699","42.8860333"],["-78.8785189","42.8859643"],["-78.8783151","42.8858836"],["-78.8784566","42.8854504"],["-78.878627","42.8849733"],["-78.8786329","42.8849556"],["-78.8786447","42.8849175"],["-78.878671","42.8848369"],["-78.8789666","42.8839107"],["-78.8789877","42.8838067"],["-78.8790179","42.8838078"],["-78.879813","42.8839444"],["-78.8822009","42.8843575"],["-78.8828108","42.8844126"],["-78.8830053","42.8844027"],["-78.8831837","42.8843929"],["-78.8833423","42.8844009"],["-78.8834704","42.8844126"],["-78.8835642","42.8844347"],["-78.8836346","42.884457"],["-78.8837551","42.8845343"],["-78.8843821","42.8851431"],["-78.8851217","42.8858658"],["-78.8860232","42.8866521"],["-78.8875048","42.8881455"],["-78.8882516","42.888901"],["-78.8902975","42.8909682"],["-78.895967","42.896605"],["-78.8965411","42.8972004"],["-78.8970533","42.8976873"],["-78.8981081","42.8987789"],["-78.8983658","42.8990574"],["-78.8985778","42.8993158"],["-78.8989056","42.8997464"],["-78.8993211","42.9003834"],["-78.9001236","42.9016833"],["-78.9002111","42.9018297"],["-78.9007336","42.9026982"],["-78.9008716","42.9029476"],["-78.9009671","42.9031496"],["-78.9010402","42.9033376"],["-78.9010992","42.90352"],["-78.9011474","42.9036872"],["-78.9011907","42.9038788"],["-78.9012168","42.9040437"],["-78.9012336","42.9041788"],["-78.9012419","42.9042992"],["-78.9012447","42.9043553"],["-78.9012492","42.9045009"],["-78.9012287","42.9052225"],["-78.9012217","42.9054215"],["-78.9012172","42.9054894"],["-78.901211","42.9055766"],["-78.9012082","42.9056173"],["-78.9011994","42.9057913"],["-78.90148","42.9136342"],["-78.9014758","42.9142176"],["-78.9014563","42.9146882"],["-78.901423","42.9150308"],["-78.9013294","42.9156198"],["-78.9011295","42.9163849"],["-78.90093","42.9170592"],["-78.8989424","42.9235004"],["-78.8987505","42.9246852"],["-78.898579","42.9270245"],["-78.8985616","42.9278279"],["-78.8985878","42.9282063"],["-78.8986298","42.9284947"],["-78.8986619","42.928646"],["-78.8986988","42.9287843"],["-78.8987937","42.929063"],["-78.898853","42.9292048"],["-78.8989809","42.9294697"],["-78.8990671","42.9296215"],["-78.8991772","42.9297965"],["-78.8993318","42.9300135"],["-78.899558","42.9302838"],["-78.8998558","42.9306124"],["-78.9003962","42.931066"],["-78.9009713","42.9315487"],["-78.9017537","42.9322532"],["-78.9028282","42.933686"],["-78.9034871","42.9347765"],["-78.9047368","42.9372402"],["-78.9056016","42.9389479"],["-78.9076447","42.9430425"],["-78.9080882","42.9440533"],["-78.9083262","42.9446595"],["-78.9085243","42.9451932"],["-78.9085973","42.9455144"],["-78.9086641","42.9458491"],["-78.9087321","42.9463225"],["-78.9087835","42.9468344"],["-78.9090586","42.9501173"],["-78.9091323","42.9507987"],["-78.9091883","42.9511737"],["-78.9092638","42.9515761"],["-78.9093727","42.9520504"],["-78.9096662","42.9529344"],["-78.9098474","42.953394"],["-78.9101186","42.9539673"],["-78.9106366","42.9548307"],["-78.9112253","42.9555318"],["-78.9117295","42.9559748"],["-78.9122365","42.9563831"],["-78.9130456","42.9569444"],["-78.9150987","42.9582926"],["-78.916936","42.9595278"],["-78.9184275","42.9606216"],["-78.919566","42.9615925"],["-78.9199598","42.9619814"],["-78.9202198","42.9622571"],["-78.9204663","42.9625624"],["-78.9207025","42.962935"],["-78.9208277","42.9631247"],["-78.9209183","42.9633074"],["-78.9210077","42.9635241"],["-78.9210949","42.963874"],["-78.9211587","42.9642055"],["-78.9211751","42.9645131"],["-78.9211677","42.9648412"],["-78.921116","42.9651108"],["-78.9210562","42.9653689"],["-78.9209671","42.965617"],["-78.9208618","42.9658633"],["-78.9207486","42.9660859"],["-78.9205615","42.9663787"],["-78.9203762","42.9666237"],["-78.9201095","42.9669159"],["-78.9198937","42.9671197"],["-78.9195927","42.9673592"],["-78.9187444","42.96792"],["-78.9137984","42.9710329"],["-78.9132829","42.9714136"],["-78.9130218","42.9716462"],["-78.9127182","42.9719534"],["-78.9124944","42.9722173"],["-78.9122066","42.9726341"],["-78.9118845","42.9732372"],["-78.9116472","42.9737471"],["-78.9113684","42.9744595"],["-78.9111354","42.9751758"],["-78.9100481","42.9786631"],["-78.9099587","42.9790054"],["-78.9099173","42.9792471"],["-78.9098817","42.9795198"],["-78.9098682","42.9798436"],["-78.9098878","42.9802406"],["-78.9099344","42.9805712"],["-78.9099999","42.9808661"],["-78.9101872","42.9813582"],["-78.9103902","42.9818366"],["-78.9105942","42.9821944"],["-78.9109972","42.9827418"],["-78.9140145","42.9863222"],["-78.9149028","42.9871944"],["-78.915499","42.9876884"],["-78.9163083","42.9882203"],["-78.9175397","42.9889515"],["-78.9231223","42.9915325"],["-78.924273","42.9920462"],["-78.9269638","42.9931375"],["-78.9281686","42.9937149"],["-78.9285385","42.9939233"],["-78.9299057","42.9947228"],["-78.9414659","43.0014251"],["-78.9439742","43.0028877"],["-78.9458306","43.0038748"],["-78.9483335","43.0051591"],["-78.9485602","43.0052699"],["-78.9495152","43.0057"],["-78.9648219","43.0120687"],["-78.9660137","43.0125714"],["-78.9665022","43.0127972"],["-78.9675281","43.0133615"],["-78.9678454","43.0135537"],["-78.9681366","43.0137532"],["-78.968452","43.0139937"],["-78.9691356","43.0145408"],["-78.9694015","43.0147695"],["-78.9699636","43.0153544"],["-78.9702965","43.0157404"],["-78.9707195","43.0162789"],["-78.9875257","43.0413864"],["-78.9887282","43.0432087"],["-78.9891312","43.0438916"],["-78.9893028","43.0442692"],["-78.9897287","43.0453131"],["-78.9898377","43.0456233"],["-78.9899158","43.0459466"],["-78.9900249","43.0464023"],["-78.9901343","43.0469266"],["-78.9902137","43.047394"],["-78.9902601","43.0478957"],["-78.9902975","43.0483903"],["-78.9903464","43.0541521"],["-78.9903308","43.0555954"],["-78.9903384","43.0598434"],["-78.9904347","43.0612269"],["-78.9905558","43.0625775"],["-78.9905943","43.0633299"],["-78.990672","43.0865108"],["-78.9906079","43.0872118"],["-78.9905777","43.0874805"],["-78.9905562","43.0875888"],["-78.9904981","43.0878385"],["-78.9904598","43.0879796"],["-78.9904061","43.0881411"],["-78.9903475","43.0882873"],["-78.9902757","43.0884409"],["-78.9900687","43.0888663"],["-78.9899838","43.0890437"],["-78.9899209","43.0891897"],["-78.9897993","43.0895239"],["-78.9897987","43.0896309"],["-78.9909553","43.0897685"],["-78.9915597","43.0898006"],["-78.9921991","43.0898354"],["-78.9956184","43.0902252"],["-78.9966058","43.0903098"],["-78.9970708","43.0903625"],["-78.9998621","43.0907903"],["-79.0081885","43.0931742"],["-79.0106892","43.0938551"],["-79.011175","43.0940085"],["-79.0116996","43.0940747"],["-79.01215","43.0941092"],["-79.0126175","43.0941238"],["-79.0132542","43.0941041"],["-79.0140782","43.0940296"],["-79.0144293","43.0940172"],["-79.0145787","43.0940202"],["-79.0147257","43.0940422"],["-79.0148833","43.0940716"],["-79.0150358","43.0941169"],["-79.0151534","43.0941663"],["-79.0153412","43.0942704"],["-79.0155666","43.0944241"],["-79.0157628","43.0945057"],["-79.01613","43.0947299"],["-79.0164102","43.09489"],["-79.016729","43.0950137"],["-79.0171177","43.0951211"],["-79.01753","43.0951712"],["-79.0180326","43.0951673"],["-79.0189858","43.0951664"],["-79.021501","43.0951491"],["-79.0220016","43.0951498"],["-79.023453","43.095147"],["-79.0236451","43.0951466"],["-79.0247471","43.0951371"],["-79.0248663","43.0951369"],["-79.0321507","43.09511"],["-79.032201","43.0951099"],["-79.0324387","43.0951091"],["-79.032586","43.0951089"],["-79.0343828","43.0951024"],["-79.0347638","43.0951095"],["-79.0350074","43.0951073"],["-79.0353299","43.0951088"],["-79.0365115","43.0950987"],["-79.0376699","43.095137"],["-79.0376978","43.0961291"]]}};const coordinates_1_1=geojson_1_1.geometry.coordinates;for(const coord of coordinates_1_1){window.bounds[1].extend(coord);contentMap_1.fitBounds(window.bounds[1],{padding:{top:60,bottom:60,left:60,right:60}});} contentMap_1.on('load',()=>{contentMap_1.addLayer({id:'route1_1',type:'line',source:{type:'geojson',data:geojson_1_1},layout:{'line-join':'round','line-cap':'round'},paint:{'line-color':'#522A7A','line-width':5,'line-opacity':0.80}});});contentMap_1.fitBounds(window.bounds[1],{padding:{top:60,bottom:60,left:60,right:60}});initialMapBounds[1]=new mapboxgl.LngLatBounds(window.bounds[1].getSouthWest(),window.bounds[1].getNorthEast());const visibleMapRoutes_1=[];contentMaps[1].on('click',(e)=>{resetMarkersAndCards(1);});addMarkersToMap(1);contentMap_1.fitBounds(window.bounds[1],{padding:{top:60,bottom:60,left:60,right:60}});} var mapScriptCreated = 0; var mapCssCreated = 0; var mapScriptLoaded = 0; var mapCssLoaded = 0; var mapLoadList = []; function showLazyMap(fname) { if (mapScriptLoaded == 1 && mapCssLoaded == 1) { if (!mapLoadList.includes(fname)) { window[fname](); mapLoadList.push(fname); } } } (function fn() { var pics = document.querySelectorAll('.no-js-hide'); pics.forEach(function(pic) { pic.classList.toggle('no-js-hide'); }); var lazyImages = [].slice.call(document.querySelectorAll(".lazeeload")); if ("IntersectionObserver" in window) { const config = { root: null, rootMargin: '1000px', threshold: 0 }; let lazyImageObserver = new IntersectionObserver(function(entries, observer) { entries.forEach(function(entry) { if (entry.isIntersecting) { let lazyImage = entry.target; if (lazyImage.dataset.src) {lazyImage.src = lazyImage.dataset.src;} if (lazyImage.dataset.srcset) {lazyImage.srcset = lazyImage.dataset.srcset;} if (lazyImage.dataset.map) { const fname = "initMapbox_"+lazyImage.dataset.map; if (mapScriptLoaded == 0) { let script = document.createElement('script'); script.async=true; script.defer=true; script.src = "https://api.mapbox.com/mapbox-gl-js/v3.0.0/mapbox-gl.js"; script.onload = function(){ mapScriptLoaded = 1; showLazyMap(fname); } document.head.appendChild(script); mapScriptCreated = 1; let css = document.createElement('link'); css.rel = "stylesheet"; css.href = "https://api.mapbox.com/mapbox-gl-js/v3.0.0/mapbox-gl.css"; css.onload = function(){ mapCssLoaded = 1; showLazyMap(fname); } document.head.appendChild(css); mapCssCreated = 1; } else { if (typeof window[fname] === 'function') { window[fname](); } showLazyMap(fname); } } lazyImage.classList.remove("no-js-hide"); lazyImage.classList.remove("lazeeload"); lazyImageObserver.unobserve(lazyImage); } }); }, config); lazyImages.forEach(function(lazyImage) { lazyImageObserver.observe(lazyImage); lazyImage.classList.add("lazeeload-activated"); }); } else { let active = false; const lazyLoad = function() { if (active === false) { active = true; setTimeout(function() { lazyImages.forEach(function(lazyImage) { if ((lazyImage.getBoundingClientRect().top <= window.innerHeight+1000 && lazyImage.getBoundingClientRect().bottom >= 0) && getComputedStyle(lazyImage).display !== "none") { if (lazyImage.dataset.src) lazyImage.src = lazyImage.dataset.src; if (lazyImage.dataset.srcset) lazyImage.srcset = lazyImage.dataset.srcset; if (lazyImage.dataset.onload) lazyImage.onload = lazyImage.dataset.onload; lazyImage.classList.remove("lazeeload"); lazyImages = lazyImages.filter(function(image) { return image !== lazyImage; }); if (lazyImages.length === 0) { document.removeEventListener("scroll", lazyLoad); window.removeEventListener("resize", lazyLoad); window.removeEventListener("orientationchange", lazyLoad); } } }); active = false; }, 200); } }; document.addEventListener("scroll", lazyLoad); window.addEventListener("resize", lazyLoad); window.addEventListener("orientationchange", lazyLoad); } var lazyImages = [].slice.call(document.querySelectorAll(".lazeeload")); i=1; lazyImages.forEach(function(lazyImage) { if (!(lazyImage.classList.contains("lazeeload-activated"))) { if (lazyImage.dataset.src) lazyImage.src = lazyImage.dataset.src; if (lazyImage.dataset.srcset) lazyImage.srcset = lazyImage.dataset.srcset; lazyImage.classList.remove("lazeeload"); } }); })(); document.addEventListener('DOMContentLoaded', () => { const h = document.querySelector('header.fixed-top'), o = getComputedStyle(h).right; ['show.bs.modal', 'hidden.bs.modal'].forEach(e => document.querySelectorAll('.fullScreenModal').forEach(m => m.addEventListener(e, ev => h.style.right = ev.type === 'show.bs.modal' ? `${window.innerWidth - document.documentElement.clientWidth}px` : o))); });