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:[-122.38120223203961,42.609448640943775],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":[-122.419505,37.775012],"type":"start"};markerData[1][1]={"lonLat":[-122.332079,47.606217],"type":"finish"};markerData[1][2]={"lonLat":[-122.39621462483069,42.982797512437095],"type":"star","c":{"popup":{"title":"Portland Route","text":"850 miles (14 hours*)"}}};markerData[1][3]={"lonLat":[-124.46113560989727,42.88184766509871],"type":"star","c":{"popup":{"title":"Pacific Coast Route","text":"940 miles (19 hours 30 minutes*)"}}};const geojson_1_0={type:'Feature',properties:{},geometry:{type:'LineString',coordinates:[["-122.4204403","37.7743415"],["-122.4208132","37.7740634"],["-122.4213765","37.7736208"],["-122.4216152","37.7734403"],["-122.4218842","37.7732335"],["-122.4219705","37.7732026"],["-122.4220308","37.7731897"],["-122.4220984","37.7731772"],["-122.4221751","37.7731654"],["-122.4238261","37.7729532"],["-122.4237169","37.7724028"],["-122.4236842","37.7722937"],["-122.4236398","37.7721811"],["-122.4235979","37.7721004"],["-122.4235647","37.7720454"],["-122.4234981","37.7719398"],["-122.4232216","37.7715055"],["-122.4230992","37.771316"],["-122.4230392","37.7712304"],["-122.4229794","37.7711537"],["-122.4228996","37.7710627"],["-122.4228181","37.7709736"],["-122.4227199","37.7708798"],["-122.4226121","37.7707878"],["-122.4225006","37.7706996"],["-122.4223726","37.7706087"],["-122.4222424","37.7705259"],["-122.4221097","37.7704515"],["-122.4219689","37.7703796"],["-122.4218238","37.7703162"],["-122.4216728","37.7702563"],["-122.4215187","37.7702036"],["-122.421353","37.7701561"],["-122.4211955","37.7701177"],["-122.4210349","37.7700855"],["-122.4208685","37.7700615"],["-122.420699","37.7700438"],["-122.4205403","37.7700327"],["-122.419434","37.769984"],["-122.41928","37.7699698"],["-122.4191136","37.769951"],["-122.4170866","37.7696383"],["-122.4168718","37.7696147"],["-122.4166456","37.769599"],["-122.4153812","37.7695338"],["-122.4120014","37.769441"],["-122.4106578","37.7693049"],["-122.408662","37.7689831"],["-122.4084236","37.7689532"],["-122.4076839","37.7688858"],["-122.407228","37.7688677"],["-122.4070068","37.7688648"],["-122.4066667","37.7688661"],["-122.4065551","37.7688709"],["-122.4064474","37.7688784"],["-122.4063431","37.7688918"],["-122.4062432","37.768909"],["-122.4061415","37.7689321"],["-122.4060323","37.7689674"],["-122.405938","37.7690079"],["-122.4058541","37.7690537"],["-122.4057727","37.7691053"],["-122.4057","37.7691642"],["-122.4056394","37.7692234"],["-122.4055912","37.7692798"],["-122.4055428","37.7693471"],["-122.405504","37.7694171"],["-122.4054698","37.7695026"],["-122.4054447","37.7695947"],["-122.4054322","37.7696609"],["-122.4054242","37.7697285"],["-122.4054185","37.7697897"],["-122.4054147","37.7698686"],["-122.4054157","37.7699481"],["-122.4054227","37.7700215"],["-122.4054341","37.7701027"],["-122.4054491","37.7701775"],["-122.4054699","37.7702538"],["-122.4054991","37.77034"],["-122.4055306","37.7704173"],["-122.4056151","37.7706089"],["-122.4056881","37.7707572"],["-122.4058326","37.7710032"],["-122.4059255","37.7711476"],["-122.4061737","37.7715418"],["-122.406258","37.7716852"],["-122.4063273","37.7718298"],["-122.4063877","37.7719708"],["-122.4064473","37.7721227"],["-122.4064979","37.7722907"],["-122.4065438","37.7724921"],["-122.4065688","37.7726688"],["-122.4065794","37.7728534"],["-122.4065802","37.7730404"],["-122.4065629","37.7732476"],["-122.4065268","37.7734512"],["-122.4064769","37.773656"],["-122.406412","37.7738391"],["-122.4063308","37.7740303"],["-122.4062349","37.7742271"],["-122.4061238","37.7744336"],["-122.4060082","37.7746288"],["-122.4058758","37.7748252"],["-122.4057206","37.7750327"],["-122.4055485","37.7752497"],["-122.4053577","37.7754673"],["-122.4051396","37.7756888"],["-122.4049296","37.7758863"],["-122.4047544","37.7760437"],["-122.4045281","37.7762282"],["-122.4043329","37.7763804"],["-122.4041114","37.7765281"],["-122.4039462","37.7766234"],["-122.4024736","37.7773954"],["-122.401385","37.7779651"],["-122.4011457","37.7781065"],["-122.4009133","37.7782515"],["-122.4006753","37.7784115"],["-122.4004238","37.7785955"],["-122.4001614","37.7787985"],["-122.3999289","37.77899"],["-122.3996045","37.7792643"],["-122.3950235","37.783188"],["-122.3943369","37.7837288"],["-122.3938744","37.7840867"],["-122.3936283","37.7842746"],["-122.3933967","37.7844392"],["-122.3930835","37.7846506"],["-122.3924646","37.7850329"],["-122.3917094","37.7854935"],["-122.3915229","37.7856036"],["-122.3913604","37.7856936"],["-122.3912012","37.785801"],["-122.3909892","37.7859493"],["-122.3906812","37.786199"],["-122.3812328","37.7950116"],["-122.3672041","37.8081118"],["-122.3669601","37.8083407"],["-122.3665739","37.8087028"],["-122.3658107","37.8094188"],["-122.3645671","37.8105712"],["-122.3640453","37.811062"],["-122.3637549","37.8113436"],["-122.3631999","37.8118681"],["-122.3628457","37.8121905"],["-122.3626045","37.8123982"],["-122.3621478","37.8127655"],["-122.3618092","37.813021"],["-122.3571733","37.815794"],["-122.3545419","37.817292"],["-122.3538251","37.8176495"],["-122.353097","37.817959"],["-122.3528063","37.818069"],["-122.3521771","37.8182817"],["-122.3503124","37.818729"],["-122.3255173","37.8219823"],["-122.3143359","37.8237365"],["-122.3133483","37.8239016"],["-122.3110429","37.824293"],["-122.3103569","37.8243896"],["-122.306693","37.8247899"],["-122.3060024","37.8248956"],["-122.3047071","37.8251518"],["-122.3044381","37.8252416"],["-122.3001079","37.8262043"],["-122.2994801","37.8263522"],["-122.2959594","37.827164"],["-122.2957869","37.8272102"],["-122.2956393","37.8272601"],["-122.2954873","37.8273209"],["-122.2953468","37.8273842"],["-122.2952035","37.8274558"],["-122.2950621","37.8275354"],["-122.2949344","37.8276157"],["-122.2948094","37.8277036"],["-122.2946913","37.8277943"],["-122.2945824","37.8278887"],["-122.2944816","37.8279831"],["-122.2943813","37.8280902"],["-122.2942835","37.8282028"],["-122.2941974","37.8283131"],["-122.2941104","37.8284349"],["-122.2940325","37.8285506"],["-122.2938892","37.8287935"],["-122.2938229","37.8289162"],["-122.2937656","37.8290349"],["-122.2937163","37.8291629"],["-122.2936732","37.8292966"],["-122.2936385","37.8294192"],["-122.2935021","37.8300755"],["-122.2933421","37.8310316"],["-122.2933282","37.8312077"],["-122.2933281","37.8313488"],["-122.2933346","37.8314838"],["-122.2933455","37.8316151"],["-122.2933596","37.8317403"],["-122.2933788","37.8318751"],["-122.2934035","37.8320095"],["-122.2934335","37.8321423"],["-122.2934667","37.8322691"],["-122.2935059","37.8323992"],["-122.2935501","37.8325288"],["-122.2935961","37.8326507"],["-122.2936523","37.8327822"],["-122.2937827","37.8330568"],["-122.2942665","37.8339543"],["-122.2957353","37.8364373"],["-122.2959648","37.8368628"],["-122.2962688","37.8374451"],["-122.2963546","37.8376794"],["-122.2963925","37.8378027"],["-122.2964277","37.837928"],["-122.296461","37.8380566"],["-122.2964925","37.8381976"],["-122.3003202","37.8549732"],["-122.3059618","37.8742562"],["-122.3070979","37.8779215"],["-122.3072349","37.8784119"],["-122.307423","37.8791882"],["-122.3079397","37.8815626"],["-122.3080063","37.8818767"],["-122.3083431","37.8833851"],["-122.3084506","37.8837954"],["-122.3085121","37.8840263"],["-122.3085741","37.8842677"],["-122.3086228","37.8844661"],["-122.3089714","37.8864092"],["-122.3089866","37.8865411"],["-122.3089974","37.8866694"],["-122.3090051","37.8868037"],["-122.309009","37.8869407"],["-122.3090087","37.8870666"],["-122.3090064","37.887198"],["-122.3089996","37.8873352"],["-122.3089872","37.8874876"],["-122.308975","37.8876106"],["-122.3089575","37.8877436"],["-122.3089358","37.8878807"],["-122.3089094","37.8880209"],["-122.308879","37.8881551"],["-122.3088466","37.888288"],["-122.3088132","37.8884109"],["-122.3087703","37.8885508"],["-122.3087334","37.8886632"],["-122.3086816","37.8888087"],["-122.3086357","37.8889285"],["-122.3085806","37.8890605"],["-122.3085191","37.8891945"],["-122.3077207","37.8908049"],["-122.3076662","37.8909242"],["-122.3076111","37.8910547"],["-122.3075604","37.8911863"],["-122.3075198","37.8913047"],["-122.3074803","37.8914337"],["-122.307426","37.8916331"],["-122.3074047","37.8917281"],["-122.3073884","37.8918129"],["-122.3073499","37.8920704"],["-122.3073368","37.8922134"],["-122.3073278","37.8923435"],["-122.3073231","37.8924701"],["-122.3073211","37.8926055"],["-122.3073243","37.8927356"],["-122.3073347","37.8928816"],["-122.307347","37.8930114"],["-122.3073634","37.8931455"],["-122.3073808","37.8932677"],["-122.3074085","37.8934127"],["-122.3074333","37.8935279"],["-122.3074668","37.8936685"],["-122.3075046","37.8938048"],["-122.3075491","37.8939313"],["-122.3094504","37.8986237"],["-122.3095579","37.8988822"],["-122.3097267","37.8992518"],["-122.3099111","37.8996205"],["-122.3165347","37.9094394"],["-122.3166187","37.9095767"],["-122.3167516","37.9098066"],["-122.3168741","37.9100435"],["-122.3169328","37.910169"],["-122.3169877","37.9102932"],["-122.3170392","37.9104178"],["-122.317087","37.910544"],["-122.3171293","37.9106696"],["-122.3171695","37.9107989"],["-122.3172039","37.9109202"],["-122.3172249","37.911001"],["-122.317242","37.9110751"],["-122.3172641","37.9111805"],["-122.317289","37.9113166"],["-122.3173082","37.9114431"],["-122.3173235","37.9115676"],["-122.3173355","37.911694"],["-122.3173439","37.9118355"],["-122.317348","37.911969"],["-122.3173639","37.9187777"],["-122.3173712","37.9190462"],["-122.3173796","37.9191862"],["-122.3173895","37.9193047"],["-122.3174039","37.9194385"],["-122.3174419","37.9196974"],["-122.3174661","37.9198314"],["-122.3175214","37.9200854"],["-122.3175572","37.9202259"],["-122.317592","37.9203487"],["-122.317722","37.9207378"],["-122.3177626","37.9208444"],["-122.3178121","37.9209673"],["-122.3179268","37.9212285"],["-122.3179895","37.9213594"],["-122.3181128","37.9215928"],["-122.3182506","37.9218292"],["-122.3208601","37.9257594"],["-122.3212255","37.9263187"],["-122.3218688","37.9272231"],["-122.3223211","37.927835"],["-122.3227757","37.9284318"],["-122.3242235","37.9303738"],["-122.3260678","37.9329099"],["-122.326305","37.9332792"],["-122.326538","37.9337462"],["-122.3266467","37.9340318"],["-122.3267201","37.9343169"],["-122.3267732","37.9346608"],["-122.3267892","37.9350127"],["-122.3267718","37.9353037"],["-122.3266855","37.935722"],["-122.3266031","37.936036"],["-122.3264909","37.9363155"],["-122.3263811","37.9365675"],["-122.3262456","37.9368249"],["-122.3260666","37.9371669"],["-122.324068","37.9410659"],["-122.3238245","37.9416527"],["-122.3237094","37.9421074"],["-122.3236402","37.942536"],["-122.3236286","37.9429676"],["-122.3236391","37.9433625"],["-122.3237208","37.9438624"],["-122.3238591","37.944297"],["-122.3240526","37.9447472"],["-122.3244858","37.945656"],["-122.3276529","37.9522187"],["-122.3301372","37.9566742"],["-122.330296","37.9570627"],["-122.3304368","37.9574813"],["-122.3305205","37.9578771"],["-122.3305738","37.9582869"],["-122.3305883","37.9587164"],["-122.33057","37.9591215"],["-122.33051","37.9595081"],["-122.3303904","37.9599296"],["-122.3302618","37.9602976"],["-122.3301424","37.9605988"],["-122.3299771","37.9609547"],["-122.3297913","37.9612587"],["-122.3295865","37.9615574"],["-122.3293467","37.9618606"],["-122.329058","37.9621731"],["-122.3287558","37.96245"],["-122.3284316","37.9627165"],["-122.3281114","37.9629547"],["-122.3277652","37.9631706"],["-122.3274343","37.9633624"],["-122.3264963","37.9638609"],["-122.3252461","37.9645258"],["-122.3248838","37.9647323"],["-122.3239241","37.9652163"],["-122.3235194","37.9654322"],["-122.3231327","37.96567"],["-122.3228233","37.9658825"],["-122.3225436","37.9660879"],["-122.3223405","37.9662563"],["-122.3221662","37.9664296"],["-122.3219573","37.9666592"],["-122.3217641","37.9668936"],["-122.3215751","37.9671471"],["-122.3214099","37.9673941"],["-122.3213493","37.9675052"],["-122.3212178","37.9677417"],["-122.3210456","37.968167"],["-122.3207045","37.969121"],["-122.320395","37.9701155"],["-122.3173802","37.9791207"],["-122.316525","37.981618"],["-122.3161611","37.9826961"],["-122.3154885","37.9845606"],["-122.3152556","37.9851385"],["-122.3150625","37.9855324"],["-122.3148389","37.9859249"],["-122.3146281","37.9862534"],["-122.3138182","37.9874366"],["-122.3135634","37.9877804"],["-122.3132953","37.9881128"],["-122.3130088","37.9884323"],["-122.3126254","37.9888321"],["-122.3119849","37.9894086"],["-122.3112798","37.9899565"],["-122.3107069","37.9903616"],["-122.3099973","37.9908171"],["-122.3093412","37.9912042"],["-122.3086298","37.991566"],["-122.3080282","37.9918308"],["-122.3074244","37.9920754"],["-122.3066117","37.992363"],["-122.3056882","37.9926298"],["-122.3046637","37.9928467"],["-122.3037993","37.9930107"],["-122.302432","37.9932239"],["-122.2999788","37.9935689"],["-122.2946548","37.994312"],["-122.2912716","37.994776"],["-122.2907624","37.9948834"],["-122.2901581","37.9950382"],["-122.2895536","37.9952175"],["-122.2889915","37.9954032"],["-122.2882916","37.9956949"],["-122.2876169","37.9960244"],["-122.2870943","37.9963285"],["-122.2866621","37.9966048"],["-122.2863706","37.9968086"],["-122.2860734","37.9970292"],["-122.2857723","37.9972824"],["-122.2850345","37.9979998"],["-122.2838573","37.9992552"],["-122.2721857","38.0118431"],["-122.271909","38.0121545"],["-122.2710801","38.0130729"],["-122.2639216","38.0208203"],["-122.2632767","38.0215019"],["-122.2613665","38.0235131"],["-122.248317","38.0375733"],["-122.2480385","38.0378684"],["-122.2478403","38.0380707"],["-122.2475839","38.0383175"],["-122.2470844","38.0387308"],["-122.2466117","38.0390863"],["-122.2290564","38.0514472"],["-122.2277713","38.0523731"],["-122.2260442","38.0536092"],["-122.2258216","38.0537861"],["-122.2256454","38.0539455"],["-122.2255142","38.05408"],["-122.2253851","38.0542368"],["-122.2252464","38.054413"],["-122.2251057","38.0546495"],["-122.2250047","38.0548436"],["-122.2249274","38.0550251"],["-122.2248581","38.0552265"],["-122.2247617","38.0556417"],["-122.2247506","38.0557811"],["-122.2248202","38.0569055"],["-122.2255251","38.0648244"],["-122.2257972","38.0672567"],["-122.225969","38.0676826"],["-122.2260573","38.0679193"],["-122.2261564","38.0681566"],["-122.2262057","38.0682815"],["-122.2263743","38.0686274"],["-122.226503","38.0688874"],["-122.226915","38.0697004"],["-122.2272478","38.0702385"],["-122.2276085","38.0707797"],["-122.227779","38.0710288"],["-122.2288913","38.0723744"],["-122.2291184","38.0726629"],["-122.2296204","38.0732535"],["-122.2300263","38.0737943"],["-122.2312118","38.0754297"],["-122.231618","38.0760456"],["-122.2318372","38.0764493"],["-122.2319378","38.076643"],["-122.2319895","38.076759"],["-122.2320763","38.076937"],["-122.2322299","38.0772549"],["-122.2323971","38.0776376"],["-122.232525","38.0779522"],["-122.2326696","38.0783294"],["-122.2327817","38.0786843"],["-122.232897","38.0791028"],["-122.2330152","38.0796149"],["-122.2331159","38.0801663"],["-122.2331961","38.0807623"],["-122.2332439","38.0813388"],["-122.2332651","38.0818782"],["-122.2332623","38.082417"],["-122.2332367","38.0829135"],["-122.2331925","38.0833526"],["-122.2331436","38.0837432"],["-122.2330596","38.0842295"],["-122.2329746","38.0846645"],["-122.2329119","38.0849392"],["-122.232841","38.0852283"],["-122.2326333","38.0858719"],["-122.2325056","38.0862295"],["-122.2322571","38.0868549"],["-122.2307317","38.0904453"],["-122.2305101","38.0909975"],["-122.2302966","38.0916764"],["-122.2301969","38.0920267"],["-122.2301301","38.0923315"],["-122.2300349","38.092869"],["-122.2298678","38.0940895"],["-122.2298167","38.094489"],["-122.2297503","38.0952718"],["-122.2297132","38.0968873"],["-122.2296392","38.1022054"],["-122.2296147","38.1025857"],["-122.2296012","38.1036674"],["-122.229619","38.103827"],["-122.2296028","38.1050154"],["-122.2295785","38.105362"],["-122.2295584","38.1066765"],["-122.2295741","38.1070188"],["-122.2295417","38.1100646"],["-122.2295529","38.1105164"],["-122.2302656","38.1198173"],["-122.2302794","38.1202175"],["-122.2302756","38.1205994"],["-122.2302546","38.1210297"],["-122.2302155","38.1214119"],["-122.2301473","38.121853"],["-122.2300371","38.1223797"],["-122.2299113","38.1228537"],["-122.2298702","38.1229985"],["-122.229786","38.1232562"],["-122.2297636","38.123316"],["-122.2297063","38.1234655"],["-122.2296222","38.1236752"],["-122.2294826","38.1239984"],["-122.2293226","38.1243375"],["-122.2291539","38.1246568"],["-122.2289798","38.1249631"],["-122.2237626","38.1331648"],["-122.2236262","38.1333787"],["-122.2214584","38.1367692"],["-122.2210973","38.1373142"],["-122.2202229","38.1386801"],["-122.2199927","38.1390347"],["-122.2196869","38.1394909"],["-122.2178869","38.1423219"],["-122.2176338","38.1427549"],["-122.2174701","38.1430732"],["-122.2173395","38.1433567"],["-122.217179","38.1437389"],["-122.2170261","38.1441458"],["-122.2169011","38.1445589"],["-122.2168063","38.1449194"],["-122.2167211","38.1453082"],["-122.2166603","38.1456786"],["-122.2165656","38.1463536"],["-122.2165564","38.1467386"],["-122.2165596","38.1470708"],["-122.2165891","38.1476004"],["-122.2166723","38.1487607"],["-122.2166939","38.1492781"],["-122.2166813","38.1498138"],["-122.2166407","38.1503104"],["-122.2165756","38.150779"],["-122.2164919","38.151267"],["-122.2163804","38.151692"],["-122.2162469","38.1521053"],["-122.2160433","38.1526396"],["-122.2157575","38.1532426"],["-122.2154276","38.1538238"],["-122.2150096","38.1544473"],["-122.2133538","38.1567987"],["-122.2099051","38.1616439"],["-122.2092758","38.1625132"],["-122.2090308","38.1628072"],["-122.2086643","38.1631992"],["-122.208124","38.1637143"],["-122.2074707","38.1642464"],["-122.2064797","38.1649272"],["-122.2034225","38.1669225"],["-122.1949986","38.1727314"],["-122.1946149","38.1730076"],["-122.1941662","38.1733535"],["-122.1937596","38.1737012"],["-122.1933645","38.1740662"],["-122.1929623","38.1744823"],["-122.1907296","38.1770788"],["-122.1903822","38.1774574"],["-122.1900931","38.1777541"],["-122.1897931","38.178038"],["-122.1894852","38.1783024"],["-122.189242","38.1785044"],["-122.1886765","38.178936"],["-122.1883454","38.1791673"],["-122.1879175","38.1794435"],["-122.1860766","38.1805408"],["-122.1854626","38.1809432"],["-122.1848629","38.1813808"],["-122.1844186","38.1817398"],["-122.1839645","38.1821406"],["-122.1829036","38.1831428"],["-122.1824759","38.1835322"],["-122.1820615","38.1838815"],["-122.1816234","38.1842136"],["-122.1812551","38.1844729"],["-122.1808798","38.1847091"],["-122.1804428","38.1849506"],["-122.1796923","38.1853347"],["-122.1793406","38.1854958"],["-122.1789879","38.1856444"],["-122.1786298","38.185784"],["-122.1782452","38.1859177"],["-122.1777386","38.1860779"],["-122.1767844","38.1863324"],["-122.1749082","38.1868262"],["-122.1740845","38.1870996"],["-122.173329","38.1874"],["-122.1726531","38.1877137"],["-122.1719964","38.1880667"],["-122.1713453","38.1884456"],["-122.1706425","38.1889117"],["-122.1702209","38.1892141"],["-122.1698728","38.1894956"],["-122.169498","38.1898289"],["-122.1690483","38.190255"],["-122.1685216","38.1908337"],["-122.1649855","38.1949073"],["-122.164658","38.1952528"],["-122.164158","38.1957214"],["-122.1560857","38.2027689"],["-122.15545","38.2033343"],["-122.1502034","38.2078995"],["-122.1496618","38.2083521"],["-122.1489815","38.2088559"],["-122.1457175","38.2111224"],["-122.1450532","38.2115706"],["-122.134089","38.2191789"],["-122.1336503","38.2194631"],["-122.1286981","38.2228626"],["-122.126467","38.2242697"],["-122.1259153","38.2245935"],["-122.1241309","38.2256155"],["-122.1179134","38.2286784"],["-122.1168795","38.2291222"],["-122.1086526","38.2326704"],["-122.1075807","38.2331427"],["-122.1022266","38.2354751"],["-122.1008354","38.2360891"],["-122.0836417","38.2436209"],["-122.0829159","38.2439246"],["-122.0815037","38.2445413"],["-122.0806969","38.2449064"],["-122.0774454","38.2463099"],["-122.0769543","38.2465026"],["-122.0765668","38.2466431"],["-122.0758672","38.246871"],["-122.0753029","38.2470326"],["-122.073924","38.2474067"],["-122.0731691","38.2476261"],["-122.072732","38.2477754"],["-122.0724155","38.247898"],["-122.0721031","38.2480358"],["-122.0715761","38.2483005"],["-122.0710169","38.2486244"],["-122.070455","38.2490057"],["-122.0701147","38.2492818"],["-122.0698271","38.2495355"],["-122.0695867","38.2497633"],["-122.0693476","38.2500117"],["-122.0625872","38.2579829"],["-122.0613587","38.2594325"],["-122.0555944","38.2662373"],["-122.0542143","38.2678622"],["-122.0520572","38.270393"],["-122.0514032","38.2711902"],["-122.0418929","38.2824192"],["-122.0358289","38.2895547"],["-122.0352199","38.2902962"],["-122.0347901","38.290918"],["-122.0346266","38.2912036"],["-122.0344202","38.2916495"],["-122.0343045","38.2919269"],["-122.0342038","38.2922126"],["-122.0340995","38.2925764"],["-122.0340146","38.2930042"],["-122.0339653","38.2933739"],["-122.0339405","38.2937568"],["-122.0339139","38.2946222"],["-122.0337241","38.3042297"],["-122.0336856","38.3064184"],["-122.0336366","38.3071023"],["-122.0335742","38.3077544"],["-122.0335066","38.3082897"],["-122.03282","38.3124343"],["-122.0327238","38.312959"],["-122.032643","38.3133019"],["-122.0325571","38.3136158"],["-122.0324482","38.3139375"],["-122.0323264","38.3142687"],["-122.0321622","38.314646"],["-122.0319033","38.3151735"],["-122.0317574","38.3154321"],["-122.031561","38.3157427"],["-122.0312814","38.316153"],["-122.0310282","38.3164782"],["-122.0305628","38.31702"],["-122.0259157","38.3222176"],["-122.0255095","38.3226918"],["-122.0253179","38.3229351"],["-122.0251224","38.323201"],["-122.023932","38.3250066"],["-122.0238771","38.3250931"],["-122.0221061","38.3278835"],["-122.0163324","38.3369298"],["-122.0161101","38.3372454"],["-122.0158699","38.3375739"],["-122.0156648","38.337829"],["-122.015466","38.3380644"],["-122.0151991","38.3383654"],["-122.0148982","38.3386761"],["-122.0145285","38.3390343"],["-122.0140976","38.3394098"],["-122.0135322","38.3398582"],["-122.0131922","38.3401079"],["-122.012812","38.340361"],["-122.0124494","38.3405889"],["-122.0120199","38.3408381"],["-122.0116877","38.3410182"],["-122.0113053","38.341213"],["-122.0109849","38.3413646"],["-122.0105945","38.3415408"],["-122.0098978","38.3418216"],["-122.009477","38.3419693"],["-122.0050959","38.3432501"],["-122.0039519","38.3436239"],["-122.0034977","38.3437866"],["-122.0015083","38.34455"],["-121.9851548","38.3509183"],["-121.9812327","38.3524719"],["-121.9808671","38.3526478"],["-121.980465","38.3528587"],["-121.9800768","38.3530841"],["-121.9796741","38.3533409"],["-121.9793277","38.3535839"],["-121.9790264","38.3538133"],["-121.978766","38.3540256"],["-121.9784367","38.3543082"],["-121.9770633","38.3555915"],["-121.9763811","38.3562275"],["-121.9760741","38.3565157"],["-121.9744112","38.3580565"],["-121.9740025","38.3584168"],["-121.9733257","38.358914"],["-121.9729804","38.359139"],["-121.9690681","38.361541"],["-121.9685208","38.3618607"],["-121.964769","38.3641604"],["-121.9642545","38.3645056"],["-121.9592265","38.368319"],["-121.9578808","38.3691715"],["-121.9573071","38.3695642"],["-121.9568652","38.3698017"],["-121.955613","38.3704085"],["-121.9550662","38.3706842"],["-121.9548042","38.3708462"],["-121.9545524","38.3710343"],["-121.9542938","38.3712714"],["-121.9540793","38.3715051"],["-121.9539029","38.3717263"],["-121.9537908","38.3718924"],["-121.9536505","38.3721581"],["-121.9535619","38.3723715"],["-121.9534906","38.3726167"],["-121.95343","38.372917"],["-121.9534102","38.3731738"],["-121.9534177","38.3734398"],["-121.9534416","38.3736329"],["-121.9536876","38.3749091"],["-121.9537738","38.3754059"],["-121.9538003","38.3757131"],["-121.9538017","38.3760293"],["-121.9537945","38.3762307"],["-121.9537685","38.3765132"],["-121.95369","38.3769141"],["-121.9528546","38.3804729"],["-121.9524428","38.382099"],["-121.9428885","38.4229254"],["-121.9427332","38.4236868"],["-121.942621","38.4243719"],["-121.9425492","38.4248847"],["-121.9424856","38.4254113"],["-121.9424123","38.4263149"],["-121.9423931","38.4267185"],["-121.9423174","38.4472381"],["-121.9423094","38.4482229"],["-121.9422993","38.4486604"],["-121.9422811","38.4490519"],["-121.9422428","38.4494283"],["-121.9421771","38.4497483"],["-121.9418251","38.4517266"],["-121.9417818","38.4520591"],["-121.94175","38.4523878"],["-121.9417254","38.4527192"],["-121.941709","38.4530909"],["-121.9417107","38.4535117"],["-121.9417295","38.4540191"],["-121.9419297","38.4559714"],["-121.9419544","38.4562667"],["-121.9419692","38.4566516"],["-121.9419719","38.4619508"],["-121.9419766","38.4624824"],["-121.9419915","38.4627266"],["-121.9420118","38.4629542"],["-121.942043","38.4631889"],["-121.9421803","38.4638611"],["-121.9522854","38.5074961"],["-121.9523735","38.5079006"],["-121.9524501","38.5083022"],["-121.952537","38.5088116"],["-121.9525983","38.5092565"],["-121.9526543","38.5097433"],["-121.9526929","38.510235"],["-121.9527195","38.5107862"],["-121.9527962","38.5248601"],["-121.9527982","38.5255695"],["-121.9528064","38.5272712"],["-121.9532622","38.6209515"],["-121.9532548","38.6220366"],["-121.9532148","38.622804"],["-121.953155","38.6235083"],["-121.9530648","38.6243525"],["-121.95239","38.6302798"],["-121.9521423","38.6326087"],["-121.9520945","38.6338987"],["-121.9518042","38.6535977"],["-121.9517424","38.6581164"],["-121.951672","38.6635158"],["-121.9519545","38.6817233"],["-121.9520047","38.683043"],["-121.9520372","38.6834123"],["-121.9521409","38.6842743"],["-121.957576","38.7126473"],["-121.9580471","38.715114"],["-121.9583294","38.716635"],["-121.9585331","38.7181015"],["-121.9585883","38.7190521"],["-121.9586019","38.7198074"],["-121.9585387","38.7210385"],["-121.9584072","38.7220572"],["-121.958231","38.7230426"],["-121.9580366","38.723914"],["-121.9514827","38.7527529"],["-121.9508959","38.7551269"],["-121.9502742","38.7576184"],["-121.9467076","38.7734599"],["-121.9465548","38.7740641"],["-121.9462934","38.7749384"],["-121.9452964","38.7780367"],["-121.9448823","38.7794825"],["-121.9446097","38.7807292"],["-121.94443","38.7817328"],["-121.9443352","38.7827349"],["-121.9438879","38.7890613"],["-121.9438121","38.7898709"],["-121.9437298","38.7905228"],["-121.9436277","38.7911629"],["-121.9435142","38.7918067"],["-121.9401849","38.8080079"],["-121.9397631","38.8100385"],["-121.9393917","38.8119525"],["-121.939133","38.8130558"],["-121.9388621","38.8150809"],["-121.9386402","38.8172377"],["-121.9385888","38.8188104"],["-121.938608","38.8202718"],["-121.9387006","38.82251"],["-121.9399123","38.8489221"],["-121.9400103","38.8493161"],["-121.9402096","38.8498624"],["-121.9405221","38.8504702"],["-121.9409533","38.8511041"],["-121.9413565","38.8515437"],["-121.9418236","38.85197"],["-121.9422469","38.8522783"],["-121.9426749","38.852543"],["-121.9432159","38.8528408"],["-121.9452429","38.8538935"],["-121.9459138","38.8542871"],["-121.9469029","38.8550031"],["-121.9476012","38.8556177"],["-121.9540978","38.8618712"],["-121.9566143","38.8643133"],["-121.9689232","38.8761814"],["-121.9712013","38.8783988"],["-121.9715795","38.8787809"],["-121.9718896","38.8791139"],["-121.9724423","38.8797715"],["-121.9729518","38.880465"],["-121.9731793","38.8808059"],["-121.9735696","38.8814477"],["-121.9738208","38.8819221"],["-121.9739799","38.8822585"],["-121.9741428","38.8826195"],["-121.9773772","38.8902413"],["-121.9778559","38.8913437"],["-121.9781385","38.8919364"],["-121.9784221","38.8924789"],["-121.9789317","38.8933911"],["-121.9814767","38.8973318"],["-121.9956958","38.91897"],["-121.9974162","38.9215552"],["-121.9981039","38.9226402"],["-122.0000956","38.9256451"],["-122.0003303","38.9260502"],["-122.0008036","38.9268552"],["-122.0009886","38.927213"],["-122.0011743","38.9275922"],["-122.0013469","38.9279703"],["-122.0014881","38.9283213"],["-122.001638","38.928738"],["-122.001758","38.929098"],["-122.0018748","38.9294952"],["-122.0020524","38.9302755"],["-122.0021225","38.9306764"],["-122.0023917","38.9326304"],["-122.0024712","38.9330249"],["-122.0025671","38.9334368"],["-122.0026721","38.9338073"],["-122.0028038","38.9342101"],["-122.0029336","38.9345699"],["-122.0030829","38.9349426"],["-122.0032642","38.9353507"],["-122.0034351","38.9357114"],["-122.0036124","38.9360466"],["-122.0038518","38.9364657"],["-122.0046657","38.9377287"],["-122.0108604","38.9471532"],["-122.0113921","38.9478583"],["-122.0116479","38.9481704"],["-122.0122478","38.9488309"],["-122.0125547","38.9491432"],["-122.0131899","38.9497265"],["-122.0135699","38.950044"],["-122.0147289","38.9509564"],["-122.0159167","38.9519172"],["-122.0166526","38.9526395"],["-122.0170197","38.9530349"],["-122.0173369","38.9534091"],["-122.0175894","38.9537275"],["-122.0180424","38.9543586"],["-122.0231048","38.9620559"],["-122.0254519","38.965634"],["-122.0264139","38.9670989"],["-122.026758","38.9677243"],["-122.0270032","38.9682518"],["-122.0271679","38.9686515"],["-122.0273223","38.9690862"],["-122.027449","38.9694606"],["-122.0275625","38.9699141"],["-122.027891","38.9715566"],["-122.0280678","38.9722747"],["-122.0282328","38.9728447"],["-122.0284309","38.9734014"],["-122.0287854","38.974245"],["-122.0291126","38.9748251"],["-122.0295714","38.9756019"],["-122.0392998","38.9903789"],["-122.0411614","38.9932079"],["-122.0517323","39.0091953"],["-122.0521729","39.0098547"],["-122.0530738","39.0112154"],["-122.0533123","39.0115591"],["-122.0535484","39.0118732"],["-122.0537852","39.0121358"],["-122.0541204","39.0124368"],["-122.0542926","39.0125771"],["-122.0545054","39.0127351"],["-122.054817","39.0129491"],["-122.0551793","39.0131824"],["-122.0554383","39.0133394"],["-122.0561661","39.0138291"],["-122.0564097","39.0140046"],["-122.0565974","39.0141571"],["-122.0567946","39.0143429"],["-122.0569612","39.0145171"],["-122.0571065","39.0146782"],["-122.0572363","39.0148556"],["-122.0611464","39.0208394"],["-122.0614301","39.0213578"],["-122.0618965","39.0223727"],["-122.0621756","39.0232494"],["-122.0623648","39.0239261"],["-122.0625818","39.0246784"],["-122.0629707","39.0258804"],["-122.0631448","39.0262858"],["-122.063363","39.0267532"],["-122.0635883","39.027218"],["-122.0637107","39.0274479"],["-122.0638555","39.0277119"],["-122.0641135","39.0281401"],["-122.0753011","39.0451102"],["-122.0782445","39.0495441"],["-122.0788617","39.050273"],["-122.0792913","39.0507445"],["-122.0796975","39.0511263"],["-122.080133","39.051527"],["-122.0805318","39.0518869"],["-122.081266","39.0524752"],["-122.0821174","39.0531186"],["-122.0829446","39.05374"],["-122.083812","39.0544922"],["-122.0843922","39.0550417"],["-122.0846568","39.0553319"],["-122.08492","39.0556367"],["-122.0854559","39.0563172"],["-122.0861505","39.0572647"],["-122.0863122","39.0575874"],["-122.0865152","39.0579586"],["-122.0867761","39.0584854"],["-122.0872006","39.0593269"],["-122.0880652","39.0611549"],["-122.0927965","39.0708322"],["-122.0933396","39.071974"],["-122.0940227","39.073361"],["-122.0951155","39.0751731"],["-122.1062371","39.0920388"],["-122.1074647","39.0938593"],["-122.1078107","39.0943055"],["-122.1081294","39.0946795"],["-122.1087637","39.0953643"],["-122.1096403","39.0961825"],["-122.1104323","39.096842"],["-122.111506","39.0976327"],["-122.1120829","39.0980859"],["-122.1125016","39.0984451"],["-122.1129818","39.0988933"],["-122.1132001","39.0991221"],["-122.1134502","39.099393"],["-122.1138503","39.0998544"],["-122.1142263","39.100302"],["-122.1145852","39.1008257"],["-122.1149987","39.101452"],["-122.1153685","39.1020505"],["-122.1155911","39.10251"],["-122.1157762","39.1029143"],["-122.1159268","39.1033067"],["-122.1162154","39.1041394"],["-122.1163523","39.1045896"],["-122.116472","39.1050154"],["-122.1165742","39.1054797"],["-122.1168832","39.1069208"],["-122.1170021","39.1073491"],["-122.1173086","39.1081936"],["-122.1175488","39.1087302"],["-122.1178197","39.1092931"],["-122.119325","39.1116935"],["-122.127519","39.124073"],["-122.1278952","39.1245625"],["-122.1283446","39.1250359"],["-122.1293303","39.1260095"],["-122.1306383","39.1271539"],["-122.1317913","39.1281306"],["-122.1330698","39.1293852"],["-122.1336916","39.1301568"],["-122.1342792","39.1309866"],["-122.134566","39.1314718"],["-122.1348393","39.1319855"],["-122.1350319","39.1323835"],["-122.1353576","39.1331743"],["-122.1354762","39.1334844"],["-122.1355661","39.1337549"],["-122.1356833","39.1341537"],["-122.1358359","39.1347488"],["-122.1359186","39.1351312"],["-122.1359905","39.1356515"],["-122.136066","39.1364444"],["-122.1361175","39.1372416"],["-122.1361175","39.138044"],["-122.1360416","39.1391276"],["-122.1359426","39.1404011"],["-122.135945","39.1410303"],["-122.1359974","39.1415636"],["-122.136062","39.1420966"],["-122.1361845","39.1428387"],["-122.1362848","39.1432286"],["-122.1365092","39.1439526"],["-122.1367476","39.1446678"],["-122.1369525","39.145151"],["-122.137161","39.1456101"],["-122.1373588","39.1459792"],["-122.152976","39.172001"],["-122.1535267","39.1728588"],["-122.1544058","39.1739001"],["-122.1549485","39.1745196"],["-122.1569895","39.1763934"],["-122.162469","39.1814091"],["-122.1640897","39.1829441"],["-122.1646059","39.1835351"],["-122.1655284","39.184803"],["-122.1703122","39.1920327"],["-122.1719439","39.1945572"],["-122.1785636","39.2066266"],["-122.1796147","39.2086143"],["-122.1798546","39.2091907"],["-122.1800396","39.209701"],["-122.1802023","39.2102363"],["-122.1803031","39.2108008"],["-122.1804097","39.2113414"],["-122.1804901","39.212113"],["-122.1805443","39.2127023"],["-122.1807627","39.2151631"],["-122.1812191","39.2207063"],["-122.1813652","39.2242303"],["-122.1818678","39.2500422"],["-122.1819604","39.2549739"],["-122.1820044","39.2578876"],["-122.1820257","39.2593644"],["-122.1820889","39.2657394"],["-122.1821671","39.2688935"],["-122.1822421","39.2759607"],["-122.1823127","39.276641"],["-122.1824795","39.2779603"],["-122.1830515","39.2816983"],["-122.1864185","39.3034637"],["-122.1866047","39.304421"],["-122.1867651","39.3049615"],["-122.1871273","39.3059249"],["-122.1873504","39.3064524"],["-122.1877802","39.3072685"],["-122.1881112","39.3078046"],["-122.1886952","39.308638"],["-122.1911882","39.3119933"],["-122.1926684","39.3140094"],["-122.1930945","39.3147151"],["-122.1934818","39.3154352"],["-122.1936185","39.3157206"],["-122.1937904","39.3162497"],["-122.194136","39.3174649"],["-122.1942456","39.3179479"],["-122.1943496","39.3184451"],["-122.1944128","39.3188684"],["-122.1944942","39.3224449"],["-122.1946293","39.333044"],["-122.19471","39.3446951"],["-122.1947798","39.3495788"],["-122.194764","39.3499336"],["-122.1947323","39.3503865"],["-122.1946931","39.350783"],["-122.1946109","39.3511643"],["-122.194559","39.3514211"],["-122.1944488","39.3519547"],["-122.1942326","39.3527146"],["-122.1936874","39.3543444"],["-122.1933993","39.3551899"],["-122.1930366","39.3562773"],["-122.1928918","39.356857"],["-122.1928213","39.3571708"],["-122.1927367","39.3576794"],["-122.1927039","39.3579366"],["-122.1926499","39.3584677"],["-122.1926151","39.3590083"],["-122.1926581","39.3614557"],["-122.1926681","39.3622263"],["-122.192848","39.3897969"],["-122.192881","39.3935881"],["-122.1929328","39.3942309"],["-122.1929743","39.3945249"],["-122.1930109","39.3947977"],["-122.1935784","39.3973571"],["-122.1943548","39.4006752"],["-122.1951854","39.4042081"],["-122.1953335","39.4048464"],["-122.1954633","39.4055285"],["-122.1955217","39.4059486"],["-122.195552","39.4063792"],["-122.1955827","39.4067396"],["-122.1955916","39.4072363"],["-122.1955845","39.4076595"],["-122.195573","39.4079198"],["-122.195507","39.4084636"],["-122.1954068","39.4090936"],["-122.1952601","39.4098442"],["-122.1948301","39.4118885"],["-122.1934292","39.4182347"],["-122.1932575","39.4190911"],["-122.193193","39.4196504"],["-122.1931413","39.4203727"],["-122.1934128","39.4558401"],["-122.1934508","39.4565433"],["-122.1935141","39.4570874"],["-122.1936356","39.4577425"],["-122.1937807","39.458396"],["-122.1938922","39.4588026"],["-122.1941005","39.4593925"],["-122.1949131","39.4615083"],["-122.1951688","39.4622344"],["-122.1952917","39.4627099"],["-122.1954116","39.4632569"],["-122.1955185","39.4638778"],["-122.195597","39.4645955"],["-122.1958624","39.490116"],["-122.1958983","39.4913678"],["-122.1959629","39.491984"],["-122.1960215","39.4925485"],["-122.1961114","39.4929725"],["-122.1962002","39.4933505"],["-122.1963396","39.4938045"],["-122.1964038","39.4939895"],["-122.1965224","39.49433"],["-122.1966422","39.4946345"],["-122.1969481","39.4952958"],["-122.1973852","39.4961754"],["-122.1986086","39.4984992"],["-122.1999485","39.5010077"],["-122.2004576","39.5018722"],["-122.2013575","39.5030474"],["-122.209905","39.5132327"],["-122.2119653","39.5157311"],["-122.2128382","39.5169077"],["-122.2130572","39.517285"],["-122.2133505","39.5178236"],["-122.2137013","39.5186024"],["-122.2139262","39.5191688"],["-122.2140387","39.5195189"],["-122.2143681","39.5207858"],["-122.2144166","39.5210015"],["-122.2144497","39.5212219"],["-122.2144717","39.5214188"],["-122.2144946","39.5216681"],["-122.2145204","39.5219709"],["-122.214556","39.5304177"],["-122.2145651","39.5378226"],["-122.214585","39.5541392"],["-122.2145422","39.5546345"],["-122.2142807","39.5564609"],["-122.2101725","39.5827486"],["-122.2096652","39.586126"],["-122.2095555","39.5872388"],["-122.2084776","39.6018399"],["-122.2082702","39.6044324"],["-122.2073952","39.6097592"],["-122.2063309","39.616363"],["-122.2050677","39.6241169"],["-122.2047951","39.6257211"],["-122.204103","39.6300718"],["-122.2040093","39.6308599"],["-122.2040029","39.6316988"],["-122.2045702","39.6860971"],["-122.2059474","39.7103261"],["-122.2058237","39.7191507"],["-122.2053508","39.7496593"],["-122.2053302","39.7505829"],["-122.2053094","39.7516276"],["-122.2051641","39.759217"],["-122.2048572","39.7684114"],["-122.2047208","39.7715693"],["-122.2041706","39.7843623"],["-122.2041602","39.7846456"],["-122.2041112","39.7856452"],["-122.2040685","39.7861126"],["-122.2039961","39.7865815"],["-122.2039547","39.7868045"],["-122.2039019","39.7870838"],["-122.2037981","39.7875126"],["-122.2026873","39.7913447"],["-122.2001445","39.800046"],["-122.1999957","39.8006073"],["-122.1998983","39.8011335"],["-122.1998207","39.8016761"],["-122.1997643","39.8022282"],["-122.1997409","39.8028197"],["-122.199747","39.8166254"],["-122.1998233","39.840783"],["-122.1998275","39.8460178"],["-122.1998734","39.857989"],["-122.1999469","39.8780598"],["-122.1999574","39.8791697"],["-122.1999572","39.8841766"],["-122.19994","39.8844516"],["-122.1999644","39.885144"],["-122.1999823","39.8869267"],["-122.1999941","39.8875976"],["-122.200002","39.8899112"],["-122.2000333","39.9007426"],["-122.2000394","39.9029378"],["-122.2000246","39.9064082"],["-122.2000181","39.9097066"],["-122.2000489","39.9108931"],["-122.2000623","39.9130416"],["-122.2000558","39.9140828"],["-122.2001138","39.9640464"],["-122.2001501","39.9651984"],["-122.2001897","39.9659379"],["-122.200222","39.9663008"],["-122.2002952","39.966829"],["-122.2005452","39.9685084"],["-122.2013218","39.9732492"],["-122.2154039","40.0596855"],["-122.2154698","40.0604605"],["-122.216595","40.082999"],["-122.21661","40.0835261"],["-122.2187262","40.1253171"],["-122.2188454","40.127561"],["-122.2189058","40.1282065"],["-122.2189818","40.1288291"],["-122.219844","40.1336299"],["-122.2201671","40.1353512"],["-122.2204341","40.1368063"],["-122.2232418","40.1518616"],["-122.2233965","40.1526717"],["-122.2234891","40.1533788"],["-122.2235179","40.1538982"],["-122.2235314","40.1543066"],["-122.2235291","40.1546777"],["-122.2234785","40.1554468"],["-122.2233066","40.1571124"],["-122.2228097","40.160663"],["-122.2227425","40.1614066"],["-122.222675","40.1619677"],["-122.2225928","40.1624907"],["-122.2222735","40.1652668"],["-122.2212447","40.1732323"],["-122.2212046","40.1738166"],["-122.2212316","40.1743754"],["-122.2213205","40.174922"],["-122.221434","40.1754632"],["-122.22164","40.1761206"],["-122.221826","40.1765506"],["-122.2225974","40.1778618"],["-122.2229065","40.1782423"],["-122.2236566","40.1791273"],["-122.2258511","40.181732"],["-122.2410633","40.1997797"],["-122.2423218","40.2014014"],["-122.2432161","40.2026717"],["-122.2445326","40.2048248"],["-122.2448725","40.2054162"],["-122.2453734","40.2063726"],["-122.2455949","40.2068379"],["-122.24665","40.2092241"],["-122.247963","40.2124047"],["-122.2483182","40.2132536"],["-122.2487571","40.2141981"],["-122.248926","40.2145394"],["-122.2495827","40.2157892"],["-122.2502049","40.2169586"],["-122.2506255","40.2177509"],["-122.2516008","40.2195708"],["-122.2527307","40.2217088"],["-122.253188","40.2226098"],["-122.2533656","40.2229952"],["-122.2535112","40.2233544"],["-122.2536179","40.223657"],["-122.2537731","40.224165"],["-122.2539017","40.2246697"],["-122.2539872","40.2250908"],["-122.2540555","40.2255173"],["-122.2541281","40.2261377"],["-122.2544373","40.2292916"],["-122.2545615","40.2303043"],["-122.2546732","40.2309938"],["-122.2548034","40.2316806"],["-122.2549909","40.2325468"],["-122.2550857","40.2329787"],["-122.255304","40.233657"],["-122.2554788","40.2341799"],["-122.2561159","40.2360793"],["-122.256257","40.2365886"],["-122.260355","40.2486819"],["-122.2674181","40.2672687"],["-122.2678741","40.2684882"],["-122.2699787","40.2738326"],["-122.2704386","40.2749599"],["-122.2706019","40.2753235"],["-122.2708906","40.2759555"],["-122.271919","40.2782011"],["-122.2723671","40.2791787"],["-122.2725061","40.2794882"],["-122.2733057","40.2812346"],["-122.2736219","40.2818882"],["-122.2737968","40.2821964"],["-122.2739755","40.282487"],["-122.2741433","40.2827417"],["-122.2743255","40.2829775"],["-122.2753583","40.2842103"],["-122.2758635","40.2848021"],["-122.2762224","40.2852224"],["-122.2768978","40.2860184"],["-122.2771341","40.2863075"],["-122.2772847","40.2865066"],["-122.2774525","40.2867619"],["-122.2776943","40.2871524"],["-122.2778891","40.2874836"],["-122.2781177","40.2879836"],["-122.2782227","40.2882487"],["-122.278303","40.2884839"],["-122.2784789","40.2891232"],["-122.2785347","40.2893964"],["-122.2785744","40.2896205"],["-122.2786028","40.2898888"],["-122.2786356","40.2903177"],["-122.2791366","40.2982411"],["-122.2811544","40.3304247"],["-122.2812512","40.3321552"],["-122.2817017","40.3429499"],["-122.2817634","40.3443773"],["-122.2820947","40.3494163"],["-122.2830151","40.3576858"],["-122.2832952","40.3599837"],["-122.2841505","40.3704723"],["-122.284318","40.3721134"],["-122.2845129","40.3753653"],["-122.2847337","40.3797236"],["-122.285004","40.3876673"],["-122.2850816","40.3904166"],["-122.2850841","40.391107"],["-122.2850681","40.3914615"],["-122.2849697","40.392051"],["-122.2849187","40.3922915"],["-122.2848007","40.3927002"],["-122.2831567","40.3978208"],["-122.2813555","40.4033922"],["-122.2812027","40.4040063"],["-122.2808355","40.4057726"],["-122.2806857","40.406898"],["-122.280608","40.4078612"],["-122.2805889","40.4098172"],["-122.280711","40.4113504"],["-122.2812654","40.4154789"],["-122.2824531","40.4235654"],["-122.2825711","40.4243558"],["-122.2829055","40.4264193"],["-122.2830745","40.4269744"],["-122.2854585","40.4337294"],["-122.287152","40.4385951"],["-122.2873307","40.4391633"],["-122.2874351","40.4395732"],["-122.2875184","40.4399804"],["-122.2876191","40.44054"],["-122.2881917","40.4431368"],["-122.2885568","40.4448128"],["-122.2891254","40.447471"],["-122.2894176","40.4484412"],["-122.2897269","40.4491737"],["-122.2899688","40.4496869"],["-122.2901313","40.4500016"],["-122.2903446","40.4503592"],["-122.2908469","40.4511497"],["-122.2919746","40.4525938"],["-122.292398","40.4530419"],["-122.2930696","40.453728"],["-122.2947599","40.455433"],["-122.2954738","40.4561572"],["-122.2961671","40.4568674"],["-122.2967628","40.4574748"],["-122.3068842","40.4678606"],["-122.3082715","40.4692895"],["-122.324653","40.4860316"],["-122.3251439","40.4865799"],["-122.325512","40.4870338"],["-122.3257583","40.4873597"],["-122.3259226","40.4875961"],["-122.3263125","40.4881798"],["-122.3302856","40.4941314"],["-122.3313917","40.4958542"],["-122.3384324","40.5064766"],["-122.3388663","40.5071353"],["-122.341972","40.511893"],["-122.342302","40.5124247"],["-122.3425902","40.5129578"],["-122.3429396","40.5136988"],["-122.3433857","40.5149607"],["-122.3449926","40.5199577"],["-122.3463595","40.5242345"],["-122.3471274","40.5266213"],["-122.3495136","40.5341487"],["-122.3498051","40.5351551"],["-122.3501004","40.5360386"],["-122.3506613","40.5377558"],["-122.3508706","40.5383968"],["-122.3511604","40.5393484"],["-122.3513421","40.5399568"],["-122.3517137","40.5411807"],["-122.3523281","40.5431085"],["-122.3598939","40.5669758"],["-122.3599679","40.5672574"],["-122.3600222","40.5674839"],["-122.3601262","40.5679948"],["-122.3601759","40.5683057"],["-122.3602122","40.5685825"],["-122.3602716","40.5692258"],["-122.3602806","40.5694506"],["-122.3602867","40.5700743"],["-122.3602917","40.5712777"],["-122.3602993","40.571964"],["-122.3603101","40.5744078"],["-122.3603846","40.5859085"],["-122.3603785","40.586629"],["-122.3604034","40.5879861"],["-122.3604203","40.5965827"],["-122.3604316","40.6009265"],["-122.3604343","40.6017103"],["-122.3604456","40.6022732"],["-122.3604597","40.6029836"],["-122.3604983","40.6034405"],["-122.3605638","40.6039726"],["-122.360641","40.6043838"],["-122.3607877","40.6050413"],["-122.361369","40.6069485"],["-122.3616599","40.607863"],["-122.365217","40.6191674"],["-122.3658303","40.6211214"],["-122.3668778","40.6244231"],["-122.3670147","40.6248569"],["-122.3671278","40.6252138"],["-122.3672347","40.625566"],["-122.36734","40.6259621"],["-122.3675548","40.6266115"],["-122.3676911","40.6270198"],["-122.3678336","40.6274699"],["-122.3681182","40.6283553"],["-122.3683371","40.6291553"],["-122.3684419","40.6297816"],["-122.368468","40.6301357"],["-122.368468","40.6304224"],["-122.3684648","40.6307868"],["-122.3684346","40.631136"],["-122.3683439","40.6318169"],["-122.3682763","40.6321681"],["-122.3682208","40.6324329"],["-122.3681804","40.6325603"],["-122.3681318","40.6327295"],["-122.3680614","40.6329557"],["-122.3677467","40.6338021"],["-122.3675999","40.6341835"],["-122.3675137","40.6344174"],["-122.3673593","40.6348069"],["-122.3669553","40.6358487"],["-122.36664","40.6366951"],["-122.365799","40.638929"],["-122.3655073","40.639568"],["-122.3639261","40.6439081"],["-122.3636919","40.6445273"],["-122.363289","40.645579"],["-122.3623504","40.6480066"],["-122.3619598","40.6489674"],["-122.3599407","40.6534705"],["-122.3591277","40.6553226"],["-122.3546656","40.6651247"],["-122.3541834","40.6661642"],["-122.3501816","40.6748843"],["-122.3498604","40.6755921"],["-122.3492411","40.6769724"],["-122.3489516","40.6776625"],["-122.3487423","40.6782064"],["-122.348555","40.6787093"],["-122.3484299","40.6790201"],["-122.3482074","40.6797058"],["-122.3481142","40.6800297"],["-122.3479736","40.6805419"],["-122.3474876","40.6824068"],["-122.3447862","40.6920852"],["-122.3446001","40.692759"],["-122.3444639","40.6932067"],["-122.3443257","40.6936163"],["-122.344114","40.6941473"],["-122.3439194","40.6945736"],["-122.3437319","40.6949494"],["-122.3433587","40.6955973"],["-122.338588","40.7032774"],["-122.3382786","40.7037796"],["-122.3379261","40.7043848"],["-122.3360776","40.7072804"],["-122.3354342","40.7083945"],["-122.3350507","40.7089877"],["-122.3346774","40.7096059"],["-122.3290492","40.718627"],["-122.3284175","40.719596"],["-122.3279288","40.7202145"],["-122.3266657","40.721502"],["-122.3256931","40.7224851"],["-122.3249875","40.7232727"],["-122.32426","40.7242068"],["-122.32388","40.7247802"],["-122.3234693","40.72542"],["-122.3230144","40.726132"],["-122.3219539","40.7277808"],["-122.3209643","40.7293739"],["-122.3182371","40.7335976"],["-122.3181189","40.7338166"],["-122.3147585","40.7391486"],["-122.3142103","40.740076"],["-122.3140692","40.7403475"],["-122.3140142","40.740481"],["-122.3139366","40.7406906"],["-122.313866","40.7409429"],["-122.3137649","40.7413936"],["-122.3137208","40.7417797"],["-122.3137224","40.742143"],["-122.3137328","40.7425874"],["-122.3138491","40.7432836"],["-122.3140448","40.7443048"],["-122.3141938","40.7449378"],["-122.3143424","40.7454298"],["-122.3145158","40.745874"],["-122.3147511","40.7463993"],["-122.3149324","40.7467499"],["-122.3150978","40.7470418"],["-122.315457","40.7474962"],["-122.3157792","40.7478919"],["-122.3160278","40.7481834"],["-122.316243","40.7484259"],["-122.3165268","40.7486976"],["-122.3171069","40.7491692"],["-122.3176988","40.7496603"],["-122.3187987","40.7505988"],["-122.3195618","40.7511956"],["-122.3201325","40.7516355"],["-122.3207009","40.7521144"],["-122.3208749","40.7522707"],["-122.321017","40.7524154"],["-122.3211387","40.7525658"],["-122.3213836","40.7529332"],["-122.3215616","40.7532577"],["-122.3216703","40.7535435"],["-122.3217259","40.7537997"],["-122.32174","40.754282"],["-122.3217309","40.7545182"],["-122.3217116","40.7546407"],["-122.3216627","40.7548269"],["-122.3216265","40.7549379"],["-122.3215684","40.7550758"],["-122.3214465","40.7553187"],["-122.3213182","40.755521"],["-122.3212128","40.7556649"],["-122.3210426","40.7558524"],["-122.3207513","40.7561377"],["-122.3204543","40.7564125"],["-122.3201393","40.7566918"],["-122.3197803","40.7570111"],["-122.3194872","40.7572986"],["-122.3194112","40.7574161"],["-122.3193346","40.7575402"],["-122.3192764","40.7576338"],["-122.3192344","40.7577054"],["-122.3192116","40.7577579"],["-122.319176","40.757855"],["-122.3191376","40.7579801"],["-122.3191043","40.7581025"],["-122.3190795","40.7582345"],["-122.3190732","40.7583247"],["-122.3189178","40.7611204"],["-122.3187036","40.7645518"],["-122.3185953","40.7661779"],["-122.3185297","40.7665365"],["-122.3184716","40.7667832"],["-122.3183979","40.766966"],["-122.3181412","40.7673909"],["-122.3180578","40.7675096"],["-122.3179627","40.7676183"],["-122.3178201","40.7677635"],["-122.3174627","40.7680462"],["-122.3172814","40.7681614"],["-122.3170823","40.7682747"],["-122.3168849","40.7683737"],["-122.316466","40.7685458"],["-122.3155276","40.768911"],["-122.3150136","40.7691217"],["-122.314737","40.7692595"],["-122.3144658","40.7694112"],["-122.3140226","40.7697113"],["-122.3138028","40.7698776"],["-122.3136752","40.7699862"],["-122.3135089","40.7701377"],["-122.3132914","40.7703542"],["-122.313134","40.7705265"],["-122.3129287","40.7707826"],["-122.312801","40.7709588"],["-122.3126534","40.7712146"],["-122.3125378","40.7715063"],["-122.3125093","40.7716015"],["-122.3124751","40.7716976"],["-122.3124203","40.7718918"],["-122.3123577","40.7721848"],["-122.3122931","40.7726203"],["-122.3123119","40.7733482"],["-122.3123448","40.7735576"],["-122.3124259","40.7738842"],["-122.3125642","40.7743224"],["-122.3128929","40.7748365"],["-122.3133324","40.7755322"],["-122.3138025","40.7763845"],["-122.3140669","40.7768282"],["-122.3144143","40.7773667"],["-122.3146615","40.7777986"],["-122.3147352","40.7779706"],["-122.3147664","40.7780698"],["-122.3147971","40.7782375"],["-122.3148167","40.7783734"],["-122.3148204","40.7785006"],["-122.3148076","40.7787464"],["-122.3147904","40.7789175"],["-122.3147218","40.7792197"],["-122.3146533","40.7794093"],["-122.3145209","40.7797215"],["-122.3144156","40.7799411"],["-122.3142703","40.7801743"],["-122.3141218","40.7803858"],["-122.3140151","40.7805115"],["-122.3138391","40.7806933"],["-122.3135936","40.7809101"],["-122.3130252","40.7812814"],["-122.3121518","40.7816322"],["-122.3108749","40.7820904"],["-122.3103441","40.7822853"],["-122.3101573","40.7823688"],["-122.3099981","40.7824474"],["-122.309858","40.7825277"],["-122.3097237","40.7826141"],["-122.3095895","40.7827121"],["-122.3094225","40.7828589"],["-122.309111","40.7831615"],["-122.308937","40.7833623"],["-122.308716","40.7836717"],["-122.3085704","40.7839483"],["-122.308487","40.7841282"],["-122.3084386","40.7842695"],["-122.3083681","40.7845572"],["-122.3083388","40.7847406"],["-122.3083208","40.7849853"],["-122.3083172","40.7851645"],["-122.3083268","40.7853064"],["-122.3083442","40.7854524"],["-122.3083834","40.785645"],["-122.3084132","40.785745"],["-122.3084547","40.7858545"],["-122.3085122","40.7859844"],["-122.3086218","40.7861892"],["-122.308776","40.7864351"],["-122.3089511","40.7866628"],["-122.3090965","40.7868382"],["-122.309311","40.7870561"],["-122.3094781","40.7872124"],["-122.3095773","40.7872901"],["-122.3097002","40.7873666"],["-122.3101577","40.7876256"],["-122.3107459","40.7879791"],["-122.3110271","40.7881634"],["-122.3112811","40.7883385"],["-122.3115366","40.7885399"],["-122.3117964","40.7887626"],["-122.3121731","40.7891389"],["-122.3128802","40.7899356"],["-122.3129991","40.790073"],["-122.3131055","40.7901946"],["-122.3132385","40.7903358"],["-122.3133916","40.7904854"],["-122.3135417","40.7906362"],["-122.3137992","40.790874"],["-122.3145427","40.7914735"],["-122.3147659","40.7916417"],["-122.3150666","40.7918546"],["-122.3152329","40.7919794"],["-122.3155209","40.7921657"],["-122.3159041","40.7923846"],["-122.3162878","40.79259"],["-122.3168299","40.7928564"],["-122.3170743","40.792972"],["-122.3175524","40.7931832"],["-122.319377","40.7939178"],["-122.3197151","40.794064"],["-122.3199362","40.7941883"],["-122.3201046","40.7942972"],["-122.3202717","40.7944131"],["-122.3204581","40.7945657"],["-122.3205492","40.7946492"],["-122.320651","40.794741"],["-122.3207828","40.794883"],["-122.3209375","40.7950589"],["-122.3210983","40.7952864"],["-122.3211904","40.7954443"],["-122.3213204","40.7957041"],["-122.3213849","40.7958704"],["-122.3214389","40.7960354"],["-122.321519","40.7964638"],["-122.3217039","40.7975315"],["-122.3217466","40.7977809"],["-122.3220273","40.7995615"],["-122.3221941","40.8004748"],["-122.3225715","40.8027613"],["-122.3226112","40.803329"],["-122.3225705","40.8047331"],["-122.3225194","40.8052442"],["-122.3224502","40.8057053"],["-122.3223784","40.8060888"],["-122.3222822","40.8065363"],["-122.3221852","40.8069182"],["-122.3220072","40.8074882"],["-122.3218167","40.8080741"],["-122.3215155","40.8089616"],["-122.3211804","40.8099419"],["-122.3209331","40.8106854"],["-122.3208716","40.8109067"],["-122.3208341","40.8111026"],["-122.3207969","40.8113737"],["-122.3207642","40.8117311"],["-122.3207367","40.8121124"],["-122.3207294","40.812514"],["-122.3207513","40.8128857"],["-122.3208015","40.81333"],["-122.3208807","40.8137524"],["-122.3209663","40.8141157"],["-122.3210297","40.8143657"],["-122.3210851","40.8145513"],["-122.3223779","40.8179898"],["-122.3231029","40.819923"],["-122.3233042","40.820488"],["-122.3237165","40.821587"],["-122.3244051","40.8234225"],["-122.3245179","40.8237521"],["-122.3245653","40.8239822"],["-122.3246194","40.8243419"],["-122.3246343","40.8244938"],["-122.3246329","40.8246661"],["-122.3246099","40.8250462"],["-122.3245589","40.8256502"],["-122.3245276","40.8261899"],["-122.3245109","40.8264593"],["-122.3245128","40.826654"],["-122.3245287","40.8269404"],["-122.3245837","40.8272996"],["-122.3246399","40.8275221"],["-122.324722","40.8277664"],["-122.3248094","40.8279762"],["-122.3250292","40.8284443"],["-122.325681","40.82983"],["-122.3258514","40.8302281"],["-122.3259543","40.8304983"],["-122.3260298","40.8307247"],["-122.3261123","40.8310008"],["-122.3262428","40.8314348"],["-122.3263355","40.8318038"],["-122.3264488","40.8323786"],["-122.3266126","40.8331681"],["-122.3268237","40.8339933"],["-122.3270279","40.8347534"],["-122.327236","40.8355817"],["-122.3274493","40.8364738"],["-122.3276164","40.8372036"],["-122.3276973","40.8376179"],["-122.3278008","40.838251"],["-122.3278598","40.8387144"],["-122.3279718","40.8409536"],["-122.3280205","40.8418112"],["-122.3280471","40.8420546"],["-122.3280876","40.8422826"],["-122.3281179","40.8424254"],["-122.3281561","40.842548"],["-122.3282066","40.8426759"],["-122.3282958","40.8428581"],["-122.3284073","40.8430437"],["-122.3284966","40.8431703"],["-122.3285884","40.8432846"],["-122.3287435","40.8434554"],["-122.3288733","40.8435885"],["-122.3290606","40.8437519"],["-122.329232","40.8438823"],["-122.3294944","40.8440643"],["-122.3297715","40.844229"],["-122.3302109","40.8444509"],["-122.334062","40.8461468"],["-122.3349599","40.8465623"],["-122.3353298","40.8466907"],["-122.3368953","40.8472824"],["-122.3375481","40.8475345"],["-122.3382847","40.8478314"],["-122.3397422","40.8484344"],["-122.3402229","40.8486668"],["-122.3404124","40.8487835"],["-122.3406049","40.8489132"],["-122.340903","40.8491537"],["-122.34104","40.8492796"],["-122.3411602","40.8494161"],["-122.3412993","40.8495814"],["-122.3414619","40.8498051"],["-122.3415978","40.8500439"],["-122.3417052","40.8503018"],["-122.3417878","40.8505552"],["-122.3418421","40.8508069"],["-122.3418592","40.850949"],["-122.3418671","40.8511817"],["-122.3418466","40.8520223"],["-122.3418236","40.8527195"],["-122.3418301","40.85306"],["-122.3418637","40.8533105"],["-122.3419323","40.8535874"],["-122.3420069","40.8538016"],["-122.3421166","40.8540395"],["-122.3422587","40.8542884"],["-122.3424278","40.8545201"],["-122.342576","40.8546971"],["-122.3427173","40.8548408"],["-122.3435106","40.8555124"],["-122.3492436","40.8602626"],["-122.3496821","40.8605912"],["-122.3502229","40.8609521"],["-122.350807","40.8613145"],["-122.35128","40.8615856"],["-122.352051","40.8619702"],["-122.3524255","40.8621457"],["-122.3530121","40.8623903"],["-122.3533577","40.8625256"],["-122.3536343","40.8626275"],["-122.3539414","40.8627331"],["-122.3625354","40.8653399"],["-122.362854","40.8654586"],["-122.363195","40.8656114"],["-122.3634871","40.8657594"],["-122.3637111","40.8658801"],["-122.3639158","40.8660086"],["-122.3641451","40.8661591"],["-122.3643805","40.8663324"],["-122.3646182","40.8665221"],["-122.3649152","40.866798"],["-122.3650819","40.8669655"],["-122.3652259","40.8671305"],["-122.3653464","40.8672794"],["-122.3654837","40.8674644"],["-122.3656151","40.8676654"],["-122.3657848","40.8679666"],["-122.3660791","40.8685306"],["-122.3668974","40.870163"],["-122.3669993","40.8703394"],["-122.3670856","40.8704738"],["-122.3672248","40.8706554"],["-122.3673354","40.8707837"],["-122.3674494","40.8709074"],["-122.3675708","40.8710206"],["-122.3676995","40.8711305"],["-122.3678896","40.8712817"],["-122.368093","40.8714198"],["-122.3698702","40.8724676"],["-122.3709187","40.8730869"],["-122.3711605","40.8732552"],["-122.3714164","40.8734535"],["-122.3716519","40.8736489"],["-122.3718932","40.8738754"],["-122.3721522","40.8741541"],["-122.3723311","40.8743618"],["-122.3724642","40.8745336"],["-122.3727392","40.8749461"],["-122.373222","40.8757379"],["-122.3734209","40.8760474"],["-122.373636","40.8763394"],["-122.3737967","40.8765337"],["-122.373958","40.8767142"],["-122.3741777","40.8769332"],["-122.3743921","40.877129"],["-122.3746286","40.8773186"],["-122.3748482","40.8774872"],["-122.3750501","40.8776274"],["-122.375274","40.8777712"],["-122.3755282","40.87792"],["-122.3758134","40.8780706"],["-122.3763815","40.8783382"],["-122.3781656","40.8791652"],["-122.3784553","40.8793056"],["-122.3787602","40.8794657"],["-122.3790081","40.8796096"],["-122.37927","40.8797723"],["-122.3798097","40.8801308"],["-122.3800437","40.8803053"],["-122.3802712","40.8804916"],["-122.3807488","40.8809003"],["-122.3809439","40.881099"],["-122.3813422","40.8815296"],["-122.3815249","40.8817514"],["-122.3818732","40.8822098"],["-122.3821675","40.8826804"],["-122.3823086","40.882927"],["-122.3824187","40.883144"],["-122.3830977","40.8845577"],["-122.383246","40.8848991"],["-122.3833386","40.8851548"],["-122.3834177","40.8854244"],["-122.3834742","40.8856616"],["-122.3835261","40.8859513"],["-122.3835536","40.8862319"],["-122.3835661","40.8864691"],["-122.3835688","40.8867232"],["-122.3835569","40.8870027"],["-122.3829802","40.8957629"],["-122.3828857","40.8971264"],["-122.3828339","40.8980139"],["-122.382791","40.8990241"],["-122.3827871","40.8997781"],["-122.3828076","40.9005046"],["-122.3828456","40.9011788"],["-122.3829058","40.9018708"],["-122.3829714","40.9024276"],["-122.3830608","40.9030086"],["-122.3831891","40.9036885"],["-122.3832967","40.9042008"],["-122.3834559","40.9048843"],["-122.3840182","40.907185"],["-122.384258","40.9081292"],["-122.3843263","40.9083894"],["-122.384409","40.9086758"],["-122.3845027","40.9089466"],["-122.3845932","40.9091817"],["-122.3847024","40.9094325"],["-122.3848216","40.9096801"],["-122.3849486","40.9099167"],["-122.3850908","40.9101572"],["-122.3852988","40.9104774"],["-122.3855973","40.9108866"],["-122.3857842","40.9111009"],["-122.3859782","40.9113147"],["-122.3864922","40.9118276"],["-122.3867283","40.9120328"],["-122.3869651","40.9122268"],["-122.3872329","40.9124267"],["-122.3875076","40.9126212"],["-122.3879912","40.9129329"],["-122.3892063","40.913694"],["-122.3900315","40.9141897"],["-122.3963363","40.9180586"],["-122.3978337","40.9190914"],["-122.4003172","40.9209071"],["-122.4005837","40.9210853"],["-122.400836","40.9212299"],["-122.4011137","40.9213717"],["-122.4014718","40.9215305"],["-122.4018707","40.9216705"],["-122.4022623","40.9217795"],["-122.4026959","40.9218776"],["-122.4030745","40.9219403"],["-122.4034176","40.9219751"],["-122.4037262","40.9219921"],["-122.404053","40.922002"],["-122.40612","40.9219728"],["-122.4065242","40.921986"],["-122.4068421","40.9220131"],["-122.4071991","40.9220673"],["-122.4075544","40.9221386"],["-122.407913","40.9222359"],["-122.4082916","40.9223587"],["-122.4086343","40.9225048"],["-122.4089289","40.9226566"],["-122.4092229","40.9228188"],["-122.4094806","40.9229918"],["-122.4098209","40.9232641"],["-122.4099951","40.9234275"],["-122.4101413","40.9235817"],["-122.4102849","40.9237403"],["-122.4104438","40.9239488"],["-122.4106338","40.9242717"],["-122.4107848","40.9245877"],["-122.4108856","40.924884"],["-122.4109447","40.9251183"],["-122.4115501","40.9280492"],["-122.411715","40.9287619"],["-122.4118043","40.9290323"],["-122.4119049","40.9292771"],["-122.4120557","40.9296033"],["-122.4126849","40.9308265"],["-122.4128945","40.9312912"],["-122.4129955","40.9315849"],["-122.4130334","40.9318014"],["-122.4130692","40.9320322"],["-122.4130843","40.932232"],["-122.4130924","40.9324985"],["-122.4130978","40.9328159"],["-122.4130505","40.9335207"],["-122.4130661","40.9337913"],["-122.4131201","40.9340792"],["-122.4131719","40.934286"],["-122.4132517","40.9345097"],["-122.4133405","40.9346911"],["-122.4134522","40.9348701"],["-122.4135821","40.9350656"],["-122.4137514","40.9352668"],["-122.4139303","40.935447"],["-122.4140862","40.935596"],["-122.4142519","40.9357412"],["-122.4144412","40.9358729"],["-122.4148071","40.9360959"],["-122.4150991","40.9362469"],["-122.4153235","40.9363473"],["-122.4155494","40.9364393"],["-122.4157197","40.9364956"],["-122.4159216","40.9365511"],["-122.4162527","40.9366279"],["-122.4164918","40.9366707"],["-122.416706","40.9367015"],["-122.4169474","40.9367251"],["-122.4171747","40.9367395"],["-122.4173731","40.9367477"],["-122.4176592","40.9367471"],["-122.4192271","40.9367641"],["-122.4195242","40.9367827"],["-122.4197896","40.9368158"],["-122.4200671","40.9368675"],["-122.4206246","40.9370017"],["-122.4209006","40.9370897"],["-122.4214008","40.9373459"],["-122.4216461","40.9374965"],["-122.4218127","40.9376103"],["-122.4219725","40.9377288"],["-122.4222059","40.9379227"],["-122.4227604","40.9384036"],["-122.4231155","40.9387022"],["-122.424199","40.9396153"],["-122.4244966","40.9398487"],["-122.424778","40.9400275"],["-122.4250252","40.9401643"],["-122.4252116","40.9402549"],["-122.4253466","40.9403121"],["-122.4254948","40.9403674"],["-122.4257128","40.9404374"],["-122.4259334","40.940503"],["-122.4261344","40.9405629"],["-122.4263487","40.9406197"],["-122.4265746","40.9406653"],["-122.4268145","40.9407058"],["-122.4272201","40.9407557"],["-122.431571","40.9412164"],["-122.433251","40.9413981"],["-122.4336049","40.9414509"],["-122.4338036","40.9414927"],["-122.4339938","40.9415459"],["-122.4342473","40.9416271"],["-122.4345861","40.9417497"],["-122.4348918","40.94188"],["-122.4351724","40.9420148"],["-122.435392","40.9421424"],["-122.4356116","40.9422769"],["-122.4357964","40.9424019"],["-122.4359389","40.9425143"],["-122.436086","40.9426457"],["-122.4362702","40.9428211"],["-122.4365426","40.9431112"],["-122.4367501","40.9433865"],["-122.4368737","40.9435859"],["-122.4370404","40.9439099"],["-122.4371208","40.9441134"],["-122.4371656","40.9442511"],["-122.4372033","40.9444013"],["-122.4372369","40.9445699"],["-122.4372617","40.944814"],["-122.4372704","40.9450232"],["-122.4372672","40.9452826"],["-122.4372478","40.9455629"],["-122.4372264","40.9457139"],["-122.4371974","40.9458395"],["-122.4371313","40.9460529"],["-122.4369991","40.9463735"],["-122.4368634","40.9466816"],["-122.43664","40.947172"],["-122.4361971","40.9481162"],["-122.4360605","40.9484287"],["-122.4359738","40.9486796"],["-122.4358509","40.9491058"],["-122.4357467","40.9495093"],["-122.4356473","40.9499787"],["-122.4354643","40.9511164"],["-122.4353729","40.9519719"],["-122.435238","40.9537467"],["-122.4351833","40.9552775"],["-122.4351504","40.9559094"],["-122.4351419","40.9562473"],["-122.4351168","40.9564875"],["-122.4351223","40.9567263"],["-122.4351581","40.9568982"],["-122.4353164","40.9574768"],["-122.4353569","40.9575866"],["-122.4354103","40.9577038"],["-122.4355171","40.9578986"],["-122.4355944","40.9580164"],["-122.4357521","40.9582206"],["-122.4358692","40.9583526"],["-122.4360297","40.9585072"],["-122.4361344","40.9586002"],["-122.4362661","40.9587034"],["-122.4364232","40.958815"],["-122.4366048","40.9589313"],["-122.4370474","40.9591664"],["-122.4390503","40.960164"],["-122.4394714","40.9603976"],["-122.4397425","40.9605771"],["-122.4399534","40.9607538"],["-122.4401623","40.9609732"],["-122.4403684","40.9612229"],["-122.4405966","40.9615418"],["-122.4406884","40.9616888"],["-122.4407732","40.9618625"],["-122.4408487","40.9620731"],["-122.4408961","40.9622658"],["-122.4409254","40.9624585"],["-122.4409382","40.9626018"],["-122.4409426","40.9627706"],["-122.4409131","40.9630692"],["-122.4408253","40.9634871"],["-122.4407396","40.9637491"],["-122.4406368","40.9639941"],["-122.4405286","40.9642082"],["-122.4403915","40.9644109"],["-122.4403028","40.9645182"],["-122.4401946","40.9646318"],["-122.4400225","40.9647911"],["-122.4398854","40.9649056"],["-122.439712","40.9650312"],["-122.4395364","40.9651488"],["-122.439336","40.9652722"],["-122.4391567","40.9653627"],["-122.4387617","40.9655336"],["-122.4381366","40.9657948"],["-122.4367765","40.9663716"],["-122.4365106","40.9664985"],["-122.4363268","40.9665993"],["-122.4361552","40.9667081"],["-122.4359702","40.9668497"],["-122.4356145","40.9671737"],["-122.4354706","40.9673306"],["-122.4353476","40.9674788"],["-122.4352185","40.9676586"],["-122.4350345","40.9679755"],["-122.4344464","40.9690527"],["-122.4342809","40.9693289"],["-122.4341445","40.9695364"],["-122.4340135","40.9697153"],["-122.4338328","40.9699395"],["-122.4336078","40.9701949"],["-122.4334348","40.9703764"],["-122.4331079","40.9706805"],["-122.4328571","40.9709145"],["-122.4326759","40.9710908"],["-122.4325681","40.9712073"],["-122.4324652","40.9713318"],["-122.4323463","40.9714934"],["-122.4322458","40.9716393"],["-122.4321585","40.9717856"],["-122.4320797","40.9719278"],["-122.4320083","40.9720839"],["-122.4319186","40.9723265"],["-122.4318879","40.9724403"],["-122.4318668","40.9725827"],["-122.431857","40.972795"],["-122.4318647","40.9730398"],["-122.4318875","40.9732673"],["-122.4319113","40.9734447"],["-122.4319476","40.9735958"],["-122.4319876","40.9737361"],["-122.4320334","40.9738638"],["-122.4320993","40.9740269"],["-122.43216","40.9741702"],["-122.4322611","40.9743631"],["-122.4327894","40.9755941"],["-122.4329801","40.9761335"],["-122.4330275","40.9763763"],["-122.4330428","40.9766823"],["-122.4330279","40.976907"],["-122.4330058","40.9770522"],["-122.4329597","40.9772656"],["-122.4329179","40.9774063"],["-122.4328467","40.9775771"],["-122.4327139","40.9778358"],["-122.4326307","40.9779705"],["-122.4313061","40.9798287"],["-122.4310671","40.9801987"],["-122.4307931","40.9807101"],["-122.4305701","40.9811771"],["-122.4304266","40.9815367"],["-122.4303058","40.9818624"],["-122.4298199","40.9833124"],["-122.4295108","40.9843892"],["-122.4293593","40.9848883"],["-122.4291757","40.9853576"],["-122.4289779","40.9858441"],["-122.42883","40.9861583"],["-122.4286577","40.9864946"],["-122.428438","40.9868909"],["-122.4282465","40.9872168"],["-122.4281299","40.9874182"],["-122.4280025","40.9876349"],["-122.4277622","40.9880123"],["-122.4275405","40.9883271"],["-122.4273674","40.988566"],["-122.4272346","40.988748"],["-122.4270827","40.9889529"],["-122.4268444","40.9892538"],["-122.4265995","40.9895361"],["-122.4262854","40.9898813"],["-122.4259206","40.9902528"],["-122.4256108","40.9905513"],["-122.4252728","40.9908665"],["-122.4244529","40.9915501"],["-122.4239288","40.9919614"],["-122.4235262","40.992263"],["-122.4228118","40.9927846"],["-122.4225232","40.9929878"],["-122.4222401","40.9931907"],["-122.4220288","40.9933448"],["-122.4217574","40.9935368"],["-122.4192643","40.9953534"],["-122.4148996","40.998738"],["-122.4128079","41.0003601"],["-122.4110409","41.001758"],["-122.4107752","41.0019967"],["-122.4105464","41.0022314"],["-122.4102815","41.0025346"],["-122.4100881","41.0027951"],["-122.4098285","41.0032129"],["-122.4096704","41.0034903"],["-122.4095564","41.0037238"],["-122.4093909","41.0041859"],["-122.4093089","41.0044712"],["-122.4092466","41.0047335"],["-122.409212","41.0049652"],["-122.4091959","41.0052319"],["-122.4091921","41.0054148"],["-122.4091986","41.00557"],["-122.4092073","41.0057542"],["-122.4092602","41.0062532"],["-122.4095279","41.0084166"],["-122.4096578","41.0095929"],["-122.4096747","41.0101535"],["-122.4096651","41.0103983"],["-122.4096485","41.0105881"],["-122.4096222","41.0107567"],["-122.40951","41.0111955"],["-122.409429","41.0114342"],["-122.4093538","41.0116305"],["-122.4092806","41.0117785"],["-122.4089806","41.012304"],["-122.408763","41.0126347"],["-122.4085613","41.0128772"],["-122.4078578","41.0135714"],["-122.4063457","41.0149342"],["-122.4021868","41.0186554"],["-122.3989714","41.0214868"],["-122.3981638","41.0222512"],["-122.3976184","41.0228063"],["-122.3974716","41.0229724"],["-122.3973249","41.0231522"],["-122.3971384","41.0234071"],["-122.3970079","41.0235995"],["-122.3969053","41.0237778"],["-122.3968228","41.0239498"],["-122.3966951","41.0242515"],["-122.3966332","41.0244351"],["-122.3965814","41.0245911"],["-122.3965418","41.0247501"],["-122.3965164","41.0249218"],["-122.3964966","41.0251473"],["-122.3964849","41.0254493"],["-122.3965074","41.025946"],["-122.3965644","41.0265176"],["-122.3966433","41.0272398"],["-122.3967421","41.0280861"],["-122.3969966","41.0298583"],["-122.3971176","41.0307045"],["-122.3972554","41.0316958"],["-122.3972893","41.0321085"],["-122.397298","41.0324525"],["-122.3972923","41.0326436"],["-122.3972688","41.0328819"],["-122.3972342","41.0331248"],["-122.3971727","41.0334709"],["-122.3971108","41.0337361"],["-122.3970564","41.0339279"],["-122.3969466","41.0342661"],["-122.3968085","41.0345985"],["-122.3960545","41.0362293"],["-122.3958906","41.0366095"],["-122.3957645","41.0369899"],["-122.3956077","41.0375086"],["-122.3954928","41.0379373"],["-122.3954479","41.0382467"],["-122.3954157","41.0385729"],["-122.3953803","41.0391782"],["-122.3953476","41.0399412"],["-122.3953206","41.0404341"],["-122.3952761","41.0407875"],["-122.3952023","41.0412307"],["-122.3951078","41.04164"],["-122.3950378","41.0418685"],["-122.395004","41.0419626"],["-122.3949215","41.0421471"],["-122.3948084","41.0423856"],["-122.3946712","41.0426395"],["-122.3944092","41.0430306"],["-122.3942116","41.0433003"],["-122.3940148","41.0435187"],["-122.393813","41.0437307"],["-122.39354","41.0439762"],["-122.3930866","41.0443077"],["-122.3915952","41.0453725"],["-122.3902798","41.0462527"],["-122.3896055","41.0466604"],["-122.3891811","41.0468714"],["-122.3888839","41.0470034"],["-122.3886803","41.0470816"],["-122.3882955","41.0472106"],["-122.3874891","41.0474202"],["-122.3835602","41.0484145"],["-122.3830829","41.0485563"],["-122.3827565","41.0486729"],["-122.3823954","41.0488245"],["-122.3821031","41.0489834"],["-122.3818004","41.0491619"],["-122.3815471","41.0493335"],["-122.3812602","41.0495716"],["-122.380994","41.0498019"],["-122.3807861","41.0500115"],["-122.3806542","41.0501722"],["-122.3805443","41.0503175"],["-122.3804406","41.0504813"],["-122.3803072","41.050707"],["-122.3801333","41.0510354"],["-122.3799459","41.0514528"],["-122.3792882","41.0530407"],["-122.3790713","41.0535704"],["-122.3789004","41.0539523"],["-122.3787824","41.0541603"],["-122.3786832","41.0542933"],["-122.3785257","41.0544697"],["-122.3783475","41.0546437"],["-122.3781559","41.0547986"],["-122.377986","41.0549373"],["-122.3777219","41.0551249"],["-122.3773472","41.0553363"],["-122.3770838","41.0554523"],["-122.3765268","41.0556561"],["-122.3755791","41.0559819"],["-122.3743698","41.0564528"],["-122.3740011","41.0566255"],["-122.3737496","41.0567701"],["-122.3735566","41.0568942"],["-122.3733081","41.0570779"],["-122.3731108","41.0572497"],["-122.3729471","41.0574131"],["-122.3727409","41.0576518"],["-122.3724404","41.0580856"],["-122.3714919","41.0595323"],["-122.3709264","41.0604025"],["-122.3702262","41.061451"],["-122.3697215","41.0621972"],["-122.3692434","41.0629016"],["-122.3690287","41.0631817"],["-122.3688672","41.0633497"],["-122.3686203","41.0635742"],["-122.3684768","41.0636885"],["-122.3683226","41.0637977"],["-122.3680757","41.0639479"],["-122.367829","41.0640772"],["-122.3675186","41.0642105"],["-122.3671523","41.0643322"],["-122.3649205","41.0649667"],["-122.3644496","41.0651156"],["-122.3640819","41.0652509"],["-122.3637241","41.0653993"],["-122.3634087","41.0655468"],["-122.3630936","41.0657115"],["-122.3626293","41.065994"],["-122.362301","41.0662286"],["-122.3618608","41.0665763"],["-122.3616611","41.066758"],["-122.3613263","41.0671181"],["-122.3610567","41.0674492"],["-122.3608444","41.0677387"],["-122.3606652","41.0679862"],["-122.3604689","41.0682701"],["-122.3601524","41.0687578"],["-122.3593687","41.0699029"],["-122.358013","41.0719214"],["-122.3576691","41.0723716"],["-122.3571225","41.0731605"],["-122.3568359","41.0735814"],["-122.3566727","41.0738399"],["-122.3565165","41.0741204"],["-122.3563942","41.0743708"],["-122.356259","41.0747073"],["-122.3561569","41.0749941"],["-122.3560557","41.0753505"],["-122.3559868","41.0756627"],["-122.3559324","41.0759656"],["-122.3558971","41.0763756"],["-122.3558971","41.0770839"],["-122.3559666","41.0802372"],["-122.3559614","41.0805324"],["-122.355935","41.0807233"],["-122.3558974","41.0808801"],["-122.3558418","41.081036"],["-122.3557775","41.0811841"],["-122.3556701","41.0813693"],["-122.3555803","41.0815042"],["-122.3554907","41.0816258"],["-122.355334","41.0817975"],["-122.3551099","41.082005"],["-122.3548915","41.082174"],["-122.3547351","41.0822781"],["-122.3545848","41.0823659"],["-122.3543004","41.0825019"],["-122.3538335","41.0827053"],["-122.353352","41.0829154"],["-122.3531659","41.0830072"],["-122.3529954","41.0830993"],["-122.3528644","41.083175"],["-122.3527283","41.0832622"],["-122.3525844","41.0833709"],["-122.3524464","41.0834912"],["-122.3522784","41.083656"],["-122.3521544","41.0838006"],["-122.3520818","41.0839019"],["-122.351997","41.0840352"],["-122.351922","41.0841786"],["-122.3518659","41.0842996"],["-122.3517984","41.0844971"],["-122.3517467","41.0847087"],["-122.3517349","41.0848396"],["-122.351734","41.0851399"],["-122.3517955","41.0854952"],["-122.3521146","41.0867257"],["-122.3523951","41.0878035"],["-122.3525499","41.0884263"],["-122.3527013","41.0890533"],["-122.3527369","41.0893224"],["-122.352736","41.0894596"],["-122.3527171","41.0896697"],["-122.3526916","41.0898076"],["-122.3526537","41.0899472"],["-122.3526081","41.0900744"],["-122.3525552","41.090191"],["-122.3524931","41.0903113"],["-122.3524074","41.0904453"],["-122.3523106","41.0905746"],["-122.3521874","41.0907125"],["-122.3520561","41.0908391"],["-122.3518285","41.0910325"],["-122.3516858","41.0911275"],["-122.3515461","41.0912112"],["-122.3513924","41.0912916"],["-122.3508531","41.0915065"],["-122.3498111","41.0919057"],["-122.3481352","41.0925567"],["-122.3476833","41.092735"],["-122.3471657","41.0930254"],["-122.3467594","41.0933166"],["-122.3465837","41.093481"],["-122.3464235","41.0936711"],["-122.3461613","41.0940487"],["-122.3459928","41.0943958"],["-122.3450255","41.0972329"],["-122.3445084","41.0983161"],["-122.3443593","41.0986234"],["-122.344235","41.0988393"],["-122.344164","41.0989472"],["-122.3441076","41.0990341"],["-122.3439717","41.0992127"],["-122.3438152","41.0993898"],["-122.3436667","41.0995335"],["-122.3435304","41.0996542"],["-122.3431698","41.099916"],["-122.3404171","41.1017507"],["-122.3395928","41.1023327"],["-122.3385352","41.1030784"],["-122.3338992","41.1063329"],["-122.3336647","41.1064812"],["-122.3328193","41.1069475"],["-122.3318865","41.1074586"],["-122.3305028","41.1082209"],["-122.3285784","41.1092833"],["-122.3279114","41.109665"],["-122.3276035","41.1098535"],["-122.3273663","41.1100041"],["-122.3272512","41.1100876"],["-122.3270971","41.1102146"],["-122.3269618","41.11034"],["-122.3267991","41.1105187"],["-122.3266591","41.1106974"],["-122.3265636","41.1108473"],["-122.3264899","41.1109879"],["-122.3264177","41.1111614"],["-122.3263573","41.1113369"],["-122.3263176","41.1114956"],["-122.3262918","41.1116439"],["-122.3262829","41.1117389"],["-122.3262887","41.1119973"],["-122.3263055","41.1122267"],["-122.3263239","41.1123555"],["-122.3263487","41.1124619"],["-122.3264234","41.1126882"],["-122.3267521","41.1134513"],["-122.3274807","41.1151277"],["-122.3275632","41.1153671"],["-122.3276491","41.1156759"],["-122.3277064","41.1159415"],["-122.32789","41.1172534"],["-122.3279533","41.117758"],["-122.3279898","41.1181035"],["-122.3280221","41.118502"],["-122.3280059","41.1188294"],["-122.3279598","41.1191545"],["-122.3279089","41.1193567"],["-122.3278052","41.1196598"],["-122.3277383","41.1198281"],["-122.3276258","41.1200443"],["-122.3274664","41.1203279"],["-122.3271892","41.1207174"],["-122.3266458","41.1214729"],["-122.3262209","41.1221713"],["-122.3251202","41.124068"],["-122.3249673","41.1243335"],["-122.324332","41.1254436"],["-122.324","41.1260371"],["-122.323905","41.1262086"],["-122.3232128","41.1274386"],["-122.3229912","41.1279254"],["-122.3228169","41.1283405"],["-122.3226843","41.1287043"],["-122.3225432","41.1291416"],["-122.3224481","41.1294664"],["-122.3223807","41.1297111"],["-122.3223307","41.1298881"],["-122.3222658","41.1301534"],["-122.3221692","41.1305745"],["-122.3221096","41.1308954"],["-122.3220627","41.1312933"],["-122.3219461","41.1324075"],["-122.3215327","41.1356317"],["-122.3214625","41.1361602"],["-122.3214394","41.1362922"],["-122.3213837","41.136522"],["-122.3213256","41.1367402"],["-122.3212569","41.136934"],["-122.3211623","41.1371356"],["-122.3210099","41.1374045"],["-122.3208608","41.137634"],["-122.3205602","41.138046"],["-122.3186638","41.140513"],["-122.3183898","41.1409068"],["-122.3182918","41.1410753"],["-122.3181561","41.1413755"],["-122.3180646","41.141643"],["-122.3180026","41.1418467"],["-122.3179651","41.1419961"],["-122.3179273","41.1422464"],["-122.3176678","41.1443336"],["-122.3174407","41.1456144"],["-122.317359","41.1459782"],["-122.3172682","41.1462994"],["-122.3170893","41.1467871"],["-122.3169554","41.1470697"],["-122.3168699","41.1472289"],["-122.3167865","41.147366"],["-122.3165994","41.1476276"],["-122.3163784","41.1479088"],["-122.3162277","41.1480816"],["-122.3154823","41.1487714"],["-122.3152946","41.1489202"],["-122.3150734","41.1490742"],["-122.3147243","41.149288"],["-122.3143121","41.1495176"],["-122.3139265","41.1497092"],["-122.3135766","41.1498549"],["-122.3117787","41.1503593"],["-122.3088096","41.1511723"],["-122.3081898","41.151332"],["-122.3079325","41.1513821"],["-122.3074547","41.1514501"],["-122.3071274","41.1514826"],["-122.3068394","41.1514985"],["-122.3065557","41.1515077"],["-122.3062865","41.1515074"],["-122.3059911","41.1514991"],["-122.3057177","41.151476"],["-122.3045415","41.151318"],["-122.3039852","41.1512525"],["-122.3036256","41.151222"],["-122.3033602","41.151211"],["-122.303089","41.1512152"],["-122.3028834","41.1512281"],["-122.3026311","41.1512593"],["-122.3022996","41.1513215"],["-122.3017576","41.1514517"],["-122.2984353","41.1524378"],["-122.296796","41.1529365"],["-122.2965666","41.1530162"],["-122.2963706","41.1530986"],["-122.296145","41.1532034"],["-122.2959607","41.1532975"],["-122.2957523","41.1534204"],["-122.2955387","41.1535576"],["-122.2953107","41.1537263"],["-122.2951419","41.153866"],["-122.2949723","41.1540284"],["-122.2948257","41.1541862"],["-122.2947038","41.1543365"],["-122.294564","41.1545253"],["-122.2944439","41.1547422"],["-122.2943263","41.1550014"],["-122.2942447","41.1552219"],["-122.2942052","41.1553533"],["-122.2941665","41.1555571"],["-122.2941359","41.155747"],["-122.2941212","41.1558834"],["-122.2941175","41.1560599"],["-122.2941407","41.1563463"],["-122.2941617","41.1565322"],["-122.2941866","41.1566532"],["-122.2942398","41.1568396"],["-122.2942971","41.1570003"],["-122.2943925","41.1572048"],["-122.2945701","41.1575265"],["-122.2952991","41.1587793"],["-122.2957519","41.1595484"],["-122.2969833","41.1617299"],["-122.2971916","41.1621445"],["-122.2973129","41.1624531"],["-122.2974455","41.1628349"],["-122.2975222","41.1632396"],["-122.297557","41.1637341"],["-122.2975455","41.1640345"],["-122.2975565","41.1646711"],["-122.2976246","41.1671293"],["-122.2976408","41.1678544"],["-122.2976699","41.1688647"],["-122.2977019","41.1699186"],["-122.2977107","41.1702806"],["-122.2977154","41.1707386"],["-122.2977031","41.1711464"],["-122.2976644","41.1714679"],["-122.2976059","41.171827"],["-122.2975684","41.1720194"],["-122.2974983","41.1722646"],["-122.2974336","41.1724788"],["-122.2973368","41.1727628"],["-122.2970849","41.1733278"],["-122.2966272","41.1741625"],["-122.2962319","41.1747388"],["-122.2952305","41.1760616"],["-122.2945475","41.1769567"],["-122.2910692","41.1814764"],["-122.2908751","41.1817492"],["-122.2903816","41.1823895"],["-122.2897491","41.183192"],["-122.2890712","41.1840469"],["-122.2874613","41.186089"],["-122.2872235","41.1863896"],["-122.2870112","41.1866696"],["-122.2868441","41.1869189"],["-122.2866622","41.1872101"],["-122.2864996","41.1875155"],["-122.2863273","41.1878583"],["-122.2862367","41.188069"],["-122.2861547","41.1882764"],["-122.2860033","41.1887068"],["-122.2856857","41.1896631"],["-122.2850577","41.191609"],["-122.2846554","41.1929146"],["-122.284413","41.1936639"],["-122.2839983","41.194601"],["-122.2838504","41.1948727"],["-122.2837518","41.1950415"],["-122.2836257","41.1953219"],["-122.2835055","41.1954852"],["-122.2832789","41.1957737"],["-122.2831336","41.1959296"],["-122.2827906","41.19624"],["-122.2821263","41.1968297"],["-122.2818063","41.1971075"],["-122.2791395","41.199448"],["-122.2787557","41.1997981"],["-122.2785789","41.1999823"],["-122.2784233","41.200167"],["-122.2783063","41.2003197"],["-122.278198","41.2004762"],["-122.2780865","41.2006556"],["-122.2779972","41.2008078"],["-122.2779407","41.2009256"],["-122.2778312","41.2011671"],["-122.2777788","41.2013192"],["-122.2777301","41.2014722"],["-122.2776273","41.2020015"],["-122.2775472","41.2024856"],["-122.277467","41.2029956"],["-122.277353","41.2037218"],["-122.2773224","41.203903"],["-122.2773008","41.2040423"],["-122.2772713","41.2042247"],["-122.2770473","41.2052522"],["-122.2767818","41.2061966"],["-122.2756847","41.2094028"],["-122.2755519","41.2097447"],["-122.2754251","41.210058"],["-122.2753101","41.2103184"],["-122.2751838","41.2105852"],["-122.275048","41.2108462"],["-122.2743982","41.2120173"],["-122.2742571","41.2122901"],["-122.2741835","41.2124697"],["-122.2741135","41.2126552"],["-122.2740476","41.2129097"],["-122.2739627","41.2131465"],["-122.2739385","41.213419"],["-122.2739398","41.2136734"],["-122.27397","41.2140655"],["-122.2741158","41.2151014"],["-122.2743248","41.2163418"],["-122.2746377","41.2181033"],["-122.2747036","41.2184686"],["-122.2747463","41.218715"],["-122.2748403","41.2192581"],["-122.274878","41.219486"],["-122.2749107","41.2196959"],["-122.2749653","41.2199882"],["-122.2750977","41.2206252"],["-122.2753247","41.2220244"],["-122.2753716","41.2223345"],["-122.2754111","41.2225392"],["-122.2754736","41.2229856"],["-122.2754907","41.2231394"],["-122.2755027","41.2233488"],["-122.2754499","41.2244956"],["-122.2754061","41.2259339"],["-122.2753732","41.2271576"],["-122.2753338","41.2284776"],["-122.2753244","41.2287193"],["-122.2753033","41.2289885"],["-122.2752746","41.2292103"],["-122.2752422","41.2294164"],["-122.275211","41.2295649"],["-122.2751727","41.2297042"],["-122.2751204","41.2298542"],["-122.2750262","41.2300538"],["-122.2749316","41.2302884"],["-122.2747614","41.2306087"],["-122.2746589","41.2307707"],["-122.2744705","41.2310253"],["-122.2743389","41.2311876"],["-122.2741995","41.2313408"],["-122.2736467","41.2318897"],["-122.271589","41.2338907"],["-122.2713491","41.2340965"],["-122.2707774","41.2345796"],["-122.2704132","41.2348511"],["-122.2700522","41.2350971"],["-122.2691081","41.235691"],["-122.2674438","41.2366112"],["-122.2659434","41.2374397"],["-122.2651077","41.2379062"],["-122.2647168","41.2381358"],["-122.2641563","41.2385078"],["-122.2637569","41.2387891"],["-122.2633912","41.2390603"],["-122.2631337","41.2392616"],["-122.2628969","41.2394487"],["-122.2626488","41.2396667"],["-122.2624218","41.2398693"],["-122.2621669","41.2401034"],["-122.2617247","41.240541"],["-122.2612274","41.2410756"],["-122.2608889","41.2414718"],["-122.260593","41.2418399"],["-122.2602629","41.2422854"],["-122.2598798","41.2428721"],["-122.2595074","41.2434595"],["-122.2591143","41.244105"],["-122.2583622","41.2453552"],["-122.2581214","41.2457961"],["-122.2579919","41.2460814"],["-122.2579085","41.2463076"],["-122.2578138","41.2466403"],["-122.2577445","41.2469807"],["-122.2577185","41.2472151"],["-122.2577072","41.2473904"],["-122.2577069","41.2475995"],["-122.257728","41.2479397"],["-122.2577558","41.2481607"],["-122.2577879","41.2483266"],["-122.2578313","41.2484909"],["-122.2579203","41.24878"],["-122.2579892","41.2489651"],["-122.2580692","41.2491444"],["-122.2581902","41.2493813"],["-122.258321","41.2496104"],["-122.2584605","41.2498344"],["-122.2586617","41.2501168"],["-122.2588507","41.2503502"],["-122.2591315","41.2506581"],["-122.2594027","41.2509119"],["-122.2596061","41.251076"],["-122.2598651","41.2512672"],["-122.2600908","41.2514238"],["-122.2608007","41.2518705"],["-122.2612078","41.2521306"],["-122.2621629","41.2527251"],["-122.2662752","41.2551743"],["-122.2670466","41.2556042"],["-122.2678448","41.2560564"],["-122.2682354","41.2562728"],["-122.2688045","41.2565764"],["-122.2693543","41.256866"],["-122.2699934","41.2572037"],["-122.2704804","41.2575089"],["-122.2709486","41.2578033"],["-122.27135","41.2581074"],["-122.2717311","41.2584119"],["-122.2720852","41.2587216"],["-122.2723243","41.2589643"],["-122.272639","41.2593083"],["-122.2729574","41.2597037"],["-122.2731375","41.260007"],["-122.2736169","41.2608838"],["-122.2737931","41.2612396"],["-122.2739254","41.2615081"],["-122.2765192","41.2668633"],["-122.2768982","41.2676367"],["-122.2771879","41.2681792"],["-122.2773564","41.2684476"],["-122.2775543","41.2687337"],["-122.2779728","41.2692561"],["-122.2783028","41.2695959"],["-122.2788608","41.2701222"],["-122.2794114","41.2705775"],["-122.2857886","41.2756093"],["-122.286438","41.2761046"],["-122.2869218","41.2764608"],["-122.2872254","41.2766656"],["-122.2875997","41.2769022"],["-122.3032945","41.2858369"],["-122.3061724","41.2874711"],["-122.3067434","41.2878319"],["-122.307354","41.288301"],["-122.3078859","41.2887785"],["-122.3079987","41.2888951"],["-122.3083048","41.289218"],["-122.3084533","41.2894018"],["-122.3087625","41.2898034"],["-122.3089902","41.2901626"],["-122.30923","41.2905992"],["-122.3096521","41.2913955"],["-122.3114307","41.2945448"],["-122.3119552","41.2955296"],["-122.3146132","41.300287"],["-122.3198728","41.3098613"],["-122.3215291","41.312903"],["-122.3274092","41.3235987"],["-122.3315244","41.3310218"],["-122.331889","41.3316922"],["-122.3320755","41.3319464"],["-122.3325999","41.3326764"],["-122.3329638","41.3331202"],["-122.3333544","41.3335576"],["-122.3337019","41.3339046"],["-122.3344552","41.334572"],["-122.3362344","41.3362192"],["-122.3369418","41.3369481"],["-122.3376462","41.3375729"],["-122.3380965","41.3380566"],["-122.3389236","41.3391555"],["-122.3394073","41.3398356"],["-122.3405216","41.3414081"],["-122.3413074","41.3425322"],["-122.3419712","41.3434494"],["-122.3424715","41.3440298"],["-122.34298","41.344588"],["-122.3435563","41.3451473"],["-122.3440175","41.3455582"],["-122.3446223","41.3460437"],["-122.3461691","41.3472256"],["-122.347827","41.3485555"],["-122.3485766","41.3492146"],["-122.3494761","41.3500622"],["-122.3504863","41.3510187"],["-122.3514087","41.3518838"],["-122.3526814","41.352952"],["-122.3530475","41.3532272"],["-122.3533551","41.3534447"],["-122.3536094","41.3536156"],["-122.3540452","41.3539291"],["-122.3551701","41.354676"],["-122.3562452","41.3553959"],["-122.3572969","41.3562128"],["-122.3583614","41.3571061"],["-122.3623751","41.3608828"],["-122.3630011","41.3614764"],["-122.3663053","41.3645714"],["-122.3672376","41.3653955"],["-122.3680186","41.3661415"],["-122.3689003","41.3669996"],["-122.3727466","41.3711326"],["-122.3732246","41.3716301"],["-122.3733896","41.371813"],["-122.3734945","41.371944"],["-122.3736015","41.3720989"],["-122.373718","41.3722811"],["-122.3739169","41.3726057"],["-122.3740096","41.3727889"],["-122.3743694","41.3733943"],["-122.3745164","41.3736924"],["-122.3746286","41.3739484"],["-122.3747344","41.3742214"],["-122.374955","41.3749398"],["-122.3751406","41.3757728"],["-122.3752106","41.3763958"],["-122.3752198","41.3767574"],["-122.3752013","41.3772275"],["-122.3751019","41.3785137"],["-122.3750149","41.3794022"],["-122.3748213","41.3818041"],["-122.3747415","41.3833127"],["-122.3747433","41.38378"],["-122.374758","41.3845547"],["-122.3747571","41.3850163"],["-122.3747643","41.385435"],["-122.3747828","41.3860302"],["-122.3747991","41.3867786"],["-122.3748167","41.3875113"],["-122.3748531","41.3883223"],["-122.3748623","41.3889348"],["-122.3748605","41.3892889"],["-122.3748596","41.3897657"],["-122.3748805","41.3903162"],["-122.3749156","41.3905698"],["-122.3749536","41.3907746"],["-122.3750067","41.3910129"],["-122.3750841","41.3913003"],["-122.375204","41.3916688"],["-122.3753331","41.3920118"],["-122.3754585","41.3922829"],["-122.375576","41.3925145"],["-122.3756825","41.3927093"],["-122.3758145","41.3929216"],["-122.3759594","41.3931375"],["-122.3761527","41.393404"],["-122.3763763","41.3936928"],["-122.3766452","41.3939901"],["-122.3770762","41.3944261"],["-122.3772801","41.3946034"],["-122.3774395","41.3947389"],["-122.3775708","41.3948493"],["-122.3779301","41.3951156"],["-122.3781975","41.3953061"],["-122.3785563","41.3955527"],["-122.3789479","41.3958142"],["-122.3797312","41.396345"],["-122.3801504","41.3966779"],["-122.3805373","41.3970292"],["-122.3808399","41.3973343"],["-122.3810266","41.3975368"],["-122.3812131","41.3977612"],["-122.3815671","41.3982447"],["-122.3818033","41.3986062"],["-122.3819803","41.3989148"],["-122.3821298","41.3992256"],["-122.3822545","41.399519"],["-122.3823701","41.399832"],["-122.382518","41.4003177"],["-122.3826018","41.4006805"],["-122.3826617","41.4010338"],["-122.3826971","41.4013677"],["-122.3827094","41.4016707"],["-122.3827024","41.4020575"],["-122.3826818","41.4023231"],["-122.3826375","41.4026653"],["-122.3825688","41.4030216"],["-122.3825019","41.4033002"],["-122.3824256","41.4035407"],["-122.3822252","41.4040543"],["-122.3821148","41.4043009"],["-122.3820064","41.4045303"],["-122.3818887","41.4047348"],["-122.381718","41.4050132"],["-122.3815109","41.4053162"],["-122.3811745","41.4057768"],["-122.3805997","41.406601"],["-122.3803913","41.4069439"],["-122.3802115","41.4072749"],["-122.3800656","41.4075909"],["-122.3799709","41.4078205"],["-122.3798951","41.4080278"],["-122.3798221","41.4082771"],["-122.3797638","41.4084957"],["-122.3797171","41.4086997"],["-122.3796672","41.4090014"],["-122.37963","41.4093827"],["-122.3796087","41.4097903"],["-122.3796104","41.4100829"],["-122.3796265","41.4103072"],["-122.3796694","41.4106326"],["-122.3797545","41.4111129"],["-122.3798573","41.4115084"],["-122.3799548","41.4118082"],["-122.3800639","41.412116"],["-122.3802562","41.412518"],["-122.3804339","41.4128521"],["-122.380642","41.4131733"],["-122.3809203","41.4135583"],["-122.3812761","41.4140246"],["-122.3817086","41.4145863"],["-122.3818805","41.4148508"],["-122.382004","41.4150593"],["-122.3821812","41.4153765"],["-122.3823605","41.4157553"],["-122.3824773","41.4160257"],["-122.382572","41.4162863"],["-122.3826998","41.4167088"],["-122.382822","41.4171095"],["-122.3829729","41.41753"],["-122.3831997","41.4180424"],["-122.3835474","41.418643"],["-122.3839869","41.4191401"],["-122.3843803","41.4195665"],["-122.3846328","41.4198062"],["-122.3848501","41.4199848"],["-122.3850775","41.420158"],["-122.3853577","41.4203511"],["-122.3856261","41.4205258"],["-122.3858881","41.4206803"],["-122.3861807","41.4208404"],["-122.3870425","41.4212568"],["-122.3874023","41.4214083"],["-122.3877297","41.4215256"],["-122.3880407","41.4216204"],["-122.3883698","41.4217103"],["-122.388699","41.4217837"],["-122.3891035","41.4218624"],["-122.3895731","41.4219291"],["-122.3899248","41.4219684"],["-122.3915597","41.4220664"],["-122.392556","41.4221547"],["-122.3929896","41.4222162"],["-122.3937276","41.4223559"],["-122.394152","41.4224583"],["-122.3944825","41.4225469"],["-122.3947532","41.4226387"],["-122.3952341","41.4228152"],["-122.3954496","41.4229071"],["-122.3957277","41.4230407"],["-122.3959785","41.4231654"],["-122.3962925","41.4233335"],["-122.3966986","41.4235808"],["-122.3970975","41.4238579"],["-122.3973668","41.4240642"],["-122.3975524","41.4242172"],["-122.3976683","41.424322"],["-122.3979337","41.4245889"],["-122.3981612","41.4248346"],["-122.3983711","41.4250785"],["-122.3985588","41.4253335"],["-122.3987445","41.4256245"],["-122.39891","41.4259249"],["-122.399068","41.4262287"],["-122.3993984","41.4269253"],["-122.3995669","41.427247"],["-122.3997897","41.4275994"],["-122.399893","41.4277379"],["-122.4000971","41.4279744"],["-122.4002714","41.4281554"],["-122.4005076","41.4283696"],["-122.4007242","41.4285523"],["-122.400926","41.4286979"],["-122.4011722","41.4288634"],["-122.4013574","41.4289725"],["-122.4015452","41.4290735"],["-122.401814","41.4291985"],["-122.4021131","41.4293264"],["-122.4023996","41.4294284"],["-122.402691","41.4295233"],["-122.4037907","41.4297734"],["-122.4071789","41.4304899"],["-122.4082027","41.4306934"],["-122.4083643","41.4307098"],["-122.4085831","41.4307213"],["-122.4088358","41.4307291"],["-122.4091284","41.4307325"],["-122.4093917","41.4307228"],["-122.40961","41.4307067"],["-122.4098725","41.4306765"],["-122.4102275","41.4306232"],["-122.4210886","41.4288881"],["-122.4215317","41.4288639"],["-122.421892","41.4288602"],["-122.4222077","41.4288805"],["-122.4225362","41.4289105"],["-122.4228259","41.4289562"],["-122.4230783","41.4290038"],["-122.4233453","41.4290696"],["-122.4237252","41.4291915"],["-122.4246585","41.4295285"],["-122.4264929","41.430223"],["-122.4271865","41.430505"],["-122.4274569","41.4306333"],["-122.4277597","41.4308152"],["-122.4279666","41.430949"],["-122.4282455","41.4311585"],["-122.4285128","41.4313847"],["-122.4287178","41.4315828"],["-122.4289979","41.4319087"],["-122.4291804","41.4321597"],["-122.4293591","41.4324653"],["-122.4294764","41.4327208"],["-122.4296035","41.4330557"],["-122.429686","41.4333942"],["-122.4297568","41.43391"],["-122.4298466","41.4345819"],["-122.4299436","41.4351934"],["-122.4300191","41.4356053"],["-122.4300733","41.4358357"],["-122.4301726","41.4361649"],["-122.4302452","41.4363634"],["-122.4303881","41.4366926"],["-122.4305081","41.4369288"],["-122.4306936","41.4372673"],["-122.4309256","41.4376317"],["-122.4312944","41.438061"],["-122.432609","41.4392989"],["-122.4328786","41.4395236"],["-122.4333901","41.4399988"],["-122.4339908","41.4406089"],["-122.434313","41.44098"],["-122.4345317","41.44127"],["-122.4347349","41.441585"],["-122.4349247","41.4419002"],["-122.4351504","41.4422973"],["-122.4355039","41.4431214"],["-122.4360989","41.4448898"],["-122.4363121","41.4455004"],["-122.4366314","41.4461786"],["-122.4368006","41.4464967"],["-122.437001","41.4468185"],["-122.4373213","41.4472646"],["-122.437666","41.4476777"],["-122.4380293","41.4480593"],["-122.4383542","41.4483684"],["-122.4390511","41.4489419"],["-122.4408904","41.4503934"],["-122.4414711","41.4508849"],["-122.4417672","41.4511773"],["-122.4422504","41.4517131"],["-122.4425732","41.4521489"],["-122.4431066","41.4530209"],["-122.4433152","41.4534601"],["-122.4437068","41.4544991"],["-122.4457463","41.4600621"],["-122.4468965","41.4631596"],["-122.4477117","41.4652291"],["-122.4485158","41.4668347"],["-122.449524","41.4684947"],["-122.4520453","41.4722609"],["-122.4535257","41.4745152"],["-122.4562276","41.4784951"],["-122.4567317","41.4792785"],["-122.4570854","41.479876"],["-122.4574446","41.4804987"],["-122.4577624","41.4810559"],["-122.4586277","41.4827547"],["-122.4597183","41.4850488"],["-122.4601416","41.4859591"],["-122.4604766","41.4866594"],["-122.4610291","41.4878327"],["-122.4613575","41.4885135"],["-122.4619559","41.4902456"],["-122.4622687","41.4914392"],["-122.4629078","41.4941125"],["-122.4631638","41.4950929"],["-122.4633882","41.4958735"],["-122.4635454","41.4963671"],["-122.4636814","41.4967147"],["-122.464131","41.4975731"],["-122.464381","41.4979758"],["-122.4648896","41.4985541"],["-122.4651606","41.4988316"],["-122.4659925","41.4995589"],["-122.4680682","41.5013765"],["-122.4690435","41.5024154"],["-122.4695765","41.5030194"],["-122.469922","41.5034597"],["-122.4705004","41.504267"],["-122.470807","41.5047448"],["-122.4710634","41.5051982"],["-122.471331","41.505695"],["-122.4715295","41.5061276"],["-122.471702","41.5065273"],["-122.4718604","41.5069171"],["-122.4720476","41.5074947"],["-122.4721679","41.507942"],["-122.4722413","41.5082468"],["-122.4723002","41.508505"],["-122.4723603","41.508842"],["-122.4724235","41.5092395"],["-122.4724966","41.5098166"],["-122.4730495","41.514616"],["-122.4733964","41.5173796"],["-122.4735769","41.5188156"],["-122.4736739","41.5194641"],["-122.4737769","41.5200104"],["-122.473915","41.5206047"],["-122.4740744","41.5211793"],["-122.4741695","41.5214667"],["-122.4742534","41.5216834"],["-122.4743843","41.5220129"],["-122.4745609","41.5224218"],["-122.4754991","41.5245352"],["-122.4757986","41.5253676"],["-122.4761496","41.526566"],["-122.476422","41.5277182"],["-122.4765238","41.5283318"],["-122.4766846","41.5297766"],["-122.4769261","41.532167"],["-122.4771089","41.533587"],["-122.4772562","41.5342462"],["-122.4774858","41.5350155"],["-122.4775987","41.5353521"],["-122.4777279","41.5356978"],["-122.4778959","41.5361085"],["-122.4781041","41.5365752"],["-122.4785355","41.5373289"],["-122.4796798","41.5390821"],["-122.4807218","41.540681"],["-122.4812477","41.5415988"],["-122.4814667","41.5420422"],["-122.4816508","41.5424632"],["-122.4818577","41.5429628"],["-122.4820408","41.5435259"],["-122.4821703","41.5439958"],["-122.4822678","41.5443877"],["-122.4823282","41.5447074"],["-122.4824441","41.5454987"],["-122.4825802","41.5464684"],["-122.4826581","41.5469705"],["-122.4827172","41.5472507"],["-122.4827935","41.5475881"],["-122.4828963","41.5479804"],["-122.4831327","41.5487311"],["-122.4832186","41.5489654"],["-122.4833133","41.5492038"],["-122.4837804","41.5502035"],["-122.4840158","41.5506716"],["-122.4841627","41.5509314"],["-122.4843263","41.5511906"],["-122.4844725","41.5514105"],["-122.4884569","41.556913"],["-122.4886984","41.5572571"],["-122.4890414","41.5577833"],["-122.4893823","41.5583351"],["-122.4907722","41.5608979"],["-122.4968965","41.5725208"],["-122.4981524","41.5751358"],["-122.4987749","41.5765565"],["-122.5012829","41.582372"],["-122.5016251","41.5832369"],["-122.5018138","41.5838363"],["-122.5019686","41.584448"],["-122.5020985","41.585282"],["-122.5021335","41.5858121"],["-122.5021429","41.5862041"],["-122.5021065","41.5868891"],["-122.5020393","41.5879638"],["-122.502032","41.588839"],["-122.502078","41.5896431"],["-122.5021404","41.5900936"],["-122.5022295","41.5905456"],["-122.5023264","41.5909237"],["-122.502419","41.59125"],["-122.5025415","41.5915879"],["-122.5039194","41.5945884"],["-122.515181","41.6186431"],["-122.5162176","41.6205273"],["-122.5168571","41.621575"],["-122.5174824","41.6225433"],["-122.5180495","41.6233338"],["-122.5186196","41.6240895"],["-122.5199868","41.6257365"],["-122.5230224","41.6293225"],["-122.5236349","41.6300855"],["-122.5257995","41.6331453"],["-122.5334417","41.6441265"],["-122.533919","41.6448029"],["-122.5341892","41.6451386"],["-122.5344057","41.6453839"],["-122.5346643","41.6456634"],["-122.5350058","41.6459896"],["-122.5354845","41.646395"],["-122.5361846","41.6469116"],["-122.5365943","41.6471744"],["-122.536912","41.6473649"],["-122.5372486","41.6475479"],["-122.5376432","41.6477465"],["-122.5380119","41.647919"],["-122.5389711","41.6483249"],["-122.5523007","41.6535182"],["-122.555157","41.6546484"],["-122.5645946","41.658288"],["-122.5661572","41.6588232"],["-122.5671367","41.6591042"],["-122.5683466","41.6593849"],["-122.5690656","41.659545"],["-122.5714697","41.6599092"],["-122.5794744","41.6609773"],["-122.5800671","41.661038"],["-122.5806934","41.661091"],["-122.5824345","41.6611627"],["-122.590058","41.6611174"],["-122.5913561","41.661152"],["-122.5922283","41.6611927"],["-122.5936455","41.6613285"],["-122.5948059","41.6614775"],["-122.5957968","41.6616491"],["-122.5976765","41.6620217"],["-122.5986067","41.6622552"],["-122.6006495","41.6628824"],["-122.6022145","41.6634816"],["-122.6029029","41.6637657"],["-122.6037328","41.6641589"],["-122.604519","41.6645499"],["-122.6053582","41.6649916"],["-122.6099822","41.6677813"],["-122.6120957","41.6690421"],["-122.6188364","41.6730593"],["-122.6213739","41.6745675"],["-122.622054","41.6750014"],["-122.6238316","41.676232"],["-122.6319564","41.6824563"],["-122.6335997","41.6837706"],["-122.6338909","41.6840361"],["-122.6341715","41.6843013"],["-122.6344876","41.6846382"],["-122.634738","41.6849132"],["-122.6351314","41.6853698"],["-122.6355024","41.6858501"],["-122.6358542","41.6863451"],["-122.6360661","41.6866747"],["-122.6362661","41.6870033"],["-122.6364448","41.6873156"],["-122.636635","41.6876765"],["-122.6367888","41.6879998"],["-122.6369389","41.6883416"],["-122.6371136","41.6887735"],["-122.6423978","41.7024846"],["-122.6426033","41.7030521"],["-122.6427132","41.7034393"],["-122.6427791","41.7037846"],["-122.6428393","41.7041707"],["-122.6428837","41.704542"],["-122.6428984","41.7049002"],["-122.6428922","41.7051606"],["-122.64287","41.7054965"],["-122.6428451","41.7057568"],["-122.6427984","41.7060213"],["-122.6427485","41.7062784"],["-122.642638","41.7067132"],["-122.64195","41.7093691"],["-122.6415959","41.7105891"],["-122.6413716","41.7112878"],["-122.6407308","41.7130212"],["-122.6400782","41.7145621"],["-122.6388874","41.7171974"],["-122.6383381","41.7184837"],["-122.6352358","41.7255435"],["-122.6331997","41.7301037"],["-122.6325927","41.7314484"],["-122.6321115","41.7325931"],["-122.6309927","41.7351396"],["-122.6306484","41.7358769"],["-122.630445","41.7362597"],["-122.6302275","41.73664"],["-122.6301096","41.7368147"],["-122.6299631","41.7370364"],["-122.6297218","41.7373704"],["-122.6295061","41.7376539"],["-122.6292965","41.7379064"],["-122.629097","41.7381312"],["-122.6288625","41.738386"],["-122.6285776","41.7386737"],["-122.6282133","41.7390086"],["-122.6278373","41.7393375"],["-122.6264369","41.7404023"],["-122.6255429","41.7410718"],["-122.6250761","41.7414381"],["-122.6246923","41.7417832"],["-122.6244935","41.7419755"],["-122.6243419","41.7421346"],["-122.6240906","41.7424151"],["-122.6239647","41.7425636"],["-122.6237419","41.7428398"],["-122.623505","41.7431603"],["-122.6230519","41.7438467"],["-122.6226579","41.7444307"],["-122.6223863","41.7448012"],["-122.6221318","41.7451226"],["-122.6218474","41.7454515"],["-122.6214128","41.7458854"],["-122.6210239","41.7462394"],["-122.6206515","41.7465196"],["-122.6202053","41.746826"],["-122.619674","41.7471566"],["-122.6190666","41.7475174"],["-122.6178925","41.7480498"],["-122.6142911","41.7495081"],["-122.6124117","41.7504464"],["-122.6078758","41.7530788"],["-122.6057869","41.7542612"],["-122.6050055","41.7546512"],["-122.6036035","41.755221"],["-122.6024063","41.7556164"],["-122.6008199","41.7561087"],["-122.6001511","41.7563531"],["-122.5996023","41.756581"],["-122.5990061","41.756866"],["-122.5985394","41.7571283"],["-122.5959314","41.7588092"],["-122.5952233","41.7592179"],["-122.594735","41.7594693"],["-122.5942261","41.7597126"],["-122.5921164","41.7606127"],["-122.5913433","41.760961"],["-122.590861","41.7612026"],["-122.5904649","41.7614422"],["-122.59003","41.7617394"],["-122.5896987","41.7619847"],["-122.5893108","41.7622948"],["-122.5888533","41.762719"],["-122.5883567","41.7632373"],["-122.5880129","41.7636664"],["-122.5871522","41.7649136"],["-122.5861775","41.7663672"],["-122.585125","41.7679669"],["-122.5843538","41.7691188"],["-122.5838405","41.7698904"],["-122.5835844","41.7703141"],["-122.5833783","41.7707068"],["-122.5830271","41.7714706"],["-122.5828291","41.7719816"],["-122.5826694","41.7724376"],["-122.5825721","41.7727424"],["-122.5825083","41.7729949"],["-122.5824412","41.7732651"],["-122.5823712","41.7735422"],["-122.5823026","41.7739837"],["-122.5822373","41.7745151"],["-122.5821931","41.7749654"],["-122.5821814","41.7753592"],["-122.5821878","41.7758931"],["-122.5822431","41.7765605"],["-122.5823403","41.7772442"],["-122.5824691","41.7778653"],["-122.5826309","41.7784471"],["-122.5827918","41.7789815"],["-122.5835407","41.7815101"],["-122.5845947","41.7850566"],["-122.584907","41.7860341"],["-122.5849975","41.7862323"],["-122.5851348","41.7864781"],["-122.5854499","41.7869491"],["-122.5857462","41.7872927"],["-122.5859614","41.7875247"],["-122.5860895","41.7876522"],["-122.5862355","41.7877823"],["-122.5864915","41.788007"],["-122.5869619","41.7884325"],["-122.5873161","41.7887651"],["-122.5876374","41.7890748"],["-122.5877667","41.7892234"],["-122.5879071","41.7893905"],["-122.5880539","41.7896016"],["-122.5881638","41.7897829"],["-122.5882708","41.7899703"],["-122.5883531","41.7901279"],["-122.5883986","41.7902312"],["-122.5884576","41.7903618"],["-122.5885601","41.7906618"],["-122.5886089","41.790844"],["-122.5886469","41.7910537"],["-122.5886717","41.7912659"],["-122.5886893","41.7914929"],["-122.5886897","41.7917649"],["-122.5886558","41.7922136"],["-122.5885996","41.7925222"],["-122.5885151","41.7927938"],["-122.5884497","41.7929811"],["-122.5883913","41.7931488"],["-122.5883056","41.7933225"],["-122.5880514","41.793744"],["-122.5878458","41.7940363"],["-122.5874089","41.7945629"],["-122.5872492","41.7946999"],["-122.5871146","41.7948146"],["-122.5868777","41.7949897"],["-122.5865248","41.795234"],["-122.5861858","41.7954387"],["-122.5856755","41.7957068"],["-122.585003","41.7960485"],["-122.5845662","41.7962873"],["-122.5842937","41.7964522"],["-122.5841089","41.7965798"],["-122.5838798","41.7967567"],["-122.5835267","41.7970407"],["-122.5833439","41.7972093"],["-122.5830731","41.7975138"],["-122.582869","41.7977613"],["-122.5826991","41.7979928"],["-122.5825601","41.7982029"],["-122.5824652","41.7983652"],["-122.5823804","41.7985392"],["-122.5822502","41.7988496"],["-122.5821281","41.799259"],["-122.5820828","41.7994796"],["-122.5820514","41.7996937"],["-122.5820375","41.7999753"],["-122.5820398","41.8001974"],["-122.5820976","41.8010106"],["-122.5821041","41.8015131"],["-122.5820858","41.801763"],["-122.5820415","41.8020539"],["-122.5819471","41.8024092"],["-122.5818231","41.8027828"],["-122.5816542","41.803117"],["-122.5813849","41.8035177"],["-122.5812942","41.8036522"],["-122.5811545","41.8038423"],["-122.5810424","41.8039745"],["-122.5808881","41.8041435"],["-122.5806545","41.804371"],["-122.5804436","41.804552"],["-122.5802213","41.8047289"],["-122.5799116","41.804936"],["-122.5795259","41.8051621"],["-122.5791864","41.805346"],["-122.5789192","41.805475"],["-122.5785173","41.805629"],["-122.5781549","41.8057518"],["-122.5770081","41.8060762"],["-122.576075","41.8063316"],["-122.5756566","41.8064702"],["-122.575258","41.8066256"],["-122.5749","41.8067843"],["-122.5746286","41.8069262"],["-122.574366","41.8070781"],["-122.5739529","41.8073607"],["-122.5735808","41.8076474"],["-122.5732824","41.8079173"],["-122.5730398","41.8081774"],["-122.5728085","41.8084648"],["-122.5726511","41.8086851"],["-122.5725045","41.8089307"],["-122.5723021","41.8093255"],["-122.5722267","41.8094897"],["-122.5721767","41.8096222"],["-122.5721108","41.8098485"],["-122.572077","41.8100097"],["-122.5720427","41.8102298"],["-122.5720143","41.8104411"],["-122.5720045","41.8105997"],["-122.5720044","41.8107655"],["-122.5720172","41.8110792"],["-122.572061","41.8115021"],["-122.572117","41.8118627"],["-122.5721531","41.812004"],["-122.5722302","41.8122142"],["-122.5723113","41.81241"],["-122.5724648","41.8127058"],["-122.5726804","41.8130329"],["-122.572907","41.8133321"],["-122.5739594","41.8145045"],["-122.5754093","41.8161004"],["-122.5768722","41.8177156"],["-122.5772211","41.8181548"],["-122.5774736","41.8185007"],["-122.5777543","41.8189232"],["-122.5780927","41.8194867"],["-122.5783982","41.8200773"],["-122.5787086","41.820776"],["-122.5788811","41.8212413"],["-122.5790153","41.8216391"],["-122.5791225","41.8220032"],["-122.5792046","41.8223249"],["-122.5792704","41.8226171"],["-122.5793582","41.8231478"],["-122.5796565","41.8257453"],["-122.5801047","41.8298418"],["-122.5801398","41.8303924"],["-122.5801343","41.8306643"],["-122.5800963","41.8310015"],["-122.5800616","41.8311867"],["-122.5799825","41.8314774"],["-122.5798622","41.8318162"],["-122.5796939","41.8321824"],["-122.579539","41.8324821"],["-122.5794558","41.8326173"],["-122.5793475","41.8327677"],["-122.5791809","41.8329807"],["-122.5789678","41.8332182"],["-122.5787687","41.8334192"],["-122.5783659","41.833769"],["-122.5774081","41.8345629"],["-122.577248","41.8347166"],["-122.5770433","41.8349464"],["-122.5768624","41.8351911"],["-122.5766565","41.8355298"],["-122.5765019","41.8358114"],["-122.5764021","41.8360341"],["-122.576296","41.8363196"],["-122.5762029","41.8366044"],["-122.5761631","41.8367918"],["-122.5761265","41.8370363"],["-122.5761097","41.8372032"],["-122.5761083","41.8375553"],["-122.5761352","41.8378261"],["-122.576234","41.8383706"],["-122.5763137","41.8388276"],["-122.5763781","41.8392623"],["-122.576399","41.8395201"],["-122.57639","41.8398214"],["-122.5763338","41.8402138"],["-122.5762915","41.8404411"],["-122.576247","41.840601"],["-122.5761865","41.8407845"],["-122.576112","41.8409897"],["-122.5760237","41.8411983"],["-122.5759068","41.8414279"],["-122.5757588","41.8416715"],["-122.575629","41.8418639"],["-122.5755078","41.8420259"],["-122.5753581","41.8422028"],["-122.5751739","41.8423971"],["-122.5749753","41.8425993"],["-122.5748138","41.8427489"],["-122.5746262","41.8429018"],["-122.5744777","41.8430172"],["-122.5743163","41.8431303"],["-122.5739913","41.8433328"],["-122.5736617","41.843521"],["-122.5733753","41.8436636"],["-122.5729134","41.8438568"],["-122.5717373","41.8443174"],["-122.5713847","41.8444649"],["-122.5711261","41.8445867"],["-122.5708808","41.844718"],["-122.5705621","41.8449013"],["-122.570258","41.8450864"],["-122.5699559","41.8453022"],["-122.5695366","41.8456693"],["-122.5692089","41.8460225"],["-122.5690374","41.8462306"],["-122.5688309","41.8465206"],["-122.5686776","41.8467789"],["-122.5685948","41.8469477"],["-122.5684988","41.8471616"],["-122.5684226","41.8473586"],["-122.5683638","41.8475363"],["-122.5682906","41.8478326"],["-122.5682432","41.8480594"],["-122.5682121","41.8483103"],["-122.5681996","41.8484917"],["-122.5682063","41.848785"],["-122.568249","41.849184"],["-122.5683193","41.8495899"],["-122.5683955","41.8498478"],["-122.5684864","41.850077"],["-122.5687109","41.8505238"],["-122.5688269","41.8507109"],["-122.5689839","41.8509331"],["-122.5691592","41.8511597"],["-122.5699323","41.8521874"],["-122.5705349","41.852999"],["-122.5709667","41.8535918"],["-122.5711693","41.8539481"],["-122.5712946","41.8542166"],["-122.5713886","41.8544794"],["-122.5714755","41.8547519"],["-122.5715724","41.8551955"],["-122.5715924","41.8555657"],["-122.571598","41.8558715"],["-122.5715291","41.8562863"],["-122.5714629","41.8565885"],["-122.5713321","41.857055"],["-122.5712457","41.8572661"],["-122.5711562","41.857444"],["-122.5710592","41.8576293"],["-122.5709881","41.8577539"],["-122.570888","41.8579133"],["-122.5706254","41.8582694"],["-122.5704338","41.8584828"],["-122.5702394","41.8586897"],["-122.5697403","41.8590886"],["-122.5692581","41.8594152"],["-122.5680479","41.860217"],["-122.567768","41.8604184"],["-122.5674631","41.8606522"],["-122.5671815","41.860906"],["-122.5668412","41.8612396"],["-122.5664904","41.8616491"],["-122.5663274","41.8618592"],["-122.5661733","41.8620804"],["-122.5660311","41.8623003"],["-122.5659318","41.8624656"],["-122.5658056","41.8627121"],["-122.5653856","41.8636979"],["-122.5646","41.8655647"],["-122.5642351","41.8663903"],["-122.5640887","41.8666729"],["-122.5638348","41.867102"],["-122.5636433","41.8674096"],["-122.5634085","41.8677259"],["-122.5632007","41.8679813"],["-122.5628507","41.8683692"],["-122.5625617","41.8686605"],["-122.5617852","41.8693365"],["-122.560748","41.8702051"],["-122.5603163","41.8705757"],["-122.5601137","41.8707858"],["-122.5599225","41.8710237"],["-122.5597526","41.871246"],["-122.5596328","41.8714163"],["-122.5595282","41.8715976"],["-122.5594023","41.8718347"],["-122.559224","41.8722416"],["-122.5590894","41.8725826"],["-122.5589221","41.8729799"],["-122.5587518","41.8733661"],["-122.5585657","41.8737871"],["-122.5584877","41.8739826"],["-122.5583533","41.8742614"],["-122.5582464","41.8744599"],["-122.558137","41.8746857"],["-122.5578257","41.875273"],["-122.5573535","41.8760862"],["-122.5568738","41.8769149"],["-122.5564703","41.8779541"],["-122.5561642","41.8789218"],["-122.5559386","41.8798966"],["-122.5558445","41.880499"],["-122.5558132","41.8810867"],["-122.5558133","41.8820968"],["-122.5558814","41.8839306"],["-122.5559311","41.8845579"],["-122.5559994","41.8848873"],["-122.5561222","41.8852841"],["-122.5563407","41.8857627"],["-122.5566255","41.886244"],["-122.55707","41.8868158"],["-122.5597492","41.8899404"],["-122.5602852","41.89061"],["-122.5617837","41.8927"],["-122.5625244","41.8938229"],["-122.5629864","41.8946029"],["-122.5641071","41.8966267"],["-122.5643932","41.8972286"],["-122.5647796","41.898064"],["-122.5652502","41.8991285"],["-122.5655815","41.8999334"],["-122.5696911","41.9111125"],["-122.5699985","41.9118938"],["-122.5711186","41.914664"],["-122.5714889","41.915367"],["-122.5722231","41.9167086"],["-122.5724967","41.9171866"],["-122.5728107","41.9177046"],["-122.5730807","41.9181131"],["-122.5734283","41.918631"],["-122.5795957","41.9279042"],["-122.5799707","41.9285244"],["-122.5802261","41.9289831"],["-122.5803714","41.9292883"],["-122.5806507","41.9299393"],["-122.5807775","41.930269"],["-122.5810731","41.9312247"],["-122.5828882","41.9374561"],["-122.5831352","41.9382501"],["-122.5833725","41.9388827"],["-122.5836101","41.9394155"],["-122.5846518","41.9414417"],["-122.5857804","41.9436052"],["-122.5884985","41.9486999"],["-122.5898376","41.9511791"],["-122.5912938","41.953533"],["-122.5937301","41.9571557"],["-122.5940098","41.9576342"],["-122.5943257","41.958221"],["-122.594438","41.9585451"],["-122.595126","41.9602603"],["-122.5954183","41.9609193"],["-122.5959704","41.9619524"],["-122.5964035","41.9625552"],["-122.5967716","41.962984"],["-122.5971489","41.9633886"],["-122.5983151","41.9644913"],["-122.5991074","41.9652577"],["-122.5998168","41.9660388"],["-122.6007307","41.9672555"],["-122.6016186","41.9685122"],["-122.6023219","41.9695577"],["-122.6027289","41.9702771"],["-122.6030269","41.9708274"],["-122.6031549","41.9711136"],["-122.6033214","41.9715353"],["-122.6034439","41.9719102"],["-122.6048151","41.977243"],["-122.6052642","41.9788483"],["-122.6056219","41.9799034"],["-122.6059706","41.9808827"],["-122.6063866","41.9819794"],["-122.6067538","41.9829407"],["-122.6071033","41.9840989"],["-122.6071883","41.9849041"],["-122.6074356","41.9877829"],["-122.607534","41.988343"],["-122.6076579","41.9889259"],["-122.6078288","41.989586"],["-122.6082493","41.9904599"],["-122.6094453","41.9926763"],["-122.6100782","41.9939005"],["-122.6102095","41.9943554"],["-122.6102499","41.994655"],["-122.6102692","41.9949604"],["-122.6102355","41.995534"],["-122.6101326","41.9959792"],["-122.6099881","41.9966985"],["-122.6098613","41.9973728"],["-122.6098451","41.9975731"],["-122.6098435","41.9977978"],["-122.6098626","41.9979957"],["-122.6099209","41.99828"],["-122.6101374","41.9989075"],["-122.6103321","41.9993896"],["-122.6105193","41.9996984"],["-122.6106965","41.9999707"],["-122.6116338","42.001504"],["-122.6121127","42.0022603"],["-122.6123814","42.0025924"],["-122.6126492","42.0028957"],["-122.613213","42.0033774"],["-122.6136733","42.0037736"],["-122.6145334","42.0045446"],["-122.6148539","42.004878"],["-122.6150792","42.0051649"],["-122.615323","42.005441"],["-122.6154006","42.0055801"],["-122.6154709","42.0057363"],["-122.6155552","42.0059509"],["-122.6156254","42.0061847"],["-122.6156705","42.0064168"],["-122.6157003","42.0066318"],["-122.6157105","42.0068979"],["-122.6156916","42.0072369"],["-122.6154717","42.0084004"],["-122.614341","42.0136292"],["-122.6141337","42.0144361"],["-122.6140007","42.0147807"],["-122.6138368","42.0151027"],["-122.6136585","42.0153933"],["-122.6134852","42.0156525"],["-122.6133776","42.015794"],["-122.6132546","42.0159429"],["-122.6129705","42.0162497"],["-122.6120231","42.0171383"],["-122.6080639","42.0208018"],["-122.6069406","42.0218474"],["-122.6066823","42.0221077"],["-122.6064764","42.022337"],["-122.6062994","42.0225629"],["-122.6061422","42.0227804"],["-122.6059953","42.0230126"],["-122.6058185","42.0233302"],["-122.6056605","42.0236873"],["-122.6054938","42.0241382"],["-122.6025345","42.0333042"],["-122.602265","42.0339596"],["-122.6021254","42.0342258"],["-122.6019562","42.0344791"],["-122.6017312","42.0347699"],["-122.6016098","42.0349099"],["-122.6014508","42.0350694"],["-122.6004575","42.0359643"],["-122.5989616","42.0372918"],["-122.5985281","42.0376937"],["-122.5983608","42.0378886"],["-122.5982094","42.0380921"],["-122.5980897","42.0382969"],["-122.5979812","42.0385118"],["-122.5979077","42.0387255"],["-122.5978556","42.0389534"],["-122.5978349","42.0391582"],["-122.5978379","42.0393754"],["-122.5978613","42.0395955"],["-122.5979102","42.039819"],["-122.5979813","42.0400182"],["-122.5980635","42.0402056"],["-122.5981353","42.0403351"],["-122.5982697","42.0405345"],["-122.5984178","42.0407291"],["-122.5986208","42.0409311"],["-122.5988731","42.0411521"],["-122.6024304","42.043824"],["-122.6042025","42.0451675"],["-122.6044036","42.0453422"],["-122.6045856","42.0455116"],["-122.6047526","42.0456962"],["-122.6049021","42.0458842"],["-122.6050403","42.0460897"],["-122.6051589","42.0462932"],["-122.60526","42.0464956"],["-122.6055181","42.047181"],["-122.6060581","42.0486668"],["-122.606332","42.0493963"],["-122.6064186","42.04959"],["-122.6065269","42.0497945"],["-122.6066487","42.050001"],["-122.6067792","42.0501926"],["-122.6069264","42.0503859"],["-122.607094","42.0505716"],["-122.6072753","42.0507522"],["-122.6074666","42.0509216"],["-122.6077543","42.0511545"],["-122.6086906","42.0518522"],["-122.609233","42.0523262"],["-122.6094605","42.0525555"],["-122.6096051","42.0527401"],["-122.6097291","42.0529342"],["-122.6098418","42.0531412"],["-122.6099224","42.0533523"],["-122.6099844","42.0535728"],["-122.6100191","42.0537891"],["-122.6100381","42.0540204"],["-122.6100365","42.0543618"],["-122.6099729","42.0555154"],["-122.609938","42.0558924"],["-122.6098959","42.0561026"],["-122.6098403","42.0563435"],["-122.6097825","42.0565485"],["-122.609612","42.0569615"],["-122.6092444","42.0575881"],["-122.6082445","42.0590518"],["-122.6073564","42.0603396"],["-122.6070573","42.0607428"],["-122.606794","42.0610507"],["-122.6065365","42.0613258"],["-122.6062337","42.0616056"],["-122.6058278","42.0619355"],["-122.6053627","42.0622601"],["-122.6043762","42.0628716"],["-122.6024412","42.0640397"],["-122.6018626","42.0644215"],["-122.6015865","42.0646351"],["-122.6013326","42.0648997"],["-122.6011641","42.065117"],["-122.6010313","42.065325"],["-122.600949","42.0654745"],["-122.600896","42.0656406"],["-122.600845","42.0658874"],["-122.6008295","42.0660623"],["-122.6008321","42.0662728"],["-122.6008407","42.0664855"],["-122.600913","42.0667498"],["-122.6010476","42.0670542"],["-122.6016045","42.0678683"],["-122.6044826","42.0717121"],["-122.6052278","42.0727332"],["-122.6053959","42.0730145"],["-122.6054886","42.0732071"],["-122.6055605","42.0733957"],["-122.6055862","42.0735075"],["-122.6055943","42.0736362"],["-122.6056346","42.073923"],["-122.6056158","42.0741185"],["-122.6055739","42.0743018"],["-122.605495","42.0745102"],["-122.6053494","42.0747682"],["-122.6051986","42.0749575"],["-122.6049909","42.0751559"],["-122.6047528","42.0753508"],["-122.6044196","42.075574"],["-122.6033762","42.0761598"],["-122.6021505","42.076846"],["-122.6013674","42.0773185"],["-122.6010784","42.077577"],["-122.6006847","42.0780001"],["-122.6003815","42.0784663"],["-122.6001195","42.079067"],["-122.5998273","42.07997"],["-122.5994827","42.0810638"],["-122.5992758","42.0818151"],["-122.5992084","42.0821727"],["-122.5992102","42.0824357"],["-122.5992348","42.0826876"],["-122.5993038","42.0829592"],["-122.599417","42.0832357"],["-122.5996268","42.0835822"],["-122.5999649","42.0840259"],["-122.6008912","42.0851977"],["-122.6028586","42.08769"],["-122.6030197","42.0879338"],["-122.6031223","42.0881325"],["-122.6031742","42.088282"],["-122.6032061","42.0884141"],["-122.6032369","42.0887731"],["-122.6032123","42.0889973"],["-122.603131","42.0892314"],["-122.6027968","42.0900329"],["-122.6026661","42.0904057"],["-122.6026249","42.0905836"],["-122.6026084","42.0907036"],["-122.6026011","42.0908429"],["-122.6026195","42.0911671"],["-122.6026656","42.0913886"],["-122.6030017","42.0923904"],["-122.6032724","42.0931907"],["-122.6033767","42.0934246"],["-122.6034749","42.0936146"],["-122.6036736","42.0939058"],["-122.6038391","42.0940979"],["-122.6040464","42.0942744"],["-122.6042591","42.0944199"],["-122.6045553","42.0945871"],["-122.6049013","42.0947612"],["-122.6052101","42.0949047"],["-122.6055867","42.0950774"],["-122.6059702","42.0953028"],["-122.6062387","42.0954656"],["-122.6065015","42.0956599"],["-122.6066983","42.0958398"],["-122.6068693","42.0960691"],["-122.6069915","42.0963196"],["-122.6070922","42.0966613"],["-122.6071377","42.0970368"],["-122.6071334","42.0976057"],["-122.6070943","42.0981267"],["-122.6070776","42.0984063"],["-122.6070965","42.0986838"],["-122.6071323","42.0990016"],["-122.6072171","42.0994452"],["-122.6073246","42.0998561"],["-122.6074325","42.1002241"],["-122.6075586","42.1006241"],["-122.6076664","42.1009717"],["-122.607763","42.1012699"],["-122.6079438","42.1017483"],["-122.6080539","42.1019804"],["-122.6081836","42.1022274"],["-122.6083124","42.1024522"],["-122.6084771","42.1027107"],["-122.6086791","42.1029711"],["-122.6091706","42.1035197"],["-122.6094633","42.1038039"],["-122.6099163","42.1042031"],["-122.6112436","42.1053127"],["-122.6115919","42.1056518"],["-122.6117833","42.1058701"],["-122.6119232","42.1060762"],["-122.6120961","42.1064149"],["-122.612201","42.1066749"],["-122.6125978","42.1076201"],["-122.6128001","42.1080435"],["-122.6129375","42.108239"],["-122.6131757","42.1084691"],["-122.6134493","42.1086819"],["-122.6138149","42.1088787"],["-122.614331","42.1090975"],["-122.615282","42.1094594"],["-122.6163142","42.1098514"],["-122.6167491","42.1100659"],["-122.6169665","42.1102089"],["-122.6171508","42.1103498"],["-122.617343","42.1105278"],["-122.6174687","42.1106864"],["-122.6175994","42.1108692"],["-122.6177198","42.1110523"],["-122.6178761","42.1113693"],["-122.6180155","42.1116692"],["-122.6181694","42.1120049"],["-122.6182773","42.1122375"],["-122.6183795","42.1124425"],["-122.6184868","42.1126215"],["-122.6188344","42.1130737"],["-122.61899","42.1132509"],["-122.6191956","42.1134224"],["-122.6193826","42.1135615"],["-122.6195467","42.1136698"],["-122.6200473","42.1139389"],["-122.6207314","42.1143055"],["-122.6212279","42.1146057"],["-122.6214793","42.114801"],["-122.6217056","42.1149987"],["-122.6218532","42.1151461"],["-122.6219695","42.1152857"],["-122.6220997","42.1154771"],["-122.6221928","42.115651"],["-122.6224968","42.1163887"],["-122.6227567","42.1170225"],["-122.6233289","42.118478"],["-122.6235635","42.1190155"],["-122.6243167","42.1207159"],["-122.6245239","42.1211471"],["-122.6246051","42.1213014"],["-122.6248357","42.1216314"],["-122.62503","42.1218361"],["-122.6252459","42.12204"],["-122.6258287","42.1225117"],["-122.6261329","42.1227373"],["-122.6265513","42.1230485"],["-122.6272077","42.1235973"],["-122.6274485","42.1238614"],["-122.6276594","42.1241533"],["-122.6279639","42.124644"],["-122.6288697","42.1264454"],["-122.6291657","42.1270048"],["-122.6294249","42.1274521"],["-122.6300683","42.1284218"],["-122.632573","42.1316689"],["-122.6342631","42.1337789"],["-122.6349544","42.1347093"],["-122.6351208","42.1349789"],["-122.6352839","42.135297"],["-122.6353861","42.1355156"],["-122.635436","42.1357018"],["-122.635496","42.135862"],["-122.6355617","42.1360414"],["-122.6356959","42.1364827"],["-122.636315","42.1390413"],["-122.636499","42.1397017"],["-122.6367217","42.1404"],["-122.6375988","42.1427548"],["-122.6389956","42.1462982"],["-122.6393308","42.1470796"],["-122.6395288","42.1474752"],["-122.6398944","42.1480498"],["-122.6402393","42.1485026"],["-122.640541","42.1488693"],["-122.6428305","42.1511387"],["-122.6434353","42.1517852"],["-122.643938","42.1524726"],["-122.6474604","42.1576792"],["-122.6525511","42.1654111"],["-122.6562342","42.1708678"],["-122.656372","42.1710746"],["-122.6575823","42.1728741"],["-122.6579915","42.1734895"],["-122.6581789","42.1737688"],["-122.6627887","42.1805942"],["-122.6676496","42.1878469"],["-122.6678057","42.1881054"],["-122.667978","42.1883561"],["-122.6684937","42.1890998"],["-122.6695711","42.1906662"],["-122.6709218","42.1926766"],["-122.6714403","42.1934141"],["-122.6719845","42.1941485"],["-122.6721561","42.1943638"],["-122.6722918","42.19452"],["-122.6724352","42.1946773"],["-122.6726064","42.1948504"],["-122.6727989","42.1950309"],["-122.6730208","42.195228"],["-122.6733349","42.1954883"],["-122.6739609","42.1959429"],["-122.677126","42.1978309"],["-122.7064736","42.215038"],["-122.7082764","42.2160508"],["-122.7106209","42.2170215"],["-122.7362871","42.2264145"],["-122.739545","42.2276381"],["-122.7413545","42.2283959"],["-122.7431564","42.229283"],["-122.7696236","42.2427251"],["-122.7699634","42.2429341"],["-122.7705318","42.2433157"],["-122.7717827","42.2441851"],["-122.7725216","42.2447602"],["-122.8027203","42.2696576"],["-122.8041988","42.2709733"],["-122.8124605","42.2789762"],["-122.8136862","42.280174"],["-122.8144657","42.2809213"],["-122.8170781","42.2832785"],["-122.8453664","42.3085156"],["-122.8467281","42.3097072"],["-122.8474531","42.310297"],["-122.8581648","42.3180303"],["-122.8587554","42.3184574"],["-122.865308","42.3231676"],["-122.8660974","42.3237474"],["-122.8664954","42.3240566"],["-122.866941","42.3244349"],["-122.8672563","42.324738"],["-122.8676556","42.3251672"],["-122.867856","42.3254131"],["-122.868062","42.3256922"],["-122.8682826","42.3260096"],["-122.8684788","42.3263355"],["-122.8686545","42.3266705"],["-122.8687871","42.3269489"],["-122.868889","42.3271926"],["-122.8689863","42.3274546"],["-122.8749134","42.3454727"],["-122.8749926","42.3459086"],["-122.8752235","42.3469298"],["-122.8752565","42.3471219"],["-122.8752719","42.347225"],["-122.8752834","42.3473327"],["-122.875292","42.3474437"],["-122.875294","42.3475504"],["-122.875289","42.3476601"],["-122.8752799","42.3477756"],["-122.87527","42.34787"],["-122.8752523","42.3479721"],["-122.8751638","42.3483314"],["-122.8749666","42.348938"],["-122.8748693","42.3491998"],["-122.8747987","42.3494202"],["-122.8747617","42.3495533"],["-122.8747402","42.3496467"],["-122.8747227","42.3497558"],["-122.874716","42.3498564"],["-122.8747164","42.3499238"],["-122.8747199","42.3499749"],["-122.8747292","42.3500359"],["-122.8747427","42.3500893"],["-122.8747584","42.3501458"],["-122.8747756","42.3501956"],["-122.8747981","42.3502462"],["-122.8748228","42.3502975"],["-122.8748534","42.3503472"],["-122.8749669","42.3504808"],["-122.8751042","42.3506095"],["-122.8751993","42.3506981"],["-122.8753423","42.350828"],["-122.8754334","42.3509012"],["-122.8703847","42.3539481"],["-122.8698994","42.3542412"],["-122.8667496","42.356133"],["-122.8664379","42.3563154"],["-122.8662107","42.3564764"],["-122.8659312","42.3566732"],["-122.8647914","42.3574569"],["-122.8638182","42.3581595"],["-122.8635729","42.3583513"],["-122.8633772","42.358519"],["-122.8632288","42.3586616"],["-122.8631153","42.358781"],["-122.8630727","42.3588297"],["-122.8629695","42.3589616"],["-122.8628874","42.3590878"],["-122.8628149","42.3592147"],["-122.8627561","42.3593259"],["-122.8626752","42.3595357"],["-122.8626437","42.3596426"],["-122.8626144","42.3597718"],["-122.8625915","42.3599102"],["-122.8625714","42.3601184"],["-122.862565","42.3605082"],["-122.8625762","42.3617108"],["-122.8625975","42.3623151"],["-122.8626453","42.3629232"],["-122.8626998","42.3633729"],["-122.8631934","42.366359"],["-122.8634828","42.3678946"],["-122.8636201","42.3683931"],["-122.863704","42.3686544"],["-122.8638111","42.368953"],["-122.8639874","42.3693854"],["-122.8643638","42.3703268"],["-122.8647749","42.3713655"],["-122.8649321","42.3718184"],["-122.8650083","42.3720896"],["-122.8650763","42.3723907"],["-122.8651241","42.3726481"],["-122.8651906","42.3732068"],["-122.8652058","42.3735055"],["-122.865212","42.3745067"],["-122.8651041","42.4020309"],["-122.8650786","42.4050209"],["-122.865044","42.4054045"],["-122.8649896","42.4058333"],["-122.8649095","42.4062503"],["-122.8648182","42.4066319"],["-122.8646965","42.4070416"],["-122.8645531","42.4074448"],["-122.8641605","42.4083332"],["-122.8615823","42.4138161"],["-122.8613876","42.4142018"],["-122.8612516","42.4144234"],["-122.8611055","42.4146245"],["-122.8609524","42.4148211"],["-122.8607879","42.4149958"],["-122.8605906","42.4151638"],["-122.8603752","42.4153183"],["-122.8601271","42.4154664"],["-122.8598806","42.4155859"],["-122.8596132","42.4156891"],["-122.859341","42.4157718"],["-122.859061","42.4158396"],["-122.858752","42.4158861"],["-122.8584711","42.4159183"],["-122.8581167","42.4159383"],["-122.8577101","42.4159458"],["-122.8555369","42.4159262"],["-122.8553204","42.4159784"],["-122.8551787","42.416144"],["-122.8550601","42.4164153"],["-122.8548263","42.4169245"],["-122.8544528","42.4176918"],["-122.8543234","42.4180704"],["-122.8524842","42.4216358"],["-122.8516447","42.4232351"],["-122.8504931","42.4255464"],["-122.8494971","42.4274868"],["-122.8488479","42.4287364"],["-122.8486163","42.4291476"],["-122.8482569","42.4296964"],["-122.8477412","42.4304663"],["-122.8475485","42.430729"],["-122.8469117","42.4314787"],["-122.8466607","42.4317777"],["-122.8464543","42.4320014"],["-122.8461741","42.4322817"],["-122.8459275","42.432518"],["-122.8455729","42.4328485"],["-122.8452522","42.4331338"],["-122.8447556","42.433539"],["-122.8441001","42.4340485"],["-122.8435977","42.4344215"],["-122.840292","42.4369033"],["-122.8390671","42.4377957"],["-122.8288948","42.4454062"],["-122.8274019","42.4465182"],["-122.8263608","42.4473924"],["-122.8255592","42.4481066"],["-122.8244303","42.4492612"],["-122.8236286","42.4501558"],["-122.8231847","42.4506949"],["-122.8225195","42.4515646"],["-122.8223293","42.4518409"],["-122.8220908","42.4521932"],["-122.8213535","42.4533466"],["-122.8198606","42.4558028"],["-122.8197011","42.4559931"],["-122.8153048","42.4632167"],["-122.8152685","42.4634088"],["-122.814446","42.4648433"],["-122.8136446","42.4662093"],["-122.813142","42.4671801"],["-122.8128573","42.4678438"],["-122.8125998","42.4685878"],["-122.8124202","42.4691935"],["-122.8122719","42.4697496"],["-122.8121355","42.4703767"],["-122.8120182","42.471169"],["-122.8119999","42.471629"],["-122.8119813","42.4722585"],["-122.8119526","42.4754987"],["-122.8119461","42.4767357"],["-122.8119321","42.477335"],["-122.8118568","42.5009129"],["-122.8118695","42.5020645"],["-122.8118724","42.5033276"],["-122.8118661","42.5047441"],["-122.8118477","42.5082032"],["-122.811822","42.5138132"],["-122.8119046","42.5148176"],["-122.812231","42.5171341"],["-122.8124827","42.518315"],["-122.8129315","42.5200231"],["-122.8133195","42.5213987"],["-122.8140154","42.5239277"],["-122.8144014","42.5255328"],["-122.8144989","42.5266646"],["-122.8144395","42.5277596"],["-122.8142954","42.5306937"],["-122.8142765","42.531121"],["-122.8141214","42.5331328"],["-122.8140371","42.533815"],["-122.8139709","42.5340325"],["-122.8138491","42.5343518"],["-122.8129371","42.5361234"],["-122.8123104","42.5371726"],["-122.8114034","42.5391979"],["-122.8113147","42.5394382"],["-122.8112382","42.5396803"],["-122.8105208","42.5428032"],["-122.8101568","42.5455231"],["-122.8101957","42.5505024"],["-122.8102513","42.5520829"],["-122.8106054","42.5577811"],["-122.8106646","42.5581897"],["-122.8107706","42.5585777"],["-122.8135292","42.5663202"],["-122.8148103","42.5699293"],["-122.8161447","42.573746"],["-122.8163983","42.5746294"],["-122.8165143","42.5754674"],["-122.8165522","42.5763851"],["-122.8165399","42.5791458"],["-122.8165943","42.5872566"],["-122.8166182","42.5877966"],["-122.8166165","42.5891532"],["-122.8166389","42.5903497"],["-122.816863","42.5916186"],["-122.8169941","42.5919999"],["-122.8181367","42.5948506"],["-122.818377","42.5954929"],["-122.8184023","42.5956814"],["-122.8184061","42.5961819"],["-122.8183857","42.5967274"],["-122.8183896","42.5970507"],["-122.8184619","42.5973265"],["-122.8188138","42.5982507"],["-122.8190628","42.5988609"],["-122.8191161","42.599113"],["-122.8191158","42.5992861"],["-122.8190987","42.599408"],["-122.818962","42.5997012"],["-122.8186608","42.6003577"],["-122.8185349","42.6007267"],["-122.818286","42.6013796"],["-122.8180417","42.6019197"],["-122.8176778","42.6027167"],["-122.8172935","42.603573"],["-122.8169488","42.6043764"],["-122.816632","42.6050981"],["-122.8162416","42.6059088"],["-122.8160205","42.6062952"],["-122.8156128","42.6069421"],["-122.8153742","42.6072972"],["-122.8148351","42.6081137"],["-122.8143977","42.6088017"],["-122.8138947","42.6095837"],["-122.8134925","42.6101676"],["-122.8130693","42.6107723"],["-122.8128594","42.6110905"],["-122.8126204","42.6114823"],["-122.8125042","42.6117903"],["-122.8124425","42.6119874"],["-122.8123931","42.6121531"],["-122.8123374","42.6123871"],["-122.8122702","42.6127216"],["-122.8122412","42.612926"],["-122.8120474","42.6141658"],["-122.8118861","42.6150562"],["-122.8117589","42.6154802"],["-122.8116504","42.615746"],["-122.8115315","42.6160067"],["-122.811388","42.6163142"],["-122.8111392","42.6168561"],["-122.8109916","42.6171818"],["-122.8083744","42.6227573"],["-122.8082616","42.6230313"],["-122.8082127","42.6231842"],["-122.8081325","42.6234523"],["-122.8080946","42.6236009"],["-122.8077731","42.6251463"],["-122.8073611","42.6266657"],["-122.8067948","42.6286077"],["-122.8067607","42.6288797"],["-122.8068184","42.6291718"],["-122.8071094","42.6300169"],["-122.8072315","42.6305043"],["-122.8072375","42.6312744"],["-122.8073404","42.6318177"],["-122.8074219","42.6322188"],["-122.8074821","42.6324783"],["-122.8075195","42.632631"],["-122.8075591","42.6328171"],["-122.8076592","42.6334505"],["-122.8076858","42.6345823"],["-122.8077565","42.6360453"],["-122.8078885","42.6366088"],["-122.8080351","42.6371185"],["-122.8081565","42.6375511"],["-122.8081969","42.63783"],["-122.8082351","42.638155"],["-122.808269","42.638478"],["-122.808316","42.6388775"],["-122.8083816","42.6393845"],["-122.8084909","42.6400604"],["-122.808668","42.6408271"],["-122.8090281","42.6428218"],["-122.8093576","42.6447897"],["-122.8095026","42.6456139"],["-122.8095332","42.6459191"],["-122.809529","42.646214"],["-122.809509","42.6463763"],["-122.8094648","42.6465467"],["-122.8094079","42.646697"],["-122.809346","42.6468426"],["-122.8092055","42.6470387"],["-122.8089074","42.6473473"],["-122.8085537","42.6475917"],["-122.808353","42.6476978"],["-122.807894","42.6478862"],["-122.8077045","42.6479391"],["-122.8074741","42.647992"],["-122.8072265","42.6480403"],["-122.8067136","42.6481061"],["-122.8054684","42.6482305"],["-122.8016099","42.6485744"],["-122.8010364","42.6486474"],["-122.800563","42.6487224"],["-122.8001899","42.6487992"],["-122.7995186","42.6489519"],["-122.7990445","42.6490371"],["-122.7985794","42.6490796"],["-122.7982759","42.6490717"],["-122.7977929","42.6490332"],["-122.7973554","42.6489688"],["-122.7965958","42.648806"],["-122.796213","42.6487229"],["-122.7957831","42.6486286"],["-122.7954151","42.6485798"],["-122.7950556","42.6485492"],["-122.7946573","42.64855"],["-122.7934506","42.6486589"],["-122.7923207","42.6487494"],["-122.7917171","42.648838"],["-122.7915662","42.6488787"],["-122.7911996","42.6490076"],["-122.7908145","42.6491967"],["-122.7900625","42.6497625"],["-122.7893757","42.6503498"],["-122.7887906","42.650761"],["-122.7879265","42.6512327"],["-122.7856142","42.6523737"],["-122.7850907","42.6526611"],["-122.7848762","42.652829"],["-122.7846971","42.6530352"],["-122.7837576","42.6544495"],["-122.7834162","42.6552216"],["-122.7832818","42.655465"],["-122.7831295","42.6556642"],["-122.7828606","42.6559867"],["-122.7815416","42.6575626"],["-122.7811364","42.657905"],["-122.7808776","42.6580735"],["-122.7805301","42.6582262"],["-122.7801238","42.6583476"],["-122.7796577","42.6584165"],["-122.7788067","42.6583889"],["-122.7779485","42.6582827"],["-122.7759491","42.6580588"],["-122.7751929","42.6580535"],["-122.7741593","42.6581788"],["-122.7715065","42.6586551"],["-122.7688514","42.6591439"],["-122.7663756","42.6596106"],["-122.7656388","42.6598015"],["-122.7653928","42.6598572"],["-122.7652841","42.659931"],["-122.76411","42.660368"],["-122.7629202","42.6607616"],["-122.7573895","42.662329"],["-122.7570643","42.6624323"],["-122.7568342","42.6625253"],["-122.7564183","42.6627562"],["-122.7555974","42.6632776"],["-122.7551044","42.6634698"],["-122.7548838","42.663516"],["-122.7546551","42.6635444"],["-122.7544053","42.6635547"],["-122.754139","42.6635431"],["-122.7538324","42.6635034"],["-122.7536044","42.6634497"],["-122.7533968","42.6633741"],["-122.7531161","42.6632351"],["-122.7527345","42.6630103"],["-122.7520078","42.6624893"],["-122.7518002","42.662354"],["-122.7516451","42.6622697"],["-122.7514572","42.6621801"],["-122.7512342","42.662099"],["-122.7509886","42.6620207"],["-122.7505215","42.661909"],["-122.7494253","42.6616603"],["-122.7487346","42.6615233"],["-122.748326","42.6614613"],["-122.7478782","42.6614313"],["-122.7470227","42.6614217"],["-122.7461661","42.6614209"],["-122.7458467","42.6614476"],["-122.7455303","42.6615046"],["-122.7452841","42.6615751"],["-122.74502","42.6616657"],["-122.7446404","42.6618259"],["-122.7443801","42.6619592"],["-122.7441623","42.6621101"],["-122.7439394","42.6623011"],["-122.7434258","42.6628043"],["-122.743096","42.6630166"],["-122.7428089","42.6631461"],["-122.7425585","42.6632137"],["-122.7422391","42.6632641"],["-122.74009","42.6632904"],["-122.7397781","42.6632793"],["-122.7393702","42.6632117"],["-122.7388722","42.6630394"],["-122.7378211","42.6625535"],["-122.7372185","42.6622574"],["-122.7369396","42.6621003"],["-122.736566","42.6618132"],["-122.7354447","42.6609024"],["-122.7349108","42.6606094"],["-122.7346158","42.6605141"],["-122.7342597","42.6604528"],["-122.7336568","42.6604376"],["-122.733202","42.6605083"],["-122.7317529","42.6609885"],["-122.731328","42.6610702"],["-122.73106","42.6610765"],["-122.7307798","42.6610459"],["-122.7305305","42.6609841"],["-122.7302719","42.6608526"],["-122.7290326","42.660102"],["-122.7277804","42.6595109"],["-122.7271952","42.6593232"],["-122.7266083","42.6591229"],["-122.7230208","42.6574663"],["-122.7225653","42.6573114"],["-122.7223295","42.6572751"],["-122.72208","42.6572632"],["-122.7218299","42.6572653"],["-122.7215958","42.6572964"],["-122.7213308","42.6573674"],["-122.72064","42.6576682"],["-122.7201362","42.6579493"],["-122.7198082","42.6580946"],["-122.7192968","42.658266"],["-122.7185695","42.6584985"],["-122.7179614","42.6587065"],["-122.7175624","42.6588676"],["-122.7172188","42.6590308"],["-122.7167886","42.6592564"],["-122.7164126","42.6594514"],["-122.7160494","42.6595629"],["-122.7156652","42.6596266"],["-122.7149333","42.6596826"],["-122.7143968","42.6597395"],["-122.7131769","42.6599323"],["-122.7121225","42.6601001"],["-122.7116393","42.6601546"],["-122.7113918","42.6601511"],["-122.7110844","42.6601214"],["-122.7107919","42.660073"],["-122.7105239","42.6599995"],["-122.7086051","42.6592756"],["-122.7081506","42.6591297"],["-122.7077079","42.6590209"],["-122.7072769","42.6589432"],["-122.7068573","42.6588814"],["-122.7065625","42.6588502"],["-122.7062839","42.6588638"],["-122.7058885","42.6589225"],["-122.7053638","42.6590527"],["-122.7048984","42.6591986"],["-122.7039996","42.6595887"],["-122.7028724","42.6601955"],["-122.7025559","42.6603163"],["-122.7022588","42.6603606"],["-122.7016199","42.660387"],["-122.7009572","42.6603635"],["-122.7001084","42.6601797"],["-122.6992997","42.6599446"],["-122.6973853","42.6592576"],["-122.6954116","42.6585108"],["-122.6905927","42.6568467"],["-122.6895878","42.6565582"],["-122.6885713","42.6563829"],["-122.6880525","42.6563611"],["-122.6875057","42.6564107"],["-122.686509","42.6565753"],["-122.6858221","42.6567676"],["-122.6849004","42.6571484"],["-122.683618","42.6580089"],["-122.6815635","42.6594657"],["-122.6796615","42.6608494"],["-122.6758854","42.6635536"],["-122.6753358","42.6638256"],["-122.6749268","42.6639601"],["-122.6744566","42.6640844"],["-122.6740197","42.664123"],["-122.6734832","42.6641469"],["-122.6721949","42.6640437"],["-122.6708791","42.6639098"],["-122.66974","42.6638031"],["-122.6690367","42.6637761"],["-122.6682961","42.6638161"],["-122.6672421","42.6639682"],["-122.6647278","42.6644509"],["-122.6639175","42.66458"],["-122.6634635","42.6646204"],["-122.663045","42.6646258"],["-122.6626675","42.6646002"],["-122.6621453","42.6645287"],["-122.6613452","42.6643727"],["-122.6596824","42.6640214"],["-122.6542314","42.6629389"],["-122.6531038","42.6627563"],["-122.6524077","42.6627398"],["-122.6502054","42.6628489"],["-122.6469146","42.6630612"],["-122.646307","42.6631445"],["-122.6459166","42.6632786"],["-122.6455227","42.6634216"],["-122.6452437","42.6635504"],["-122.6449781","42.6636872"],["-122.6446827","42.6639131"],["-122.644401","42.6641602"],["-122.6441415","42.6644709"],["-122.6439699","42.6647628"],["-122.6438347","42.6650892"],["-122.6437327","42.6654731"],["-122.6437056","42.6658563"],["-122.6436796","42.6663635"],["-122.6436255","42.6672496"],["-122.6435631","42.6676707"],["-122.6434835","42.6679578"],["-122.6433395","42.6683131"],["-122.6431207","42.6686526"],["-122.6428939","42.6689089"],["-122.6426236","42.6691521"],["-122.642207","42.6694148"],["-122.6351401","42.6729904"],["-122.6344176","42.6733008"],["-122.6339239","42.6734575"],["-122.6331392","42.6736217"],["-122.6264832","42.6742844"],["-122.6249146","42.6744898"],["-122.6241939","42.67465"],["-122.6235504","42.6748329"],["-122.6229247","42.6750528"],["-122.6224476","42.6752785"],["-122.6219685","42.6755515"],["-122.6215162","42.6758431"],["-122.6207431","42.6764743"],["-122.6160151","42.6805781"],["-122.6133132","42.6828547"],["-122.6117703","42.6841985"],["-122.6104133","42.685397"],["-122.6094554","42.6860465"],["-122.6086192","42.6864974"],["-122.6077753","42.6869252"],["-122.6057122","42.6876687"],["-122.6027424","42.6887812"],["-122.6019475","42.6891586"],["-122.6013902","42.6895131"],["-122.6010799","42.6898092"],["-122.6008576","42.6901116"],["-122.6006738","42.6903792"],["-122.600565","42.6905996"],["-122.600519","42.6908363"],["-122.600487","42.6910589"],["-122.6004666","42.691584"],["-122.600473","42.6921974"],["-122.6009256","42.6968287"],["-122.6009687","42.6971754"],["-122.6013524","42.6995521"],["-122.601344","42.7001318"],["-122.6012817","42.7003756"],["-122.6010776","42.7006548"],["-122.5998845","42.701894"],["-122.5980875","42.7035469"],["-122.5976693","42.7038207"],["-122.5972361","42.703939"],["-122.5962151","42.7040352"],["-122.5932791","42.7042687"],["-122.5911705","42.7045033"],["-122.5907379","42.7045788"],["-122.5903034","42.7047063"],["-122.589954","42.7049083"],["-122.589767","42.7050371"],["-122.5896527","42.7052022"],["-122.5895405","42.7054342"],["-122.5894554","42.7056733"],["-122.5893858","42.7059357"],["-122.589329","42.7065036"],["-122.5891881","42.7069879"],["-122.5890463","42.7073443"],["-122.5889338","42.7075768"],["-122.5887267","42.7079539"],["-122.5885157","42.7081586"],["-122.5883709","42.7082935"],["-122.5882088","42.7084266"],["-122.5880732","42.7085347"],["-122.5878379","42.7087057"],["-122.5869488","42.7091155"],["-122.5864159","42.7092442"],["-122.5862505","42.709277"],["-122.5853751","42.7093467"],["-122.5847985","42.7093262"],["-122.5835307","42.709324"],["-122.5831906","42.7093347"],["-122.5829786","42.70935"],["-122.5828148","42.7093691"],["-122.5826145","42.7093978"],["-122.5823753","42.7094358"],["-122.5820973","42.7094875"],["-122.5818652","42.7095381"],["-122.5813201","42.7096812"],["-122.5810334","42.7097707"],["-122.5808165","42.7098459"],["-122.5805898","42.7099305"],["-122.5801097","42.7101479"],["-122.579559","42.7104152"],["-122.5681188","42.7161071"],["-122.567387","42.7164564"],["-122.5668925","42.7166506"],["-122.5664709","42.7167899"],["-122.5660317","42.7169054"],["-122.5655021","42.7170176"],["-122.5643005","42.7171831"],["-122.5364172","42.7207222"],["-122.5355971","42.7208668"],["-122.5346709","42.7211521"],["-122.5337606","42.7214855"],["-122.5328521","42.7219582"],["-122.5322776","42.7223344"],["-122.5312894","42.723127"],["-122.5233413","42.7299554"],["-122.5207978","42.7321116"],["-122.5133264","42.7384974"],["-122.5116565","42.7399172"],["-122.509131","42.7420723"],["-122.5014345","42.7486635"],["-122.4990445","42.7507144"],["-122.4927231","42.7561197"],["-122.4906786","42.757877"],["-122.490016","42.7584665"],["-122.489561","42.7589976"],["-122.4892522","42.759452"],["-122.4889358","42.7599739"],["-122.4886504","42.7605929"],["-122.4884328","42.7612971"],["-122.4883292","42.7617796"],["-122.4883017","42.762218"],["-122.4881958","42.7644094"],["-122.488091","42.7667606"],["-122.4880722","42.7682867"],["-122.4879455","42.7702929"],["-122.4877997","42.7730267"],["-122.4875005","42.7747408"],["-122.48723","42.7756969"],["-122.4862058","42.7778555"],["-122.4783124","42.7922473"],["-122.4778335","42.793171"],["-122.4776555","42.7936682"],["-122.4770028","42.7958077"],["-122.4768165","42.7971483"],["-122.4768794","42.7997194"],["-122.4772746","42.8016537"],["-122.480236","42.8119368"],["-122.4808332","42.8140294"],["-122.4833873","42.8231938"],["-122.4840013","42.8255943"],["-122.4844812","42.8290926"],["-122.4847606","42.8319502"],["-122.4847855","42.8332437"],["-122.48472","42.8339792"],["-122.484461","42.8349976"],["-122.4843066","42.835479"],["-122.4841209","42.8359095"],["-122.4833017","42.838208"],["-122.4804016","42.8460762"],["-122.4801739","42.8468918"],["-122.4789626","42.8500562"],["-122.4788474","42.8502822"],["-122.4786781","42.8505763"],["-122.4780175","42.8515238"],["-122.4770599","42.8526101"],["-122.4746941","42.855111"],["-122.4690001","42.8610735"],["-122.4662531","42.8639688"],["-122.465941","42.8643502"],["-122.4657967","42.8645992"],["-122.4652383","42.8659376"],["-122.4641675","42.8688255"],["-122.4617861","42.8751987"],["-122.4607175","42.8782292"],["-122.4605131","42.8789004"],["-122.4604097","42.8795238"],["-122.4599447","42.8832694"],["-122.4595243","42.8847329"],["-122.4580819","42.8870192"],["-122.4551955","42.8913209"],["-122.4544044","42.8926362"],["-122.4530493","42.8945645"],["-122.4509883","42.8976863"],["-122.4478192","42.9024517"],["-122.4472288","42.9033655"],["-122.4471312","42.9034988"],["-122.4469889","42.9037759"],["-122.4468339","42.9041481"],["-122.4466197","42.9045071"],["-122.4459465","42.9053168"],["-122.4454467","42.9060267"],["-122.4451234","42.9066464"],["-122.4447667","42.9071158"],["-122.4442527","42.9079218"],["-122.4439256","42.9083591"],["-122.4436233","42.9087185"],["-122.4433028","42.9090862"],["-122.442762","42.909399"],["-122.4423989","42.9095864"],["-122.4419968","42.9097017"],["-122.4410933","42.9099342"],["-122.4405802","42.9100985"],["-122.4403193","42.9101953"],["-122.4400707","42.9102931"],["-122.4394923","42.9105483"],["-122.4391991","42.9106995"],["-122.4388566","42.9108865"],["-122.4384592","42.9111248"],["-122.4381852","42.9113074"],["-122.4379418","42.9114925"],["-122.4377003","42.9116977"],["-122.4372394","42.9121955"],["-122.4359612","42.9137463"],["-122.4345059","42.915467"],["-122.4317575","42.9187237"],["-122.4309014","42.9194087"],["-122.430118","42.9200173"],["-122.4293219","42.9211971"],["-122.4278581","42.9245535"],["-122.4273164","42.9251509"],["-122.4262303","42.9256329"],["-122.4238775","42.9276625"],["-122.4236295","42.9280103"],["-122.4234443","42.9284"],["-122.4227963","42.9299945"],["-122.4222737","42.9313624"],["-122.4220368","42.9320806"],["-122.4218668","42.9326242"],["-122.4217086","42.9331403"],["-122.4216044","42.9335632"],["-122.4215239","42.9341649"],["-122.4215123","42.9347755"],["-122.4213922","42.9352502"],["-122.4210567","42.9357261"],["-122.420424","42.9363868"],["-122.420026","42.937062"],["-122.4196249","42.9382241"],["-122.4192558","42.9394797"],["-122.4188049","42.9406797"],["-122.4178943","42.9418546"],["-122.4135005","42.9459289"],["-122.4114492","42.9478652"],["-122.4097514","42.9500665"],["-122.3989668","42.9662326"],["-122.3982067","42.9673712"],["-122.3978775","42.968535"],["-122.3978674","42.9704067"],["-122.3980683","42.9744394"],["-122.398131","42.9770604"],["-122.3982651","42.9798705"],["-122.3981004","42.980721"],["-122.3973048","42.9819706"],["-122.3972758","42.9825115"],["-122.397312","42.9828569"],["-122.397607","42.9835432"],["-122.3980548","42.9840547"],["-122.398779","42.9855908"],["-122.3986209","42.9861736"],["-122.3971801","42.9874951"],["-122.3963214","42.9881918"],["-122.3957116","42.9887101"],["-122.3952129","42.988982"],["-122.3946738","42.9890747"],["-122.3930761","42.9890208"],["-122.3923924","42.9890429"],["-122.3919332","42.9891461"],["-122.3914034","42.9893598"],["-122.3907811","42.9897333"],["-122.3900146","42.9907612"],["-122.3895419","42.9911761"],["-122.3889644","42.9914743"],["-122.3885985","42.9917601"],["-122.38824","42.9921619"],["-122.3876311","42.9934963"],["-122.3870273","42.9946897"],["-122.3858748","42.9968465"],["-122.3855486","42.9975893"],["-122.3845803","42.9993856"],["-122.3780892","43.0124896"],["-122.3761766","43.0163207"],["-122.3748403","43.0189762"],["-122.3733482","43.0219345"],["-122.3727041","43.0229344"],["-122.3721562","43.0234147"],["-122.3713467","43.0239327"],["-122.3704699","43.0244892"],["-122.3693962","43.025266"],["-122.3688547","43.0258439"],["-122.3686379","43.0262226"],["-122.3684579","43.0266157"],["-122.3682968","43.0273046"],["-122.3682286","43.0278107"],["-122.3680425","43.0280995"],["-122.3677386","43.0284654"],["-122.3674482","43.0287868"],["-122.3671754","43.0291042"],["-122.3670257","43.0293682"],["-122.3669313","43.0296668"],["-122.3669422","43.0299605"],["-122.3669902","43.0302563"],["-122.3670484","43.0305589"],["-122.36721","43.0310228"],["-122.3673846","43.031923"],["-122.3674415","43.0323702"],["-122.3674719","43.0327423"],["-122.3674236","43.0333817"],["-122.3674158","43.0338543"],["-122.3674396","43.0345675"],["-122.3673229","43.0348688"],["-122.3671962","43.0351546"],["-122.3670196","43.0354116"],["-122.366703","43.0356922"],["-122.3664837","43.0358244"],["-122.3662987","43.0359087"],["-122.3658789","43.0360382"],["-122.3653794","43.0360922"],["-122.3646118","43.0361085"],["-122.3617655","43.0361569"],["-122.3607532","43.0361933"],["-122.3597056","43.0362695"],["-122.3592395","43.0363413"],["-122.3588324","43.0364468"],["-122.3585066","43.0365778"],["-122.3582813","43.0366888"],["-122.358076","43.0368141"],["-122.3578628","43.0369776"],["-122.3575663","43.0373301"],["-122.3573167","43.0376836"],["-122.3572012","43.03796"],["-122.3571785","43.038245"],["-122.3571798","43.0390365"],["-122.3570929","43.039329"],["-122.3569159","43.0395998"],["-122.3559215","43.0405727"],["-122.3535995","43.0426973"],["-122.3533697","43.0433088"],["-122.3536999","43.0449311"],["-122.353421","43.04598"],["-122.3528656","43.0467817"],["-122.3523633","43.0472125"],["-122.3519207","43.0475428"],["-122.3513635","43.0478373"],["-122.3509934","43.0480184"],["-122.3504377","43.0482442"],["-122.3493396","43.0487306"],["-122.34855","43.0494052"],["-122.3481738","43.0505056"],["-122.3485631","43.0519455"],["-122.3482071","43.0532344"],["-122.3476132","43.0545261"],["-122.3457833","43.0582961"],["-122.3452757","43.0591232"],["-122.3444378","43.0603529"],["-122.3364526","43.0716909"],["-122.3336453","43.0740532"],["-122.3274097","43.0790241"],["-122.3176578","43.0867221"],["-122.3146071","43.0889929"],["-122.3135524","43.0894606"],["-122.312764","43.0896781"],["-122.3118406","43.0898239"],["-122.2491326","43.0899541"],["-122.2440621","43.0905558"],["-122.2370708","43.0910071"],["-122.2173603","43.0911184"],["-122.2137339","43.0913968"],["-122.208004","43.0920311"],["-122.2067269","43.0923897"],["-122.1684566","43.1151432"],["-122.165634","43.1167008"],["-122.1640977","43.1173376"],["-122.1439875","43.1246344"],["-122.1416549","43.1253472"],["-122.1410712","43.1255322"],["-122.1393803","43.1259682"],["-122.1344145","43.1270063"],["-122.1339853","43.1270449"],["-122.1336295","43.1270231"],["-122.1330676","43.1268915"],["-122.1324581","43.1265304"],["-122.133785","43.1250651"],["-122.1341546","43.1245498"],["-122.1344","43.1240492"],["-122.1346827","43.123162"],["-122.1347102","43.1220449"],["-122.133572","43.1163551"],["-122.1329522","43.1144223"],["-122.1322257","43.1126403"],["-122.131577","43.1113082"],["-122.1296363","43.1075813"],["-122.129357","43.1068648"],["-122.1292999","43.1061759"],["-122.1294401","43.1055156"],["-122.129844","43.1042358"],["-122.1302229","43.1030388"],["-122.1303973","43.1022058"],["-122.1303748","43.1016134"],["-122.1302712","43.1012431"],["-122.1300891","43.1008913"],["-122.1298508","43.1006225"],["-122.1295326","43.1003668"],["-122.1291299","43.1000667"],["-122.1285684","43.0997875"],["-122.1275692","43.0994451"],["-122.1269483","43.0991874"],["-122.12624","43.0987926"],["-122.1237619","43.0969232"],["-122.1227821","43.09618"],["-122.1222907","43.0957615"],["-122.1219613","43.0953771"],["-122.1216452","43.0947217"],["-122.1215508","43.09425"],["-122.1215822","43.0937338"],["-122.1216721","43.0932129"],["-122.1216979","43.0925204"],["-122.1216042","43.092064"],["-122.121426","43.091677"],["-122.1212011","43.0913169"],["-122.1209109","43.0909804"],["-122.1203779","43.0905839"],["-122.1196163","43.0901614"],["-122.1176668","43.0892656"],["-122.1170706","43.0888226"],["-122.1166768","43.0883897"],["-122.116553","43.0881378"],["-122.1163753","43.0877196"],["-122.1162981","43.0873827"],["-122.1163063","43.0869703"],["-122.1174955","43.0798974"],["-122.1178351","43.0782157"],["-122.118041","43.0779064"],["-122.1180985","43.0775811"],["-122.118039","43.0771998"],["-122.1180672","43.0769932"],["-122.1181154","43.076408"],["-122.1196338","43.0680064"],["-122.1198434","43.0669913"],["-122.1221345","43.0567127"],["-122.1225544","43.0545794"],["-122.1225365","43.0537767"],["-122.1223757","43.0528909"],["-122.1216786","43.0513084"],["-122.1202313","43.0487109"],["-122.1192908","43.0467549"],["-122.1188236","43.0456206"],["-122.1184222","43.0444815"],["-122.1178142","43.0423637"],["-122.1174352","43.0404086"],["-122.1173034","43.0389813"],["-122.1172304","43.0374868"],["-122.1172479","43.036039"],["-122.117359","43.0345975"],["-122.1176651","43.0326208"],["-122.1179745","43.0312645"],["-122.118323","43.0300088"],["-122.1186475","43.0290554"],["-122.1189521","43.0282523"],["-122.1198905","43.0261802"],["-122.1210429","43.0241631"],["-122.1262086","43.0164972"],["-122.1273466","43.0148365"],["-122.1321997","43.0077698"],["-122.1328808","43.0066044"],["-122.1334947","43.005386"],["-122.1339468","43.0038863"],["-122.1342148","43.0026976"],["-122.1353714","42.9975549"],["-122.1357796","42.9957486"],["-122.1358286","42.9955456"],["-122.1359003","42.9952435"],["-122.136025","42.9949481"],["-122.1362218","42.9946088"],["-122.1364282","42.9943569"],["-122.1366585","42.9941114"],["-122.137013","42.9938217"],["-122.1373742","42.993607"],["-122.1377285","42.9934348"],["-122.138163","42.9932759"],["-122.1386631","42.9931724"],["-122.1394013","42.9931008"],["-122.1402381","42.9930204"],["-122.1409219","42.9928847"],["-122.1413953","42.9927158"],["-122.1418556","42.9924988"],["-122.1422317","42.9922332"],["-122.1425358","42.9919463"],["-122.142794","42.9916595"],["-122.1430177","42.9912844"],["-122.1433895","42.9903572"],["-122.1438578","42.9892546"],["-122.1444257","42.9882558"],["-122.1455449","42.9867195"],["-122.1460285","42.986153"],["-122.14646","42.9858514"],["-122.1470985","42.9855898"],["-122.1480489","42.9852898"],["-122.1486946","42.9849764"],["-122.1490655","42.9847256"],["-122.1500474","42.9838357"],["-122.1506316","42.983495"],["-122.1514747","42.9831624"],["-122.1519693","42.9828417"],["-122.1523131","42.9824982"],["-122.1524593","42.9822066"],["-122.1525652","42.9818803"],["-122.1528682","42.9795599"],["-122.1529978","42.978495"],["-122.1530296","42.9779211"],["-122.1529943","42.9772674"],["-122.1528677","42.9761581"],["-122.1527613","42.9752061"],["-122.1527751","42.9747702"],["-122.1528683","42.9744578"],["-122.1529924","42.974196"],["-122.1532737","42.9737582"],["-122.1535249","42.9734118"],["-122.1537147","42.9729933"],["-122.1537489","42.9727255"],["-122.1537546","42.9725888"],["-122.1536916","42.9722999"],["-122.1535663","42.9720124"],["-122.1522593","42.9699015"],["-122.1519063","42.9692551"],["-122.1516986","42.9686994"],["-122.151546","42.9679314"],["-122.1514228","42.9670843"],["-122.1514338","42.9666639"],["-122.1514833","42.9664032"],["-122.1515973","42.9660567"],["-122.1518114","42.9657038"],["-122.1521664","42.9652437"],["-122.1525541","42.9648814"],["-122.1529809","42.9645852"],["-122.1532622","42.9644219"],["-122.1535698","42.9642796"],["-122.1542001","42.9640239"],["-122.1548415","42.9636761"],["-122.1553626","42.9632787"],["-122.1558076","42.9628056"],["-122.1562216","42.9623939"],["-122.1566549","42.9620823"],["-122.1569616","42.961948"],["-122.1573564","42.9618171"],["-122.15769","42.9617342"],["-122.1583451","42.9615924"],["-122.1586441","42.9614966"],["-122.158933","42.9613912"],["-122.1593081","42.9612332"],["-122.1597653","42.9610846"],["-122.1601329","42.9610164"],["-122.1606117","42.9609825"],["-122.161099","42.9609492"],["-122.1616173","42.9608693"],["-122.1619242","42.9607898"],["-122.1622876","42.9606427"],["-122.1626483","42.9604318"],["-122.1628941","42.9602274"],["-122.1631766","42.9599136"],["-122.1634273","42.959611"],["-122.1637366","42.9592621"],["-122.1639954","42.9590696"],["-122.1642698","42.958919"],["-122.1645118","42.9588188"],["-122.1647669","42.9587453"],["-122.165191","42.9586665"],["-122.1668178","42.9585467"],["-122.1673619","42.9584872"],["-122.1677269","42.9583905"],["-122.1680763","42.9582384"],["-122.1682614","42.958117"],["-122.1684658","42.9579669"],["-122.1686205","42.9577983"],["-122.1688324","42.9574236"],["-122.1692321","42.9564741"],["-122.1694041","42.9561196"],["-122.1695133","42.9559509"],["-122.1696939","42.955721"],["-122.1699155","42.9555241"],["-122.1701632","42.9553479"],["-122.1704178","42.9551842"],["-122.170899","42.9549699"],["-122.1713477","42.9548092"],["-122.1716888","42.9547252"],["-122.1720708","42.9546732"],["-122.1724712","42.9546199"],["-122.1730113","42.9545002"],["-122.173397","42.9543375"],["-122.1736143","42.9541795"],["-122.1737389","42.9540587"],["-122.173735","42.9541287"],["-122.1737245","42.9542483"],["-122.1737105","42.9543346"],["-122.1736888","42.9543884"],["-122.1736433","42.9544335"],["-122.1735889","42.9544625"],["-122.1734911","42.954484"],["-122.1733733","42.9545021"],["-122.1732048","42.9545035"],["-122.1730043","42.954508"],["-122.1724746","42.9546193"],["-122.1721049","42.9546689"],["-122.1716914","42.9547247"],["-122.1713487","42.954809"],["-122.1708976","42.9549704"],["-122.1704203","42.955183"],["-122.1701455","42.9553599"],["-122.1699186","42.9555215"],["-122.1696951","42.9557199"],["-122.1695153","42.9559483"],["-122.1694064","42.9561158"],["-122.1692283","42.9564823"],["-122.1688378","42.9574125"],["-122.1686217","42.9577964"],["-122.1684649","42.9579677"],["-122.1682664","42.9581134"],["-122.1680733","42.9582399"],["-122.1677279","42.9583901"],["-122.1673655","42.9584865"],["-122.1668106","42.9585474"],["-122.1651759","42.9586682"],["-122.1647674","42.9587451"],["-122.1645161","42.9588171"],["-122.1642623","42.9589226"],["-122.1639959","42.9590694"],["-122.163732","42.9592664"],["-122.1634284","42.9596098"],["-122.1631758","42.9599145"],["-122.1628969","42.9602247"],["-122.1626468","42.9604328"],["-122.1622906","42.9606412"],["-122.1619277","42.9607885"],["-122.1616093","42.9608708"],["-122.1610994","42.9609491"],["-122.1606038","42.9609828"],["-122.1601232","42.9610177"],["-122.1597685","42.9610836"],["-122.1593121","42.9612316"],["-122.1589281","42.9613933"],["-122.1586494","42.9614946"],["-122.1583436","42.9615928"],["-122.1576923","42.9617336"],["-122.1573483","42.9618195"],["-122.1569516","42.9619517"],["-122.1566522","42.962084"],["-122.1562156","42.9623989"],["-122.1557945","42.9628193"],["-122.1553653","42.9632763"],["-122.1548404","42.9636768"],["-122.1542145","42.9640172"],["-122.1535711","42.9642792"],["-122.153262","42.9644221"],["-122.1529751","42.964589"],["-122.1525566","42.9648795"],["-122.1521662","42.9652438"],["-122.1518081","42.9657084"],["-122.151595","42.9660619"],["-122.1514851","42.9663964"],["-122.1514337","42.9666656"],["-122.1514233","42.9670863"],["-122.1515425","42.9679119"],["-122.1516978","42.9686952"],["-122.1519088","42.9692611"],["-122.1522391","42.969868"],["-122.1535676","42.972015"],["-122.15369","42.972295"],["-122.1537547","42.9725916"],["-122.15375","42.9727138"],["-122.1537139","42.9729949"],["-122.1535278","42.9734068"],["-122.1532708","42.9737624"],["-122.1529937","42.9741934"],["-122.1528677","42.9744594"],["-122.1527751","42.9747715"],["-122.1527612","42.9752041"],["-122.15288","42.9762636"],["-122.1529944","42.9772684"],["-122.1530295","42.9779162"],["-122.152996","42.9785122"],["-122.1528483","42.9797197"],["-122.1525649","42.9818836"],["-122.1524607","42.9822031"],["-122.1523157","42.9824949"],["-122.1519722","42.9828394"],["-122.151477","42.9831613"],["-122.1506221","42.9834994"],["-122.1500562","42.9838291"],["-122.1490646","42.9847265"],["-122.1486886","42.9849797"],["-122.1480565","42.9852869"],["-122.1471174","42.9855833"],["-122.1464598","42.9858516"],["-122.1460127","42.9861708"],["-122.1455679","42.9866924"],["-122.1444209","42.9882634"],["-122.143869","42.989232"],["-122.1434104","42.9903062"],["-122.1430188","42.9912818"],["-122.1427966","42.9916561"],["-122.1425379","42.9919442"],["-122.1422355","42.9922301"],["-122.1418592","42.9924967"],["-122.1414067","42.9927111"],["-122.1409127","42.9928871"],["-122.1402343","42.9930211"],["-122.1394513","42.9930964"],["-122.1386606","42.9931727"],["-122.138162","42.9932762"],["-122.1377245","42.9934366"],["-122.1373821","42.9936027"],["-122.1370163","42.9938193"],["-122.1366651","42.9941055"],["-122.1364238","42.9943619"],["-122.1362211","42.9946097"],["-122.1360229","42.9949524"],["-122.1358999","42.9952445"],["-122.1358268","42.9955546"],["-122.1357799","42.9957471"],["-122.1353699","42.997561"],["-122.1342465","43.0025485"],["-122.133951","43.0038708"],["-122.1334962","43.0053815"],["-122.1329046","43.0065604"],["-122.1322111","43.0077521"],["-122.1273989","43.0147599"],["-122.1261421","43.0165939"],["-122.1210618","43.0241338"],["-122.1198781","43.0262055"],["-122.1189607","43.0282309"],["-122.1186355","43.0290883"],["-122.1183177","43.0300271"],["-122.1179894","43.0312069"],["-122.1176708","43.0325893"],["-122.1173592","43.0345953"],["-122.1172461","43.0360744"],["-122.1172306","43.0374919"],["-122.1173","43.03893"],["-122.1174367","43.0404192"],["-122.1178133","43.0423599"],["-122.1184106","43.0444443"],["-122.1188382","43.045658"],["-122.1192821","43.0467355"],["-122.1202621","43.048769"],["-122.1216936","43.0513372"],["-122.122374","43.0528856"],["-122.1225362","43.0537751"],["-122.1225546","43.0545767"],["-122.1221449","43.056665"],["-122.1198488","43.0669661"],["-122.119634","43.0680038"],["-122.1181161","43.0764022"],["-122.1180676","43.0769912"],["-122.1174832","43.0799611"],["-122.1163079","43.0869593"],["-122.1162983","43.0873834"],["-122.1163761","43.0877222"],["-122.1165529","43.0881376"],["-122.1166527","43.0883786"],["-122.1165769","43.0886355"],["-122.1163713","43.0888594"],["-122.1158586","43.0890076"],["-122.0296012","43.0889638"],["-121.8260626","43.0807606"],["-121.8250886","43.0807342"],["-121.8249978","43.0811572"],["-121.8248449","43.0817207"],["-121.8244873","43.0825715"],["-121.823303","43.0852904"],["-121.802498","43.1353544"],["-121.8023439","43.1356988"],["-121.7909732","43.1629553"],["-121.7865302","43.1736811"],["-121.7855974","43.1758767"],["-121.7846679","43.1781152"],["-121.7816363","43.185477"],["-121.7812574","43.1865094"],["-121.7808241","43.189796"],["-121.7791815","43.2052383"],["-121.7790924","43.2062343"],["-121.7791066","43.2071938"],["-121.7792741","43.2079281"],["-121.7795077","43.2087112"],["-121.781956","43.2138265"],["-121.7823563","43.2147575"],["-121.783213","43.216539"],["-121.784274","43.2187929"],["-121.7847964","43.2198466"],["-121.7897043","43.2301822"],["-121.7900208","43.2310461"],["-121.7901427","43.2317804"],["-121.790123","43.2325529"],["-121.7900014","43.2331724"],["-121.7887584","43.23838"],["-121.7823181","43.2610249"],["-121.7818048","43.2625314"],["-121.7811146","43.2638394"],["-121.776292","43.2719019"],["-121.7740607","43.2756295"],["-121.7700856","43.2823894"],["-121.7638328","43.2957727"],["-121.7635746","43.2965281"],["-121.7634169","43.2975413"],["-121.7633987","43.2984378"],["-121.7634985","43.2991668"],["-121.7637072","43.299935"],["-121.7674784","43.3088398"],["-121.7678277","43.3100509"],["-121.7678955","43.3109365"],["-121.7678601","43.3117472"],["-121.7677323","43.3124144"],["-121.7675248","43.3130905"],["-121.7671599","43.3138615"],["-121.7667016","43.3146244"],["-121.7661804","43.3154295"],["-121.7657109","43.3161049"],["-121.7605473","43.3238854"],["-121.7581072","43.3265957"],["-121.75754","43.3273005"],["-121.7571862","43.3280356"],["-121.7569662","43.3287575"],["-121.7568867","43.3292769"],["-121.7568805","43.3297836"],["-121.7569619","43.330282"],["-121.7570763","43.330708"],["-121.7573226","43.3312844"],["-121.7576052","43.3317823"],["-121.7579838","43.3323176"],["-121.7585594","43.3329373"],["-121.7596706","43.3340355"],["-121.7884975","43.3644052"],["-121.7895782","43.365636"],["-121.7898918","43.3661518"],["-121.7901755","43.366702"],["-121.7905786","43.3677023"],["-121.7914286","43.3698939"],["-121.7916413","43.37033"],["-121.7918895","43.3707896"],["-121.792266","43.3713392"],["-121.7929483","43.372158"],["-121.7943147","43.3735676"],["-121.796928","43.376229"],["-121.7980327","43.3772779"],["-121.8007749","43.3800388"],["-121.8013295","43.3805921"],["-121.8405447","43.4200044"],["-121.8422275","43.4214685"],["-121.8677234","43.4424936"],["-121.8689837","43.4435647"],["-121.8692678","43.443905"],["-121.8694932","43.4442499"],["-121.8697116","43.4446999"],["-121.8698448","43.4451624"],["-121.869899","43.4456026"],["-121.8698811","43.446022"],["-121.8698082","43.4464076"],["-121.8696543","43.4468576"],["-121.8694185","43.4474761"],["-121.8692871","43.447877"],["-121.8692163","43.44825"],["-121.8692016","43.4485727"],["-121.8692261","43.4488903"],["-121.8692748","43.4491943"],["-121.8693477","43.4494912"],["-121.869448","43.4497798"],["-121.8695838","43.4500842"],["-121.8697411","43.4503305"],["-121.8699289","43.4505748"],["-121.8701374","43.4508166"],["-121.8704083","43.4510827"],["-121.8827411","43.4612342"],["-121.8840111","43.4623662"],["-121.8849812","43.4633755"],["-121.8970346","43.4785325"],["-121.8980684","43.4797518"],["-121.8988171","43.4805781"],["-121.899733","43.481392"],["-121.9006126","43.4821372"],["-121.9009506","43.4824129"],["-121.9016368","43.4829621"],["-121.902775","43.4838573"],["-121.9036908","43.4844657"],["-121.9051448","43.4853251"],["-121.9268419","43.4972207"],["-121.9274107","43.4975613"],["-121.9281743","43.4980482"],["-121.929033","43.4986546"],["-121.9298354","43.4992915"],["-121.930616","43.4999785"],["-121.9311974","43.5005618"],["-121.9316314","43.5010341"],["-121.9320098","43.5014748"],["-121.9323013","43.5018355"],["-121.9329056","43.5026851"],["-121.9334029","43.503481"],["-121.933969","43.5045963"],["-121.9345831","43.5060291"],["-121.9526368","43.5499826"],["-121.9528401","43.550382"],["-121.9530719","43.550745"],["-121.9534248","43.5511768"],["-121.953839","43.5515429"],["-121.9542785","43.551851"],["-121.9552758","43.5524464"],["-121.9575596","43.553779"],["-121.9579875","43.5541196"],["-121.9582789","43.5545496"],["-121.9584392","43.5549163"],["-121.9585102","43.5553607"],["-121.9584808","43.5558258"],["-121.9584085","43.5563664"],["-121.9584135","43.5567712"],["-121.9585508","43.5572074"],["-121.9592545","43.5585363"],["-121.9598882","43.5596953"],["-121.9606272","43.5609855"],["-121.9612116","43.5617467"],["-121.9617077","43.5622602"],["-121.9623459","43.5627944"],["-121.9631967","43.563408"],["-121.9655554","43.5650026"],["-121.9664661","43.5657009"],["-121.9673545","43.5665223"],["-121.9683509","43.5675271"],["-121.9721009","43.5713445"],["-121.9736139","43.5728255"],["-121.9744267","43.5735984"],["-121.9755408","43.574573"],["-121.9779751","43.5762913"],["-121.9802408","43.577562"],["-121.9820658","43.5783133"],["-121.9851573","43.5793756"],["-121.9884782","43.5802696"],["-121.9901766","43.5807593"],["-121.9910817","43.581097"],["-121.9917463","43.5814661"],["-121.9932151","43.5823805"],["-121.993806","43.5826961"],["-121.9942721","43.5829077"],["-121.9947499","43.583048"],["-121.9953641","43.5831932"],["-121.9969325","43.5835118"],["-121.9975014","43.5836697"],["-121.9980678","43.5838887"],["-121.9986704","43.584177"],["-121.9992694","43.5845107"],["-121.9997018","43.5847478"],["-122.0000843","43.5849147"],["-122.0005183","43.5850791"],["-122.0010553","43.5852255"],["-122.0017893","43.5853752"],["-122.0079879","43.5863898"],["-122.0098217","43.5867079"],["-122.0115938","43.587036"],["-122.0135192","43.5873944"],["-122.0144696","43.5876673"],["-122.0157593","43.5882052"],["-122.0177522","43.5891885"],["-122.0220913","43.5915014"],["-122.0300662","43.5950779"],["-122.0312346","43.5956116"],["-122.0319914","43.5960165"],["-122.0325097","43.5963225"],["-122.033204","43.5967835"],["-122.0335725","43.5970704"],["-122.0408782","43.6028844"],["-122.0420309","43.6036921"],["-122.0430742","43.6042614"],["-122.0442481","43.6048086"],["-122.0453225","43.6052299"],["-122.0465183","43.6055812"],["-122.0538673","43.6074364"],["-122.0562843","43.6080594"],["-122.0566837","43.6082345"],["-122.0570473","43.6084819"],["-122.0576726","43.6090883"],["-122.0592439","43.6106907"],["-122.059765","43.6111879"],["-122.0601256","43.6114091"],["-122.0605619","43.6115841"],["-122.0610115","43.6116919"],["-122.0616953","43.6117501"],["-122.0626478","43.6117673"],["-122.0635402","43.6118083"],["-122.0640458","43.6118899"],["-122.0644614","43.6119905"],["-122.0650388","43.6121923"],["-122.0656933","43.6124871"],["-122.0667056","43.6129822"],["-122.0684669","43.6138147"],["-122.0689599","43.6141127"],["-122.0695036","43.6146433"],["-122.0696671","43.6149859"],["-122.0696973","43.6153492"],["-122.0696484","43.6156504"],["-122.0694756","43.6160033"],["-122.0691909","43.6164258"],["-122.068127","43.6178209"],["-122.0676329","43.6185207"],["-122.0674677","43.6190269"],["-122.0675018","43.6195125"],["-122.0676531","43.6198692"],["-122.0679221","43.6201745"],["-122.0682046","43.6203856"],["-122.068496","43.6205539"],["-122.0689203","43.6206899"],["-122.0693896","43.6207787"],["-122.0698454","43.6207848"],["-122.0702671","43.6207391"],["-122.0710862","43.6205442"],["-122.0795978","43.6182666"],["-122.080841","43.6179766"],["-122.0819141","43.6177552"],["-122.0859891","43.6171337"],["-122.0880515","43.6169298"],["-122.0984133","43.6163443"],["-122.0995256","43.6162508"],["-122.1003336","43.6161085"],["-122.1010746","43.6158894"],["-122.1016632","43.6156492"],["-122.1022249","43.6153615"],["-122.1029358","43.6148551"],["-122.1040347","43.6139135"],["-122.1052674","43.6129521"],["-122.1061736","43.6124685"],["-122.1074103","43.6119975"],["-122.1085966","43.6116992"],["-122.1101984","43.6115083"],["-122.1128089","43.6113152"],["-122.1162355","43.6110788"],["-122.1201683","43.6108016"],["-122.1211781","43.6107534"],["-122.1219986","43.6107896"],["-122.1225988","43.610885"],["-122.1231903","43.6110226"],["-122.1240806","43.6113515"],["-122.1246545","43.6116501"],["-122.1252302","43.6120477"],["-122.1259494","43.6126319"],["-122.1265375","43.613103"],["-122.1268688","43.6133239"],["-122.1272268","43.6134885"],["-122.1277911","43.6136564"],["-122.1283875","43.613772"],["-122.1290447","43.6138362"],["-122.1306025","43.6137291"],["-122.1310794","43.6137326"],["-122.1315683","43.6137774"],["-122.132046","43.6138419"],["-122.1325178","43.6139518"],["-122.132935","43.6140653"],["-122.1333326","43.6142331"],["-122.1338954","43.6146139"],["-122.1348632","43.6155099"],["-122.1353885","43.6161749"],["-122.1355058","43.6164726"],["-122.1355797","43.616769"],["-122.1356316","43.6171243"],["-122.1356437","43.6174653"],["-122.1355624","43.6178726"],["-122.13543","43.6182773"],["-122.1350517","43.6189732"],["-122.1349067","43.619381"],["-122.1348619","43.6196949"],["-122.1348756","43.6199077"],["-122.1349315","43.6201274"],["-122.1350464","43.6203535"],["-122.1352147","43.6205683"],["-122.1355079","43.6208406"],["-122.135749","43.6209876"],["-122.1360199","43.621104"],["-122.1363593","43.6212049"],["-122.1368593","43.6212799"],["-122.1377492","43.6213903"],["-122.1381947","43.6214943"],["-122.1386004","43.6216295"],["-122.1390393","43.6218461"],["-122.1394413","43.622114"],["-122.1397533","43.6224475"],["-122.1399771","43.622821"],["-122.1401362","43.623162"],["-122.1408065","43.6255051"],["-122.1409107","43.6257884"],["-122.1410049","43.625941"],["-122.141201","43.6262127"],["-122.1415456","43.6265055"],["-122.1423699","43.6268392"],["-122.1440706","43.6274086"],["-122.1446233","43.6277208"],["-122.1450726","43.6282241"],["-122.1454995","43.6289557"],["-122.1459932","43.6296599"],["-122.1467016","43.6301588"],["-122.1470755","43.630328"],["-122.1477302","43.6305494"],["-122.1497071","43.6311782"],["-122.152335","43.6320349"],["-122.154003","43.6326394"],["-122.1579967","43.6348292"],["-122.1606934","43.6362379"],["-122.1613244","43.6364153"],["-122.1619117","43.6364484"],["-122.1626","43.6363671"],["-122.1638312","43.6358109"],["-122.165089","43.6353492"],["-122.1663338","43.6353757"],["-122.1711309","43.6359055"],["-122.1720007","43.6360384"],["-122.1725783","43.636191"],["-122.1729182","43.6363536"],["-122.1731764","43.6365372"],["-122.1733811","43.6367334"],["-122.1735556","43.6369953"],["-122.1741844","43.6380498"],["-122.1745013","43.63853"],["-122.1748657","43.6389655"],["-122.1754589","43.6394661"],["-122.1760945","43.6398804"],["-122.1767316","43.6401654"],["-122.1777347","43.6404928"],["-122.1829386","43.64211"],["-122.1841865","43.6425692"],["-122.1850177","43.6429734"],["-122.1871031","43.6441312"],["-122.188006","43.6445998"],["-122.1890711","43.6449302"],["-122.1906759","43.6452484"],["-122.1919782","43.6455205"],["-122.1927964","43.6457938"],["-122.1933817","43.6460022"],["-122.1940259","43.646232"],["-122.1945733","43.6463896"],["-122.1950629","43.6464633"],["-122.1956231","43.6464935"],["-122.1961162","43.6464362"],["-122.1965713","43.6463117"],["-122.1971431","43.6461201"],["-122.1978842","43.6458592"],["-122.1988336","43.6455344"],["-122.1997861","43.6452816"],["-122.200438","43.6451744"],["-122.200995","43.6451399"],["-122.2015554","43.6451867"],["-122.2021223","43.6453005"],["-122.203027","43.6455912"],["-122.2064504","43.6468969"],["-122.2085513","43.647715"],["-122.2110412","43.6487215"],["-122.2121863","43.6493477"],["-122.2130007","43.6500396"],["-122.2140707","43.651038"],["-122.2147907","43.6516671"],["-122.2152783","43.6520183"],["-122.2157275","43.6523172"],["-122.2161968","43.6525858"],["-122.2166681","43.6528448"],["-122.2169985","43.653014"],["-122.2170702","43.6530502"],["-122.2277099","43.6583464"],["-122.228957","43.6589901"],["-122.2295111","43.6593281"],["-122.2300762","43.6597304"],["-122.2305858","43.6601979"],["-122.2311896","43.6609662"],["-122.2325539","43.6631798"],["-122.2327826","43.6638265"],["-122.2328853","43.6644128"],["-122.232872","43.6649809"],["-122.2328013","43.6655134"],["-122.2326491","43.6664963"],["-122.2327422","43.6674175"],["-122.2329587","43.6681283"],["-122.2332786","43.6686953"],["-122.2336813","43.6692612"],["-122.2340617","43.6697083"],["-122.2345582","43.6701364"],["-122.2369249","43.6717819"],["-122.240602","43.6742811"],["-122.2410636","43.6746554"],["-122.241448","43.6750878"],["-122.2450752","43.6804333"],["-122.2465805","43.6826426"],["-122.2470492","43.6832169"],["-122.247488","43.6836332"],["-122.2480008","43.6840804"],["-122.2485712","43.6845122"],["-122.2494307","43.6850416"],["-122.2502933","43.6854979"],["-122.2547745","43.6872297"],["-122.2566713","43.6879712"],["-122.2574046","43.6883334"],["-122.2580938","43.6887414"],["-122.258816","43.689224"],["-122.2595926","43.6898755"],["-122.2604709","43.6906334"],["-122.261227","43.6912792"],["-122.2618685","43.6917279"],["-122.2626295","43.6921851"],["-122.2767089","43.6991404"],["-122.2779311","43.6998502"],["-122.2786888","43.700418"],["-122.2793308","43.7009483"],["-122.2805568","43.702038"],["-122.2811308","43.7024651"],["-122.2820904","43.7030427"],["-122.2837958","43.7040051"],["-122.2878633","43.7062247"],["-122.2883107","43.7065387"],["-122.2887093","43.7068474"],["-122.2890158","43.7070888"],["-122.2891917","43.7072301"],["-122.2894933","43.707466"],["-122.2903735","43.7080994"],["-122.2907165","43.7083113"],["-122.2911214","43.7085227"],["-122.2915893","43.7087371"],["-122.2920782","43.7089451"],["-122.2927614","43.7091766"],["-122.2938361","43.7094566"],["-122.3005034","43.7106999"],["-122.3021","43.710993"],["-122.3031824","43.7111786"],["-122.3053177","43.7115432"],["-122.3108184","43.7126209"],["-122.3117077","43.7127751"],["-122.3122426","43.7128267"],["-122.3128394","43.7128592"],["-122.3135315","43.7128471"],["-122.314379","43.7128136"],["-122.3152865","43.7128229"],["-122.3158162","43.7128949"],["-122.3163318","43.7130335"],["-122.3173546","43.7134306"],["-122.3188452","43.714076"],["-122.3201875","43.7146525"],["-122.3211893","43.7149392"],["-122.3233794","43.7152495"],["-122.3238996","43.7153571"],["-122.3243939","43.7154878"],["-122.3249222","43.7156944"],["-122.3333066","43.7198161"],["-122.3341613","43.7201612"],["-122.3348938","43.7203554"],["-122.3355426","43.7204506"],["-122.3362552","43.720488"],["-122.3370111","43.7204589"],["-122.3381035","43.7203652"],["-122.3385925","43.7203874"],["-122.3391434","43.7204725"],["-122.3397336","43.7206739"],["-122.3410243","43.721246"],["-122.3423614","43.7218091"],["-122.3432713","43.7220749"],["-122.3443179","43.7222775"],["-122.345151","43.7223858"],["-122.3463157","43.7224182"],["-122.3479592","43.7224029"],["-122.3488759","43.7225728"],["-122.3496244","43.7228796"],["-122.3502047","43.7233222"],["-122.3507933","43.7240015"],["-122.3511359","43.7243136"],["-122.3515359","43.7245542"],["-122.351911","43.7247171"],["-122.3522656","43.7248255"],["-122.3526845","43.7248951"],["-122.3577802","43.7253186"],["-122.358923","43.725459"],["-122.3601887","43.7258136"],["-122.3650023","43.7273378"],["-122.3663127","43.7277222"],["-122.3672272","43.7279073"],["-122.3681701","43.7280388"],["-122.3688877","43.7280943"],["-122.3695614","43.7281174"],["-122.3702745","43.7280962"],["-122.3749144","43.7278667"],["-122.3756003","43.7278932"],["-122.3762198","43.7279983"],["-122.3769962","43.7282232"],["-122.3808948","43.7296733"],["-122.3824472","43.7302256"],["-122.3831222","43.7303579"],["-122.3837302","43.7304275"],["-122.3843082","43.7304455"],["-122.3850773","43.7303947"],["-122.3869869","43.7301625"],["-122.3893925","43.7298602"],["-122.3908651","43.7297109"],["-122.391811","43.7296859"],["-122.3929284","43.7297601"],["-122.4016491","43.7308991"],["-122.4043439","43.731227"],["-122.4059561","43.7313292"],["-122.4076164","43.7313119"],["-122.4103685","43.7311412"],["-122.4116967","43.7309513"],["-122.4167931","43.7299674"],["-122.4176957","43.7298887"],["-122.4184943","43.7299431"],["-122.4191499","43.7300525"],["-122.4198006","43.7301753"],["-122.4205442","43.7303097"],["-122.4214144","43.7303923"],["-122.4223374","43.7304226"],["-122.4229531","43.7303975"],["-122.4235305","43.730345"],["-122.4240092","43.7302667"],["-122.4245408","43.73016"],["-122.4253149","43.7299643"],["-122.4266169","43.7296143"],["-122.4271829","43.7294951"],["-122.4276131","43.7294371"],["-122.4288852","43.7293882"],["-122.4362163","43.7292574"],["-122.436919","43.7292864"],["-122.4379469","43.7294061"],["-122.4389734","43.7296242"],["-122.4395499","43.7297936"],["-122.4400734","43.7300016"],["-122.4406268","43.730254"],["-122.4410884","43.7304978"],["-122.4416305","43.7308378"],["-122.4421132","43.7311666"],["-122.4427718","43.7316412"],["-122.4451315","43.7333944"],["-122.4479402","43.7353335"],["-122.4494079","43.7362353"],["-122.4503986","43.7366687"],["-122.4511301","43.736958"],["-122.4518434","43.7371833"],["-122.4561824","43.738467"],["-122.4570455","43.7387294"],["-122.4574385","43.7388914"],["-122.4578126","43.7390855"],["-122.4581323","43.7393028"],["-122.4584179","43.7395243"],["-122.4586909","43.7397721"],["-122.459135","43.7402127"],["-122.4603854","43.7414142"],["-122.4608976","43.7418401"],["-122.4614836","43.7422703"],["-122.4624897","43.7428409"],["-122.4632595","43.7432061"],["-122.4641343","43.743538"],["-122.4696963","43.7453686"],["-122.4704588","43.7455196"],["-122.4711099","43.745591"],["-122.4798182","43.7461994"],["-122.4927029","43.74734"],["-122.4933688","43.7473837"],["-122.493881","43.7473886"],["-122.4944809","43.7473577"],["-122.4949765","43.747263"],["-122.4955108","43.7471281"],["-122.4974288","43.7465191"],["-122.4979687","43.7464293"],["-122.498522","43.7463918"],["-122.4991043","43.7464142"],["-122.4995702","43.7464822"],["-122.5001395","43.746629"],["-122.502783","43.747475"],["-122.5037296","43.7477263"],["-122.5042648","43.7477946"],["-122.5049498","43.7478554"],["-122.5056533","43.7478943"],["-122.506285","43.7478568"],["-122.5069293","43.7477909"],["-122.5211628","43.7447294"],["-122.5222691","43.7446679"],["-122.5234416","43.7447648"],["-122.5246776","43.7449904"],["-122.5259215","43.745396"],["-122.526822","43.7458729"],["-122.5278607","43.7465678"],["-122.5305051","43.7488972"],["-122.5317107","43.7500975"],["-122.5321818","43.7508623"],["-122.5324948","43.7515854"],["-122.5326388","43.7523328"],["-122.5326476","43.7532545"],["-122.5319792","43.7632441"],["-122.5319414","43.7641442"],["-122.5320111","43.7647388"],["-122.5321589","43.7651962"],["-122.5323575","43.7656247"],["-122.5326691","43.7660777"],["-122.5330189","43.7664735"],["-122.533864","43.7672178"],["-122.5341202","43.7674481"],["-122.5344553","43.7678083"],["-122.534639","43.7680642"],["-122.5347585","43.7682748"],["-122.5348492","43.7684761"],["-122.5349376","43.768738"],["-122.5349858","43.7690789"],["-122.5349539","43.7694233"],["-122.5348377","43.769803"],["-122.5345645","43.7703239"],["-122.5339336","43.7712592"],["-122.5330764","43.7724486"],["-122.5310004","43.7749362"],["-122.5306015","43.7754624"],["-122.5304866","43.7758365"],["-122.5303928","43.7762313"],["-122.5303287","43.7766894"],["-122.5304393","43.7771671"],["-122.5305411","43.7775724"],["-122.530718","43.7780833"],["-122.5312397","43.7788941"],["-122.5326119","43.7802304"],["-122.5335201","43.7811191"],["-122.5341273","43.7816273"],["-122.5355838","43.7823692"],["-122.5370244","43.7830395"],["-122.538081","43.783674"],["-122.5386174","43.7841592"],["-122.5399903","43.7855606"],["-122.5454354","43.7910286"],["-122.5458385","43.7914656"],["-122.5464812","43.7919931"],["-122.5470356","43.7922866"],["-122.5479891","43.792532"],["-122.5497815","43.7928912"],["-122.5510922","43.7932797"],["-122.5522009","43.7936516"],["-122.553081","43.7939713"],["-122.5538119","43.7942366"],["-122.5545969","43.7943651"],["-122.5564322","43.7946054"],["-122.5571097","43.7947314"],["-122.5588316","43.7954202"],["-122.5595979","43.795932"],["-122.5601217","43.7964741"],["-122.5608181","43.7973693"],["-122.5610056","43.7977294"],["-122.5611849","43.7981421"],["-122.5612631","43.7986066"],["-122.5612189","43.8004989"],["-122.5612315","43.8009613"],["-122.5614564","43.8017781"],["-122.5618165","43.8024426"],["-122.5621663","43.8029394"],["-122.562593","43.8034296"],["-122.5634405","43.8041299"],["-122.5664352","43.8060204"],["-122.5670278","43.8062789"],["-122.5674677","43.8064254"],["-122.5679392","43.8065351"],["-122.5685871","43.806593"],["-122.5691669","43.8065783"],["-122.5709382","43.8068649"],["-122.5722079","43.8071666"],["-122.5737445","43.8077299"],["-122.5748111","43.808266"],["-122.5756195","43.8089364"],["-122.5765574","43.8103164"],["-122.5776782","43.8113915"],["-122.5782534","43.8117372"],["-122.5786451","43.8118776"],["-122.5795531","43.8120774"],["-122.5819461","43.8126568"],["-122.5831059","43.8130491"],["-122.5857656","43.8144623"],["-122.5869642","43.8149571"],["-122.5880149","43.8152517"],["-122.5890262","43.8153539"],["-122.591782","43.8154739"],["-122.5926281","43.8155426"],["-122.5932251","43.8156243"],["-122.5941454","43.8158483"],["-122.5949044","43.8161124"],["-122.5956735","43.8164641"],["-122.5964196","43.8169059"],["-122.5977412","43.8178607"],["-122.598414","43.8183067"],["-122.5989924","43.8186056"],["-122.5996376","43.8188642"],["-122.6003983","43.8191395"],["-122.6012872","43.8194564"],["-122.6020776","43.8197542"],["-122.6027764","43.8200918"],["-122.603483","43.8205462"],["-122.6043156","43.821125"],["-122.6049182","43.8215212"],["-122.6055097","43.8218227"],["-122.6063194","43.8220963"],["-122.6076184","43.8223884"],["-122.6158109","43.824031"],["-122.619445","43.8247737"],["-122.6207259","43.8251903"],["-122.6215045","43.8255951"],["-122.6223738","43.8262234"],["-122.6229815","43.8268674"],["-122.6233595","43.8274452"],["-122.6236147","43.828026"],["-122.6237746","43.8286465"],["-122.6238228","43.8292157"],["-122.6237851","43.8297712"],["-122.6237329","43.830334"],["-122.6237223","43.8308749"],["-122.6237533","43.8313746"],["-122.6238196","43.8318543"],["-122.6239708","43.832381"],["-122.6242142","43.8329058"],["-122.6245114","43.8334155"],["-122.6257834","43.8351926"],["-122.626191","43.8359406"],["-122.6263957","43.8365987"],["-122.6265044","43.8373818"],["-122.6265083","43.8398056"],["-122.6265845","43.8404635"],["-122.6267348","43.8410012"],["-122.627001","43.8415618"],["-122.6273589","43.8421469"],["-122.6280308","43.8428671"],["-122.6286747","43.8434133"],["-122.6309206","43.844808"],["-122.6363576","43.8479949"],["-122.6374132","43.8485273"],["-122.6380891","43.8487896"],["-122.6388109","43.8490192"],["-122.639674","43.8492287"],["-122.6404881","43.8493532"],["-122.6412296","43.8494186"],["-122.6419979","43.8494374"],["-122.6432494","43.8493727"],["-122.646712","43.8488482"],["-122.6478768","43.8487208"],["-122.6490272","43.8486981"],["-122.6497508","43.8487514"],["-122.650161","43.8488026"],["-122.6506444","43.8488899"],["-122.6515668","43.8491034"],["-122.6595275","43.8511428"],["-122.661428","43.8516236"],["-122.6619124","43.8517526"],["-122.6622507","43.8518401"],["-122.6630154","43.8520436"],["-122.6641667","43.8523553"],["-122.6652796","43.8527006"],["-122.6661979","43.8531078"],["-122.6666451","43.8533719"],["-122.6671437","43.8537213"],["-122.6692875","43.8553602"],["-122.6701378","43.8558709"],["-122.6709894","43.8562932"],["-122.6721504","43.8567364"],["-122.6732801","43.8571373"],["-122.6743959","43.8575385"],["-122.675257","43.8579218"],["-122.6762129","43.8584526"],["-122.6769853","43.8589757"],["-122.6791401","43.8606009"],["-122.6797863","43.861022"],["-122.680676","43.8614307"],["-122.6846351","43.8629567"],["-122.6857051","43.8634692"],["-122.6863818","43.8639434"],["-122.687007","43.8644802"],["-122.6874486","43.8651355"],["-122.6876655","43.8655258"],["-122.688009","43.8663003"],["-122.6883982","43.8671997"],["-122.6886808","43.8677828"],["-122.6889663","43.868221"],["-122.6892812","43.8686401"],["-122.6896682","43.869005"],["-122.6903266","43.869485"],["-122.7037163","43.878238"],["-122.7054123","43.87924"],["-122.7066834","43.8799676"],["-122.7079657","43.8806836"],["-122.7114086","43.8822783"],["-122.7120978","43.882615"],["-122.7130137","43.883126"],["-122.7139141","43.8837758"],["-122.7153411","43.8848251"],["-122.7160074","43.8852622"],["-122.7168514","43.8857889"],["-122.7214599","43.8884269"],["-122.7225135","43.8889826"],["-122.7231054","43.8892495"],["-122.7238248","43.8895041"],["-122.7245337","43.8896831"],["-122.7251763","43.8897938"],["-122.7258571","43.8898632"],["-122.7272542","43.8899004"],["-122.7292599","43.8898716"],["-122.7299305","43.8899039"],["-122.7304833","43.8899719"],["-122.7312077","43.8901117"],["-122.7318577","43.8902864"],["-122.7324879","43.8905267"],["-122.7331169","43.8908207"],["-122.7337487","43.8911924"],["-122.7344113","43.8917126"],["-122.7360554","43.893223"],["-122.737456","43.8945058"],["-122.7405707","43.8973034"],["-122.7410758","43.8977852"],["-122.7413771","43.8981362"],["-122.7416075","43.898457"],["-122.7418026","43.8987775"],["-122.7419396","43.8991436"],["-122.7420554","43.8995027"],["-122.7421053","43.8998887"],["-122.7421061","43.9002858"],["-122.742054","43.9007726"],["-122.7419529","43.9014399"],["-122.7418462","43.9022111"],["-122.7418463","43.9026182"],["-122.7418948","43.90299"],["-122.7420095","43.903362"],["-122.7421799","43.9037205"],["-122.7424405","43.904082"],["-122.7427649","43.9044518"],["-122.7434051","43.9050783"],["-122.7442082","43.9057471"],["-122.7448494","43.9062481"],["-122.745373","43.9065901"],["-122.7459608","43.9069561"],["-122.7466966","43.907275"],["-122.7475231","43.9075344"],["-122.7484397","43.9077397"],["-122.7491453","43.9078571"],["-122.7499416","43.9079211"],["-122.7524504","43.9079856"],["-122.7532336","43.9080116"],["-122.7536218","43.9080809"],["-122.7539641","43.9081749"],["-122.7542561","43.9082952"],["-122.754523","43.9084458"],["-122.7553353","43.9089852"],["-122.7556506","43.9091513"],["-122.7559632","43.9092908"],["-122.7563445","43.9094055"],["-122.7568289","43.9094785"],["-122.7572665","43.9094941"],["-122.7576923","43.9094512"],["-122.7583025","43.9093307"],["-122.7594322","43.9090647"],["-122.7601906","43.9089001"],["-122.7606738","43.9088227"],["-122.7610858","43.9087856"],["-122.7614995","43.9087827"],["-122.7624797","43.9088739"],["-122.7644117","43.909081"],["-122.7654702","43.9091808"],["-122.7659521","43.909188"],["-122.7663972","43.909152"],["-122.7668555","43.9090734"],["-122.7673254","43.9089373"],["-122.7679456","43.9086879"],["-122.768835","43.9083197"],["-122.7693452","43.9081313"],["-122.7697411","43.90802"],["-122.7699648","43.9079762"],["-122.7702685","43.9079298"],["-122.7706128","43.9079"],["-122.7709494","43.9078878"],["-122.7715431","43.9079108"],["-122.7781963","43.9082733"],["-122.7791958","43.9082994"],["-122.7798159","43.9082767"],["-122.7805289","43.9081915"],["-122.7819886","43.908001"],["-122.7826809","43.9079155"],["-122.7831512","43.9078724"],["-122.7835809","43.9078549"],["-122.7840609","43.9078642"],["-122.7845027","43.9078983"],["-122.7848767","43.9079567"],["-122.7853077","43.9080405"],["-122.7858053","43.9081633"],["-122.7862009","43.908283"],["-122.797105","43.9123186"],["-122.7977253","43.9125078"],["-122.798264","43.9126428"],["-122.7988383","43.9127458"],["-122.799446","43.9128078"],["-122.800108","43.9128375"],["-122.8008787","43.9128285"],["-122.8027986","43.9127244"],["-122.8037095","43.9126771"],["-122.8043386","43.9126683"],["-122.8049886","43.9126893"],["-122.805533","43.9127314"],["-122.8060781","43.9128066"],["-122.8065527","43.9129003"],["-122.8070092","43.9130191"],["-122.8074452","43.9131497"],["-122.8079062","43.9133204"],["-122.8083453","43.9134999"],["-122.8088146","43.9137345"],["-122.8099179","43.9143339"],["-122.8154208","43.9174503"],["-122.8167911","43.9182338"],["-122.8433592","43.9332403"],["-122.844769","43.9339679"],["-122.8464686","43.9348077"],["-122.8478111","43.9353924"],["-122.9162338","43.9607126"],["-122.9482137","43.9731077"],["-122.9966077","43.9932494"],["-122.9987803","43.9942022"],["-123.0001315","43.9947697"],["-123.0013672","43.9952757"],["-123.0019562","43.9955239"],["-123.0034532","43.996276"],["-123.0051394","43.9971179"],["-123.0078285","43.9983872"],["-123.0086758","43.9987712"],["-123.0091612","43.9989507"],["-123.0096643","43.9991134"],["-123.0103586","43.9993579"],["-123.0144721","44.0008272"],["-123.0150628","44.0010489"],["-123.0160216","44.0014447"],["-123.0163271","44.0015871"],["-123.016692","44.0017894"],["-123.0170757","44.0020202"],["-123.017365","44.0022343"],["-123.0176421","44.0024521"],["-123.0178931","44.002675"],["-123.0181998","44.0029815"],["-123.0184695","44.0032923"],["-123.018819","44.0037906"],["-123.0193422","44.0048096"],["-123.0209199","44.0082983"],["-123.0288928","44.0263423"],["-123.0291279","44.0270765"],["-123.0293304","44.0278364"],["-123.0295557","44.0290183"],["-123.0297523","44.0300688"],["-123.0298894","44.0308212"],["-123.0300072","44.031394"],["-123.0300959","44.0317084"],["-123.0302119","44.0320407"],["-123.0303623","44.0323561"],["-123.0305418","44.0326439"],["-123.0307542","44.0329232"],["-123.0309643","44.033162"],["-123.0312068","44.0334022"],["-123.0314824","44.0336221"],["-123.0318013","44.0338424"],["-123.0321498","44.0340525"],["-123.032524","44.0342359"],["-123.0328988","44.034401"],["-123.0332939","44.0345389"],["-123.0336499","44.0346389"],["-123.0340398","44.0347255"],["-123.0345959","44.034812"],["-123.035179","44.0348615"],["-123.0360664","44.0348803"],["-123.037754","44.0348857"],["-123.0396935","44.0348825"],["-123.0403389","44.0348928"],["-123.0410063","44.0349193"],["-123.0415278","44.0349649"],["-123.0420751","44.0350324"],["-123.0426511","44.0351358"],["-123.0431969","44.0352646"],["-123.0436297","44.0353854"],["-123.0440749","44.0355344"],["-123.0445729","44.0357275"],["-123.0451352","44.0359711"],["-123.0455546","44.0361999"],["-123.045942","44.0364301"],["-123.0463493","44.0367069"],["-123.0469445","44.0371595"],["-123.047301","44.0374998"],["-123.0476338","44.0378665"],["-123.0479521","44.0382745"],["-123.048263","44.0387071"],["-123.0485322","44.0391648"],["-123.0488412","44.0397416"],["-123.0490963","44.0403047"],["-123.0492916","44.0407817"],["-123.0494696","44.0413318"],["-123.0495769","44.0417258"],["-123.0497068","44.0423282"],["-123.0497705","44.0427127"],["-123.0498135","44.0430691"],["-123.0498375","44.0433595"],["-123.0498557","44.0436652"],["-123.0498759","44.0441223"],["-123.0500555","44.0508005"],["-123.050063","44.0540096"],["-123.0500474","44.0544541"],["-123.0500111","44.0549144"],["-123.0498091","44.0566043"],["-123.049687","44.057527"],["-123.0466332","44.0835782"],["-123.0462988","44.0861026"],["-123.0441102","44.1040874"],["-123.0440261","44.1050451"],["-123.0440216","44.1060512"],["-123.0440992","44.1070692"],["-123.0442068","44.1078351"],["-123.0446435","44.1095439"],["-123.0449622","44.1108243"],["-123.0507386","44.133411"],["-123.0512689","44.1354209"],["-123.0560639","44.1541706"],["-123.0571337","44.1583793"],["-123.0589946","44.1656038"],["-123.059876","44.1692657"],["-123.0601095","44.1705002"],["-123.0602641","44.1717536"],["-123.0603349","44.1729939"],["-123.0603684","44.1758957"],["-123.0605474","44.2243508"],["-123.0605581","44.2278612"],["-123.0608013","44.2944393"],["-123.0608263","44.3025885"],["-123.0608282","44.3055641"],["-123.0608436","44.3084676"],["-123.0611123","44.3930659"],["-123.0611321","44.3995534"],["-123.0611359","44.4039629"],["-123.0611443","44.4051951"],["-123.061144","44.4089706"],["-123.061158","44.4172283"],["-123.0612692","44.4417105"],["-123.061978","44.6321598"],["-123.0623675","44.6430737"],["-123.0623522","44.6450289"],["-123.0622796","44.6459749"],["-123.0621713","44.6468887"],["-123.0580293","44.6694963"],["-123.0576655","44.6711466"],["-123.0573607","44.6721696"],["-123.0568992","44.6735378"],["-123.0544481","44.6804567"],["-123.0533339","44.6838315"],["-123.0528723","44.6857551"],["-123.0526266","44.6873309"],["-123.0525236","44.6884428"],["-123.052302","44.6917019"],["-123.0522389","44.6926199"],["-123.0520721","44.6952138"],["-123.0519305","44.6971611"],["-123.0518539","44.7001264"],["-123.0518793","44.7013212"],["-123.0520615","44.7028013"],["-123.0523156","44.7046688"],["-123.0526935","44.7063114"],["-123.0532745","44.7082012"],["-123.0538301","44.7100266"],["-123.0541348","44.7114417"],["-123.0543796","44.7127762"],["-123.054531","44.7147348"],["-123.0544878","44.7167114"],["-123.0544185","44.7177524"],["-123.0543405","44.7186328"],["-123.0542284","44.7197711"],["-123.0537617","44.724198"],["-123.0536985","44.7247432"],["-123.0535744","44.7260918"],["-123.0534852","44.7271411"],["-123.0533543","44.7284891"],["-123.0532343","44.72965"],["-123.0530481","44.7317808"],["-123.0529407","44.7329273"],["-123.0527917","44.7346223"],["-123.0526955","44.735665"],["-123.0525503","44.7372415"],["-123.0525395","44.7375468"],["-123.0523737","44.7392937"],["-123.0516994","44.7451127"],["-123.0516085","44.7458915"],["-123.0512898","44.7491181"],["-123.0511216","44.7508691"],["-123.0509341","44.7524215"],["-123.0507761","44.7533161"],["-123.0506878","44.7537411"],["-123.0501951","44.7556474"],["-123.0500433","44.7561293"],["-123.0497355","44.7570069"],["-123.0493396","44.7580258"],["-123.048808","44.7592908"],["-123.0474297","44.7625579"],["-123.0470355","44.7634688"],["-123.0466383","44.7644113"],["-123.046101","44.7657196"],["-123.0395074","44.7814522"],["-123.0391792","44.7822477"],["-123.038453","44.7839753"],["-123.0378661","44.7853778"],["-123.0334573","44.7958567"],["-123.0331803","44.7964757"],["-123.0278287","44.8092507"],["-123.0273369","44.8104082"],["-123.0258648","44.8138744"],["-123.0255825","44.8145085"],["-123.0251217","44.8154351"],["-123.0248643","44.8159101"],["-123.024569","44.8164152"],["-123.0240631","44.8172338"],["-123.0238434","44.817565"],["-123.0228926","44.8188716"],["-123.0226056","44.8192379"],["-123.0215734","44.8204389"],["-123.0206794","44.821389"],["-123.0199442","44.8220924"],["-123.0185216","44.8233439"],["-123.0145658","44.8266137"],["-123.0138705","44.8272122"],["-123.0132529","44.8277969"],["-123.0126698","44.8283938"],["-123.0121352","44.8289863"],["-123.0117634","44.8294293"],["-123.0113856","44.8299092"],["-123.0110198","44.8304052"],["-123.0107413","44.8308178"],["-123.0104101","44.8313311"],["-123.0101609","44.8317543"],["-123.0099147","44.832191"],["-123.0095963","44.8328219"],["-123.009321","44.8334525"],["-123.0090913","44.8340203"],["-123.0088887","44.834621"],["-123.0087176","44.8351774"],["-123.0085748","44.8357285"],["-123.0084661","44.8361952"],["-123.0083349","44.8369913"],["-123.008267","44.8375558"],["-123.0082298","44.8379877"],["-123.0082089","44.8384083"],["-123.0082008","44.8388268"],["-123.0082079","44.8392929"],["-123.0082433","44.8398964"],["-123.0083047","44.8406169"],["-123.0090924","44.8476474"],["-123.0091629","44.8480438"],["-123.0092395","44.848407"],["-123.009352","44.8488054"],["-123.0094771","44.8491744"],["-123.0112636","44.853093"],["-123.0114091","44.8534287"],["-123.0115121","44.8537034"],["-123.011628","44.8540559"],["-123.0117118","44.8543555"],["-123.0117837","44.8546485"],["-123.0118422","44.854942"],["-123.011887","44.8551983"],["-123.0119145","44.8554138"],["-123.0119352","44.8556522"],["-123.0119492","44.8559619"],["-123.0119578","44.8564149"],["-123.0119431","44.8567698"],["-123.0119194","44.8570443"],["-123.0118741","44.8574242"],["-123.0118075","44.8577909"],["-123.0117748","44.857945"],["-123.0117043","44.8582168"],["-123.0116247","44.8585029"],["-123.0115407","44.8587894"],["-123.0114416","44.8590356"],["-123.0112989","44.8593673"],["-123.0111271","44.8597508"],["-123.0109287","44.8601276"],["-123.0106816","44.8605384"],["-123.0104692","44.8608773"],["-123.0102695","44.8611719"],["-123.0100454","44.8614619"],["-123.0097487","44.861829"],["-123.0094643","44.8621627"],["-123.004289","44.8677141"],["-123.0031684","44.8689224"],["-123.0024887","44.869718"],["-123.0022944","44.8699622"],["-123.0018606","44.8705603"],["-123.0016686","44.8708382"],["-123.00136","44.8713338"],["-123.0011715","44.8716612"],["-123.0009918","44.8719965"],["-123.0007913","44.8723883"],["-123.0005875","44.8728338"],["-123.000447","44.8731694"],["-123.0001661","44.8739825"],["-123.0000184","44.8744603"],["-122.9998301","44.875226"],["-122.9989028","44.8809196"],["-122.9982232","44.884763"],["-122.9980428","44.8856131"],["-122.9979449","44.885972"],["-122.9978531","44.8862655"],["-122.9977159","44.8865936"],["-122.997622","44.8868254"],["-122.9975355","44.8870256"],["-122.9972112","44.8876655"],["-122.9970261","44.8879869"],["-122.9967954","44.8883303"],["-122.9966269","44.8885587"],["-122.9960501","44.8892546"],["-122.9955508","44.8897682"],["-122.995393","44.8899128"],["-122.9951799","44.8900975"],["-122.9946363","44.8905216"],["-122.9942877","44.8907784"],["-122.9939018","44.8910409"],["-122.9931775","44.8914846"],["-122.9894144","44.8935493"],["-122.9888582","44.8938656"],["-122.9881525","44.894312"],["-122.9878854","44.8945007"],["-122.9875196","44.8947832"],["-122.9872008","44.8950453"],["-122.9868968","44.8953177"],["-122.9866188","44.8955828"],["-122.9863532","44.895864"],["-122.9861181","44.8961245"],["-122.9859113","44.8963834"],["-122.9856363","44.8967506"],["-122.9854725","44.8969845"],["-122.9852232","44.8973811"],["-122.9850864","44.8976362"],["-122.9849304","44.8979413"],["-122.9848031","44.8982379"],["-122.984687","44.8985389"],["-122.9845749","44.8988771"],["-122.9844681","44.899267"],["-122.9843953","44.8996187"],["-122.9843431","44.8999333"],["-122.9843042","44.9002723"],["-122.9842874","44.90062"],["-122.9842811","44.9009204"],["-122.9842917","44.9011388"],["-122.9843104","44.9013657"],["-122.984333","44.9015831"],["-122.9843644","44.9018111"],["-122.9844762","44.9023613"],["-122.9846427","44.9029678"],["-122.988414","44.9155112"],["-122.9884415","44.9156008"],["-122.9894285","44.9189066"],["-122.9895268","44.9192784"],["-122.9897379","44.9202088"],["-122.9897877","44.9205648"],["-122.9898689","44.9210325"],["-122.9899599","44.9215536"],["-122.9900142","44.9219595"],["-122.9900687","44.9225202"],["-122.9901209","44.9232128"],["-122.9901507","44.9244195"],["-122.9900556","44.9517477"],["-122.9900309","44.9705841"],["-122.9900365","44.9716312"],["-122.9900383","44.9736691"],["-122.9900515","44.9740264"],["-122.9900777","44.9743746"],["-122.990112","44.9746614"],["-122.9901494","44.9749115"],["-122.9901967","44.9751422"],["-122.9902752","44.9754559"],["-122.9903658","44.9757614"],["-122.990471","44.9760785"],["-122.9906282","44.976488"],["-122.994169","44.9846378"],["-122.9944002","44.9852042"],["-122.9946522","44.9857346"],["-122.9951003","44.9865599"],["-122.9956931","44.9873769"],["-122.9959238","44.9876766"],["-122.9961715","44.987979"],["-122.9980011","44.9901052"],["-122.9983874","44.9905633"],["-122.9988382","44.9911173"],["-122.9991501","44.9915479"],["-122.9993843","44.9919101"],["-122.9995727","44.9922384"],["-122.9998429","44.9927561"],["-122.9999597","44.9930396"],["-123.0000795","44.9933448"],["-123.0001889","44.9936708"],["-123.0002703","44.9939413"],["-123.0003344","44.9941849"],["-123.000422","44.9946049"],["-123.0004707","44.9949597"],["-123.0005033","44.9952726"],["-123.0005191","44.9955894"],["-123.0005233","44.995877"],["-123.0005149","44.9961626"],["-123.0004949","44.9964632"],["-123.000464","44.9967284"],["-123.0004066","44.9970642"],["-123.0003306","44.9974164"],["-123.0002572","44.997726"],["-123.0001772","44.9979859"],["-123.0000658","44.9983071"],["-122.9999767","44.9985282"],["-122.9998426","44.9988289"],["-122.9996318","44.9992675"],["-122.9994559","44.9996079"],["-122.9992924","44.9999151"],["-122.9979845","45.0023097"],["-122.9976817","45.0028641"],["-122.9615528","45.0699038"],["-122.9607209","45.0714161"],["-122.9604838","45.0718126"],["-122.9600213","45.0724977"],["-122.9594868","45.0732015"],["-122.9589307","45.0738368"],["-122.9585706","45.0742305"],["-122.8399672","45.1907734"],["-122.8382925","45.1925294"],["-122.835261","45.1960906"],["-122.8346208","45.1969245"],["-122.8340326","45.1977098"],["-122.8166744","45.222467"],["-122.8145676","45.2252866"],["-122.8140196","45.2259546"],["-122.7858795","45.2599632"],["-122.7704794","45.2786308"],["-122.7702893","45.2788805"],["-122.7700045","45.2792864"],["-122.7698222","45.2795822"],["-122.7696965","45.2798235"],["-122.7695962","45.2800511"],["-122.7695079","45.2802958"],["-122.7693966","45.2806399"],["-122.7693262","45.2811424"],["-122.7693015","45.2814605"],["-122.7692937","45.2818686"],["-122.7692949","45.2884471"],["-122.7692775","45.2889351"],["-122.7692759","45.289559"],["-122.7692775","45.291319"],["-122.7692703","45.2924484"],["-122.7692296","45.2947025"],["-122.7690931","45.2964575"],["-122.7690411","45.2992396"],["-122.7690505","45.3001837"],["-122.7690785","45.3020891"],["-122.7690739","45.3026367"],["-122.7690772","45.3375066"],["-122.7689861","45.3386405"],["-122.7689503","45.3389637"],["-122.7688284","45.33985"],["-122.7687242","45.3404395"],["-122.7685708","45.3411136"],["-122.7684385","45.3417185"],["-122.7682942","45.342274"],["-122.7680153","45.3432268"],["-122.7678395","45.3437567"],["-122.7675366","45.3445758"],["-122.7671855","45.3455008"],["-122.7667676","45.3465622"],["-122.759401","45.3648871"],["-122.7547154","45.3764594"],["-122.7544261","45.3771891"],["-122.7537673","45.3788234"],["-122.7537008","45.3790439"],["-122.75252","45.382054"],["-122.7523904","45.3823975"],["-122.75189","45.3836201"],["-122.7506672","45.3870487"],["-122.7504309","45.3877324"],["-122.7502715","45.3882044"],["-122.7481453","45.3936178"],["-122.7479584","45.3941058"],["-122.7469223","45.3966704"],["-122.7465708","45.3975334"],["-122.7456984","45.3997014"],["-122.7452711","45.4007889"],["-122.7450371","45.4014619"],["-122.7447924","45.4022266"],["-122.7446022","45.4029023"],["-122.7444304","45.4036058"],["-122.7442827","45.4042932"],["-122.7441118","45.4052095"],["-122.744076","45.4054897"],["-122.7440292","45.4058778"],["-122.7439396","45.4066763"],["-122.7439024","45.4072107"],["-122.7438771","45.4076112"],["-122.7438544","45.4084695"],["-122.7438554","45.4090003"],["-122.7438623","45.4118454"],["-122.7439002","45.4169422"],["-122.7439403","45.4177569"],["-122.7439537","45.4205608"],["-122.744061","45.4309175"],["-122.744069","45.431978"],["-122.7441013","45.4368078"],["-122.7440694","45.4371525"],["-122.7440163","45.4375022"],["-122.7439347","45.4378488"],["-122.7437684","45.4383842"],["-122.7436189","45.4387176"],["-122.7434557","45.4390516"],["-122.7432979","45.4393379"],["-122.7430254","45.4397914"],["-122.7428512","45.4400415"],["-122.7425311","45.4404499"],["-122.7422114","45.4408385"],["-122.7419073","45.4412025"],["-122.741325","45.441885"],["-122.7401927","45.4431848"],["-122.7400558","45.4433325"],["-122.7396767","45.4436961"],["-122.7395248","45.4438175"],["-122.7393504","45.44395"],["-122.7391972","45.4440589"],["-122.7390179","45.4441699"],["-122.7388152","45.4442895"],["-122.7386312","45.4443884"],["-122.7384193","45.4444919"],["-122.7381592","45.4446021"],["-122.7378876","45.4447064"],["-122.7374424","45.4448472"],["-122.7372155","45.4449076"],["-122.7367644","45.4450094"],["-122.7346998","45.445403"],["-122.7341974","45.4455234"],["-122.7336836","45.4456756"],["-122.733375","45.4457832"],["-122.7330733","45.4459025"],["-122.7323812","45.4462449"],["-122.7320677","45.4464189"],["-122.7318128","45.4465755"],["-122.7315878","45.4467253"],["-122.7313275","45.4469181"],["-122.7308436","45.4473688"],["-122.7305753","45.4476188"],["-122.7302583","45.448036"],["-122.7297046","45.4488502"],["-122.7284817","45.4508009"],["-122.7282356","45.4511733"],["-122.7280185","45.4514307"],["-122.7277876","45.4516766"],["-122.7274772","45.4519561"],["-122.7271911","45.4521752"],["-122.7268808","45.4523893"],["-122.726524","45.4526019"],["-122.7262075","45.4527762"],["-122.7258356","45.4529337"],["-122.7254327","45.4530897"],["-122.7250268","45.45321"],["-122.7246001","45.4533228"],["-122.724254","45.4534001"],["-122.7239368","45.4534529"],["-122.7236275","45.4534975"],["-122.7233191","45.4535281"],["-122.7229771","45.4535457"],["-122.722578","45.4535447"],["-122.7219644","45.4535298"],["-122.720517","45.4534664"],["-122.7199888","45.4534404"],["-122.7189299","45.4534159"],["-122.718247","45.4534477"],["-122.7170607","45.453673"],["-122.7168065","45.453744"],["-122.7164616","45.45386"],["-122.7160302","45.4540278"],["-122.7149987","45.4545326"],["-122.7067134","45.4591128"],["-122.7043175","45.4605004"],["-122.7005731","45.4626569"],["-122.6989453","45.463574"],["-122.6979203","45.4641154"],["-122.6953318","45.4654073"],["-122.6946253","45.4658163"],["-122.6937967","45.4663419"],["-122.6931976","45.4667322"],["-122.6925362","45.4671649"],["-122.6921329","45.4674658"],["-122.6917424","45.4678004"],["-122.6911869","45.4683451"],["-122.6906101","45.4689412"],["-122.6902568","45.4692901"],["-122.6900776","45.4694335"],["-122.6899128","45.4695512"],["-122.689734","45.4696537"],["-122.689531","45.4697625"],["-122.6892872","45.4698662"],["-122.6890536","45.4699493"],["-122.6887124","45.4700375"],["-122.6882171","45.4701408"],["-122.6874906","45.4702257"],["-122.6871565","45.4702547"],["-122.6867598","45.4702747"],["-122.6864199","45.4702819"],["-122.6859528","45.4702832"],["-122.6857367","45.4702744"],["-122.6856308","45.4702681"],["-122.6853837","45.4702493"],["-122.6849366","45.4702005"],["-122.6844041","45.4701305"],["-122.6838618","45.4700498"],["-122.6821573","45.4697529"],["-122.6814269","45.4696351"],["-122.6808087","45.4695667"],["-122.6803156","45.4695671"],["-122.6798451","45.4696063"],["-122.6795617","45.4696577"],["-122.6792583","45.4697364"],["-122.6789778","45.4698311"],["-122.6786948","45.469951"],["-122.6783761","45.4701302"],["-122.6782633","45.4702086"],["-122.6780751","45.4703447"],["-122.6777635","45.4706254"],["-122.6775279","45.4709241"],["-122.6774231","45.4711231"],["-122.677338","45.4713192"],["-122.6772726","45.4715368"],["-122.6772524","45.4718628"],["-122.6772638","45.4720796"],["-122.6772979","45.4722904"],["-122.6773875","45.4725728"],["-122.6774934","45.4728778"],["-122.6779273","45.474021"],["-122.6783577","45.4751577"],["-122.678543","45.4757767"],["-122.6786216","45.4761703"],["-122.6787104","45.476874"],["-122.6787308","45.481567"],["-122.6787451","45.4818907"],["-122.6787835","45.48243"],["-122.6788286","45.4828533"],["-122.6790899","45.4847731"],["-122.6791593","45.4853423"],["-122.679163","45.4856117"],["-122.6791406","45.4859747"],["-122.6790634","45.4862947"],["-122.6789422","45.4866136"],["-122.6787635","45.4869358"],["-122.6783753","45.4874179"],["-122.6781071","45.4876634"],["-122.6774962","45.4881303"],["-122.6769775","45.4885181"],["-122.6760167","45.4892695"],["-122.6756824","45.4895697"],["-122.6752512","45.4900121"],["-122.6749593","45.4903359"],["-122.6747992","45.4905438"],["-122.6746605","45.4907284"],["-122.6745227","45.490919"],["-122.6743443","45.4912066"],["-122.6741335","45.4915715"],["-122.6739313","45.4919817"],["-122.6736332","45.4927424"],["-122.6735692","45.4930657"],["-122.6735155","45.4933456"],["-122.6734723","45.4936359"],["-122.6734208","45.4943082"],["-122.6733071","45.4970459"],["-122.6732006","45.4986535"],["-122.6731452","45.4987989"],["-122.6730785","45.499416"],["-122.6729661","45.5015367"],["-122.6729722","45.5017232"],["-122.6729874","45.5019"],["-122.673017","45.5020491"],["-122.6730629","45.5021932"],["-122.6731467","45.5024224"],["-122.6732308","45.5026546"],["-122.6735901","45.5034606"],["-122.6736731","45.5036923"],["-122.6737304","45.5039072"],["-122.6737643","45.504099"],["-122.6737802","45.5043183"],["-122.6737708","45.5045218"],["-122.6737522","45.5046463"],["-122.673723","45.5047478"],["-122.6736956","45.5048292"],["-122.6736548","45.5049297"],["-122.673595","45.5050523"],["-122.6734706","45.5052417"],["-122.6733551","45.5053891"],["-122.673193","45.5055571"],["-122.6730157","45.5057012"],["-122.6728208","45.505845"],["-122.6726231","45.5059709"],["-122.672412","45.506094"],["-122.6721771","45.5062218"],["-122.6714727","45.5065869"],["-122.6710374","45.5068121"],["-122.6706687","45.5070124"],["-122.6679081","45.5086659"],["-122.6674122","45.5089755"],["-122.6672296","45.5091252"],["-122.667114","45.5092287"],["-122.6670209","45.5093297"],["-122.6669217","45.5094628"],["-122.6668322","45.5096023"],["-122.6667496","45.5097806"],["-122.6667008","45.5099322"],["-122.6666611","45.5101369"],["-122.6666583","45.5104003"],["-122.666667","45.5105553"],["-122.6666954","45.5107001"],["-122.6667356","45.5108531"],["-122.6667759","45.5109671"],["-122.6668252","45.5110929"],["-122.6669693","45.5113731"],["-122.6673212","45.512005"],["-122.6674585","45.5122245"],["-122.6675136","45.5123302"],["-122.6675722","45.5124984"],["-122.6676424","45.5127163"],["-122.6677087","45.5130067"],["-122.6677399","45.5132277"],["-122.6677504","45.5134153"],["-122.6677501","45.5136167"],["-122.6677396","45.5138298"],["-122.6677142","45.5140642"],["-122.6676734","45.5143256"],["-122.6676137","45.5146074"],["-122.6674277","45.5154016"],["-122.6671052","45.5168033"],["-122.6668265","45.5178542"],["-122.6665747","45.5184944"],["-122.6662468","45.5193275"],["-122.6658486","45.5203836"],["-122.6656237","45.5210871"],["-122.6654771","45.5217646"],["-122.6654362","45.5221744"],["-122.6653987","45.5227808"],["-122.6653236","45.5243592"],["-122.6651492","45.5287659"],["-122.665143","45.528917"],["-122.66514","45.529008"],["-122.6651431","45.5306494"],["-122.6651586","45.5312338"],["-122.6652368","45.531924"],["-122.6653987","45.5325504"],["-122.6654924","45.5328352"],["-122.6655681","45.5330464"],["-122.6656525","45.533249"],["-122.665743","45.5334503"],["-122.6658661","45.5337013"],["-122.6660196","45.5339793"],["-122.6661773","45.5342453"],["-122.6662196","45.5343127"],["-122.6664158","45.5346064"],["-122.6665629","45.5348001"],["-122.6706922","45.5397768"],["-122.6715012","45.5407576"],["-122.6716428","45.540871"],["-122.6718829","45.5411039"],["-122.6721484","45.541359"],["-122.672549","45.5417119"],["-122.675561","45.5442165"],["-122.6768503","45.5452895"],["-122.6772775","45.5456519"],["-122.6776121","45.5459599"],["-122.6777949","45.5461508"],["-122.6779357","45.5463245"],["-122.6781256","45.546597"],["-122.6782739","45.5468559"],["-122.6783643","45.5470552"],["-122.6784511","45.547269"],["-122.6785208","45.5474906"],["-122.6785613","45.54772"],["-122.6785868","45.5482807"],["-122.6785091","45.5555974"],["-122.678473","45.5602951"],["-122.6785462","45.5637639"],["-122.6785316","45.5674657"],["-122.6785355","45.5682556"],["-122.6785551","45.5696268"],["-122.678561","45.5698574"],["-122.6785642","45.5699787"],["-122.6785703","45.5702209"],["-122.6785893","45.5716677"],["-122.6784849","45.5813021"],["-122.6785014","45.5817229"],["-122.6785263","45.5820183"],["-122.6785583","45.5822523"],["-122.6786067","45.5825658"],["-122.6786738","45.5829108"],["-122.6787568","45.5832314"],["-122.6788551","45.583563"],["-122.6789786","45.5839181"],["-122.6791698","45.5843992"],["-122.6809175","45.588312"],["-122.6821402","45.5910806"],["-122.6825665","45.5919227"],["-122.6838105","45.594675"],["-122.68404","45.5952279"],["-122.6841569","45.5955522"],["-122.684231","45.5958249"],["-122.684297","45.5960935"],["-122.6843476","45.5963483"],["-122.6843748","45.5965537"],["-122.6843951","45.5967403"],["-122.6844054","45.5969639"],["-122.6844137","45.5972213"],["-122.6844062","45.597483"],["-122.6843864","45.59774"],["-122.6843465","45.598053"],["-122.6842744","45.5984319"],["-122.6841835","45.5988306"],["-122.684075","45.5992393"],["-122.6834282","45.6014485"],["-122.6821757","45.6056136"],["-122.6820007","45.6060869"],["-122.6818708","45.6064181"],["-122.6817216","45.6067343"],["-122.6813459","45.6074662"],["-122.6811389","45.6078374"],["-122.6805791","45.6087801"],["-122.6802511","45.6093266"],["-122.6796855","45.6102733"],["-122.6787733","45.6118928"],["-122.6769087","45.615015"],["-122.6729741","45.621571"],["-122.672785","45.6218563"],["-122.6726348","45.622038"],["-122.6724457","45.6222194"],["-122.6719486","45.6227003"],["-122.6698355","45.6243224"],["-122.6694923","45.6246263"],["-122.6691749","45.6249148"],["-122.6688952","45.6252175"],["-122.6685604","45.6255888"],["-122.6678398","45.6265723"],["-122.6668903","45.6281632"],["-122.6657553","45.6300981"],["-122.6642362","45.6325922"],["-122.6624491","45.635532"],["-122.6622882","45.6358245"],["-122.6621661","45.6360838"],["-122.6620639","45.6363477"],["-122.6619651","45.6366835"],["-122.661883","45.6371126"],["-122.6617709","45.6378808"],["-122.6617322","45.6400285"],["-122.6617027","45.642226"],["-122.6616959","45.6436919"],["-122.6616023","45.6483175"],["-122.6616104","45.6491155"],["-122.6616512","45.649824"],["-122.6617065","45.6502045"],["-122.6618936","45.6508457"],["-122.6665249","45.6623567"],["-122.6668086","45.6630616"],["-122.6669501","45.6635454"],["-122.6670978","45.6641887"],["-122.6671581","45.6645623"],["-122.6671746","45.6649947"],["-122.6671613","45.6653237"],["-122.6671292","45.6656689"],["-122.6670698","45.6660302"],["-122.6669946","45.6664291"],["-122.6669123","45.6666961"],["-122.6668148","45.6669741"],["-122.6666936","45.6672843"],["-122.6665558","45.6675745"],["-122.6662821","45.668088"],["-122.6659876","45.6685946"],["-122.6656428","45.6691962"],["-122.6651791","45.6700316"],["-122.6649383","45.6705231"],["-122.6647527","45.6709596"],["-122.664626","45.6713863"],["-122.6645253","45.6718195"],["-122.6644567","45.6721806"],["-122.6643988","45.6729126"],["-122.6644813","45.6839801"],["-122.6644417","45.6850224"],["-122.6643209","45.6858711"],["-122.6641968","45.686433"],["-122.6640498","45.6870008"],["-122.6639178","45.6874308"],["-122.6636133","45.6882873"],["-122.6632659","45.6890266"],["-122.6536325","45.7073939"],["-122.6534458","45.7078043"],["-122.6532989","45.7081692"],["-122.6531575","45.7085514"],["-122.6530311","45.7089944"],["-122.6528764","45.7096574"],["-122.6527521","45.7104932"],["-122.6527073","45.71133"],["-122.6527424","45.7120747"],["-122.652791","45.7124738"],["-122.6529001","45.7130145"],["-122.6529652","45.7133224"],["-122.6530619","45.7137433"],["-122.6531285","45.7139789"],["-122.6531943","45.7141865"],["-122.6533837","45.7147165"],["-122.6533987","45.7147537"],["-122.653494","45.7149788"],["-122.6543932","45.7170014"],["-122.6545778","45.7174468"],["-122.6546575","45.7176663"],["-122.6547308","45.717884"],["-122.6548071","45.7181192"],["-122.6548878","45.7183285"],["-122.6549026","45.7183887"],["-122.6549831","45.7187677"],["-122.6550386","45.7191392"],["-122.6550756","45.7194777"],["-122.6551121","45.720164"],["-122.655106","45.7205089"],["-122.6550773","45.7208695"],["-122.6550402","45.7212039"],["-122.6550039","45.7214201"],["-122.6547331","45.7232202"],["-122.6546918","45.7238234"],["-122.6546903","45.724139"],["-122.6547058","45.7244064"],["-122.6547354","45.7246974"],["-122.6547776","45.7249785"],["-122.6548217","45.7252365"],["-122.6548809","45.72551"],["-122.6549844","45.7258835"],["-122.6558169","45.7286614"],["-122.6560379","45.7294009"],["-122.6613341","45.7467515"],["-122.6614806","45.7471609"],["-122.6625657","45.7506691"],["-122.6750829","45.7912131"],["-122.6755272","45.7926976"],["-122.6765165","45.7956928"],["-122.6768238","45.7965123"],["-122.6775193","45.7981156"],["-122.7045698","45.8564601"],["-122.7049852","45.857681"],["-122.7053249","45.8593539"],["-122.7056554","45.862076"],["-122.7059602","45.8644409"],["-122.706279","45.8656874"],["-122.7066029","45.8666261"],["-122.706982","45.8674631"],["-122.7073869","45.8682175"],["-122.7078326","45.8689295"],["-122.7085907","45.8699521"],["-122.710602","45.8721919"],["-122.7113737","45.8730027"],["-122.7123038","45.8739679"],["-122.7132745","45.874933"],["-122.714283","45.8757739"],["-122.7170593","45.877613"],["-122.7234691","45.8815265"],["-122.7296764","45.885315"],["-122.7305084","45.8860411"],["-122.7309386","45.8866112"],["-122.7352382","45.8936537"],["-122.7407709","45.9029142"],["-122.7415731","45.9043858"],["-122.742566","45.9061732"],["-122.7440139","45.9083249"],["-122.7503467","45.9187426"],["-122.7513418","45.9204754"],["-122.7523988","45.9221661"],["-122.754128","45.9245905"],["-122.7548593","45.9256997"],["-122.7561103","45.9277002"],["-122.7578695","45.9305991"],["-122.7582361","45.931112"],["-122.7587203","45.9316816"],["-122.7590188","45.9319545"],["-122.7598479","45.9326187"],["-122.7643532","45.935807"],["-122.781693","45.9469474"],["-122.7872102","45.9505318"],["-122.7958674","45.9559137"],["-122.8026577","45.9595074"],["-122.8052252","45.9611627"],["-122.8077768","45.9631153"],["-122.8093054","45.9644019"],["-122.8135945","45.9688578"],["-122.8248497","45.9805062"],["-122.8260235","45.9817703"],["-122.8291674","45.9852478"],["-122.8336896","45.9902941"],["-122.840068","45.9973534"],["-122.8422189","45.999846"],["-122.8427584","46.0005691"],["-122.8431133","46.0012051"],["-122.8433346","46.001603"],["-122.8437492","46.0026819"],["-122.8439822","46.0036197"],["-122.844678","46.0060141"],["-122.8453346","46.0075377"],["-122.846017","46.0090556"],["-122.8481635","46.0138429"],["-122.84865","46.0151531"],["-122.8489918","46.0167025"],["-122.8493115","46.0179939"],["-122.8497481","46.0190016"],["-122.8523901","46.0237188"],["-122.8550404","46.0304687"],["-122.85593","46.03279"],["-122.8564886","46.0342543"],["-122.8577811","46.0381164"],["-122.8592354","46.0424217"],["-122.8598123","46.0441971"],["-122.8630531","46.0537361"],["-122.8637356","46.0555898"],["-122.8642726","46.0569362"],["-122.8656545","46.0591353"],["-122.8663508","46.0602918"],["-122.8666241","46.0610271"],["-122.8668898","46.0620151"],["-122.8676634","46.0662536"],["-122.8678947","46.0678219"],["-122.8679527","46.0692172"],["-122.8678525","46.0703889"],["-122.8676912","46.071619"],["-122.8673972","46.0729777"],["-122.8667445","46.0756647"],["-122.866556","46.0766047"],["-122.8663996","46.077801"],["-122.8663463","46.0788136"],["-122.8663906","46.0799029"],["-122.866524","46.0807392"],["-122.8669114","46.0821764"],["-122.8676176","46.0841828"],["-122.8693399","46.0884597"],["-122.8705264","46.0911793"],["-122.8728244","46.0958221"],["-122.8740209","46.0981807"],["-122.8753482","46.1005779"],["-122.8758845","46.1014463"],["-122.8798078","46.1081058"],["-122.8806295","46.1094193"],["-122.8839034","46.1143456"],["-122.889335","46.1226788"],["-122.8895534","46.1229777"],["-122.8897379","46.1232098"],["-122.8899213","46.1234141"],["-122.8901253","46.123616"],["-122.8905937","46.1240016"],["-122.890856","46.1241988"],["-122.8911982","46.1244263"],["-122.891714","46.12472"],["-122.8923496","46.1250135"],["-122.8929313","46.1252732"],["-122.8949852","46.1261567"],["-122.8959368","46.1266516"],["-122.8966854","46.1271586"],["-122.89728","46.1276729"],["-122.8977376","46.1281799"],["-122.8981889","46.1288743"],["-122.8984325","46.1293665"],["-122.8986283","46.1300241"],["-122.8987369","46.130877"],["-122.8978676","46.1381628"],["-122.8978001","46.1386661"],["-122.8975554","46.1405701"],["-122.8973011","46.142609"],["-122.897286","46.1431021"],["-122.8972912","46.1435179"],["-122.8973167","46.1438409"],["-122.8973557","46.1441595"],["-122.8973943","46.1443742"],["-122.8974529","46.1446459"],["-122.8976802","46.1455404"],["-122.8980414","46.1463665"],["-122.8994317","46.1489644"],["-122.9001343","46.1503825"],["-122.9006128","46.1514856"],["-122.9007248","46.151779"],["-122.9011705","46.1531764"],["-122.9015262","46.1545224"],["-122.9019835","46.15712"],["-122.9040968","46.1692333"],["-122.9044246","46.1715682"],["-122.9043747","46.1721599"],["-122.9042091","46.1729619"],["-122.9039021","46.1736323"],["-122.9035029","46.1743933"],["-122.9001538","46.1789865"],["-122.8989039","46.1807759"],["-122.8981367","46.1822202"],["-122.8976576","46.1834161"],["-122.8926633","46.1979187"],["-122.892248","46.19972"],["-122.8921196","46.2018879"],["-122.8919099","46.2080685"],["-122.8917402","46.2104125"],["-122.8911919","46.2135023"],["-122.8901963","46.2179494"],["-122.8888961","46.2233789"],["-122.8860305","46.2404451"],["-122.8857455","46.2422467"],["-122.8851758","46.244652"],["-122.8841911","46.248362"],["-122.8838958","46.2499938"],["-122.8836856","46.2509774"],["-122.8835389","46.2519377"],["-122.8835309","46.2529878"],["-122.8836468","46.2540792"],["-122.8839261","46.2550934"],["-122.8842235","46.2557962"],["-122.8847538","46.2566314"],["-122.8869871","46.2597823"],["-122.8876339","46.2606658"],["-122.889441","46.2632812"],["-122.8909603","46.2656079"],["-122.8926036","46.2682088"],["-122.8985328","46.2778136"],["-122.9012585","46.2824781"],["-122.9055699","46.2899989"],["-122.9093979","46.2975347"],["-122.9105691","46.2999102"],["-122.9111277","46.30116"],["-122.9117202","46.3029681"],["-122.9126245","46.3064399"],["-122.9140954","46.3122233"],["-122.9145863","46.3142177"],["-122.9149093","46.3163963"],["-122.9149032","46.3180899"],["-122.91453","46.3201175"],["-122.913994","46.3215054"],["-122.9137438","46.322076"],["-122.9133762","46.3227228"],["-122.9129032","46.3235225"],["-122.9098639","46.3278643"],["-122.909362","46.3286549"],["-122.9087772","46.3299248"],["-122.9084946","46.3309711"],["-122.9079941","46.3349577"],["-122.9065743","46.347076"],["-122.9062321","46.3497902"],["-122.9059622","46.3524331"],["-122.9057957","46.35451"],["-122.9058736","46.3557911"],["-122.9064343","46.3582534"],["-122.9075215","46.3626122"],["-122.9078897","46.3645035"],["-122.9079528","46.3653132"],["-122.9079251","46.3664112"],["-122.9076913","46.3680195"],["-122.9026272","46.3872329"],["-122.9002044","46.3966097"],["-122.8999453","46.3973778"],["-122.8997124","46.3978722"],["-122.8993557","46.3984709"],["-122.8989658","46.3990325"],["-122.8985115","46.3995414"],["-122.8980689","46.3999776"],["-122.8970296","46.4008547"],["-122.8919458","46.404903"],["-122.8913882","46.4054287"],["-122.8909931","46.405857"],["-122.8905564","46.4064113"],["-122.8901818","46.4070056"],["-122.8899099","46.4075695"],["-122.8896768","46.4081991"],["-122.8895342","46.4087903"],["-122.8894588","46.4093804"],["-122.8894386","46.4100137"],["-122.8895517","46.4109034"],["-122.8902774","46.4150781"],["-122.8904745","46.4160434"],["-122.8910209","46.4191747"],["-122.8910858","46.4204047"],["-122.8908177","46.4227525"],["-122.8836234","46.4732797"],["-122.8834289","46.4743613"],["-122.8832444","46.4750041"],["-122.8825793","46.476894"],["-122.8773337","46.4911851"],["-122.876949","46.4922988"],["-122.8767893","46.4929905"],["-122.876648","46.4937752"],["-122.8765738","46.4945866"],["-122.8765543","46.4951948"],["-122.8764729","46.562586"],["-122.8764779","46.5632016"],["-122.8765038","46.5636357"],["-122.8765681","46.5642451"],["-122.8767307","46.5648961"],["-122.8770817","46.5659256"],["-122.8818627","46.5761862"],["-122.882501","46.5773154"],["-122.8831364","46.5782097"],["-122.8909136","46.5863477"],["-122.8982708","46.5940286"],["-122.9005325","46.5964375"],["-122.901128","46.597194"],["-122.9017947","46.5981013"],["-122.9044313","46.6020605"],["-122.9070674","46.6060365"],["-122.907608","46.6068062"],["-122.9082058","46.6075377"],["-122.9087689","46.6081921"],["-122.9093412","46.6086628"],["-122.9101737","46.6092676"],["-122.9222315","46.6176343"],["-122.9238474","46.6189088"],["-122.951216","46.6416876"],["-122.9519199","46.6422245"],["-122.9530075","46.6429203"],["-122.9534093","46.6431676"],["-122.9542359","46.6436367"],["-122.9559226","46.6444854"],["-122.9570279","46.6450285"],["-122.9590016","46.6459845"],["-122.9704006","46.6514756"],["-122.9714904","46.6519967"],["-122.9722072","46.6524109"],["-122.9727156","46.6527576"],["-122.9755258","46.655021"],["-122.976237","46.6556589"],["-122.9766844","46.6561142"],["-122.976855","46.6563365"],["-122.9771148","46.6567145"],["-122.9772459","46.6569239"],["-122.9773644","46.6571334"],["-122.9774827","46.6573694"],["-122.9775949","46.6576245"],["-122.9776752","46.6578395"],["-122.977797","46.6582482"],["-122.9779139","46.6586849"],["-122.978085","46.6594294"],["-122.9785115","46.6612244"],["-122.9788184","46.6624466"],["-122.9791702","46.6641054"],["-122.9793236","46.6646452"],["-122.9794132","46.6649498"],["-122.9795105","46.6652534"],["-122.97969","46.6657009"],["-122.9800447","46.6665439"],["-122.9801713","46.6668323"],["-122.9802924","46.667136"],["-122.9803797","46.6673762"],["-122.9804621","46.6676342"],["-122.9805218","46.6678945"],["-122.9805541","46.6680868"],["-122.9805748","46.6682728"],["-122.9805858","46.6684569"],["-122.9805865","46.6686488"],["-122.9805748","46.6688859"],["-122.980537","46.6691782"],["-122.9804976","46.6693771"],["-122.9804314","46.6696301"],["-122.9803399","46.6699007"],["-122.9802276","46.6701668"],["-122.9801075","46.6704053"],["-122.9799924","46.6706068"],["-122.9798138","46.6708757"],["-122.9795612","46.6711967"],["-122.9793544","46.6714425"],["-122.9787989","46.672039"],["-122.9738068","46.6773466"],["-122.9730193","46.6781899"],["-122.9728545","46.6783776"],["-122.9726908","46.6785775"],["-122.9725565","46.6787524"],["-122.9723381","46.6790633"],["-122.9721905","46.6792945"],["-122.9720271","46.67958"],["-122.9718358","46.6799556"],["-122.9716806","46.6803229"],["-122.9715754","46.6806115"],["-122.9714864","46.6808995"],["-122.9714219","46.6811557"],["-122.9713714","46.6814058"],["-122.9709065","46.6844386"],["-122.9697089","46.6924473"],["-122.9696757","46.6928614"],["-122.9696662","46.6932171"],["-122.9696766","46.693612"],["-122.9697038","46.6939766"],["-122.9697537","46.6943642"],["-122.9698187","46.694732"],["-122.969907","46.6951129"],["-122.9700154","46.6954918"],["-122.9747759","46.7095329"],["-122.9751163","46.7105815"],["-122.9752469","46.711096"],["-122.9754985","46.7127427"],["-122.9768199","46.7238101"],["-122.9769052","46.7245696"],["-122.9769372","46.724998"],["-122.976954","46.7253805"],["-122.9769616","46.7257548"],["-122.9769591","46.7261541"],["-122.9769546","46.7265136"],["-122.9769483","46.7269701"],["-122.976894","46.7275123"],["-122.9768273","46.7279368"],["-122.9767577","46.7283403"],["-122.9766873","46.7287357"],["-122.9766086","46.7291183"],["-122.9765185","46.7295084"],["-122.9764256","46.7298693"],["-122.9762904","46.7303052"],["-122.9757329","46.7318736"],["-122.9753568","46.7330047"],["-122.9752154","46.7336207"],["-122.9751571","46.7339265"],["-122.9751077","46.7342356"],["-122.9750771","46.7345474"],["-122.9750744","46.7349537"],["-122.9751058","46.7356468"],["-122.9751473","46.7363048"],["-122.9752736","46.7370042"],["-122.9754358","46.7376596"],["-122.9756286","46.7382054"],["-122.9757864","46.7386013"],["-122.9759615","46.7389822"],["-122.9761397","46.7393353"],["-122.9762977","46.739625"],["-122.9764631","46.7398929"],["-122.977362","46.7411661"],["-122.9811822","46.7463811"],["-122.9815663","46.7469389"],["-122.9818813","46.7474227"],["-122.9907377","46.7619633"],["-123.0090132","46.7919435"],["-123.0096267","46.7929643"],["-123.0099253","46.7936561"],["-123.0100269","46.7939865"],["-123.0101015","46.7942981"],["-123.0101676","46.7946483"],["-123.0102249","46.7950462"],["-123.0102341","46.7954799"],["-123.0102247","46.7958882"],["-123.0101955","46.7962332"],["-123.0101575","46.7965017"],["-123.0100775","46.7968565"],["-123.0099975","46.7971872"],["-123.0097111","46.7979407"],["-123.0095669","46.7982271"],["-123.0094319","46.7984799"],["-123.0078707","46.8011137"],["-123.0073349","46.80201"],["-123.002195","46.810517"],["-122.9729563","46.8593404"],["-122.9726676","46.8598811"],["-122.9724498","46.8603399"],["-122.9722548","46.8608156"],["-122.9720524","46.8613747"],["-122.9623613","46.8914662"],["-122.9618705","46.8930715"],["-122.9600516","46.8986126"],["-122.9597614","46.8991756"],["-122.9596234","46.8995884"],["-122.9594045","46.900057"],["-122.9591532","46.9005633"],["-122.9587538","46.9011958"],["-122.9579523","46.9025223"],["-122.9569139","46.9042483"],["-122.9541646","46.9088579"],["-122.9477939","46.9193818"],["-122.9473372","46.9201518"],["-122.947089","46.9206374"],["-122.9468451","46.9211281"],["-122.946645","46.9216198"],["-122.9462695","46.9227334"],["-122.9409107","46.9407887"],["-122.9397669","46.9445846"],["-122.9391024","46.9468226"],["-122.9342262","46.9633903"],["-122.9310125","46.9743136"],["-122.9307081","46.9751106"],["-122.9304915","46.9756083"],["-122.9301526","46.9762955"],["-122.9301061","46.9763919"],["-122.9299533","46.9766588"],["-122.9297418","46.9770098"],["-122.9294395","46.9774659"],["-122.929033","46.9780474"],["-122.928737","46.9784162"],["-122.9255091","46.9822929"],["-122.9245906","46.9834688"],["-122.9159099","46.9938387"],["-122.9152362","46.9946878"],["-122.9148537","46.9952324"],["-122.9144746","46.9958327"],["-122.9121246","46.9998743"],["-122.9072973","47.0082112"],["-122.9066521","47.0093509"],["-122.9065435","47.0095839"],["-122.9064513","47.0098189"],["-122.9063793","47.0100517"],["-122.9063182","47.0102672"],["-122.9062368","47.0108214"],["-122.9058415","47.0152037"],["-122.9057964","47.0158062"],["-122.90578","47.0160952"],["-122.9057759","47.0164218"],["-122.9057854","47.0165293"],["-122.905801","47.0166991"],["-122.9058079","47.0167899"],["-122.9058474","47.0171867"],["-122.9059388","47.0177076"],["-122.906043","47.018307"],["-122.906247","47.019611"],["-122.9062776","47.0199941"],["-122.9062859","47.0201286"],["-122.9062877","47.0202647"],["-122.9062776","47.0203858"],["-122.9062495","47.0206484"],["-122.9062301","47.020781"],["-122.9061526","47.0210665"],["-122.9060965","47.0212302"],["-122.9060097","47.0214482"],["-122.9059912","47.0214895"],["-122.905913","47.0216176"],["-122.9058126","47.0217902"],["-122.9055684","47.022102"],["-122.9054439","47.022243"],["-122.9053204","47.0223759"],["-122.905063","47.0226134"],["-122.9049246","47.0227232"],["-122.9047981","47.02282"],["-122.9046595","47.0229207"],["-122.9044221","47.023076"],["-122.9041746","47.0232222"],["-122.9039251","47.0233428"],["-122.9036926","47.0234516"],["-122.9034402","47.0235667"],["-122.9030715","47.0237078"],["-122.9027781","47.0238018"],["-122.9024711","47.0238899"],["-122.9020674","47.0239918"],["-122.9010341","47.0242443"],["-122.9006396","47.0243568"],["-122.9002479","47.0244815"],["-122.899747","47.0246587"],["-122.8990791","47.0249614"],["-122.8989303","47.0250428"],["-122.8986432","47.0252257"],["-122.8984813","47.0253426"],["-122.8979992","47.0256986"],["-122.8975526","47.0260959"],["-122.8962928","47.0273512"],["-122.8942141","47.0294806"],["-122.8935007","47.0303389"],["-122.8921753","47.0320109"],["-122.8918769","47.0323815"],["-122.8913393","47.0329963"],["-122.8907452","47.0335995"],["-122.8901729","47.0339934"],["-122.8894474","47.0343772"],["-122.8889327","47.0345861"],["-122.8884761","47.034767"],["-122.8872039","47.0351611"],["-122.8864615","47.0353058"],["-122.8860939","47.035364"],["-122.8858162","47.0353976"],["-122.8843085","47.0355228"],["-122.8783439","47.0359262"],["-122.8777882","47.035991"],["-122.8773231","47.0360642"],["-122.8768816","47.0361554"],["-122.8764294","47.0362708"],["-122.875441","47.0366122"],["-122.8749821","47.036831"],["-122.8739606","47.0374004"],["-122.871603","47.0390071"],["-122.8708693","47.0394335"],["-122.8703551","47.0396983"],["-122.8698569","47.0399061"],["-122.8693341","47.0400817"],["-122.8684961","47.0402897"],["-122.8678539","47.0404146"],["-122.8672856","47.0405051"],["-122.8666833","47.0405455"],["-122.8661429","47.0405666"],["-122.8640298","47.0405006"],["-122.8604729","47.0403793"],["-122.8586676","47.0403354"],["-122.8565283","47.0403196"],["-122.8556653","47.0403286"],["-122.8551012","47.0403709"],["-122.8543711","47.040501"],["-122.8533177","47.0407442"],["-122.8518515","47.0412473"],["-122.8433417","47.0445794"],["-122.8424187","47.0448875"],["-122.8414715","47.0451083"],["-122.8384879","47.0454076"],["-122.8255264","47.0465288"],["-122.8229453","47.0468096"],["-122.8222331","47.0469669"],["-122.8218771","47.0470622"],["-122.8215082","47.047175"],["-122.8207803","47.0474705"],["-122.8201332","47.047785"],["-122.8194314","47.0482239"],["-122.8165715","47.0501855"],["-122.8108712","47.0540838"],["-122.8089411","47.0553787"],["-122.8086656","47.0555385"],["-122.8084195","47.055673"],["-122.8081294","47.0558213"],["-122.8078686","47.0559425"],["-122.8075829","47.0560669"],["-122.8072684","47.0561917"],["-122.8069722","47.0563013"],["-122.8066712","47.0564039"],["-122.8063831","47.0564912"],["-122.8060453","47.0565832"],["-122.8057229","47.0566626"],["-122.8047782","47.0568344"],["-122.7713211","47.0623686"],["-122.7666748","47.0631133"],["-122.7660149","47.0631942"],["-122.7567651","47.0640148"],["-122.7560705","47.0640946"],["-122.736447","47.0670447"],["-122.7345572","47.0673048"],["-122.725978","47.0679284"],["-122.7247703","47.0679646"],["-122.7159879","47.0678817"],["-122.7155513","47.067894"],["-122.7150497","47.0679233"],["-122.7146209","47.0679591"],["-122.7141816","47.0680211"],["-122.7136362","47.0681159"],["-122.71296","47.0682896"],["-122.7118774","47.0686558"],["-122.6898006","47.077095"],["-122.68863","47.0775237"],["-122.6851198","47.0785809"],["-122.6722893","47.0822083"],["-122.6716708","47.0823443"],["-122.6710214","47.0824581"],["-122.6614866","47.0838466"],["-122.6601941","47.0841023"],["-122.6432993","47.0882224"],["-122.6423137","47.0884135"],["-122.6395695","47.0889624"],["-122.6220818","47.093293"],["-122.6217166","47.0933903"],["-122.6213157","47.0934954"],["-122.6194051","47.0941285"],["-122.6190576","47.0942595"],["-122.6185955","47.0944456"],["-122.6181358","47.0946423"],["-122.6084191","47.0994412"],["-122.6076819","47.0997898"],["-122.6072401","47.0999748"],["-122.6068566","47.1001246"],["-122.6064816","47.1002553"],["-122.5989116","47.102349"],["-122.597846","47.10257"],["-122.5968474","47.1027078"],["-122.5958025","47.102781"],["-122.5942589","47.1028575"],["-122.5930339","47.1029256"],["-122.5926503","47.1029779"],["-122.5922693","47.1030411"],["-122.5917451","47.1031457"],["-122.5908857","47.103355"],["-122.5862443","47.1046996"],["-122.5857294","47.1048665"],["-122.5851973","47.1050445"],["-122.5848167","47.1051826"],["-122.5844386","47.1053336"],["-122.5840457","47.1055019"],["-122.5835748","47.1057157"],["-122.5831224","47.1059469"],["-122.5825675","47.1062455"],["-122.5809816","47.1071514"],["-122.5804936","47.107407"],["-122.5800058","47.1076303"],["-122.5795247","47.1078273"],["-122.5789399","47.1080353"],["-122.5758929","47.1089149"],["-122.5720366","47.1100435"],["-122.5716443","47.1101822"],["-122.5711737","47.1103692"],["-122.5707605","47.1105513"],["-122.5703547","47.1107501"],["-122.5699082","47.1109837"],["-122.562382","47.1153814"],["-122.5573765","47.1181426"],["-122.5573122","47.1181787"],["-122.5570581","47.1183248"],["-122.555916","47.1190468"],["-122.5525566","47.1211691"],["-122.5456045","47.1251982"],["-122.5432885","47.1264699"],["-122.5416406","47.1274436"],["-122.540186","47.1283604"],["-122.5292781","47.1348316"],["-122.5217526","47.13876"],["-122.5209928","47.1391182"],["-122.5203378","47.1393772"],["-122.5195904","47.1396034"],["-122.5187613","47.1398229"],["-122.5180647","47.1400035"],["-122.5171272","47.1403434"],["-122.5153863","47.1412113"],["-122.5028711","47.147915"],["-122.4848827","47.1583644"],["-122.4843916","47.1586697"],["-122.4838577","47.1590472"],["-122.4832229","47.159536"],["-122.4826501","47.1600849"],["-122.4738738","47.1688026"],["-122.4725741","47.170087"],["-122.4705178","47.1720884"],["-122.4686384","47.1739356"],["-122.4673977","47.1751928"],["-122.4669287","47.1757564"],["-122.4665684","47.1762491"],["-122.4662157","47.1767642"],["-122.4660434","47.1770431"],["-122.4658765","47.1773982"],["-122.4656367","47.1780861"],["-122.4625576","47.1893318"],["-122.4623068","47.1905261"],["-122.4622343","47.1913891"],["-122.4622162","47.1921454"],["-122.4621979","47.1928969"],["-122.4621858","47.1938605"],["-122.46216","47.1955877"],["-122.4621248","47.1963435"],["-122.4620747","47.1970552"],["-122.4620029","47.1976731"],["-122.4618723","47.1985153"],["-122.4614481","47.2009979"],["-122.4611758","47.2028345"],["-122.4611346","47.2033294"],["-122.4611431","47.203685"],["-122.461172","47.2040577"],["-122.4623276","47.2129437"],["-122.4630728","47.2185375"],["-122.4632627","47.220104"],["-122.4633143","47.2209764"],["-122.4633386","47.2217393"],["-122.4633382","47.2221311"],["-122.463323","47.2225381"],["-122.4632713","47.2258363"],["-122.4631953","47.2262599"],["-122.4630267","47.226693"],["-122.462756","47.2272921"],["-122.4625595","47.2276342"],["-122.4623649","47.2279006"],["-122.4620443","47.2282464"],["-122.4612774","47.2289597"],["-122.4609743","47.2291765"],["-122.4606828","47.229372"],["-122.4604902","47.2294889"],["-122.4600024","47.2297545"],["-122.4596591","47.2299128"],["-122.4592479","47.230079"],["-122.4587906","47.2302311"],["-122.458324","47.2303598"],["-122.4578423","47.2304552"],["-122.4573742","47.2305353"],["-122.4567499","47.2306166"],["-122.4559669","47.2306574"],["-122.4554332","47.2306586"],["-122.4547592","47.2306313"],["-122.4534721","47.230517"],["-122.4519971","47.2303609"],["-122.4492912","47.2301058"],["-122.4487033","47.2300917"],["-122.4481799","47.2300854"],["-122.4475444","47.2300989"],["-122.4471807","47.2301201"],["-122.4462854","47.2301945"],["-122.4451368","47.2303477"],["-122.4447199","47.2304192"],["-122.4442504","47.2305196"],["-122.443231","47.2307664"],["-122.4406188","47.2314991"],["-122.4393914","47.2318692"],["-122.4385801","47.2320912"],["-122.4377216","47.2323188"],["-122.4368951","47.232575"],["-122.4359296","47.2327877"],["-122.4352531","47.232897"],["-122.4345497","47.2329953"],["-122.4316366","47.2333283"],["-122.4310116","47.2334105"],["-122.4304086","47.2335077"],["-122.4296816","47.2336637"],["-122.4287099","47.2339181"],["-122.4280899","47.2341214"],["-122.427606","47.2342997"],["-122.4253045","47.235297"],["-122.423818","47.2359447"],["-122.4211411","47.2371316"],["-122.4202974","47.2374788"],["-122.4196631","47.2377032"],["-122.4189906","47.2378912"],["-122.4182469","47.2380742"],["-122.4175458","47.2382078"],["-122.4169995","47.2383012"],["-122.4055277","47.2393045"],["-122.4046907","47.2393591"],["-122.4040838","47.2394145"],["-122.4036128","47.2394683"],["-122.4026444","47.2396147"],["-122.4022283","47.2397048"],["-122.4000983","47.2402391"],["-122.3980565","47.240781"],["-122.397144","47.2409811"],["-122.3963916","47.2411362"],["-122.3950719","47.2413474"],["-122.3944452","47.2414165"],["-122.3938242","47.2414616"],["-122.3931108","47.2414956"],["-122.3922952","47.2415134"],["-122.3914294","47.2414993"],["-122.3905013","47.2414583"],["-122.3897423","47.2414139"],["-122.3882616","47.2413215"],["-122.3747023","47.2404453"],["-122.3683194","47.2404789"],["-122.3420916","47.2411137"],["-122.3414102","47.2411634"],["-122.3409132","47.2412282"],["-122.3404394","47.2413009"],["-122.3398788","47.2414107"],["-122.3392954","47.2415656"],["-122.3386177","47.2417576"],["-122.3381257","47.2419334"],["-122.3375337","47.2422142"],["-122.336975","47.2425226"],["-122.3362861","47.24298"],["-122.3355439","47.2435542"],["-122.3350396","47.2440568"],["-122.3347575","47.2444366"],["-122.334506","47.2448208"],["-122.3342815","47.2452875"],["-122.3339751","47.246204"],["-122.3329796","47.2496277"],["-122.3325369","47.2513455"],["-122.3320763","47.2530943"],["-122.3315684","47.254308"],["-122.3312208","47.255074"],["-122.330672","47.2560859"],["-122.329425","47.2578876"],["-122.3289535","47.2584879"],["-122.3284347","47.2591005"],["-122.3273139","47.2602663"],["-122.3246211","47.2627422"],["-122.3195987","47.2673944"],["-122.3171948","47.2696868"],["-122.3160773","47.2709243"],["-122.3149985","47.2722553"],["-122.3131943","47.2748154"],["-122.309723","47.2803747"],["-122.3095058","47.2807666"],["-122.3091702","47.2814856"],["-122.3089628","47.2820036"],["-122.3082554","47.2840086"],["-122.3078679","47.2851019"],["-122.3075615","47.2860929"],["-122.3015874","47.3038664"],["-122.3004734","47.3070183"],["-122.2953807","47.3197225"],["-122.2950065","47.3207809"],["-122.2946547","47.3220394"],["-122.2944937","47.3226735"],["-122.2943998","47.3231641"],["-122.2942928","47.3236045"],["-122.2941958","47.3242537"],["-122.2939743","47.3265173"],["-122.2938481","47.3280042"],["-122.2925927","47.3429618"],["-122.2925705","47.3435936"],["-122.2925804","47.3441895"],["-122.2926184","47.3447043"],["-122.2926816","47.3451453"],["-122.2927744","47.345642"],["-122.2928643","47.3460766"],["-122.2929773","47.3465578"],["-122.293144","47.347097"],["-122.2934751","47.347902"],["-122.2939385","47.3489114"],["-122.2946852","47.3504223"],["-122.2954339","47.352014"],["-122.2957194","47.3527458"],["-122.2960636","47.353823"],["-122.2961828","47.3544314"],["-122.2962593","47.3550014"],["-122.2963285","47.355613"],["-122.2963381","47.3562741"],["-122.2963339","47.3569422"],["-122.2962771","47.3575835"],["-122.2962038","47.3581317"],["-122.2957315","47.3600118"],["-122.2937176","47.3679451"],["-122.293305","47.3695696"],["-122.2904896","47.3805907"],["-122.2902791","47.3817579"],["-122.2901001","47.3828764"],["-122.2900601","47.3836146"],["-122.2900363","47.3841988"],["-122.2900157","47.384783"],["-122.290006","47.3851775"],["-122.2900075","47.3857294"],["-122.2900744","47.3868584"],["-122.290211","47.3880777"],["-122.29131","47.3957289"],["-122.2916004","47.3976027"],["-122.2920855","47.4008761"],["-122.2921912","47.4017483"],["-122.2922588","47.4025765"],["-122.2922772","47.4035739"],["-122.2922554","47.4043813"],["-122.2921919","47.4053199"],["-122.2920672","47.4065815"],["-122.2918241","47.4081025"],["-122.2915089","47.4093677"],["-122.2900871","47.414607"],["-122.2897332","47.4158434"],["-122.2895512","47.4163768"],["-122.2893365","47.4169557"],["-122.2890509","47.4175496"],["-122.2886366","47.4182475"],["-122.2883319","47.4187116"],["-122.2880279","47.4191148"],["-122.2877201","47.4195044"],["-122.2873469","47.4199484"],["-122.2870168","47.4202929"],["-122.2867835","47.4205191"],["-122.2858918","47.4213099"],["-122.2854757","47.4216313"],["-122.2848812","47.4220541"],["-122.2842367","47.4224925"],["-122.2736366","47.4294094"],["-122.2730662","47.4297967"],["-122.2722736","47.4304136"],["-122.2718988","47.4307525"],["-122.2714903","47.431153"],["-122.2712083","47.4314543"],["-122.2710483","47.4316362"],["-122.2706318","47.4322077"],["-122.2704009","47.4325804"],["-122.2702004","47.4329802"],["-122.2700496","47.4333945"],["-122.2699187","47.4338134"],["-122.269698","47.434715"],["-122.2679666","47.4424269"],["-122.2675487","47.4443948"],["-122.2674294","47.4449373"],["-122.2672735","47.4456036"],["-122.2671306","47.4460857"],["-122.266443","47.447852"],["-122.2645914","47.4523378"],["-122.2640811","47.453504"],["-122.2638767","47.4543136"],["-122.2637106","47.4550029"],["-122.2635563","47.4557201"],["-122.2634518","47.4570596"],["-122.2633793","47.4589876"],["-122.2633653","47.4599526"],["-122.2633814","47.4604837"],["-122.2634049","47.4607753"],["-122.2634289","47.4609651"],["-122.2634594","47.4611296"],["-122.2635555","47.4614479"],["-122.2636721","47.4617445"],["-122.2639845","47.4624582"],["-122.2641724","47.462798"],["-122.2646885","47.4635772"],["-122.2652827","47.4643534"],["-122.2656724","47.4648159"],["-122.2660901","47.4653558"],["-122.2663031","47.465664"],["-122.2666419","47.4662075"],["-122.2668772","47.4666183"],["-122.2671442","47.4671197"],["-122.2675885","47.4681293"],["-122.2682436","47.4704236"],["-122.2685426","47.4715955"],["-122.2687938","47.4725176"],["-122.2689484","47.4730187"],["-122.2692951","47.4739831"],["-122.2707863","47.4771032"],["-122.2712081","47.4779648"],["-122.2713099","47.4781963"],["-122.2713699","47.4783522"],["-122.2714847","47.4787177"],["-122.2715886","47.4791681"],["-122.2716465","47.4794478"],["-122.2716724","47.4797065"],["-122.271685","47.4799492"],["-122.271691","47.4802571"],["-122.2716344","47.4808238"],["-122.2715844","47.4810649"],["-122.2715262","47.4812998"],["-122.2714094","47.4816946"],["-122.2711521","47.4823874"],["-122.2706382","47.4831764"],["-122.270075","47.4838189"],["-122.2698181","47.4840694"],["-122.2690993","47.4846704"],["-122.2676093","47.4858701"],["-122.2657344","47.4873622"],["-122.2652298","47.4878354"],["-122.2648717","47.4882268"],["-122.2646384","47.4885818"],["-122.2644289","47.4889932"],["-122.2643119","47.4893774"],["-122.2642715","47.489583"],["-122.264243","47.489899"],["-122.264241","47.4902663"],["-122.2642979","47.4906113"],["-122.2644098","47.4909595"],["-122.264568","47.4912919"],["-122.2647873","47.4916164"],["-122.2649987","47.4918977"],["-122.2652931","47.4922205"],["-122.266502","47.493261"],["-122.2706698","47.4967247"],["-122.2724478","47.4982774"],["-122.277806","47.503488"],["-122.2798238","47.5057845"],["-122.2824402","47.50918"],["-122.2839218","47.5111358"],["-122.2857198","47.5135141"],["-122.287242","47.5155201"],["-122.2880993","47.5168053"],["-122.2884193","47.5173881"],["-122.2902422","47.5210817"],["-122.2905882","47.5219553"],["-122.2918379","47.5258218"],["-122.2923183","47.5271934"],["-122.2926966","47.5281592"],["-122.2931474","47.5292288"],["-122.2935839","47.530172"],["-122.2942024","47.5314324"],["-122.295442","47.5339298"],["-122.2957095","47.5343921"],["-122.2959996","47.5348506"],["-122.2962846","47.5352617"],["-122.2965857","47.5356383"],["-122.2971061","47.5362151"],["-122.2975686","47.5366932"],["-122.2981706","47.5372544"],["-122.3032706","47.5416782"],["-122.3068113","47.5449311"],["-122.3080281","47.5460507"],["-122.3082872","47.5462551"],["-122.3090491","47.5468161"],["-122.3096457","47.5472373"],["-122.3102782","47.5476426"],["-122.3125934","47.5490026"],["-122.3146084","47.5502712"],["-122.3152425","47.5506668"],["-122.3157521","47.5509823"],["-122.3160079","47.5511751"],["-122.3164815","47.5515962"],["-122.3167232","47.5518449"],["-122.3168989","47.5520558"],["-122.3170528","47.5522803"],["-122.317223","47.5525652"],["-122.3174006","47.5528984"],["-122.3176289","47.5532729"],["-122.3189071","47.5553444"],["-122.3198475","47.5567132"],["-122.3207008","47.5579808"],["-122.3211801","47.5591225"],["-122.3213894","47.5598668"],["-122.3214484","47.56027"],["-122.3214828","47.5605986"],["-122.3214834","47.5611829"],["-122.3214414","47.5617885"],["-122.3213528","47.5624036"],["-122.3210766","47.5637823"],["-122.3207129","47.5657222"],["-122.32006","47.5697323"],["-122.3197019","47.5753419"],["-122.3196798","47.5755713"],["-122.3196455","47.5758679"],["-122.3196125","47.576104"],["-122.3195917","47.5762466"],["-122.319528","47.5765444"],["-122.3194103","47.5770853"],["-122.3191205","47.5782769"],["-122.3190222","47.578867"],["-122.3189844","47.5794486"],["-122.3190408","47.5803813"],["-122.3197693","47.5834358"],["-122.319948","47.5847597"],["-122.3201358","47.5871219"],["-122.3201388","47.5879829"],["-122.3202032","47.5885815"],["-122.320397","47.5893067"],["-122.3205666","47.5899629"],["-122.320613","47.5904329"],["-122.3206408","47.5908233"],["-122.3206475","47.5911089"],["-122.3206423","47.591347"],["-122.3206328","47.5915276"],["-122.3205958","47.5918453"],["-122.3205771","47.5919799"],["-122.3205207","47.5922973"],["-122.3204816","47.5924732"],["-122.3204047","47.5927715"],["-122.3203565","47.5929357"],["-122.3203222","47.5930485"],["-122.3202827","47.5931715"],["-122.3201649","47.5935265"],["-122.3200785","47.5937818"],["-122.3198341","47.5945851"],["-122.3197896","47.5948078"],["-122.3197459","47.5950965"],["-122.3197263","47.5952664"],["-122.3197189","47.5954729"],["-122.3197361","47.5957459"],["-122.3197504","47.5960886"],["-122.3197727","47.5963129"],["-122.3197988","47.5964694"],["-122.3198386","47.5966517"],["-122.319901","47.596899"],["-122.3199433","47.5970633"],["-122.320035","47.597396"],["-122.3201725","47.5977248"],["-122.3202465","47.5978834"],["-122.3203159","47.5980158"],["-122.3204358","47.5982279"],["-122.3205239","47.5983692"],["-122.3206338","47.5985365"],["-122.3207466","47.5986946"],["-122.3208656","47.5988491"],["-122.3209937","47.5990043"],["-122.3211206","47.5991526"],["-122.3213861","47.5994325"],["-122.3215767","47.5996156"],["-122.3217647","47.5997879"],["-122.3224567","47.6003368"],["-122.32545","47.6026113"],["-122.3257657","47.6028729"],["-122.3259934","47.603094"],["-122.3266548","47.6039453"],["-122.3273351","47.6047652"],["-122.3277091","47.6052306"],["-122.3281326","47.6058037"],["-122.3295775","47.607481"],["-122.3299193","47.6073427"],["-122.3321926","47.6063839"]]}};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:[["-122.4204515","37.7743333"],["-122.4208305","37.7740499"],["-122.4212267","37.7737414"],["-122.4213365","37.7737341"],["-122.4213858","37.7737396"],["-122.4214205","37.7737418"],["-122.4215469","37.7737275"],["-122.4223065","37.7736095"],["-122.4222489","37.7732563"],["-122.4221755","37.7731763"],["-122.4219554","37.7729989"],["-122.4218733","37.7730343"],["-122.4214402","37.773378"],["-122.4214124","37.7734433"],["-122.4212633","37.7735717"],["-122.4207636","37.7739785"],["-122.4207095","37.7740279"],["-122.4207062","37.7740412"],["-122.4207075","37.7740575"],["-122.4207182","37.7740879"],["-122.4207352","37.7741326"],["-122.4207859","37.7743003"],["-122.4209927","37.7753183"],["-122.421014","37.7754232"],["-122.4210957","37.776171"],["-122.419622","37.7763643"],["-122.4195449","37.7763735"],["-122.4194192","37.7763933"],["-122.4194467","37.7765569"],["-122.4195557","37.7770754"],["-122.41961","37.7773177"],["-122.4196385","37.7774477"],["-122.41969","37.777712"],["-122.4197648","37.7780771"],["-122.4198097","37.7782875"],["-122.4198829","37.7786366"],["-122.4200747","37.7796069"],["-122.420169","37.780081"],["-122.4201964","37.7802449"],["-122.4203231","37.7808911"],["-122.420353","37.7810466"],["-122.4205271","37.7818935"],["-122.4205495","37.7819769"],["-122.420577","37.7821129"],["-122.4206338","37.7824501"],["-122.4206796","37.7826911"],["-122.420707","37.7828222"],["-122.4207261","37.782921"],["-122.4207432","37.7830101"],["-122.4208134","37.7833567"],["-122.4208378","37.7834626"],["-122.4208824","37.7837061"],["-122.4209087","37.7838429"],["-122.4209465","37.7840012"],["-122.421007","37.7842724"],["-122.4210922","37.7846828"],["-122.4211086","37.7847766"],["-122.421123","37.7848735"],["-122.4211871","37.785217"],["-122.4212206","37.785398"],["-122.421263","37.7856143"],["-122.4213233","37.7858583"],["-122.4213976","37.7862061"],["-122.4214683","37.7865381"],["-122.421495","37.7866393"],["-122.4215369","37.7868283"],["-122.4216413","37.7873312"],["-122.4216744","37.7874926"],["-122.4216758","37.7875738"],["-122.4216821","37.787674"],["-122.4217511","37.7880252"],["-122.4218257","37.7883984"],["-122.4218822","37.7886123"],["-122.4219872","37.7891399"],["-122.4220292","37.7893326"],["-122.4220493","37.7894357"],["-122.4220913","37.7896251"],["-122.4221992","37.7901608"],["-122.4222383","37.7903484"],["-122.422253","37.7904276"],["-122.4223432","37.7908887"],["-122.4223942","37.7911544"],["-122.4224149","37.7912543"],["-122.4224198","37.7913216"],["-122.4224434","37.7914613"],["-122.4225806","37.7920951"],["-122.4226539","37.7922969"],["-122.4227316","37.7927004"],["-122.4227626","37.7930002"],["-122.4227808","37.7930779"],["-122.4228514","37.7933737"],["-122.4229282","37.7937042"],["-122.422961","37.793883"],["-122.4229654","37.7939597"],["-122.4229737","37.7940517"],["-122.4231085","37.794759"],["-122.4231272","37.7948368"],["-122.4231986","37.7951592"],["-122.4232988","37.7956105"],["-122.4233407","37.7958843"],["-122.4234404","37.7963803"],["-122.4234739","37.7965411"],["-122.4235391","37.7968678"],["-122.4236716","37.7975003"],["-122.4237016","37.7976433"],["-122.42378","37.7980483"],["-122.423867","37.7984952"],["-122.4238959","37.7985755"],["-122.4239263","37.7986669"],["-122.4239765","37.7989469"],["-122.4240171","37.7991793"],["-122.4240633","37.7994069"],["-122.4240797","37.7995054"],["-122.4242557","37.8003488"],["-122.4242973","37.8004344"],["-122.4244863","37.801348"],["-122.4247672","37.8013368"],["-122.4438697","37.7989044"],["-122.444152","37.7988708"],["-122.4442458","37.7988639"],["-122.4444415","37.7988582"],["-122.4445196","37.7988597"],["-122.444597","37.7988644"],["-122.4446683","37.7988743"],["-122.4447455","37.7988919"],["-122.4448247","37.7989169"],["-122.4449026","37.7989459"],["-122.4449639","37.7989707"],["-122.4450235","37.7989978"],["-122.4450772","37.799027"],["-122.445158","37.7990799"],["-122.4465055","37.8000021"],["-122.4465337","37.8000209"],["-122.447623","37.8007739"],["-122.447718","37.8008387"],["-122.4480569","37.8010697"],["-122.4481114","37.8011064"],["-122.449153","37.8018281"],["-122.4492337","37.8018906"],["-122.4493116","37.801956"],["-122.4494387","37.8020688"],["-122.4494749","37.8021026"],["-122.4497464","37.8023657"],["-122.4500355","37.8026449"],["-122.4500897","37.8026938"],["-122.4502182","37.8027999"],["-122.45031","37.8028701"],["-122.4503592","37.8029051"],["-122.450499","37.8029966"],["-122.4505713","37.8030383"],["-122.4506502","37.803082"],["-122.4507215","37.8031194"],["-122.4507892","37.8031525"],["-122.4509225","37.8032113"],["-122.4510045","37.803243"],["-122.4511031","37.8032775"],["-122.4511757","37.8033013"],["-122.4513352","37.8033452"],["-122.4514094","37.8033635"],["-122.4515694","37.803397"],["-122.4516518","37.8034103"],["-122.4521412","37.8034635"],["-122.4523864","37.8034765"],["-122.4525509","37.8034799"],["-122.4528382","37.8034735"],["-122.4530052","37.8034653"],["-122.4533554","37.8034318"],["-122.4539841","37.8033575"],["-122.4542381","37.8033283"],["-122.4561333","37.8030575"],["-122.4564635","37.8029971"],["-122.4567622","37.8029353"],["-122.4572536","37.8028188"],["-122.4603597","37.8019243"],["-122.4605183","37.8018867"],["-122.4606745","37.8018536"],["-122.4608209","37.801826"],["-122.460984","37.8017991"],["-122.4611561","37.8017754"],["-122.4612722","37.8017611"],["-122.4615649","37.8017354"],["-122.4617937","37.8017313"],["-122.4620295","37.8017277"],["-122.4622709","37.801735"],["-122.4625214","37.8017455"],["-122.4627756","37.8017665"],["-122.4630573","37.8017973"],["-122.4634306","37.8018606"],["-122.4680985","37.8028217"],["-122.4692293","37.8031192"],["-122.469553","37.8032241"],["-122.4711946","37.8039037"],["-122.4716048","37.8041178"],["-122.4719871","37.8043352"],["-122.4726303","37.8047447"],["-122.4729832","37.8049927"],["-122.473105","37.8050845"],["-122.4732338","37.8051914"],["-122.4733497","37.8052955"],["-122.4734886","37.8054343"],["-122.4736744","37.8056255"],["-122.474259","37.8061656"],["-122.4745136","37.8064035"],["-122.4745751","37.8064662"],["-122.4746565","37.8065533"],["-122.4749753","37.8069137"],["-122.4750031","37.8069434"],["-122.4750259","37.8069675"],["-122.4751419","37.8070813"],["-122.4752293","37.8071664"],["-122.475564","37.8074709"],["-122.4755941","37.8074975"],["-122.4756823","37.8075658"],["-122.4757386","37.8076067"],["-122.4759785","37.8077746"],["-122.4762475","37.8079529"],["-122.4763258","37.8080079"],["-122.4763869","37.8080568"],["-122.4764799","37.8081373"],["-122.4765761","37.8082362"],["-122.4766897","37.8083605"],["-122.476781","37.8084652"],["-122.4768707","37.808578"],["-122.4769464","37.8086832"],["-122.4770192","37.8087979"],["-122.4770831","37.8089102"],["-122.4771442","37.8090304"],["-122.4771967","37.8091478"],["-122.4772328","37.8092477"],["-122.4772678","37.8093548"],["-122.4772955","37.8094671"],["-122.4773168","37.8095726"],["-122.4779549","37.8149916"],["-122.4797893","37.8306308"],["-122.4798092","37.830764"],["-122.4798365","37.830894"],["-122.4798712","37.8310278"],["-122.4799151","37.8311573"],["-122.4799653","37.8312871"],["-122.4800194","37.8314096"],["-122.4800828","37.8315364"],["-122.4801505","37.8316509"],["-122.4802513","37.8318008"],["-122.4803336","37.8319089"],["-122.4804234","37.8320207"],["-122.4805165","37.8321235"],["-122.4807253","37.8323323"],["-122.4808439","37.8324372"],["-122.480956","37.8325274"],["-122.4810754","37.8326159"],["-122.4811996","37.8326993"],["-122.4813356","37.8327818"],["-122.4814674","37.8328555"],["-122.4822928","37.8332927"],["-122.4825487","37.8334292"],["-122.4826857","37.8335082"],["-122.4828101","37.8335831"],["-122.483067","37.8337575"],["-122.4831733","37.8338371"],["-122.4832746","37.8339172"],["-122.4833853","37.8340094"],["-122.4834856","37.8340966"],["-122.4835922","37.8341948"],["-122.4836945","37.8342962"],["-122.4837822","37.8343913"],["-122.483873","37.8344946"],["-122.4839611","37.834602"],["-122.4840489","37.8347155"],["-122.4841279","37.8348271"],["-122.4842021","37.8349404"],["-122.486157","37.8380171"],["-122.4864323","37.8384208"],["-122.4865015","37.8385383"],["-122.4865581","37.8386497"],["-122.4866104","37.8387721"],["-122.4866579","37.8389067"],["-122.4866965","37.839039"],["-122.4867235","37.8391648"],["-122.4867424","37.8392999"],["-122.4867517","37.8394285"],["-122.4867547","37.839559"],["-122.4867465","37.839691"],["-122.4867297","37.8398196"],["-122.4867036","37.8399495"],["-122.4866692","37.8400789"],["-122.4866304","37.8401982"],["-122.48658","37.840321"],["-122.4865211","37.840446"],["-122.4864576","37.8405637"],["-122.4863806","37.8406841"],["-122.4858068","37.8414889"],["-122.4857338","37.8416059"],["-122.4856711","37.8417217"],["-122.4856119","37.8418521"],["-122.4855656","37.8419723"],["-122.4855237","37.8421033"],["-122.4854934","37.842227"],["-122.4854706","37.8423565"],["-122.4854563","37.8424913"],["-122.4854532","37.8426226"],["-122.4854577","37.8427508"],["-122.4854721","37.8428836"],["-122.485496","37.8430151"],["-122.485524","37.8431312"],["-122.4860432","37.8451212"],["-122.486298","37.846085"],["-122.4863456","37.8462169"],["-122.4863989","37.8463418"],["-122.4864619","37.8464631"],["-122.4865331","37.846582"],["-122.4866115","37.8466976"],["-122.4866975","37.8468115"],["-122.4867899","37.84692"],["-122.4868822","37.8470146"],["-122.4869885","37.8471158"],["-122.487104","37.8472125"],["-122.4872103","37.8472938"],["-122.488488","37.8481745"],["-122.4886078","37.8482631"],["-122.4887192","37.8483534"],["-122.4888275","37.8484531"],["-122.4889257","37.848554"],["-122.4890254","37.8486655"],["-122.489111","37.8487746"],["-122.4891924","37.8488863"],["-122.4892654","37.8490045"],["-122.4893301","37.8491283"],["-122.4893851","37.8492499"],["-122.4894316","37.8493741"],["-122.4894722","37.8495043"],["-122.4895095","37.8496341"],["-122.4896099","37.8500287"],["-122.4896706","37.8502636"],["-122.4897122","37.8503913"],["-122.489759","37.8505123"],["-122.489814","37.8506379"],["-122.4898704","37.8507532"],["-122.4899394","37.8508744"],["-122.490014","37.8509884"],["-122.4900929","37.8510986"],["-122.4901804","37.8512083"],["-122.4902763","37.8513184"],["-122.4903723","37.8514193"],["-122.4904815","37.8515237"],["-122.49059","37.8516161"],["-122.4907038","37.8517083"],["-122.4908245","37.8517964"],["-122.4911279","37.8519967"],["-122.4918491","37.8524659"],["-122.491967","37.8525503"],["-122.4920858","37.8526424"],["-122.4921982","37.8527379"],["-122.4923084","37.8528412"],["-122.4924035","37.8529381"],["-122.4925041","37.8530511"],["-122.4925913","37.8531602"],["-122.4926708","37.85327"],["-122.4927487","37.85339"],["-122.4928184","37.8535124"],["-122.4928795","37.8536295"],["-122.4935693","37.8551071"],["-122.493635","37.8552205"],["-122.4937123","37.8553414"],["-122.4937887","37.8554508"],["-122.4938791","37.8555638"],["-122.4939747","37.8556723"],["-122.4940682","37.8557699"],["-122.4941949","37.8558886"],["-122.4942871","37.8559663"],["-122.4944132","37.8560607"],["-122.4945304","37.8561435"],["-122.4946587","37.8562248"],["-122.4947956","37.8563032"],["-122.4949217","37.8563697"],["-122.4950747","37.85644"],["-122.4952084","37.8564973"],["-122.4953642","37.8565551"],["-122.4955051","37.8566021"],["-122.4956594","37.8566466"],["-122.4958276","37.8566875"],["-122.4966983","37.8568725"],["-122.4972536","37.8569912"],["-122.4974114","37.8570303"],["-122.4975692","37.8570737"],["-122.4977179","37.857122"],["-122.4978733","37.8571777"],["-122.4980267","37.8572394"],["-122.4981592","37.857297"],["-122.4983","37.8573639"],["-122.4984448","37.8574401"],["-122.4985751","37.8575143"],["-122.4987032","37.8575935"],["-122.4988303","37.8576784"],["-122.4989494","37.8577647"],["-122.4990674","37.8578594"],["-122.499186","37.8579596"],["-122.4992886","37.8580542"],["-122.4993912","37.8581555"],["-122.5003307","37.8591839"],["-122.5004613","37.8593211"],["-122.5005682","37.8594264"],["-122.500676","37.8595279"],["-122.5008922","37.8597158"],["-122.5010073","37.8598089"],["-122.5011279","37.8599023"],["-122.5013735","37.8600798"],["-122.5014955","37.8601638"],["-122.5016203","37.8602436"],["-122.5020263","37.8604788"],["-122.5021672","37.8605548"],["-122.5038983","37.8613603"],["-122.5041221","37.8614769"],["-122.5042501","37.8615493"],["-122.5043862","37.8616297"],["-122.504637","37.8617903"],["-122.5048919","37.8619674"],["-122.5050157","37.8620595"],["-122.5051269","37.8621484"],["-122.5052385","37.862241"],["-122.5053596","37.8623478"],["-122.5055657","37.8625435"],["-122.505663","37.8626419"],["-122.5057595","37.8627445"],["-122.5058659","37.8628646"],["-122.5059472","37.8629617"],["-122.5060407","37.8630803"],["-122.5062019","37.8632979"],["-122.5062856","37.8634239"],["-122.5063543","37.8635319"],["-122.5064279","37.863657"],["-122.5065558","37.8638956"],["-122.5066144","37.8640211"],["-122.5066672","37.8641398"],["-122.5067186","37.8642635"],["-122.5067673","37.8643903"],["-122.5068102","37.864517"],["-122.5068519","37.8646518"],["-122.5068852","37.8647692"],["-122.506919","37.8649032"],["-122.5069472","37.865033"],["-122.5069715","37.8651655"],["-122.5069924","37.8652929"],["-122.5070076","37.8654169"],["-122.50708","37.8700434"],["-122.5070443","37.8706262"],["-122.5069897","37.8711064"],["-122.506979","37.8713043"],["-122.5069778","37.8714812"],["-122.5069819","37.8716507"],["-122.5069906","37.87181"],["-122.5070074","37.8719612"],["-122.5070171","37.8720273"],["-122.5070561","37.8722495"],["-122.5070873","37.8724212"],["-122.5071074","37.8725596"],["-122.5071087","37.872595"],["-122.5071058","37.8726298"],["-122.5070965","37.8726644"],["-122.5070847","37.8726952"],["-122.5070705","37.8727234"],["-122.5070515","37.8727522"],["-122.5070311","37.8727765"],["-122.5070058","37.8728026"],["-122.5069494","37.8728482"],["-122.5069179","37.8728706"],["-122.506888","37.8728876"],["-122.5068534","37.8729054"],["-122.5068155","37.8729188"],["-122.5067771","37.8729296"],["-122.5067374","37.8729378"],["-122.506699","37.8729426"],["-122.5066588","37.8729465"],["-122.5066174","37.8729477"],["-122.5065795","37.8729457"],["-122.5065372","37.8729418"],["-122.506498","37.8729354"],["-122.5064554","37.8729249"],["-122.5064194","37.872913"],["-122.5063845","37.872899"],["-122.506349","37.8728829"],["-122.5063125","37.8728644"],["-122.5061092","37.8727519"],["-122.5060123","37.8726311"],["-122.5059971","37.8726089"],["-122.5059862","37.872589"],["-122.505978","37.8725688"],["-122.5059724","37.872546"],["-122.5059713","37.872523"],["-122.505973","37.8725002"],["-122.5059804","37.8724789"],["-122.5060267","37.8723863"],["-122.5061333","37.8721998"],["-122.5064054","37.8719906"],["-122.5065602","37.8718791"],["-122.5066372","37.8718323"],["-122.5068506","37.8717709"],["-122.5069414","37.871736"],["-122.5070618","37.8716962"],["-122.5071692","37.8716696"],["-122.5072747","37.871653"],["-122.5073832","37.8716446"],["-122.5075115","37.8716469"],["-122.5076191","37.8716571"],["-122.5078559","37.8716599"],["-122.50793","37.8716735"],["-122.5079991","37.8716853"],["-122.5080767","37.8716934"],["-122.5081572","37.8716981"],["-122.5082326","37.8716988"],["-122.5083594","37.8716925"],["-122.5084702","37.8716849"],["-122.5084766","37.8717557"],["-122.5084868","37.8718132"],["-122.5085111","37.8718826"],["-122.5085792","37.8720364"],["-122.5086076","37.8721031"],["-122.5086176","37.8721317"],["-122.5086247","37.872162"],["-122.5086299","37.8721893"],["-122.5086319","37.8722158"],["-122.5086316","37.8722445"],["-122.5086287","37.872273"],["-122.5086236","37.8722992"],["-122.508615","37.8723273"],["-122.5086058","37.8723548"],["-122.5085913","37.8723834"],["-122.5085741","37.8724127"],["-122.5085523","37.8724432"],["-122.5085273","37.8724694"],["-122.5084996","37.872493"],["-122.5084692","37.8725162"],["-122.5084378","37.8725357"],["-122.508403","37.8725546"],["-122.5083643","37.872572"],["-122.5083274","37.8725855"],["-122.5082872","37.8725989"],["-122.5082467","37.8726084"],["-122.5082045","37.8726147"],["-122.508162","37.8726178"],["-122.5081205","37.8726176"],["-122.5080755","37.8726157"],["-122.5080379","37.8726107"],["-122.5079978","37.8726026"],["-122.5079623","37.8725934"],["-122.507926","37.8725799"],["-122.5078916","37.8725647"],["-122.5078582","37.8725465"],["-122.5078276","37.8725269"],["-122.5077993","37.8725037"],["-122.5077725","37.8724799"],["-122.5077461","37.8724539"],["-122.5077253","37.8724272"],["-122.5077061","37.8723997"],["-122.5076868","37.8723692"],["-122.5076673","37.8723346"],["-122.5076508","37.8723012"],["-122.5076362","37.8722683"],["-122.5076233","37.8722375"],["-122.5075912","37.872152"],["-122.5075719","37.8720929"],["-122.5074154","37.8715711"],["-122.5072911","37.8711877"],["-122.5072768","37.8710328"],["-122.5072317","37.8657871"],["-122.5072265","37.8656591"],["-122.5072181","37.8655314"],["-122.5072053","37.8653912"],["-122.5071888","37.8652597"],["-122.5071717","37.8651411"],["-122.5071473","37.8650058"],["-122.5071182","37.8648704"],["-122.5070881","37.864751"],["-122.5070515","37.8646233"],["-122.5070083","37.864483"],["-122.5069637","37.8643551"],["-122.5069202","37.8642362"],["-122.5068673","37.8641086"],["-122.5067502","37.863854"],["-122.5066905","37.8637354"],["-122.5066225","37.8636116"],["-122.5065516","37.8634908"],["-122.5064848","37.8633843"],["-122.5064013","37.8632586"],["-122.5063208","37.8631422"],["-122.5062353","37.8630277"],["-122.5060591","37.8628076"],["-122.5059693","37.8627046"],["-122.505861","37.8625853"],["-122.5057648","37.8624855"],["-122.505659","37.8623806"],["-122.5055581","37.8622854"],["-122.5054347","37.8621758"],["-122.5052177","37.8619937"],["-122.5050859","37.8618926"],["-122.5049796","37.8618142"],["-122.5048471","37.8617209"],["-122.5047139","37.8616322"],["-122.5045938","37.8615548"],["-122.5044604","37.8614739"],["-122.5043137","37.8613893"],["-122.5041917","37.8613219"],["-122.5039044","37.8611769"],["-122.5023237","37.8604483"],["-122.5021782","37.8603737"],["-122.5020402","37.8602974"],["-122.5017898","37.8601496"],["-122.5016579","37.8600667"],["-122.5012759","37.8598004"],["-122.5011591","37.8597096"],["-122.5010491","37.8596207"],["-122.5009317","37.8595217"],["-122.5008203","37.8594228"],["-122.5007143","37.8593237"],["-122.5006073","37.8592195"],["-122.4998828","37.8584328"],["-122.4995368","37.8580544"],["-122.4994423","37.8579587"],["-122.499338","37.8578607"],["-122.4992281","37.8577658"],["-122.4991108","37.857673"],["-122.4989896","37.8575825"],["-122.4988575","37.8574939"],["-122.498733","37.8574156"],["-122.4986024","37.8573385"],["-122.498459","37.8572605"],["-122.4983261","37.8571953"],["-122.4981837","37.8571307"],["-122.4980238","37.8570646"],["-122.497877","37.8570087"],["-122.4977265","37.8569576"],["-122.4975789","37.856913"],["-122.4974131","37.8568674"],["-122.4963248","37.8566281"],["-122.4957926","37.8565142"],["-122.495635","37.8564722"],["-122.4954849","37.8564231"],["-122.4953309","37.8563688"],["-122.4951807","37.8563057"],["-122.4950439","37.8562432"],["-122.4949109","37.856172"],["-122.4947797","37.8560941"],["-122.4946462","37.8560088"],["-122.4945229","37.8559208"],["-122.4944075","37.8558302"],["-122.4942993","37.855734"],["-122.4941921","37.8556295"],["-122.4940944","37.8555227"],["-122.4940048","37.8554162"],["-122.4939177","37.855298"],["-122.4938427","37.8551846"],["-122.4937769","37.8550697"],["-122.4937147","37.8549391"],["-122.4936717","37.8547116"],["-122.493644","37.8545819"],["-122.4935874","37.8543982"],["-122.4933898","37.8537919"],["-122.4933723","37.8537307"],["-122.4933597","37.8536753"],["-122.4933534","37.8536295"],["-122.4933522","37.853591"],["-122.4933545","37.8535548"],["-122.4933601","37.8535217"],["-122.4933694","37.8534926"],["-122.4933986","37.8534292"],["-122.4934244","37.8533721"],["-122.4934497","37.8533133"],["-122.4934737","37.8532541"],["-122.4934845","37.8532172"],["-122.493499","37.8531547"],["-122.4934998","37.8531272"],["-122.4934979","37.8530971"],["-122.4934929","37.8530709"],["-122.4934858","37.8530449"],["-122.4934777","37.8530142"],["-122.4934646","37.8529821"],["-122.4934455","37.8529532"],["-122.4934176","37.8529262"],["-122.4933809","37.8529014"],["-122.4933344","37.8528813"],["-122.4932842","37.8528685"],["-122.4932357","37.8528613"],["-122.4931869","37.8528583"],["-122.4931366","37.8528564"],["-122.4929467","37.8528624"],["-122.4925231","37.852884"],["-122.4923856","37.8528949"],["-122.4922736","37.8529129"],["-122.492218","37.8529271"],["-122.4921658","37.8529461"],["-122.4921191","37.8529654"],["-122.4920737","37.8529943"],["-122.4921744","37.8530937"],["-122.4922976","37.8532243"],["-122.4923958","37.8533407"],["-122.4924803","37.8534493"],["-122.4925561","37.8535576"],["-122.4926295","37.8536693"],["-122.4927119","37.8538024"],["-122.4927953","37.8539487"],["-122.4929202","37.8541772"],["-122.4929533","37.8542539"],["-122.492979","37.8543448"],["-122.4930184","37.8544093"],["-122.4930591","37.8544708"],["-122.4930999","37.8545259"],["-122.4931425","37.8545856"],["-122.4932155","37.8547049"],["-122.4933407","37.8549178"],["-122.4934671","37.8551294"],["-122.4935483","37.8552459"],["-122.4936426","37.8553652"],["-122.493742","37.855475"],["-122.4938451","37.8555801"],["-122.4939575","37.8556813"],["-122.4940669","37.8557717"],["-122.4941922","37.855886"],["-122.494288","37.855967"],["-122.4944081","37.8560569"],["-122.4945316","37.8561446"],["-122.4946593","37.8562251"],["-122.494783","37.8562963"],["-122.4949229","37.8563702"],["-122.4950665","37.8564362"],["-122.4952121","37.8564989"],["-122.4953644","37.8565551"],["-122.4955129","37.8566049"],["-122.4956668","37.8566488"],["-122.4958207","37.8566858"],["-122.4966315","37.8568584"],["-122.4972682","37.8569946"],["-122.4974055","37.8570285"],["-122.4975698","37.8570738"],["-122.4977167","37.8571215"],["-122.4978673","37.8571754"],["-122.4980245","37.8572384"],["-122.4981587","37.8572967"],["-122.4983087","37.8573684"],["-122.4984418","37.8574384"],["-122.4985729","37.857513"],["-122.4987064","37.8575956"],["-122.4988288","37.8576773"],["-122.4989563","37.8577701"],["-122.4990702","37.8578618"],["-122.4991803","37.8579542"],["-122.4992952","37.8580608"],["-122.4993973","37.8581622"],["-122.5003211","37.8591734"],["-122.5004675","37.8593276"],["-122.5005644","37.8594229"],["-122.5006708","37.8595232"],["-122.5008988","37.8597218"],["-122.5010191","37.8598183"],["-122.5011251","37.8599006"],["-122.5013764","37.8600816"],["-122.5014988","37.8601658"],["-122.5016229","37.8602453"],["-122.5020299","37.8604807"],["-122.5021661","37.8605539"],["-122.5038979","37.8613604"],["-122.5041354","37.8614843"],["-122.5042592","37.8615544"],["-122.504385","37.8616287"],["-122.5046478","37.8617978"],["-122.5048827","37.8619607"],["-122.5050072","37.8620531"],["-122.5051216","37.8621438"],["-122.5052434","37.8622453"],["-122.505347","37.8623363"],["-122.5055624","37.8625403"],["-122.5056672","37.8626458"],["-122.5057638","37.8627494"],["-122.5058612","37.8628594"],["-122.5059559","37.8629726"],["-122.5060439","37.8630845"],["-122.5062026","37.863299"],["-122.5062798","37.8634146"],["-122.5063568","37.8635358"],["-122.5064254","37.8636525"],["-122.506555","37.8638932"],["-122.5066126","37.8640169"],["-122.5066686","37.8641433"],["-122.5067159","37.8642574"],["-122.5067678","37.8643923"],["-122.5068129","37.8645253"],["-122.5068507","37.8646465"],["-122.5068843","37.8647648"],["-122.5069181","37.8648994"],["-122.5069478","37.8650359"],["-122.5069723","37.8651685"],["-122.5069915","37.8652855"],["-122.5070073","37.8654136"],["-122.5070969","37.8710555"],["-122.5071028","37.8711875"],["-122.507113","37.8713226"],["-122.507129","37.8714563"],["-122.5071687","37.8717155"],["-122.5071961","37.8718482"],["-122.507222","37.8719615"],["-122.5072569","37.8721013"],["-122.5072901","37.8722207"],["-122.5073277","37.872343"],["-122.507376","37.8724797"],["-122.5074202","37.872597"],["-122.5075275","37.8728427"],["-122.507581","37.8729541"],["-122.5076407","37.8730715"],["-122.5077079","37.8731934"],["-122.5078495","37.8734284"],["-122.5079174","37.8735338"],["-122.5079962","37.8736475"],["-122.5080751","37.8737546"],["-122.5081671","37.8738741"],["-122.5082567","37.8739865"],["-122.5083435","37.8740893"],["-122.5084363","37.8741928"],["-122.508531","37.8742942"],["-122.5086254","37.8743897"],["-122.5087309","37.8744912"],["-122.5088377","37.8745893"],["-122.5090648","37.8747864"],["-122.5110829","37.8763626"],["-122.5114875","37.8767388"],["-122.5116638","37.8769005"],["-122.5117944","37.8770045"],["-122.5139544","37.8786466"],["-122.5140096","37.8786948"],["-122.5140756","37.878754"],["-122.5141332","37.8788052"],["-122.5142083","37.8788647"],["-122.5143094","37.8789361"],["-122.5144891","37.8790621"],["-122.5154848","37.8797996"],["-122.5155768","37.8798628"],["-122.5156707","37.8799196"],["-122.5157419","37.8799605"],["-122.5157819","37.8799821"],["-122.515862","37.8800206"],["-122.5159396","37.880057"],["-122.5161285","37.8801341"],["-122.5163513","37.8802094"],["-122.516468","37.8802443"],["-122.51658","37.8802745"],["-122.5169201","37.8803401"],["-122.5169791","37.8803486"],["-122.5171296","37.8803617"],["-122.5173236","37.8803713"],["-122.5174476","37.8803763"],["-122.5176962","37.8803883"],["-122.5178073","37.880396"],["-122.5180464","37.8804209"],["-122.5181644","37.8804385"],["-122.5183097","37.8804643"],["-122.5184349","37.88049"],["-122.518636","37.8805399"],["-122.51877","37.8805814"],["-122.5189172","37.8806287"],["-122.5190318","37.8806685"],["-122.5196521","37.8809155"],["-122.5197262","37.8809387"],["-122.5198041","37.8809607"],["-122.5198772","37.8809763"],["-122.5199552","37.8809861"],["-122.5200308","37.8809914"],["-122.5200947","37.8809933"],["-122.5201612","37.8809938"],["-122.520223","37.8809896"],["-122.5202897","37.8809832"],["-122.5203636","37.8809718"],["-122.5204479","37.880955"],["-122.5205397","37.8809324"],["-122.5206364","37.8809029"],["-122.5207286","37.8808684"],["-122.5208145","37.8808315"],["-122.5208921","37.8807915"],["-122.520971","37.8807452"],["-122.5210501","37.8806916"],["-122.5211202","37.8806335"],["-122.5211897","37.8805662"],["-122.5212513","37.8804965"],["-122.5213101","37.88042"],["-122.5213749","37.8803234"],["-122.5214394","37.8802222"],["-122.5214993","37.8801356"],["-122.5215568","37.8800605"],["-122.5216166","37.8799953"],["-122.5216765","37.8799402"],["-122.5217413","37.8798874"],["-122.5218091","37.8798375"],["-122.5218772","37.8797937"],["-122.521954","37.8797489"],["-122.5220331","37.879709"],["-122.5221386","37.879667"],["-122.5223788","37.8795989"],["-122.522551","37.8795676"],["-122.5226803","37.8795631"],["-122.5228816","37.879581"],["-122.523057","37.8796203"],["-122.5231201","37.879638"],["-122.5231681","37.8796548"],["-122.5232125","37.8796734"],["-122.5232534","37.8796929"],["-122.523301","37.8797182"],["-122.5233381","37.8797388"],["-122.5233678","37.8797568"],["-122.5233922","37.8797732"],["-122.5234267","37.8797982"],["-122.5234732","37.8798371"],["-122.5235266","37.8798883"],["-122.5235722","37.8799369"],["-122.5236182","37.8799893"],["-122.523671","37.8800582"],["-122.5238185","37.880273"],["-122.524629","37.8815226"],["-122.5247677","37.8817418"],["-122.5248632","37.8819116"],["-122.5248795","37.8819475"],["-122.5248889","37.881973"],["-122.5248999","37.8820057"],["-122.5249079","37.8820363"],["-122.5249166","37.8820725"],["-122.5249229","37.8821147"],["-122.5249403","37.8821125"],["-122.5249776","37.8821028"],["-122.5250299","37.8820873"],["-122.5250774","37.8820694"],["-122.5251212","37.8820507"],["-122.5251705","37.8820267"],["-122.5252478","37.8819861"],["-122.5253134","37.881951"],["-122.5253861","37.8819108"],["-122.525512","37.881836"],["-122.5255889","37.8817894"],["-122.5256666","37.8817473"],["-122.5257783","37.881673"],["-122.5258901","37.8815996"],["-122.5261436","37.881419"],["-122.5266581","37.8810075"],["-122.5267345","37.8809312"],["-122.5268012","37.8808502"],["-122.5270922","37.8804299"],["-122.5271655","37.8803436"],["-122.5272471","37.8802735"],["-122.5273533","37.8801947"],["-122.5276045","37.8800436"],["-122.5278114","37.8799174"],["-122.5279074","37.879847"],["-122.5279943","37.8797465"],["-122.528257","37.8793628"],["-122.5283499","37.8792678"],["-122.5284657","37.8791761"],["-122.5285587","37.8791334"],["-122.5286647","37.8790964"],["-122.5288226","37.8790698"],["-122.5290618","37.879056"],["-122.5293555","37.8790533"],["-122.5303839","37.8790663"],["-122.5309997","37.8790533"],["-122.5314142","37.8790351"],["-122.5316435","37.8790193"],["-122.5321307","37.878991"],["-122.5323699","37.8789986"],["-122.532555","37.879015"],["-122.532704","37.8790375"],["-122.5330039","37.8790879"],["-122.5339536","37.8792953"],["-122.5350633","37.8795649"],["-122.5352684","37.8796023"],["-122.5355898","37.8796536"],["-122.5365231","37.8797678"],["-122.5368875","37.8798142"],["-122.5371289","37.8798545"],["-122.537225","37.8798762"],["-122.5373393","37.8799117"],["-122.5374694","37.8799621"],["-122.5376015","37.8800203"],["-122.5377225","37.8800837"],["-122.5378174","37.8801449"],["-122.5379114","37.8802156"],["-122.5380455","37.8803416"],["-122.5381798","37.8804718"],["-122.5382494","37.8805517"],["-122.5382922","37.8806121"],["-122.5383328","37.8807052"],["-122.5383652","37.8808006"],["-122.5383804","37.8809051"],["-122.5383929","37.8810311"],["-122.5383841","37.8812842"],["-122.5383722","37.8814641"],["-122.5383604","37.8816482"],["-122.538358","37.8817707"],["-122.5383622","37.8821098"],["-122.5383674","37.8823021"],["-122.5383669","37.8825165"],["-122.5383369","37.8830148"],["-122.5383183","37.8831221"],["-122.538296","37.8832254"],["-122.5381963","37.8835312"],["-122.5381727","37.8836255"],["-122.5381524","37.8837413"],["-122.5381325","37.8839441"],["-122.5380575","37.8850537"],["-122.5380361","37.8851751"],["-122.5380189","37.8852277"],["-122.5379985","37.8852817"],["-122.5379674","37.8853541"],["-122.5379063","37.8854466"],["-122.5378438","37.8855319"],["-122.5377857","37.8856084"],["-122.5376992","37.8857152"],["-122.5374886","37.8859869"],["-122.537469","37.8860209"],["-122.5374532","37.8860547"],["-122.5374425","37.8860935"],["-122.5374427","37.8861318"],["-122.5374539","37.8861779"],["-122.53747","37.8862094"],["-122.5374886","37.886234"],["-122.5375198","37.8862579"],["-122.5375581","37.8862767"],["-122.5375963","37.8862916"],["-122.5376495","37.8862995"],["-122.5376953","37.8863037"],["-122.5377367","37.8863024"],["-122.5378636","37.8862743"],["-122.538561","37.886086"],["-122.5387316","37.886046"],["-122.5387896","37.8860402"],["-122.5388446","37.8860417"],["-122.5389085","37.8860494"],["-122.5389738","37.8860682"],["-122.539028","37.8860875"],["-122.5391631","37.8861539"],["-122.5394241","37.8862895"],["-122.5395677","37.8863721"],["-122.5396683","37.8864409"],["-122.5397648","37.8865189"],["-122.5398616","37.8866029"],["-122.5399661","37.886697"],["-122.5400716","37.886803"],["-122.540173","37.8869432"],["-122.5402115","37.8870186"],["-122.5402358","37.8870734"],["-122.5402605","37.8871337"],["-122.5402754","37.8871996"],["-122.5403044","37.8874084"],["-122.5403135","37.8874352"],["-122.5403303","37.8874586"],["-122.5403482","37.887482"],["-122.5403674","37.8875007"],["-122.5403904","37.8875147"],["-122.5404246","37.8875267"],["-122.5406882","37.8875715"],["-122.540776","37.887607"],["-122.5408237","37.887636"],["-122.5408667","37.8876653"],["-122.5409146","37.8877074"],["-122.5411819","37.8879942"],["-122.5412217","37.8880235"],["-122.5412563","37.8880411"],["-122.5413138","37.8880573"],["-122.5413443","37.8880607"],["-122.5413707","37.8880578"],["-122.5413973","37.8880517"],["-122.5414212","37.8880427"],["-122.541445","37.8880286"],["-122.5414652","37.8880077"],["-122.5414709","37.8879772"],["-122.5414702","37.887916"],["-122.5414454","37.8875962"],["-122.5414444","37.8874986"],["-122.5414466","37.8874398"],["-122.541456","37.8873961"],["-122.5414649","37.8873734"],["-122.5414925","37.8873256"],["-122.5416162","37.8871253"],["-122.5416336","37.887081"],["-122.5416406","37.8870476"],["-122.5416426","37.8870113"],["-122.5416395","37.8869735"],["-122.5416286","37.8869411"],["-122.5416113","37.8869138"],["-122.5415517","37.8868626"],["-122.541327","37.886714"],["-122.5412948","37.8866759"],["-122.5412866","37.8866439"],["-122.5412863","37.8866103"],["-122.541295","37.8865796"],["-122.5413055","37.8865449"],["-122.5413204","37.8865166"],["-122.5413368","37.8864896"],["-122.541387","37.8864446"],["-122.5418625","37.886117"],["-122.5419637","37.8860636"],["-122.5420587","37.8860378"],["-122.5421489","37.8860304"],["-122.5422703","37.8860491"],["-122.5423832","37.8860795"],["-122.542484","37.8861282"],["-122.5425696","37.8861859"],["-122.5426589","37.8862646"],["-122.5427657","37.8863896"],["-122.5429317","37.886623"],["-122.5430128","37.8867165"],["-122.5430951","37.8867921"],["-122.5432884","37.8869456"],["-122.5434944","37.8871883"],["-122.54356","37.8872502"],["-122.5436154","37.8872893"],["-122.5436846","37.8873167"],["-122.5437787","37.8873467"],["-122.5438951","37.8873768"],["-122.5440341","37.88741"],["-122.5441856","37.8874507"],["-122.5442679","37.8874903"],["-122.5443259","37.8875302"],["-122.5444019","37.8876167"],["-122.5445671","37.8878595"],["-122.5446492","37.8879483"],["-122.5446866","37.8879705"],["-122.5447369","37.8879856"],["-122.5447869","37.8879913"],["-122.5448442","37.8879843"],["-122.5448836","37.8879647"],["-122.5449345","37.8879154"],["-122.5450399","37.8877391"],["-122.5451473","37.887652"],["-122.545259","37.8876104"],["-122.5454348","37.8876016"],["-122.5455991","37.8876343"],["-122.5459671","37.8878116"],["-122.5460761","37.8878473"],["-122.5461654","37.8878455"],["-122.5462863","37.8878097"],["-122.5464519","37.8877437"],["-122.5465459","37.8877248"],["-122.5466355","37.8877214"],["-122.546761","37.8877295"],["-122.5470124","37.8877815"],["-122.5471011","37.8877784"],["-122.547166","37.8877455"],["-122.5472137","37.8876956"],["-122.5472789","37.8875198"],["-122.5473251","37.8874224"],["-122.5473975","37.8873359"],["-122.5475053","37.8872425"],["-122.5476569","37.8871392"],["-122.5479224","37.8869862"],["-122.5480899","37.8869128"],["-122.5482384","37.8868744"],["-122.5483665","37.8868632"],["-122.5484975","37.8868603"],["-122.548705","37.8869"],["-122.5488632","37.8869582"],["-122.5490632","37.8870492"],["-122.5492217","37.8870849"],["-122.5497111","37.8870807"],["-122.549918","37.8871046"],["-122.5500771","37.8871584"],["-122.5503395","37.8872756"],["-122.5504016","37.88731"],["-122.5504812","37.8873323"],["-122.5505834","37.8873391"],["-122.5507088","37.8873269"],["-122.5510417","37.8872871"],["-122.551226","37.8872647"],["-122.551337","37.887226"],["-122.5513729","37.8872031"],["-122.5514211","37.887158"],["-122.5514789","37.8870516"],["-122.5516346","37.886715"],["-122.5516705","37.8866222"],["-122.5516796","37.8865186"],["-122.5516661","37.8864338"],["-122.5516286","37.8863455"],["-122.5515813","37.8862316"],["-122.5515625","37.886164"],["-122.5515558","37.8860972"],["-122.5515621","37.8860318"],["-122.5515908","37.8859623"],["-122.5516423","37.8858706"],["-122.5517524","37.8857542"],["-122.5521784","37.8855282"],["-122.5523955","37.8854117"],["-122.5524794","37.8853513"],["-122.5525976","37.8852351"],["-122.5527483","37.8850708"],["-122.5528647","37.884943"],["-122.5529906","37.8848381"],["-122.5534026","37.8845436"],["-122.5535089","37.8844645"],["-122.5535783","37.8843955"],["-122.5536373","37.8843156"],["-122.5537262","37.8841591"],["-122.5537871","37.8840859"],["-122.5538441","37.8840441"],["-122.5539419","37.8839941"],["-122.5540395","37.8839528"],["-122.5540826","37.8839244"],["-122.5541062","37.8838995"],["-122.5541276","37.8838746"],["-122.5541419","37.8838424"],["-122.5541504","37.8838021"],["-122.5541456","37.8837534"],["-122.5541271","37.8836264"],["-122.5541088","37.8835079"],["-122.5541043","37.8834567"],["-122.5541055","37.8834084"],["-122.5541136","37.8833675"],["-122.5541315","37.8833209"],["-122.5541567","37.883266"],["-122.5542206","37.883182"],["-122.5543099","37.883058"],["-122.5543275","37.8830031"],["-122.5543292","37.8829308"],["-122.5542976","37.8828625"],["-122.5542269","37.8827981"],["-122.5540606","37.8826922"],["-122.5538687","37.8825705"],["-122.553801","37.8825044"],["-122.5537719","37.8824618"],["-122.5537583","37.8824155"],["-122.5537532","37.8823637"],["-122.5537692","37.8823027"],["-122.553818","37.8821715"],["-122.5538623","37.8820604"],["-122.5538719","37.8819812"],["-122.5538609","37.8818774"],["-122.5538442","37.88177"],["-122.5538365","37.881684"],["-122.5538612","37.8815425"],["-122.5539075","37.881351"],["-122.554013","37.8810314"],["-122.5541805","37.8805722"],["-122.5542234","37.8804374"],["-122.554209","37.8803452"],["-122.5541621","37.8802266"],["-122.5540948","37.8801005"],["-122.5539923","37.8799305"],["-122.5537725","37.8796647"],["-122.553715","37.8795786"],["-122.5536947","37.8795162"],["-122.553706","37.8794449"],["-122.5537358","37.8793759"],["-122.5537956","37.8793094"],["-122.5538541","37.8792663"],["-122.5539218","37.8792355"],["-122.5539826","37.879213"],["-122.554054","37.8792115"],["-122.5541306","37.8792204"],["-122.5542366","37.8792662"],["-122.5544242","37.879379"],["-122.5544739","37.879402"],["-122.5545228","37.8794154"],["-122.5545516","37.8794197"],["-122.5545793","37.8794208"],["-122.5546063","37.8794189"],["-122.5546336","37.8794139"],["-122.5546578","37.8794059"],["-122.5546778","37.8793949"],["-122.5546956","37.8793821"],["-122.5547078","37.8793699"],["-122.5547177","37.879356"],["-122.5547257","37.8793421"],["-122.5547316","37.8793282"],["-122.554736","37.879314"],["-122.5547396","37.8792841"],["-122.5547388","37.8792499"],["-122.5547175","37.8790851"],["-122.5547156","37.8790133"],["-122.5547186","37.878937"],["-122.5547297","37.8788614"],["-122.5547551","37.8787844"],["-122.5547829","37.8787109"],["-122.5548281","37.878639"],["-122.5548999","37.8785809"],["-122.5549919","37.8785308"],["-122.555241","37.8784686"],["-122.5553369","37.8784358"],["-122.5554156","37.8783912"],["-122.5554722","37.8783392"],["-122.5554941","37.878308"],["-122.5555329","37.8782297"],["-122.5556086","37.877841"],["-122.5556476","37.8776884"],["-122.5557009","37.8775619"],["-122.5557787","37.877468"],["-122.5558746","37.8773821"],["-122.5560027","37.8772762"],["-122.5561556","37.8771606"],["-122.556397","37.8770131"],["-122.5565402","37.876944"],["-122.5566877","37.8769027"],["-122.5568107","37.876885"],["-122.5569403","37.8768874"],["-122.5571783","37.8769125"],["-122.557369","37.8769276"],["-122.5574868","37.8769263"],["-122.5575646","37.8769179"],["-122.5576071","37.8769077"],["-122.5576427","37.8768928"],["-122.5576726","37.8768748"],["-122.5576977","37.8768519"],["-122.5577166","37.876825"],["-122.5577266","37.876799"],["-122.5577337","37.8767729"],["-122.5577357","37.8767462"],["-122.5577348","37.8767188"],["-122.5577307","37.8766905"],["-122.5577247","37.8766607"],["-122.5577135","37.8766256"],["-122.5576839","37.8765547"],["-122.5575378","37.876255"],["-122.5574953","37.8761122"],["-122.5574992","37.8760558"],["-122.5575235","37.8759896"],["-122.5576079","37.8758836"],["-122.5576658","37.8758312"],["-122.5577239","37.8757887"],["-122.5578035","37.8757439"],["-122.5579334","37.8756857"],["-122.5580554","37.8756322"],["-122.5582296","37.87554"],["-122.558399","37.8754478"],["-122.5585013","37.8754059"],["-122.5586096","37.8753787"],["-122.5587985","37.8753335"],["-122.5588683","37.8753006"],["-122.5589167","37.8752633"],["-122.5589533","37.8752159"],["-122.5590026","37.8751248"],["-122.5590407","37.875067"],["-122.5590887","37.8750144"],["-122.5591647","37.8749611"],["-122.5592597","37.8749084"],["-122.55938","37.874856"],["-122.5595352","37.8747997"],["-122.5596835","37.8747713"],["-122.5598253","37.8747603"],["-122.5599281","37.8747339"],["-122.560052","37.8746985"],["-122.5601851","37.8746645"],["-122.5603054","37.87466"],["-122.560458","37.8746807"],["-122.5609579","37.8747857"],["-122.5611382","37.87485"],["-122.5614256","37.8749665"],["-122.5615193","37.8749983"],["-122.5615699","37.8750043"],["-122.5616166","37.8749979"],["-122.5616522","37.8749882"],["-122.5616926","37.8749626"],["-122.5617242","37.8749297"],["-122.5617437","37.8748856"],["-122.5617387","37.8748085"],["-122.5616789","37.8746095"],["-122.5616079","37.8744009"],["-122.5615534","37.8742831"],["-122.5614856","37.8741769"],["-122.561436","37.8741095"],["-122.5614072","37.8740613"],["-122.5613907","37.8740079"],["-122.5613852","37.8739358"],["-122.5614022","37.8738517"],["-122.561439","37.8737827"],["-122.5614859","37.8737196"],["-122.5615675","37.8736513"],["-122.5616503","37.8736121"],["-122.5618469","37.873546"],["-122.5619191","37.8735194"],["-122.5620004","37.8734663"],["-122.562035","37.8734154"],["-122.5620579","37.8733762"],["-122.5620736","37.87331"],["-122.5620876","37.8732105"],["-122.5621171","37.8731257"],["-122.5621656","37.8730597"],["-122.5622137","37.8730193"],["-122.5622715","37.8729866"],["-122.562353","37.8729524"],["-122.5624495","37.872913"],["-122.5625126","37.8728697"],["-122.5625374","37.8728288"],["-122.5625531","37.8727812"],["-122.5625554","37.8727284"],["-122.5625498","37.8726426"],["-122.5625499","37.8725379"],["-122.5625661","37.8724498"],["-122.5625878","37.8723889"],["-122.5626143","37.8723369"],["-122.5626466","37.872301"],["-122.5626959","37.8722619"],["-122.5627751","37.8722121"],["-122.5628577","37.8721512"],["-122.5629223","37.872081"],["-122.5629916","37.8719859"],["-122.5630524","37.8719063"],["-122.5631036","37.8718694"],["-122.5631755","37.8718399"],["-122.563405","37.871795"],["-122.5634814","37.8717678"],["-122.5635178","37.8717389"],["-122.5635281","37.8717079"],["-122.5635416","37.8716643"],["-122.5635356","37.8716188"],["-122.5635156","37.8715706"],["-122.5634502","37.8715094"],["-122.5633497","37.8714339"],["-122.5632836","37.8713705"],["-122.5632335","37.8713089"],["-122.5631768","37.8712075"],["-122.5631243","37.8710988"],["-122.5630803","37.870996"],["-122.5630405","37.8708912"],["-122.5630183","37.8707624"],["-122.5630217","37.8706634"],["-122.5630432","37.8705968"],["-122.5630701","37.870539"],["-122.5631415","37.8704169"],["-122.5632452","37.8702848"],["-122.5634084","37.8701221"],["-122.5635364","37.8699904"],["-122.5636105","37.8698984"],["-122.5636481","37.8698243"],["-122.5636712","37.8697114"],["-122.5636866","37.8696016"],["-122.5637279","37.8694545"],["-122.5637655","37.8693745"],["-122.5638245","37.8692881"],["-122.5639785","37.8691559"],["-122.5640916","37.8690784"],["-122.564202","37.869023"],["-122.5642803","37.8690026"],["-122.5643656","37.8689917"],["-122.5644749","37.868995"],["-122.5647594","37.8690512"],["-122.5648365","37.8690544"],["-122.5649069","37.8690426"],["-122.5649525","37.8690228"],["-122.5649936","37.8689969"],["-122.5650303","37.8689466"],["-122.5650483","37.8688617"],["-122.5650196","37.868632"],["-122.5649945","37.8685561"],["-122.564932","37.8684839"],["-122.5647197","37.8683405"],["-122.5646763","37.86829"],["-122.5646572","37.868256"],["-122.5646454","37.8682195"],["-122.5646445","37.8681867"],["-122.5646563","37.8681428"],["-122.5647618","37.8679344"],["-122.5647881","37.8678458"],["-122.5647935","37.867786"],["-122.5647926","37.8677173"],["-122.5647954","37.8676265"],["-122.5648017","37.8675662"],["-122.5648345","37.8674902"],["-122.5650461","37.8671316"],["-122.565066","37.8670265"],["-122.5650666","37.8669452"],["-122.5650807","37.8668514"],["-122.5651274","37.8667205"],["-122.5652067","37.8666169"],["-122.5653062","37.8665234"],["-122.5654284","37.866443"],["-122.5655566","37.8664013"],["-122.5656369","37.8663794"],["-122.5658118","37.8663163"],["-122.5658723","37.8662801"],["-122.5659505","37.8662055"],["-122.5661102","37.8660477"],["-122.5661917","37.8659796"],["-122.5662849","37.8659306"],["-122.5663828","37.865892"],["-122.5665096","37.8658631"],["-122.5666905","37.8658263"],["-122.5667896","37.8658138"],["-122.5668725","37.8658107"],["-122.5670059","37.865823"],["-122.5671471","37.8658459"],["-122.5672265","37.8658547"],["-122.5672515","37.8658529"],["-122.5672736","37.8658478"],["-122.5672938","37.8658419"],["-122.5673124","37.865834"],["-122.5673312","37.8658248"],["-122.5673463","37.8658142"],["-122.5673627","37.865802"],["-122.5673878","37.8657769"],["-122.5674081","37.8657508"],["-122.5674175","37.8657361"],["-122.5674266","37.8657202"],["-122.5674358","37.8657008"],["-122.5674473","37.8656696"],["-122.5674578","37.8656385"],["-122.5674825","37.8655403"],["-122.5674957","37.8654741"],["-122.5675044","37.8654083"],["-122.5675086","37.8653422"],["-122.5675076","37.8652084"],["-122.5675148","37.8651391"],["-122.5675245","37.8650546"],["-122.5675743","37.8649835"],["-122.5676331","37.8649411"],["-122.5677077","37.8649037"],["-122.5678367","37.8648532"],["-122.5681472","37.864757"],["-122.5682839","37.8647183"],["-122.5683864","37.8647117"],["-122.5684916","37.8647177"],["-122.5686061","37.8647501"],["-122.5689206","37.8648641"],["-122.5690036","37.8648848"],["-122.5690934","37.8648938"],["-122.5691603","37.8648962"],["-122.5692279","37.8648857"],["-122.5692808","37.864869"],["-122.5693521","37.8648351"],["-122.5694207","37.8647773"],["-122.5694862","37.864705"],["-122.5695492","37.8645977"],["-122.5696306","37.8644258"],["-122.5696702","37.8643706"],["-122.5697151","37.8643284"],["-122.5697846","37.8642921"],["-122.5698538","37.8642747"],["-122.5699292","37.8642725"],["-122.5700165","37.8642835"],["-122.570187","37.8643127"],["-122.570317","37.864321"],["-122.5703964","37.8643077"],["-122.5704573","37.8642858"],["-122.5705335","37.8642446"],["-122.5706508","37.864176"],["-122.5707133","37.8641445"],["-122.5707666","37.8641282"],["-122.5708329","37.864117"],["-122.5708929","37.8641084"],["-122.5709487","37.864095"],["-122.5710166","37.8640682"],["-122.5710605","37.8640408"],["-122.5711208","37.863989"],["-122.5712177","37.8638638"],["-122.5713049","37.8637522"],["-122.5714335","37.8636036"],["-122.571521","37.8635242"],["-122.5716138","37.8634652"],["-122.5717141","37.8634152"],["-122.5718414","37.8633642"],["-122.5720093","37.8633113"],["-122.5721529","37.8632783"],["-122.5722533","37.8632555"],["-122.5724165","37.8632246"],["-122.5725007","37.8632155"],["-122.5725837","37.8632093"],["-122.5726664","37.8632098"],["-122.572749","37.8632146"],["-122.5728284","37.8632244"],["-122.5729113","37.8632393"],["-122.572992","37.8632603"],["-122.5730675","37.8632855"],["-122.5731408","37.8633141"],["-122.5732122","37.8633478"],["-122.5732834","37.8633852"],["-122.57335","37.863426"],["-122.5734157","37.8634691"],["-122.5734743","37.8635094"],["-122.5735382","37.8635584"],["-122.573596","37.8636057"],["-122.5736513","37.8636583"],["-122.5737015","37.8637107"],["-122.5737485","37.8637667"],["-122.5737929","37.8638245"],["-122.573833","37.8638814"],["-122.5741134","37.8642856"],["-122.5741557","37.8643421"],["-122.5742014","37.8644017"],["-122.5742503","37.8644615"],["-122.5742963","37.8645121"],["-122.5750394","37.8652633"],["-122.575124","37.8653515"],["-122.5757199","37.8660037"],["-122.5758274","37.8661126"],["-122.5759322","37.8662112"],["-122.5759885","37.8662619"],["-122.5760475","37.8663117"],["-122.5761654","37.8664012"],["-122.576299","37.8664971"],["-122.5765088","37.8666342"],["-122.5769771","37.8669225"],["-122.5770186","37.8669449"],["-122.5770565","37.8669617"],["-122.5770978","37.8669788"],["-122.5771422","37.8669922"],["-122.5771863","37.8670018"],["-122.5772284","37.8670067"],["-122.577267","37.867008"],["-122.5773061","37.8670056"],["-122.5773427","37.8670006"],["-122.5773839","37.8669926"],["-122.5774199","37.8669787"],["-122.5774546","37.8669617"],["-122.5774935","37.8669391"],["-122.5775347","37.8669128"],["-122.5776377","37.866841"],["-122.5781622","37.8664704"],["-122.5782734","37.866388"],["-122.578311","37.8663573"],["-122.5783446","37.8663249"],["-122.5783707","37.8662918"],["-122.5783901","37.8662583"],["-122.5784028","37.866232"],["-122.5784118","37.8662055"],["-122.5784187","37.8661799"],["-122.5784217","37.8661534"],["-122.5784227","37.8661249"],["-122.5784198","37.8660967"],["-122.5784148","37.8660698"],["-122.5784055","37.8660436"],["-122.5783927","37.866016"],["-122.5783743","37.8659888"],["-122.57835","37.8659594"],["-122.5783224","37.8659319"],["-122.5782939","37.8659082"],["-122.5782595","37.8658827"],["-122.5782278","37.8658607"],["-122.5780788","37.8657658"],["-122.5779987","37.8657128"],["-122.5779394","37.865668"],["-122.5778816","37.8656193"],["-122.5778269","37.8655682"],["-122.5776685","37.8654136"],["-122.5775268","37.8652599"],["-122.5774704","37.8651963"],["-122.5774266","37.8651399"],["-122.577391","37.8650901"],["-122.5773661","37.8650546"],["-122.5773461","37.8650226"],["-122.5773299","37.8649925"],["-122.5773143","37.8649612"],["-122.5773028","37.8649279"],["-122.5772932","37.8648959"],["-122.577273","37.8647782"],["-122.5772647","37.8647317"],["-122.5772566","37.8646992"],["-122.5772438","37.8646663"],["-122.5772284","37.864636"],["-122.577211","37.8646073"],["-122.577189","37.8645792"],["-122.5771609","37.8645544"],["-122.5771307","37.8645298"],["-122.5770973","37.8645079"],["-122.5769633","37.8644276"],["-122.5768989","37.8643875"],["-122.5768671","37.8643646"],["-122.5768356","37.86434"],["-122.5768067","37.8643151"],["-122.5767791","37.8642897"],["-122.5767532","37.8642627"],["-122.5767318","37.8642375"],["-122.5767097","37.8642085"],["-122.5766897","37.8641792"],["-122.5766717","37.8641482"],["-122.5766559","37.8641184"],["-122.5766415","37.8640855"],["-122.5766296","37.8640548"],["-122.5766173","37.8640167"],["-122.5766016","37.8639583"],["-122.5765858","37.8639007"],["-122.5765737","37.8638602"],["-122.5765609","37.8638324"],["-122.5765444","37.8638008"],["-122.576521","37.8637683"],["-122.5764956","37.863741"],["-122.5764668","37.8637168"],["-122.5763741","37.8636499"],["-122.5763436","37.8636271"],["-122.5763153","37.8636021"],["-122.5762917","37.8635773"],["-122.5762704","37.8635522"],["-122.5762559","37.8635276"],["-122.5762433","37.8635022"],["-122.5762324","37.8634761"],["-122.5762243","37.8634497"],["-122.5762181","37.8634207"],["-122.5762134","37.863387"],["-122.5762124","37.8633479"],["-122.5762134","37.8633147"],["-122.5762165","37.8632804"],["-122.5762234","37.8632434"],["-122.5762314","37.8632102"],["-122.5762394","37.8631819"],["-122.5762508","37.8631511"],["-122.5762644","37.8631206"],["-122.5762803","37.8630901"],["-122.5762994","37.863062"],["-122.5763216","37.8630349"],["-122.5763461","37.8630094"],["-122.5763732","37.8629852"],["-122.5764018","37.8629635"],["-122.5764323","37.8629432"],["-122.576466","37.8629231"],["-122.5764977","37.8629051"],["-122.57657","37.8628713"],["-122.5766052","37.862858"],["-122.5766455","37.8628442"],["-122.5766834","37.8628327"],["-122.5767242","37.8628215"],["-122.5767641","37.8628133"],["-122.5768411","37.8628015"],["-122.5768829","37.8627973"],["-122.5769289","37.8627952"],["-122.5769744","37.8627965"],["-122.5770137","37.8627984"],["-122.5770545","37.862803"],["-122.5770945","37.8628101"],["-122.5771373","37.8628204"],["-122.5771758","37.8628322"],["-122.5772131","37.8628449"],["-122.5772837","37.8628795"],["-122.577315","37.8628979"],["-122.5773475","37.8629178"],["-122.5774109","37.8629594"],["-122.5774907","37.8630187"],["-122.5775274","37.8630497"],["-122.5775726","37.8630905"],["-122.5776406","37.863156"],["-122.5777234","37.8632518"],["-122.5778659","37.8634376"],["-122.5779124","37.8634971"],["-122.5779433","37.8635297"],["-122.5779892","37.8635765"],["-122.5780451","37.8636251"],["-122.5781058","37.8636707"],["-122.5781719","37.863715"],["-122.5782354","37.8637522"],["-122.5783026","37.8637859"],["-122.5783803","37.8638205"],["-122.5785181","37.8638794"],["-122.5785915","37.8639119"],["-122.5786588","37.8639478"],["-122.5787202","37.8639911"],["-122.578771","37.8640426"],["-122.5788127","37.8641001"],["-122.5788503","37.8641631"],["-122.5788816","37.8642159"],["-122.5789176","37.8642735"],["-122.57896","37.8643283"],["-122.5790092","37.8643764"],["-122.5790696","37.8644236"],["-122.5791256","37.8644611"],["-122.5791637","37.864483"],["-122.5791952","37.8644985"],["-122.5792302","37.8645124"],["-122.5792667","37.8645236"],["-122.5793065","37.8645335"],["-122.579346","37.8645387"],["-122.5793858","37.8645398"],["-122.5794224","37.8645365"],["-122.5794618","37.8645289"],["-122.5794995","37.8645185"],["-122.5795376","37.8645035"],["-122.5797145","37.8644258"],["-122.5797857","37.8643975"],["-122.5798615","37.8643699"],["-122.5799318","37.8643473"],["-122.5800133","37.8643255"],["-122.5800911","37.8643099"],["-122.5801753","37.8642977"],["-122.5802528","37.8642918"],["-122.5803402","37.8642887"],["-122.5804209","37.864287"],["-122.5805057","37.8642878"],["-122.5805845","37.8642908"],["-122.5806645","37.8642985"],["-122.5807443","37.8643134"],["-122.5808212","37.8643392"],["-122.5808916","37.8643758"],["-122.5809546","37.8644137"],["-122.5810149","37.8644549"],["-122.5810751","37.8644969"],["-122.5811405","37.8645423"],["-122.5812025","37.8645801"],["-122.5812718","37.8646177"],["-122.5813435","37.8646523"],["-122.5815532","37.8647512"],["-122.5816209","37.8647872"],["-122.5816851","37.8648275"],["-122.5817433","37.8648703"],["-122.5818158","37.8649346"],["-122.5819144","37.8650246"],["-122.582057","37.8651443"],["-122.5821594","37.8651932"],["-122.5822678","37.865214"],["-122.5823773","37.8652158"],["-122.5825118","37.8651934"],["-122.5826352","37.8651576"],["-122.5829239","37.8650476"],["-122.5833152","37.8648885"],["-122.5834826","37.8648005"],["-122.5836068","37.8647225"],["-122.5837127","37.8646296"],["-122.5840648","37.8643081"],["-122.5842376","37.8641923"],["-122.5843755","37.8641407"],["-122.5846356","37.8640813"],["-122.5848708","37.8640517"],["-122.5849832","37.8640556"],["-122.5850747","37.8640753"],["-122.5851749","37.8641208"],["-122.5853679","37.8642292"],["-122.5854791","37.8642787"],["-122.5855849","37.8643014"],["-122.5857507","37.8643184"],["-122.5859365","37.8643355"],["-122.5861092","37.8643725"],["-122.5864965","37.8645035"],["-122.5866078","37.8645663"],["-122.586697","37.8646525"],["-122.586792","37.8648299"],["-122.5868142","37.8649815"],["-122.5868357","37.8651534"],["-122.586905","37.8653547"],["-122.5869909","37.8655935"],["-122.5871642","37.8659722"],["-122.5872737","37.8662567"],["-122.5874182","37.8668774"],["-122.5875553","37.8674496"],["-122.5876378","37.8676749"],["-122.5876897","37.8677837"],["-122.5877404","37.8678392"],["-122.5878173","37.8678931"],["-122.587908","37.8679304"],["-122.5882389","37.8680221"],["-122.5883594","37.8680648"],["-122.5884597","37.8681116"],["-122.5886046","37.8682289"],["-122.5891156","37.8688892"],["-122.5897217","37.8696911"],["-122.5898899","37.8699616"],["-122.5901148","37.8704286"],["-122.5903583","37.870936"],["-122.5904934","37.8711877"],["-122.5905905","37.8713454"],["-122.5906984","37.8714675"],["-122.5910685","37.8718145"],["-122.5914298","37.8721523"],["-122.5915888","37.8723211"],["-122.5916708","37.8724463"],["-122.5917571","37.8725921"],["-122.5918245","37.8726969"],["-122.5920925","37.8729877"],["-122.5921796","37.873117"],["-122.5922312","37.8731966"],["-122.5923559","37.8733478"],["-122.5924875","37.8734626"],["-122.5926428","37.8735664"],["-122.5927504","37.873635"],["-122.5928766","37.8737447"],["-122.5929546","37.8738312"],["-122.5930425","37.8739813"],["-122.593262","37.8742908"],["-122.5933991","37.8744771"],["-122.593482","37.8745565"],["-122.5935877","37.8746316"],["-122.5937149","37.874709"],["-122.5938034","37.8747924"],["-122.5939369","37.8749783"],["-122.5939935","37.8750285"],["-122.5940933","37.8750772"],["-122.594307","37.8751529"],["-122.594453","37.8752149"],["-122.5945947","37.8752701"],["-122.5946905","37.8752908"],["-122.594769","37.8752917"],["-122.5948429","37.8752816"],["-122.5949349","37.8752657"],["-122.5950849","37.8752183"],["-122.59522","37.8751728"],["-122.5953616","37.8751324"],["-122.5955144","37.8750967"],["-122.5957062","37.8750745"],["-122.5959949","37.8750536"],["-122.5964745","37.8750176"],["-122.5966462","37.8749961"],["-122.5969213","37.8749477"],["-122.5970484","37.8749147"],["-122.5971695","37.8748708"],["-122.5972956","37.8748073"],["-122.5973757","37.8747698"],["-122.5974526","37.8747436"],["-122.5975302","37.8747249"],["-122.5976127","37.8747127"],["-122.5976944","37.8747073"],["-122.5977762","37.8747097"],["-122.5978593","37.8747188"],["-122.59808","37.8747556"],["-122.5984649","37.8748187"],["-122.5986776","37.8748551"],["-122.5987533","37.8748779"],["-122.598823","37.8749069"],["-122.5988895","37.874941"],["-122.5989486","37.8749808"],["-122.5990044","37.8750272"],["-122.5990513","37.8750759"],["-122.5990913","37.8751296"],["-122.5991236","37.8751878"],["-122.5991471","37.8752463"],["-122.599163","37.8753106"],["-122.5991945","37.8754924"],["-122.5992107","37.8755613"],["-122.5992353","37.8756225"],["-122.5992672","37.8756804"],["-122.5993088","37.8757374"],["-122.5994259","37.8758584"],["-122.5997133","37.8761498"],["-122.5997714","37.8762197"],["-122.5998149","37.8762652"],["-122.5998659","37.8763074"],["-122.5999227","37.8763456"],["-122.5999838","37.8763776"],["-122.6000963","37.876423"],["-122.6002755","37.8764901"],["-122.6006097","37.8765859"],["-122.6010946","37.8766933"],["-122.6012826","37.8767293"],["-122.6013995","37.8767392"],["-122.6015945","37.8767523"],["-122.6016255","37.8767583"],["-122.6016565","37.8767665"],["-122.601685","37.8767775"],["-122.6017118","37.8767911"],["-122.6017359","37.8768071"],["-122.6017574","37.8768259"],["-122.6017767","37.8768462"],["-122.6017928","37.8768678"],["-122.6018731","37.8770346"],["-122.6018918","37.8770799"],["-122.6018988","37.8771122"],["-122.6019006","37.8771451"],["-122.6018986","37.8771769"],["-122.6018918","37.8772098"],["-122.6018797","37.8772407"],["-122.601863","37.8772705"],["-122.6018427","37.8772988"],["-122.6018151","37.8773305"],["-122.601754","37.8774083"],["-122.6015746","37.8775548"],["-122.60138","37.8776991"],["-122.6011177","37.8778457"],["-122.6003901","37.8781781"],["-122.6002702","37.8782351"],["-122.6002479","37.8782525"],["-122.600229","37.8782702"],["-122.6002122","37.87829"],["-122.6001993","37.8783111"],["-122.6001893","37.8783331"],["-122.600182","37.8783571"],["-122.6001784","37.8783798"],["-122.600179","37.8784039"],["-122.6001831","37.8784279"],["-122.6001902","37.8784508"],["-122.6002012","37.878473"],["-122.6002152","37.8784938"],["-122.600232","37.8785135"],["-122.6002511","37.8785317"],["-122.6002744","37.8785479"],["-122.6002976","37.8785606"],["-122.600325","37.8785726"],["-122.6003535","37.8785818"],["-122.600382","37.8785879"],["-122.6004124","37.8785909"],["-122.6006254","37.8785959"],["-122.6007531","37.8785986"],["-122.6008043","37.8786027"],["-122.6008532","37.8786124"],["-122.600904","37.8786257"],["-122.6009505","37.878644"],["-122.6009939","37.8786654"],["-122.6010338","37.878691"],["-122.6010578","37.8787221"],["-122.6010766","37.8787549"],["-122.6010895","37.8787887"],["-122.6010988","37.8788253"],["-122.6011015","37.8788625"],["-122.6010987","37.8789228"],["-122.6010905","37.8789751"],["-122.6010892","37.879026"],["-122.6010936","37.8790704"],["-122.6010973","37.8790949"],["-122.6011032","37.879114"],["-122.6011111","37.8791317"],["-122.6011223","37.8791488"],["-122.6011367","37.8791642"],["-122.6011521","37.8791786"],["-122.6011701","37.8791918"],["-122.6011898","37.8792015"],["-122.6012107","37.8792107"],["-122.6012342","37.879218"],["-122.6012575","37.8792228"],["-122.6012809","37.8792256"],["-122.601305","37.8792259"],["-122.6013292","37.8792238"],["-122.6013532","37.8792198"],["-122.6013757","37.8792129"],["-122.6013971","37.8792048"],["-122.6014163","37.8791941"],["-122.6014357","37.8791819"],["-122.6014516","37.8791681"],["-122.6014894","37.8791291"],["-122.6015463","37.879067"],["-122.6016336","37.8789448"],["-122.6016905","37.878865"],["-122.6017202","37.8788344"],["-122.601754","37.8788054"],["-122.6017917","37.8787806"],["-122.6018337","37.8787582"],["-122.6018752","37.8787411"],["-122.6019122","37.8787269"],["-122.601947","37.8787101"],["-122.6019796","37.8786909"],["-122.6020089","37.8786697"],["-122.6020352","37.8786445"],["-122.6020578","37.8786187"],["-122.6020766","37.878591"],["-122.6020938","37.87856"],["-122.6021364","37.8785027"],["-122.6021798","37.8784539"],["-122.6022309","37.8784091"],["-122.6022868","37.8783703"],["-122.6023485","37.8783375"],["-122.6024148","37.8783104"],["-122.6024974","37.8782861"],["-122.6026325","37.8782532"],["-122.6027455","37.8782279"],["-122.6028321","37.8782049"],["-122.6030832","37.8781181"],["-122.6031456","37.8780953"],["-122.603177","37.8780863"],["-122.6032093","37.8780792"],["-122.6032415","37.8780762"],["-122.6032739","37.8780751"],["-122.6033074","37.8780773"],["-122.6033404","37.8780824"],["-122.6033714","37.8780907"],["-122.6034013","37.8781005"],["-122.603465","37.8781259"],["-122.6037888","37.8782504"],["-122.6038679","37.8782875"],["-122.6039681","37.8783411"],["-122.6040292","37.8783742"],["-122.6041293","37.8784271"],["-122.6041506","37.8784367"],["-122.6041732","37.878444"],["-122.6041972","37.8784487"],["-122.6042223","37.8784519"],["-122.6042469","37.878452"],["-122.6042711","37.8784499"],["-122.6042952","37.8784457"],["-122.6043186","37.8784389"],["-122.604341","37.8784308"],["-122.6043618","37.8784198"],["-122.6043811","37.8784068"],["-122.604397","37.8783928"],["-122.6044116","37.878377"],["-122.6044239","37.8783599"],["-122.6044378","37.8783334"],["-122.6044661","37.8782785"],["-122.6045812","37.8780091"],["-122.6046732","37.8777098"],["-122.6046954","37.8776561"],["-122.6047225","37.8776102"],["-122.6047545","37.8775682"],["-122.6047917","37.8775279"],["-122.604836","37.87749"],["-122.6049326","37.8774358"],["-122.605036","37.8773879"],["-122.6051153","37.8773564"],["-122.6051651","37.8773372"],["-122.6051893","37.8773304"],["-122.6052164","37.8773243"],["-122.6052422","37.8773223"],["-122.6052692","37.8773212"],["-122.6052953","37.8773231"],["-122.6053217","37.8773272"],["-122.6053477","37.8773339"],["-122.6053722","37.8773432"],["-122.6053948","37.877354"],["-122.6054162","37.8773675"],["-122.6054349","37.8773814"],["-122.6054958","37.8774337"],["-122.6058713","37.8777423"],["-122.605977","37.8778243"],["-122.606029","37.8778534"],["-122.606085","37.8778777"],["-122.6061427","37.8778966"],["-122.6062031","37.8779113"],["-122.6064784","37.8779493"],["-122.6065282","37.8779613"],["-122.6065768","37.8779788"],["-122.606621","37.8779987"],["-122.6066622","37.8780224"],["-122.6066994","37.8780491"],["-122.6067447","37.8780892"],["-122.6068384","37.8781841"],["-122.606891","37.8782378"],["-122.6069228","37.8782633"],["-122.6069582","37.8782876"],["-122.6069966","37.878308"],["-122.6070364","37.8783248"],["-122.6070794","37.8783387"],["-122.6071247","37.8783487"],["-122.6076385","37.8784157"],["-122.6080068","37.8784826"],["-122.6081357","37.8784947"],["-122.608271","37.8784953"],["-122.6084104","37.8784847"],["-122.6084989","37.8784858"],["-122.6085836","37.878494"],["-122.608666","37.8785097"],["-122.608745","37.8785322"],["-122.608821","37.8785634"],["-122.6088927","37.8785996"],["-122.6089562","37.8786425"],["-122.6090656","37.8787406"],["-122.6095722","37.8792463"],["-122.6096831","37.8793423"],["-122.6097622","37.8793906"],["-122.6098468","37.8794319"],["-122.6099341","37.8794637"],["-122.610029","37.8794892"],["-122.6101236","37.879505"],["-122.6102233","37.8795124"],["-122.6103216","37.8795102"],["-122.6104204","37.8794992"],["-122.6107896","37.8794151"],["-122.61184","37.8791672"],["-122.6118705","37.8791633"],["-122.6119018","37.8791612"],["-122.6119342","37.8791632"],["-122.6119653","37.8791683"],["-122.6119948","37.8791762"],["-122.6120227","37.879187"],["-122.6120496","37.8792"],["-122.6120736","37.879216"],["-122.6120959","37.8792345"],["-122.6121147","37.8792544"],["-122.612131","37.8792762"],["-122.6121428","37.8792989"],["-122.612151","37.8793232"],["-122.6121557","37.8793474"],["-122.6121566","37.8793719"],["-122.6121537","37.8793973"],["-122.6121379","37.8794514"],["-122.6121244","37.8794964"],["-122.6121123","37.879529"],["-122.6121061","37.8795561"],["-122.6121042","37.8795838"],["-122.6121063","37.8796118"],["-122.6121123","37.8796395"],["-122.6121222","37.879667"],["-122.6121375","37.8796948"],["-122.6121627","37.8797546"],["-122.6121815","37.8797902"],["-122.6121936","37.8798255"],["-122.6122018","37.8798619"],["-122.6122036","37.8798978"],["-122.6121999","37.8799344"],["-122.6121907","37.8799708"],["-122.6121735","37.880012"],["-122.6121328","37.8800983"],["-122.6121092","37.8801618"],["-122.6120956","37.8802212"],["-122.6120896","37.8802849"],["-122.612094","37.8803688"],["-122.6121244","37.8806623"],["-122.6121284","37.8807298"],["-122.6121293","37.8807991"],["-122.6121264","37.8808643"],["-122.6121135","37.8809298"],["-122.6120892","37.8809945"],["-122.6120577","37.8810523"],["-122.6120208","37.8811157"],["-122.6119835","37.8811779"],["-122.6119509","37.8812341"],["-122.6119153","37.8812977"],["-122.6118841","37.8813626"],["-122.6118582","37.8814212"],["-122.6118307","37.8814831"],["-122.6118008","37.881547"],["-122.6117627","37.8816073"],["-122.6117134","37.8816627"],["-122.6116657","37.8817073"],["-122.6116336","37.8817358"],["-122.6116068","37.8817615"],["-122.611578","37.8817916"],["-122.6115546","37.8818178"],["-122.6115335","37.8818486"],["-122.6115162","37.8818792"],["-122.6115012","37.8819116"],["-122.6114877","37.8819445"],["-122.6114428","37.8820692"],["-122.6114146","37.8821325"],["-122.6113275","37.8822971"],["-122.6111859","37.8825467"],["-122.6111638","37.8825828"],["-122.6111421","37.8826137"],["-122.6111175","37.8826431"],["-122.6110901","37.8826716"],["-122.6110703","37.8826894"],["-122.6110182","37.8827322"],["-122.6109313","37.8827972"],["-122.6108999","37.8828223"],["-122.6108823","37.8828391"],["-122.6108673","37.8828569"],["-122.6108552","37.8828759"],["-122.6108463","37.8828952"],["-122.6108413","37.882916"],["-122.6108421","37.8829383"],["-122.6108485","37.8829589"],["-122.6108611","37.882979"],["-122.6108773","37.8829956"],["-122.610899","37.8830095"],["-122.6109221","37.8830197"],["-122.610945","37.883026"],["-122.6109701","37.8830278"],["-122.6109947","37.8830267"],["-122.6110175","37.8830229"],["-122.6110397","37.8830158"],["-122.6110652","37.8830042"],["-122.6110894","37.882992"],["-122.6111169","37.8829772"],["-122.6111498","37.8829593"],["-122.6112669","37.882891"],["-122.6114478","37.8827811"],["-122.6116413","37.8826533"],["-122.6116971","37.8826139"],["-122.6117366","37.8825839"],["-122.6117657","37.882559"],["-122.6117942","37.8825335"],["-122.6118205","37.8825081"],["-122.6118466","37.88248"],["-122.6118902","37.8824237"],["-122.6119651","37.8823153"],["-122.6120143","37.8822578"],["-122.6120803","37.8822116"],["-122.6121793","37.8821814"],["-122.6123082","37.8821594"],["-122.6124424","37.882148"],["-122.6126081","37.8821454"],["-122.6126987","37.8821412"],["-122.6127592","37.8821207"],["-122.6128039","37.8820946"],["-122.6128226","37.8820633"],["-122.6128345","37.881995"],["-122.6128473","37.8818972"],["-122.6128686","37.8817929"],["-122.6129356","37.8816784"],["-122.6130568","37.8815406"],["-122.6132495","37.8812485"],["-122.6135212","37.8809178"],["-122.6136098","37.8808052"],["-122.613649","37.8807487"],["-122.6136855","37.8806902"],["-122.6137163","37.8806307"],["-122.6137488","37.8805647"],["-122.6137842","37.8805025"],["-122.6138262","37.8804442"],["-122.613931","37.880354"],["-122.6141121","37.8802033"],["-122.6142987","37.8800202"],["-122.6144011","37.8799526"],["-122.6145057","37.879912"],["-122.6147071","37.8798616"],["-122.6149178","37.8798189"],["-122.6150969","37.8798139"],["-122.6152564","37.8798428"],["-122.6154471","37.8799217"],["-122.6155575","37.8799414"],["-122.6156444","37.879928"],["-122.6157343","37.8798922"],["-122.6158013","37.8798339"],["-122.615899","37.8797141"],["-122.6160056","37.8795406"],["-122.6160702","37.8794383"],["-122.6160915","37.879411"],["-122.6161098","37.8793885"],["-122.6161314","37.879367"],["-122.616155","37.8793463"],["-122.6161809","37.8793282"],["-122.6162251","37.8793034"],["-122.6162755","37.8792856"],["-122.6163269","37.8792735"],["-122.6163724","37.8792703"],["-122.6164144","37.8792726"],["-122.6164547","37.8792785"],["-122.6164933","37.8792875"],["-122.6165331","37.879299"],["-122.6165706","37.8793154"],["-122.6166159","37.8793391"],["-122.6166659","37.8793687"],["-122.6168164","37.8794754"],["-122.6176576","37.8800799"],["-122.6177772","37.8801671"],["-122.6180887","37.8803967"],["-122.6181658","37.8804469"],["-122.6184456","37.8805893"],["-122.6185263","37.8806367"],["-122.6185774","37.8806857"],["-122.6186111","37.8807648"],["-122.6186512","37.8808976"],["-122.6187438","37.8810382"],["-122.6189779","37.8812531"],["-122.6190643","37.8813195"],["-122.6191494","37.8813623"],["-122.619231","37.8813821"],["-122.6193278","37.8813813"],["-122.6195198","37.8813606"],["-122.6197093","37.8813405"],["-122.6197975","37.8813428"],["-122.6198712","37.8813582"],["-122.6199666","37.8813958"],["-122.6200503","37.8814433"],["-122.6201543","37.8815136"],["-122.6202174","37.8815888"],["-122.6202449","37.8816405"],["-122.620288","37.8817897"],["-122.6203027","37.8818319"],["-122.6203327","37.8818768"],["-122.6204338","37.8819636"],["-122.620954","37.8822527"],["-122.6210702","37.8823332"],["-122.6211361","37.8824183"],["-122.6211944","37.8825158"],["-122.621233","37.8826054"],["-122.6212482","37.8826782"],["-122.6212452","37.8827551"],["-122.6211919","37.8829351"],["-122.6211863","37.8830074"],["-122.6212028","37.8830677"],["-122.6212352","37.8831178"],["-122.6213108","37.8831771"],["-122.6215508","37.8833177"],["-122.6217829","37.8834624"],["-122.6218556","37.8835225"],["-122.6218983","37.8835708"],["-122.6219222","37.8836271"],["-122.6219137","37.883701"],["-122.6218412","37.8838648"],["-122.6218341","37.8838984"],["-122.6218335","37.883933"],["-122.621845","37.883986"],["-122.6218563","37.8840158"],["-122.6218762","37.8840454"],["-122.6219006","37.884072"],["-122.6219365","37.8840962"],["-122.6220194","37.8841377"],["-122.622298","37.8842215"],["-122.6223671","37.8842551"],["-122.6223976","37.8842999"],["-122.6224185","37.8843546"],["-122.6224098","37.8844145"],["-122.6223282","37.8846442"],["-122.6223255","37.8846842"],["-122.6223337","37.8847227"],["-122.6223592","37.8847691"],["-122.6224079","37.8848338"],["-122.6224508","37.8848919"],["-122.6224771","37.8849495"],["-122.6224863","37.8850032"],["-122.6224818","37.8851139"],["-122.6224795","37.8852665"],["-122.6225778","37.8855772"],["-122.6226027","37.8857664"],["-122.6226454","37.8859107"],["-122.6228394","37.8861776"],["-122.6229813","37.8863491"],["-122.6231225","37.8864732"],["-122.623301","37.8865691"],["-122.6237913","37.8867417"],["-122.6239472","37.8867659"],["-122.6241289","37.8867684"],["-122.6249394","37.8866671"],["-122.6255415","37.8866674"],["-122.6260181","37.8866301"],["-122.6262295","37.8866312"],["-122.6263579","37.886655"],["-122.6265","37.8867032"],["-122.6266499","37.8867466"],["-122.6267139","37.8867556"],["-122.626805","37.8867346"],["-122.6269202","37.8866951"],["-122.6270096","37.8866737"],["-122.6271235","37.8866691"],["-122.6272099","37.8866856"],["-122.6273559","37.8867429"],["-122.6275982","37.886859"],["-122.6277923","37.8869222"],["-122.6279668","37.8869777"],["-122.6281939","37.8870677"],["-122.6284201","37.8871616"],["-122.6285734","37.887234"],["-122.6287342","37.8872962"],["-122.6288316","37.8873232"],["-122.6289492","37.8873321"],["-122.6292167","37.8872875"],["-122.6293672","37.8872957"],["-122.6294497","37.8873171"],["-122.6295204","37.8873608"],["-122.6295731","37.8874123"],["-122.6296047","37.8874655"],["-122.6296307","37.8875394"],["-122.629635","37.8876022"],["-122.6296199","37.8877191"],["-122.6295614","37.8878526"],["-122.629477","37.8879689"],["-122.6293739","37.8880905"],["-122.6293091","37.8881946"],["-122.6292593","37.8882913"],["-122.6292295","37.8884621"],["-122.6292281","37.8885673"],["-122.6292473","37.8886819"],["-122.6292803","37.8887788"],["-122.6293376","37.888859"],["-122.6294379","37.8889458"],["-122.6295233","37.8890013"],["-122.6296237","37.8890548"],["-122.6297451","37.8891178"],["-122.6299252","37.8892105"],["-122.6301348","37.8892987"],["-122.6303092","37.8893512"],["-122.6305383","37.8894024"],["-122.6309014","37.8894621"],["-122.6311507","37.8895588"],["-122.6313646","37.8896885"],["-122.6320916","37.8900744"],["-122.6323113","37.8901671"],["-122.6325098","37.8902323"],["-122.6326505","37.8902845"],["-122.6327939","37.8903794"],["-122.6333606","37.8908719"],["-122.6334889","37.8909931"],["-122.6335522","37.891079"],["-122.6335952","37.8911845"],["-122.6336154","37.8913318"],["-122.6336268","37.8915765"],["-122.6336171","37.8916863"],["-122.6335889","37.8917983"],["-122.6335306","37.8920014"],["-122.6334987","37.8921592"],["-122.6334693","37.8924484"],["-122.6334716","37.8925599"],["-122.6334847","37.8926508"],["-122.633512","37.8927269"],["-122.6335679","37.8928165"],["-122.6336414","37.8928899"],["-122.6337578","37.8929789"],["-122.6338726","37.8930515"],["-122.633995","37.8931132"],["-122.6341071","37.8931508"],["-122.6342267","37.8931709"],["-122.6343495","37.8931719"],["-122.6344861","37.8931486"],["-122.6346242","37.8931189"],["-122.6347092","37.8931046"],["-122.6347783","37.8931046"],["-122.6348504","37.8931142"],["-122.6349366","37.8931531"],["-122.6350028","37.8932063"],["-122.6350608","37.8932921"],["-122.6351016","37.8933846"],["-122.6351377","37.8935205"],["-122.63516","37.8936315"],["-122.6351719","37.8936891"],["-122.6351823","37.8937222"],["-122.6351935","37.893754"],["-122.635206","37.8937844"],["-122.6352214","37.8938147"],["-122.6352381","37.8938463"],["-122.6354064","37.8941462"],["-122.6354594","37.8942511"],["-122.6355394","37.894421"],["-122.6356177","37.8946174"],["-122.6356958","37.8947733"],["-122.6360721","37.8951609"],["-122.6362879","37.8957863"],["-122.6365201","37.896061"],["-122.6367539","37.8962964"],["-122.6367903","37.8963345"],["-122.6368243","37.8963712"],["-122.636852","37.8964022"],["-122.6368679","37.8964222"],["-122.636883","37.8964433"],["-122.6368969","37.8964638"],["-122.6369101","37.8964864"],["-122.6369227","37.896511"],["-122.6369324","37.8965363"],["-122.6369419","37.8965649"],["-122.6369596","37.8966346"],["-122.6369683","37.8966774"],["-122.6369765","37.896726"],["-122.6369829","37.8967792"],["-122.636997","37.8969996"],["-122.6370171","37.8972385"],["-122.6370259","37.8973042"],["-122.6370375","37.8973682"],["-122.6370511","37.8974222"],["-122.6370683","37.8974757"],["-122.6370918","37.8975324"],["-122.6371186","37.8975856"],["-122.637178","37.8977041"],["-122.6372368","37.8978205"],["-122.6372714","37.8978951"],["-122.6372963","37.8979552"],["-122.637382","37.8981833"],["-122.6373987","37.8982214"],["-122.6374181","37.898259"],["-122.6374378","37.8982885"],["-122.637459","37.8983153"],["-122.6374791","37.8983378"],["-122.6375013","37.8983582"],["-122.637523","37.8983749"],["-122.6375431","37.8983891"],["-122.6376378","37.8984355"],["-122.6376775","37.8984483"],["-122.6377182","37.8984588"],["-122.6377615","37.8984669"],["-122.6378015","37.8984725"],["-122.6378422","37.8984763"],["-122.6378896","37.8984796"],["-122.637933","37.8984816"],["-122.6397341","37.8985042"],["-122.6397762","37.8985064"],["-122.6398544","37.8985142"],["-122.6398843","37.8985185"],["-122.6399677","37.8985334"],["-122.6401371","37.8985708"],["-122.641755","37.898964"],["-122.642314","37.89908"],["-122.6423523","37.8990906"],["-122.6424236","37.8991141"],["-122.6424576","37.8991278"],["-122.6424885","37.8991419"],["-122.6425213","37.8991609"],["-122.6425547","37.8991814"],["-122.6425885","37.8992059"],["-122.6426189","37.8992325"],["-122.6426493","37.8992616"],["-122.6427023","37.8993211"],["-122.6428268","37.8994647"],["-122.6429271","37.8995721"],["-122.6429683","37.8996085"],["-122.6430549","37.8996762"],["-122.643098","37.8997075"],["-122.6431462","37.8997375"],["-122.6431973","37.8997674"],["-122.6432457","37.8997928"],["-122.6433036","37.899821"],["-122.6436133","37.8999543"],["-122.6437283","37.9000061"],["-122.6438577","37.9000715"],["-122.6439247","37.9001083"],["-122.6439863","37.9001438"],["-122.6441035","37.9002168"],["-122.6441557","37.9002517"],["-122.6441988","37.9002819"],["-122.6442502","37.9003197"],["-122.6442929","37.9003546"],["-122.6443372","37.9003929"],["-122.6443758","37.9004296"],["-122.6444196","37.900474"],["-122.6444686","37.9005268"],["-122.6445557","37.9006245"],["-122.6449866","37.9011374"],["-122.6450299","37.9011919"],["-122.6450693","37.9012464"],["-122.6453117","37.9016052"],["-122.6453505","37.9016589"],["-122.6453973","37.901715"],["-122.6454476","37.9017719"],["-122.6454937","37.9018184"],["-122.6455823","37.9018998"],["-122.6456118","37.9019231"],["-122.6456736","37.9019664"],["-122.6457102","37.9019892"],["-122.6457411","37.9020076"],["-122.6458092","37.9020465"],["-122.6461024","37.9021834"],["-122.6461734","37.9022188"],["-122.6462054","37.9022357"],["-122.6462773","37.9022765"],["-122.6463102","37.9022973"],["-122.6464114","37.9023702"],["-122.6464521","37.9024016"],["-122.6466642","37.9025754"],["-122.6467811","37.9026769"],["-122.6471005","37.9029736"],["-122.6471423","37.9030194"],["-122.6471802","37.903068"],["-122.6472109","37.9031144"],["-122.6472419","37.9031682"],["-122.6472668","37.9032162"],["-122.6472934","37.9032697"],["-122.6473427","37.9033647"],["-122.6473824","37.9034249"],["-122.6474054","37.9034553"],["-122.6474296","37.9034856"],["-122.6474546","37.9035122"],["-122.6475063","37.9035638"],["-122.647533","37.9035884"],["-122.6475922","37.903637"],["-122.6476271","37.9036638"],["-122.6476925","37.9037111"],["-122.6477289","37.9037363"],["-122.647839","37.9038072"],["-122.6479109","37.9038508"],["-122.6479793","37.9038897"],["-122.6480496","37.9039246"],["-122.648196","37.9039915"],["-122.6483423","37.9040502"],["-122.6484217","37.9040766"],["-122.6486481","37.9041454"],["-122.6487332","37.9041732"],["-122.6488035","37.9041988"],["-122.6488736","37.904231"],["-122.6489433","37.9042702"],["-122.6495698","37.9046969"],["-122.649617","37.9047304"],["-122.6496633","37.904765"],["-122.6496958","37.9047906"],["-122.6497235","37.9048138"],["-122.6497492","37.9048395"],["-122.6497721","37.9048667"],["-122.6497928","37.9048954"],["-122.649809","37.9049228"],["-122.6498238","37.9049532"],["-122.6498349","37.9049835"],["-122.6498436","37.9050136"],["-122.6498575","37.9050958"],["-122.649869","37.9051887"],["-122.6498811","37.9052785"],["-122.6498913","37.9053396"],["-122.6499057","37.9054083"],["-122.6499247","37.9054723"],["-122.6499483","37.9055386"],["-122.6499769","37.9056052"],["-122.6500077","37.9056656"],["-122.6500719","37.9057842"],["-122.6501088","37.9058444"],["-122.6501477","37.9059027"],["-122.6501904","37.9059592"],["-122.6502382","37.9060153"],["-122.6502926","37.9060688"],["-122.6503528","37.9061189"],["-122.6504134","37.9061636"],["-122.6504754","37.9062058"],["-122.6505407","37.9062454"],["-122.6506725","37.9063236"],["-122.6507744","37.9063853"],["-122.6508098","37.9064087"],["-122.6508393","37.9064287"],["-122.6508678","37.9064512"],["-122.6508973","37.9064767"],["-122.6509214","37.9065008"],["-122.6509457","37.9065281"],["-122.6509668","37.9065551"],["-122.6510874","37.9067291"],["-122.6511318","37.9067861"],["-122.6511867","37.9068426"],["-122.6512459","37.9068931"],["-122.6513105","37.906938"],["-122.6513809","37.9069789"],["-122.6514552","37.9070135"],["-122.6515329","37.9070407"],["-122.6516019","37.9070627"],["-122.6516794","37.9070822"],["-122.6517635","37.9070973"],["-122.6518476","37.9071094"],["-122.652223","37.9071448"],["-122.653081","37.9072212"],["-122.6531717","37.9072322"],["-122.6532558","37.9072464"],["-122.6532936","37.9072548"],["-122.6533357","37.9072658"],["-122.6533713","37.9072761"],["-122.6534095","37.9072901"],["-122.6534466","37.9073044"],["-122.6534833","37.9073204"],["-122.6535164","37.907337"],["-122.6535482","37.907356"],["-122.6535802","37.9073759"],["-122.6536118","37.9073993"],["-122.6536399","37.9074211"],["-122.6536685","37.907447"],["-122.6536924","37.9074699"],["-122.6537397","37.9075228"],["-122.6538034","37.9076035"],["-122.6538504","37.9076677"],["-122.6540137","37.907899"],["-122.6540524","37.9079567"],["-122.654089","37.9080137"],["-122.6541494","37.9081232"],["-122.654285","37.908379"],["-122.6543174","37.9084326"],["-122.6543581","37.9084972"],["-122.6543992","37.9085563"],["-122.6544892","37.9086677"],["-122.6545341","37.9087199"],["-122.6545827","37.9087738"],["-122.6546294","37.9088229"],["-122.6546894","37.9088813"],["-122.654748","37.9089303"],["-122.6547796","37.9089529"],["-122.654811","37.9089736"],["-122.6548473","37.9089944"],["-122.6548831","37.9090116"],["-122.65492","37.909028"],["-122.6549614","37.9090441"],["-122.6550008","37.9090573"],["-122.6550374","37.9090684"],["-122.6550802","37.9090802"],["-122.6551196","37.90909"],["-122.6553281","37.9091292"],["-122.6554416","37.9091495"],["-122.6555877","37.9091779"],["-122.6556848","37.9092024"],["-122.6557725","37.9092308"],["-122.6558511","37.9092618"],["-122.6559174","37.909295"],["-122.655946","37.9093108"],["-122.6559813","37.9093314"],["-122.6560564","37.90938"],["-122.6560995","37.9094112"],["-122.6564745","37.9097014"],["-122.656536","37.9097443"],["-122.6566009","37.9097866"],["-122.6566677","37.9098269"],["-122.6567383","37.9098642"],["-122.6568036","37.9098966"],["-122.6569555","37.9099646"],["-122.659397","37.9108946"],["-122.6598202","37.9110474"],["-122.6599414","37.9111045"],["-122.6600553","37.9111648"],["-122.6601655","37.9112336"],["-122.6603215","37.9113525"],["-122.6610895","37.9120631"],["-122.6614712","37.9124436"],["-122.6615864","37.9125509"],["-122.6616678","37.9126146"],["-122.6617487","37.9126652"],["-122.6618336","37.9127058"],["-122.6619599","37.9127459"],["-122.6621155","37.912777"],["-122.6622704","37.9127985"],["-122.6624258","37.9128055"],["-122.6625418","37.9128"],["-122.662728","37.9127878"],["-122.6629356","37.9127735"],["-122.6630089","37.9127813"],["-122.663076","37.9127946"],["-122.6631666","37.9128244"],["-122.6635261","37.913009"],["-122.6636553","37.9130962"],["-122.6639506","37.9133542"],["-122.6647399","37.9140369"],["-122.6650427","37.9143693"],["-122.665155","37.9145225"],["-122.6652318","37.9146509"],["-122.6659192","37.9157165"],["-122.6662033","37.9161295"],["-122.6664518","37.9163906"],["-122.6670036","37.9168505"],["-122.6675653","37.9172183"],["-122.6678582","37.9176247"],["-122.6682114","37.9178068"],["-122.6689624","37.9180273"],["-122.6698338","37.9183625"],["-122.6700478","37.918541"],["-122.670946","37.9202618"],["-122.6711907","37.9206735"],["-122.6715389","37.9211005"],["-122.6717783","37.9212531"],["-122.672217","37.9213454"],["-122.6726927","37.9215095"],["-122.6730545","37.9217931"],["-122.6733967","37.9221915"],["-122.673913","37.9224579"],["-122.6743654","37.9229291"],["-122.6746709","37.9236069"],["-122.6747994","37.9238702"],["-122.6750708","37.9242829"],["-122.6752844","37.9245921"],["-122.6753924","37.9247129"],["-122.6756732","37.9249359"],["-122.6760131","37.9251074"],["-122.6764121","37.9252163"],["-122.6769697","37.9252357"],["-122.6777686","37.9251676"],["-122.6783571","37.9251274"],["-122.6787783","37.9251494"],["-122.6791976","37.9252582"],["-122.6794956","37.925419"],["-122.6798024","37.9256269"],["-122.6803155","37.9258728"],["-122.6804789","37.9260425"],["-122.6805631","37.926357"],["-122.680599","37.9264367"],["-122.6806227","37.926472"],["-122.6806485","37.9265038"],["-122.6806739","37.9265319"],["-122.6806986","37.9265558"],["-122.681329","37.9271113"],["-122.6819643","37.9275897"],["-122.6821683","37.9278868"],["-122.6821861","37.9280838"],["-122.6821736","37.9283772"],["-122.6821063","37.9289318"],["-122.6821353","37.9293084"],["-122.6823304","37.9296267"],["-122.6826706","37.9299066"],["-122.6833394","37.9302426"],["-122.6833994","37.9302727"],["-122.6841043","37.9305311"],["-122.6845903","37.9305191"],["-122.6853993","37.9303548"],["-122.6863117","37.9303242"],["-122.6874035","37.9304145"],["-122.6878343","37.9304609"],["-122.6879878","37.9305032"],["-122.6881118","37.9305492"],["-122.6882079","37.9305975"],["-122.6883036","37.9306648"],["-122.6883879","37.9307434"],["-122.6884739","37.9308469"],["-122.6885299","37.9309353"],["-122.6885734","37.9310144"],["-122.6886027","37.931106"],["-122.6886111","37.9312019"],["-122.6886077","37.9313122"],["-122.6885944","37.9314427"],["-122.6885527","37.9316084"],["-122.6885295","37.9317467"],["-122.6885321","37.9318888"],["-122.688553","37.9320069"],["-122.6885728","37.9320568"],["-122.6885908","37.9320916"],["-122.6886288","37.9321523"],["-122.6886846","37.9322143"],["-122.6887626","37.9322756"],["-122.6889027","37.932343"],["-122.6892676","37.932479"],["-122.689539","37.9325766"],["-122.689686","37.9326122"],["-122.6898263","37.9326339"],["-122.6899676","37.9326418"],["-122.6901","37.9326427"],["-122.6902918","37.9326297"],["-122.6907706","37.9325727"],["-122.6909024","37.932574"],["-122.6909858","37.9325908"],["-122.6910531","37.9326169"],["-122.6911206","37.9326657"],["-122.6911965","37.932744"],["-122.6913555","37.9329693"],["-122.6914251","37.9330457"],["-122.6915077","37.9331174"],["-122.6916816","37.9332159"],["-122.692072","37.933424"],["-122.6921993","37.9334734"],["-122.6923079","37.9335014"],["-122.6924115","37.9335167"],["-122.6925034","37.9335225"],["-122.6928648","37.9334891"],["-122.6936671","37.9333892"],["-122.6940903","37.9333597"],["-122.6941969","37.933367"],["-122.6943014","37.9333836"],["-122.6944058","37.9334118"],["-122.6945064","37.9334457"],["-122.6946138","37.9334888"],["-122.6947527","37.9335584"],["-122.6949263","37.9336532"],["-122.6953896","37.9339409"],["-122.6955671","37.9340408"],["-122.695683","37.9340937"],["-122.6957892","37.9341389"],["-122.6984014","37.9349664"],["-122.6992499","37.9352735"],["-122.6999276","37.9356137"],["-122.7003386","37.9358256"],["-122.7013334","37.9366123"],["-122.7020197","37.9371874"],["-122.7025565","37.9378415"],["-122.702943","37.9381943"],["-122.7037317","37.9386008"],["-122.7047828","37.9392672"],["-122.7049547","37.9394274"],["-122.705035","37.9395609"],["-122.7051544","37.9398623"],["-122.7052129","37.9403157"],["-122.7051376","37.9405345"],["-122.7049432","37.9408457"],["-122.704887","37.940982"],["-122.7048734","37.9411049"],["-122.7048904","37.9413155"],["-122.7050091","37.9417145"],["-122.7053792","37.9426971"],["-122.7055916","37.9432583"],["-122.7058212","37.9438381"],["-122.7062948","37.9453538"],["-122.7064189","37.945626"],["-122.7065295","37.9457439"],["-122.7067239","37.9458184"],["-122.7070643","37.9459042"],["-122.7075337","37.9460089"],["-122.7077842","37.9461104"],["-122.7080049","37.9462507"],["-122.708358","37.9465409"],["-122.7086625","37.9467325"],["-122.7088856","37.9468576"],["-122.7093057","37.9470266"],["-122.7097948","37.9471928"],["-122.7102378","37.9473639"],["-122.7104894","37.9474976"],["-122.7106971","37.9476454"],["-122.7108145","37.9477525"],["-122.7109227","37.9478749"],["-122.7111957","37.9482713"],["-122.7114278","37.9486484"],["-122.7117829","37.9493079"],["-122.7122246","37.950035"],["-122.7125852","37.9507178"],["-122.7129366","37.9514486"],["-122.7132473","37.9523727"],["-122.7134022","37.9527788"],["-122.7135052","37.953048"],["-122.7138786","37.9538835"],["-122.713936","37.954153"],["-122.7141177","37.9553805"],["-122.7142924","37.955912"],["-122.7144262","37.9563649"],["-122.7145368","37.9565396"],["-122.7147738","37.956842"],["-122.7149416","37.9569967"],["-122.7150938","37.9570731"],["-122.7153888","37.9571763"],["-122.7154879","37.9572426"],["-122.7155402","37.9573346"],["-122.7156246","37.9576274"],["-122.7157094","37.9577531"],["-122.7159376","37.9580037"],["-122.7162039","37.9583897"],["-122.7163616","37.958526"],["-122.716563","37.9586331"],["-122.7167212","37.9586761"],["-122.7171941","37.9587224"],["-122.7178184","37.9587983"],["-122.7184043","37.9588434"],["-122.7186297","37.958873"],["-122.7188115","37.9589519"],["-122.7191532","37.9591447"],["-122.7194428","37.9593242"],["-122.7196836","37.9595178"],["-122.7198146","37.9597001"],["-122.7198522","37.9598409"],["-122.7198421","37.9599936"],["-122.7196186","37.9610535"],["-122.7195964","37.9613393"],["-122.7196095","37.9614636"],["-122.7196656","37.9616215"],["-122.7197703","37.9617607"],["-122.7200991","37.962082"],["-122.720779","37.9625726"],["-122.7212029","37.9627929"],["-122.7218333","37.9630498"],["-122.7220277","37.9631421"],["-122.7222165","37.9632541"],["-122.7225347","37.9634841"],["-122.722606","37.9635617"],["-122.7226624","37.963678"],["-122.7227453","37.9639204"],["-122.7229854","37.9644185"],["-122.7233283","37.9648952"],["-122.7245886","37.9667656"],["-122.7260661","37.9689542"],["-122.7265086","37.9693672"],["-122.7292634","37.9711343"],["-122.7295056","37.9713806"],["-122.7298004","37.9719115"],["-122.7301159","37.9723901"],["-122.7305285","37.9729448"],["-122.7324357","37.9753427"],["-122.7333226","37.9767002"],["-122.7336242","37.9771307"],["-122.7339499","37.9774931"],["-122.7348281","37.9783518"],["-122.7350443","37.9785344"],["-122.7352473","37.9786808"],["-122.7355036","37.9788117"],["-122.7364336","37.9792117"],["-122.7366926","37.9793569"],["-122.7370964","37.9796528"],["-122.7389101","37.9810721"],["-122.7392823","37.98144"],["-122.7397646","37.982034"],["-122.7407358","37.9832126"],["-122.7410001","37.9838318"],["-122.7411407","37.9843189"],["-122.7412641","37.9845397"],["-122.7413941","37.9846521"],["-122.7416235","37.9847777"],["-122.7418858","37.9849184"],["-122.7421294","37.9851036"],["-122.7427031","37.9859211"],["-122.7436382","37.9867284"],["-122.744291","37.9871637"],["-122.7446646","37.9875402"],["-122.745011","37.9878673"],["-122.7453054","37.9880381"],["-122.7457057","37.9882144"],["-122.7462119","37.9884014"],["-122.7464493","37.988544"],["-122.7469275","37.9889333"],["-122.7484125","37.9901906"],["-122.7488157","37.9904798"],["-122.7491643","37.9906596"],["-122.7497717","37.9909484"],["-122.7504613","37.9912938"],["-122.7511391","37.9917357"],["-122.752325","37.9927816"],["-122.752896","37.9934712"],["-122.754169","37.9952012"],["-122.7543122","37.9955113"],["-122.7544303","37.9959117"],["-122.754644","37.9968818"],["-122.7547991","37.9973406"],["-122.7549897","37.9977132"],["-122.75503","37.9977977"],["-122.7550868","37.9979189"],["-122.7551873","37.9980762"],["-122.7552251","37.9981245"],["-122.7555194","37.9984312"],["-122.7557456","37.9988101"],["-122.7557771","37.9990426"],["-122.7557724","37.9992371"],["-122.755796","37.9994057"],["-122.755914","37.9995918"],["-122.7561395","37.9997884"],["-122.756727","38.0001932"],["-122.7580202","38.0010331"],["-122.758356","38.0013974"],["-122.7586266","38.0017956"],["-122.7587473","38.002551"],["-122.7588397","38.0030049"],["-122.7589687","38.0033265"],["-122.7591583","38.0037382"],["-122.7594038","38.0042295"],["-122.7604307","38.0057491"],["-122.7612302","38.0069038"],["-122.7614765","38.0072051"],["-122.7617541","38.0074681"],["-122.7622888","38.0078888"],["-122.7629159","38.0083576"],["-122.7633823","38.0087503"],["-122.7636552","38.0090272"],["-122.7638249","38.009237"],["-122.7641817","38.0098096"],["-122.764536","38.0104109"],["-122.7646645","38.0105768"],["-122.7647676","38.0106765"],["-122.7648995","38.0107736"],["-122.7650338","38.010848"],["-122.7658656","38.0111952"],["-122.7662431","38.0113885"],["-122.7665138","38.011578"],["-122.7669782","38.0119324"],["-122.7671146","38.0120558"],["-122.7672144","38.0122074"],["-122.7672666","38.0123497"],["-122.767279","38.0126166"],["-122.7671596","38.013234"],["-122.7671091","38.0135422"],["-122.7671094","38.013752"],["-122.7671574","38.0139461"],["-122.7672463","38.0141696"],["-122.7676073","38.0145993"],["-122.7680131","38.0149911"],["-122.7684079","38.0153358"],["-122.7690114","38.0157822"],["-122.7693685","38.0160699"],["-122.769922","38.0169194"],["-122.7701127","38.0171537"],["-122.7707883","38.0178146"],["-122.7711781","38.0182963"],["-122.7713252","38.018534"],["-122.7717441","38.0194329"],["-122.7731485","38.0212475"],["-122.7746354","38.0236802"],["-122.7748002","38.0243209"],["-122.7749227","38.0245528"],["-122.7750921","38.024722"],["-122.7753884","38.0248511"],["-122.7756728","38.0248934"],["-122.7758595","38.0249461"],["-122.7759979","38.0250063"],["-122.7761398","38.0250988"],["-122.776221","38.0251866"],["-122.7763032","38.0253599"],["-122.7763518","38.0254572"],["-122.776467","38.0255783"],["-122.7767139","38.0260058"],["-122.7769164","38.0262452"],["-122.7770258","38.0263277"],["-122.7772619","38.0264507"],["-122.7778945","38.0266959"],["-122.778085","38.0267975"],["-122.7783263","38.0270004"],["-122.77847","38.0271654"],["-122.7788428","38.0277221"],["-122.7792905","38.0284215"],["-122.7798247","38.0292642"],["-122.7799367","38.0295067"],["-122.780262","38.0300401"],["-122.7808809","38.0309713"],["-122.7815606","38.0322317"],["-122.7836717","38.0366529"],["-122.7841384","38.0379682"],["-122.7841756","38.0383533"],["-122.7842187","38.0385145"],["-122.784318","38.0386726"],["-122.7846207","38.0390599"],["-122.784784","38.0391891"],["-122.7849427","38.0392741"],["-122.7852897","38.0394314"],["-122.78785","38.0405237"],["-122.7879053","38.0405488"],["-122.787948","38.0405713"],["-122.7879884","38.0405949"],["-122.7880288","38.0406217"],["-122.7880647","38.0406511"],["-122.7880981","38.040682"],["-122.7881303","38.0407136"],["-122.7881615","38.0407489"],["-122.7882134","38.0408221"],["-122.7882373","38.0408614"],["-122.7883509","38.0410848"],["-122.7887733","38.0419455"],["-122.7888639","38.0423494"],["-122.7888927","38.0426903"],["-122.7888919","38.0429512"],["-122.7888432","38.0432931"],["-122.7888494","38.0434717"],["-122.7888715","38.0436316"],["-122.7889149","38.0437621"],["-122.7889964","38.0439114"],["-122.7891064","38.0440444"],["-122.7892483","38.0441922"],["-122.7894427","38.0443283"],["-122.7897725","38.0445405"],["-122.7899062","38.0446459"],["-122.7899866","38.0447228"],["-122.7900848","38.0448206"],["-122.7902196","38.0449574"],["-122.7903998","38.0451498"],["-122.7913595","38.0463072"],["-122.791638","38.0466227"],["-122.7918407","38.046788"],["-122.7920284","38.0469261"],["-122.7921654","38.0470555"],["-122.7922595","38.0471672"],["-122.7923373","38.0473044"],["-122.7923806","38.0474241"],["-122.7924221","38.0476083"],["-122.7925295","38.0485473"],["-122.7925939","38.0488532"],["-122.7926645","38.0490504"],["-122.7927837","38.0492676"],["-122.793894","38.0511098"],["-122.7943619","38.0521228"],["-122.7944405","38.0522657"],["-122.7945546","38.0523933"],["-122.794639","38.0524774"],["-122.7948378","38.0526128"],["-122.7962738","38.0534316"],["-122.7968421","38.0537929"],["-122.7974486","38.0542264"],["-122.7976131","38.0543668"],["-122.7977871","38.0545514"],["-122.7980249","38.0548675"],["-122.7981565","38.0550697"],["-122.7982303","38.0552288"],["-122.7983314","38.0555747"],["-122.7984977","38.0561708"],["-122.7987032","38.0569032"],["-122.7987974","38.0571103"],["-122.7988986","38.0572918"],["-122.799027","38.057441"],["-122.7991505","38.0575606"],["-122.799238","38.0576307"],["-122.7993296","38.0576911"],["-122.7994348","38.0577487"],["-122.7995654","38.0578065"],["-122.7998471","38.0579107"],["-122.8001146","38.0580105"],["-122.8003605","38.0581132"],["-122.8005836","38.0582433"],["-122.800717","38.0583522"],["-122.8008362","38.058484"],["-122.8009795","38.0587111"],["-122.8012294","38.0592089"],["-122.8016002","38.0599164"],["-122.8017564","38.0601917"],["-122.8018605","38.0603285"],["-122.8047904","38.0633607"],["-122.8048255","38.0634022"],["-122.8048601","38.0634455"],["-122.80489","38.0634856"],["-122.8049515","38.0635786"],["-122.8049763","38.0636203"],["-122.8050206","38.0637067"],["-122.8050401","38.0637479"],["-122.8050579","38.0637953"],["-122.8050906","38.0638957"],["-122.8051178","38.0640031"],["-122.8051286","38.0640538"],["-122.8051357","38.0641028"],["-122.8051423","38.064173"],["-122.8051478","38.0642418"],["-122.8051515","38.0643126"],["-122.8051523","38.0644412"],["-122.8051488","38.0645601"],["-122.8051444","38.0646543"],["-122.8050975","38.0656742"],["-122.8050916","38.0657618"],["-122.8050844","38.0658128"],["-122.8050746","38.0658634"],["-122.8050597","38.0659141"],["-122.8050408","38.0659627"],["-122.8050173","38.0660062"],["-122.8049877","38.0660485"],["-122.8049555","38.0660889"],["-122.8048816","38.0661696"],["-122.8047857","38.0662734"],["-122.8047082","38.0663594"],["-122.8045645","38.0665352"],["-122.8043962","38.0667679"],["-122.8043313","38.0668639"],["-122.8042934","38.0669262"],["-122.8042214","38.067066"],["-122.8052136","38.0675369"],["-122.8053369","38.0676022"],["-122.8061725","38.0682107"],["-122.8067657","38.0687992"],["-122.8028502","38.0718247"],["-122.8023146","38.072255"],["-122.8020177","38.0725551"],["-122.8015148","38.0731811"],["-122.8014412","38.0733004"],["-122.8014109","38.0733871"],["-122.8014202","38.0734597"],["-122.8014552","38.0735232"],["-122.8017661","38.0739577"],["-122.8041131","38.077235"],["-122.8044436","38.0777343"],["-122.8045591","38.0778692"],["-122.8047116","38.0780018"],["-122.805148","38.0783397"],["-122.8055307","38.0786366"],["-122.8056739","38.0787696"],["-122.8057161","38.0788439"],["-122.805744","38.0789563"],["-122.805776","38.0791391"],["-122.8057964","38.0792761"],["-122.805854","38.0795201"],["-122.8059747","38.0797551"],["-122.806016","38.0797977"],["-122.8060824","38.0798493"],["-122.806201","38.0799135"],["-122.8063393","38.079966"],["-122.8064953","38.0799925"],["-122.8066814","38.0799902"],["-122.8068658","38.0799477"],["-122.8070925","38.0798666"],["-122.8073726","38.0797913"],["-122.8078404","38.0796969"],["-122.8081154","38.0796843"],["-122.8082498","38.0797019"],["-122.8083644","38.0797523"],["-122.8085212","38.0799696"],["-122.809281","38.0812165"],["-122.809363","38.0813352"],["-122.8095922","38.0816826"],["-122.8099585","38.0822502"],["-122.8115115","38.0846787"],["-122.8118517","38.0853059"],["-122.8120813","38.0859702"],["-122.8135704","38.0902626"],["-122.8136799","38.0905079"],["-122.8140671","38.0911408"],["-122.8144082","38.0915243"],["-122.8147438","38.091724"],["-122.81598","38.0920559"],["-122.8161773","38.0921961"],["-122.8162684","38.0923475"],["-122.8164083","38.0924412"],["-122.8166439","38.0924911"],["-122.8168643","38.092505"],["-122.8171564","38.0924187"],["-122.8176961","38.0921718"],["-122.8188358","38.0916855"],["-122.8190227","38.0916329"],["-122.8191805","38.0916086"],["-122.8193472","38.0915929"],["-122.8201009","38.0915546"],["-122.82037","38.0915291"],["-122.8205528","38.0914927"],["-122.8208052","38.0914294"],["-122.8210288","38.0913352"],["-122.8211956","38.0912496"],["-122.8214669","38.091074"],["-122.8217337","38.0908588"],["-122.8221289","38.0905159"],["-122.8222629","38.0904392"],["-122.8223746","38.0904045"],["-122.8224926","38.0903963"],["-122.8226127","38.0904143"],["-122.82271","38.0904494"],["-122.8228716","38.0905321"],["-122.823594","38.0909195"],["-122.8239064","38.091061"],["-122.8241981","38.091168"],["-122.8245808","38.0912855"],["-122.8247056","38.0913337"],["-122.824787","38.091378"],["-122.8248399","38.0914162"],["-122.8249474","38.091569"],["-122.825034","38.0917137"],["-122.8250853","38.0917808"],["-122.8251375","38.0918272"],["-122.8252309","38.09189"],["-122.8254083","38.0919798"],["-122.8254963","38.0920347"],["-122.8255531","38.0920947"],["-122.8255995","38.0921777"],["-122.82563","38.0923006"],["-122.825669","38.0924239"],["-122.8257075","38.0924743"],["-122.8257513","38.0925051"],["-122.8258162","38.0925336"],["-122.8259222","38.0925477"],["-122.8259992","38.0925392"],["-122.8260729","38.0925127"],["-122.8263174","38.0923799"],["-122.8264513","38.0923367"],["-122.8265601","38.0923248"],["-122.8266964","38.0923302"],["-122.8269807","38.0924089"],["-122.8272897","38.0926252"],["-122.8274377","38.092749"],["-122.8275536","38.0928831"],["-122.827674","38.0930372"],["-122.8277918","38.0932045"],["-122.8279947","38.0934388"],["-122.8282866","38.0936124"],["-122.8286029","38.0937969"],["-122.8288141","38.0939879"],["-122.8289585","38.0941653"],["-122.8291769","38.0945009"],["-122.8295982","38.0952003"],["-122.8296936","38.0954219"],["-122.8297308","38.0956198"],["-122.8296908","38.0958045"],["-122.8296225","38.0959099"],["-122.8295091","38.0960045"],["-122.82935","38.0960987"],["-122.8291798","38.0962193"],["-122.8290724","38.0963545"],["-122.8290172","38.0965102"],["-122.8289935","38.0966472"],["-122.8290018","38.0967704"],["-122.8290443","38.096923"],["-122.829102","38.0970382"],["-122.829208","38.0971325"],["-122.8293566","38.0972139"],["-122.8296235","38.0972898"],["-122.8313998","38.0975965"],["-122.8317358","38.0976722"],["-122.8320316","38.0977618"],["-122.8323357","38.0979079"],["-122.8324703","38.0980423"],["-122.8327658","38.0983887"],["-122.83289","38.0985095"],["-122.8331533","38.0986772"],["-122.8335879","38.0989331"],["-122.8338452","38.0991088"],["-122.8340325","38.099311"],["-122.8344884","38.1000483"],["-122.8347521","38.1004384"],["-122.8348965","38.1005394"],["-122.8350956","38.1005896"],["-122.8356693","38.1006218"],["-122.8359593","38.1006886"],["-122.8362158","38.1008239"],["-122.8364655","38.1010785"],["-122.83703","38.10172"],["-122.8371226","38.101861"],["-122.83717","38.1019927"],["-122.8371823","38.1021214"],["-122.8371592","38.102324"],["-122.8370855","38.1026164"],["-122.836991","38.102885"],["-122.8369545","38.103029"],["-122.836973","38.1031817"],["-122.8370675","38.1033253"],["-122.8372156","38.1034536"],["-122.8374254","38.1035318"],["-122.8375859","38.1035354"],["-122.8377417","38.1035217"],["-122.8378771","38.1035095"],["-122.8379835","38.1035078"],["-122.8380771","38.1035237"],["-122.8381825","38.103552"],["-122.8382691","38.1035899"],["-122.8383747","38.1036528"],["-122.8384575","38.1037258"],["-122.8385261","38.1037992"],["-122.8386027","38.103908"],["-122.8386672","38.1040126"],["-122.8387927","38.1042838"],["-122.8388482","38.104378"],["-122.8389159","38.1044504"],["-122.8389994","38.1045187"],["-122.8391064","38.1045806"],["-122.8392177","38.1046312"],["-122.8393938","38.1046913"],["-122.8396631","38.1047806"],["-122.8398124","38.1048488"],["-122.8399072","38.1049083"],["-122.8399703","38.1049622"],["-122.8400267","38.1050273"],["-122.8400651","38.1051048"],["-122.8400819","38.105192"],["-122.8400747","38.1052689"],["-122.8400444","38.1053404"],["-122.8399967","38.1054065"],["-122.8399403","38.1054666"],["-122.8398616","38.1055232"],["-122.8397718","38.1055833"],["-122.8397054","38.1056352"],["-122.8396604","38.1056949"],["-122.839622","38.1057803"],["-122.8395984","38.1058891"],["-122.8395783","38.1060665"],["-122.839538","38.1065884"],["-122.8394785","38.1071885"],["-122.8394799","38.1073086"],["-122.8394924","38.1075309"],["-122.8394847","38.1076147"],["-122.8394664","38.107718"],["-122.839429","38.1078493"],["-122.8393429","38.1080855"],["-122.8391853","38.1084917"],["-122.8391629","38.1086039"],["-122.8391703","38.1086985"],["-122.8392025","38.1087874"],["-122.8392604","38.1088783"],["-122.8393485","38.108974"],["-122.8394639","38.1090694"],["-122.8395836","38.1091522"],["-122.8397091","38.1092147"],["-122.8398366","38.1092665"],["-122.8399633","38.1092993"],["-122.8401044","38.1093154"],["-122.8402388","38.1093239"],["-122.8403818","38.1093025"],["-122.8407826","38.1091282"],["-122.8413715","38.1088457"],["-122.8417291","38.1087488"],["-122.8420502","38.108713"],["-122.8423652","38.1087286"],["-122.8453774","38.1090414"],["-122.8455766","38.1090741"],["-122.8457099","38.1091167"],["-122.8458125","38.1091575"],["-122.8458947","38.1092063"],["-122.8460197","38.1093122"],["-122.8523774","38.1154183"],["-122.8530896","38.1162139"],["-122.8533274","38.1169994"],["-122.8570245","38.1234823"],["-122.8569847","38.1248313"],["-122.8571202","38.1253468"],["-122.8573813","38.1256631"],["-122.85792","38.1259065"],["-122.8592522","38.1262695"],["-122.860443","38.126864"],["-122.8620245","38.1276815"],["-122.8658702","38.1300817"],["-122.8671344","38.1309111"],["-122.8677999","38.1315067"],["-122.8681131","38.1318068"],["-122.8688083","38.1322799"],["-122.8696457","38.1328779"],["-122.8702363","38.1332956"],["-122.8704918","38.1336156"],["-122.8706132","38.1340527"],["-122.870706","38.1345563"],["-122.8707961","38.1351994"],["-122.8708944","38.1357307"],["-122.8710904","38.13623"],["-122.8716365","38.1370792"],["-122.8717493","38.1373401"],["-122.8717817","38.1375656"],["-122.8717501","38.1379753"],["-122.8716627","38.1383774"],["-122.8715479","38.1388854"],["-122.8714396","38.1393996"],["-122.8714756","38.1397099"],["-122.871595","38.1400255"],["-122.8718677","38.1403539"],["-122.8721983","38.1405821"],["-122.8729776","38.1408718"],["-122.8737668","38.1411586"],["-122.8743193","38.1414511"],["-122.8749494","38.1418209"],["-122.8759209","38.1423883"],["-122.8766555","38.1428347"],["-122.8770258","38.1430231"],["-122.8775691","38.1431429"],["-122.8789882","38.1434095"],["-122.8792379","38.143465"],["-122.879443","38.1435144"],["-122.8799169","38.1436377"],["-122.8805622","38.1438077"],["-122.8809171","38.1439353"],["-122.8811757","38.1440743"],["-122.8817672","38.1447892"],["-122.8821103","38.1452415"],["-122.8823533","38.1456973"],["-122.8825672","38.146226"],["-122.8828286","38.1469841"],["-122.8831606","38.1479986"],["-122.8833071","38.1483146"],["-122.8835286","38.1485553"],["-122.8837175","38.1487006"],["-122.8841145","38.1488539"],["-122.88575","38.1491184"],["-122.8860631","38.1492245"],["-122.8862537","38.1493333"],["-122.8864648","38.1495127"],["-122.8866742","38.1497706"],["-122.8869457","38.1501219"],["-122.8876516","38.1512386"],["-122.8881358","38.1519278"],["-122.8885222","38.1522614"],["-122.8898768","38.1531287"],["-122.8904559","38.1535531"],["-122.8907783","38.1538577"],["-122.8910297","38.154168"],["-122.892187","38.1557619"],["-122.8927808","38.1566328"],["-122.8932041","38.1574076"],["-122.8934302","38.1578075"],["-122.8942005","38.1588246"],["-122.8943949","38.1591201"],["-122.8944805","38.1593992"],["-122.8944858","38.1596409"],["-122.8944475","38.1598413"],["-122.8943334","38.1601098"],["-122.8940083","38.1606405"],["-122.8936456","38.161276"],["-122.8935037","38.1616533"],["-122.893361","38.162199"],["-122.8932542","38.162467"],["-122.893086","38.1627217"],["-122.8929117","38.1629103"],["-122.8919094","38.1637892"],["-122.8913153","38.1643706"],["-122.8912454","38.1644894"],["-122.8912251","38.164571"],["-122.8912267","38.164666"],["-122.8912625","38.1647638"],["-122.891329","38.1648479"],["-122.8914178","38.1649123"],["-122.8915195","38.1649633"],["-122.8917087","38.1650293"],["-122.8919026","38.1651145"],["-122.8920785","38.1652186"],["-122.892187","38.16531"],["-122.8923407","38.1654831"],["-122.8925261","38.1657254"],["-122.8926501","38.1659315"],["-122.8927197","38.1661061"],["-122.8927756","38.1663512"],["-122.8928406","38.1666876"],["-122.8929226","38.166867"],["-122.8930498","38.1670173"],["-122.8931916","38.1671108"],["-122.893379","38.1671965"],["-122.8940033","38.1674165"],["-122.8946367","38.1676557"],["-122.8949522","38.1677921"],["-122.8952155","38.1679397"],["-122.8954065","38.168053"],["-122.8954957","38.1681132"],["-122.8957345","38.1682999"],["-122.8960425","38.1685981"],["-122.896364","38.168956"],["-122.8966245","38.1693034"],["-122.8968841","38.1696933"],["-122.8970038","38.1698344"],["-122.8972546","38.1700451"],["-122.8978992","38.1705497"],["-122.8980986","38.1707552"],["-122.8981843","38.1709237"],["-122.8982044","38.1710394"],["-122.8981903","38.1711938"],["-122.8980007","38.1718852"],["-122.8979877","38.1719691"],["-122.8979856","38.1720322"],["-122.8979897","38.1721127"],["-122.8980646","38.1722178"],["-122.8981745","38.1723134"],["-122.8984516","38.1725377"],["-122.8987893","38.1728142"],["-122.8990807","38.173088"],["-122.8993206","38.1733435"],["-122.8994761","38.1735462"],["-122.8995915","38.1737822"],["-122.8997368","38.174385"],["-122.8998052","38.1745507"],["-122.9000048","38.1748604"],["-122.9004182","38.1754444"],["-122.9012169","38.1764136"],["-122.9013625","38.1765721"],["-122.901529","38.1767039"],["-122.901807","38.1768535"],["-122.9026775","38.1772082"],["-122.903286","38.1774884"],["-122.9043789","38.1781229"],["-122.90468","38.1782519"],["-122.9050504","38.1783036"],["-122.9065193","38.1783887"],["-122.9069867","38.178447"],["-122.9072376","38.1785437"],["-122.9074155","38.1786567"],["-122.9076164","38.1788396"],["-122.9078832","38.1791199"],["-122.9081616","38.1794075"],["-122.9084379","38.1797013"],["-122.9087136","38.1799899"],["-122.9088448","38.1801612"],["-122.908994","38.1803908"],["-122.9091428","38.1806204"],["-122.9092501","38.1807585"],["-122.9094273","38.1809544"],["-122.9095209","38.181106"],["-122.9095863","38.1812779"],["-122.9096199","38.1814443"],["-122.9096417","38.1816267"],["-122.9096494","38.1818476"],["-122.9096255","38.1824509"],["-122.9096204","38.1827679"],["-122.9096479","38.1829708"],["-122.9096909","38.1830862"],["-122.9097643","38.1832359"],["-122.9099203","38.183419"],["-122.9101754","38.1836153"],["-122.9104672","38.1837796"],["-122.9107563","38.1839061"],["-122.9110275","38.1840243"],["-122.9112143","38.1841397"],["-122.9113372","38.1842639"],["-122.9114195","38.1843895"],["-122.9115194","38.1846169"],["-122.9116491","38.1848699"],["-122.9118482","38.1851867"],["-122.9121204","38.1856099"],["-122.9122419","38.1858533"],["-122.912305","38.1860511"],["-122.9123553","38.1862692"],["-122.9123684","38.186515"],["-122.9123427","38.18747"],["-122.9123488","38.187899"],["-122.9124122","38.1881289"],["-122.9125245","38.1883009"],["-122.9126703","38.1884429"],["-122.9134411","38.1889921"],["-122.9144136","38.1897374"],["-122.9153157","38.1904281"],["-122.9173321","38.191932"],["-122.9176728","38.1921996"],["-122.9177802","38.1923294"],["-122.9178507","38.1924704"],["-122.9178888","38.1926529"],["-122.9178919","38.1929746"],["-122.917914","38.1931042"],["-122.9180967","38.1935488"],["-122.9184196","38.1941035"],["-122.9184913","38.1941945"],["-122.9185846","38.1942955"],["-122.9190178","38.1946489"],["-122.9191771","38.1948258"],["-122.9192915","38.1950052"],["-122.9193976","38.1952417"],["-122.9196403","38.1958147"],["-122.9196823","38.1959681"],["-122.9196888","38.196347"],["-122.9197307","38.1964956"],["-122.919834","38.1966712"],["-122.9202474","38.1970943"],["-122.9203259","38.1972944"],["-122.9202849","38.1977358"],["-122.920177","38.1987166"],["-122.9201864","38.1989407"],["-122.9202343","38.1991079"],["-122.9203471","38.1993415"],["-122.9205423","38.1996407"],["-122.9207075","38.1999353"],["-122.9208074","38.2002267"],["-122.9208665","38.2005276"],["-122.9209042","38.2008247"],["-122.9209372","38.2012246"],["-122.9209871","38.2013764"],["-122.9211284","38.2015473"],["-122.9216661","38.2019382"],["-122.9219145","38.2021647"],["-122.9219875","38.2022695"],["-122.9220657","38.202458"],["-122.9221604","38.2027867"],["-122.9222702","38.2031341"],["-122.9224885","38.2038593"],["-122.9225564","38.2041633"],["-122.9225526","38.204357"],["-122.9225068","38.2046015"],["-122.9223889","38.2048396"],["-122.9222327","38.2050541"],["-122.9221978","38.2051653"],["-122.9222255","38.20527"],["-122.9223061","38.2053591"],["-122.9224239","38.2054136"],["-122.9225745","38.2054363"],["-122.9229237","38.2054554"],["-122.9232023","38.2054911"],["-122.9234715","38.2055645"],["-122.9236459","38.2056403"],["-122.9236643","38.205652"],["-122.9238116","38.2057562"],["-122.9239732","38.2059398"],["-122.9241262","38.2061957"],["-122.9242654","38.2064892"],["-122.9247015","38.2074776"],["-122.9250213","38.2080562"],["-122.9251244","38.2083066"],["-122.9252246","38.2086794"],["-122.9253156","38.2092155"],["-122.9254235","38.2099387"],["-122.9254442","38.2101877"],["-122.9253994","38.2103418"],["-122.9252906","38.2104963"],["-122.9251672","38.2106068"],["-122.9250109","38.210675"],["-122.9249093","38.2106908"],["-122.9248044","38.2106814"],["-122.9247056","38.2106641"],["-122.9246052","38.2106368"],["-122.9244971","38.2106087"],["-122.9243749","38.2105827"],["-122.924256","38.2105682"],["-122.9241216","38.2105745"],["-122.9239772","38.2106063"],["-122.9238548","38.2106717"],["-122.9237887","38.2107274"],["-122.9237435","38.2107835"],["-122.9237","38.2108594"],["-122.9236793","38.2109294"],["-122.9236687","38.2109871"],["-122.9236691","38.211035"],["-122.9236904","38.211112"],["-122.923725","38.2111824"],["-122.9237902","38.2112703"],["-122.9240148","38.2115266"],["-122.9242583","38.2119166"],["-122.9243643","38.2120402"],["-122.9245222","38.2121877"],["-122.9246082","38.212307"],["-122.9246453","38.2123995"],["-122.9246775","38.2125607"],["-122.9247275","38.2126781"],["-122.9247988","38.2127634"],["-122.9248912","38.2128586"],["-122.9249566","38.212954"],["-122.9249869","38.2130466"],["-122.9249929","38.2131249"],["-122.9249764","38.2132032"],["-122.9249189","38.2133955"],["-122.9248991","38.2135068"],["-122.9248973","38.2136102"],["-122.9249393","38.2139163"],["-122.9249322","38.2140212"],["-122.9249081","38.2141161"],["-122.9248739","38.214196"],["-122.9248201","38.2142731"],["-122.9247479","38.2143689"],["-122.9245906","38.2145374"],["-122.9245486","38.2146066"],["-122.924524","38.2146905"],["-122.9245219","38.2147817"],["-122.9245406","38.2148745"],["-122.9245788","38.215038"],["-122.9245857","38.2151345"],["-122.9245611","38.2152855"],["-122.9245098","38.2157156"],["-122.9244085","38.2160802"],["-122.9243221","38.2162293"],["-122.9241675","38.2163837"],["-122.9240143","38.2164942"],["-122.9234084","38.2167888"],["-122.9232883","38.2168617"],["-122.9232325","38.2169511"],["-122.9232263","38.2170535"],["-122.9232442","38.2171269"],["-122.9232952","38.217226"],["-122.9234124","38.2173953"],["-122.923507","38.2176348"],["-122.923521","38.2177609"],["-122.92349","38.2179151"],["-122.9234271","38.2180287"],["-122.923344","38.2181126"],["-122.9231239","38.2182759"],["-122.9230092","38.2184169"],["-122.9229702","38.2185174"],["-122.9229622","38.2186727"],["-122.9230035","38.2190598"],["-122.9230223","38.2193267"],["-122.9230103","38.2194561"],["-122.9229097","38.2196948"],["-122.9225788","38.220143"],["-122.922521","38.2203506"],["-122.9224716","38.2205959"],["-122.9223833","38.2208931"],["-122.9222665","38.2211378"],["-122.9221437","38.2213094"],["-122.9219962","38.2214255"],["-122.9216422","38.221585"],["-122.9202532","38.222164"],["-122.9199552","38.2223044"],["-122.9197639","38.2224377"],["-122.9194285","38.2226967"],["-122.9192157","38.2228221"],["-122.9190023","38.2229051"],["-122.9186324","38.2230174"],["-122.9183767","38.2231107"],["-122.9181531","38.2232632"],["-122.9177305","38.2235696"],["-122.9174337","38.2237495"],["-122.9171414","38.2239171"],["-122.9167976","38.2241151"],["-122.9166489","38.2242404"],["-122.9165059","38.2243711"],["-122.9163267","38.2245973"],["-122.9162176","38.2247979"],["-122.9160926","38.2250966"],["-122.9160491","38.2252682"],["-122.9160382","38.2254242"],["-122.9160665","38.2256643"],["-122.916117","38.2259158"],["-122.9162122","38.2266883"],["-122.9162876","38.2278713"],["-122.9162762","38.2281216"],["-122.9162167","38.228313"],["-122.9160849","38.2285632"],["-122.9158873","38.2288443"],["-122.9153957","38.2294525"],["-122.915266","38.2296369"],["-122.9151138","38.2298736"],["-122.9149203","38.23011"],["-122.9146114","38.2304186"],["-122.9143992","38.2306204"],["-122.9142756","38.2307579"],["-122.9141465","38.2309447"],["-122.9140496","38.2311054"],["-122.9138017","38.2315638"],["-122.9136106","38.2318871"],["-122.9134572","38.2321073"],["-122.9131404","38.2324541"],["-122.9124864","38.2330037"],["-122.9122286","38.2331841"],["-122.9120371","38.2333033"],["-122.9118079","38.2334232"],["-122.9108915","38.2338754"],["-122.9107398","38.233968"],["-122.9105898","38.2340653"],["-122.9104622","38.2341747"],["-122.9102445","38.2343907"],["-122.910128","38.2344995"],["-122.9100283","38.2345696"],["-122.9099324","38.2346173"],["-122.9096213","38.234763"],["-122.9095482","38.2348108"],["-122.9094905","38.2348655"],["-122.9094325","38.2349395"],["-122.9093957","38.2350248"],["-122.909369","38.2351031"],["-122.9093631","38.2352691"],["-122.9093715","38.2354567"],["-122.9094148","38.235985"],["-122.9094194","38.236132"],["-122.9094049","38.2362125"],["-122.9093743","38.2362896"],["-122.9093426","38.2363532"],["-122.9092938","38.236429"],["-122.9092279","38.2365059"],["-122.9091404","38.236595"],["-122.9089938","38.2367312"],["-122.9088985","38.2368237"],["-122.9088236","38.2369083"],["-122.9087546","38.2369842"],["-122.9086785","38.2370547"],["-122.9086041","38.2371188"],["-122.9084781","38.2372082"],["-122.9081611","38.2374129"],["-122.9080766","38.2374806"],["-122.9080188","38.2375445"],["-122.9079527","38.2376305"],["-122.9078866","38.2377355"],["-122.9077881","38.2378854"],["-122.9077207","38.2379573"],["-122.9076616","38.2380126"],["-122.907605","38.238057"],["-122.9075441","38.2380957"],["-122.9074657","38.2381294"],["-122.90731","38.2381707"],["-122.9071264","38.2382175"],["-122.907044","38.2382431"],["-122.9069781","38.238271"],["-122.9069121","38.2383019"],["-122.906838","38.2383581"],["-122.906045","38.239145"],["-122.9059219","38.2392515"],["-122.9058537","38.2393015"],["-122.9057758","38.2393498"],["-122.905697","38.2393905"],["-122.9056054","38.2394332"],["-122.905525","38.239472"],["-122.9054526","38.23952"],["-122.9053901","38.2395647"],["-122.9053428","38.2396113"],["-122.9053007","38.2396704"],["-122.9052681","38.2397492"],["-122.9052388","38.2398812"],["-122.9052262","38.2401268"],["-122.9052014","38.2405998"],["-122.9050798","38.2426002"],["-122.9048623","38.2455557"],["-122.9048211","38.2461865"],["-122.9047496","38.2472055"],["-122.9041292","38.254259"],["-122.9040357","38.2558562"],["-122.9039812","38.2566042"],["-122.9039227","38.2568422"],["-122.9038457","38.2570426"],["-122.9036485","38.2574722"],["-122.9029955","38.2587877"],["-122.9026462","38.2592932"],["-122.902041","38.2599277"],["-122.9016652","38.2603047"],["-122.9014738","38.2605189"],["-122.9013245","38.2607502"],["-122.9010947","38.2612613"],["-122.9010292","38.2614868"],["-122.9009827","38.2617776"],["-122.9009714","38.2620836"],["-122.9009948","38.2633005"],["-122.9012962","38.264076"],["-122.9016501","38.2649245"],["-122.9018723","38.2654426"],["-122.9022574","38.266757"],["-122.9024936","38.2680651"],["-122.9025486","38.268555"],["-122.9025376","38.2689862"],["-122.9024484","38.269642"],["-122.9023066","38.2701418"],["-122.9020117","38.2707996"],["-122.9011815","38.272383"],["-122.900961","38.2727197"],["-122.900639","38.2731282"],["-122.9004864","38.2733644"],["-122.9003505","38.2736451"],["-122.9002802","38.2738437"],["-122.9002122","38.274149"],["-122.9001961","38.2743169"],["-122.9002168","38.2748073"],["-122.9001962","38.2751163"],["-122.9000046","38.276269"],["-122.8999488","38.2767466"],["-122.9000359","38.2776825"],["-122.9002154","38.2792456"],["-122.9002861","38.2799571"],["-122.9002845","38.2803113"],["-122.9001143","38.2815697"],["-122.8993586","38.2865002"],["-122.8988548","38.2910558"],["-122.8987859","38.2914348"],["-122.8987144","38.2916294"],["-122.8985927","38.2918647"],["-122.8981537","38.2925472"],["-122.8976114","38.2935276"],["-122.8974041","38.2938871"],["-122.8972516","38.2940339"],["-122.8969838","38.2942239"],["-122.8967963","38.2943979"],["-122.8965992","38.2946262"],["-122.8963165","38.2950419"],["-122.8961526","38.2952854"],["-122.8959381","38.2956106"],["-122.8954643","38.2967759"],["-122.8954069","38.2970203"],["-122.8953974","38.2971832"],["-122.8954064","38.2973567"],["-122.8954894","38.2977029"],["-122.8968427","38.3040054"],["-122.8969868","38.3046122"],["-122.8971053","38.3049334"],["-122.8973996","38.3055606"],["-122.8974954","38.3058062"],["-122.8975488","38.3059944"],["-122.8975551","38.3075043"],["-122.8975475","38.3119666"],["-122.8975263","38.3127316"],["-122.8974926","38.3128836"],["-122.8974018","38.3131697"],["-122.8971659","38.3139624"],["-122.8965617","38.3162716"],["-122.8969006","38.3166209"],["-122.8976135","38.3169721"],["-122.8983669","38.3173415"],["-122.8990347","38.317622"],["-122.9074332","38.3206497"],["-122.908111","38.3208938"],["-122.9085822","38.321016"],["-122.9093577","38.3211391"],["-122.9101616","38.3212529"],["-122.9110857","38.3213653"],["-122.9117828","38.3214132"],["-122.9134217","38.3214466"],["-122.9157102","38.3211403"],["-122.9164656","38.3210219"],["-122.9167345","38.3209381"],["-122.9169856","38.3208216"],["-122.9172037","38.3206862"],["-122.9173664","38.3205649"],["-122.9175562","38.3203693"],["-122.9181713","38.3196963"],["-122.9184716","38.3193866"],["-122.9187102","38.3191741"],["-122.918938","38.3189974"],["-122.9203926","38.3180721"],["-122.9214212","38.3174437"],["-122.9216906","38.3173206"],["-122.921874","38.3172655"],["-122.9220544","38.3172422"],["-122.9221639","38.3172437"],["-122.9222593","38.3172511"],["-122.9223964","38.3172714"],["-122.9225776","38.3173234"],["-122.9228572","38.317425"],["-122.9238152","38.3177901"],["-122.9244237","38.318006"],["-122.9246736","38.3180847"],["-122.9249341","38.3181509"],["-122.9255332","38.3182746"],["-122.9257362","38.3183337"],["-122.9258839","38.3183935"],["-122.9260458","38.3184701"],["-122.9262715","38.3185969"],["-122.9264039","38.3186956"],["-122.9265181","38.3187988"],["-122.927438","38.3200039"],["-122.927843","38.3205923"],["-122.9279761","38.3209603"],["-122.9279606","38.3215479"],["-122.9278857","38.3227691"],["-122.9278561","38.323359"],["-122.9278895","38.3235714"],["-122.9279281","38.3237571"],["-122.9280173","38.3239577"],["-122.9282502","38.3243189"],["-122.9284099","38.324458"],["-122.928612","38.3245953"],["-122.9288131","38.3247074"],["-122.9290278","38.3247911"],["-122.9292541","38.3248545"],["-122.9294844","38.3249054"],["-122.929814","38.3249421"],["-122.9419334","38.3258864"],["-122.9423099","38.3258863"],["-122.9425442","38.3258659"],["-122.9428756","38.325805"],["-122.9433174","38.3257097"],["-122.9436186","38.3256634"],["-122.9438623","38.3256331"],["-122.9440888","38.3256198"],["-122.9443805","38.3256249"],["-122.9447395","38.3256512"],["-122.9457106","38.3258161"],["-122.9531696","38.3271934"],["-122.9542363","38.3275745"],["-122.9555536","38.3281587"],["-122.9679506","38.3328019"],["-122.9680852","38.3328453"],["-122.9718566","38.3339053"],["-122.9721672","38.3340052"],["-122.9723155","38.3340613"],["-122.9724686","38.3341276"],["-122.9725992","38.3341874"],["-122.9727344","38.3342581"],["-122.9728617","38.3343338"],["-122.972983","38.3344119"],["-122.9730911","38.3344875"],["-122.9731932","38.3345638"],["-122.9732887","38.3346442"],["-122.9733788","38.334726"],["-122.9734634","38.3348099"],["-122.9735478","38.3349029"],["-122.9736378","38.3350063"],["-122.9737138","38.3351054"],["-122.973834","38.3352826"],["-122.973994","38.335522"],["-122.9741608","38.3357602"],["-122.9742339","38.3358521"],["-122.9743891","38.3360258"],["-122.9744689","38.3361045"],["-122.9745571","38.3361836"],["-122.9746444","38.3362567"],["-122.9747433","38.3363323"],["-122.9748435","38.3364048"],["-122.9749529","38.3364769"],["-122.9750725","38.3365486"],["-122.975189","38.3366123"],["-122.9753025","38.336671"],["-122.9754338","38.3367311"],["-122.9755587","38.3367837"],["-122.9756905","38.3368339"],["-122.9758275","38.3368806"],["-122.9759656","38.3369218"],["-122.9760925","38.3369559"],["-122.976235","38.3369898"],["-122.9763714","38.3370175"],["-122.9765289","38.3370417"],["-122.9800803","38.3373829"],["-122.9803169","38.337387"],["-122.98056","38.3373799"],["-122.9856816","38.337013"],["-122.9867519","38.3369306"],["-122.9869471","38.3369068"],["-122.987112","38.3368806"],["-122.987264","38.3368514"],["-122.9874194","38.336815"],["-122.9875861","38.3367714"],["-122.9877375","38.3367287"],["-122.9878924","38.3366767"],["-122.98805","38.3366178"],["-122.9882044","38.336555"],["-122.988359","38.3364859"],["-122.9884996","38.3364143"],["-122.98876","38.3362656"],["-122.989015","38.3361146"],["-122.9891474","38.3360418"],["-122.9892756","38.3359742"],["-122.9894225","38.3359015"],["-122.9897324","38.3357593"],["-122.9898953","38.3356914"],["-122.9900481","38.3356328"],["-122.9902263","38.3355713"],["-122.9904089","38.3355135"],["-122.990637","38.3354494"],["-122.9921229","38.3350633"],["-122.9922647","38.3350218"],["-122.9924008","38.3349769"],["-122.9925555","38.3349188"],["-122.9926907","38.3348617"],["-122.9928264","38.3347962"],["-122.9929661","38.334723"],["-122.9930901","38.3346483"],["-122.9931998","38.334578"],["-122.9933155","38.3344941"],["-122.9934214","38.3344102"],["-122.9935277","38.3343149"],["-122.9936265","38.3342176"],["-122.9937292","38.3341102"],["-122.9938235","38.3339973"],["-122.9939164","38.3338664"],["-122.9939932","38.3337393"],["-122.9940698","38.3335926"],["-122.9949776","38.3316284"],["-122.995144","38.3312754"],["-122.995202","38.3311669"],["-122.9952671","38.3310592"],["-122.9953329","38.3309622"],["-122.9954062","38.3308635"],["-122.9954836","38.3307723"],["-122.9955616","38.330687"],["-122.9956568","38.3305927"],["-122.9957613","38.3304999"],["-122.9958704","38.3304134"],["-122.9961092","38.330254"],["-122.9979057","38.3290777"],["-122.9980544","38.3289665"],["-122.9981845","38.3288561"],["-122.9983035","38.3287393"],["-122.9984195","38.328618"],["-122.9985426","38.3284874"],["-122.9986706","38.3283586"],["-122.9987852","38.3282478"],["-122.9989088","38.3281438"],["-122.9990447","38.3280399"],["-122.9991818","38.3279461"],["-122.9993305","38.3278581"],["-122.9994855","38.3277774"],["-122.9996249","38.3277149"],["-122.9997747","38.3276558"],["-123.0019876","38.3269534"],["-123.0023286","38.326857"],["-123.0024891","38.3268178"],["-123.002645","38.3267844"],["-123.0029883","38.3267243"],["-123.0031638","38.3267019"],["-123.0033439","38.3266845"],["-123.0035217","38.3266725"],["-123.0036958","38.3266655"],["-123.0038691","38.3266612"],["-123.0040323","38.3266641"],["-123.004364","38.3266817"],["-123.0062779","38.3268392"],["-123.0065372","38.3268486"],["-123.0066427","38.3268432"],["-123.006743","38.3268342"],["-123.0068406","38.3268218"],["-123.0069403","38.3268004"],["-123.0070496","38.3267717"],["-123.007155","38.3267375"],["-123.0072724","38.3266958"],["-123.0073884","38.3266445"],["-123.0075044","38.3265841"],["-123.01057","38.3247121"],["-123.0108639","38.3245104"],["-123.01095","38.3244468"],["-123.0110376","38.3243792"],["-123.0111206","38.3243118"],["-123.0122821","38.3233034"],["-123.0126291","38.3230028"],["-123.012707","38.3229287"],["-123.0127784","38.3228544"],["-123.0128433","38.3227801"],["-123.0129019","38.3227063"],["-123.0129563","38.3226267"],["-123.0130029","38.3225468"],["-123.0130425","38.3224746"],["-123.0130772","38.3223979"],["-123.0131152","38.3223077"],["-123.0131456","38.3222221"],["-123.0131699","38.3221308"],["-123.0131868","38.3220325"],["-123.0131991","38.321944"],["-123.0132064","38.3218472"],["-123.0132051","38.3217557"],["-123.0132002","38.321661"],["-123.013191","38.3215643"],["-123.0131489","38.3213234"],["-123.0131349","38.3212272"],["-123.0131285","38.321149"],["-123.0131299","38.3210646"],["-123.0131327","38.3209875"],["-123.0131407","38.3209125"],["-123.0131561","38.3208274"],["-123.0131742","38.3207448"],["-123.0131973","38.3206706"],["-123.0132206","38.3206029"],["-123.0132467","38.320537"],["-123.0132725","38.3204763"],["-123.0133056","38.3204125"],["-123.0133386","38.3203561"],["-123.0133585","38.3203249"],["-123.0133834","38.3202884"],["-123.0134221","38.3202331"],["-123.0134645","38.3201766"],["-123.0135082","38.3201217"],["-123.0135568","38.3200681"],["-123.0136088","38.3200142"],["-123.013659","38.3199674"],["-123.0142601","38.3194694"],["-123.0144794","38.3193001"],["-123.0145909","38.3192186"],["-123.0147413","38.3191199"],["-123.0148707","38.3190383"],["-123.0150114","38.3189559"],["-123.0151631","38.3188804"],["-123.0153387","38.3187998"],["-123.0154911","38.3187347"],["-123.0156516","38.3186706"],["-123.0158017","38.3186151"],["-123.0159817","38.3185569"],["-123.0163178","38.3184679"],["-123.0166508","38.3184012"],["-123.0168322","38.3183721"],["-123.0170045","38.3183491"],["-123.0171847","38.3183313"],["-123.0173675","38.3183194"],["-123.0175331","38.3183128"],["-123.0176924","38.3183083"],["-123.0178422","38.3183122"],["-123.0180132","38.3183197"],["-123.0181889","38.3183328"],["-123.0183413","38.3183475"],["-123.0185024","38.3183665"],["-123.0218819","38.3189286"],["-123.0221331","38.3189669"],["-123.0223462","38.3189909"],["-123.0225466","38.3190057"],["-123.0227617","38.3190149"],["-123.0229651","38.3190187"],["-123.0231613","38.3190131"],["-123.0233293","38.3190046"],["-123.0235218","38.3189906"],["-123.0236891","38.3189742"],["-123.0238799","38.3189508"],["-123.0240796","38.3189179"],["-123.024256","38.3188847"],["-123.0244228","38.3188472"],["-123.0247483","38.3187599"],["-123.0249003","38.3187128"],["-123.027821","38.3176939"],["-123.0279573","38.3176493"],["-123.0280929","38.3176073"],["-123.0282154","38.317574"],["-123.0283536","38.3175412"],["-123.0284651","38.3175168"],["-123.0285949","38.3174938"],["-123.028713","38.3174772"],["-123.0288458","38.3174624"],["-123.0289535","38.3174531"],["-123.0290905","38.3174478"],["-123.0292155","38.3174442"],["-123.029346","38.3174472"],["-123.0294838","38.3174535"],["-123.0296468","38.317467"],["-123.0298011","38.3174874"],["-123.0299569","38.3175184"],["-123.0301113","38.3175551"],["-123.0302652","38.3175977"],["-123.0304223","38.3176492"],["-123.0305673","38.3177062"],["-123.0307201","38.3177752"],["-123.0308674","38.3178509"],["-123.0310405","38.3179438"],["-123.0313857","38.3181392"],["-123.031553","38.3182368"],["-123.0323587","38.3187047"],["-123.0330211","38.3191023"],["-123.0333492","38.3193196"],["-123.0336369","38.3195212"],["-123.0337399","38.3195982"],["-123.0338453","38.3196824"],["-123.0339463","38.3197697"],["-123.0340399","38.3198564"],["-123.0397407","38.3257889"],["-123.0399968","38.3260423"],["-123.0400781","38.3261145"],["-123.0401656","38.3261872"],["-123.0402538","38.3262567"],["-123.0403327","38.3263145"],["-123.0404178","38.3263706"],["-123.0405043","38.3264242"],["-123.0406999","38.3265319"],["-123.0407952","38.3265807"],["-123.0409285","38.3266456"],["-123.0412747","38.3268005"],["-123.0415433","38.3269105"],["-123.0416557","38.3269592"],["-123.0417385","38.3269994"],["-123.0418179","38.3270474"],["-123.0418847","38.3270971"],["-123.0419507","38.3271502"],["-123.0425222","38.3276799"],["-123.0425975","38.3277535"],["-123.0426349","38.3277946"],["-123.0426758","38.3278414"],["-123.0427135","38.3278905"],["-123.0428522","38.3280932"],["-123.0429051","38.3281648"],["-123.0429595","38.3282356"],["-123.0430202","38.3283079"],["-123.0430927","38.3283852"],["-123.0431649","38.3284558"],["-123.0432359","38.3285185"],["-123.0433063","38.3285758"],["-123.0433716","38.3286226"],["-123.043608","38.3287799"],["-123.0442761","38.329192"],["-123.0445614","38.329367"],["-123.0446462","38.3294163"],["-123.0447262","38.3294591"],["-123.0453527","38.3297489"],["-123.0458054","38.3299452"],["-123.0458571","38.3299703"],["-123.0459541","38.3300231"],["-123.0460142","38.3300604"],["-123.0460672","38.3300968"],["-123.0461127","38.3301316"],["-123.0461607","38.3301734"],["-123.0462071","38.3302209"],["-123.0462523","38.3302737"],["-123.0468652","38.3310116"],["-123.0469012","38.3310587"],["-123.0469339","38.3311073"],["-123.0469543","38.3311467"],["-123.0469728","38.331191"],["-123.0469868","38.3312356"],["-123.0469947","38.3312775"],["-123.0469986","38.3313253"],["-123.0469977","38.3313763"],["-123.0469836","38.331551"],["-123.0469835","38.3315928"],["-123.0469853","38.3316361"],["-123.0469936","38.3316827"],["-123.0470043","38.3317307"],["-123.0470175","38.3317676"],["-123.0470359","38.3318097"],["-123.0470596","38.3318515"],["-123.0470881","38.3318918"],["-123.0471218","38.3319319"],["-123.0471607","38.3319729"],["-123.0472918","38.3320989"],["-123.047414","38.3322156"],["-123.0476283","38.3324231"],["-123.0476734","38.3324728"],["-123.0477181","38.3325272"],["-123.0477605","38.3325825"],["-123.0478001","38.3326429"],["-123.0478356","38.3326999"],["-123.0478702","38.332759"],["-123.0479919","38.3329893"],["-123.0480729","38.333151"],["-123.0484425","38.3338967"],["-123.0484702","38.3339494"],["-123.0484981","38.3340002"],["-123.0485549","38.3340883"],["-123.0486399","38.3342135"],["-123.0486669","38.3342517"],["-123.0487944","38.3344347"],["-123.0488176","38.334471"],["-123.048838","38.3345075"],["-123.0488568","38.3345472"],["-123.0488694","38.3345856"],["-123.0488784","38.3346245"],["-123.0488836","38.3346663"],["-123.0488818","38.3347094"],["-123.0488747","38.3347522"],["-123.0488624","38.3347901"],["-123.0488464","38.3348281"],["-123.0488238","38.3348658"],["-123.0487974","38.3348998"],["-123.0487688","38.3349327"],["-123.0487373","38.3349622"],["-123.0486986","38.334993"],["-123.0486614","38.3350211"],["-123.0486171","38.3350497"],["-123.0485762","38.3350743"],["-123.0485315","38.3350968"],["-123.0484859","38.3351151"],["-123.048433","38.3351335"],["-123.0483772","38.3351471"],["-123.0483119","38.3351603"],["-123.0482426","38.3351693"],["-123.0481533","38.3351739"],["-123.0479707","38.3351755"],["-123.0474619","38.335178"],["-123.0473736","38.3351818"],["-123.0472827","38.3351881"],["-123.0471905","38.3352023"],["-123.0471019","38.3352232"],["-123.0470168","38.3352506"],["-123.0469307","38.3352822"],["-123.0468501","38.3353154"],["-123.0467817","38.3353434"],["-123.0467129","38.3353651"],["-123.0466426","38.3353824"],["-123.0465695","38.335396"],["-123.0464948","38.3354046"],["-123.0464261","38.3354084"],["-123.046348","38.3354071"],["-123.0462559","38.3354021"],["-123.0460698","38.3353882"],["-123.045982","38.3353827"],["-123.0459201","38.3353835"],["-123.0458715","38.3353875"],["-123.045817","38.3353975"],["-123.0457655","38.3354133"],["-123.0457142","38.3354354"],["-123.0456721","38.3354626"],["-123.0456385","38.3354911"],["-123.0456144","38.3355211"],["-123.0455982","38.335554"],["-123.0455866","38.3355859"],["-123.0455845","38.3356228"],["-123.0455888","38.3356634"],["-123.0456034","38.3357047"],["-123.0456238","38.3357406"],["-123.0456501","38.3357772"],["-123.0456802","38.3358106"],["-123.0457501","38.3358754"],["-123.0458369","38.3359502"],["-123.0459354","38.3360271"],["-123.0459884","38.3360655"],["-123.0460312","38.3360953"],["-123.0461313","38.3361623"],["-123.0462433","38.3362303"],["-123.0463628","38.3362963"],["-123.0470933","38.336669"],["-123.0477242","38.336992"],["-123.0477766","38.3370218"],["-123.0478269","38.3370528"],["-123.0478692","38.3370813"],["-123.0479051","38.3371085"],["-123.0479347","38.3371345"],["-123.0479634","38.3371627"],["-123.0479901","38.3371935"],["-123.0480115","38.3372267"],["-123.0480329","38.3372632"],["-123.0480505","38.3373031"],["-123.0480596","38.3373396"],["-123.0480667","38.3373719"],["-123.0480688","38.3374112"],["-123.0480666","38.3374541"],["-123.0480587","38.3374963"],["-123.0480453","38.3375361"],["-123.0480268","38.3375783"],["-123.0479994","38.3376299"],["-123.0479385","38.3377231"],["-123.0478702","38.3378235"],["-123.0466931","38.3394939"],["-123.0465715","38.3396756"],["-123.046533","38.3397404"],["-123.0465081","38.3397929"],["-123.0464898","38.3398433"],["-123.0464785","38.3398929"],["-123.0464725","38.3399374"],["-123.0464712","38.3399827"],["-123.0464753","38.3400291"],["-123.0464856","38.3400669"],["-123.0465017","38.3401063"],["-123.0465231","38.3401459"],["-123.0465464","38.3401829"],["-123.0465792","38.3402188"],["-123.0466236","38.3402559"],["-123.0466733","38.3402842"],["-123.0467263","38.3403076"],["-123.0467803","38.3403238"],["-123.0468381","38.3403369"],["-123.0468988","38.3403446"],["-123.0469564","38.3403468"],["-123.0470411","38.3403444"],["-123.0472217","38.340338"],["-123.0472926","38.3403386"],["-123.0473631","38.3403406"],["-123.0474328","38.3403467"],["-123.0474997","38.3403566"],["-123.0475598","38.3403704"],["-123.0476243","38.3403905"],["-123.0476829","38.3404131"],["-123.0477417","38.3404407"],["-123.0478393","38.340497"],["-123.0480399","38.3406174"],["-123.0500933","38.3418642"],["-123.0501896","38.3419257"],["-123.0502476","38.3419681"],["-123.0503042","38.3420119"],["-123.0503564","38.3420582"],["-123.0504049","38.3421045"],["-123.0504519","38.3421575"],["-123.0504958","38.3422116"],["-123.0519078","38.3440662"],["-123.0520484","38.3442569"],["-123.0521046","38.3443412"],["-123.0521534","38.3444211"],["-123.0522041","38.3445161"],["-123.0522452","38.3446009"],["-123.052319","38.3447736"],["-123.0527476","38.3459437"],["-123.052776","38.3460077"],["-123.0528064","38.3460722"],["-123.0528382","38.3461358"],["-123.0528748","38.3462"],["-123.0529129","38.3462586"],["-123.0529522","38.346313"],["-123.0529952","38.3463646"],["-123.053043","38.346414"],["-123.0530954","38.3464646"],["-123.0531581","38.3465193"],["-123.0532166","38.3465674"],["-123.0534726","38.346752"],["-123.0543074","38.3473303"],["-123.0545264","38.3474713"],["-123.0546289","38.3475317"],["-123.0547265","38.3475832"],["-123.0550131","38.3477144"],["-123.0577969","38.3489446"],["-123.0580504","38.3490432"],["-123.0589077","38.3493399"],["-123.0590129","38.3493802"],["-123.0591021","38.3494185"],["-123.0591934","38.3494669"],["-123.05928","38.3495237"],["-123.0593637","38.3495891"],["-123.0594396","38.3496598"],["-123.0595035","38.3497318"],["-123.0595665","38.3498087"],["-123.0597407","38.3500452"],["-123.0598313","38.3501762"],["-123.0599477","38.3503497"],["-123.0600471","38.3505097"],["-123.0601289","38.3506483"],["-123.0603798","38.3511213"],["-123.0604147","38.3511822"],["-123.0604531","38.3512404"],["-123.0604971","38.3512961"],["-123.0605934","38.3514015"],["-123.0607306","38.3515372"],["-123.0620185","38.3527733"],["-123.0623175","38.3530551"],["-123.062484","38.3531972"],["-123.062643","38.3533237"],["-123.0629433","38.3535351"],["-123.0640172","38.35424"],["-123.0652317","38.3550568"],["-123.066477","38.3560145"],["-123.0666646","38.3561633"],["-123.0667599","38.3562477"],["-123.0668382","38.3563234"],["-123.0669051","38.3564034"],["-123.0669497","38.3564731"],["-123.066986","38.3565427"],["-123.0670163","38.3566163"],["-123.0670427","38.3567015"],["-123.0670617","38.3567876"],["-123.0670846","38.3569614"],["-123.0671058","38.357272"],["-123.0671103","38.3573825"],["-123.0671103","38.3574552"],["-123.0671042","38.3575306"],["-123.0670915","38.357619"],["-123.0670806","38.3576925"],["-123.0670706","38.3577775"],["-123.0670687","38.3578464"],["-123.0670717","38.3579129"],["-123.0670848","38.3579794"],["-123.0671123","38.3580447"],["-123.0671513","38.3581141"],["-123.0672543","38.3582691"],["-123.0676908","38.3589187"],["-123.0677965","38.3590898"],["-123.0678553","38.3591964"],["-123.0679099","38.3593037"],["-123.0679471","38.3594015"],["-123.067975","38.3595046"],["-123.0680044","38.3596445"],["-123.0680587","38.3599039"],["-123.0680871","38.3600252"],["-123.0681175","38.3601331"],["-123.068148","38.3602132"],["-123.0681851","38.3602914"],["-123.0682289","38.3603685"],["-123.0682845","38.3604555"],["-123.0686029","38.3608785"],["-123.0687141","38.3610273"],["-123.0687571","38.3611011"],["-123.0687954","38.3611798"],["-123.0688266","38.3612656"],["-123.0688478","38.3613546"],["-123.0688613","38.3614444"],["-123.0688645","38.3616372"],["-123.0688666","38.3619166"],["-123.0688708","38.3620582"],["-123.0688819","38.3621308"],["-123.0688996","38.3622037"],["-123.0689308","38.3622775"],["-123.0689687","38.3623449"],["-123.0690145","38.3624063"],["-123.0690707","38.3624676"],["-123.0694861","38.3628659"],["-123.0696118","38.3629898"],["-123.0696675","38.3630538"],["-123.069719","38.3631192"],["-123.0697658","38.3631859"],["-123.0698079","38.3632584"],["-123.0698463","38.3633325"],["-123.0698847","38.3634152"],["-123.0699177","38.3635056"],["-123.0699563","38.363633"],["-123.0700103","38.363843"],["-123.0700802","38.3641322"],["-123.0701059","38.3642153"],["-123.0701409","38.3642976"],["-123.0701881","38.3643923"],["-123.0702429","38.3644821"],["-123.0704297","38.3647518"],["-123.0707273","38.3651613"],["-123.0707855","38.3652452"],["-123.0710762","38.3657311"],["-123.0713103","38.3661359"],["-123.0715905","38.3666062"],["-123.0716391","38.3666954"],["-123.0716815","38.3667786"],["-123.0717148","38.3668579"],["-123.0717438","38.3669353"],["-123.0717735","38.367061"],["-123.0717981","38.3671643"],["-123.0718224","38.36726"],["-123.0718472","38.3673352"],["-123.0718746","38.3674081"],["-123.0719074","38.367472"],["-123.0719385","38.3675251"],["-123.071976","38.3675768"],["-123.0720199","38.367625"],["-123.0720689","38.3676721"],["-123.0722113","38.3677864"],["-123.0722911","38.3678512"],["-123.0723479","38.3679017"],["-123.0724052","38.3679614"],["-123.0724544","38.3680197"],["-123.0724974","38.3680772"],["-123.0725407","38.3681445"],["-123.0725786","38.3682104"],["-123.0726173","38.368288"],["-123.072659","38.3683773"],["-123.0727138","38.3685019"],["-123.0727612","38.368617"],["-123.0729176","38.369016"],["-123.0729821","38.3691973"],["-123.0729993","38.3692633"],["-123.0730092","38.36933"],["-123.0730147","38.3694022"],["-123.0730164","38.3694739"],["-123.0730113","38.3695463"],["-123.0729975","38.3696246"],["-123.0729271","38.3698867"],["-123.0728987","38.3699944"],["-123.0728905","38.3700508"],["-123.0728924","38.3701004"],["-123.0728993","38.3701447"],["-123.0729127","38.3701811"],["-123.0729331","38.3702159"],["-123.072957","38.3702436"],["-123.0729867","38.3702673"],["-123.0730176","38.3702871"],["-123.0730568","38.3703025"],["-123.0730971","38.3703156"],["-123.0731398","38.3703235"],["-123.0731827","38.3703248"],["-123.0732293","38.3703216"],["-123.0732797","38.3703135"],["-123.0733355","38.3703012"],["-123.0733865","38.3702878"],["-123.0734475","38.3702677"],["-123.0735438","38.3702347"],["-123.0736317","38.3702049"],["-123.0737196","38.3701801"],["-123.0737861","38.3701647"],["-123.0738516","38.3701555"],["-123.0739167","38.3701511"],["-123.0739757","38.3701525"],["-123.0740365","38.3701595"],["-123.0740973","38.3701722"],["-123.0741598","38.3701903"],["-123.0742216","38.3702153"],["-123.0742812","38.3702461"],["-123.0743376","38.3702795"],["-123.0743879","38.3703168"],["-123.0744309","38.3703567"],["-123.0744675","38.3703984"],["-123.0745","38.3704468"],["-123.0745291","38.3704952"],["-123.0745553","38.3705491"],["-123.0745782","38.3706086"],["-123.0745916","38.370666"],["-123.0745986","38.370722"],["-123.0746077","38.370899"],["-123.0746194","38.3710266"],["-123.0746294","38.3710818"],["-123.0746442","38.3711286"],["-123.074666","38.3711772"],["-123.0746922","38.3712276"],["-123.0747252","38.371276"],["-123.074772","38.371326"],["-123.0748273","38.3713764"],["-123.074886","38.371424"],["-123.075085","38.3715677"],["-123.0755328","38.3718905"],["-123.0758252","38.372127"],["-123.076062","38.3723434"],["-123.0761672","38.3724572"],["-123.0766487","38.3731103"],["-123.0771562","38.3738055"],["-123.077559","38.374361"],["-123.0776061","38.3744931"],["-123.0776395","38.3746257"],["-123.0776856","38.3753427"],["-123.0777197","38.3758069"],["-123.0777386","38.3759535"],["-123.0777573","38.37607"],["-123.0777873","38.3761894"],["-123.0778356","38.3763578"],["-123.0780724","38.3769812"],["-123.0781646","38.3771131"],["-123.0782696","38.3772225"],["-123.0783986","38.3773106"],["-123.0785649","38.3773822"],["-123.0787142","38.3774236"],["-123.0788899","38.3774654"],["-123.079207","38.3775302"],["-123.0793892","38.3775803"],["-123.0795106","38.3776414"],["-123.0796382","38.3777153"],["-123.0797344","38.3778104"],["-123.0798126","38.3779176"],["-123.0798711","38.3780364"],["-123.0799151","38.3781609"],["-123.0799321","38.3782963"],["-123.0799405","38.3785127"],["-123.0799584","38.3795098"],["-123.0799679","38.3800613"],["-123.0799962","38.3802826"],["-123.0800329","38.3804794"],["-123.0801009","38.3807696"],["-123.0801575","38.3809368"],["-123.0802428","38.3811094"],["-123.0803463","38.3813059"],["-123.0804792","38.3815081"],["-123.0810765","38.3822766"],["-123.0815241","38.3827894"],["-123.0819792","38.383276"],["-123.0820755","38.3833916"],["-123.0821547","38.3835016"],["-123.0822148","38.3836362"],["-123.082248","38.3837763"],["-123.0822375","38.3839235"],["-123.0821618","38.3842379"],["-123.0821833","38.3844066"],["-123.0822612","38.3845441"],["-123.0823708","38.384664"],["-123.0831947","38.385403"],["-123.0835047","38.3856997"],["-123.0836717","38.3858943"],["-123.0837913","38.3860812"],["-123.0838709","38.3862452"],["-123.0839176","38.3863638"],["-123.0839326","38.3865129"],["-123.0839424","38.3867133"],["-123.0839266","38.3870424"],["-123.083942","38.3873649"],["-123.083997","38.38801"],["-123.0840246","38.3884467"],["-123.0840119","38.3888431"],["-123.0840116","38.3890048"],["-123.0840367","38.3891861"],["-123.0842104","38.3897601"],["-123.0843088","38.3900201"],["-123.0844267","38.3902284"],["-123.0846775","38.3906266"],["-123.0848168","38.3908324"],["-123.0849281","38.3909452"],["-123.0850573","38.3910207"],["-123.0852036","38.3910915"],["-123.0854945","38.3911875"],["-123.0857618","38.3912928"],["-123.0863926","38.3916068"],["-123.0880608","38.3925128"],["-123.08824","38.3926301"],["-123.0883002","38.3926984"],["-123.0883602","38.3927784"],["-123.0884032","38.3928588"],["-123.0884381","38.3929456"],["-123.0884631","38.3930468"],["-123.0884721","38.393144"],["-123.0884598","38.3940525"],["-123.0884323","38.3946162"],["-123.0884399","38.3947214"],["-123.0884646","38.3947758"],["-123.0885076","38.3948294"],["-123.0885678","38.3948765"],["-123.0886443","38.3949094"],["-123.0887227","38.3949165"],["-123.0888078","38.3949102"],["-123.0889029","38.3948894"],["-123.0890747","38.3948081"],["-123.090005","38.394329"],["-123.0901701","38.3942597"],["-123.0902865","38.3942317"],["-123.0904387","38.3942123"],["-123.0905729","38.3942187"],["-123.0906973","38.3942394"],["-123.0908158","38.3942732"],["-123.0909285","38.3943268"],["-123.0916016","38.3947737"],["-123.0921431","38.3951399"],["-123.0924303","38.3953441"],["-123.0925743","38.3954618"],["-123.092648","38.3955336"],["-123.0927154","38.395606"],["-123.0927898","38.3956967"],["-123.0928838","38.3958657"],["-123.092905","38.3959148"],["-123.0929388","38.3960075"],["-123.0929653","38.3961019"],["-123.0930233","38.3963123"],["-123.0931395","38.3967247"],["-123.0932655","38.3971922"],["-123.0933842","38.3976497"],["-123.0934479","38.3979751"],["-123.0934702","38.3983274"],["-123.0933769","38.3995065"],["-123.0933375","38.3997782"],["-123.0932905","38.3999337"],["-123.0932051","38.4000842"],["-123.0931002","38.4002112"],["-123.0930162","38.4002838"],["-123.0927543","38.4004264"],["-123.0926669","38.4005282"],["-123.0926418","38.4006273"],["-123.0926718","38.4007315"],["-123.0927393","38.4008022"],["-123.092835","38.4008553"],["-123.0930459","38.4009264"],["-123.0933635","38.4010073"],["-123.0937755","38.4011131"],["-123.0940316","38.4011915"],["-123.0942524","38.4012736"],["-123.094377","38.4013556"],["-123.0944826","38.4014534"],["-123.0946289","38.4016552"],["-123.0947753","38.4019128"],["-123.0949077","38.4022454"],["-123.0949501","38.4024203"],["-123.0949827","38.402589"],["-123.0949722","38.4027273"],["-123.094968","38.4028892"],["-123.0949432","38.4032983"],["-123.0949726","38.4035993"],["-123.0951172","38.4043584"],["-123.0951778","38.4045573"],["-123.0952108","38.4046946"],["-123.0952705","38.4048542"],["-123.095367","38.4051157"],["-123.0955276","38.4055191"],["-123.095623","38.4057696"],["-123.095652","38.4058625"],["-123.0956552","38.4059628"],["-123.0956552","38.4060483"],["-123.0956519","38.4061269"],["-123.09562","38.4062783"],["-123.0954752","38.4068492"],["-123.0954736","38.4069345"],["-123.0954739","38.4069829"],["-123.0954753","38.4070274"],["-123.0955007","38.4071245"],["-123.0955435","38.4072221"],["-123.0964963","38.4086917"],["-123.0965775","38.4088725"],["-123.0966289","38.4090463"],["-123.0967247","38.4097248"],["-123.0967568","38.4098624"],["-123.0967905","38.4099431"],["-123.0968418","38.4100104"],["-123.0969107","38.4100841"],["-123.0970118","38.4101496"],["-123.097119","38.410213"],["-123.0972786","38.4102748"],["-123.0975074","38.4103378"],["-123.0977459","38.4104147"],["-123.0978759","38.4104807"],["-123.0980165","38.410585"],["-123.0980944","38.4106885"],["-123.0981823","38.4108858"],["-123.098353","38.4114357"],["-123.0990412","38.4136618"],["-123.0990979","38.413885"],["-123.099098","38.4140006"],["-123.0990807","38.4141275"],["-123.0990418","38.4142997"],["-123.0989418","38.4145904"],["-123.0988763","38.4147428"],["-123.098812","38.4148426"],["-123.0987242","38.4149545"],["-123.0985369","38.4151636"],["-123.0984407","38.4152889"],["-123.0984036","38.4153709"],["-123.0983868","38.4154379"],["-123.0983789","38.415506"],["-123.0983869","38.4155798"],["-123.0984133","38.4156541"],["-123.098456","38.4157197"],["-123.0985324","38.4157746"],["-123.0986111","38.415815"],["-123.0986949","38.4158482"],["-123.0987911","38.415868"],["-123.0989085","38.415868"],["-123.0990116","38.4158458"],["-123.0991712","38.4157986"],["-123.0993666","38.4157214"],["-123.099571","38.4156477"],["-123.0998764","38.415551"],["-123.1000415","38.4155275"],["-123.1001804","38.4155201"],["-123.1002999","38.415534"],["-123.1004296","38.4155747"],["-123.1005478","38.4156346"],["-123.1006439","38.4157101"],["-123.1007362","38.4158312"],["-123.1007896","38.4159878"],["-123.1008507","38.4163149"],["-123.1009659","38.4170184"],["-123.1010025","38.4171872"],["-123.1010392","38.4173229"],["-123.1010841","38.4174407"],["-123.1011336","38.4175559"],["-123.1012302","38.4177145"],["-123.1018734","38.4187193"],["-123.1021139","38.4190964"],["-123.1041633","38.4223274"],["-123.104325","38.4226478"],["-123.104351","38.4227617"],["-123.1043685","38.4229148"],["-123.1043865","38.4232056"],["-123.1044135","38.4233738"],["-123.1044665","38.4235312"],["-123.1046698","38.4238678"],["-123.1057339","38.4253603"],["-123.1060154","38.4257673"],["-123.1060758","38.4259032"],["-123.1061275","38.4260906"],["-123.1062073","38.4264916"],["-123.1062909","38.4266587"],["-123.1063883","38.426801"],["-123.1065756","38.427004"],["-123.1072813","38.4276997"],["-123.1075059","38.4279521"],["-123.1077203","38.4282148"],["-123.1080063","38.4286027"],["-123.1080992","38.4287505"],["-123.1081523","38.4288598"],["-123.1081967","38.4289771"],["-123.1082299","38.4290898"],["-123.1083374","38.4296649"],["-123.1084481","38.4300596"],["-123.108508","38.4302198"],["-123.1087033","38.4310274"],["-123.1087703","38.4314082"],["-123.1087425","38.4315943"],["-123.1086757","38.4317121"],["-123.1085412","38.4318253"],["-123.1083528","38.4319004"],["-123.1081583","38.4319295"],["-123.1072964","38.4319962"],["-123.1070331","38.4319557"],["-123.1066328","38.4318196"],["-123.1064617","38.4318189"],["-123.1060493","38.431957"],["-123.105637","38.4320852"],["-123.1051357","38.4323618"],["-123.10498","38.4324232"],["-123.1048422","38.432441"],["-123.1046585","38.4324199"],["-123.1045114","38.4323585"],["-123.1044135","38.4322899"],["-123.1041545","38.4320386"],["-123.1040311","38.4319421"],["-123.1038644","38.4318611"],["-123.1037478","38.4318335"],["-123.1035548","38.4318199"],["-123.1031693","38.431829"],["-123.10239","38.4318611"],["-123.1015442","38.4318252"],["-123.1012931","38.4318292"],["-123.101121","38.4318689"],["-123.1009642","38.4319339"],["-123.1007455","38.4320771"],["-123.1005826","38.432232"],["-123.1005071","38.4323357"],["-123.1004583","38.4324434"],["-123.1004294","38.432551"],["-123.100418","38.4326474"],["-123.1004267","38.4327165"],["-123.1004427","38.4327841"],["-123.1004631","38.4328552"],["-123.1004947","38.4329409"],["-123.1005312","38.4330309"],["-123.1005708","38.4331185"],["-123.1006162","38.4332082"],["-123.1006646","38.4332962"],["-123.1007089","38.4333752"],["-123.1007922","38.4335099"],["-123.1009061","38.433679"],["-123.1013038","38.4342098"],["-123.1017808","38.4347937"],["-123.1027392","38.4358241"],["-123.1037113","38.4367466"],["-123.1038087","38.4368336"],["-123.103848","38.4368656"],["-123.1038882","38.4368943"],["-123.1039311","38.4369196"],["-123.1039796","38.4369434"],["-123.1040286","38.4369632"],["-123.1041333","38.4369963"],["-123.1041886","38.4370107"],["-123.104239","38.4370221"],["-123.104293","38.437033"],["-123.1043419","38.437041"],["-123.1043928","38.4370479"],["-123.1044397","38.4370515"],["-123.104545","38.4370555"],["-123.1045995","38.4370559"],["-123.1046732","38.4370541"],["-123.1047464","38.4370546"],["-123.1048164","38.4370565"],["-123.1048892","38.4370636"],["-123.1049668","38.4370742"],["-123.1050478","38.4370884"],["-123.1051316","38.4371059"],["-123.1052261","38.4371292"],["-123.1054245","38.4371836"],["-123.1055425","38.4372204"],["-123.1056477","38.4372567"],["-123.1057611","38.4373011"],["-123.1058638","38.437346"],["-123.1059833","38.437406"],["-123.1061069","38.4374737"],["-123.1062376","38.4375558"],["-123.1063571","38.4376357"],["-123.1064352","38.4376934"],["-123.1065065","38.4377513"],["-123.1065684","38.4378062"],["-123.1066244","38.4378596"],["-123.1066762","38.437912"],["-123.1067305","38.4379721"],["-123.1067816","38.4380315"],["-123.1068321","38.4380958"],["-123.1076087","38.439289"],["-123.1110981","38.4446707"],["-123.1112113","38.4448167"],["-123.1114021","38.4450451"],["-123.111529","38.4451891"],["-123.1117775","38.4454555"],["-123.111882","38.4455668"],["-123.11206","38.4457597"],["-123.1121209","38.4458311"],["-123.1122432","38.4459814"],["-123.1123021","38.4460589"],["-123.1124198","38.4462237"],["-123.1124732","38.446302"],["-123.1125439","38.4464069"],["-123.1127771","38.4467525"],["-123.1128474","38.4468524"],["-123.1129604","38.4470005"],["-123.1130789","38.4471417"],["-123.1131396","38.4472095"],["-123.1132061","38.4472788"],["-123.1133282","38.4474003"],["-123.1134854","38.4475507"],["-123.1135746","38.4476342"],["-123.1138096","38.4478545"],["-123.1138813","38.4479183"],["-123.1140158","38.4480324"],["-123.114306","38.448256"],["-123.1143713","38.4483134"],["-123.114428","38.448371"],["-123.1144722","38.4484268"],["-123.1145117","38.448488"],["-123.1145508","38.4485555"],["-123.114582","38.4486209"],["-123.1146116","38.4487003"],["-123.1146413","38.4487866"],["-123.1146717","38.448875"],["-123.1147545","38.4491044"],["-123.1147771","38.4491588"],["-123.1148019","38.4492154"],["-123.1148731","38.4493627"],["-123.1148972","38.4494039"],["-123.1149252","38.4494474"],["-123.1149584","38.4494914"],["-123.1149953","38.4495346"],["-123.1150329","38.4495769"],["-123.1150764","38.4496193"],["-123.1151246","38.4496604"],["-123.1151747","38.4496955"],["-123.1152277","38.4497267"],["-123.1153334","38.4497826"],["-123.115387","38.4498074"],["-123.1154477","38.4498316"],["-123.1155026","38.4498512"],["-123.1155669","38.4498697"],["-123.1157246","38.44991"],["-123.1158158","38.449931"],["-123.1201562","38.4507718"],["-123.120244","38.4507834"],["-123.1203275","38.4507923"],["-123.12049","38.4508033"],["-123.1206697","38.4508084"],["-123.1207491","38.4508089"],["-123.1209264","38.4508013"],["-123.1210231","38.450795"],["-123.1212179","38.450778"],["-123.1213092","38.450768"],["-123.1213992","38.4507559"],["-123.1214936","38.4507406"],["-123.1215822","38.4507227"],["-123.1217817","38.4506727"],["-123.1225398","38.4504455"],["-123.1226886","38.4504012"],["-123.1227712","38.4503812"],["-123.1228517","38.4503649"],["-123.1229376","38.4503513"],["-123.1230208","38.4503408"],["-123.1231215","38.4503349"],["-123.1232205","38.4503321"],["-123.1233214","38.4503339"],["-123.1237081","38.4503565"],["-123.1241463","38.4503908"],["-123.1241901","38.4503972"],["-123.1242437","38.450407"],["-123.1242954","38.4504185"],["-123.1243481","38.4504325"],["-123.1243953","38.4504488"],["-123.1244395","38.4504667"],["-123.1244838","38.4504886"],["-123.1245261","38.4505149"],["-123.1245634","38.4505404"],["-123.1245998","38.4505668"],["-123.1246704","38.4506239"],["-123.1246986","38.4506534"],["-123.1247243","38.4506819"],["-123.1247491","38.4507124"],["-123.1247708","38.450746"],["-123.1247902","38.4507793"],["-123.1248094","38.4508166"],["-123.1248364","38.4508766"],["-123.1248636","38.4509617"],["-123.1249103","38.4511421"],["-123.1249538","38.4512948"],["-123.1249717","38.451344"],["-123.124989","38.4513781"],["-123.1250074","38.4514068"],["-123.1250305","38.451433"],["-123.1250544","38.4514576"],["-123.1250826","38.4514813"],["-123.1251151","38.4515042"],["-123.1251509","38.4515265"],["-123.1251901","38.4515435"],["-123.1252396","38.4515584"],["-123.1252871","38.4515704"],["-123.1253435","38.4515782"],["-123.1254013","38.4515826"],["-123.1254581","38.4515804"],["-123.1255529","38.451573"],["-123.1257248","38.4515565"],["-123.1258926","38.4515446"],["-123.1260318","38.451568"],["-123.1263096","38.4516505"],["-123.1267576","38.4518366"],["-123.1270561","38.4519393"],["-123.1272727","38.4520299"],["-123.1274904","38.4521423"],["-123.1287331","38.4529136"],["-123.1289111","38.4529736"],["-123.1292347","38.453043"],["-123.1297535","38.453138"],["-123.1302517","38.4532094"],["-123.1305347","38.4532348"],["-123.1308268","38.4532455"],["-123.1309985","38.453271"],["-123.1311916","38.4533277"],["-123.1313487","38.4534008"],["-123.1315104","38.4535237"],["-123.131821","38.4538175"],["-123.1319337","38.453916"],["-123.1327486","38.4544351"],["-123.1328562","38.4545285"],["-123.1329268","38.4546249"],["-123.132949","38.4547323"],["-123.1329317","38.4548529"],["-123.1328819","38.4549636"],["-123.1328275","38.4550901"],["-123.1328354","38.455197"],["-123.1329019","38.4552648"],["-123.132998","38.4552954"],["-123.1331209","38.4552919"],["-123.1332831","38.4552524"],["-123.1335818","38.4551674"],["-123.1337325","38.4551289"],["-123.1338449","38.4551222"],["-123.1339899","38.4551437"],["-123.1352559","38.455522"],["-123.1357348","38.4557051"],["-123.135925","38.4557943"],["-123.1360587","38.4558878"],["-123.1361942","38.4560063"],["-123.1362951","38.4561493"],["-123.1365295","38.4565309"],["-123.1366318","38.4567069"],["-123.1366621","38.4568457"],["-123.1366508","38.4569823"],["-123.136617","38.4570977"],["-123.1365718","38.4572099"],["-123.1364206","38.4574374"],["-123.1360855","38.4579006"],["-123.1359761","38.4580839"],["-123.1359341","38.4582128"],["-123.1359118","38.4583424"],["-123.1358978","38.45846"],["-123.1358848","38.4585419"],["-123.135856","38.4586318"],["-123.135805","38.4587092"],["-123.135701","38.4588039"],["-123.1355807","38.4589089"],["-123.1355159","38.4589721"],["-123.1354828","38.4590234"],["-123.135462","38.4590744"],["-123.1354573","38.4591248"],["-123.1354632","38.4591773"],["-123.1354868","38.4592254"],["-123.1355353","38.4592735"],["-123.1356068","38.4593136"],["-123.1356668","38.4593334"],["-123.1358041","38.4593446"],["-123.1369837","38.4593131"],["-123.1372922","38.4592773"],["-123.137485","38.4592298"],["-123.1376024","38.4591893"],["-123.137719","38.4591325"],["-123.1378515","38.4590499"],["-123.1379585","38.4589608"],["-123.1380704","38.458841"],["-123.1386756","38.4580444"],["-123.1388637","38.4578653"],["-123.1389846","38.4577784"],["-123.139139","38.4576997"],["-123.1394712","38.4575853"],["-123.1396694","38.4575432"],["-123.1398934","38.4575206"],["-123.140099","38.4575244"],["-123.1402988","38.4575471"],["-123.1404972","38.4575843"],["-123.140878","38.4577103"],["-123.1410688","38.4578014"],["-123.1414285","38.4580919"],["-123.1438542","38.460351"],["-123.1445987","38.4609996"],["-123.1462832","38.4621312"],["-123.1465606","38.4622742"],["-123.1472031","38.4624992"],["-123.1478205","38.4627616"],["-123.148437","38.4630903"],["-123.1499393","38.4639239"],["-123.1505163","38.4642375"],["-123.150852","38.464484"],["-123.1513541","38.4649226"],["-123.1516529","38.4651556"],["-123.1518667","38.4652866"],["-123.1521799","38.4653796"],["-123.1525272","38.4654705"],["-123.1529452","38.4655595"],["-123.1531154","38.4656118"],["-123.1532595","38.4656731"],["-123.1533947","38.4657712"],["-123.1535077","38.4658726"],["-123.1535938","38.4659813"],["-123.1536525","38.4661066"],["-123.1536706","38.4662319"],["-123.153679","38.4663572"],["-123.1536525","38.4664949"],["-123.1535893","38.4666708"],["-123.1534331","38.466939"],["-123.1533834","38.4670477"],["-123.1533824","38.4671554"],["-123.1534113","38.4672779"],["-123.1534893","38.4677085"],["-123.153546","38.4679225"],["-123.1536289","38.4681302"],["-123.1537195","38.4684306"],["-123.1537203","38.4686707"],["-123.153649","38.4689218"],["-123.1534868","38.4692264"],["-123.153386","38.4696179"],["-123.1533482","38.4698815"],["-123.1533566","38.4700583"],["-123.1533907","38.4702531"],["-123.1534593","38.4704331"],["-123.1535549","38.4705798"],["-123.1536171","38.4706545"],["-123.1537995","38.4708281"],["-123.1546071","38.4714124"],["-123.1547961","38.4716082"],["-123.1549904","38.4719114"],["-123.1555122","38.4732366"],["-123.155571","38.4734291"],["-123.1555761","38.4735354"],["-123.1555621","38.4736382"],["-123.1555348","38.4737398"],["-123.1554909","38.4738216"],["-123.1554317","38.473894"],["-123.1553554","38.4739653"],["-123.1552609","38.4740248"],["-123.1551249","38.4740955"],["-123.1546959","38.4742824"],["-123.1545317","38.4743751"],["-123.1544008","38.4744831"],["-123.1543449","38.4745409"],["-123.1542943","38.4746068"],["-123.1541916","38.4747651"],["-123.1541267","38.4749423"],["-123.1540865","38.4751593"],["-123.1540629","38.4753868"],["-123.1540314","38.4755505"],["-123.1540047","38.4756104"],["-123.1539729","38.4756606"],["-123.1539393","38.4757094"],["-123.1539174","38.4757549"],["-123.1538979","38.4758"],["-123.1538994","38.4758476"],["-123.1539118","38.4758797"],["-123.1539439","38.4759072"],["-123.1539893","38.4759298"],["-123.1540499","38.475933"],["-123.1541051","38.4759142"],["-123.1541707","38.4758543"],["-123.1542079","38.4757687"],["-123.1543151","38.4753745"],["-123.1544352","38.4751139"],["-123.154556","38.4749475"],["-123.1546115","38.4748924"],["-123.1546717","38.4748459"],["-123.1547525","38.4748033"],["-123.1548404","38.4747708"],["-123.1549318","38.4747565"],["-123.1550887","38.4747793"],["-123.1556076","38.4749127"],["-123.1557411","38.4749352"],["-123.1558131","38.4749425"],["-123.1558686","38.4749439"],["-123.1559209","38.4749416"],["-123.1559738","38.4749347"],["-123.1560122","38.4749226"],["-123.1560493","38.4749075"],["-123.1560839","38.4748892"],["-123.1561169","38.4748698"],["-123.1561569","38.4748319"],["-123.156235","38.474755"],["-123.1562904","38.4746891"],["-123.1563399","38.4746224"],["-123.1563788","38.4745619"],["-123.1564164","38.4744983"],["-123.1565159","38.4742607"],["-123.1565514","38.4741949"],["-123.1566061","38.4741181"],["-123.156749","38.4739416"],["-123.1568803","38.473777"],["-123.1569892","38.47362"],["-123.157034","38.4735361"],["-123.1570754","38.4734438"],["-123.1570981","38.4733702"],["-123.1571106","38.4733335"],["-123.1571165","38.4732923"],["-123.1571205","38.4732524"],["-123.1571188","38.4732082"],["-123.1571123","38.4731583"],["-123.1570971","38.4731024"],["-123.1570592","38.4730196"],["-123.1569271","38.4727994"],["-123.1568127","38.4726022"],["-123.1567453","38.4724631"],["-123.156683","38.4723142"],["-123.1566598","38.4722442"],["-123.1566537","38.4721894"],["-123.1566515","38.4721476"],["-123.1566565","38.4720995"],["-123.1566686","38.4720613"],["-123.1566936","38.4720289"],["-123.1567257","38.471996"],["-123.1567762","38.4719601"],["-123.1568329","38.4719277"],["-123.1569221","38.4718866"],["-123.1570164","38.4718554"],["-123.1571277","38.4718331"],["-123.1574133","38.4717995"],["-123.1575824","38.4717636"],["-123.1577286","38.4717308"],["-123.1578363","38.4717141"],["-123.1579476","38.4717038"],["-123.1581131","38.4717012"],["-123.1582359","38.4716974"],["-123.1583158","38.4716865"],["-123.1583829","38.4716705"],["-123.1584417","38.4716461"],["-123.1585051","38.471609"],["-123.1585993","38.4715331"],["-123.1586568","38.4714652"],["-123.1587292","38.4713508"],["-123.158771","38.4712939"],["-123.158802","38.4712645"],["-123.1588316","38.4712423"],["-123.1588687","38.4712274"],["-123.1589108","38.4712165"],["-123.1589517","38.4712123"],["-123.1589984","38.4712154"],["-123.1590349","38.4712236"],["-123.1590794","38.4712435"],["-123.1591102","38.4712666"],["-123.1591218","38.471282"],["-123.1591353","38.4713003"],["-123.1591522","38.4713429"],["-123.1591586","38.4713853"],["-123.1591558","38.4714342"],["-123.1591477","38.4714799"],["-123.1591299","38.4715316"],["-123.1591049","38.4715926"],["-123.1590751","38.4716556"],["-123.1590395","38.4716989"],["-123.1589882","38.4717517"],["-123.1589263","38.4717941"],["-123.1588405","38.4718394"],["-123.1586117","38.471928"],["-123.1585344","38.4719485"],["-123.1584569","38.471965"],["-123.1583547","38.4719799"],["-123.1582243","38.4719899"],["-123.1580298","38.4719909"],["-123.157933","38.4719953"],["-123.1578856","38.4720069"],["-123.1578409","38.4720197"],["-123.1577995","38.4720432"],["-123.1577582","38.4720724"],["-123.1577257","38.4721075"],["-123.1576835","38.4721603"],["-123.1576531","38.472213"],["-123.1576223","38.47228"],["-123.1575877","38.4723653"],["-123.1575726","38.4724236"],["-123.1575724","38.4724743"],["-123.1575755","38.4725183"],["-123.1575865","38.4725575"],["-123.1576062","38.4725969"],["-123.1576315","38.4726307"],["-123.1576689","38.4726673"],["-123.1577112","38.4726958"],["-123.1577884","38.4727193"],["-123.1578617","38.4727302"],["-123.1579467","38.4727315"],["-123.1580619","38.4727263"],["-123.1582134","38.4727266"],["-123.1582816","38.4727345"],["-123.158344","38.4727501"],["-123.1584105","38.4727821"],["-123.1584744","38.4728256"],["-123.1585706","38.472945"],["-123.1586567","38.4730942"],["-123.1586814","38.4731671"],["-123.1586887","38.4732275"],["-123.1586952","38.4733126"],["-123.1586894","38.4733757"],["-123.1586697","38.4734308"],["-123.1586447","38.4734884"],["-123.1585949","38.4735622"],["-123.1585451","38.4736362"],["-123.1585096","38.473696"],["-123.1584907","38.4737442"],["-123.1584845","38.4737987"],["-123.1584856","38.473861"],["-123.1585149","38.4740114"],["-123.1585767","38.4742396"],["-123.1585806","38.4743084"],["-123.1585743","38.4743713"],["-123.1585186","38.4745909"],["-123.158488","38.4749647"],["-123.1584628","38.4751234"],["-123.1584401","38.475207"],["-123.1584034","38.4753167"],["-123.1583674","38.4754099"],["-123.1583149","38.4755208"],["-123.1581478","38.4758175"],["-123.1579906","38.4760608"],["-123.157939","38.4761521"],["-123.1578834","38.4762906"],["-123.1578619","38.4763565"],["-123.1578568","38.4764443"],["-123.157861","38.4765517"],["-123.1578863","38.4766631"],["-123.1579169","38.4767747"],["-123.157977","38.4768861"],["-123.1580506","38.4769772"],["-123.1581458","38.4770625"],["-123.1582389","38.4771274"],["-123.1583599","38.4771892"],["-123.1586474","38.4773219"],["-123.1587841","38.4773976"],["-123.1589102","38.477487"],["-123.1590622","38.4776207"],["-123.159222","38.4777881"],["-123.1593594","38.4779327"],["-123.1594595","38.4780235"],["-123.1595345","38.478071"],["-123.1596324","38.4781199"],["-123.1597151","38.4781459"],["-123.1598096","38.478164"],["-123.1598992","38.4781742"],["-123.160017","38.4781786"],["-123.1601129","38.47817"],["-123.1602687","38.4781413"],["-123.160671","38.4780508"],["-123.1608348","38.4780314"],["-123.1609913","38.4780275"],["-123.1611855","38.4780373"],["-123.1613865","38.4780837"],["-123.1615618","38.4781377"],["-123.1616933","38.4782002"],["-123.1619266","38.478328"],["-123.1622792","38.4785289"],["-123.1628906","38.478859"],["-123.1631836","38.4789885"],["-123.1634178","38.4790846"],["-123.1635701","38.4791358"],["-123.1637596","38.4791776"],["-123.1638858","38.4791984"],["-123.1642333","38.4792248"],["-123.1644793","38.4792304"],["-123.1647129","38.4792207"],["-123.1649668","38.4792036"],["-123.1652888","38.479182"],["-123.1656637","38.4791585"],["-123.1657758","38.4791637"],["-123.1658675","38.4791821"],["-123.1659448","38.4792026"],["-123.1660219","38.4792377"],["-123.1660819","38.4792738"],["-123.1661381","38.4793156"],["-123.1663674","38.4795249"],["-123.1664706","38.4796047"],["-123.166558","38.479659"],["-123.1666719","38.4797179"],["-123.1667887","38.4797663"],["-123.1669011","38.4798056"],["-123.1670127","38.479834"],["-123.1671154","38.4798556"],["-123.1672347","38.4798724"],["-123.1673542","38.4798801"],["-123.1675023","38.4798832"],["-123.1676255","38.4798718"],["-123.1677543","38.479851"],["-123.1681194","38.4797701"],["-123.1682106","38.4797615"],["-123.1683092","38.4797645"],["-123.168454","38.4797922"],["-123.1685691","38.4798357"],["-123.1686886","38.4799033"],["-123.1688473","38.4800105"],["-123.1689956","38.4801291"],["-123.1691056","38.4802395"],["-123.1691917","38.4803566"],["-123.1692698","38.480506"],["-123.1694989","38.4810155"],["-123.1695792","38.4811325"],["-123.1696581","38.4812106"],["-123.1697424","38.4812732"],["-123.1698087","38.4813126"],["-123.1698991","38.4813513"],["-123.1700279","38.4813934"],["-123.1706965","38.481571"],["-123.1708396","38.4816169"],["-123.1709546","38.4816654"],["-123.1710466","38.4817091"],["-123.1711421","38.4817735"],["-123.1712422","38.4818565"],["-123.1713408","38.4819545"],["-123.1714354","38.4820575"],["-123.1715467","38.482195"],["-123.1717054","38.4823667"],["-123.1717665","38.4824182"],["-123.1718572","38.4824698"],["-123.1719693","38.4825176"],["-123.1720667","38.4825396"],["-123.172173","38.4825556"],["-123.1723785","38.482564"],["-123.1725951","38.4825718"],["-123.1727669","38.4825834"],["-123.1729215","38.4826137"],["-123.17309","38.482682"],["-123.1732958","38.4827679"],["-123.1735872","38.4828866"],["-123.173688","38.4829129"],["-123.1737757","38.4829141"],["-123.173867","38.4828976"],["-123.1739348","38.4828748"],["-123.1740544","38.4828131"],["-123.174199","38.4827324"],["-123.1743438","38.482683"],["-123.1744572","38.482669"],["-123.1745825","38.4826934"],["-123.1747664","38.482773"],["-123.1751952","38.4830066"],["-123.1755679","38.4832339"],["-123.1759639","38.483583"],["-123.1762168","38.4839643"],["-123.1762994","38.4840764"],["-123.1763739","38.4841141"],["-123.1764759","38.4841345"],["-123.1765881","38.4841283"],["-123.1766887","38.4841065"],["-123.1768163","38.4840689"],["-123.1769253","38.484061"],["-123.1770267","38.4840762"],["-123.1770968","38.4841042"],["-123.1771717","38.484175"],["-123.1772909","38.4843518"],["-123.1774176","38.4844712"],["-123.1779333","38.4848619"],["-123.1780032","38.4849075"],["-123.178076","38.4849417"],["-123.1781934","38.4849788"],["-123.1783214","38.4850021"],["-123.1784954","38.4850276"],["-123.1787551","38.4850529"],["-123.1789637","38.4850615"],["-123.1790221","38.4850542"],["-123.1790892","38.4850388"],["-123.1791613","38.4850183"],["-123.1792618","38.4849831"],["-123.1796301","38.4848425"],["-123.1798063","38.4847772"],["-123.1798947","38.4847549"],["-123.1799799","38.4847426"],["-123.1800752","38.4847436"],["-123.1801467","38.4847559"],["-123.1802153","38.4847789"],["-123.1802784","38.4848077"],["-123.1803219","38.4848376"],["-123.180364","38.4848768"],["-123.1803889","38.4849179"],["-123.1804197","38.4849795"],["-123.1804694","38.4851185"],["-123.1805198","38.4852419"],["-123.1805745","38.4853519"],["-123.1806541","38.485467"],["-123.1808293","38.4856796"],["-123.180922","38.4858003"],["-123.180963","38.4858739"],["-123.1809927","38.4859561"],["-123.1810185","38.4860548"],["-123.1810432","38.486252"],["-123.1810616","38.4863823"],["-123.181101","38.4864977"],["-123.1811558","38.486588"],["-123.1812313","38.4866778"],["-123.1813007","38.4867414"],["-123.1813798","38.4868004"],["-123.181448","38.4868437"],["-123.1815466","38.486884"],["-123.1816278","38.4869098"],["-123.1817447","38.4869294"],["-123.1819118","38.4869446"],["-123.1822231","38.4869539"],["-123.1823496","38.4869413"],["-123.1824526","38.4869192"],["-123.1825462","38.4868856"],["-123.1826495","38.4868344"],["-123.1828098","38.4867431"],["-123.182888","38.4867032"],["-123.1829647","38.4866906"],["-123.1830445","38.4866916"],["-123.1831258","38.4867072"],["-123.1832067","38.4867576"],["-123.1835039","38.4870085"],["-123.1836124","38.487068"],["-123.1838389","38.4871562"],["-123.1840019","38.4872233"],["-123.1840964","38.4872863"],["-123.1841721","38.4873655"],["-123.1842397","38.4874451"],["-123.1843192","38.4875667"],["-123.1844523","38.4877971"],["-123.1845195","38.4878859"],["-123.1845997","38.48795"],["-123.1847345","38.488017"],["-123.1852374","38.488206"],["-123.1857385","38.4883894"],["-123.1858686","38.4884133"],["-123.185962","38.4884206"],["-123.1861489","38.4884191"],["-123.1865131","38.4884248"],["-123.186735","38.488443"],["-123.1868909","38.4884683"],["-123.1870585","38.4885265"],["-123.1872315","38.4886115"],["-123.1874001","38.4886822"],["-123.1875915","38.4887332"],["-123.1877719","38.4887771"],["-123.1879395","38.4888198"],["-123.1880865","38.4888749"],["-123.1881975","38.488931"],["-123.1883162","38.4890038"],["-123.1884569","38.4891052"],["-123.1887064","38.4893133"],["-123.188815","38.4893883"],["-123.1889496","38.4894545"],["-123.1890813","38.4894898"],["-123.1892574","38.4895035"],["-123.1895341","38.4895118"],["-123.1896567","38.4895307"],["-123.1897581","38.4895659"],["-123.1898604","38.4896293"],["-123.1899337","38.4897199"],["-123.1899758","38.4898212"],["-123.1900409","38.4902158"],["-123.1900976","38.4904601"],["-123.1901566","38.4906006"],["-123.1902534","38.4907238"],["-123.1904196","38.4908679"],["-123.1906322","38.4910327"],["-123.1907875","38.4911291"],["-123.1909403","38.4912013"],["-123.1911364","38.4912586"],["-123.1916345","38.4913608"],["-123.1922035","38.4914704"],["-123.1924431","38.4915042"],["-123.1926048","38.4915079"],["-123.1927219","38.4914913"],["-123.1928169","38.4914616"],["-123.1928992","38.4914194"],["-123.1930365","38.4913285"],["-123.1931793","38.4912333"],["-123.1932557","38.4912025"],["-123.1933256","38.491185"],["-123.1933911","38.4911868"],["-123.1934998","38.4912062"],["-123.1939115","38.4913569"],["-123.1940399","38.4913847"],["-123.194305","38.4914198"],["-123.1944071","38.4914542"],["-123.1944737","38.4914966"],["-123.1945239","38.491556"],["-123.1945622","38.4916302"],["-123.1945803","38.4917361"],["-123.194585","38.4919689"],["-123.1945924","38.4922269"],["-123.1946075","38.4923813"],["-123.1946377","38.492459"],["-123.1946762","38.4925061"],["-123.1947402","38.4925529"],["-123.1948146","38.4925812"],["-123.1948886","38.4925863"],["-123.1949383","38.4925772"],["-123.1950005","38.4925539"],["-123.1950693","38.49251"],["-123.1952421","38.4923555"],["-123.1953178","38.4922915"],["-123.195377","38.4922542"],["-123.1954321","38.4922246"],["-123.1954952","38.4922056"],["-123.1955742","38.4921899"],["-123.1956782","38.4921915"],["-123.1957508","38.4922007"],["-123.1958381","38.492225"],["-123.1959631","38.4922708"],["-123.1961358","38.4923513"],["-123.1962438","38.4924171"],["-123.196317","38.4924745"],["-123.196396","38.4925703"],["-123.1965303","38.4928001"],["-123.196717","38.4931229"],["-123.1968945","38.4933984"],["-123.1970129","38.4935374"],["-123.1971513","38.4936772"],["-123.1972747","38.4937849"],["-123.1974213","38.4938869"],["-123.198257","38.4944037"],["-123.1983537","38.4944771"],["-123.1984476","38.4945824"],["-123.1985255","38.4947129"],["-123.198722","38.4953054"],["-123.1987662","38.495376"],["-123.1988279","38.4954394"],["-123.1988949","38.4954842"],["-123.1989645","38.4955213"],["-123.1990606","38.4955549"],["-123.1991681","38.4955729"],["-123.1992702","38.4955712"],["-123.1993566","38.4955586"],["-123.1994932","38.4955165"],["-123.199683","38.4954369"],["-123.199852","38.4953688"],["-123.1999787","38.4953371"],["-123.2001217","38.4953266"],["-123.2002276","38.4953319"],["-123.2003291","38.4953496"],["-123.2004669","38.4953926"],["-123.2006278","38.4954933"],["-123.2014301","38.4960556"],["-123.201562","38.4961674"],["-123.2017511","38.4964488"],["-123.2020097","38.4968288"],["-123.2022393","38.4971586"],["-123.2023115","38.4972382"],["-123.2024037","38.4973141"],["-123.2026213","38.497449"],["-123.2028353","38.4975746"],["-123.2029447","38.4976236"],["-123.2030117","38.4976385"],["-123.203072","38.4976416"],["-123.2031407","38.4976361"],["-123.2032519","38.4976091"],["-123.2035991","38.4975026"],["-123.2036787","38.4974868"],["-123.2037646","38.4974806"],["-123.2038458","38.4974877"],["-123.2040324","38.497536"],["-123.2041297","38.4975513"],["-123.2042081","38.4975483"],["-123.2043064","38.497525"],["-123.2044463","38.4974879"],["-123.2045477","38.4974637"],["-123.204633","38.4974538"],["-123.2047081","38.4974523"],["-123.2047848","38.497457"],["-123.2048647","38.4974728"],["-123.2049563","38.4975006"],["-123.2051465","38.4975734"],["-123.2053169","38.4976379"],["-123.2054781","38.497683"],["-123.2057303","38.497728"],["-123.2059863","38.4977596"],["-123.2062338","38.4977924"],["-123.2063694","38.4978319"],["-123.2064988","38.497895"],["-123.2068244","38.4980841"],["-123.2070124","38.4981723"],["-123.2071898","38.4982333"],["-123.2073651","38.4982605"],["-123.2075618","38.4982764"],["-123.2078392","38.4982586"],["-123.2081324","38.4982252"],["-123.2082453","38.4982312"],["-123.208344","38.498247"],["-123.2084419","38.4982801"],["-123.2085308","38.4983202"],["-123.2086093","38.498376"],["-123.2086813","38.4984339"],["-123.2087358","38.4985043"],["-123.2087645","38.4986033"],["-123.2087625","38.4987415"],["-123.2087338","38.4988198"],["-123.2086914","38.4988919"],["-123.2086213","38.4989615"],["-123.2084987","38.4990752"],["-123.2084278","38.4991705"],["-123.208363","38.4993087"],["-123.2081948","38.4998919"],["-123.2080341","38.5002415"],["-123.207813","38.5005711"],["-123.2076156","38.5008059"],["-123.2074222","38.5010458"],["-123.207345","38.5011985"],["-123.2073362","38.5012806"],["-123.2073533","38.5013209"],["-123.207385","38.5013631"],["-123.2074485","38.5014034"],["-123.2075462","38.5014285"],["-123.2076546","38.5014295"],["-123.2077805","38.5013995"],["-123.2080052","38.501301"],["-123.2084035","38.5010848"],["-123.2087155","38.5009232"],["-123.2088033","38.5008967"],["-123.2088745","38.5008835"],["-123.2089878","38.5008793"],["-123.2090891","38.5008696"],["-123.2091413","38.500852"],["-123.2091962","38.5008266"],["-123.2092615","38.5007706"],["-123.2093255","38.5006781"],["-123.2093948","38.5005364"],["-123.2094869","38.5004124"],["-123.2095715","38.5003428"],["-123.2096629","38.5002861"],["-123.209767","38.5002403"],["-123.2099556","38.5001911"],["-123.2100955","38.500178"],["-123.2102984","38.5001687"],["-123.2105064","38.5001717"],["-123.2106364","38.5001885"],["-123.2107457","38.5002154"],["-123.2108447","38.500256"],["-123.2109525","38.5003109"],["-123.2111036","38.500405"],["-123.2112123","38.5004586"],["-123.2113046","38.5004861"],["-123.2113898","38.5005041"],["-123.2114786","38.5005117"],["-123.2115882","38.5005083"],["-123.2117617","38.5004806"],["-123.2118515","38.5004716"],["-123.2119541","38.5004792"],["-123.212373","38.5005452"],["-123.2124892","38.5005779"],["-123.2125648","38.5006097"],["-123.2126238","38.5006515"],["-123.2126864","38.5007072"],["-123.2127604","38.5008237"],["-123.2128069","38.5008782"],["-123.2128773","38.5009229"],["-123.2129572","38.5009521"],["-123.213149","38.5009874"],["-123.2132701","38.501028"],["-123.2133863","38.5010967"],["-123.2135805","38.50122"],["-123.2137273","38.501296"],["-123.2138404","38.5013322"],["-123.2139429","38.5013452"],["-123.2140332","38.5013476"],["-123.2141113","38.5013396"],["-123.2142188","38.5013186"],["-123.214346","38.5012778"],["-123.2144654","38.5011991"],["-123.2147606","38.5009755"],["-123.2148686","38.5009213"],["-123.2149702","38.5008996"],["-123.2151154","38.5008912"],["-123.2157379","38.5009282"],["-123.2160247","38.5009179"],["-123.2167227","38.5008576"],["-123.216853","38.5008512"],["-123.216949","38.5008539"],["-123.2170545","38.5008651"],["-123.2172116","38.5008991"],["-123.2174649","38.5009606"],["-123.2176479","38.5010209"],["-123.2178498","38.5011156"],["-123.218232","38.5013227"],["-123.2185137","38.5015012"],["-123.2187546","38.5016817"],["-123.2188873","38.501795"],["-123.2190051","38.5019038"],["-123.2192035","38.5021249"],["-123.2193252","38.5022889"],["-123.2195263","38.5026486"],["-123.2198898","38.5034341"],["-123.2200447","38.5036656"],["-123.2201885","38.5038097"],["-123.2203156","38.5039131"],["-123.2205023","38.5040303"],["-123.2208519","38.5042252"],["-123.2213569","38.5045147"],["-123.2216594","38.5047319"],["-123.2219848","38.5050462"],["-123.222328","38.5053839"],["-123.2225953","38.5055808"],["-123.2228185","38.5057132"],["-123.2237414","38.5061651"],["-123.2239157","38.5062418"],["-123.2243915","38.5063964"],["-123.2245864","38.5064925"],["-123.2248495","38.5066329"],["-123.225087","38.5067579"],["-123.2252863","38.5068244"],["-123.2255194","38.5068704"],["-123.2256904","38.5069081"],["-123.2257986","38.5069526"],["-123.2259007","38.5070183"],["-123.2260201","38.5071222"],["-123.2262764","38.5073842"],["-123.2264097","38.5075114"],["-123.22656","38.5076261"],["-123.2275961","38.5082714"],["-123.228007","38.5085436"],["-123.2281664","38.5086979"],["-123.2283289","38.5088814"],["-123.2284443","38.5090035"],["-123.2285501","38.5090811"],["-123.2287718","38.5092062"],["-123.2288729","38.5092706"],["-123.2289597","38.5093454"],["-123.2290539","38.509444"],["-123.2291484","38.5095859"],["-123.2292132","38.5097086"],["-123.2292545","38.5098058"],["-123.2293075","38.509905"],["-123.2293917","38.5100187"],["-123.2294845","38.5101101"],["-123.2295893","38.5101943"],["-123.229808","38.5103505"],["-123.2298963","38.5104212"],["-123.2299668","38.5104961"],["-123.2300218","38.5105784"],["-123.2300577","38.5106256"],["-123.2301376","38.5106987"],["-123.2302106","38.5107472"],["-123.230304","38.5107996"],["-123.2304224","38.5108718"],["-123.2304887","38.5109292"],["-123.2305912","38.5110548"],["-123.230733","38.5112632"],["-123.2308247","38.5113544"],["-123.2309513","38.5114461"],["-123.2310449","38.5115181"],["-123.2311069","38.5115915"],["-123.2311451","38.511668"],["-123.2312071","38.5118462"],["-123.2312454","38.5119221"],["-123.2312912","38.5119738"],["-123.2314451","38.5120776"],["-123.2315145","38.5121325"],["-123.2315947","38.5122207"],["-123.231684","38.51234"],["-123.2317898","38.5124678"],["-123.2318883","38.5125482"],["-123.2319709","38.5126021"],["-123.2320575","38.5126485"],["-123.2321803","38.5127011"],["-123.2323495","38.5127551"],["-123.2324581","38.5127751"],["-123.2325945","38.5127855"],["-123.2330154","38.5127962"],["-123.2331229","38.5128062"],["-123.2332041","38.5128242"],["-123.233283","38.5128495"],["-123.2333536","38.5128896"],["-123.2334326","38.5129603"],["-123.2335082","38.5130558"],["-123.2335797","38.5131433"],["-123.2336438","38.5131884"],["-123.2337287","38.5132128"],["-123.2338121","38.5132154"],["-123.2338892","38.5132033"],["-123.2339806","38.5131769"],["-123.2342169","38.5130924"],["-123.2343427","38.5130822"],["-123.2344575","38.5131027"],["-123.234645","38.5131803"],["-123.237265","38.514503"],["-123.2378074","38.514758"],["-123.2379913","38.5148003"],["-123.2381949","38.5148137"],["-123.238495","38.5147912"],["-123.239087","38.5147254"],["-123.2393532","38.5147228"],["-123.2395463","38.5147339"],["-123.2397316","38.5147578"],["-123.2398745","38.5147864"],["-123.2400438","38.5148405"],["-123.2402295","38.5149224"],["-123.2404254","38.5150238"],["-123.2405814","38.5151272"],["-123.240751","38.5152573"],["-123.2408414","38.5153424"],["-123.2409361","38.5154719"],["-123.2409715","38.5155785"],["-123.240976","38.5156885"],["-123.2409581","38.5157866"],["-123.2409119","38.5159272"],["-123.2408716","38.5160845"],["-123.2408584","38.5161809"],["-123.2408746","38.5163342"],["-123.2409172","38.5165361"],["-123.2409345","38.5167435"],["-123.2409351","38.5170767"],["-123.2409511","38.5172184"],["-123.240989","38.5173427"],["-123.241087","38.5174536"],["-123.2412307","38.5175314"],["-123.2413256","38.5175471"],["-123.2414205","38.5175491"],["-123.241537","38.5175157"],["-123.2415899","38.5174773"],["-123.2416283","38.5174439"],["-123.2416544","38.5173853"],["-123.2416638","38.5173039"],["-123.2416478","38.5172024"],["-123.2415792","38.5170194"],["-123.2415156","38.5168475"],["-123.241511","38.5167496"],["-123.2415488","38.5166436"],["-123.2417773","38.5163264"],["-123.2421778","38.515991"],["-123.2425804","38.5156644"],["-123.2429602","38.5153488"],["-123.2430458","38.5153032"],["-123.2431019","38.5152812"],["-123.2431778","38.5152677"],["-123.2432551","38.5152677"],["-123.24333","38.5152835"],["-123.2433804","38.5153062"],["-123.2434433","38.5153435"],["-123.2434889","38.5153921"],["-123.2435266","38.5154456"],["-123.2435414","38.5155368"],["-123.2435151","38.5157018"],["-123.2433857","38.5161479"],["-123.2433572","38.5162908"],["-123.2433607","38.5164036"],["-123.2434257","38.5167196"],["-123.2435685","38.517342"],["-123.2436411","38.5175159"],["-123.2437314","38.5176256"],["-123.2438541","38.5177328"],["-123.2439639","38.5178004"],["-123.2441528","38.5178997"],["-123.244435","38.5180117"],["-123.2448001","38.5181394"],["-123.245181","38.5182497"],["-123.2457134","38.5183536"],["-123.2463863","38.5184646"],["-123.2508522","38.5190842"],["-123.2514063","38.51917"],["-123.2517399","38.5192448"],["-123.252067","38.5193428"],["-123.252359","38.5194512"],["-123.2530757","38.5197939"],["-123.2559996","38.5212677"],["-123.2562296","38.5213702"],["-123.2563659","38.5214148"],["-123.2568301","38.5215067"],["-123.2613224","38.5223558"],["-123.261519","38.5223766"],["-123.2617119","38.5223743"],["-123.2619705","38.5223569"],["-123.2624214","38.5223111"],["-123.2626337","38.5222955"],["-123.2627585","38.5222981"],["-123.2628859","38.5223196"],["-123.2629976","38.5223595"],["-123.2630933","38.5224012"],["-123.263193","38.5224702"],["-123.2632736","38.5225573"],["-123.2633081","38.5226343"],["-123.263324","38.522727"],["-123.2633213","38.5228738"],["-123.2632436","38.5232992"],["-123.2632424","38.523503"],["-123.2632714","38.5236682"],["-123.2633293","38.5238546"],["-123.2634145","38.5240257"],["-123.2635026","38.5242389"],["-123.2635501","38.524419"],["-123.2635589","38.5245796"],["-123.2635503","38.5247208"],["-123.2635223","38.5248411"],["-123.2634789","38.524937"],["-123.2633979","38.5250454"],["-123.2632555","38.5252027"],["-123.26313","38.5253329"],["-123.2630218","38.5254625"],["-123.2629799","38.5255331"],["-123.2629742","38.5255907"],["-123.2629908","38.525632"],["-123.2630214","38.5256674"],["-123.2631038","38.5257058"],["-123.263166","38.5257176"],["-123.2632382","38.525717"],["-123.2633151","38.5256989"],["-123.263424","38.5256499"],["-123.2636721","38.5255218"],["-123.2639237","38.5253908"],["-123.2640784","38.5253108"],["-123.2641788","38.5252466"],["-123.2642684","38.5251682"],["-123.2643345","38.52509"],["-123.2644045","38.5249594"],["-123.2645017","38.5247385"],["-123.2645492","38.5246505"],["-123.2646024","38.5245969"],["-123.264668","38.5245588"],["-123.2647385","38.5245358"],["-123.264802","38.5245196"],["-123.2648869","38.5245165"],["-123.2649495","38.5245267"],["-123.2650211","38.5245499"],["-123.2650724","38.5245767"],["-123.2651204","38.5246136"],["-123.265154","38.5246563"],["-123.2651865","38.5247262"],["-123.2651943","38.5248001"],["-123.2651826","38.5248841"],["-123.2651399","38.5249738"],["-123.265074","38.5250646"],["-123.2649819","38.5251501"],["-123.2644497","38.5255397"],["-123.2639322","38.5259011"],["-123.2634568","38.5262547"],["-123.2633167","38.5263833"],["-123.2632284","38.5264988"],["-123.2631433","38.5266484"],["-123.2630915","38.5267964"],["-123.2630721","38.5269162"],["-123.2630693","38.5270227"],["-123.2630965","38.5272109"],["-123.2631485","38.5273744"],["-123.2632082","38.5275011"],["-123.2633409","38.5276828"],["-123.263493","38.5278138"],["-123.2637776","38.5280119"],["-123.2678172","38.5304718"],["-123.2682582","38.5306802"],["-123.2687221","38.5308583"],["-123.2689823","38.530995"],["-123.2694045","38.5312597"],["-123.2697744","38.531508"],["-123.2706275","38.532131"],["-123.2710557","38.5324089"],["-123.2720773","38.5330183"],["-123.2724665","38.5331983"],["-123.273332","38.5334587"],["-123.2742596","38.5336005"],["-123.2752853","38.5337665"],["-123.2755894","38.5337963"],["-123.276085","38.5337797"],["-123.2762861","38.5337923"],["-123.276441","38.533833"],["-123.2765888","38.5338962"],["-123.276683","38.5339483"],["-123.2767841","38.5340337"],["-123.2768615","38.5341392"],["-123.2776624","38.535604"],["-123.2780952","38.5363033"],["-123.2785286","38.5369293"],["-123.2788912","38.5373574"],["-123.279164","38.5375532"],["-123.2795127","38.5376896"],["-123.2799248","38.5378638"],["-123.2803289","38.5380202"],["-123.2806192","38.5381574"],["-123.2808615","38.5382956"],["-123.2811084","38.5384633"],["-123.281564","38.5388029"],["-123.2819875","38.5391045"],["-123.282378","38.5393513"],["-123.2826794","38.5395329"],["-123.2829651","38.5396908"],["-123.2833438","38.5398716"],["-123.2843154","38.5402894"],["-123.2849507","38.5405686"],["-123.2858956","38.5409911"],["-123.2882094","38.5419803"],["-123.288781","38.5422018"],["-123.2892053","38.5423024"],["-123.2903759","38.5424992"],["-123.2905615","38.5424977"],["-123.2907397","38.5424601"],["-123.2910902","38.5423703"],["-123.2912236","38.5423729"],["-123.2913655","38.5424126"],["-123.2914481","38.5424675"],["-123.2915696","38.5426629"],["-123.2916942","38.5429919"],["-123.2918568","38.5432488"],["-123.2920554","38.5434978"],["-123.2923546","38.5438605"],["-123.2926366","38.5442402"],["-123.2928988","38.5445979"],["-123.2930362","38.5447481"],["-123.2932114","38.5448717"],["-123.2933825","38.5449496"],["-123.2935656","38.5450142"],["-123.293771","38.545061"],["-123.2940347","38.5450906"],["-123.2945359","38.5451169"],["-123.2947878","38.5451466"],["-123.2950038","38.5451992"],["-123.2951907","38.5452844"],["-123.2954306","38.5454112"],["-123.2959889","38.5457526"],["-123.2964206","38.5460189"],["-123.2966512","38.546163"],["-123.2967736","38.5462539"],["-123.2968592","38.5463789"],["-123.2969264","38.5465229"],["-123.2969283","38.546741"],["-123.2968942","38.5468684"],["-123.2968157","38.5469875"],["-123.2966735","38.547079"],["-123.2964602","38.5471776"],["-123.296318","38.5472665"],["-123.2962658","38.5473858"],["-123.2962749","38.547682"],["-123.2963263","38.5480106"],["-123.2963491","38.5480785"],["-123.2963936","38.5481401"],["-123.2964604","38.5481752"],["-123.2965383","38.548194"],["-123.2966229","38.5481953"],["-123.2966964","38.5481817"],["-123.2967989","38.5481279"],["-123.2968865","38.5480232"],["-123.2970293","38.5477051"],["-123.2971162","38.547588"],["-123.2972434","38.5475005"],["-123.2974301","38.5474343"],["-123.2976843","38.5473938"],["-123.2983496","38.5473679"],["-123.2986791","38.5473808"],["-123.2989196","38.5474084"],["-123.2990979","38.5474506"],["-123.2994759","38.5476086"],["-123.3006491","38.5483345"],["-123.3008778","38.5485098"],["-123.3010121","38.5486828"],["-123.3012764","38.5491847"],["-123.3015561","38.5497156"],["-123.3016665","38.5500101"],["-123.3017398","38.5504309"],["-123.3017165","38.5510821"],["-123.3016486","38.5513912"],["-123.301523","38.5516616"],["-123.3013087","38.5520243"],["-123.3011055","38.5525193"],["-123.3009767","38.5529097"],["-123.3008742","38.5534104"],["-123.3006709","38.5549463"],["-123.3006569","38.5552021"],["-123.3006901","38.5552591"],["-123.3007421","38.5552921"],["-123.3008309","38.5553119"],["-123.3010063","38.5553124"],["-123.3013576","38.5553031"],["-123.3017526","38.555323"],["-123.3024505","38.555381"],["-123.3027026","38.5554152"],["-123.3028436","38.5554461"],["-123.3029389","38.5555"],["-123.3031068","38.5556346"],["-123.3035445","38.5559351"],["-123.3041523","38.55629"],["-123.304801","38.5566204"],["-123.3052763","38.5568131"],["-123.3059067","38.5569554"],["-123.3066293","38.557099"],["-123.3070204","38.5571497"],["-123.3072958","38.5571426"],["-123.307536","38.5570709"],["-123.3077492","38.5569794"],["-123.3079547","38.5568382"],["-123.308129","38.5567186"],["-123.30824","38.556658"],["-123.3083234","38.5566235"],["-123.3084145","38.5566051"],["-123.3085069","38.5566069"],["-123.3086191","38.5566313"],["-123.3087159","38.5566789"],["-123.3088838","38.556832"],["-123.309117","38.5571104"],["-123.3093326","38.5573916"],["-123.3093621","38.5575297"],["-123.3093487","38.5577819"],["-123.3093683","38.5578902"],["-123.3093972","38.5579503"],["-123.3094577","38.5580146"],["-123.3096513","38.5581563"],["-123.309794","38.5582513"],["-123.3098758","38.5583247"],["-123.3099415","38.5584501"],["-123.3102192","38.5590609"],["-123.3104508","38.5593277"],["-123.3106365","38.5594774"],["-123.3108643","38.5595982"],["-123.3111458","38.5597489"],["-123.3115562","38.5600177"],["-123.3118557","38.5603376"],["-123.3119188","38.5606516"],["-123.3119308","38.5608222"],["-123.3118666","38.5613887"],["-123.3118115","38.5617245"],["-123.3117973","38.5618487"],["-123.3118136","38.561946"],["-123.311856","38.5620279"],["-123.3118867","38.5620691"],["-123.3119334","38.5621116"],["-123.3120023","38.5621538"],["-123.3121054","38.5621953"],["-123.3125452","38.5622873"],["-123.312882","38.5623756"],["-123.3131145","38.5624861"],["-123.313305","38.5626209"],["-123.3137329","38.563077"],["-123.3141843","38.5635694"],["-123.3143615","38.5637012"],["-123.314499","38.5637688"],["-123.31463","38.5638091"],["-123.3148418","38.5638371"],["-123.3154972","38.5638928"],["-123.3157616","38.5639486"],["-123.3167825","38.5642182"],["-123.3172986","38.5644221"],["-123.3189444","38.5653808"],["-123.3193712","38.5661062"],["-123.3194547","38.5667816"],["-123.3193588","38.5673194"],["-123.3192025","38.5677983"],["-123.3191966","38.5679556"],["-123.3192464","38.568063"],["-123.3193171","38.5681526"],["-123.3194047","38.5682353"],["-123.319577","38.5683658"],["-123.3200169","38.5686336"],["-123.3205611","38.5689414"],["-123.3209846","38.5691564"],["-123.321131","38.5692286"],["-123.3214138","38.5693491"],["-123.3221955","38.5696323"],["-123.3240033","38.5702707"],["-123.3242317","38.5703524"],["-123.3245584","38.5704741"],["-123.324735","38.5705526"],["-123.3249011","38.5706424"],["-123.3250391","38.5707223"],["-123.325137","38.5707912"],["-123.3252663","38.5709005"],["-123.3256641","38.5712888"],["-123.3259146","38.5715535"],["-123.3260063","38.571656"],["-123.3260424","38.571708"],["-123.3260695","38.5717686"],["-123.3260824","38.5718269"],["-123.3260817","38.5719934"],["-123.3260811","38.5720998"],["-123.3261009","38.5721554"],["-123.3261313","38.5722091"],["-123.3261787","38.5722693"],["-123.3262314","38.5723107"],["-123.3263129","38.5723544"],["-123.3264353","38.5724056"],["-123.3265617","38.5724578"],["-123.3268986","38.5726058"],["-123.3274078","38.5728456"],["-123.3275526","38.5729033"],["-123.3276691","38.5729401"],["-123.327771","38.5729597"],["-123.3278571","38.572971"],["-123.3279312","38.5729755"],["-123.3281176","38.572964"],["-123.3282463","38.5729582"],["-123.3283631","38.5729591"],["-123.3284902","38.5729642"],["-123.3286878","38.5729816"],["-123.3302888","38.5731626"],["-123.3311893","38.5732763"],["-123.3315395","38.5733319"],["-123.3317142","38.5733699"],["-123.3318581","38.5734055"],["-123.3319771","38.5734406"],["-123.3321083","38.5734897"],["-123.3322469","38.5735518"],["-123.3325069","38.5736971"],["-123.3330858","38.5740326"],["-123.3333214","38.5742023"],["-123.3334065","38.5742866"],["-123.333476","38.5743694"],["-123.3335375","38.5744688"],["-123.3337065","38.5748524"],["-123.334338","38.5763286"],["-123.334411","38.5764982"],["-123.3347561","38.5773199"],["-123.3347982","38.5774359"],["-123.3348191","38.5775345"],["-123.334827","38.5776377"],["-123.3348229","38.5777199"],["-123.3348001","38.5778068"],["-123.3347734","38.5778875"],["-123.3347278","38.5779762"],["-123.3346203","38.5780984"],["-123.3345273","38.5781775"],["-123.3344346","38.5782314"],["-123.3343438","38.5782769"],["-123.3342311","38.5783215"],["-123.3341515","38.5783386"],["-123.3340523","38.578353"],["-123.3339537","38.5783533"],["-123.333869","38.5783502"],["-123.3337803","38.5783357"],["-123.3337035","38.578314"],["-123.3336292","38.5782834"],["-123.3335515","38.5782423"],["-123.3333365","38.5781026"],["-123.3332675","38.5780668"],["-123.3332112","38.5780408"],["-123.3331216","38.5780135"],["-123.3329952","38.577983"],["-123.3328628","38.5779531"],["-123.3327562","38.577927"],["-123.3326801","38.5779023"],["-123.3325985","38.5778694"],["-123.332486","38.5778195"],["-123.33237","38.5777655"],["-123.33226","38.5777227"],["-123.3321505","38.5776874"],["-123.3320716","38.5776727"],["-123.3319974","38.5776708"],["-123.33191","38.5776808"],["-123.3318503","38.5777035"],["-123.3317903","38.5777395"],["-123.3317377","38.577786"],["-123.331701","38.5778494"],["-123.3316836","38.5779102"],["-123.3316821","38.5779774"],["-123.3317007","38.5780351"],["-123.3317315","38.5780813"],["-123.3317816","38.5781246"],["-123.3318412","38.578159"],["-123.3319071","38.578189"],["-123.331997","38.5782173"],["-123.3321382","38.5782508"],["-123.3322517","38.5782808"],["-123.3323418","38.5783138"],["-123.3324237","38.5783507"],["-123.3325054","38.5783958"],["-123.3325802","38.5784474"],["-123.3326731","38.5785372"],["-123.3328558","38.578723"],["-123.3329354","38.5787958"],["-123.332999","38.5788373"],["-123.3330694","38.5788743"],["-123.333223","38.5789432"],["-123.3332999","38.5789821"],["-123.3333466","38.5790183"],["-123.3333823","38.5790656"],["-123.3333926","38.5791117"],["-123.3333929","38.5791812"],["-123.3333491","38.5792716"],["-123.3330719","38.5797222"],["-123.3327122","38.5802369"],["-123.3323001","38.5809445"],["-123.3322337","38.581081"],["-123.3322063","38.5811496"],["-123.33219","38.5812057"],["-123.3321746","38.5812866"],["-123.3321737","38.5813637"],["-123.3322068","38.5815144"],["-123.3322497","38.5815828"],["-123.3323154","38.5816571"],["-123.3336017","38.5825796"],["-123.334113","38.5829186"],["-123.3343518","38.5830443"],["-123.3347013","38.5831819"],["-123.3354906","38.5834615"],["-123.3357269","38.5835211"],["-123.33611","38.5835617"],["-123.3367416","38.5836085"],["-123.3370231","38.5836422"],["-123.3371885","38.5836938"],["-123.3373212","38.5837706"],["-123.3374427","38.5838745"],["-123.3374919","38.5839626"],["-123.3375287","38.5840731"],["-123.337535","38.5841733"],["-123.3374877","38.5843425"],["-123.3374056","38.5845026"],["-123.3373308","38.5846906"],["-123.3371778","38.584902"],["-123.336994","38.5850839"],["-123.3368011","38.5852526"],["-123.3366316","38.5853991"],["-123.3365445","38.5855279"],["-123.3365325","38.5855877"],["-123.3365511","38.5856521"],["-123.3366131","38.5857246"],["-123.3366889","38.5857792"],["-123.336805","38.585818"],["-123.3369312","38.5858428"],["-123.3370959","38.5858464"],["-123.3373232","38.5858508"],["-123.3376496","38.5858899"],["-123.3379858","38.585948"],["-123.3383834","38.5860431"],["-123.3387043","38.5861189"],["-123.3389923","38.5862423"],["-123.3393922","38.5864491"],["-123.3397271","38.5866522"],["-123.3401603","38.5868941"],["-123.3403999","38.5870665"],["-123.3405783","38.5872778"],["-123.3407424","38.587611"],["-123.340893","38.5882671"],["-123.3409888","38.5888449"],["-123.3410341","38.5894488"],["-123.3410988","38.5900511"],["-123.3413786","38.5905281"],["-123.341844","38.5912238"],["-123.34307","38.5926235"],["-123.3443336","38.5939342"],["-123.34538","38.5946717"],["-123.345831","38.5952459"],["-123.3470347","38.5961851"],["-123.3476462","38.5968423"],["-123.347891","38.5973956"],["-123.3481564","38.5977857"],["-123.3485284","38.598191"],["-123.3496923","38.5990677"],["-123.3498401","38.599217"],["-123.3498693","38.5994007"],["-123.3497937","38.5997956"],["-123.3498762","38.60013"],["-123.3504153","38.6006345"],["-123.351346","38.6012637"],["-123.3518207","38.6014893"],["-123.3522675","38.6017852"],["-123.3528551","38.6021338"],["-123.3535386","38.6024551"],["-123.3545526","38.6027652"],["-123.355887","38.6031244"],["-123.3570907","38.6035833"],["-123.358732","38.6047327"],["-123.3591058","38.6049775"],["-123.3603273","38.6056284"],["-123.3614419","38.6061774"],["-123.3620419","38.6065941"],["-123.362258","38.6067787"],["-123.3623913","38.6069514"],["-123.3625083","38.6071232"],["-123.3626074","38.6074195"],["-123.3628223","38.6082101"],["-123.3630523","38.6091128"],["-123.3636811","38.6106409"],["-123.3641257","38.6114541"],["-123.3649507","38.6130803"],["-123.3651939","38.6134017"],["-123.3654916","38.6137048"],["-123.3658169","38.6139629"],["-123.3662997","38.6142418"],["-123.3739187","38.6176309"],["-123.3747374","38.6181897"],["-123.3754207","38.6188908"],["-123.3759275","38.6194825"],["-123.3764462","38.6200233"],["-123.3772454","38.6206755"],["-123.3779552","38.621236"],["-123.3784439","38.6216578"],["-123.3789252","38.6220705"],["-123.3792245","38.622386"],["-123.3798305","38.6232585"],["-123.3807926","38.6245813"],["-123.3816781","38.6257657"],["-123.3825903","38.6268076"],["-123.3847408","38.6291024"],["-123.3853091","38.6297529"],["-123.3857443","38.6304023"],["-123.3866457","38.6321874"],["-123.3874666","38.6340898"],["-123.388963","38.6381484"],["-123.3893523","38.6390905"],["-123.3895319","38.6393334"],["-123.3897606","38.6395717"],["-123.3900321","38.6397894"],["-123.3903593","38.6400182"],["-123.3907042","38.6401967"],["-123.3912169","38.6404108"],["-123.3922358","38.640789"],["-123.3927193","38.6409944"],["-123.3930356","38.6411717"],["-123.3934156","38.6414923"],["-123.393809","38.6419112"],["-123.3966313","38.6456336"],["-123.3968141","38.6460109"],["-123.3969259","38.646316"],["-123.3970117","38.6467285"],["-123.3970873","38.6471267"],["-123.3976204","38.6494334"],["-123.3978549","38.6503785"],["-123.3980155","38.6506905"],["-123.398294","38.6509819"],["-123.3986543","38.6512981"],["-123.3998445","38.6522099"],["-123.4001568","38.6524506"],["-123.400331","38.6526197"],["-123.4004769","38.6528214"],["-123.4006127","38.6531028"],["-123.4007789","38.653541"],["-123.4008186","38.6539192"],["-123.400833","38.6541888"],["-123.4008849","38.654384"],["-123.4009572","38.6545951"],["-123.4011544","38.6549566"],["-123.4013316","38.655297"],["-123.4015549","38.655604"],["-123.4017376","38.6558187"],["-123.4019527","38.656043"],["-123.4023256","38.6564795"],["-123.4027542","38.6570297"],["-123.4032766","38.6578331"],["-123.403697","38.6586057"],["-123.403848","38.6588271"],["-123.4040638","38.659021"],["-123.4045462","38.6593206"],["-123.4047149","38.6595021"],["-123.4047698","38.6596638"],["-123.4047494","38.659932"],["-123.4046276","38.6606951"],["-123.4046297","38.6610503"],["-123.4048047","38.6616271"],["-123.4051309","38.6621537"],["-123.4074606","38.6642667"],["-123.408893","38.6655675"],["-123.4102114","38.666959"],["-123.4117568","38.6688977"],["-123.413322","38.6703152"],["-123.4138173","38.6706359"],["-123.4144634","38.6708254"],["-123.4148364","38.670989"],["-123.4153018","38.6713948"],["-123.415864","38.6720113"],["-123.4179024","38.6741675"],["-123.4183781","38.6746671"],["-123.4189114","38.6750377"],["-123.4195719","38.6753473"],["-123.420397","38.6756496"],["-123.4210052","38.6758812"],["-123.4214327","38.6761347"],["-123.4219985","38.6765531"],["-123.4226171","38.6770112"],["-123.4230282","38.6772774"],["-123.4233544","38.6773943"],["-123.423867","38.6774972"],["-123.4245755","38.6777137"],["-123.425493","38.678057"],["-123.4258591","38.678235"],["-123.4261789","38.6784027"],["-123.4264764","38.6785884"],["-123.4267167","38.6787903"],["-123.4280309","38.6800085"],["-123.4282183","38.6802271"],["-123.4283752","38.6804974"],["-123.4284585","38.6806862"],["-123.4285226","38.680909"],["-123.4285548","38.6810802"],["-123.4285619","38.6812992"],["-123.42853","38.6815426"],["-123.42845","38.6818022"],["-123.4283582","38.6820164"],["-123.4282738","38.6821472"],["-123.4279561","38.6825588"],["-123.4267232","38.6840228"],["-123.4265766","38.6842161"],["-123.4264606","38.6844257"],["-123.426375","38.6846365"],["-123.4261999","38.6846671"],["-123.4260807","38.6846729"],["-123.4258843","38.6847348"],["-123.4257307","38.6847715"],["-123.4255502","38.6847717"],["-123.4254047","38.6847298"],["-123.4252909","38.6846585"],["-123.4251546","38.6845445"],["-123.4250603","38.684396"],["-123.4250282","38.6842108"],["-123.4250548","38.6836624"],["-123.425048","38.6834854"],["-123.4250177","38.6834122"],["-123.4249085","38.6833152"],["-123.4247543","38.683246"],["-123.4245795","38.683232"],["-123.4242566","38.6832705"],["-123.4240729","38.6832641"],["-123.4239275","38.6832351"],["-123.423626","38.6831247"],["-123.4237633","38.6827777"],["-123.4238151","38.6826239"],["-123.4238151","38.682447"],["-123.4237389","38.6818851"],["-123.4237256","38.6817271"],["-123.4237491","38.6816091"],["-123.423803","38.6815309"],["-123.424113","38.6812618"],["-123.4242348","38.6811316"],["-123.4243224","38.6809543"],["-123.4243577","38.6808153"],["-123.4243618","38.6806297"],["-123.4242753","38.6803671"],["-123.4241372","38.680164"],["-123.4240592","38.6800888"],["-123.4239361","38.6800143"],["-123.4237251","38.6799212"],["-123.423564","38.6798745"],["-123.4230313","38.6797735"],["-123.422858","38.6796999"],["-123.4227453","38.6796056"],["-123.4226958","38.6795298"],["-123.4225953","38.6792588"],["-123.4225956","38.6792599"],["-123.4226973","38.679533"],["-123.4227457","38.6796059"],["-123.422858","38.6796998"],["-123.4230362","38.6797746"],["-123.4235668","38.6798749"],["-123.4237249","38.679921"],["-123.423938","38.6800152"],["-123.4240588","38.6800889"],["-123.4241371","38.6801636"],["-123.4242751","38.6803667"],["-123.4243613","38.6806272"],["-123.4243575","38.6808169"],["-123.4243225","38.6809535"],["-123.4242346","38.681132"],["-123.4241147","38.6812602"],["-123.4238033","38.6815305"],["-123.4237485","38.6816108"],["-123.4237253","38.6817282"],["-123.4237381","38.6818775"],["-123.4238143","38.6824434"],["-123.4238146","38.6826251"],["-123.4237606","38.6827839"],["-123.4236265","38.6831265"],["-123.4239282","38.6832352"],["-123.4240716","38.6832641"],["-123.4242611","38.6832703"],["-123.4245814","38.6832319"],["-123.4247519","38.6832454"],["-123.4249093","38.6833156"],["-123.4250174","38.683412"],["-123.4250481","38.6834841"],["-123.4250546","38.6836634"],["-123.4250281","38.6842063"],["-123.4250604","38.6843963"],["-123.4251545","38.6845445"],["-123.4252921","38.684659"],["-123.425405","38.6847299"],["-123.4255516","38.684772"],["-123.4257311","38.6847713"],["-123.4258899","38.6847331"],["-123.4260799","38.6846732"],["-123.4261982","38.6846674"],["-123.4263652","38.68467"],["-123.4262578","38.6851252"],["-123.4260671","38.6855152"],["-123.4258815","38.6858044"],["-123.4258564","38.6860642"],["-123.4258485","38.6864988"],["-123.4259624","38.6867904"],["-123.4262572","38.6871813"],["-123.4263364","38.6875273"],["-123.4263779","38.6879318"],["-123.4265155","38.6884442"],["-123.426589","38.6889906"],["-123.4265698","38.6896329"],["-123.4265856","38.6901631"],["-123.4271331","38.6910829"],["-123.4272706","38.691234"],["-123.4276102","38.6915596"],["-123.4278878","38.6918845"],["-123.4282764","38.6921932"],["-123.4286654","38.6924319"],["-123.428785","38.692556"],["-123.4288936","38.6927337"],["-123.4289863","38.6929842"],["-123.4291167","38.6933127"],["-123.4292941","38.6936547"],["-123.429491","38.6939955"],["-123.4296666","38.6943251"],["-123.4298744","38.6947585"],["-123.4300485","38.6950888"],["-123.4302426","38.6952913"],["-123.4304512","38.6954149"],["-123.4306557","38.6955081"],["-123.4308713","38.6956094"],["-123.4311647","38.6957888"],["-123.4324399","38.6965981"],["-123.4333449","38.697051"],["-123.433839","38.697371"],["-123.4341849","38.6976868"],["-123.4352243","38.6990933"],["-123.4363454","38.6999121"],["-123.4366865","38.7001421"],["-123.4372273","38.7004227"],["-123.4376854","38.7007648"],["-123.4383099","38.7013491"],["-123.438556","38.7015759"],["-123.4394889","38.7021771"],["-123.440245","38.7026493"],["-123.4407938","38.7029954"],["-123.441003","38.7032185"],["-123.4411367","38.7034247"],["-123.4412317","38.7037002"],["-123.4413819","38.7038791"],["-123.4416043","38.7040291"],["-123.4419371","38.7041939"],["-123.4436341","38.7046942"],["-123.4440666","38.7048532"],["-123.4443632","38.7049933"],["-123.4446596","38.705232"],["-123.4449324","38.7054724"],["-123.4458277","38.7063622"],["-123.4467752","38.7073705"],["-123.4470386","38.7076693"],["-123.447284","38.7079783"],["-123.4475303","38.7084521"],["-123.4477407","38.7087701"],["-123.4479198","38.7089514"],["-123.450187","38.7113556"],["-123.4503787","38.7115424"],["-123.4507646","38.7119133"],["-123.4539949","38.7149667"],["-123.4551178","38.7158021"],["-123.4561757","38.7164965"],["-123.456508","38.7167303"],["-123.457227","38.717697"],["-123.4574292","38.7179448"],["-123.4585619","38.7191338"],["-123.4591248","38.7197503"],["-123.4592628","38.7201553"],["-123.4593961","38.7206399"],["-123.4595662","38.7210363"],["-123.4599035","38.7212902"],["-123.46026","38.7215143"],["-123.4607287","38.7218169"],["-123.4610374","38.7219929"],["-123.461328","38.7222212"],["-123.4614462","38.7223099"],["-123.4616891","38.7225575"],["-123.4627331","38.7236401"],["-123.4638502","38.7246606"],["-123.4651877","38.7255521"],["-123.4658793","38.7260191"],["-123.4664","38.7263432"],["-123.4698283","38.7281478"],["-123.4728221","38.7297299"],["-123.4730565","38.7298668"],["-123.4734777","38.7301376"],["-123.4749498","38.731056"],["-123.4771674","38.7322878"],["-123.4791375","38.7333352"],["-123.4818907","38.7349422"],["-123.4855002","38.7372638"],["-123.4857182","38.7373953"],["-123.4866562","38.7379375"],["-123.4905516","38.7399254"],["-123.492319","38.7404562"],["-123.4937855","38.7410335"],["-123.495747","38.7418782"],["-123.5015188","38.7437651"],["-123.5024202","38.7441191"],["-123.5031332","38.7445486"],["-123.5063628","38.7465729"],["-123.507214","38.7470233"],["-123.5081714","38.7474046"],["-123.5091173","38.7478947"],["-123.5102148","38.7485514"],["-123.511138","38.7491049"],["-123.5124137","38.7498906"],["-123.5127781","38.7501872"],["-123.5130136","38.7504774"],["-123.5133656","38.7511225"],["-123.5135204","38.7515102"],["-123.5136744","38.7519677"],["-123.5139275","38.7524028"],["-123.5141443","38.7526619"],["-123.5143907","38.7529212"],["-123.5146727","38.753203"],["-123.5152684","38.7538008"],["-123.5155089","38.7541348"],["-123.5155508","38.7542556"],["-123.5156049","38.7544325"],["-123.5156185","38.7545947"],["-123.5156834","38.7548919"],["-123.5157233","38.7551161"],["-123.5157863","38.7553976"],["-123.5159578","38.756707"],["-123.5160662","38.7572403"],["-123.5162379","38.7576614"],["-123.5164909","38.7581193"],["-123.5168322","38.7585433"],["-123.5171804","38.7589171"],["-123.517706","38.7593216"],["-123.5189389","38.7601004"],["-123.519155","38.7602358"],["-123.5204143","38.7610429"],["-123.5280338","38.7658438"],["-123.5283845","38.7661079"],["-123.5286875","38.7663731"],["-123.528817","38.766502"],["-123.5290177","38.7667433"],["-123.5292167","38.7669565"],["-123.5295827","38.7673534"],["-123.5297648","38.7675562"],["-123.5300725","38.7679179"],["-123.5305291","38.768433"],["-123.5308696","38.7688376"],["-123.5313989","38.7694413"],["-123.5319589","38.7701033"],["-123.5326545","38.7709281"],["-123.5332165","38.7715818"],["-123.5335569","38.7719147"],["-123.5338077","38.77215"],["-123.5339856","38.7722966"],["-123.5342377","38.7724728"],["-123.5344525","38.7726045"],["-123.534763","38.7727735"],["-123.5350002","38.7728855"],["-123.5363128","38.7734455"],["-123.5366751","38.7736204"],["-123.5369128","38.7737738"],["-123.5372209","38.7740124"],["-123.5375725","38.774374"],["-123.5379098","38.7747326"],["-123.5395399","38.7765182"],["-123.539772","38.7767823"],["-123.5401681","38.7772148"],["-123.5405182","38.7775594"],["-123.5407854","38.7778129"],["-123.5410385","38.7780287"],["-123.5411916","38.7781492"],["-123.5414602","38.7783304"],["-123.5418398","38.7785544"],["-123.548365","38.7819116"],["-123.5490811","38.7822792"],["-123.5543785","38.7850204"],["-123.5550244","38.7853572"],["-123.5552959","38.7855339"],["-123.5555065","38.7857008"],["-123.5558056","38.7859889"],["-123.5560274","38.7862589"],["-123.5573219","38.7879696"],["-123.5578847","38.7886331"],["-123.5583217","38.7890893"],["-123.5588287","38.7895508"],["-123.5599856","38.790527"],["-123.560326","38.7907939"],["-123.5605498","38.7909636"],["-123.5610976","38.7914174"],["-123.5614092","38.7916652"],["-123.5618076","38.7919783"],["-123.562257","38.7922967"],["-123.5626586","38.7925657"],["-123.5629012","38.7927044"],["-123.563682","38.7930887"],["-123.5655441","38.7939187"],["-123.5657796","38.7940337"],["-123.566089","38.7942291"],["-123.5664309","38.7944977"],["-123.5673831","38.7953354"],["-123.5679549","38.7958235"],["-123.5684617","38.796223"],["-123.5687576","38.7964328"],["-123.5691247","38.7966521"],["-123.5694789","38.7968627"],["-123.5697812","38.7970618"],["-123.5699984","38.7972533"],["-123.570381","38.7976642"],["-123.5707067","38.7979562"],["-123.572386","38.7992856"],["-123.572594","38.7994701"],["-123.5727908","38.7996631"],["-123.5729685","38.7998611"],["-123.5731216","38.8000572"],["-123.573305","38.8003272"],["-123.5736525","38.800843"],["-123.5737968","38.8010265"],["-123.5739224","38.8011664"],["-123.5740472","38.801282"],["-123.5743663","38.8015281"],["-123.5745688","38.8016568"],["-123.5751112","38.8019237"],["-123.5770101","38.8027347"],["-123.5782386","38.8032547"],["-123.5785066","38.8033831"],["-123.5786644","38.8034857"],["-123.5787603","38.8036067"],["-123.5787908","38.8036684"],["-123.5788469","38.8039554"],["-123.5788489","38.8048311"],["-123.5788531","38.8054004"],["-123.5788775","38.8055078"],["-123.5789126","38.8055535"],["-123.5789727","38.8055847"],["-123.5790944","38.805605"],["-123.579232","38.8055938"],["-123.5792841","38.8055858"],["-123.5793221","38.8055707"],["-123.5794253","38.8055011"],["-123.579716","38.8052092"],["-123.5798444","38.8050269"],["-123.5799329","38.8048266"],["-123.580005","38.8042254"],["-123.580057","38.8039596"],["-123.5801223","38.8037869"],["-123.5801596","38.803686"],["-123.5801795","38.8036524"],["-123.5802134","38.8036242"],["-123.5802526","38.8035973"],["-123.5803064","38.8035759"],["-123.5803874","38.8035539"],["-123.580484","38.8035504"],["-123.5806375","38.8035551"],["-123.5809037","38.8035732"],["-123.5813085","38.8035861"],["-123.5817694","38.8035964"],["-123.5822683","38.8035872"],["-123.5827456","38.8035817"],["-123.585402","38.8035469"],["-123.5857769","38.8035567"],["-123.5861257","38.8035907"],["-123.5864429","38.8036389"],["-123.5867792","38.8037232"],["-123.5871026","38.8038357"],["-123.5877401","38.8041126"],["-123.5879595","38.8042549"],["-123.5880847","38.8043604"],["-123.588162","38.8044492"],["-123.5882073","38.8045345"],["-123.5882429","38.8046871"],["-123.5882357","38.8048078"],["-123.5881219","38.8053444"],["-123.5880882","38.8055699"],["-123.5881246","38.8057169"],["-123.588203","38.8058764"],["-123.5883106","38.8060047"],["-123.5889666","38.8066321"],["-123.5895502","38.8071412"],["-123.590658","38.8080374"],["-123.5908633","38.8081846"],["-123.5909876","38.8082341"],["-123.5911067","38.8082581"],["-123.5912038","38.8082616"],["-123.5913532","38.8082342"],["-123.5916546","38.8081185"],["-123.5918119","38.8080773"],["-123.5919413","38.8080622"],["-123.5921416","38.8080694"],["-123.5923278","38.8081045"],["-123.5925164","38.8081792"],["-123.5926324","38.8082523"],["-123.5927854","38.808399"],["-123.5928904","38.8085386"],["-123.5929713","38.8087007"],["-123.5932835","38.8094224"],["-123.594118","38.8111659"],["-123.5945593","38.8120719"],["-123.5948145","38.8125841"],["-123.595029","38.8129573"],["-123.5953994","38.8135132"],["-123.595677","38.8138791"],["-123.5959626","38.8142072"],["-123.5962498","38.8145025"],["-123.598106","38.8162333"],["-123.598868","38.8169222"],["-123.5991725","38.8171793"],["-123.5994498","38.8174996"],["-123.5998504","38.8181965"],["-123.6001215","38.8185521"],["-123.6003378","38.8188194"],["-123.6006792","38.8192464"],["-123.6009261","38.8195946"],["-123.6010643","38.8197969"],["-123.601174","38.8199065"],["-123.6012787","38.8199754"],["-123.6014307","38.8200396"],["-123.6019176","38.8201801"],["-123.6021805","38.820273"],["-123.6024762","38.820424"],["-123.6026947","38.8205629"],["-123.6028132","38.8206696"],["-123.6049909","38.8231857"],["-123.6052306","38.8233972"],["-123.6065076","38.8243677"],["-123.6068602","38.8246238"],["-123.6071535","38.8247962"],["-123.6076412","38.8250264"],["-123.6081302","38.8252475"],["-123.6084435","38.8253994"],["-123.6086887","38.8255527"],["-123.6089429","38.8257433"],["-123.6099543","38.8267412"],["-123.6102755","38.8270352"],["-123.6105707","38.8272627"],["-123.6108357","38.8274564"],["-123.6113047","38.8277027"],["-123.618443","38.8309729"],["-123.6188754","38.8311466"],["-123.6191884","38.8312556"],["-123.6195855","38.8313698"],["-123.6199197","38.8314537"],["-123.6203487","38.8315413"],["-123.6212667","38.8316859"],["-123.6216986","38.8317623"],["-123.6222568","38.8318976"],["-123.6241211","38.8324684"],["-123.6244417","38.8325923"],["-123.6250075","38.8328557"],["-123.6253227","38.8330561"],["-123.625549","38.8332236"],["-123.6258076","38.8334913"],["-123.6260537","38.833779"],["-123.6262155","38.8340506"],["-123.626581","38.8346887"],["-123.6266914","38.8349327"],["-123.6271398","38.835682"],["-123.6276737","38.8366437"],["-123.6280548","38.8372694"],["-123.6281489","38.8373868"],["-123.628186","38.8374366"],["-123.6282665","38.837502"],["-123.6285741","38.8377258"],["-123.6292866","38.8382242"],["-123.630381","38.838926"],["-123.6318391","38.8399111"],["-123.6322139","38.8401977"],["-123.6323459","38.8402874"],["-123.632568","38.8404285"],["-123.6329169","38.8406709"],["-123.6335323","38.8411306"],["-123.6341603","38.8416192"],["-123.6347159","38.8420674"],["-123.6350579","38.8423283"],["-123.6353866","38.8425685"],["-123.63561","38.8427448"],["-123.6360974","38.8432238"],["-123.6378146","38.8453227"],["-123.6380276","38.8455266"],["-123.6381501","38.8455692"],["-123.6382159","38.8455757"],["-123.6383243","38.845576"],["-123.6384473","38.8455691"],["-123.6390621","38.845401"],["-123.6392415","38.8453814"],["-123.6394665","38.8453765"],["-123.6396707","38.8453991"],["-123.6398812","38.84545"],["-123.6403833","38.8456616"],["-123.6439145","38.8472814"],["-123.6446704","38.8476122"],["-123.6449481","38.8477514"],["-123.6452008","38.8479122"],["-123.6454769","38.8481564"],["-123.6457906","38.8485662"],["-123.6461849","38.8491328"],["-123.646539","38.8496446"],["-123.6468609","38.8501005"],["-123.6472097","38.8505895"],["-123.6473649","38.8508964"],["-123.6474743","38.8512145"],["-123.6476508","38.8517831"],["-123.6477271","38.8519405"],["-123.6478985","38.8521994"],["-123.6479974","38.8523278"],["-123.6481417","38.8524639"],["-123.6491228","38.8532462"],["-123.649356","38.8534747"],["-123.6495741","38.8537611"],["-123.6499633","38.8544743"],["-123.6507598","38.8559801"],["-123.6509938","38.8563871"],["-123.6515056","38.8570903"],["-123.6521313","38.857947"],["-123.6523482","38.8582982"],["-123.6524396","38.8584822"],["-123.6525136","38.8586784"],["-123.6525886","38.8589875"],["-123.6526318","38.8592815"],["-123.6526608","38.8597524"],["-123.6529592","38.8632127"],["-123.6530402","38.8636294"],["-123.653358","38.864442"],["-123.6534068","38.8647027"],["-123.6534456","38.865665"],["-123.6534459","38.8659605"],["-123.6533997","38.8662057"],["-123.6531856","38.8667324"],["-123.6529941","38.8672042"],["-123.6529371","38.8674353"],["-123.6529345","38.8675716"],["-123.6529667","38.8678815"],["-123.6530247","38.8681312"],["-123.6531496","38.8684258"],["-123.6535371","38.8692413"],["-123.6536701","38.8697241"],["-123.653742","38.8699173"],["-123.6538747","38.8701403"],["-123.6540492","38.8703348"],["-123.6541606","38.8704376"],["-123.6543238","38.8705493"],["-123.6545017","38.870643"],["-123.6551872","38.87091"],["-123.6562595","38.871309"],["-123.6572919","38.8716763"],["-123.657521","38.8717662"],["-123.6578329","38.8719179"],["-123.6582056","38.8721398"],["-123.6586477","38.872435"],["-123.6593322","38.8729157"],["-123.6615463","38.874449"],["-123.6627059","38.875249"],["-123.6631338","38.8755589"],["-123.66351","38.8758265"],["-123.6635664","38.8758771"],["-123.6638795","38.876132"],["-123.6641635","38.8764019"],["-123.6644904","38.8767191"],["-123.6647855","38.8770083"],["-123.6649812","38.8772097"],["-123.6652534","38.8774511"],["-123.6655405","38.8776868"],["-123.6660034","38.8780305"],["-123.666241","38.8781947"],["-123.6664027","38.8783249"],["-123.6665955","38.8784535"],["-123.6669376","38.8786607"],["-123.6677189","38.8790646"],["-123.6695081","38.879842"],["-123.6699877","38.8800798"],["-123.6703162","38.8802889"],["-123.67058","38.880494"],["-123.6707931","38.8807236"],["-123.6712601","38.8811294"],["-123.6719504","38.8817363"],["-123.6722516","38.8819723"],["-123.6726811","38.8822389"],["-123.6730988","38.8824829"],["-123.6737484","38.8828556"],["-123.6743213","38.883204"],["-123.6746192","38.8834032"],["-123.6748498","38.8835815"],["-123.6751166","38.8838431"],["-123.6753941","38.8841608"],["-123.6755411","38.884358"],["-123.675638","38.8845199"],["-123.6757282","38.8846808"],["-123.6758426","38.8849707"],["-123.6760585","38.885563"],["-123.6762493","38.8860195"],["-123.6763495","38.8862048"],["-123.6767163","38.8867777"],["-123.6795572","38.8912913"],["-123.6801185","38.8921324"],["-123.6805075","38.8926438"],["-123.6806808","38.8928151"],["-123.6817101","38.8935144"],["-123.6833852","38.8946594"],["-123.6843009","38.895508"],["-123.6890712","38.8999922"],["-123.6892989","38.9001776"],["-123.6894748","38.9002949"],["-123.6901356","38.9006631"],["-123.6904215","38.900841"],["-123.6906856","38.9010571"],["-123.690904","38.9012706"],["-123.6910649","38.9014772"],["-123.6911849","38.9016707"],["-123.6913422","38.9020138"],["-123.6914623","38.9024031"],["-123.6915041","38.9026401"],["-123.6915132","38.9028823"],["-123.6915028","38.9029702"],["-123.6913912","38.9033873"],["-123.6913766","38.9035217"],["-123.6913958","38.903638"],["-123.6915087","38.9038842"],["-123.691943","38.9047229"],["-123.6923742","38.9055299"],["-123.6924527","38.905715"],["-123.6924804","38.9058956"],["-123.692498","38.9063319"],["-123.6925122","38.9071613"],["-123.6924511","38.9078565"],["-123.6924355","38.908556"],["-123.6923785","38.9113237"],["-123.692375","38.9115102"],["-123.6923986","38.9116064"],["-123.6924339","38.9116464"],["-123.6925787","38.9116865"],["-123.6961153","38.9123435"],["-123.6964113","38.9124268"],["-123.6999868","38.913722"],["-123.7004974","38.9139339"],["-123.700774","38.9140687"],["-123.7008884","38.9141465"],["-123.70094","38.9142117"],["-123.7010109","38.9143432"],["-123.7010932","38.9145545"],["-123.7011963","38.9149226"],["-123.7012461","38.9150609"],["-123.7013055","38.9152073"],["-123.7013976","38.9153794"],["-123.7015572","38.9156553"],["-123.7016504","38.9157715"],["-123.7017801","38.9159091"],["-123.7019064","38.9160073"],["-123.704048","38.9172459"],["-123.7043285","38.9173525"],["-123.7047095","38.9174282"],["-123.7050042","38.9174883"],["-123.7051743","38.9175572"],["-123.7052686","38.9176188"],["-123.7053272","38.9176695"],["-123.7054919","38.9178542"],["-123.705816","38.9182658"],["-123.7059484","38.9184742"],["-123.7059994","38.9185883"],["-123.706039","38.9186928"],["-123.7070773","38.9222374"],["-123.707295","38.9229586"],["-123.7091028","38.9290471"],["-123.7092242","38.9295515"],["-123.709247","38.9298394"],["-123.7092426","38.9313537"],["-123.709224","38.9315497"],["-123.7091991","38.9316382"],["-123.7091476","38.9317257"],["-123.7090749","38.9317966"],["-123.7089444","38.9318622"],["-123.7088124","38.931896"],["-123.7086393","38.9319072"],["-123.7084605","38.9318818"],["-123.7082743","38.9318188"],["-123.7081186","38.9317278"],["-123.70791","38.9315379"],["-123.7075239","38.9311367"],["-123.707412","38.9310532"],["-123.7072645","38.9309914"],["-123.7071748","38.9309772"],["-123.7070754","38.930987"],["-123.7070246","38.9310015"],["-123.7069498","38.9310458"],["-123.7069039","38.9310927"],["-123.7068783","38.9311355"],["-123.7068598","38.9312255"],["-123.7068774","38.9313054"],["-123.706955","38.9314172"],["-123.7071583","38.9316161"],["-123.7073801","38.9317925"],["-123.7076917","38.9319861"],["-123.7078128","38.9321046"],["-123.7080112","38.9323485"],["-123.708165","38.9324809"],["-123.7083281","38.9325988"],["-123.7084158","38.9326794"],["-123.708468","38.9327524"],["-123.7084982","38.9328351"],["-123.7085","38.9329334"],["-123.7084869","38.9330624"],["-123.7084812","38.9331761"],["-123.7085133","38.9332947"],["-123.7085852","38.9334359"],["-123.7087864","38.9337343"],["-123.7091367","38.9342184"],["-123.7092064","38.9343487"],["-123.7092424","38.9344696"],["-123.7092513","38.9345529"],["-123.7092474","38.9346342"],["-123.7092281","38.9347202"],["-123.709135","38.9349526"],["-123.708891","38.9353819"],["-123.7084384","38.9361414"],["-123.7082873","38.9364275"],["-123.7081906","38.9367386"],["-123.7081227","38.936988"],["-123.7080796","38.9370827"],["-123.708005","38.9371778"],["-123.7079165","38.9372447"],["-123.7078129","38.9372937"],["-123.707683","38.9373305"],["-123.7075232","38.9373467"],["-123.7073896","38.9373377"],["-123.7071498","38.9372705"],["-123.7068557","38.9371853"],["-123.7065167","38.9371243"],["-123.7056759","38.9370349"],["-123.7054047","38.9370142"],["-123.7052632","38.9370186"],["-123.7049913","38.9370737"],["-123.7043497","38.937224"],["-123.7040554","38.9372684"],["-123.7037765","38.9372992"],["-123.7035676","38.9373497"],["-123.703381","38.9374162"],["-123.7032676","38.9374699"],["-123.7031093","38.9375809"],["-123.7030101","38.9376953"],["-123.7029376","38.9378333"],["-123.7028467","38.9381374"],["-123.7017401","38.9429971"],["-123.7016624","38.9432499"],["-123.7015082","38.9435685"],["-123.7013267","38.943863"],["-123.7011952","38.9440465"],["-123.7004963","38.944989"],["-123.7001759","38.9454301"],["-123.6997432","38.9459847"],["-123.6992097","38.9466065"],["-123.6988811","38.9469788"],["-123.6984495","38.9475116"],["-123.6980155","38.9480744"],["-123.697869","38.9482367"],["-123.6977104","38.9483575"],["-123.6975101","38.9484741"],["-123.6969676","38.9486989"],["-123.6948019","38.9495487"],["-123.694551","38.9496193"],["-123.6943419","38.9496499"],["-123.6940763","38.9496621"],["-123.6934719","38.9496706"],["-123.6930969","38.9496947"],["-123.6925989","38.9498022"],["-123.6922661","38.9499059"],["-123.6919391","38.9500457"],["-123.6917484","38.9501626"],["-123.6914739","38.950364"],["-123.6907213","38.9509282"],["-123.6905635","38.9510605"],["-123.6904145","38.9512171"],["-123.6901842","38.9514975"],["-123.690012","38.9517728"],["-123.6896854","38.9523481"],["-123.6892063","38.9531789"],["-123.6889787","38.9535123"],["-123.6887213","38.9538131"],["-123.6882698","38.9542684"],["-123.6874033","38.9550102"],["-123.6872749","38.9551673"],["-123.6872006","38.9552983"],["-123.6870269","38.9555324"],["-123.6865761","38.9561214"],["-123.6862431","38.9565698"],["-123.6860802","38.9568599"],["-123.6860071","38.957055"],["-123.6859519","38.9574046"],["-123.6859209","38.9577025"],["-123.6859158","38.9579792"],["-123.6859297","38.958432"],["-123.6859878","38.9593272"],["-123.6860515","38.9603931"],["-123.6861247","38.9609649"],["-123.6862364","38.9614978"],["-123.6863341","38.9618881"],["-123.6865302","38.9624633"],["-123.6868063","38.9632336"],["-123.6868856","38.9635255"],["-123.6869351","38.9638567"],["-123.6869474","38.9641575"],["-123.6869585","38.9668273"],["-123.6869491","38.9675554"],["-123.6869434","38.9682536"],["-123.686941","38.9691452"],["-123.6869303","38.970036"],["-123.6869276","38.9707381"],["-123.6869272","38.9715568"],["-123.6869162","38.9810636"],["-123.6868866","38.9815782"],["-123.6868111","38.9818698"],["-123.6866199","38.9824042"],["-123.6860594","38.9838284"],["-123.6850251","38.9864225"],["-123.6848614","38.9870277"],["-123.6847243","38.9878677"],["-123.6846977","38.9881506"],["-123.6846981","38.9884394"],["-123.6847166","38.9886025"],["-123.6847856","38.9888431"],["-123.6848372","38.9889804"],["-123.6850675","38.9894375"],["-123.6853376","38.9899611"],["-123.6855433","38.9902978"],["-123.6864623","38.9915671"],["-123.6867308","38.9919147"],["-123.6874714","38.9929108"],["-123.6879072","38.9935997"],["-123.6885968","38.9948202"],["-123.6892619","38.9959983"],["-123.6893697","38.9963087"],["-123.6894692","38.9966828"],["-123.6895163","38.9968889"],["-123.6895404","38.9971671"],["-123.6895277","38.9977042"],["-123.6894874","38.9980379"],["-123.6892111","38.9991608"],["-123.6889947","39.0003884"],["-123.6889098","39.0008971"],["-123.6884381","39.0031162"],["-123.6882494","39.0042664"],["-123.6882041","39.004621"],["-123.6881739","39.0049396"],["-123.6881576","39.0052449"],["-123.6881366","39.00579"],["-123.6880327","39.007447"],["-123.6880077","39.0080854"],["-123.6880752","39.0101078"],["-123.6883495","39.018398"],["-123.6883346","39.0185654"],["-123.6883174","39.0186018"],["-123.6881413","39.0188256"],["-123.6878388","39.019129"],["-123.6876787","39.0192666"],["-123.6874735","39.0193902"],["-123.6873108","39.019461"],["-123.6869844","39.0195591"],["-123.6864001","39.0197169"],["-123.6859056","39.0198925"],["-123.6856358","39.0200058"],["-123.6854821","39.0200975"],["-123.6853885","39.0201638"],["-123.6852501","39.0203071"],["-123.6851523","39.020472"],["-123.6851145","39.0206026"],["-123.6851043","39.020689"],["-123.6851232","39.020807"],["-123.6851859","39.0209394"],["-123.6853091","39.0210934"],["-123.6854279","39.0211869"],["-123.6856329","39.0212921"],["-123.6858082","39.0213403"],["-123.6859632","39.0213522"],["-123.6860957","39.0213372"],["-123.6866787","39.0212112"],["-123.6869645","39.021172"],["-123.6872462","39.0211699"],["-123.6873957","39.0211882"],["-123.6875568","39.0212278"],["-123.6877153","39.0212847"],["-123.6878057","39.021327"],["-123.6879228","39.0214093"],["-123.6879729","39.0214551"],["-123.6880033","39.021526"],["-123.6880404","39.0219181"],["-123.6880981","39.0225433"],["-123.6881673","39.0232957"],["-123.6881465","39.0236337"],["-123.6880135","39.0241257"],["-123.6879739","39.0243494"],["-123.6879816","39.0246318"],["-123.688201","39.0270411"],["-123.688306","39.028091"],["-123.6883262","39.0288948"],["-123.6882953","39.0296702"],["-123.6882344","39.0307295"],["-123.6881781","39.0314316"],["-123.68811","39.0320025"],["-123.6879269","39.0327224"],["-123.6877791","39.0332178"],["-123.6876719","39.0335242"],["-123.6876042","39.0336758"],["-123.6874212","39.0341555"],["-123.686964","39.0355181"],["-123.6868933","39.0359024"],["-123.68682","39.0362278"],["-123.6864226","39.0373434"],["-123.6857748","39.0392393"],["-123.6856667","39.0395801"],["-123.6855959","39.0399917"],["-123.6855721","39.0403063"],["-123.6855433","39.0413201"],["-123.6854884","39.0421714"],["-123.685443","39.042706"],["-123.6854157","39.0429019"],["-123.6853878","39.0432521"],["-123.6850094","39.0472022"],["-123.684987","39.047483"],["-123.6848987","39.048324"],["-123.6848509","39.0490644"],["-123.6848172","39.0496846"],["-123.6848057","39.0497924"],["-123.6847652","39.0499002"],["-123.684721","39.0499696"],["-123.6845958","39.0500681"],["-123.6842721","39.0502475"],["-123.6840066","39.0504087"],["-123.6838641","39.0505109"],["-123.683757","39.0506113"],["-123.6836665","39.0507372"],["-123.683619","39.0508588"],["-123.6836108","39.0509357"],["-123.6836213","39.0511093"],["-123.6836959","39.0513978"],["-123.6837954","39.0516475"],["-123.6839973","39.0519854"],["-123.684356","39.0524633"],["-123.684545","39.0527359"],["-123.6846578","39.0529536"],["-123.6848235","39.0533826"],["-123.685513","39.0553287"],["-123.6855609","39.0555056"],["-123.685663","39.0557522"],["-123.6868715","39.0591571"],["-123.6869957","39.0595229"],["-123.687578","39.0609062"],["-123.6893519","39.0648459"],["-123.6897694","39.0657495"],["-123.6902935","39.0668309"],["-123.6919127","39.070116"],["-123.6924234","39.0711942"],["-123.6926365","39.0717028"],["-123.6928736","39.0722713"],["-123.6929757","39.0724938"],["-123.6931397","39.0728705"],["-123.6933416","39.0733229"],["-123.6934405","39.0735206"],["-123.6935174","39.0736858"],["-123.6936156","39.0739412"],["-123.6937521","39.0741975"],["-123.6938643","39.0743644"],["-123.694025","39.0745595"],["-123.6941363","39.0747208"],["-123.6941867","39.0748457"],["-123.694214","39.0749964"],["-123.6942248","39.0752723"],["-123.6942169","39.075541"],["-123.6942126","39.0758644"],["-123.6942362","39.0761499"],["-123.6942678","39.0763341"],["-123.6943861","39.0766071"],["-123.695001","39.0778085"],["-123.6956112","39.0789935"],["-123.6958579","39.0794679"],["-123.6960682","39.0799029"],["-123.7002904","39.0884049"],["-123.7010322","39.0898974"],["-123.7021527","39.0921769"],["-123.7048223","39.0975881"],["-123.7053303","39.0985957"],["-123.7054254","39.0987242"],["-123.7055327","39.0988174"],["-123.7058953","39.0990388"],["-123.7062955","39.0992697"],["-123.7067589","39.0995491"],["-123.7068592","39.0996349"],["-123.7069502","39.0997593"],["-123.7069714","39.0998289"],["-123.7069759","39.0999424"],["-123.7069608","39.1000366"],["-123.7069224","39.100111"],["-123.7068375","39.1001989"],["-123.7067496","39.1002577"],["-123.7066206","39.1003081"],["-123.7065293","39.100325"],["-123.7063971","39.1003243"],["-123.7062896","39.1003031"],["-123.705906","39.1001791"],["-123.7057722","39.1001516"],["-123.7055716","39.1001425"],["-123.7054427","39.1001498"],["-123.70527","39.1001901"],["-123.7049334","39.1003147"],["-123.7047154","39.100381"],["-123.7045379","39.1004309"],["-123.7044382","39.1004927"],["-123.7044101","39.1005436"],["-123.7044194","39.1005975"],["-123.7044572","39.1006356"],["-123.7045225","39.1006661"],["-123.7046581","39.1006785"],["-123.7050255","39.1006624"],["-123.7052871","39.1005946"],["-123.7053341","39.1005879"],["-123.7054198","39.1005855"],["-123.7055621","39.1006136"],["-123.7058072","39.1007105"],["-123.7058883","39.1007568"],["-123.7059368","39.1008077"],["-123.7059499","39.1008615"],["-123.7059217","39.1009156"],["-123.7058456","39.1009668"],["-123.7057617","39.1009814"],["-123.7055302","39.1009485"],["-123.7053846","39.1009624"],["-123.7050547","39.1010553"],["-123.7048208","39.1010792"],["-123.704621","39.1010818"],["-123.704293","39.101071"],["-123.7039388","39.1010521"],["-123.7036477","39.1010218"],["-123.7033511","39.1009629"],["-123.7031139","39.1009358"],["-123.7027695","39.1009296"],["-123.7025964","39.1009521"],["-123.7024048","39.1010026"],["-123.7022236","39.1010809"],["-123.7020996","39.1011506"],["-123.7019797","39.1012609"],["-123.7018461","39.1014239"],["-123.7017036","39.1016781"],["-123.7014465","39.102198"],["-123.7012974","39.1025384"],["-123.7012669","39.1027087"],["-123.701259","39.1029157"],["-123.7013341","39.1032929"],["-123.7013356","39.1035548"],["-123.7012599","39.1039454"],["-123.7012582","39.1041634"],["-123.7012844","39.1043049"],["-123.7013575","39.1044717"],["-123.7014079","39.1045377"],["-123.7015958","39.1047125"],["-123.701977","39.1050443"],["-123.7022698","39.1053062"],["-123.7024769","39.1054511"],["-123.702668","39.105546"],["-123.7028719","39.1056307"],["-123.703196","39.1057649"],["-123.7033662","39.1058015"],["-123.7035326","39.1058009"],["-123.7036792","39.1057799"],["-123.7040596","39.1056629"],["-123.7041639","39.1056507"],["-123.7042767","39.1056567"],["-123.704369","39.1056835"],["-123.7045467","39.1057704"],["-123.7046639","39.1057987"],["-123.704862","39.1057984"],["-123.7051144","39.1057482"],["-123.7054309","39.1056568"],["-123.7057773","39.1056054"],["-123.7059921","39.1055518"],["-123.7061145","39.1054889"],["-123.7062344","39.105385"],["-123.7065108","39.1050696"],["-123.7066966","39.1048845"],["-123.7068549","39.1047673"],["-123.7069486","39.1047159"],["-123.7070511","39.1046861"],["-123.7071611","39.1046741"],["-123.707286","39.1046819"],["-123.7073988","39.1047224"],["-123.7076025","39.1048447"],["-123.7078362","39.1049923"],["-123.7080868","39.1051264"],["-123.7084753","39.1052704"],["-123.7086843","39.1053719"],["-123.7088278","39.1054754"],["-123.7089992","39.1056655"],["-123.7093925","39.1062005"],["-123.7099074","39.1069339"],["-123.7108358","39.1083924"],["-123.7112457","39.1089904"],["-123.7115151","39.10946"],["-123.7119069","39.1102926"],["-123.712296","39.1111351"],["-123.7123636","39.1113463"],["-123.7124156","39.1118573"],["-123.7124822","39.1128367"],["-123.7125228","39.1135007"],["-123.7125383","39.1146914"],["-123.7125712","39.1148756"],["-123.7126392","39.1150698"],["-123.7127609","39.1152988"],["-123.7130121","39.1157"],["-123.7132309","39.1160507"],["-123.7136556","39.1165921"],["-123.7140277","39.1172554"],["-123.7144192","39.1178386"],["-123.7146927","39.1182235"],["-123.7149295","39.11856"],["-123.7150631","39.1187184"],["-123.7152581","39.11903"],["-123.7154534","39.1194401"],["-123.7156258","39.1198505"],["-123.7158703","39.1205606"],["-123.7160893","39.121207"],["-123.7161189","39.1213445"],["-123.7161568","39.121603"],["-123.7161772","39.1218348"],["-123.7161623","39.1220405"],["-123.7160808","39.122312"],["-123.7159568","39.1226151"],["-123.7157961","39.1228689"],["-123.7155982","39.1230993"],["-123.7153839","39.1233133"],["-123.715191","39.123477"],["-123.7149263","39.1236481"],["-123.7146703","39.1237753"],["-123.7142747","39.1239231"],["-123.7131779","39.1242904"],["-123.7127784","39.1244513"],["-123.7124391","39.1246452"],["-123.7123222","39.1247251"],["-123.7120818","39.1249444"],["-123.7118827","39.1251746"],["-123.7117775","39.1253275"],["-123.7117173","39.1254536"],["-123.7116657","39.12569"],["-123.711642","39.1260231"],["-123.7116563","39.1261975"],["-123.7116952","39.1263599"],["-123.7117675","39.1265394"],["-123.7119063","39.1267683"],["-123.7121533","39.1270185"],["-123.7123474","39.127143"],["-123.7125122","39.1272212"],["-123.712649","39.1272649"],["-123.7128382","39.1272957"],["-123.7130688","39.1273012"],["-123.7131996","39.1272845"],["-123.7135195","39.1272176"],["-123.713825","39.127173"],["-123.7139903","39.1271853"],["-123.7141423","39.127221"],["-123.7142685","39.1272779"],["-123.7144292","39.1273795"],["-123.7148704","39.1277183"],["-123.7155686","39.1280445"],["-123.7157468","39.1281567"],["-123.7161815","39.1286942"],["-123.7167627","39.1294748"],["-123.716906","39.1296665"],["-123.7174176","39.1304763"],["-123.717498","39.1306189"],["-123.7175981","39.1308883"],["-123.7178891","39.1317808"],["-123.7180776","39.1324149"],["-123.7182611","39.1330716"],["-123.7184471","39.1337766"],["-123.7185086","39.1340603"],["-123.7185164","39.1341765"],["-123.7185155","39.1344239"],["-123.7184919","39.1346269"],["-123.7184483","39.1348535"],["-123.71844","39.1350528"],["-123.7184713","39.135199"],["-123.7185049","39.1352795"],["-123.7185748","39.1353747"],["-123.7187066","39.1354874"],["-123.7193447","39.1358974"],["-123.7199949","39.1363147"],["-123.7205559","39.1366831"],["-123.7207187","39.1367697"],["-123.7208748","39.1367901"],["-123.7214761","39.1367561"],["-123.7216542","39.1367767"],["-123.7217722","39.1368235"],["-123.7222501","39.1371331"],["-123.7228679","39.1375768"],["-123.7232512","39.1378635"],["-123.7232965","39.1379322"],["-123.7233431","39.1380282"],["-123.7234237","39.1381078"],["-123.7235522","39.1381816"],["-123.7236065","39.1382551"],["-123.7236496","39.1383372"],["-123.7237073","39.1384086"],["-123.7239125","39.1386069"],["-123.7241815","39.1388782"],["-123.7246733","39.1393857"],["-123.7252525","39.1399864"],["-123.7257754","39.1404761"],["-123.7259582","39.1406493"],["-123.726233","39.1408657"],["-123.7266354","39.141112"],["-123.726959","39.1412833"],["-123.7272105","39.1413949"],["-123.7274854","39.1415038"],["-123.7281663","39.141696"],["-123.7299802","39.1421858"],["-123.7303648","39.1422801"],["-123.7307618","39.1423942"],["-123.7309748","39.1424421"],["-123.7312831","39.1424385"],["-123.7315988","39.1425368"],["-123.7319501","39.1427316"],["-123.7322701","39.1428762"],["-123.7324032","39.1429532"],["-123.7326069","39.1431218"],["-123.7329926","39.1435042"],["-123.7331478","39.143682"],["-123.7332073","39.1438028"],["-123.7332371","39.1439114"],["-123.733251","39.1440868"],["-123.7332216","39.1444163"],["-123.7331494","39.145074"],["-123.7330616","39.1458848"],["-123.7329814","39.1462207"],["-123.7327536","39.1468147"],["-123.7326986","39.1470284"],["-123.7326918","39.1472087"],["-123.732705","39.147289"],["-123.7327742","39.1474663"],["-123.732861","39.1476261"],["-123.7329639","39.1477611"],["-123.7333658","39.1481915"],["-123.7336061","39.1484641"],["-123.7337318","39.148642"],["-123.7339323","39.1489965"],["-123.7340944","39.1493411"],["-123.7342041","39.1497028"],["-123.7343124","39.1501725"],["-123.7344545","39.1508715"],["-123.7345946","39.1515879"],["-123.7346446","39.1519643"],["-123.7346389","39.1521828"],["-123.7346128","39.1522878"],["-123.734555","39.1523955"],["-123.7344649","39.1524821"],["-123.734348","39.1525494"],["-123.7341476","39.15265"],["-123.7340298","39.1527335"],["-123.7339287","39.152853"],["-123.733721","39.1531936"],["-123.7336277","39.1533017"],["-123.7335358","39.1533728"],["-123.7333486","39.153456"],["-123.7331862","39.1535257"],["-123.7330377","39.1536242"],["-123.7329688","39.1537154"],["-123.7329499","39.1537728"],["-123.7329554","39.1538331"],["-123.7329952","39.1539024"],["-123.7330853","39.1539832"],["-123.7331803","39.1540292"],["-123.733257","39.1540452"],["-123.7334022","39.15405"],["-123.7335788","39.1540297"],["-123.7338384","39.1539847"],["-123.7339678","39.153988"],["-123.734112","39.1540265"],["-123.7342133","39.1540858"],["-123.734282","39.1541666"],["-123.7343145","39.154254"],["-123.7343163","39.1543628"],["-123.7342918","39.1544377"],["-123.7342528","39.1544958"],["-123.7341193","39.1546565"],["-123.7340676","39.1547447"],["-123.7340498","39.1548285"],["-123.7340665","39.1549737"],["-123.7341198","39.1552063"],["-123.7341333","39.1554199"],["-123.7341337","39.1557492"],["-123.7341673","39.1559686"],["-123.7342188","39.1562595"],["-123.734218","39.1564572"],["-123.7341818","39.1565474"],["-123.7341054","39.1566286"],["-123.7338931","39.1567921"],["-123.7334853","39.1570921"],["-123.7333319","39.1572513"],["-123.7332606","39.157374"],["-123.7331548","39.1576107"],["-123.7330473","39.1579071"],["-123.7330227","39.1580558"],["-123.7330397","39.1582164"],["-123.7331307","39.1584338"],["-123.7334689","39.1590543"],["-123.7335109","39.1592076"],["-123.7335171","39.159278"],["-123.7334869","39.1594168"],["-123.7334241","39.1595299"],["-123.7333437","39.1596068"],["-123.7332559","39.1596618"],["-123.7331015","39.1597151"],["-123.732874","39.1597404"],["-123.732455","39.159723"],["-123.7323073","39.1597409"],["-123.7321997","39.1597828"],["-123.7321418","39.15983"],["-123.7321109","39.1598921"],["-123.7320995","39.1599922"],["-123.7321223","39.1600819"],["-123.7322043","39.1601854"],["-123.7323374","39.1603299"],["-123.7324119","39.1604354"],["-123.7325385","39.1606778"],["-123.7326656","39.1609692"],["-123.7328175","39.1614095"],["-123.7328832","39.1615449"],["-123.7329287","39.1616183"],["-123.7330493","39.1617456"],["-123.7331702","39.1618383"],["-123.7333035","39.1619115"],["-123.7335019","39.161986"],["-123.7340206","39.1621218"],["-123.7342434","39.1621956"],["-123.734587","39.1623394"],["-123.735411","39.1627341"],["-123.7372594","39.1636576"],["-123.7379554","39.1640373"],["-123.7384422","39.1642563"],["-123.7388921","39.1644699"],["-123.7395036","39.1648123"],["-123.7401533","39.1651582"],["-123.7406301","39.1654269"],["-123.740984","39.16567"],["-123.7413311","39.165919"],["-123.741545","39.1660907"],["-123.7417148","39.1662868"],["-123.7419919","39.166726"],["-123.7433081","39.1688788"],["-123.7435396","39.1691859"],["-123.7437443","39.169467"],["-123.7439672","39.1697814"],["-123.7442039","39.1701101"],["-123.7443335","39.1703516"],["-123.7444494","39.1705136"],["-123.7447026","39.1707997"],["-123.7448982","39.1710491"],["-123.7449788","39.1711839"],["-123.7450859","39.1714799"],["-123.7452288","39.1717935"],["-123.7453718","39.1720339"],["-123.7455129","39.1722073"],["-123.7456252","39.1723253"],["-123.7458085","39.1724905"],["-123.7459868","39.1726141"],["-123.7461418","39.1726909"],["-123.7464563","39.172815"],["-123.7465917","39.172888"],["-123.7468375","39.1731041"],["-123.7469683","39.1733015"],["-123.7473706","39.1739967"],["-123.7474915","39.174175"],["-123.747916","39.1746641"],["-123.7482978","39.1751028"],["-123.7485431","39.1754059"],["-123.7488023","39.1757061"],["-123.7497569","39.1768442"],["-123.7503574","39.1776536"],["-123.7515895","39.1795697"],["-123.7521262","39.1802231"],["-123.753006","39.1811698"],["-123.7534018","39.1816263"],["-123.7535704","39.1818638"],["-123.7541088","39.1828712"],["-123.7545545","39.1837599"],["-123.7548828","39.1845651"],["-123.7549502","39.1848743"],["-123.7549903","39.1851898"],["-123.7549909","39.1856567"],["-123.7549781","39.1863092"],["-123.754973","39.1869305"],["-123.7549619","39.1874715"],["-123.755003","39.1877293"],["-123.7551005","39.1880001"],["-123.7553216","39.1884347"],["-123.7562895","39.1901205"],["-123.7563547","39.1902876"],["-123.7563883","39.1904986"],["-123.7563893","39.1908996"],["-123.7563322","39.1912906"],["-123.7562603","39.1915368"],["-123.7561685","39.1917545"],["-123.7560908","39.1918773"],["-123.7559272","39.1920862"],["-123.7556497","39.1925539"],["-123.7552569","39.193214"],["-123.7548008","39.1939739"],["-123.754078","39.1950935"],["-123.753695","39.1955207"],["-123.7535526","39.1956279"],["-123.7533914","39.1957373"],["-123.7530965","39.1959026"],["-123.7528825","39.1960083"],["-123.752715","39.1960678"],["-123.7523973","39.1961474"],["-123.7521899","39.1961763"],["-123.7520265","39.19619"],["-123.7517885","39.1961924"],["-123.7513042","39.1961625"],["-123.7506385","39.196099"],["-123.7497613","39.1960039"],["-123.748911","39.1959476"],["-123.7485983","39.1959372"],["-123.7484638","39.1959463"],["-123.7483345","39.1959633"],["-123.7482202","39.195983"],["-123.7481116","39.1960216"],["-123.7479923","39.1960686"],["-123.747894","39.1961242"],["-123.7477943","39.196186"],["-123.7476986","39.1962629"],["-123.7475615","39.1964185"],["-123.7471756","39.1969059"],["-123.7467298","39.197451"],["-123.7466967","39.1975723"],["-123.7471362","39.1978149"],["-123.7474953","39.1979464"],["-123.747748","39.1980223"],["-123.7480613","39.1980875"],["-123.7483992","39.1981562"],["-123.7488043","39.1982596"],["-123.7495971","39.1985524"],["-123.7500693","39.1987045"],["-123.7517604","39.1990886"],["-123.7522119","39.1991567"],["-123.7526863","39.1991914"],["-123.7530802","39.1992055"],["-123.7533155","39.1991847"],["-123.7535015","39.199154"],["-123.7536876","39.1991024"],["-123.7539144","39.199012"],["-123.7542869","39.198844"],["-123.7545725","39.1987097"],["-123.7547477","39.1986174"],["-123.7549329","39.1985011"],["-123.7550385","39.1984479"],["-123.7552077","39.1983837"],["-123.7553889","39.1983406"],["-123.7555709","39.1983141"],["-123.755748","39.1982823"],["-123.7559322","39.1982279"],["-123.7560884","39.1981569"],["-123.7561963","39.1980931"],["-123.7562693","39.1980306"],["-123.7563664","39.1979336"],["-123.7564551","39.1977959"],["-123.7565516","39.1977071"],["-123.7567132","39.1975861"],["-123.7568429","39.1975077"],["-123.7569616","39.1974154"],["-123.757028","39.1973369"],["-123.7570787","39.197268"],["-123.7571338","39.1971611"],["-123.7571988","39.1970823"],["-123.7572467","39.1970428"],["-123.7572921","39.1970144"],["-123.7573744","39.1969692"],["-123.7574565","39.1969365"],["-123.7575492","39.1969049"],["-123.7578021","39.1968523"],["-123.7579252","39.1968143"],["-123.7580185","39.1967718"],["-123.7580945","39.1967179"],["-123.7582073","39.1966162"],["-123.7583296","39.1964988"],["-123.7584589","39.1963695"],["-123.7585082","39.1963445"],["-123.7585551","39.1963306"],["-123.7586277","39.1963275"],["-123.7587196","39.1963309"],["-123.758801","39.1963437"],["-123.7589146","39.1963748"],["-123.7592156","39.1965094"],["-123.7593411","39.1965534"],["-123.7594207","39.1965593"],["-123.7594819","39.1965482"],["-123.7595162","39.1965227"],["-123.759555","39.1964717"],["-123.7595763","39.1963895"],["-123.7595986","39.196278"],["-123.7595965","39.1961073"],["-123.7596405","39.1960102"],["-123.7597351","39.1959207"],["-123.7599718","39.1957368"],["-123.7601308","39.1956201"],["-123.7602173","39.1955828"],["-123.760327","39.1955526"],["-123.7605262","39.1955132"],["-123.7606209","39.1954728"],["-123.7606815","39.1954347"],["-123.7607353","39.1953696"],["-123.7607625","39.1952927"],["-123.7607723","39.1952431"],["-123.7607698","39.1951167"],["-123.7607983","39.1949948"],["-123.7608387","39.1949374"],["-123.7608926","39.1948927"],["-123.76097","39.1948453"],["-123.7611764","39.194775"],["-123.76146","39.1946802"],["-123.761704","39.1945868"],["-123.7619491","39.1944693"],["-123.7621376","39.1943553"],["-123.7624336","39.194156"],["-123.7628655","39.1938464"],["-123.7629785","39.1937801"],["-123.7630633","39.1937528"],["-123.7631601","39.1937438"],["-123.7632533","39.1937486"],["-123.7633284","39.1937637"],["-123.7634641","39.1938334"],["-123.7637455","39.1940623"],["-123.7645479","39.1948146"],["-123.7647481","39.1949836"],["-123.7648842","39.1950569"],["-123.7650427","39.1951231"],["-123.7652147","39.1951637"],["-123.7653777","39.1951863"],["-123.765726","39.1952102"],["-123.7659126","39.1952378"],["-123.7661027","39.1952992"],["-123.7662578","39.195367"],["-123.7664721","39.1954797"],["-123.766674","39.1955987"],["-123.766881","39.1957447"],["-123.7670517","39.1959146"],["-123.7672656","39.1962538"],["-123.7673655","39.1964725"],["-123.7674826","39.1967944"],["-123.7675085","39.1969583"],["-123.7675074","39.1971289"],["-123.7674751","39.1972682"],["-123.7673786","39.1974756"],["-123.7672835","39.1975962"],["-123.7670857","39.1977794"],["-123.7669271","39.1979612"],["-123.7668544","39.1980991"],["-123.7668318","39.1981968"],["-123.7668304","39.198328"],["-123.7668544","39.1984953"],["-123.7669544","39.1987996"],["-123.7671161","39.1991696"],["-123.7671691","39.1994303"],["-123.767202","39.199794"],["-123.7672609","39.1999905"],["-123.7673816","39.2001839"],["-123.7680281","39.2010366"],["-123.7686071","39.201803"],["-123.7687548","39.202009"],["-123.7688653","39.2021972"],["-123.768968","39.2024669"],["-123.7690248","39.2026654"],["-123.7690392","39.2028622"],["-123.7690359","39.2030174"],["-123.768991","39.2033754"],["-123.7689295","39.2036904"],["-123.7688749","39.2038449"],["-123.768726","39.204125"],["-123.7685592","39.2044395"],["-123.7683939","39.2048072"],["-123.7683247","39.2050627"],["-123.7683105","39.2052484"],["-123.7683326","39.2059925"],["-123.7684249","39.2075055"],["-123.7685169","39.2081894"],["-123.7685149","39.208496"],["-123.7684263","39.2095788"],["-123.7683346","39.2110557"],["-123.7682614","39.2119313"],["-123.7679386","39.2162697"],["-123.7678967","39.2169734"],["-123.7678826","39.2173375"],["-123.7678983","39.2175875"],["-123.7679443","39.2178376"],["-123.7680262","39.2180999"],["-123.7681364","39.2183592"],["-123.768251","39.2185473"],["-123.7685386","39.2189323"],["-123.7688764","39.219384"],["-123.7691669","39.219783"],["-123.7693305","39.2200525"],["-123.7694521","39.2202707"],["-123.769577","39.2205509"],["-123.7697201","39.2209521"],["-123.7698225","39.2212957"],["-123.7699051","39.2216802"],["-123.7699392","39.2220416"],["-123.7699421","39.2223996"],["-123.7699176","39.2228544"],["-123.7698424","39.2233106"],["-123.7695265","39.2246052"],["-123.7693543","39.2251363"],["-123.7687087","39.2276896"],["-123.768678","39.2279597"],["-123.7686915","39.2280233"],["-123.7687853","39.2282327"],["-123.7692543","39.228882"],["-123.7696325","39.2294093"],["-123.7698692","39.2297697"],["-123.7713094","39.2318938"],["-123.7713883","39.232037"],["-123.771403","39.2320937"],["-123.7713986","39.2321977"],["-123.77138","39.2322613"],["-123.7713426","39.2323276"],["-123.7712207","39.2324635"],["-123.7704751","39.23323"],["-123.7703737","39.2333719"],["-123.7703437","39.2334726"],["-123.7703493","39.2335841"],["-123.7704056","39.233751"],["-123.7716043","39.2366809"],["-123.7720648","39.2378985"],["-123.7721111","39.2380901"],["-123.7721098","39.23815"],["-123.772076","39.2382522"],["-123.7720058","39.2383458"],["-123.7719067","39.2384229"],["-123.7718386","39.2384603"],["-123.7716902","39.2385099"],["-123.7715317","39.2385296"],["-123.7713784","39.2385137"],["-123.7710188","39.2384341"],["-123.7707748","39.2383929"],["-123.7705429","39.2383801"],["-123.7698296","39.2383816"],["-123.7688369","39.2383918"],["-123.7685323","39.2384083"],["-123.7684313","39.2384437"],["-123.7683946","39.2384646"],["-123.7683421","39.2385277"],["-123.7683233","39.238582"],["-123.768334","39.2386614"],["-123.7683749","39.2387195"],["-123.7684302","39.2387596"],["-123.7687504","39.2388998"],["-123.7693814","39.2391358"],["-123.7698086","39.2392653"],["-123.7700241","39.2393666"],["-123.7703104","39.2395157"],["-123.7706695","39.2396916"],["-123.7713233","39.2399642"],["-123.7716625","39.2401619"],["-123.7720697","39.240431"],["-123.7723393","39.2405964"],["-123.7725546","39.2407171"],["-123.773127","39.2410566"],["-123.7733233","39.2411911"],["-123.7734767","39.2413222"],["-123.7735791","39.2414377"],["-123.7736859","39.2415988"],["-123.7737438","39.2417214"],["-123.7737541","39.2418178"],["-123.7737393","39.2419339"],["-123.773668","39.2422736"],["-123.7736621","39.2423867"],["-123.7736766","39.2424818"],["-123.7737274","39.242588"],["-123.773755","39.2426302"],["-123.7738633","39.2427285"],["-123.7739937","39.2428041"],["-123.7741098","39.2428394"],["-123.7743306","39.2428698"],["-123.7748499","39.2428924"],["-123.7750743","39.2428703"],["-123.7752451","39.242833"],["-123.7757592","39.2426094"],["-123.7759526","39.2425349"],["-123.7760587","39.2425189"],["-123.7761733","39.2425371"],["-123.7762178","39.2425558"],["-123.776282","39.2426125"],["-123.7763329","39.2426858"],["-123.7763623","39.2427582"],["-123.776375","39.2428795"],["-123.7763686","39.2430548"],["-123.7763289","39.2432966"],["-123.7762681","39.2435525"],["-123.7761854","39.2438562"],["-123.7760004","39.2443159"],["-123.7759632","39.2444844"],["-123.7759753","39.2448841"],["-123.7759742","39.2451977"],["-123.7759944","39.2453416"],["-123.776046","39.2454874"],["-123.7761299","39.2456161"],["-123.7764879","39.2460026"],["-123.7766591","39.2461309"],["-123.77702","39.2463272"],["-123.7771222","39.246392"],["-123.7772395","39.2465048"],["-123.777363","39.2466804"],["-123.7775824","39.2470737"],["-123.7776919","39.2472669"],["-123.777747","39.2473934"],["-123.777777","39.2475425"],["-123.7777707","39.2476459"],["-123.7777123","39.2477967"],["-123.7775984","39.2479906"],["-123.7775583","39.2480858"],["-123.7775468","39.2482275"],["-123.7775871","39.2487857"],["-123.7776236","39.2489821"],["-123.7777077","39.2491571"],["-123.7778039","39.2492936"],["-123.7779851","39.24951"],["-123.7782144","39.2497465"],["-123.7783984","39.249881"],["-123.7786559","39.2500169"],["-123.7794127","39.250354"],["-123.7795868","39.250468"],["-123.7796975","39.2505958"],["-123.7797547","39.2506798"],["-123.7798562","39.2508713"],["-123.7799439","39.2511004"],["-123.7800573","39.2517017"],["-123.7802004","39.2528794"],["-123.7802664","39.2533268"],["-123.7803441","39.2535724"],["-123.7804362","39.2537904"],["-123.7806366","39.2541399"],["-123.7811773","39.2549438"],["-123.7814754","39.255415"],["-123.7816214","39.2557196"],["-123.7816969","39.2559741"],["-123.7819228","39.2569563"],["-123.7820956","39.2576708"],["-123.7822926","39.258403"],["-123.7824114","39.2587195"],["-123.7825793","39.2590284"],["-123.782736","39.2592745"],["-123.7829907","39.2596129"],["-123.7831708","39.2598055"],["-123.7835124","39.2600933"],["-123.783682","39.2602596"],["-123.7838341","39.2604434"],["-123.7839243","39.2605949"],["-123.7840049","39.260791"],["-123.7851799","39.2653474"],["-123.7852493","39.2655577"],["-123.7857728","39.2667466"],["-123.7859496","39.2671075"],["-123.7861507","39.2674921"],["-123.7864313","39.2679623"],["-123.7866391","39.2682652"],["-123.7880936","39.2702585"],["-123.7883237","39.2705314"],["-123.7885195","39.2707264"],["-123.7887624","39.2709289"],["-123.7889795","39.271095"],["-123.7894916","39.2713902"],["-123.7896736","39.2714966"],["-123.7899269","39.2716425"],["-123.790116","39.2717772"],["-123.7901772","39.2718364"],["-123.7902371","39.271924"],["-123.7902975","39.2720587"],["-123.7903292","39.272206"],["-123.7903249","39.2723613"],["-123.7902909","39.2724754"],["-123.7902175","39.2726761"],["-123.7901926","39.2728126"],["-123.7902073","39.2731403"],["-123.7902576","39.2734346"],["-123.7902971","39.2735867"],["-123.7903843","39.2737923"],["-123.7904345","39.2738847"],["-123.790599","39.2740945"],["-123.7906608","39.2741551"],["-123.7908057","39.2742502"],["-123.7909188","39.2742945"],["-123.791073","39.2743253"],["-123.7911906","39.274333"],["-123.7913605","39.2743157"],["-123.7914811","39.2742804"],["-123.7917239","39.2741653"],["-123.7918745","39.2741154"],["-123.7920153","39.2740947"],["-123.7921401","39.2741067"],["-123.7922853","39.2741581"],["-123.7924429","39.2742615"],["-123.7925014","39.2743318"],["-123.7925266","39.2743914"],["-123.7925417","39.2745049"],["-123.79253","39.2745974"],["-123.7924967","39.2746736"],["-123.7924355","39.2747477"],["-123.7923042","39.2748499"],["-123.7919801","39.2750529"],["-123.7918704","39.2751289"],["-123.7917327","39.2752625"],["-123.791656","39.2753803"],["-123.7916088","39.2755068"],["-123.7915848","39.2757046"],["-123.7916241","39.2801719"],["-123.7916485","39.2804898"],["-123.791706","39.2808066"],["-123.7918155","39.2811785"],["-123.7921651","39.2820481"],["-123.7943768","39.2873025"],["-123.7945458","39.2877853"],["-123.7946135","39.2881259"],["-123.794641","39.2889405"],["-123.7946307","39.2891417"],["-123.7946089","39.2893006"],["-123.7944385","39.2900089"],["-123.7941417","39.2910611"],["-123.7939998","39.2916509"],["-123.7939699","39.2920322"],["-123.7939793","39.2923294"],["-123.7940256","39.2926293"],["-123.794078","39.2928557"],["-123.7941766","39.2931423"],["-123.7943372","39.2934957"],["-123.7946596","39.2941149"],["-123.7952373","39.2952136"],["-123.7955727","39.29589"],["-123.7956985","39.296198"],["-123.795765","39.2964447"],["-123.7957936","39.2966226"],["-123.7958115","39.2969228"],["-123.7957975","39.2972014"],["-123.7957394","39.2975299"],["-123.7956692","39.2977692"],["-123.7955635","39.2980271"],["-123.7954375","39.2982694"],["-123.7952941","39.2985016"],["-123.7951905","39.2986428"],["-123.7948571","39.2989955"],["-123.7943971","39.2994172"],["-123.7939885","39.2997409"],["-123.7936405","39.3000208"],["-123.7933885","39.3002339"],["-123.7931929","39.3004245"],["-123.7929091","39.300717"],["-123.7926572","39.3009816"],["-123.7924964","39.3011586"],["-123.792412","39.301259"],["-123.7923313","39.3013689"],["-123.7922558","39.3014842"],["-123.7921936","39.3015913"],["-123.7921359","39.3017019"],["-123.7920861","39.3018072"],["-123.7920418","39.3019167"],["-123.7920063","39.3020304"],["-123.7919723","39.3021513"],["-123.791946","39.3022671"],["-123.791925","39.3023812"],["-123.7919103","39.3024864"],["-123.7918739","39.3028291"],["-123.791862","39.3030453"],["-123.7918619","39.3031538"],["-123.7918649","39.303281"],["-123.7918818","39.3035494"],["-123.7919002","39.303694"],["-123.7919231","39.3038317"],["-123.7919519","39.3039543"],["-123.7919897","39.3040833"],["-123.7920343","39.3042136"],["-123.7920897","39.3043541"],["-123.7921508","39.3044953"],["-123.7922255","39.304655"],["-123.7923023","39.3048115"],["-123.7924634","39.3051313"],["-123.7925268","39.3053947"],["-123.7926228","39.3055526"],["-123.7927548","39.3057567"],["-123.7929831","39.3060835"],["-123.7937907","39.3070496"],["-123.7942047","39.3075334"],["-123.7947138","39.3081412"],["-123.7953817","39.3089199"],["-123.7958536","39.3094592"],["-123.7961152","39.3097695"],["-123.7963977","39.3101117"],["-123.7966462","39.310463"],["-123.7968643","39.3107956"],["-123.7970615","39.3111832"],["-123.7972091","39.3115476"],["-123.7973354","39.3118953"],["-123.7974828","39.3122979"],["-123.7976856","39.3129003"],["-123.7978692","39.3133778"],["-123.7982518","39.3147668"],["-123.7983618","39.3151339"],["-123.7984162","39.3154597"],["-123.7986555","39.3164255"],["-123.7988603","39.3170881"],["-123.7991562","39.3178874"],["-123.7992557","39.3181102"],["-123.7993256","39.3182324"],["-123.7994548","39.3184818"],["-123.7996452","39.3188281"],["-123.7998562","39.3191922"],["-123.8000218","39.3194785"],["-123.8003124","39.3200373"],["-123.8004578","39.3203696"],["-123.8011074","39.3216028"],["-123.8013118","39.3219961"],["-123.801716","39.3227633"],["-123.8021971","39.3236823"],["-123.8026216","39.3244653"],["-123.8028014","39.3248041"],["-123.8035795","39.3262446"],["-123.8037291","39.3265364"],["-123.8038998","39.3268784"],["-123.8040889","39.3273527"],["-123.8042368","39.3277988"],["-123.8043138","39.3281584"],["-123.8044907","39.3288679"],["-123.8046907","39.3296211"],["-123.8049534","39.3306197"],["-123.805141","39.3313728"],["-123.8052713","39.3319255"],["-123.8054906","39.3328132"],["-123.80584","39.3340783"],["-123.8063424","39.3357572"],["-123.8066899","39.3370548"],["-123.8068513","39.3376171"],["-123.8070651","39.3383579"],["-123.8073998","39.3395406"],["-123.8076211","39.3403692"],["-123.8079339","39.3415058"],["-123.8081559","39.3422195"],["-123.8083006","39.34269"],["-123.8083468","39.3428824"],["-123.8084028","39.3432227"],["-123.8084993","39.3438348"],["-123.8085986","39.344676"],["-123.8086396","39.3455431"],["-123.8086459","39.3474984"],["-123.8085839","39.3547134"],["-123.8085758","39.3562226"],["-123.8086904","39.3571246"],["-123.8086793","39.3573463"],["-123.808634","39.3575086"],["-123.8085586","39.3577345"],["-123.8085312","39.3579031"],["-123.8085247","39.3583411"],["-123.8085301","39.3585653"],["-123.808525","39.3588144"],["-123.8085193","39.3595381"],["-123.8085095","39.3599336"],["-123.8085045","39.3603321"],["-123.808427","39.3611869"],["-123.808417","39.3615646"],["-123.8084167","39.3618752"],["-123.8084391","39.3620926"],["-123.808493","39.3624415"],["-123.8085686","39.3627965"],["-123.808645","39.3630528"],["-123.8087314","39.3633068"],["-123.8089019","39.3637194"],["-123.8091316","39.3642123"],["-123.8096535","39.3649648"],["-123.8101694","39.3655724"],["-123.8143459","39.3710807"],["-123.8149206","39.3718559"],["-123.815256","39.372347"],["-123.8154817","39.3727354"],["-123.815604","39.3729842"],["-123.8157792","39.3734522"],["-123.8161251","39.3744622"],["-123.8161493","39.3746639"],["-123.8162428","39.3752733"],["-123.8162411","39.3758258"],["-123.8162144","39.3761363"],["-123.8161914","39.3763683"],["-123.8161258","39.3767731"],["-123.8159893","39.3773966"],["-123.8135155","39.3844865"],["-123.8128882","39.3863489"],["-123.8117081","39.389762"],["-123.8113514","39.3908982"],["-123.811257","39.3912526"],["-123.8111446","39.3915822"],["-123.810443","39.3934856"],["-123.8099795","39.3948782"],["-123.8098867","39.3954199"],["-123.809621","39.3964934"],["-123.8095046","39.3969977"],["-123.8094194","39.3974788"],["-123.809356","39.3983657"],["-123.8092715","39.3995568"],["-123.8092115","39.4005338"],["-123.8090255","39.4035643"],["-123.8089854","39.4041207"],["-123.8089272","39.4048888"],["-123.8089066","39.4051965"],["-123.8088823","39.4055617"],["-123.8088786","39.4057629"],["-123.808867","39.4060941"],["-123.8088232","39.4068059"],["-123.808782","39.4075481"],["-123.8087367","39.4085623"],["-123.8087101","39.4089637"],["-123.8086826","39.4093732"],["-123.8086399","39.4101551"],["-123.808572","39.4110401"],["-123.8085064","39.4114427"],["-123.8084405","39.411794"],["-123.8082829","39.412146"],["-123.8082053","39.4121849"],["-123.8081435","39.412221"],["-123.8081012","39.4122693"],["-123.8080792","39.4123255"],["-123.8080811","39.4123849"],["-123.8081005","39.4124323"],["-123.8081417","39.4125268"],["-123.8083213","39.4129665"],["-123.8083235","39.4135015"],["-123.8081552","39.4160687"],["-123.8081032","39.4170507"],["-123.808024","39.418041"],["-123.8079904","39.418436"],["-123.8079913","39.4188204"],["-123.8079944","39.4191906"],["-123.8079868","39.419432"],["-123.8079738","39.4195297"],["-123.8079718","39.4195894"],["-123.8079703","39.4196818"],["-123.8079667","39.4197696"],["-123.8079585","39.4199418"],["-123.8078887","39.4208466"],["-123.8078433","39.4213678"],["-123.8077452","39.422249"],["-123.8077022","39.4226245"],["-123.8075123","39.4236443"],["-123.807448","39.4239803"],["-123.8073745","39.4244343"],["-123.807242","39.4251633"],["-123.8071917","39.4255001"],["-123.8066318","39.4288064"],["-123.8065874","39.4292219"],["-123.806547","39.4294795"],["-123.8064647","39.4299848"],["-123.8064212","39.4302454"],["-123.8063904","39.4304897"],["-123.8063244","39.4313013"],["-123.8062923","39.4318641"],["-123.8062041","39.4330578"],["-123.8061856","39.4333472"],["-123.8061609","39.4338263"],["-123.8059277","39.4417169"],["-123.8059478","39.4421726"],["-123.8059566","39.4429491"],["-123.8059661","39.4437945"],["-123.8059686","39.4439449"],["-123.8059577","39.4446394"],["-123.8059407","39.4450443"],["-123.8059261","39.445447"],["-123.8059125","39.4461734"],["-123.8059133","39.4462863"],["-123.8059103","39.4470842"],["-123.8059098","39.4473766"],["-123.8058838","39.4508924"],["-123.8058857","39.4510663"],["-123.8058871","39.4513798"],["-123.8058901","39.4515342"],["-123.8058987","39.4519065"],["-123.8059004","39.4522353"],["-123.8058801","39.452554"],["-123.8058179","39.4532302"],["-123.8057779","39.4535173"],["-123.8057479","39.4537493"],["-123.8056928","39.4542032"],["-123.8055691","39.4549096"],["-123.8055501","39.4550778"],["-123.8055457","39.4553193"],["-123.8055575","39.4555014"],["-123.8055831","39.4556291"],["-123.8056938","39.4560223"],["-123.8059048","39.4565861"],["-123.8061327","39.4572498"],["-123.8062945","39.4578429"],["-123.8064562","39.4585892"],["-123.8065032","39.4589102"],["-123.8065281","39.4591451"],["-123.8065352","39.4593531"],["-123.8065291","39.4596073"],["-123.8065078","39.4598115"],["-123.8064705","39.460087"],["-123.806426","39.4603533"],["-123.8063028","39.4609181"],["-123.8060168","39.4623526"],["-123.8059551","39.4625675"],["-123.8058713","39.4628284"],["-123.80576","39.4631357"],["-123.8055955","39.4635494"],["-123.8050837","39.4648296"],["-123.8048254","39.4653622"],["-123.804526","39.4659021"],["-123.8036842","39.4673261"],["-123.8032627","39.4680651"],["-123.8031111","39.4682987"],["-123.8030031","39.4684101"],["-123.8028158","39.4685493"],["-123.8019474","39.469107"],["-123.8016942","39.4692467"],["-123.8014846","39.4693336"],["-123.8012777","39.4694077"],["-123.7998564","39.4699454"],["-123.7995613","39.4700876"],["-123.7992024","39.4703012"],["-123.7988543","39.4705686"],["-123.7986322","39.4707633"],["-123.7984329","39.4709719"],["-123.7983113","39.471131"],["-123.7981913","39.4713333"],["-123.7980993","39.4715198"],["-123.7979621","39.471808"],["-123.7979017","39.4719862"],["-123.7978297","39.4723223"],["-123.7977712","39.4730475"],["-123.7977335","39.4753989"],["-123.7977784","39.4758056"],["-123.7978464","39.4762124"],["-123.7979217","39.4766997"],["-123.7979228","39.4769685"],["-123.7978838","39.4772192"],["-123.7978277","39.4773709"],["-123.7975951","39.4777956"],["-123.7970265","39.4786514"],["-123.7966203","39.4791352"],["-123.795984","39.4798374"],["-123.7952456","39.4806396"],["-123.7937768","39.4821718"],["-123.7932605","39.482685"],["-123.792824","39.4830449"],["-123.7922853","39.4834672"],["-123.7916843","39.4839232"],["-123.7913087","39.4841962"],["-123.7907472","39.484606"],["-123.7901918","39.4850132"],["-123.7886547","39.4861668"],["-123.7884107","39.4863914"],["-123.788154","39.4866498"],["-123.7879401","39.4868895"],["-123.7876991","39.4872342"],["-123.7873405","39.4878739"],["-123.7870836","39.4883408"],["-123.7868538","39.4887638"],["-123.7866928","39.4890207"],["-123.7863565","39.4894677"],["-123.7861507","39.4897068"],["-123.7858898","39.4899837"],["-123.7854336","39.4904024"],["-123.7851847","39.4905989"],["-123.7849234","39.4907994"],["-123.784289","39.4912201"],["-123.7831395","39.4919829"],["-123.7826144","39.4923814"],["-123.7817531","39.4930095"],["-123.7813953","39.4932983"],["-123.7812776","39.4934285"],["-123.7811533","39.4936386"],["-123.7810881","39.4938199"],["-123.7809909","39.4942148"],["-123.780902","39.4947775"],["-123.7808437","39.4951116"],["-123.7804033","39.4963612"],["-123.7801884","39.4968107"],["-123.7799624","39.4972518"],["-123.7797718","39.4975383"],["-123.7790217","39.4983605"],["-123.7788187","39.4985033"],["-123.7786532","39.4985542"],["-123.778374","39.4985797"],["-123.7756073","39.4985188"],["-123.7753174","39.4985195"],["-123.775108","39.4985455"],["-123.7748336","39.4986235"],["-123.7746338","39.4987155"],["-123.7745155","39.4987841"],["-123.7743369","39.4989293"],["-123.7742406","39.4990311"],["-123.7741384","39.4991648"],["-123.7740862","39.4992665"],["-123.7740412","39.4994258"],["-123.774013","39.499624"],["-123.7740225","39.499866"],["-123.7740266","39.4999604"],["-123.7740305","39.5000932"],["-123.7740126","39.5002546"],["-123.773948","39.5003696"],["-123.7730998","39.5014257"],["-123.7728731","39.5016868"],["-123.7727084","39.5018584"],["-123.7724821","39.5020398"],["-123.7720769","39.5023156"],["-123.7718616","39.502489"],["-123.7715275","39.5028072"],["-123.7710985","39.5032451"],["-123.7709334","39.5033948"],["-123.7705985","39.5036151"],["-123.7685256","39.5049159"],["-123.767843","39.5053679"],["-123.7675703","39.5055901"],["-123.7667785","39.5063562"],["-123.7661595","39.5069898"],["-123.7659553","39.5072363"],["-123.7658449","39.5074735"],["-123.7657226","39.5078978"],["-123.7656","39.5082995"],["-123.765492","39.5085498"],["-123.7653587","39.5087518"],["-123.7652333","39.5089006"],["-123.7648632","39.5092347"],["-123.7648183","39.5092921"],["-123.7647575","39.5093911"],["-123.7647186","39.5095041"],["-123.7646848","39.5097201"],["-123.7646487","39.5106147"],["-123.7646148","39.5110264"],["-123.7645774","39.5112951"],["-123.7644797","39.5116947"],["-123.7642248","39.5125058"],["-123.7639123","39.5134543"],["-123.7636478","39.5142829"],["-123.7633635","39.5152155"],["-123.7630524","39.516173"],["-123.7629864","39.5164149"],["-123.7628949","39.5167467"],["-123.7623725","39.5184108"],["-123.7614945","39.5213485"],["-123.7613205","39.5219278"],["-123.7610683","39.5224909"],["-123.7610001","39.5226664"],["-123.7609859","39.5227927"],["-123.7609915","39.5230087"],["-123.7610449","39.5235528"],["-123.7610298","39.5238798"],["-123.7609444","39.5242586"],["-123.7608304","39.5246351"],["-123.7607376","39.5249099"],["-123.7606128","39.5252229"],["-123.7599262","39.5267957"],["-123.759736","39.5271644"],["-123.7595521","39.5273885"],["-123.7594078","39.527577"],["-123.7592305","39.5278552"],["-123.7591705","39.5279787"],["-123.7591243","39.528162"],["-123.7591088","39.528284"],["-123.7591098","39.5284903"],["-123.7592097","39.5291463"],["-123.7589225","39.5323361"],["-123.758896","39.5324494"],["-123.7588332","39.5325597"],["-123.7586987","39.5327024"],["-123.7584369","39.5328942"],["-123.7580927","39.5331251"],["-123.7576976","39.5333874"],["-123.7569332","39.5338842"],["-123.7567364","39.5340468"],["-123.7565543","39.5342461"],["-123.7564681","39.5343807"],["-123.7564082","39.5345242"],["-123.7562714","39.5350294"],["-123.7561797","39.535482"],["-123.7559238","39.5370467"],["-123.7558636","39.5375697"],["-123.7558355","39.5380847"],["-123.7558486","39.5384798"],["-123.7559055","39.5389262"],["-123.7559933","39.539348"],["-123.756148","39.5399261"],["-123.7562934","39.5404072"],["-123.756373","39.5406122"],["-123.7567051","39.5412722"],["-123.7570377","39.541826"],["-123.7574371","39.5423704"],["-123.7578557","39.5428255"],["-123.7582975","39.5432824"],["-123.7586747","39.5436311"],["-123.7589693","39.5438647"],["-123.7593211","39.5441207"],["-123.759584","39.5443473"],["-123.7613833","39.5458071"],["-123.7618823","39.5463309"],["-123.7621779","39.5468624"],["-123.7623471","39.5474431"],["-123.7624632","39.5488147"],["-123.7625127","39.5494342"],["-123.7625267","39.549749"],["-123.762614","39.5502507"],["-123.7626798","39.5505737"],["-123.7627541","39.5508527"],["-123.7628884","39.5512951"],["-123.7630411","39.5518141"],["-123.7631667","39.5522306"],["-123.7632648","39.5525439"],["-123.7633039","39.5527374"],["-123.7633336","39.5530526"],["-123.7633248","39.5543649"],["-123.76332","39.5555213"],["-123.7633002","39.5565078"],["-123.7632792","39.5568828"],["-123.7632982","39.5570922"],["-123.7633405","39.5572119"],["-123.7633985","39.5572921"],["-123.7634787","39.5573661"],["-123.7636259","39.557465"],["-123.763785","39.5575386"],["-123.7639485","39.5575929"],["-123.7640368","39.5576088"],["-123.7641917","39.5576149"],["-123.7645991","39.5575839"],["-123.7648497","39.5575932"],["-123.7653173","39.5576429"],["-123.7655316","39.5576841"],["-123.7656442","39.5577235"],["-123.7656927","39.5577587"],["-123.765716","39.5577973"],["-123.7657338","39.5579108"],["-123.7657099","39.5580156"],["-123.7655192","39.5584948"],["-123.7653071","39.5590279"],["-123.7651914","39.5594668"],["-123.7651244","39.5597789"],["-123.7651203","39.5598865"],["-123.7651664","39.5600612"],["-123.7654195","39.5605741"],["-123.7656225","39.5609844"],["-123.7657916","39.561346"],["-123.7659398","39.5617149"],["-123.7660119","39.5619681"],["-123.7661158","39.5625842"],["-123.7662498","39.5635348"],["-123.766315","39.5638685"],["-123.7664728","39.5642992"],["-123.7665413","39.5645089"],["-123.7665683","39.5647038"],["-123.7665584","39.5648238"],["-123.766513","39.5649351"],["-123.7663803","39.5651194"],["-123.765898","39.5656319"],["-123.7657062","39.5658591"],["-123.7656141","39.5659998"],["-123.7655697","39.5661144"],["-123.7655458","39.5663159"],["-123.765566","39.5667346"],["-123.765576","39.5671536"],["-123.7655987","39.5672527"],["-123.765633","39.5673225"],["-123.7657158","39.5674074"],["-123.7658321","39.5674809"],["-123.7660154","39.5673813"],["-123.7662381","39.5672476"],["-123.7663464","39.5671461"],["-123.7664241","39.5670375"],["-123.7665298","39.5668115"],["-123.7666599","39.5665397"],["-123.7667425","39.5664519"],["-123.7668449","39.5664037"],["-123.7671192","39.5663375"],["-123.7677344","39.5662148"],["-123.7679615","39.5661832"],["-123.7682548","39.5661821"],["-123.768494","39.5662195"],["-123.768774","39.5662935"],["-123.7688697","39.5663373"],["-123.76903","39.5664439"],["-123.7694461","39.5667931"],["-123.7698492","39.5673439"],["-123.7713089","39.5698378"],["-123.7716629","39.5705104"],["-123.7717756","39.5709651"],["-123.7719676","39.5721086"],["-123.7724474","39.5747073"],["-123.772566","39.5753465"],["-123.7726654","39.5758971"],["-123.7729616","39.5775111"],["-123.7730027","39.5778291"],["-123.772994","39.5779536"],["-123.772945","39.5780914"],["-123.7728275","39.5782633"],["-123.7722337","39.5789936"],["-123.772121","39.579167"],["-123.7720642","39.5793378"],["-123.7720219","39.5796891"],["-123.7719857","39.5808821"],["-123.7719621","39.5822197"],["-123.7720086","39.584329"],["-123.7720414","39.5849345"],["-123.7720626","39.5850696"],["-123.7721168","39.5852143"],["-123.7722033","39.5853567"],["-123.7723935","39.5855977"],["-123.7729765","39.5862632"],["-123.7732329","39.5864754"],["-123.7742284","39.5871307"],["-123.7750775","39.5876907"],["-123.7757138","39.5881228"],["-123.7761703","39.58846"],["-123.7766385","39.5888377"],["-123.7770827","39.5892171"],["-123.7774888","39.5896213"],["-123.77859","39.5907999"],["-123.7789919","39.5912349"],["-123.7792002","39.5914537"],["-123.7800274","39.5923389"],["-123.7805135","39.5929071"],["-123.7810894","39.5936365"],["-123.7817197","39.5945302"],["-123.7818997","39.5948102"],["-123.7820551","39.5951301"],["-123.7822452","39.5955256"],["-123.7824404","39.5958378"],["-123.7829342","39.5965797"],["-123.7832958","39.5971641"],["-123.783558","39.5976247"],["-123.7837871","39.5980421"],["-123.7845506","39.599412"],["-123.7850651","39.6003313"],["-123.7854974","39.6010679"],["-123.785565","39.6012147"],["-123.7856043","39.6013853"],["-123.785614","39.6015384"],["-123.7855757","39.6018111"],["-123.7854793","39.6022607"],["-123.785332","39.6028751"],["-123.7851808","39.6034528"],["-123.7850811","39.6037166"],["-123.7848438","39.6042698"],["-123.7846942","39.604733"],["-123.7844419","39.6055125"],["-123.7842055","39.6061993"],["-123.7838643","39.6069005"],["-123.7837368","39.6070983"],["-123.7836529","39.6071726"],["-123.7835129","39.6072409"],["-123.7830887","39.6073445"],["-123.7829589","39.6073936"],["-123.7828575","39.6074572"],["-123.7827591","39.6075507"],["-123.7826768","39.6076657"],["-123.7825984","39.6078347"],["-123.7825737","39.6079576"],["-123.7825806","39.6081013"],["-123.7826221","39.6082677"],["-123.7827133","39.6084502"],["-123.7827919","39.6086361"],["-123.7828182","39.6087808"],["-123.7828077","39.6089068"],["-123.7827515","39.6090648"],["-123.78251","39.6094575"],["-123.7824659","39.609589"],["-123.7824485","39.6097368"],["-123.7824638","39.6099102"],["-123.7825035","39.6101631"],["-123.7825314","39.6104507"],["-123.7825177","39.6107374"],["-123.782452","39.6110226"],["-123.7821934","39.6116542"],["-123.7821568","39.6118788"],["-123.7821592","39.6122852"],["-123.782146","39.6124715"],["-123.7821054","39.6125628"],["-123.7820216","39.6126366"],["-123.7819326","39.6126791"],["-123.7818221","39.612703"],["-123.7814736","39.6127218"],["-123.7811196","39.6126949"],["-123.7808816","39.6126524"],["-123.7805244","39.6125751"],["-123.7802508","39.6125212"],["-123.7801022","39.61252"],["-123.7799104","39.6125502"],["-123.779759","39.6125427"],["-123.7795929","39.6125294"],["-123.7792179","39.6124487"],["-123.778918","39.6123488"],["-123.7786501","39.6122968"],["-123.7784833","39.6122843"],["-123.7783429","39.6122916"],["-123.7782293","39.6123187"],["-123.7781419","39.6123707"],["-123.7780792","39.6124274"],["-123.7780573","39.6124729"],["-123.7780449","39.6125441"],["-123.7780686","39.612626"],["-123.7781208","39.612697"],["-123.7782453","39.6127824"],["-123.7785153","39.6128693"],["-123.7792621","39.613046"],["-123.7796719","39.6131518"],["-123.779895","39.6132298"],["-123.7800908","39.6133279"],["-123.7805252","39.6135756"],["-123.7808846","39.6137499"],["-123.7812536","39.6138965"],["-123.7814198","39.6139733"],["-123.7815639","39.6140736"],["-123.7817168","39.6142344"],["-123.7817448","39.614318"],["-123.7817782","39.6144409"],["-123.7817849","39.6146046"],["-123.7817493","39.6147772"],["-123.7816781","39.6149246"],["-123.7814053","39.6153133"],["-123.7811955","39.6155776"],["-123.7808868","39.6158653"],["-123.7808358","39.61593"],["-123.7808133","39.6159854"],["-123.7808116","39.6160201"],["-123.780826","39.6160577"],["-123.7808559","39.616089"],["-123.7808954","39.6161078"],["-123.7809738","39.616119"],["-123.7810394","39.6161099"],["-123.7811525","39.6160761"],["-123.7813849","39.6159888"],["-123.7814735","39.6159609"],["-123.7815387","39.6159573"],["-123.7815953","39.6159625"],["-123.7816473","39.6159767"],["-123.7816961","39.6160011"],["-123.7817389","39.61604"],["-123.7817754","39.6160872"],["-123.7818012","39.6161374"],["-123.7818112","39.6162098"],["-123.7818035","39.6162814"],["-123.781725","39.6167255"],["-123.7817231","39.6169841"],["-123.7817537","39.6172406"],["-123.78184","39.6176252"],["-123.7818867","39.6180705"],["-123.7818405","39.6183758"],["-123.7817267","39.6188619"],["-123.7814401","39.6199937"],["-123.7810547","39.6220879"],["-123.7810504","39.6221958"],["-123.7810937","39.6222798"],["-123.781207","39.6223894"],["-123.781464","39.6225452"],["-123.7815896","39.6226351"],["-123.7816394","39.6226924"],["-123.7817413","39.6229323"],["-123.7819147","39.6236372"],["-123.7820337","39.6241647"],["-123.7821362","39.6245052"],["-123.7822341","39.6246818"],["-123.7823077","39.6247713"],["-123.7824333","39.6249081"],["-123.7825848","39.6250812"],["-123.7826467","39.6252028"],["-123.7826933","39.6255321"],["-123.78276","39.6258379"],["-123.7827522","39.625913"],["-123.7827135","39.6259671"],["-123.7826713","39.6259942"],["-123.7825492","39.626048"],["-123.7824488","39.6261131"],["-123.7823544","39.6262114"],["-123.7823143","39.626312"],["-123.782317","39.6264337"],["-123.7823803","39.6266536"],["-123.782405","39.6267834"],["-123.7824046","39.6269742"],["-123.7824219","39.6271567"],["-123.7825043","39.6274859"],["-123.7825099","39.6277106"],["-123.7824763","39.6280812"],["-123.7824987","39.6284239"],["-123.7824888","39.6285731"],["-123.7824301","39.6288195"],["-123.782411","39.6289833"],["-123.7824225","39.6293791"],["-123.7824114","39.6296089"],["-123.7823661","39.629865"],["-123.7823419","39.6300661"],["-123.7823583","39.630213"],["-123.7824232","39.6304478"],["-123.7824761","39.6306689"],["-123.7824871","39.6309039"],["-123.7824536","39.6313298"],["-123.7824774","39.6322815"],["-123.7825566","39.6330127"],["-123.7829172","39.6354408"],["-123.7829649","39.6355501"],["-123.7830325","39.6356147"],["-123.7831242","39.6356639"],["-123.7832868","39.6357121"],["-123.7835279","39.6357328"],["-123.7846621","39.6357391"],["-123.7848324","39.6357867"],["-123.7849106","39.6359545"],["-123.7848927","39.6393287"],["-123.7848777","39.6400788"],["-123.7848572","39.6404248"],["-123.7847951","39.6406834"],["-123.7844497","39.6417762"],["-123.7843232","39.6422778"],["-123.7842804","39.6425705"],["-123.7842317","39.6432161"],["-123.7842027","39.6434498"],["-123.784127","39.6437117"],["-123.7840511","39.6438988"],["-123.7840051","39.6440582"],["-123.7839996","39.6441647"],["-123.7840219","39.6442867"],["-123.7840821","39.6444144"],["-123.7842019","39.644607"],["-123.784352","39.6448607"],["-123.7843923","39.6449488"],["-123.7844413","39.6451212"],["-123.7846351","39.6460326"],["-123.7846616","39.6462797"],["-123.7846455","39.6464426"],["-123.7845969","39.6466774"],["-123.784519","39.6468579"],["-123.7844684","39.6469522"],["-123.7843858","39.6470714"],["-123.7842385","39.6472477"],["-123.7840742","39.6474053"],["-123.7838844","39.6475643"],["-123.7837785","39.6476368"],["-123.7836369","39.6477128"],["-123.7834898","39.6477864"],["-123.7832607","39.6478844"],["-123.7830866","39.6479283"],["-123.781784","39.6479425"],["-123.7814284","39.6479636"],["-123.781212","39.6480112"],["-123.7810876","39.6480525"],["-123.7808212","39.648173"],["-123.7803018","39.648445"],["-123.7801825","39.6485305"],["-123.7801554","39.6485729"],["-123.7801301","39.6486176"],["-123.780102","39.648669"],["-123.7799939","39.6489652"],["-123.7799425","39.6491797"],["-123.7799419","39.6493143"],["-123.7799803","39.6494551"],["-123.7800434","39.6495512"],["-123.7800952","39.6496005"],["-123.780201","39.6496668"],["-123.7804162","39.6497447"],["-123.7807304","39.6498348"],["-123.7809179","39.6499046"],["-123.7810375","39.6499749"],["-123.7811336","39.6500732"],["-123.7812178","39.6502255"],["-123.7814018","39.6507292"],["-123.7814921","39.6509463"],["-123.7816751","39.6512462"],["-123.7817869","39.6513901"],["-123.7819176","39.6515145"],["-123.7821066","39.6516382"],["-123.7827371","39.6519691"],["-123.7830315","39.6521347"],["-123.7831912","39.6522191"],["-123.7834267","39.6523053"],["-123.7837914","39.6524624"],["-123.783919","39.6525344"],["-123.784077","39.6526573"],["-123.784158","39.6527414"],["-123.7842578","39.6528816"],["-123.7843523","39.6530503"],["-123.7844514","39.6532862"],["-123.7844918","39.653423"],["-123.7845225","39.6538334"],["-123.7845059","39.6551292"],["-123.7845025","39.6558508"],["-123.7845292","39.656202"],["-123.7846376","39.6568634"],["-123.7853655","39.660332"],["-123.7854136","39.6604837"],["-123.7856009","39.6609452"],["-123.7857189","39.6611859"],["-123.7858377","39.6613747"],["-123.7860946","39.6618064"],["-123.7871673","39.6636632"],["-123.7887784","39.6664384"],["-123.7899738","39.6684962"],["-123.7901491","39.6688448"],["-123.7903423","39.6692883"],["-123.7905154","39.6697296"],["-123.7906482","39.670165"],["-123.7907124","39.6704833"],["-123.7907925","39.6710045"],["-123.7908295","39.671401"],["-123.7908309","39.6717975"],["-123.7908245","39.6721972"],["-123.7908022","39.6724545"],["-123.7906922","39.6730434"],["-123.7900508","39.6756587"],["-123.7899366","39.6762646"],["-123.7898775","39.6767623"],["-123.7898594","39.6775984"],["-123.7898917","39.6780339"],["-123.7899649","39.678516"],["-123.7901182","39.679119"],["-123.7921441","39.6863052"],["-123.7926665","39.6881493"],["-123.7928614","39.6887965"],["-123.7930494","39.6892553"],["-123.7932343","39.6896154"],["-123.7935486","39.6901362"],["-123.7938497","39.6905531"],["-123.7942211","39.6910104"],["-123.7945894","39.6914118"],["-123.7951109","39.6919124"],["-123.7953696","39.6921275"],["-123.7957983","39.6924457"],["-123.7963601","39.6928858"],["-123.7968019","39.6932338"],["-123.7970424","39.6934449"],["-123.7975326","39.6939093"],["-123.7978293","39.6941637"],["-123.7982548","39.6945593"],["-123.7983757","39.6946957"],["-123.7984524","39.6948329"],["-123.7984942","39.6949702"],["-123.7985032","39.6951222"],["-123.7984801","39.6952673"],["-123.7984157","39.6954991"],["-123.7983909","39.6956616"],["-123.7984085","39.6958474"],["-123.7984711","39.6960226"],["-123.7985487","39.6961539"],["-123.7986531","39.6962786"],["-123.7988533","39.6964401"],["-123.7992922","39.6967256"],["-123.799704","39.6969937"],["-123.7998615","39.6971157"],["-123.7999769","39.6972344"],["-123.8000409","39.6973426"],["-123.8000822","39.6974869"],["-123.8001211","39.6978647"],["-123.8001565","39.6980592"],["-123.8002173","39.6982107"],["-123.8003267","39.698386"],["-123.8004954","39.6985825"],["-123.8006822","39.6987627"],["-123.8009634","39.6989646"],["-123.8024939","39.6999322"],["-123.802781","39.7001723"],["-123.8029279","39.7003587"],["-123.8030489","39.7006332"],["-123.803406","39.7017131"],["-123.8036183","39.7028134"],["-123.8036731","39.7031205"],["-123.8037462","39.7035435"],["-123.8038795","39.7044141"],["-123.8039431","39.7048531"],["-123.8039967","39.7050677"],["-123.8041545","39.7053737"],["-123.8043147","39.7057331"],["-123.8044191","39.7059298"],["-123.8045525","39.7061221"],["-123.8046915","39.7062851"],["-123.8048468","39.7064257"],["-123.8050653","39.7065771"],["-123.805456","39.7067715"],["-123.8056722","39.7068925"],["-123.8057625","39.7069668"],["-123.8058323","39.7070702"],["-123.8059018","39.707228"],["-123.8059598","39.7074333"],["-123.805968","39.707596"],["-123.8059093","39.7082628"],["-123.8059341","39.7084735"],["-123.8060167","39.7086821"],["-123.8061441","39.7088823"],["-123.8065104","39.7093328"],["-123.8066544","39.7095235"],["-123.8067715","39.7097267"],["-123.8068759","39.7099608"],["-123.8069015","39.7100844"],["-123.8068949","39.7101435"],["-123.8068505","39.7102568"],["-123.806741","39.710436"],["-123.8066018","39.7106158"],["-123.8064872","39.7107359"],["-123.8063824","39.7108072"],["-123.8062538","39.710865"],["-123.8060968","39.7109109"],["-123.8058544","39.7109311"],["-123.8052006","39.710967"],["-123.804685","39.7109987"],["-123.8044607","39.7110311"],["-123.8040366","39.7111291"],["-123.8037028","39.7112081"],["-123.8034149","39.7112764"],["-123.8033401","39.7113097"],["-123.8032738","39.711357"],["-123.8032122","39.7114347"],["-123.8031717","39.7115315"],["-123.8031618","39.7116042"],["-123.803175","39.7117543"],["-123.8032408","39.7119393"],["-123.8034723","39.712409"],["-123.8035002","39.7125123"],["-123.8034941","39.7125942"],["-123.8034668","39.7126573"],["-123.8034156","39.7127187"],["-123.803314","39.7127805"],["-123.8031849","39.7128282"],["-123.8027486","39.7129492"],["-123.8024155","39.7130561"],["-123.8021474","39.713181"],["-123.8016437","39.7134618"],["-123.8014096","39.7135603"],["-123.8011304","39.7136482"],["-123.800875","39.7137352"],["-123.8007329","39.7138099"],["-123.800676","39.7138549"],["-123.8006076","39.7139331"],["-123.8005542","39.7140475"],["-123.8005367","39.7142105"],["-123.8005248","39.7151061"],["-123.8005443","39.7160686"],["-123.8005662","39.7162412"],["-123.8006169","39.7163634"],["-123.8007419","39.7165773"],["-123.8008767","39.7167271"],["-123.8011982","39.7169907"],["-123.8013253","39.7171216"],["-123.8015636","39.7174566"],["-123.8016129","39.7175625"],["-123.8016227","39.717662"],["-123.8015777","39.717822"],["-123.8015613","39.7179511"],["-123.8015705","39.7180477"],["-123.8016143","39.7182156"],["-123.8017168","39.7184811"],["-123.8017864","39.7186943"],["-123.8018153","39.7188829"],["-123.8018096","39.7190785"],["-123.8017762","39.7191993"],["-123.8017391","39.7193507"],["-123.8017171","39.7196843"],["-123.8016961","39.7200445"],["-123.8016747","39.7204167"],["-123.8016861","39.720593"],["-123.8017253","39.7208261"],["-123.8017992","39.7210643"],["-123.8018893","39.7212672"],["-123.802195","39.7218773"],["-123.8023485","39.722145"],["-123.8024571","39.7223529"],["-123.8025323","39.7225321"],["-123.8025768","39.7227692"],["-123.8025917","39.7230934"],["-123.8026144","39.7234321"],["-123.8026746","39.7238297"],["-123.8027788","39.7241459"],["-123.802799","39.7242721"],["-123.802799","39.7243957"],["-123.8028004","39.7245118"],["-123.8028062","39.7245575"],["-123.8028127","39.7245972"],["-123.8028319","39.7246298"],["-123.8028763","39.724661"],["-123.8029252","39.7246751"],["-123.8029743","39.7246714"],["-123.8030264","39.7246535"],["-123.8030732","39.7246049"],["-123.8031212","39.7245077"],["-123.8032001","39.7242882"],["-123.8032504","39.7240811"],["-123.8032891","39.7238974"],["-123.8033179","39.7236602"],["-123.8033387","39.7235913"],["-123.8033962","39.7235133"],["-123.8034809","39.7234546"],["-123.8035511","39.7234245"],["-123.8037325","39.7233726"],["-123.8039754","39.7233242"],["-123.8046246","39.7232614"],["-123.8053162","39.7232027"],["-123.8055339","39.7232175"],["-123.805744","39.7232624"],["-123.8061181","39.7233587"],["-123.8062144","39.7233712"],["-123.8062811","39.7233616"],["-123.8063246","39.7233273"],["-123.8063487","39.7232724"],["-123.8063497","39.7232217"],["-123.8063203","39.7231586"],["-123.8062042","39.723031"],["-123.8059808","39.7228191"],["-123.8058314","39.722704"],["-123.8056721","39.7226122"],["-123.8055237","39.722555"],["-123.8053229","39.7224922"],["-123.8051308","39.7224076"],["-123.8049296","39.722297"],["-123.8047042","39.7221286"],["-123.8045186","39.7219306"],["-123.8040341","39.7213305"],["-123.8039439","39.7211878"],["-123.8039316","39.7211225"],["-123.8039536","39.721041"],["-123.8039757","39.7210004"],["-123.8041003","39.7209054"],["-123.8043666","39.7207707"],["-123.8047047","39.7206237"],["-123.8048345","39.720592"],["-123.8049664","39.7205858"],["-123.8051156","39.7206109"],["-123.8052332","39.7206691"],["-123.8056372","39.7209473"],["-123.8059231","39.7211551"],["-123.8061543","39.7213234"],["-123.8064016","39.7215287"],["-123.8065906","39.7217278"],["-123.8067538","39.7219629"],["-123.8068701","39.7221104"],["-123.8069815","39.7222417"],["-123.8071656","39.7224631"],["-123.8072754","39.7225642"],["-123.8075159","39.722727"],["-123.807644","39.7227833"],["-123.8078215","39.7228356"],["-123.8080024","39.722899"],["-123.808149","39.7229777"],["-123.8082372","39.7230504"],["-123.8083044","39.7231453"],["-123.8084052","39.7233664"],["-123.8084693","39.7234741"],["-123.8085403","39.7235434"],["-123.8086603","39.7235956"],["-123.8091627","39.723694"],["-123.8094373","39.7237705"],["-123.8095019","39.723809"],["-123.8095595","39.7238744"],["-123.8095774","39.7239366"],["-123.8095548","39.7239911"],["-123.8094669","39.7240817"],["-123.8093639","39.7241547"],["-123.8091586","39.7242609"],["-123.8087684","39.7244341"],["-123.8085181","39.7245599"],["-123.808406","39.7246408"],["-123.8083443","39.7247112"],["-123.8083037","39.7248018"],["-123.8083138","39.7248879"],["-123.8083548","39.7249426"],["-123.808414","39.7249684"],["-123.8086613","39.7250127"],["-123.8089897","39.7250798"],["-123.8092219","39.7251429"],["-123.8093917","39.7252213"],["-123.809464","39.7252798"],["-123.8095043","39.7253513"],["-123.8095903","39.7255688"],["-123.8096612","39.725693"],["-123.8097261","39.7257565"],["-123.809931","39.7259101"],["-123.810131","39.7260419"],["-123.8102061","39.7261049"],["-123.8102965","39.7262192"],["-123.8103408","39.7263035"],["-123.8103595","39.726424"],["-123.8103501","39.7266838"],["-123.810359","39.7268923"],["-123.8103935","39.7270209"],["-123.8104246","39.7270659"],["-123.8104974","39.7271276"],["-123.810535","39.7271421"],["-123.8105957","39.7271424"],["-123.8106881","39.7271216"],["-123.8110295","39.7270297"],["-123.8114703","39.726923"],["-123.8121331","39.726831"],["-123.8127766","39.7267665"],["-123.8129021","39.726745"],["-123.8130038","39.7266921"],["-123.8131205","39.7265848"],["-123.8131739","39.7264825"],["-123.8131802","39.7263137"],["-123.8131409","39.7260205"],["-123.8131105","39.725719"],["-123.8131244","39.7254412"],["-123.8131511","39.7253614"],["-123.8132107","39.725309"],["-123.8132882","39.7252762"],["-123.8133819","39.7252673"],["-123.8134693","39.725289"],["-123.8135581","39.7253446"],["-123.8136599","39.7254026"],["-123.8137296","39.7254232"],["-123.8138076","39.7254304"],["-123.8138894","39.725421"],["-123.8140425","39.7253749"],["-123.8141786","39.7253659"],["-123.8143151","39.7253774"],["-123.8143747","39.7254006"],["-123.8144734","39.7254572"],["-123.8145521","39.7255394"],["-123.8146043","39.7256292"],["-123.8146162","39.7256871"],["-123.8146301","39.7259356"],["-123.8146965","39.7261822"],["-123.8148627","39.726579"],["-123.8149212","39.7266733"],["-123.8149598","39.7267108"],["-123.8150421","39.7267578"],["-123.8150976","39.726767"],["-123.8153327","39.7267611"],["-123.8156168","39.726774"],["-123.8157131","39.7267899"],["-123.8158368","39.7268509"],["-123.8158684","39.7268808"],["-123.815884","39.7269242"],["-123.8158948","39.7270274"],["-123.8158838","39.7270634"],["-123.8158341","39.7271314"],["-123.8157323","39.7271943"],["-123.8153105","39.7273742"],["-123.815154","39.7274528"],["-123.8149583","39.7276019"],["-123.8147836","39.7277706"],["-123.8144332","39.7282208"],["-123.8142245","39.728442"],["-123.813842","39.7287817"],["-123.8135069","39.7290903"],["-123.813248","39.7293527"],["-123.8130594","39.7296085"],["-123.8128795","39.7298506"],["-123.8127561","39.7299441"],["-123.812212","39.7301032"],["-123.8117717","39.7302338"],["-123.811566","39.7303238"],["-123.8114539","39.7303947"],["-123.8113485","39.7304939"],["-123.8111528","39.7307689"],["-123.8108902","39.7311682"],["-123.8107893","39.7312813"],["-123.8107291","39.7313134"],["-123.8105615","39.7313614"],["-123.8104701","39.731371"],["-123.8102607","39.7313659"],["-123.8100481","39.7313245"],["-123.809837","39.731293"],["-123.8096258","39.7312987"],["-123.8094546","39.7313167"],["-123.8092099","39.7313724"],["-123.8090962","39.731415"],["-123.8090049","39.7314809"],["-123.8089663","39.7315316"],["-123.8089361","39.731608"],["-123.8089049","39.7317337"],["-123.808913","39.7318445"],["-123.8089454","39.7319052"],["-123.8090882","39.7320684"],["-123.8092192","39.7322307"],["-123.8092473","39.7323197"],["-123.8092363","39.7323744"],["-123.809157","39.732517"],["-123.8089471","39.7327907"],["-123.8088895","39.7328956"],["-123.8088831","39.7330241"],["-123.8089207","39.7331625"],["-123.809011","39.7332809"],["-123.8090659","39.7333231"],["-123.8091253","39.7333513"],["-123.8091819","39.7333645"],["-123.8093279","39.7333656"],["-123.8097622","39.7332981"],["-123.8099417","39.733306"],["-123.8099834","39.7333191"],["-123.8100451","39.7333719"],["-123.8100976","39.7334561"],["-123.8101253","39.7335447"],["-123.8101131","39.7336413"],["-123.8100231","39.7339086"],["-123.8100053","39.7340404"],["-123.8100157","39.7341017"],["-123.8100438","39.7341656"],["-123.81014","39.7342754"],["-123.8102619","39.7343553"],["-123.8106335","39.7345099"],["-123.8108419","39.7345782"],["-123.81104","39.7346034"],["-123.8112131","39.7346107"],["-123.811392","39.7346279"],["-123.8115482","39.7346622"],["-123.8117865","39.7347613"],["-123.8120709","39.7348994"],["-123.8121485","39.7349626"],["-123.8122556","39.7350793"],["-123.812364","39.7352748"],["-123.8124958","39.7353839"],["-123.8131944","39.735763"],["-123.8135023","39.7359024"],["-123.8137355","39.7359743"],["-123.8138722","39.7359965"],["-123.8142214","39.7360232"],["-123.8142854","39.7360383"],["-123.8143613","39.736079"],["-123.8144386","39.7361529"],["-123.8145788","39.7363079"],["-123.8147682","39.7364774"],["-123.8150902","39.7367226"],["-123.81549","39.7370812"],["-123.8157915","39.7373258"],["-123.8164582","39.7378119"],["-123.8166218","39.7379631"],["-123.816731","39.7381118"],["-123.8167805","39.7382271"],["-123.8168441","39.7385414"],["-123.8168808","39.7387274"],["-123.8169117","39.7388368"],["-123.8171252","39.7394056"],["-123.8173185","39.739921"],["-123.817367","39.7401036"],["-123.8173821","39.7403074"],["-123.8173627","39.7405492"],["-123.8173272","39.740744"],["-123.8172451","39.7409774"],["-123.8170031","39.7414182"],["-123.8164973","39.7422117"],["-123.8162093","39.7426814"],["-123.8161415","39.7428274"],["-123.8160712","39.7430607"],["-123.8160474","39.7432442"],["-123.8160463","39.7434864"],["-123.8160538","39.7435751"],["-123.816096","39.7437993"],["-123.8161753","39.7440399"],["-123.8162928","39.7442751"],["-123.8164991","39.7445876"],["-123.8168186","39.7450062"],["-123.8169676","39.7452626"],["-123.8170899","39.7455572"],["-123.8171495","39.7457725"],["-123.8171826","39.74604"],["-123.8171776","39.7466992"],["-123.8171646","39.7469752"],["-123.8171528","39.7471232"],["-123.8171133","39.7473041"],["-123.8169573","39.7477492"],["-123.8169277","39.7479137"],["-123.8169343","39.7479993"],["-123.8169667","39.7481678"],["-123.8170015","39.7482453"],["-123.8170842","39.7483797"],["-123.8172196","39.7485363"],["-123.8175778","39.7488642"],["-123.8177663","39.7490573"],["-123.8178583","39.7492025"],["-123.8180166","39.7495654"],["-123.8182573","39.7501631"],["-123.818401","39.7504817"],["-123.8185951","39.7508242"],["-123.8188359","39.7512786"],["-123.8189685","39.751568"],["-123.8191853","39.752152"],["-123.8193692","39.7526148"],["-123.819471","39.7528345"],["-123.8196524","39.7530569"],["-123.82002","39.7534282"],["-123.8203979","39.7538297"],["-123.8206031","39.7540398"],["-123.8207292","39.7541851"],["-123.8209327","39.7544473"],["-123.8211476","39.754768"],["-123.821227","39.7549598"],["-123.8214204","39.7564749"],["-123.8214432","39.7567404"],["-123.8214406","39.7572047"],["-123.8214458","39.7577095"],["-123.8214702","39.7579069"],["-123.8215238","39.7580583"],["-123.8218164","39.7585506"],["-123.8220208","39.7588433"],["-123.8222965","39.759199"],["-123.8224629","39.7594732"],["-123.82259","39.759776"],["-123.8226234","39.7599358"],["-123.8226855","39.7603081"],["-123.8227834","39.7604835"],["-123.8231773","39.760936"],["-123.8233247","39.761143"],["-123.8234601","39.7613958"],["-123.8237452","39.7620584"],["-123.8240406","39.7627407"],["-123.8241781","39.7629912"],["-123.8243071","39.7631422"],["-123.8247959","39.7635927"],["-123.8252561","39.7639867"],["-123.8256152","39.7642982"],["-123.8259242","39.7646109"],["-123.8261659","39.7648767"],["-123.8265211","39.7653934"],["-123.8266466","39.7655209"],["-123.8268748","39.7656956"],["-123.8272534","39.7659576"],["-123.8276346","39.7662563"],["-123.8278474","39.7664483"],["-123.8280946","39.7667615"],["-123.8297751","39.7687133"],["-123.8300564","39.7690833"],["-123.8304712","39.7697851"],["-123.8310192","39.7706846"],["-123.8311444","39.7709517"],["-123.8315015","39.7721593"],["-123.8317062","39.7727749"],["-123.8320437","39.7736589"],["-123.8322136","39.7740433"],["-123.8324181","39.7744614"],["-123.832505","39.7747107"],["-123.8326584","39.7753961"],["-123.8327991","39.7761063"],["-123.8328558","39.7765039"],["-123.8328625","39.7766624"],["-123.8328343","39.7768652"],["-123.8326528","39.7774448"],["-123.8325564","39.7776455"],["-123.8324521","39.7779141"],["-123.8324222","39.7781988"],["-123.8324987","39.7793618"],["-123.8324902","39.7795258"],["-123.8324775","39.7796124"],["-123.8324642","39.779665"],["-123.8324469","39.7797141"],["-123.8324237","39.7797634"],["-123.8323937","39.7798168"],["-123.8323187","39.7799161"],["-123.8322059","39.7800386"],["-123.831974","39.7801731"],["-123.8315611","39.7803541"],["-123.8312616","39.7804478"],["-123.8309932","39.7805417"],["-123.8307704","39.7806069"],["-123.8304749","39.7806572"],["-123.8297998","39.7807306"],["-123.8293175","39.7807719"],["-123.8290886","39.7807727"],["-123.8289199","39.7807611"],["-123.8286492","39.7807207"],["-123.8282502","39.7806144"],["-123.827511","39.7803831"],["-123.8266343","39.7800905"],["-123.8260969","39.7799201"],["-123.8258693","39.7798769"],["-123.8257529","39.7798767"],["-123.8255739","39.7799074"],["-123.8254152","39.7799702"],["-123.8244608","39.7805408"],["-123.823081","39.7814212"],["-123.8226263","39.7817478"],["-123.8224322","39.7819162"],["-123.8222085","39.7821617"],["-123.8220023","39.7823474"],["-123.8217291","39.7825413"],["-123.8210662","39.7829416"],["-123.8204364","39.7833439"],["-123.8202805","39.78347"],["-123.8201587","39.7836303"],["-123.8200951","39.7837929"],["-123.8199773","39.7843352"],["-123.8197829","39.7847638"],["-123.8196213","39.7849778"],["-123.8194954","39.7851397"],["-123.819472","39.7852041"],["-123.8193689","39.7855847"],["-123.8192574","39.7858017"],["-123.8190899","39.7860283"],["-123.8187419","39.7864444"],["-123.8184727","39.7866615"],["-123.8181924","39.7868736"],["-123.8178481","39.7870922"],["-123.8176312","39.7874505"],["-123.8174712","39.7881763"],["-123.8173153","39.7890528"],["-123.8172534","39.7892173"],["-123.81718","39.7893196"],["-123.8171018","39.7894024"],["-123.8168892","39.7895929"],["-123.8167571","39.7897208"],["-123.8167184","39.789785"],["-123.8166437","39.7899684"],["-123.8166245","39.7901065"],["-123.8166603","39.7903677"],["-123.8167473","39.7907451"],["-123.8169613","39.7914204"],["-123.8171476","39.7917953"],["-123.8171719","39.7919213"],["-123.8171323","39.7921191"],["-123.8170465","39.7923744"],["-123.8168025","39.7929823"],["-123.8166779","39.7933176"],["-123.8166299","39.7935352"],["-123.8166227","39.793755"],["-123.8166428","39.7939487"],["-123.8166831","39.7941087"],["-123.8168357","39.794445"],["-123.8170834","39.7949371"],["-123.8173467","39.7954197"],["-123.8174609","39.7955838"],["-123.817562","39.7956798"],["-123.8177145","39.7957859"],["-123.8179941","39.7959431"],["-123.8183737","39.7961289"],["-123.8186226","39.7962702"],["-123.8189901","39.7965087"],["-123.8191004","39.7966008"],["-123.81918","39.7966939"],["-123.8194476","39.7970752"],["-123.8195831","39.7972186"],["-123.8197681","39.7973533"],["-123.8201787","39.7976034"],["-123.8203846","39.7977406"],["-123.8205995","39.7979122"],["-123.8206737","39.7979925"],["-123.8207587","39.7981187"],["-123.8207854","39.7981839"],["-123.8208006","39.7982733"],["-123.8207893","39.7985385"],["-123.8207636","39.7986434"],["-123.8207107","39.798755"],["-123.8206748","39.7987881"],["-123.8206321","39.7988221"],["-123.820568","39.7988428"],["-123.8204742","39.7988574"],["-123.820348","39.7988442"],["-123.8202763","39.7988116"],["-123.8200785","39.798667"],["-123.8199223","39.7985343"],["-123.819671","39.7982867"],["-123.8194256","39.7980349"],["-123.8190969","39.7977834"],["-123.818392","39.7973602"],["-123.8181617","39.7972354"],["-123.8180981","39.7972224"],["-123.8177303","39.7972196"],["-123.8176413","39.7972127"],["-123.8175648","39.7971833"],["-123.8175166","39.7971371"],["-123.8175005","39.7970893"],["-123.8175001","39.7970299"],["-123.8175232","39.7969492"],["-123.8175906","39.7968212"],["-123.8175975","39.7967354"],["-123.8175754","39.7966614"],["-123.8175012","39.7965715"],["-123.8172244","39.7963752"],["-123.816554","39.7959258"],["-123.8163483","39.7957947"],["-123.8162449","39.7957533"],["-123.8161302","39.7957156"],["-123.8160122","39.7956531"],["-123.8158861","39.7955538"],["-123.8156967","39.7953567"],["-123.8155004","39.7952225"],["-123.8153127","39.7951077"],["-123.8151386","39.7949584"],["-123.8150358","39.7947922"],["-123.814965","39.7947054"],["-123.8149005","39.7946543"],["-123.8148008","39.7946089"],["-123.8146915","39.7946009"],["-123.8146075","39.7946091"],["-123.8144373","39.7946602"],["-123.8143211","39.7947121"],["-123.8142251","39.7947401"],["-123.8141632","39.7947455"],["-123.8140978","39.794739"],["-123.8139549","39.7946953"],["-123.8138219","39.7946291"],["-123.8137841","39.7946184"],["-123.813739","39.7946176"],["-123.8136661","39.7946303"],["-123.8135586","39.7946677"],["-123.8132998","39.7947839"],["-123.8131968","39.794855"],["-123.8131062","39.7949539"],["-123.813021","39.7950626"],["-123.8129344","39.7951943"],["-123.8128612","39.7952942"],["-123.8127299","39.7954175"],["-123.8125675","39.7954977"],["-123.812283","39.7956136"],["-123.8118372","39.7958253"],["-123.8116995","39.795858"],["-123.8115543","39.7958887"],["-123.8114766","39.7959271"],["-123.8114118","39.7959705"],["-123.81137","39.796017"],["-123.8113293","39.7961063"],["-123.8112649","39.7964283"],["-123.8112093","39.796568"],["-123.8111487","39.7966412"],["-123.8110737","39.7966864"],["-123.8109929","39.7967001"],["-123.8108752","39.7966989"],["-123.810746","39.7967061"],["-123.8105839","39.7967332"],["-123.8104532","39.7967695"],["-123.8103099","39.7968216"],["-123.809909","39.7970642"],["-123.8096246","39.7972629"],["-123.8095793","39.7972925"],["-123.8095454","39.7973309"],["-123.8095376","39.7974259"],["-123.8095769","39.7975522"],["-123.8097103","39.7976808"],["-123.8103265","39.7980203"],["-123.8103538","39.79805"],["-123.8103587","39.7980695"],["-123.8103604","39.7981035"],["-123.8103487","39.7981331"],["-123.8103312","39.7981571"],["-123.8102554","39.7982105"],["-123.8099595","39.7984105"],["-123.8099103","39.7984527"],["-123.8098861","39.7984955"],["-123.8098514","39.7986344"],["-123.8098411","39.7989046"],["-123.8098691","39.7989978"],["-123.8099604","39.7991339"],["-123.8103151","39.799544"],["-123.8103789","39.7996717"],["-123.810387","39.7997371"],["-123.8103724","39.7998713"],["-123.8103211","39.7999908"],["-123.8102074","39.8001604"],["-123.8101376","39.8002331"],["-123.8100578","39.8002958"],["-123.8099708","39.8003463"],["-123.8099096","39.8004163"],["-123.8096278","39.8009236"],["-123.8095406","39.8010288"],["-123.8094601","39.8010814"],["-123.8092197","39.8011962"],["-123.809041","39.8012527"],["-123.8089458","39.8012688"],["-123.8088464","39.8012562"],["-123.8087612","39.8012062"],["-123.8087282","39.8011656"],["-123.8086424","39.8009922"],["-123.8085911","39.8009058"],["-123.8084969","39.8008018"],["-123.8083682","39.8007027"],["-123.8082986","39.8006573"],["-123.8082002","39.8006186"],["-123.8078008","39.8005017"],["-123.8076188","39.8004212"],["-123.8074857","39.8003634"],["-123.8074217","39.8003529"],["-123.807351","39.8003617"],["-123.8072534","39.8004006"],["-123.8071923","39.8004609"],["-123.8071557","39.8005275"],["-123.8071478","39.8006165"],["-123.8071742","39.8007813"],["-123.8072835","39.8011091"],["-123.8072994","39.8012947"],["-123.8072729","39.8014439"],["-123.8071427","39.8018059"],["-123.8069971","39.8021081"],["-123.806856","39.8023257"],["-123.8066328","39.8026208"],["-123.8065019","39.8027766"],["-123.8064273","39.8028582"],["-123.8063187","39.802935"],["-123.8060924","39.8030644"],["-123.8059738","39.8031315"],["-123.8058949","39.8031968"],["-123.8058058","39.8033484"],["-123.8057104","39.8036799"],["-123.8056669","39.8040339"],["-123.8056416","39.8041847"],["-123.8055953","39.8043001"],["-123.8055405","39.8043782"],["-123.8054223","39.8045169"],["-123.805234","39.8046724"],["-123.8050236","39.8047957"],["-123.8047329","39.8048991"],["-123.8044474","39.8049599"],["-123.8042964","39.8050011"],["-123.8041708","39.8050743"],["-123.8040223","39.80521"],["-123.8039531","39.8053126"],["-123.8038993","39.8054978"],["-123.8039115","39.8056043"],["-123.8039599","39.8057215"],["-123.8041411","39.8060308"],["-123.8042191","39.8062186"],["-123.8042974","39.806545"],["-123.8043242","39.8066059"],["-123.8043802","39.8066673"],["-123.8046629","39.8068428"],["-123.8048126","39.8069469"],["-123.8049857","39.8070944"],["-123.8051508","39.8072616"],["-123.8052996","39.8074352"],["-123.8054317","39.8076502"],["-123.805539","39.8079385"],["-123.8055934","39.8082246"],["-123.8056083","39.8084537"],["-123.8056383","39.8086118"],["-123.805712","39.808747"],["-123.8060394","39.8091982"],["-123.8063651","39.8096428"],["-123.8064094","39.8097254"],["-123.8064303","39.8098441"],["-123.8064221","39.8099142"],["-123.8064079","39.8099561"],["-123.8063488","39.8100271"],["-123.8063026","39.8100589"],["-123.8062045","39.8100976"],["-123.8060916","39.8101071"],["-123.8060312","39.8100974"],["-123.8058966","39.8100389"],["-123.8057925","39.8099691"],["-123.805701","39.8098816"],["-123.8055485","39.8096422"],["-123.8054838","39.8095733"],["-123.8053774","39.8095026"],["-123.8052401","39.8094627"],["-123.8048091","39.8094189"],["-123.8045792","39.8093693"],["-123.8041925","39.8092469"],["-123.8040535","39.8092299"],["-123.8039431","39.8092377"],["-123.8037656","39.8092669"],["-123.8036397","39.8092734"],["-123.8033959","39.8092665"],["-123.8032887","39.8092506"],["-123.8031659","39.8092018"],["-123.8029104","39.8090805"],["-123.8027503","39.8090296"],["-123.8024189","39.8089916"],["-123.8019956","39.8089578"],["-123.8018114","39.8089249"],["-123.801643","39.808877"],["-123.8014089","39.8088271"],["-123.8012676","39.8088162"],["-123.8006479","39.808835"],["-123.8001205","39.8088495"],["-123.7997632","39.8088403"],["-123.79961","39.8088243"],["-123.7994604","39.8087921"],["-123.7992583","39.8086864"],["-123.7991346","39.8085882"],["-123.7990912","39.8085167"],["-123.7990772","39.8084107"],["-123.7990835","39.8083521"],["-123.7991203","39.8082507"],["-123.7992153","39.808104"],["-123.7992829","39.8079463"],["-123.7993022","39.8078147"],["-123.7992884","39.8077549"],["-123.7992646","39.8077149"],["-123.7992199","39.8076793"],["-123.7991796","39.8076618"],["-123.7990129","39.8076263"],["-123.7986923","39.8075933"],["-123.7979218","39.8075633"],["-123.7975427","39.8075719"],["-123.7973149","39.807585"],["-123.7970859","39.8076307"],["-123.796731","39.8077246"],["-123.7964915","39.8077664"],["-123.7963431","39.8078208"],["-123.7958696","39.8080978"],["-123.7953545","39.8084146"],["-123.7950942","39.8086187"],["-123.7948073","39.8088994"],["-123.7944712","39.8092401"],["-123.794266","39.8094128"],["-123.7940935","39.8095282"],["-123.7939907","39.8095892"],["-123.7937185","39.8097051"],["-123.7933538","39.809841"],["-123.7930222","39.8099373"],["-123.7928195","39.8099757"],["-123.7925482","39.8100175"],["-123.7921558","39.8100598"],["-123.7915341","39.8101169"],["-123.7912458","39.81015"],["-123.7910866","39.8102037"],["-123.7909293","39.8102828"],["-123.790815","39.8103729"],["-123.7907215","39.8104855"],["-123.7903998","39.8109362"],["-123.7902816","39.8110938"],["-123.7901188","39.8112614"],["-123.7900048","39.8113633"],["-123.7897774","39.8115242"],["-123.7893089","39.8117872"],["-123.7886592","39.8121368"],["-123.7883609","39.8123393"],["-123.7879438","39.8127485"],["-123.7877812","39.8129472"],["-123.7877135","39.8130695"],["-123.7876539","39.8132458"],["-123.7875939","39.8134434"],["-123.7875432","39.8135737"],["-123.7874467","39.8137647"],["-123.7873825","39.813871"],["-123.7872332","39.8140521"],["-123.7869739","39.81433"],["-123.7867825","39.8145663"],["-123.7865515","39.8148661"],["-123.7863247","39.8151248"],["-123.7861162","39.8153276"],["-123.7858875","39.8155222"],["-123.7854691","39.8158203"],["-123.7847967","39.81626"],["-123.7839304","39.8167921"],["-123.7830651","39.817307"],["-123.7826372","39.8175385"],["-123.782373","39.8176628"],["-123.7821361","39.8177559"],["-123.7819085","39.8178223"],["-123.7815191","39.8179058"],["-123.7811249","39.8179791"],["-123.781031","39.8180673"],["-123.780952","39.8181779"],["-123.780877","39.8183158"],["-123.7808385","39.8184629"],["-123.7808487","39.818556"],["-123.7809094","39.8186385"],["-123.7810219","39.8187154"],["-123.7823722","39.8193063"],["-123.7829261","39.8195652"],["-123.7830656","39.8196533"],["-123.7831275","39.8197318"],["-123.7831655","39.8198609"],["-123.7831713","39.8200037"],["-123.7831379","39.8201309"],["-123.7829458","39.8204772"],["-123.7828584","39.820771"],["-123.7828149","39.8208878"],["-123.7827505","39.8209992"],["-123.7826904","39.8210479"],["-123.782543","39.8210933"],["-123.7814323","39.821315"],["-123.7810662","39.8214043"],["-123.7809219","39.8214802"],["-123.7808323","39.821568"],["-123.7807811","39.8216683"],["-123.7807552","39.8217967"],["-123.7807569","39.8220777"],["-123.7809272","39.8228961"],["-123.7809038","39.8230355"],["-123.7806625","39.8233843"],["-123.7803512","39.823799"],["-123.7799653","39.8242172"],["-123.7796489","39.824604"],["-123.7794701","39.8248752"],["-123.7793809","39.825054"],["-123.7792864","39.8253706"],["-123.7792394","39.8256838"],["-123.7791181","39.8260771"],["-123.7791004","39.8261837"],["-123.7791281","39.8265343"],["-123.7791075","39.8266256"],["-123.7790625","39.826676"],["-123.7786559","39.8269743"],["-123.7780382","39.8274421"],["-123.7779148","39.8275524"],["-123.7778702","39.827683"],["-123.7778148","39.827915"],["-123.7777262","39.8281097"],["-123.7775639","39.8283816"],["-123.7775148","39.8284905"],["-123.7774927","39.8285776"],["-123.7774614","39.8288429"],["-123.7774355","39.8289226"],["-123.7773883","39.829011"],["-123.777293","39.829132"],["-123.7771385","39.8292695"],["-123.7766766","39.8295405"],["-123.7765877","39.8296307"],["-123.7765712","39.8297012"],["-123.7765619","39.8299898"],["-123.7765918","39.8301777"],["-123.7766496","39.8302919"],["-123.7768708","39.8305935"],["-123.7769049","39.8306605"],["-123.7769015","39.830742"],["-123.7768075","39.8310117"],["-123.7765726","39.8316063"],["-123.7764563","39.8318653"],["-123.7764119","39.8319237"],["-123.7763386","39.8319643"],["-123.7762615","39.8319862"],["-123.7760674","39.8320054"],["-123.7756209","39.8320086"],["-123.7755099","39.8320218"],["-123.7752741","39.8321313"],["-123.774923","39.8323961"],["-123.7748605","39.8324679"],["-123.7748112","39.8325726"],["-123.7747184","39.8328371"],["-123.7746802","39.8329737"],["-123.7746753","39.8330602"],["-123.7747006","39.8331256"],["-123.7748519","39.8333291"],["-123.7749895","39.8335711"],["-123.7750181","39.8336531"],["-123.7750217","39.8337429"],["-123.7750085","39.8339171"],["-123.7749834","39.8340119"],["-123.7749293","39.8341202"],["-123.774857","39.8342266"],["-123.7747194","39.834378"],["-123.7741644","39.8348419"],["-123.7736998","39.835307"],["-123.7734689","39.8354669"],["-123.7732008","39.8356049"],["-123.7729751","39.8357481"],["-123.7728025","39.8358905"],["-123.7727099","39.8360142"],["-123.7726242","39.8361661"],["-123.7724271","39.8366114"],["-123.7723668","39.8368266"],["-123.7723319","39.8370056"],["-123.772352","39.8370878"],["-123.7723821","39.83724"],["-123.772459","39.8374777"],["-123.7725398","39.8376741"],["-123.772632","39.8378441"],["-123.7727833","39.8380837"],["-123.7729642","39.8384726"],["-123.7730603","39.8391196"],["-123.773084","39.8394396"],["-123.7731053","39.8400801"],["-123.7731676","39.8411163"],["-123.7732172","39.8415848"],["-123.7732371","39.8419507"],["-123.7732894","39.8422422"],["-123.773312","39.8425799"],["-123.7733048","39.8428713"],["-123.7732796","39.8430901"],["-123.7732202","39.8432548"],["-123.773097","39.8434376"],["-123.7730024","39.843527"],["-123.7728085","39.8436493"],["-123.7726173","39.8437382"],["-123.7724618","39.8438089"],["-123.7722602","39.8439276"],["-123.7720877","39.8440531"],["-123.7718378","39.8443167"],["-123.7717676","39.8443809"],["-123.7716669","39.8444701"],["-123.7714253","39.8445993"],["-123.7710802","39.8447189"],["-123.7708206","39.8448862"],["-123.7706449","39.844988"],["-123.7705023","39.8451183"],["-123.7703677","39.845284"],["-123.7703081","39.8454556"],["-123.7702959","39.8455847"],["-123.7703197","39.8457242"],["-123.7703304","39.845882"],["-123.7703306","39.8460756"],["-123.770348","39.8462419"],["-123.7703986","39.846364"],["-123.7704462","39.8464777"],["-123.7704661","39.8465882"],["-123.7704192","39.846664"],["-123.7703437","39.846714"],["-123.7702388","39.846737"],["-123.7700882","39.8467381"],["-123.7699289","39.8467334"],["-123.7697693","39.8467264"],["-123.7696327","39.8466924"],["-123.7692177","39.846567"],["-123.7688899","39.8464754"],["-123.7686311","39.8464612"],["-123.7683664","39.8464943"],["-123.7681122","39.8465278"],["-123.767896","39.8465281"],["-123.7676956","39.8465106"],["-123.7675155","39.846543"],["-123.767385","39.8466073"],["-123.7672004","39.8467747"],["-123.7671114","39.846944"],["-123.7670641","39.8473213"],["-123.7670959","39.8476161"],["-123.7671275","39.8478007"],["-123.7671579","39.8479267"],["-123.7671867","39.8480655"],["-123.7672178","39.8483014"],["-123.7671927","39.8484054"],["-123.7671436","39.8484576"],["-123.7670194","39.8485351"],["-123.766816","39.8487346"],["-123.7667589","39.8488464"],["-123.7667488","39.8489637"],["-123.7667711","39.8490554"],["-123.7668141","39.8491517"],["-123.7668519","39.8492008"],["-123.7669086","39.8492429"],["-123.7670342","39.8493132"],["-123.7672773","39.8494318"],["-123.7674919","39.8495433"],["-123.7675717","39.8496043"],["-123.7675904","39.8496415"],["-123.7675945","39.8496778"],["-123.7675868","39.8497273"],["-123.7675599","39.8497776"],["-123.7675074","39.8498368"],["-123.76729","39.8499889"],["-123.7670267","39.8501438"],["-123.7668633","39.8502159"],["-123.7667082","39.8502593"],["-123.7664117","39.8503253"],["-123.7660686","39.8504009"],["-123.7659348","39.850452"],["-123.76577","39.850557"],["-123.7657177","39.8506074"],["-123.7656887","39.8506586"],["-123.7656751","39.8507427"],["-123.7656972","39.8510169"],["-123.7657045","39.8511542"],["-123.7656992","39.8511982"],["-123.765681","39.8512368"],["-123.7656426","39.8512744"],["-123.7655856","39.8512939"],["-123.7655201","39.8513065"],["-123.765442","39.8513071"],["-123.7652586","39.8512768"],["-123.7651124","39.8512708"],["-123.7650202","39.851283"],["-123.7649508","39.8513028"],["-123.7647683","39.8513918"],["-123.7646616","39.8514139"],["-123.7643475","39.8514401"],["-123.764266","39.8514533"],["-123.7642144","39.8514739"],["-123.7641464","39.8515151"],["-123.764096","39.8515653"],["-123.7640797","39.8516117"],["-123.7640832","39.8517018"],["-123.7642268","39.8520318"],["-123.7642389","39.8520962"],["-123.7642179","39.8521475"],["-123.7640986","39.8523017"],["-123.7640767","39.8523543"],["-123.7640747","39.8524019"],["-123.7640898","39.8524806"],["-123.764118","39.8525616"],["-123.7641815","39.8526613"],["-123.7643479","39.8528477"],["-123.7645943","39.8531076"],["-123.7647001","39.8531563"],["-123.7648648","39.8531959"],["-123.7649657","39.8532338"],["-123.7650277","39.8532985"],["-123.7650288","39.8534096"],["-123.7649315","39.8535455"],["-123.7643407","39.8539336"],["-123.7639523","39.85428"],["-123.7638455","39.854339"],["-123.7635125","39.8543874"],["-123.7632492","39.8544197"],["-123.7631256","39.8544424"],["-123.762959","39.8545011"],["-123.7624006","39.8547391"],["-123.7622923","39.8548048"],["-123.7622152","39.8548936"],["-123.7621718","39.855008"],["-123.7621714","39.8550856"],["-123.762252","39.8553875"],["-123.7623444","39.8556835"],["-123.762486","39.8560676"],["-123.7625659","39.8564077"],["-123.7626741","39.8567621"],["-123.7627228","39.8570356"],["-123.7626949","39.8570961"],["-123.7626478","39.8571329"],["-123.7626054","39.8571526"],["-123.7625237","39.8571667"],["-123.7623498","39.8571565"],["-123.7622597","39.857128"],["-123.7620081","39.8569663"],["-123.7614577","39.8567155"],["-123.7613247","39.8566666"],["-123.7611338","39.856637"],["-123.7610325","39.8566358"],["-123.7608269","39.8566516"],["-123.7607406","39.8566475"],["-123.7606722","39.8566279"],["-123.7604193","39.8565051"],["-123.7600384","39.8563525"],["-123.7599006","39.856325"],["-123.7597397","39.8563191"],["-123.7596091","39.8563371"],["-123.7594618","39.856395"],["-123.7591134","39.8565896"],["-123.7583795","39.8570742"],["-123.7577789","39.8575247"],["-123.7576816","39.8575878"],["-123.7575385","39.8576413"],["-123.7571343","39.8577762"],["-123.7569851","39.8578498"],["-123.7564342","39.8582068"],["-123.7557355","39.8586758"],["-123.7551538","39.8591124"],["-123.7550204","39.8592271"],["-123.7549335","39.8593354"],["-123.7548614","39.8594703"],["-123.7547436","39.8599142"],["-123.7547317","39.8600853"],["-123.7547387","39.8603298"],["-123.7547236","39.8603907"],["-123.7546506","39.8604695"],["-123.7545577","39.8605286"],["-123.7543919","39.8605768"],["-123.753904","39.8606398"],["-123.7535983","39.8606693"],["-123.7532543","39.8606752"],["-123.7530584","39.8606601"],["-123.7528867","39.8606296"],["-123.752422","39.8605027"],["-123.7522967","39.8604767"],["-123.7521702","39.8604748"],["-123.7517668","39.8605004"],["-123.7515536","39.8605368"],["-123.7512264","39.8606221"],["-123.7510159","39.860658"],["-123.7507812","39.8606814"],["-123.7504099","39.8606977"],["-123.7498938","39.8607067"],["-123.7494076","39.8607526"],["-123.7488737","39.8608449"],["-123.7485651","39.8608795"],["-123.7482426","39.8608599"],["-123.7481603","39.8608377"],["-123.7480392","39.8607613"],["-123.7475947","39.8604488"],["-123.7470643","39.8601572"],["-123.7469762","39.8600937"],["-123.7469148","39.8600135"],["-123.7468149","39.8598663"],["-123.7467476","39.859817"],["-123.7466523","39.8597933"],["-123.7464729","39.859793"],["-123.7463574","39.8598136"],["-123.7462717","39.8598509"],["-123.7460344","39.8600364"],["-123.7459364","39.8600725"],["-123.7458638","39.8600844"],["-123.7457857","39.8600822"],["-123.7455981","39.8600515"],["-123.7454866","39.8600031"],["-123.7453746","39.859928"],["-123.7451054","39.8596797"],["-123.744798","39.8594634"],["-123.7444688","39.8592672"],["-123.7439473","39.859048"],["-123.7438621","39.8589994"],["-123.7438279","39.8589521"],["-123.7438061","39.8588797"],["-123.743809","39.8587402"],["-123.7438476","39.8586041"],["-123.743892","39.8585237"],["-123.7440691","39.8582563"],["-123.7440973","39.8581793"],["-123.7440875","39.85812"],["-123.7440619","39.8580726"],["-123.743914","39.8578786"],["-123.7438422","39.8577244"],["-123.7438121","39.8576355"],["-123.7437998","39.8575654"],["-123.7438067","39.8575115"],["-123.7438787","39.8573876"],["-123.7440751","39.8571972"],["-123.7441227","39.8571044"],["-123.7441149","39.8569765"],["-123.7441202","39.8569102"],["-123.7441538","39.856842"],["-123.7443601","39.8565611"],["-123.7443923","39.8564651"],["-123.7443832","39.8564124"],["-123.7443391","39.8563338"],["-123.7443021","39.8562928"],["-123.7442415","39.8562531"],["-123.74405","39.8561893"],["-123.7438844","39.8561608"],["-123.7433981","39.8561244"],["-123.7432915","39.8561067"],["-123.7432309","39.8560821"],["-123.7431504","39.8560248"],["-123.7431136","39.8559219"],["-123.7431248","39.8552629"],["-123.7431578","39.8550982"],["-123.7432844","39.8547865"],["-123.743348","39.8543402"],["-123.7433696","39.8542648"],["-123.7434294","39.854196"],["-123.744006","39.853685"],["-123.7443701","39.8533328"],["-123.744537","39.8531313"],["-123.7445605","39.8530529"],["-123.7445345","39.852953"],["-123.7445098","39.8529007"],["-123.7444722","39.8528584"],["-123.7443714","39.8527941"],["-123.7442124","39.8527408"],["-123.7441115","39.8527196"],["-123.7439728","39.8527073"],["-123.7437628","39.8527095"],["-123.7436158","39.8527325"],["-123.7435324","39.8527553"],["-123.7433927","39.8528186"],["-123.7430707","39.8530126"],["-123.7429207","39.8530795"],["-123.7426028","39.8531656"],["-123.7423352","39.853231"],["-123.7421657","39.8532501"],["-123.7420153","39.8532295"],["-123.7419284","39.8531973"],["-123.7417712","39.8531119"],["-123.7416957","39.8530261"],["-123.7415496","39.852735"],["-123.7413595","39.852323"],["-123.7410991","39.8518001"],["-123.741025","39.8515225"],["-123.7409977","39.8513336"],["-123.7409956","39.8512299"],["-123.7410226","39.8511038"],["-123.7410663","39.8510379"],["-123.74113","39.8509914"],["-123.7414867","39.8508348"],["-123.7417709","39.8507024"],["-123.7422311","39.8503986"],["-123.742369","39.8502721"],["-123.7423991","39.8502255"],["-123.7424098","39.8501554"],["-123.7423981","39.8501262"],["-123.7423331","39.8500696"],["-123.741993","39.8497925"],["-123.7419319","39.8497138"],["-123.7417822","39.8495286"],["-123.7416569","39.8493178"],["-123.7415881","39.8492562"],["-123.7414929","39.8492372"],["-123.7409427","39.8492644"],["-123.7403894","39.8493141"],["-123.7401229","39.8493223"],["-123.7400506","39.8493132"],["-123.7399931","39.8492877"],["-123.7399229","39.8492348"],["-123.7396032","39.8489583"],["-123.7394946","39.8488913"],["-123.7394229","39.8488602"],["-123.7392933","39.8488352"],["-123.7391852","39.8488272"],["-123.7390731","39.8488407"],["-123.7390066","39.8488662"],["-123.7389553","39.8489193"],["-123.7387971","39.8492091"],["-123.7386658","39.8494346"],["-123.7385797","39.8495335"],["-123.7385129","39.8495733"],["-123.7383384","39.8496245"],["-123.7382091","39.8496446"],["-123.7380769","39.8496539"],["-123.737906","39.8496414"],["-123.737502","39.8495398"],["-123.73685","39.8493469"],["-123.7364446","39.8492362"],["-123.7362109","39.8491907"],["-123.7359155","39.8491505"],["-123.7355221","39.8490463"],["-123.7350349","39.8489056"],["-123.734884","39.8488829"],["-123.7348046","39.8488864"],["-123.7346833","39.8489175"],["-123.7345895","39.8489666"],["-123.7345192","39.8490365"],["-123.7344911","39.8491147"],["-123.7345061","39.8492203"],["-123.7345634","39.849382"],["-123.7346802","39.8496129"],["-123.7349405","39.850031"],["-123.7350025","39.8501148"],["-123.7350782","39.8501794"],["-123.7352748","39.8503282"],["-123.7354028","39.8504508"],["-123.7354457","39.8505074"],["-123.7354692","39.8505855"],["-123.7355037","39.8510636"],["-123.7354472","39.8514472"],["-123.7354571","39.8516075"],["-123.7354936","39.8517305"],["-123.7355635","39.8518543"],["-123.735687","39.8519524"],["-123.7363174","39.8522703"],["-123.7365837","39.8524189"],["-123.7366428","39.8524747"],["-123.736659","39.8524919"],["-123.7366658","39.8525012"],["-123.7366719","39.8525108"],["-123.7366767","39.8525211"],["-123.7366808","39.8525317"],["-123.7366839","39.8525422"],["-123.7366848","39.852553"],["-123.7366848","39.852564"],["-123.7366839","39.8525752"],["-123.7366819","39.8525848"],["-123.7366788","39.852596"],["-123.7366738","39.8526058"],["-123.7366681","39.8526157"],["-123.7366608","39.8526252"],["-123.7366449","39.852643"],["-123.7366349","39.8526509"],["-123.7366238","39.8526581"],["-123.7366125","39.8526642"],["-123.7366","39.85267"],["-123.7365871","39.8526742"],["-123.736575","39.8526778"],["-123.736561","39.8526809"],["-123.7365471","39.8526828"],["-123.7365327","39.852684"],["-123.7365049","39.8526839"],["-123.7364913","39.8526819"],["-123.7364777","39.8526792"],["-123.7364683","39.8526777"],["-123.7364537","39.8526747"],["-123.7364311","39.8526682"],["-123.7363342","39.8526324"],["-123.7362273","39.8525842"],["-123.7360642","39.85252"],["-123.7356544","39.8523775"],["-123.7352809","39.8522354"],["-123.735035","39.8521304"],["-123.7348846","39.8520261"],["-123.7345976","39.85177"],["-123.7344181","39.851653"],["-123.734196","39.8515411"],["-123.7340623","39.8514563"],["-123.733917","39.8512773"],["-123.7337717","39.8510811"],["-123.7336366","39.8509529"],["-123.7335128","39.8508788"],["-123.7331246","39.8507412"],["-123.7329603","39.8506415"],["-123.7327747","39.8505353"],["-123.7325622","39.8504811"],["-123.7323636","39.8504665"],["-123.7322078","39.8504747"],["-123.7320354","39.850514"],["-123.7318576","39.8505365"],["-123.7316975","39.8505309"],["-123.7315542","39.8505038"],["-123.7313634","39.850445"],["-123.7311666","39.850376"],["-123.7308981","39.8502617"],["-123.7306355","39.8501499"],["-123.7305178","39.8501199"],["-123.7303856","39.8501071"],["-123.7302141","39.8500988"],["-123.7299878","39.8501123"],["-123.7298882","39.8501343"],["-123.7298251","39.8501688"],["-123.729762","39.850221"],["-123.7297009","39.8502906"],["-123.7296819","39.850372"],["-123.7296818","39.8504559"],["-123.729714","39.8505614"],["-123.7297951","39.8507083"],["-123.7298636","39.8508721"],["-123.729894","39.8510371"],["-123.7299483","39.8513816"],["-123.7299406","39.8516765"],["-123.7299348","39.8519221"],["-123.7298748","39.8521165"],["-123.7298339","39.8522225"],["-123.7298043","39.8523426"],["-123.7298175","39.8524403"],["-123.7298368","39.8525205"],["-123.7298695","39.852602"],["-123.7299013","39.8526811"],["-123.7299146","39.8527591"],["-123.7298963","39.8528464"],["-123.7298269","39.852941"],["-123.7295798","39.8532177"],["-123.7294428","39.8534119"],["-123.7293994","39.853516"],["-123.7293724","39.8536117"],["-123.7293712","39.8537256"],["-123.7294308","39.8539102"],["-123.7295547","39.8542378"],["-123.7296776","39.8546874"],["-123.7297355","39.8548161"],["-123.729788","39.8548789"],["-123.729854","39.8549297"],["-123.7299842","39.8550174"],["-123.7301762","39.8551365"],["-123.7302354","39.8551909"],["-123.730265","39.8552348"],["-123.7302766","39.8552921"],["-123.7302805","39.8553426"],["-123.7302721","39.8553889"],["-123.7302502","39.8554411"],["-123.7302152","39.8554898"],["-123.7301473","39.8555496"],["-123.7299692","39.855683"],["-123.7299264","39.8557383"],["-123.7298748","39.8558358"],["-123.7298542","39.8559348"],["-123.7298561","39.8560327"],["-123.7299039","39.8561971"],["-123.730004","39.8565139"],["-123.7300336","39.8566283"],["-123.7300276","39.8567073"],["-123.7300088","39.856777"],["-123.7299849","39.8568401"],["-123.7299104","39.8569379"],["-123.7295528","39.8573065"],["-123.7293665","39.8575597"],["-123.7289877","39.8582797"],["-123.7288675","39.8585314"],["-123.7287723","39.8586503"],["-123.7286745","39.8587668"],["-123.7285556","39.8589138"],["-123.728463","39.8590425"],["-123.7283554","39.8591854"],["-123.7282489","39.8593054"],["-123.7280746","39.8594797"],["-123.7275364","39.8599059"],["-123.7274687","39.8599915"],["-123.7274355","39.8600763"],["-123.7273837","39.8602379"],["-123.7273489","39.8603323"],["-123.7273199","39.8603945"],["-123.7272765","39.8604737"],["-123.727219","39.8605349"],["-123.727142","39.8605955"],["-123.7270026","39.8606915"],["-123.7264879","39.8609956"],["-123.7260655","39.8612879"],["-123.7257694","39.8615574"],["-123.7255895","39.8617272"],["-123.7253782","39.8618854"],["-123.725219","39.8620082"],["-123.7251185","39.8620963"],["-123.7249865","39.8622861"],["-123.7246979","39.8628139"],["-123.7242079","39.8637116"],["-123.724093","39.863872"],["-123.7240087","39.8639646"],["-123.7238809","39.8640466"],["-123.7237338","39.8641049"],["-123.7236025","39.8641521"],["-123.7234511","39.8641744"],["-123.7232161","39.8641607"],["-123.7216791","39.8639722"],["-123.7215217","39.8639775"],["-123.7214308","39.8640115"],["-123.7213655","39.8640481"],["-123.7210927","39.8642368"],["-123.7208378","39.8644029"],["-123.7205761","39.8645695"],["-123.7200371","39.8649573"],["-123.7196026","39.865313"],["-123.7193204","39.8655733"],["-123.7191371","39.8657109"],["-123.7189645","39.865826"],["-123.7186408","39.8660618"],["-123.718502","39.8661411"],["-123.7183624","39.8661882"],["-123.7182148","39.8662105"],["-123.7180083","39.8662071"],["-123.7176884","39.8661675"],["-123.7176194","39.8661706"],["-123.7175756","39.8661877"],["-123.717521","39.8662425"],["-123.7175058","39.8663279"],["-123.7175432","39.8664573"],["-123.7175611","39.8665587"],["-123.7175576","39.8666768"],["-123.7175251","39.8667904"],["-123.7174647","39.8668926"],["-123.7173446","39.8670274"],["-123.7170867","39.8672914"],["-123.7168255","39.8675497"],["-123.7166728","39.8677516"],["-123.7164948","39.8679541"],["-123.7163229","39.868057"],["-123.7161365","39.8681422"],["-123.7159452","39.8682006"],["-123.7156795","39.8682401"],["-123.7155375","39.8682449"],["-123.7154164","39.8682415"],["-123.7142038","39.8681784"],["-123.7136202","39.868159"],["-123.7134874","39.8684633"],["-123.7133461","39.8687754"],["-123.7132069","39.8690689"],["-123.7130332","39.8694163"],["-123.7121633","39.8705019"],["-123.711784","39.8711956"],["-123.7113373","39.8718915"],["-123.7108624","39.872641"],["-123.7107311","39.8728974"],["-123.7105888","39.8732504"],["-123.710443","39.8737288"],["-123.7103954","39.8740369"],["-123.7104002","39.874359"],["-123.7104207","39.8745393"],["-123.7104621","39.8747536"],["-123.710507","39.8748675"],["-123.7105748","39.8749789"],["-123.7106644","39.8750845"],["-123.7108518","39.8752347"],["-123.7113678","39.8756309"],["-123.7115832","39.8758683"],["-123.711728","39.8760586"],["-123.7118304","39.8762315"],["-123.7119369","39.876448"],["-123.7120487","39.8767449"],["-123.7121652","39.8769688"],["-123.7123074","39.8771483"],["-123.7124701","39.8772432"],["-123.7126737","39.8773278"],["-123.7128803","39.8773913"],["-123.7131156","39.8774504"],["-123.7133328","39.877521"],["-123.7135582","39.8776056"],["-123.7137187","39.8776847"],["-123.7138742","39.8777947"],["-123.7143551","39.8781922"],["-123.7147522","39.8785415"],["-123.7149075","39.8786494"],["-123.7150381","39.8787233"],["-123.7152255","39.8787845"],["-123.7154456","39.8788348"],["-123.7159305","39.878878"],["-123.7164427","39.8788866"],["-123.7167507","39.8788779"],["-123.7171192","39.8788438"],["-123.7175073","39.8787642"],["-123.7177592","39.8786869"],["-123.7180711","39.8785778"],["-123.718332","39.878466"],["-123.7184736","39.8783736"],["-123.7186152","39.8782402"],["-123.7188939","39.8779382"],["-123.7190372","39.8777224"],["-123.7192842","39.8775059"],["-123.7195205","39.8773328"],["-123.7197458","39.8771957"],["-123.719883","39.8771357"],["-123.7200348","39.8770921"],["-123.7202323","39.8770562"],["-123.7204091","39.8770368"],["-123.7205664","39.8770295"],["-123.7208253","39.8770532"],["-123.7211512","39.8771355"],["-123.7215862","39.8772596"],["-123.7219464","39.8774716"],["-123.722108","39.8775533"],["-123.7222721","39.8776366"],["-123.7227069","39.8778039"],["-123.72295","39.8778843"],["-123.7231774","39.8779421"],["-123.7235603","39.8780096"],["-123.7239244","39.8780635"],["-123.7242176","39.8780818"],["-123.7246211","39.8780835"],["-123.7269904","39.8780463"],["-123.7277851","39.87802"],["-123.7284051","39.8780216"],["-123.7300392","39.8780104"],["-123.730529","39.8780556"],["-123.7309371","39.8781129"],["-123.7312921","39.8781922"],["-123.7317527","39.8783431"],["-123.732121","39.8785343"],["-123.7323858","39.8786881"],["-123.7325814","39.878846"],["-123.7327495","39.8790021"],["-123.7328974","39.8791632"],["-123.7332088","39.8796278"],["-123.7335295","39.8803495"],["-123.7338302","39.8810924"],["-123.7342551","39.8819947"],["-123.7344626","39.8823461"],["-123.7347436","39.8827574"],["-123.7350659","39.8831979"],["-123.7353319","39.8836395"],["-123.7355457","39.8840828"],["-123.7357519","39.8845122"],["-123.7359501","39.8849159"],["-123.7360486","39.8851384"],["-123.7361741","39.8853404"],["-123.7363248","39.8855625"],["-123.7365062","39.8857884"],["-123.7368139","39.8861196"],["-123.7371168","39.8863822"],["-123.7373671","39.8865594"],["-123.7381593","39.8870474"],["-123.7385101","39.8872234"],["-123.738817","39.8873319"],["-123.7391127","39.8874067"],["-123.7393867","39.8874567"],["-123.7396683","39.8874784"],["-123.7399101","39.8874731"],["-123.7402889","39.8874474"],["-123.7430971","39.8870305"],["-123.7443602","39.8868444"],["-123.7447695","39.8867903"],["-123.7450045","39.8868005"],["-123.7454267","39.886837"],["-123.7460888","39.8869104"],["-123.7464412","39.8869783"],["-123.7467822","39.8870667"],["-123.7472583","39.8872909"],["-123.747394","39.8874016"],["-123.747516","39.8875187"],["-123.7476255","39.8876957"],["-123.7477353","39.887935"],["-123.7478727","39.8884593"],["-123.7479684","39.888909"],["-123.7480366","39.8892633"],["-123.7480708","39.8895572"],["-123.7480985","39.8900645"],["-123.7481314","39.8902838"],["-123.7481956","39.8904363"],["-123.7482856","39.890566"],["-123.7483833","39.8906926"],["-123.7485444","39.8908267"],["-123.7487455","39.8909672"],["-123.7490012","39.8911345"],["-123.7492873","39.8912623"],["-123.749595","39.8913585"],["-123.7499649","39.8914317"],["-123.7503424","39.8914821"],["-123.7508124","39.891553"],["-123.7516217","39.8917057"],["-123.7521155","39.8917678"],["-123.7525705","39.8918114"],["-123.7527551","39.8918462"],["-123.7529356","39.8918963"],["-123.7531427","39.8919609"],["-123.7533268","39.8920593"],["-123.753501","39.8921665"],["-123.753666","39.892294"],["-123.753781","39.8924027"],["-123.753872","39.8925253"],["-123.7539589","39.8926795"],["-123.7540279","39.8928525"],["-123.7540709","39.8932268"],["-123.7540526","39.8935122"],["-123.753947","39.894493"],["-123.753907","39.8947788"],["-123.7538421","39.8949878"],["-123.7537361","39.8951891"],["-123.7536173","39.8953412"],["-123.7534859","39.8954777"],["-123.7533397","39.8956015"],["-123.7531331","39.8957245"],["-123.7528306","39.8958597"],["-123.7520738","39.8961433"],["-123.751636","39.8963246"],["-123.7514039","39.8964539"],["-123.7512221","39.8965694"],["-123.7510425","39.8967062"],["-123.7508752","39.8968446"],["-123.7507372","39.8970006"],["-123.7506314","39.8971883"],["-123.7505634","39.8973815"],["-123.7505304","39.8975386"],["-123.7505452","39.897687"],["-123.7505745","39.8978218"],["-123.7507046","39.8981452"],["-123.7509625","39.8985572"],["-123.7512307","39.8989025"],["-123.7514555","39.8991253"],["-123.7517583","39.8993704"],["-123.7521615","39.8996181"],["-123.7529244","39.8999476"],["-123.7534554","39.9001762"],["-123.7539431","39.9003892"],["-123.7541539","39.9004973"],["-123.7543754","39.9006223"],["-123.7545828","39.9007963"],["-123.7547035","39.9009678"],["-123.7547854","39.9011042"],["-123.7548084","39.9012452"],["-123.7548259","39.9014311"],["-123.7548022","39.9015964"],["-123.7547444","39.9017181"],["-123.7546725","39.9018341"],["-123.7545604","39.9019548"],["-123.7544423","39.9020544"],["-123.7542806","39.9021535"],["-123.7541114","39.9022326"],["-123.7539089","39.902278"],["-123.7536288","39.9023019"],["-123.7529493","39.9023229"],["-123.7526384","39.9023631"],["-123.7523444","39.9024281"],["-123.7520546","39.902504"],["-123.7517448","39.9025951"],["-123.7514429","39.9026978"],["-123.7511278","39.9028148"],["-123.750886","39.9029222"],["-123.7506875","39.9030508"],["-123.7504159","39.903261"],["-123.7501717","39.9034653"],["-123.7499223","39.9036854"],["-123.7497372","39.9038869"],["-123.7495606","39.9041367"],["-123.7494488","39.904359"],["-123.7494057","39.9045089"],["-123.7493727","39.9047558"],["-123.7493664","39.9050243"],["-123.7494287","39.9055945"],["-123.7494566","39.905763"],["-123.7495146","39.9059137"],["-123.7495757","39.9060303"],["-123.7496486","39.9061411"],["-123.7498341","39.9063722"],["-123.7499672","39.9064876"],["-123.7502099","39.9066189"],["-123.7504479","39.9067123"],["-123.7507658","39.9067983"],["-123.7511419","39.9068732"],["-123.7520965","39.9070033"],["-123.75248","39.9070717"],["-123.7528283","39.907139"],["-123.7531624","39.9072062"],["-123.7535844","39.9072912"],["-123.7536838","39.9073058"],["-123.7538142","39.9073218"],["-123.7540208","39.9073308"],["-123.7542879","39.9073183"],["-123.7545016","39.9072912"],["-123.754727","39.9072469"],["-123.7549208","39.9071809"],["-123.755133","39.9070969"],["-123.7568071","39.9063533"],["-123.7570193","39.9062784"],["-123.7571783","39.9062378"],["-123.7573111","39.9062163"],["-123.7574414","39.9062067"],["-123.7575862","39.9061996"],["-123.757729","39.9062078"],["-123.7579711","39.906252"],["-123.7581174","39.9062916"],["-123.7582483","39.906336"],["-123.7583939","39.9064082"],["-123.7585268","39.9064845"],["-123.7586492","39.9065754"],["-123.7587584","39.9066723"],["-123.7588453","39.9067785"],["-123.7589163","39.9068825"],["-123.7589718","39.9069816"],["-123.7590124","39.9070848"],["-123.7590599","39.9073027"],["-123.7590557","39.9074858"],["-123.7590071","39.9076658"],["-123.7589085","39.9078769"],["-123.7587144","39.9081525"],["-123.7579129","39.9091614"],["-123.7576769","39.9095616"],["-123.757581","39.9098413"],["-123.7575692","39.9101526"],["-123.7576215","39.9104026"],["-123.7577323","39.9107042"],["-123.7578081","39.9110812"],["-123.7578395","39.911483"],["-123.7579108","39.9117319"],["-123.758643","39.9130208"],["-123.75897","39.9133258"],["-123.7593213","39.9135498"],["-123.7597569","39.9137209"],["-123.7600452","39.9138722"],["-123.7603219","39.9140662"],["-123.7606494","39.9143877"],["-123.7608836","39.9145923"],["-123.7610961","39.9147313"],["-123.7613724","39.9148625"],["-123.761847","39.9149915"],["-123.7625442","39.9151036"],["-123.7631032","39.9151989"],["-123.7636052","39.9153473"],["-123.7641497","39.9155545"],["-123.7647708","39.9158005"],["-123.7658943","39.9162344"],["-123.766454","39.9165147"],["-123.7667539","39.9167259"],["-123.7670228","39.9169558"],["-123.7671599","39.9171008"],["-123.767248","39.9172925"],["-123.7673457","39.9175219"],["-123.767422","39.9178361"],["-123.7674035","39.9182137"],["-123.7672713","39.9185937"],["-123.7670328","39.9188808"],["-123.7667698","39.9190584"],["-123.7663241","39.9192463"],["-123.7659563","39.9193421"],["-123.7655826","39.9194403"],["-123.7652752","39.9195488"],["-123.7650376","39.9196723"],["-123.7647764","39.9198268"],["-123.7644918","39.9200738"],["-123.761714","39.9227383"],["-123.7613036","39.923274"],["-123.7611868","39.9234962"],["-123.7611041","39.9237139"],["-123.7610155","39.9240879"],["-123.7609591","39.9244861"],["-123.7608944","39.9252676"],["-123.7608348","39.9258989"],["-123.760764","39.9265425"],["-123.7607183","39.9267381"],["-123.76068","39.926912"],["-123.760655","39.9270854"],["-123.7606646","39.9272786"],["-123.7607061","39.9274695"],["-123.7607457","39.9276213"],["-123.7607799","39.9277831"],["-123.7608705","39.9280603"],["-123.7609892","39.9284048"],["-123.7611541","39.9287325"],["-123.7613628","39.9290334"],["-123.7615979","39.9293123"],["-123.761836","39.929555"],["-123.7628676","39.9304758"],["-123.7635353","39.9310692"],["-123.7639735","39.9314154"],["-123.7643994","39.9317143"],["-123.7649257","39.9320254"],["-123.7658802","39.9324686"],["-123.7687384","39.9334611"],["-123.7695428","39.9337827"],["-123.7705197","39.9343528"],["-123.7708404","39.9345776"],["-123.7763374","39.93916"],["-123.7773007","39.9400214"],["-123.7776006","39.9403684"],["-123.7778384","39.9407546"],["-123.7781819","39.9414636"],["-123.7807286","39.9474819"],["-123.7810339","39.9483646"],["-123.7811477","39.9489386"],["-123.7811813","39.9493301"],["-123.7811879","39.9499153"],["-123.7811011","39.9505995"],["-123.7809715","39.9511067"],["-123.7808062","39.9516332"],["-123.7802447","39.9529819"],["-123.7799682","39.9538978"],["-123.7799211","39.9543607"],["-123.7799203","39.9548721"],["-123.7799486","39.9552672"],["-123.7800203","39.9557069"],["-123.7801236","39.956091"],["-123.7802981","39.9565319"],["-123.7805091","39.9569943"],["-123.7808347","39.9575102"],["-123.7811286","39.9579174"],["-123.781477","39.9582829"],["-123.7818362","39.9586227"],["-123.7822094","39.9589198"],["-123.7827572","39.9592849"],["-123.7833951","39.9596819"],["-123.7861041","39.9613715"],["-123.786652","39.9616957"],["-123.7872762","39.9620326"],["-123.7879156","39.9623058"],["-123.7885562","39.9625617"],["-123.7891925","39.9627774"],["-123.7907852","39.9632539"],["-123.7916522","39.9635394"],["-123.7919928","39.9636726"],["-123.7923986","39.963873"],["-123.7928814","39.9641491"],["-123.7938932","39.9648118"],["-123.7945752","39.965397"],["-123.7948146","39.9656368"],["-123.7950003","39.965853"],["-123.7954595","39.9664455"],["-123.7957301","39.9668724"],["-123.7960928","39.9674925"],["-123.7964552","39.9681435"],["-123.7976457","39.9703201"],["-123.8006106","39.9756346"],["-123.8009735","39.9764266"],["-123.8019151","39.9787285"],["-123.8022528","39.9796678"],["-123.8023637","39.9800775"],["-123.8023968","39.9804808"],["-123.8023977","39.9809377"],["-123.8023483","39.9812279"],["-123.8022741","39.9815416"],["-123.8021095","39.9820156"],["-123.8018924","39.982426"],["-123.8017124","39.9827292"],["-123.8013239","39.9831879"],["-123.8009986","39.9834962"],["-123.8006755","39.9837764"],["-123.800315","39.9840149"],["-123.7998779","39.984263"],["-123.798316","39.984933"],["-123.7976296","39.9852395"],["-123.7971385","39.985502"],["-123.7964428","39.9859887"],["-123.7960982","39.9862924"],["-123.7956479","39.9867352"],["-123.7944927","39.9879365"],["-123.7941313","39.9882477"],["-123.7937673","39.9885133"],["-123.7933102","39.9887722"],["-123.7926018","39.9890629"],["-123.7907805","39.9897438"],["-123.7903063","39.9899587"],["-123.7899131","39.9902128"],["-123.7894818","39.990557"],["-123.7892052","39.9908724"],["-123.7889425","39.9912081"],["-123.7887571","39.9915657"],["-123.7885998","39.9919316"],["-123.7885249","39.9922631"],["-123.7885104","39.9929385"],["-123.7885405","39.9940375"],["-123.7885716","39.9952028"],["-123.788548","39.9956099"],["-123.7884776","39.9959838"],["-123.7883641","39.9963853"],["-123.7881827","39.9968457"],["-123.7879184","39.9972974"],["-123.7876382","39.9976772"],["-123.7873145","39.9980397"],["-123.7868025","39.9985012"],["-123.7859188","39.9992527"],["-123.7841366","40.0007689"],["-123.7838012","40.0010704"],["-123.7836557","40.0012173"],["-123.7835534","40.0013423"],["-123.7834466","40.0014996"],["-123.7833454","40.0016957"],["-123.7832558","40.001905"],["-123.7832032","40.0020666"],["-123.7831781","40.0022822"],["-123.7831725","40.0028894"],["-123.7831808","40.0033642"],["-123.78323","40.0036286"],["-123.7832925","40.0038185"],["-123.783378","40.0039869"],["-123.7834959","40.0041368"],["-123.7836239","40.0042914"],["-123.7837661","40.0044238"],["-123.7840541","40.0046267"],["-123.7842895","40.0047499"],["-123.7844642","40.004826"],["-123.7846871","40.0048908"],["-123.7851436","40.0049966"],["-123.7863217","40.0052164"],["-123.7866112","40.0052971"],["-123.7868238","40.0053804"],["-123.7870687","40.0054934"],["-123.7873365","40.0056564"],["-123.7874892","40.0057681"],["-123.787575","40.0058512"],["-123.7877306","40.0060225"],["-123.7885564","40.0070743"],["-123.7892938","40.0079303"],["-123.7896862","40.0084139"],["-123.7899314","40.0088002"],["-123.7900726","40.009085"],["-123.7901903","40.0093689"],["-123.7902999","40.0096868"],["-123.7906664","40.0106657"],["-123.7907316","40.0108189"],["-123.7907856","40.0109457"],["-123.7908246","40.0110392"],["-123.7908804","40.0111691"],["-123.7909112","40.0112434"],["-123.7909884","40.0114966"],["-123.7910779","40.0118681"],["-123.7910911","40.0120264"],["-123.7910733","40.0121786"],["-123.7910271","40.0123286"],["-123.7909792","40.0124822"],["-123.7909384","40.0126474"],["-123.7909207","40.0128159"],["-123.7909195","40.0130481"],["-123.790924","40.0132343"],["-123.7909528","40.0133641"],["-123.7910285","40.0135382"],["-123.7911195","40.013717"],["-123.7912891","40.0139613"],["-123.7914437","40.0142421"],["-123.7915044","40.014417"],["-123.7915389","40.0146344"],["-123.7915304","40.0150141"],["-123.7914519","40.0153127"],["-123.7913692","40.0155485"],["-123.7913257","40.0157431"],["-123.7913109","40.0159625"],["-123.7913225","40.0162903"],["-123.7913498","40.0168989"],["-123.7913541","40.0176486"],["-123.7912592","40.0183"],["-123.791284","40.0187314"],["-123.7914072","40.0190974"],["-123.791602","40.0194029"],["-123.7917892","40.0196571"],["-123.7919711","40.0198288"],["-123.7921289","40.0199995"],["-123.7922841","40.0201939"],["-123.792847","40.0206928"],["-123.7931526","40.0210143"],["-123.7933551","40.0213229"],["-123.7933762","40.0213968"],["-123.7935548","40.021944"],["-123.7937364","40.0223873"],["-123.7938352","40.0225491"],["-123.7939259","40.0227396"],["-123.7939906","40.0229467"],["-123.7940997","40.0235715"],["-123.7941349","40.0238017"],["-123.7941261","40.0240197"],["-123.794078","40.0243025"],["-123.7940271","40.0246455"],["-123.7939279","40.0249979"],["-123.7937424","40.0256331"],["-123.7937046","40.0258663"],["-123.793686","40.0260683"],["-123.7936454","40.0273257"],["-123.7936669","40.0276697"],["-123.7937507","40.0279581"],["-123.7939049","40.0282472"],["-123.7939463","40.0283467"],["-123.7939825","40.0285165"],["-123.7939774","40.0287316"],["-123.7939501","40.0290041"],["-123.7939214","40.0296887"],["-123.7939032","40.0300557"],["-123.7937501","40.0311855"],["-123.7936471","40.0318346"],["-123.7935736","40.0320632"],["-123.7934625","40.0322877"],["-123.7933593","40.0324755"],["-123.7932699","40.0326815"],["-123.7932181","40.0329667"],["-123.793173","40.0333441"],["-123.7931364","40.0337894"],["-123.793068","40.0340941"],["-123.7929963","40.034243"],["-123.7929012","40.034346"],["-123.7927474","40.0344505"],["-123.7920347","40.0348558"],["-123.7916276","40.0350844"],["-123.7913045","40.0352542"],["-123.7909018","40.0353707"],["-123.7901787","40.0355461"],["-123.7899496","40.0355581"],["-123.7896566","40.0355554"],["-123.7892233","40.0355393"],["-123.7888681","40.0355031"],["-123.7885327","40.0354657"],["-123.7882593","40.0354298"],["-123.787997","40.0353687"],["-123.7877387","40.0352975"],["-123.7872767","40.0351277"],["-123.7859348","40.0345593"],["-123.785648","40.0344156"],["-123.7853495","40.0342118"],["-123.7849192","40.0338091"],["-123.7846963","40.0336214"],["-123.7844764","40.0334427"],["-123.7839044","40.0330144"],["-123.7835587","40.0327983"],["-123.7831687","40.0325993"],["-123.7827452","40.0324257"],["-123.7823325","40.0322457"],["-123.7819897","40.0321177"],["-123.7816322","40.0320018"],["-123.7813022","40.0319289"],["-123.7808083","40.0318422"],["-123.7805011","40.0318337"],["-123.7801468","40.0318397"],["-123.7795914","40.0318912"],["-123.7791388","40.0319704"],["-123.7786764","40.0320761"],["-123.7781397","40.0322317"],["-123.7777918","40.0323782"],["-123.7773271","40.0325976"],["-123.7769766","40.0328014"],["-123.7766968","40.0330129"],["-123.7764603","40.0332277"],["-123.7761468","40.0335935"],["-123.7759039","40.0339671"],["-123.7757557","40.034318"],["-123.7756652","40.0346406"],["-123.7756168","40.0349627"],["-123.7755953","40.0354535"],["-123.7755902","40.0357327"],["-123.7756141","40.0359961"],["-123.7756934","40.0363533"],["-123.7757968","40.0366057"],["-123.7759494","40.0369399"],["-123.7760753","40.0371573"],["-123.7763951","40.0375868"],["-123.7794068","40.0412932"],["-123.780582","40.042718"],["-123.7808751","40.0430516"],["-123.7812269","40.0434844"],["-123.7824107","40.0450219"],["-123.7827705","40.045428"],["-123.7831333","40.0457845"],["-123.7834909","40.0461028"],["-123.7838576","40.0463889"],["-123.7842211","40.0466318"],["-123.7845727","40.0468569"],["-123.7849212","40.0470515"],["-123.7853567","40.0472618"],["-123.7858015","40.0474534"],["-123.7864282","40.0476883"],["-123.7872009","40.0479273"],["-123.7886015","40.0483379"],["-123.7891716","40.0485179"],["-123.7896507","40.048687"],["-123.7901035","40.0488827"],["-123.7905088","40.0490955"],["-123.7908877","40.0493354"],["-123.7912471","40.0496083"],["-123.7915415","40.0498746"],["-123.791811","40.0501674"],["-123.7920719","40.0504951"],["-123.792294","40.0508146"],["-123.7924912","40.0511895"],["-123.7926486","40.0515554"],["-123.7927426","40.0518844"],["-123.7928167","40.0522207"],["-123.7928509","40.0525909"],["-123.7928511","40.0529924"],["-123.792808","40.053363"],["-123.7927388","40.0536982"],["-123.7926204","40.0540641"],["-123.792419","40.0545269"],["-123.7922323","40.0548441"],["-123.7920281","40.0551356"],["-123.791758","40.0554654"],["-123.7914212","40.0558075"],["-123.7911166","40.0560672"],["-123.7907495","40.0563312"],["-123.790367","40.0565601"],["-123.7851511","40.0593765"],["-123.7847305","40.0596121"],["-123.7844496","40.0598146"],["-123.7842071","40.0600208"],["-123.7839584","40.0602787"],["-123.7837483","40.0605595"],["-123.7835502","40.0608996"],["-123.7834219","40.0612232"],["-123.7833309","40.0615005"],["-123.7832942","40.0617492"],["-123.7832801","40.0619768"],["-123.7832886","40.0622021"],["-123.7833204","40.06248"],["-123.783381","40.0627209"],["-123.7834518","40.0629306"],["-123.7835566","40.0631353"],["-123.7838049","40.0635358"],["-123.7840701","40.063844"],["-123.7843217","40.0640733"],["-123.7849672","40.0645672"],["-123.7853992","40.0648608"],["-123.7865658","40.0656329"],["-123.7870214","40.0659337"],["-123.7874376","40.0662236"],["-123.7877021","40.0664396"],["-123.7879956","40.0667109"],["-123.7882476","40.0670075"],["-123.788449","40.0672728"],["-123.7886797","40.0676588"],["-123.7890451","40.0683537"],["-123.7900785","40.070385"],["-123.7903134","40.0708645"],["-123.7903842","40.0710389"],["-123.7905087","40.0714236"],["-123.7908417","40.0724004"],["-123.7910043","40.0729652"],["-123.7910724","40.0732932"],["-123.7911035","40.0736088"],["-123.7910637","40.0739881"],["-123.7910073","40.0742454"],["-123.7909234","40.0744975"],["-123.7905259","40.0753407"],["-123.7897473","40.0769599"],["-123.7895248","40.0774899"],["-123.7894449","40.0778285"],["-123.789413","40.0781816"],["-123.7894288","40.0784933"],["-123.7894928","40.0788176"],["-123.7896163","40.0791558"],["-123.789889","40.0797308"],["-123.7902293","40.0804296"],["-123.7904588","40.08095"],["-123.7905632","40.0813179"],["-123.7906082","40.0816656"],["-123.7906239","40.0821443"],["-123.7905752","40.082572"],["-123.790504","40.0830595"],["-123.7903298","40.0839809"],["-123.7899169","40.0859259"],["-123.7898414","40.0863412"],["-123.789812","40.0867649"],["-123.7898124","40.0870889"],["-123.789881","40.0875322"],["-123.7900774","40.0883926"],["-123.7905271","40.0901499"],["-123.7907604","40.0909411"],["-123.7907908","40.0911057"],["-123.7908186","40.0912609"],["-123.7911083","40.0917768"],["-123.7913398","40.0920593"],["-123.791601","40.0923484"],["-123.7920661","40.0927609"],["-123.7935775","40.0939315"],["-123.7942263","40.0944798"],["-123.7945851","40.0948996"],["-123.7950729","40.095604"],["-123.7959132","40.0968982"],["-123.7963384","40.0976254"],["-123.7964865","40.098008"],["-123.7966271","40.0983858"],["-123.7967368","40.098795"],["-123.7967968","40.0991604"],["-123.7968258","40.0994836"],["-123.7968382","40.09991"],["-123.7968275","40.1003545"],["-123.7967691","40.1007054"],["-123.7966831","40.1010911"],["-123.7964898","40.1017276"],["-123.796103","40.1027584"],["-123.7946121","40.1063418"],["-123.7939624","40.107933"],["-123.7939037","40.1081391"],["-123.793824","40.1084534"],["-123.7930522","40.1103866"],["-123.7928069","40.1110916"],["-123.7927158","40.1115251"],["-123.7926494","40.1119691"],["-123.7926226","40.112293"],["-123.7926293","40.1126651"],["-123.7926764","40.1130783"],["-123.792741","40.1135325"],["-123.7928509","40.11396"],["-123.7930717","40.1145161"],["-123.7976751","40.1250051"],["-123.7986051","40.1270881"],["-123.798866","40.1276233"],["-123.7991728","40.1280369"],["-123.7994933","40.1284091"],["-123.7997875","40.1287158"],["-123.8054489","40.132979"],["-123.8063943","40.1337318"],["-123.8066523","40.1339839"],["-123.8068782","40.1342522"],["-123.8071345","40.1346019"],["-123.8073187","40.1348937"],["-123.8074828","40.135178"],["-123.8087756","40.1377013"],["-123.8088758","40.1379817"],["-123.8089794","40.138303"],["-123.8090324","40.1386446"],["-123.8090535","40.1390145"],["-123.8090243","40.139408"],["-123.8089722","40.1397275"],["-123.8088957","40.1400699"],["-123.8087387","40.1404347"],["-123.8085307","40.1408422"],["-123.8083391","40.141144"],["-123.808199","40.1413269"],["-123.8080323","40.1415289"],["-123.807859","40.1417199"],["-123.8075836","40.1419923"],["-123.8018299","40.1470432"],["-123.8014442","40.1473602"],["-123.8010051","40.1477036"],["-123.8006534","40.1479599"],["-123.7992213","40.1488473"],["-123.7979417","40.1496149"],["-123.7967713","40.1503243"],["-123.7964397","40.1505542"],["-123.7961418","40.150789"],["-123.7959388","40.150991"],["-123.7957538","40.1512029"],["-123.7955821","40.1514574"],["-123.7954217","40.1517757"],["-123.7953133","40.1520646"],["-123.7952346","40.1523713"],["-123.7952123","40.1528762"],["-123.7952525","40.1532788"],["-123.7954294","40.1545909"],["-123.795457","40.1548504"],["-123.7954617","40.155137"],["-123.7954443","40.1554258"],["-123.7954009","40.1557076"],["-123.7952996","40.1560332"],["-123.7951342","40.1563378"],["-123.794973","40.1565861"],["-123.7948333","40.1567585"],["-123.7946672","40.1569327"],["-123.7944855","40.1571102"],["-123.7937581","40.1576637"],["-123.7930398","40.158186"],["-123.7926459","40.1584949"],["-123.792447","40.1586814"],["-123.7922637","40.158883"],["-123.7919887","40.1592285"],["-123.7914363","40.1599729"],["-123.7910874","40.1604276"],["-123.7909073","40.1606098"],["-123.7907105","40.1607844"],["-123.7904872","40.160963"],["-123.7902095","40.1611418"],["-123.7898952","40.1613211"],["-123.7892528","40.1616381"],["-123.7882791","40.1621026"],["-123.7877535","40.1623736"],["-123.7875043","40.1625336"],["-123.7872728","40.162714"],["-123.7870568","40.1628967"],["-123.7868378","40.1631056"],["-123.7866369","40.1633336"],["-123.7862303","40.1638612"],["-123.7860688","40.1640796"],["-123.7857191","40.1645272"],["-123.7855578","40.1647093"],["-123.7852272","40.1650249"],["-123.7850441","40.1651809"],["-123.7848544","40.1653217"],["-123.7827894","40.1667747"],["-123.7825677","40.1669588"],["-123.7823714","40.167135"],["-123.7821653","40.1673431"],["-123.7819721","40.1675676"],["-123.7818062","40.167789"],["-123.7816314","40.1680467"],["-123.7815093","40.1682763"],["-123.7813024","40.1687728"],["-123.7812451","40.1689907"],["-123.7811986","40.1692305"],["-123.7811641","40.1694573"],["-123.7811567","40.1700258"],["-123.7811644","40.1703053"],["-123.7812198","40.1706968"],["-123.7813453","40.1715495"],["-123.7813881","40.1719165"],["-123.7814426","40.1726269"],["-123.781445","40.1730398"],["-123.7814138","40.1738099"],["-123.7812224","40.1767109"],["-123.7811957","40.1769643"],["-123.7810728","40.1773945"],["-123.7809765","40.1775879"],["-123.7808616","40.1778074"],["-123.7807216","40.1780447"],["-123.7805669","40.1782733"],["-123.7803865","40.1785159"],["-123.7802133","40.1787072"],["-123.7799765","40.178923"],["-123.7797219","40.1791437"],["-123.7794803","40.1793139"],["-123.779208","40.1794839"],["-123.7789518","40.1796454"],["-123.7785731","40.179845"],["-123.7778922","40.1802149"],["-123.7774027","40.1805036"],["-123.7771307","40.1807036"],["-123.7767942","40.1810122"],["-123.7766667","40.1811517"],["-123.77652","40.1813241"],["-123.7763822","40.1815256"],["-123.7762711","40.1817252"],["-123.7757811","40.1825156"],["-123.7712555","40.1900655"],["-123.7710694","40.1904174"],["-123.7709759","40.1906926"],["-123.7709138","40.1909633"],["-123.7708356","40.1915116"],["-123.7708461","40.1918167"],["-123.7708781","40.1921938"],["-123.7709514","40.1925119"],["-123.7710792","40.1928784"],["-123.7712159","40.1931707"],["-123.7713855","40.1934789"],["-123.7716034","40.193788"],["-123.7718255","40.1940418"],["-123.7720805","40.1942984"],["-123.7723642","40.1945422"],["-123.7726542","40.1947472"],["-123.7731111","40.1950191"],["-123.7740551","40.1955785"],["-123.774475","40.1958655"],["-123.7748294","40.1961337"],["-123.7750694","40.1963608"],["-123.7752764","40.1966038"],["-123.7754963","40.1968904"],["-123.7758089","40.1973665"],["-123.7765731","40.1986068"],["-123.7768818","40.199024"],["-123.7771327","40.1993176"],["-123.7773648","40.1995243"],["-123.7776881","40.1997723"],["-123.7779943","40.1999707"],["-123.7783778","40.2001835"],["-123.7792019","40.2005142"],["-123.7805088","40.2008639"],["-123.7822963","40.2013312"],["-123.7838766","40.2017732"],["-123.7850059","40.2022287"],["-123.7853786","40.2024307"],["-123.7862242","40.2029444"],["-123.7878527","40.2039813"],["-123.7887892","40.2045928"],["-123.7891144","40.2048277"],["-123.7894764","40.205104"],["-123.7898887","40.2054888"],["-123.7902338","40.2058451"],["-123.7905923","40.2062335"],["-123.7908641","40.2065913"],["-123.791085","40.206918"],["-123.7912985","40.2072379"],["-123.7914779","40.2075607"],["-123.7916571","40.2079106"],["-123.7918099","40.2082939"],["-123.791957","40.2087639"],["-123.7920659","40.2091643"],["-123.7921721","40.2096324"],["-123.7924226","40.2118429"],["-123.7926666","40.2147441"],["-123.7927594","40.2154803"],["-123.7928658","40.2158487"],["-123.7929846","40.2161912"],["-123.793138","40.2165374"],["-123.7933573","40.2168765"],["-123.7935744","40.2171804"],["-123.7940244","40.217682"],["-123.7945643","40.2181326"],["-123.7948919","40.2183517"],["-123.7952148","40.2185511"],["-123.795565","40.2187392"],["-123.7960233","40.2189248"],["-123.7983621","40.2197455"],["-123.7995106","40.2201537"],["-123.8004566","40.220453"],["-123.8007949","40.2205367"],["-123.8011918","40.2205991"],["-123.8016129","40.2206397"],["-123.8020087","40.2206689"],["-123.8024105","40.2206727"],["-123.8028051","40.220646"],["-123.8031818","40.2206066"],["-123.8035883","40.2205489"],["-123.8040197","40.2204476"],["-123.8044723","40.2203281"],["-123.8049152","40.2201756"],["-123.8053005","40.2200337"],["-123.8056878","40.2198707"],["-123.806606","40.2193372"],["-123.8073827","40.2188535"],["-123.8080819","40.2184174"],["-123.8084862","40.2181838"],["-123.8088103","40.2180322"],["-123.809126","40.2178997"],["-123.8123215","40.2168011"],["-123.8132438","40.2165008"],["-123.8135751","40.2164254"],["-123.8138311","40.2163861"],["-123.814091","40.2163596"],["-123.8143879","40.2163372"],["-123.814778","40.216341"],["-123.8153047","40.2163616"],["-123.8157778","40.2164296"],["-123.8161363","40.216522"],["-123.8163844","40.2166052"],["-123.8166437","40.216705"],["-123.8169355","40.2168346"],["-123.8174531","40.2171105"],["-123.8225174","40.2200318"],["-123.8234729","40.2205824"],["-123.8238159","40.2208547"],["-123.824133","40.2211234"],["-123.8244562","40.2214077"],["-123.827549","40.2245871"],["-123.827915","40.2249996"],["-123.8281988","40.2253474"],["-123.8284288","40.2256882"],["-123.8286483","40.2260154"],["-123.8292439","40.2272377"],["-123.8297544","40.2283308"],["-123.8303806","40.2296758"],["-123.830578","40.2300352"],["-123.8307863","40.2303964"],["-123.831401","40.2312659"],["-123.8321767","40.2322546"],["-123.8325994","40.2328343"],["-123.8327992","40.2331537"],["-123.8329465","40.2334817"],["-123.8330622","40.2338141"],["-123.8331467","40.2341379"],["-123.8332023","40.2344359"],["-123.8332399","40.2346961"],["-123.8332552","40.2349799"],["-123.8332508","40.2352697"],["-123.8332239","40.2355224"],["-123.8331785","40.2357785"],["-123.8330688","40.2361312"],["-123.8329472","40.23649"],["-123.8320239","40.2390041"],["-123.8318215","40.2396268"],["-123.8316707","40.2403677"],["-123.8316316","40.2407407"],["-123.8316013","40.2411693"],["-123.8315617","40.2487451"],["-123.8315694","40.2493065"],["-123.831592","40.2497286"],["-123.8316357","40.2500867"],["-123.8317038","40.2504224"],["-123.831784","40.2507688"],["-123.8320849","40.2515689"],["-123.8322813","40.2519846"],["-123.8326758","40.2526839"],["-123.8328658","40.252952"],["-123.8332685","40.253439"],["-123.8334624","40.2536636"],["-123.833921","40.2541241"],["-123.8344712","40.2545857"],["-123.8347936","40.2548238"],["-123.8351029","40.2550336"],["-123.8354344","40.2552362"],["-123.8368998","40.2560215"],["-123.8403902","40.2578032"],["-123.8408571","40.2580085"],["-123.8428097","40.2587887"],["-123.8434173","40.2590651"],["-123.8438563","40.2592894"],["-123.8442297","40.2595278"],["-123.8445669","40.2597742"],["-123.8448335","40.2599995"],["-123.8453158","40.2604482"],["-123.8461736","40.2612851"],["-123.8465032","40.2616489"],["-123.8467185","40.2619349"],["-123.8468725","40.2622224"],["-123.8470041","40.2624959"],["-123.8471141","40.2627773"],["-123.8472679","40.2632905"],["-123.8474462","40.2638996"],["-123.8475805","40.2642899"],["-123.8477442","40.2645791"],["-123.8479417","40.2648418"],["-123.848168","40.2650937"],["-123.8484132","40.265327"],["-123.8487077","40.2655595"],["-123.8490251","40.2657778"],["-123.8500739","40.2664126"],["-123.8504747","40.2666729"],["-123.8510964","40.2671406"],["-123.8514076","40.2674326"],["-123.8516282","40.2676948"],["-123.8518309","40.2679644"],["-123.8520226","40.2682783"],["-123.852199","40.2686013"],["-123.8523163","40.2689463"],["-123.8524857","40.269622"],["-123.852648","40.2701335"],["-123.8527837","40.2705367"],["-123.8529308","40.2708074"],["-123.8530948","40.2710271"],["-123.8533225","40.2712336"],["-123.8535843","40.2714443"],["-123.8538683","40.2716286"],["-123.8541259","40.2717604"],["-123.8543848","40.271873"],["-123.8546373","40.2719738"],["-123.8549213","40.2720638"],["-123.8551615","40.2721074"],["-123.8553772","40.2721384"],["-123.8556098","40.2721531"],["-123.8558209","40.2721544"],["-123.8561084","40.27214"],["-123.8564006","40.27212"],["-123.856736","40.2720768"],["-123.8570844","40.2719832"],["-123.8580717","40.2715875"],["-123.8601358","40.2707311"],["-123.8606376","40.2705006"],["-123.8613053","40.270142"],["-123.8619417","40.2697808"],["-123.8627275","40.269315"],["-123.863242","40.2689884"],["-123.8642788","40.2681879"],["-123.8645528","40.267949"],["-123.8648607","40.2676711"],["-123.865435","40.2671636"],["-123.8659556","40.2668156"],["-123.8662765","40.266637"],["-123.8665719","40.2665121"],["-123.8669309","40.2663862"],["-123.8671415","40.2663236"],["-123.8673803","40.2662584"],["-123.8676784","40.2662054"],["-123.8679557","40.2661769"],["-123.8683193","40.266165"],["-123.8689212","40.2661834"],["-123.8693357","40.2662316"],["-123.8699224","40.2663548"],["-123.8701471","40.2664105"],["-123.870424","40.2664824"],["-123.8707611","40.2665906"],["-123.8711918","40.2667443"],["-123.8716727","40.2669338"],["-123.8721068","40.2671432"],["-123.8724931","40.2673519"],["-123.8727856","40.2675307"],["-123.8730865","40.267734"],["-123.8733875","40.2679931"],["-123.8735936","40.2682123"],["-123.8737886","40.2684543"],["-123.8740129","40.2688089"],["-123.8742435","40.2692765"],["-123.8746356","40.2701063"],["-123.8747941","40.2704048"],["-123.8751041","40.2708953"],["-123.8753336","40.2711686"],["-123.8755874","40.2714274"],["-123.8758837","40.2716625"],["-123.8762284","40.2718773"],["-123.8766055","40.2720874"],["-123.8772077","40.2723566"],["-123.8787246","40.2729984"],["-123.8797664","40.273578"],["-123.8813457","40.2745782"],["-123.8819086","40.2749925"],["-123.8824048","40.2753809"],["-123.8828278","40.2757613"],["-123.8832417","40.27616"],["-123.8838458","40.2767698"],["-123.8852427","40.2782618"],["-123.8862257","40.2793145"],["-123.8866652","40.2799025"],["-123.8868777","40.2802651"],["-123.8870112","40.2805697"],["-123.8871094","40.2809365"],["-123.8871876","40.2812899"],["-123.8874116","40.2823705"],["-123.887506","40.2826954"],["-123.8876049","40.2829899"],["-123.8877193","40.2832449"],["-123.8878382","40.2834823"],["-123.8880376","40.2837372"],["-123.8882679","40.2840006"],["-123.8885365","40.2842555"],["-123.8887779","40.2844393"],["-123.8890968","40.2846389"],["-123.8894148","40.2848037"],["-123.8897362","40.2849496"],["-123.8901061","40.2850793"],["-123.8905707","40.2852177"],["-123.8914719","40.2854077"],["-123.8921177","40.2855507"],["-123.8925405","40.2856801"],["-123.8929635","40.285845"],["-123.8935013","40.2861271"],["-123.894677","40.2868505"],["-123.8951523","40.2871715"],["-123.8953973","40.287384"],["-123.8955728","40.2875905"],["-123.8957401","40.2878104"],["-123.8958949","40.2880535"],["-123.8960529","40.2883486"],["-123.8961626","40.2886695"],["-123.8962439","40.2890123"],["-123.8962685","40.2893935"],["-123.8962389","40.2898143"],["-123.896157","40.2901839"],["-123.8960062","40.2906172"],["-123.8958289","40.2909521"],["-123.8954776","40.2914873"],["-123.893976","40.2935737"],["-123.8938441","40.2937794"],["-123.893731","40.2939964"],["-123.893611","40.2942493"],["-123.8921616","40.2979935"],["-123.8920957","40.2982699"],["-123.8920576","40.2985406"],["-123.8920502","40.2988749"],["-123.8920651","40.2992462"],["-123.8921084","40.2995526"],["-123.8925215","40.3013417"],["-123.8927043","40.3020775"],["-123.8928199","40.302361"],["-123.8929615","40.3026853"],["-123.8931234","40.3029938"],["-123.8933986","40.3033257"],["-123.8935963","40.303521"],["-123.8938032","40.3037085"],["-123.8940257","40.3038965"],["-123.8942613","40.3040582"],["-123.8945032","40.3042116"],["-123.894757","40.304354"],["-123.8950272","40.3044751"],["-123.8953184","40.3045877"],["-123.8957376","40.3047154"],["-123.8961796","40.304795"],["-123.8991548","40.3052177"],["-123.9003749","40.3053979"],["-123.900722","40.3054735"],["-123.9010568","40.3055761"],["-123.9014408","40.3057158"],["-123.9018538","40.3059139"],["-123.9021901","40.3061174"],["-123.9033278","40.3069939"],["-123.9052088","40.3084973"],["-123.9056095","40.3088582"],["-123.9063558","40.3095725"],["-123.9078744","40.311217"],["-123.9083502","40.3116725"],["-123.9087776","40.3120157"],["-123.9091845","40.3123104"],["-123.9096527","40.312584"],["-123.9100913","40.3127945"],["-123.9105325","40.3129796"],["-123.9130087","40.3137402"],["-123.9144836","40.3141878"],["-123.9149473","40.3143592"],["-123.9153908","40.3145349"],["-123.9158003","40.3147066"],["-123.916303","40.3149329"],["-123.9196905","40.3169058"],["-123.9200015","40.3171538"],["-123.9202399","40.3173824"],["-123.9204447","40.3176084"],["-123.920612","40.3178343"],["-123.9207366","40.3180558"],["-123.9208333","40.3182763"],["-123.9209064","40.3184995"],["-123.9209721","40.3187527"],["-123.9210001","40.3189811"],["-123.9210642","40.3195852"],["-123.921186","40.3209463"],["-123.9212899","40.3221461"],["-123.9215747","40.3251334"],["-123.9217","40.3257584"],["-123.921813","40.3260784"],["-123.9219493","40.3263865"],["-123.9220888","40.3266684"],["-123.9222431","40.3269236"],["-123.9224356","40.327216"],["-123.9226565","40.3274749"],["-123.9229325","40.3277614"],["-123.9234397","40.3281756"],["-123.9243944","40.3289204"],["-123.9259719","40.330177"],["-123.9264111","40.3305795"],["-123.9267433","40.3309289"],["-123.9280975","40.3325841"],["-123.9288977","40.3335261"],["-123.9296074","40.3342031"],["-123.9304951","40.3349471"],["-123.9325895","40.3366394"],["-123.9332986","40.3372364"],["-123.9335456","40.3374977"],["-123.9337389","40.3377336"],["-123.93391","40.3380383"],["-123.9340473","40.3383317"],["-123.9341377","40.3385809"],["-123.9342006","40.3388544"],["-123.9342163","40.339146"],["-123.9342143","40.3394414"],["-123.9341959","40.3397071"],["-123.9341365","40.3399293"],["-123.9340678","40.3401265"],["-123.9339087","40.3404251"],["-123.9334526","40.3410552"],["-123.9325367","40.3421599"],["-123.9321773","40.3426237"],["-123.9320328","40.3428916"],["-123.9319024","40.3431771"],["-123.9317865","40.343471"],["-123.9316984","40.3438335"],["-123.931668","40.3442609"],["-123.9315821","40.3446528"],["-123.931188","40.3458456"],["-123.930473","40.347305"],["-123.9302603","40.3477947"],["-123.9300892","40.3482266"],["-123.9299573","40.3486886"],["-123.9298212","40.3492936"],["-123.929567","40.3505837"],["-123.9293756","40.3512968"],["-123.9292158","40.3516431"],["-123.9290226","40.3519275"],["-123.928846","40.3521535"],["-123.9285881","40.3524231"],["-123.9282848","40.3526908"],["-123.9256779","40.3549038"],["-123.9236121","40.356624"],["-123.9221308","40.3577624"],["-123.9216305","40.3581637"],["-123.9213437","40.358434"],["-123.9211079","40.3587127"],["-123.920697","40.3593583"],["-123.9202419","40.3601979"],["-123.9199592","40.3607492"],["-123.9198821","40.3610375"],["-123.9198426","40.3613446"],["-123.9198318","40.3616769"],["-123.9198416","40.3619852"],["-123.9198772","40.3622254"],["-123.919947","40.362443"],["-123.9200707","40.3626752"],["-123.9202969","40.3629862"],["-123.9222516","40.3657563"],["-123.922673","40.3662895"],["-123.9234547","40.3670344"],["-123.9261386","40.3692724"],["-123.926391","40.3695422"],["-123.9265931","40.3698481"],["-123.9267357","40.3701494"],["-123.9268636","40.370448"],["-123.9269328","40.370772"],["-123.9269901","40.3711265"],["-123.9270042","40.3714133"],["-123.9269581","40.3717278"],["-123.926848","40.3720274"],["-123.9265082","40.372854"],["-123.9263344","40.3732352"],["-123.9262331","40.373601"],["-123.9261687","40.3739631"],["-123.9261223","40.3742914"],["-123.9261377","40.3745778"],["-123.926189","40.3748769"],["-123.9262813","40.375157"],["-123.9264167","40.3754499"],["-123.926586","40.3757512"],["-123.9269909","40.3764283"],["-123.9271751","40.3767487"],["-123.9273771","40.3771078"],["-123.9275246","40.3774445"],["-123.9276453","40.3777967"],["-123.9277538","40.3781562"],["-123.9278465","40.378624"],["-123.9279411","40.3791581"],["-123.9280766","40.3799777"],["-123.9282092","40.38072"],["-123.9283237","40.3811981"],["-123.9290699","40.3834723"],["-123.9298933","40.385861"],["-123.9300239","40.3861545"],["-123.9302003","40.3864817"],["-123.931058","40.3877526"],["-123.9315441","40.388477"],["-123.9322304","40.3895012"],["-123.9324209","40.3900086"],["-123.9325224","40.390484"],["-123.9326959","40.3914017"],["-123.9328123","40.3918385"],["-123.9329195","40.3921407"],["-123.9332809","40.3927727"],["-123.9341315","40.3940059"],["-123.9343518","40.394282"],["-123.9345931","40.3945289"],["-123.9348491","40.39474"],["-123.9351438","40.3949384"],["-123.9354351","40.3950994"],["-123.9357309","40.3952516"],["-123.9360393","40.395374"],["-123.9363724","40.3954868"],["-123.936705","40.3955667"],["-123.9370875","40.3956402"],["-123.9377142","40.3957147"],["-123.943931","40.3964165"],["-123.9445832","40.3965144"],["-123.9450833","40.3966019"],["-123.9455729","40.3967181"],["-123.9461074","40.3968776"],["-123.9466761","40.3970633"],["-123.9471581","40.3972586"],["-123.9476673","40.3974728"],["-123.9484751","40.3978704"],["-123.9488206","40.3980787"],["-123.9495157","40.3985269"],["-123.950207","40.3990751"],["-123.9504507","40.3992827"],["-123.9506639","40.3994851"],["-123.9509097","40.3997347"],["-123.9613948","40.4116297"],["-123.9617214","40.411996"],["-123.9620581","40.4123213"],["-123.9623727","40.412598"],["-123.9627043","40.4128515"],["-123.9630947","40.4130732"],["-123.9634454","40.4132517"],["-123.9637969","40.4134155"],["-123.9645164","40.4136801"],["-123.9650232","40.4138296"],["-123.9655259","40.4139402"],["-123.9660289","40.4140225"],["-123.9664922","40.4140638"],["-123.9669353","40.414075"],["-123.9674059","40.4140572"],["-123.9697824","40.4138691"],["-123.9711994","40.4137615"],["-123.9717168","40.4137633"],["-123.9722134","40.4137881"],["-123.9726991","40.4138706"],["-123.9731019","40.4139499"],["-123.9746759","40.4143861"],["-123.975485","40.4146151"],["-123.9767905","40.414998"],["-123.9771852","40.4151434"],["-123.9775682","40.4153113"],["-123.9779819","40.4155369"],["-123.9783826","40.4157926"],["-123.9787574","40.4160901"],["-123.9790252","40.4163687"],["-123.9792877","40.4166832"],["-123.9797564","40.4173728"],["-123.9809034","40.4191909"],["-123.9816171","40.4203387"],["-123.9818025","40.4206851"],["-123.9819107","40.4209697"],["-123.9819896","40.4213019"],["-123.9828578","40.4269305"],["-123.9829292","40.4272972"],["-123.9830172","40.4276025"],["-123.9831494","40.4279286"],["-123.9833099","40.4282187"],["-123.9834895","40.4285008"],["-123.9837175","40.4288233"],["-123.9845036","40.4301318"],["-123.984799","40.430658"],["-123.9849941","40.4310613"],["-123.9853758","40.4319194"],["-123.9859603","40.433237"],["-123.9862565","40.4336718"],["-123.9864261","40.4338547"],["-123.9866088","40.4340361"],["-123.9868353","40.4342419"],["-123.9870775","40.4344234"],["-123.9873252","40.4345818"],["-123.987644","40.4347622"],["-123.9880047","40.434936"],["-123.9883438","40.43507"],["-123.9886725","40.4351816"],["-123.9889614","40.4352656"],["-123.9893689","40.4353511"],["-123.991164","40.4356352"],["-123.9921483","40.4357837"],["-123.9954008","40.4362934"],["-123.9962067","40.4364899"],["-123.9966453","40.4366118"],["-123.9969125","40.436697"],["-123.9972927","40.4368374"],["-123.9978366","40.4370754"],["-123.9982819","40.437329"],["-123.9986848","40.4375806"],["-123.9990759","40.4378715"],["-124.0016565","40.44009"],["-124.0020248","40.4403971"],["-124.0046327","40.442639"],["-124.0050018","40.4429087"],["-124.0053104","40.4431103"],["-124.0056235","40.4432881"],["-124.0060272","40.4434793"],["-124.006357","40.4436263"],["-124.0066983","40.4437323"],["-124.0071307","40.443841"],["-124.0076136","40.443931"],["-124.0081151","40.4439862"],["-124.0085999","40.4440237"],["-124.0093021","40.4440256"],["-124.0138186","40.4439702"],["-124.0142679","40.4439516"],["-124.014836","40.4439035"],["-124.0153347","40.4438439"],["-124.0158574","40.4437617"],["-124.0163053","40.4436719"],["-124.0168629","40.4435365"],["-124.017447","40.4433749"],["-124.0180166","40.443182"],["-124.023777","40.4410154"],["-124.0249632","40.4406706"],["-124.0253894","40.4405604"],["-124.025744","40.4404851"],["-124.0266805","40.4403135"],["-124.0272019","40.4402244"],["-124.027865","40.4401433"],["-124.0282355","40.4401068"],["-124.0286465","40.4400678"],["-124.0289986","40.440047"],["-124.0305447","40.4399908"],["-124.0334987","40.4399195"],["-124.0339565","40.4399292"],["-124.0344401","40.4399706"],["-124.0349155","40.4400516"],["-124.0352796","40.440139"],["-124.0355844","40.4402236"],["-124.0359116","40.4403381"],["-124.0364076","40.4405388"],["-124.0370365","40.4409002"],["-124.0373162","40.4410927"],["-124.0375378","40.441268"],["-124.0379976","40.4417188"],["-124.038249","40.442027"],["-124.0384374","40.4422986"],["-124.0385921","40.4426009"],["-124.0387373","40.4429709"],["-124.038848","40.443314"],["-124.0389171","40.4439835"],["-124.038909","40.4442848"],["-124.0388818","40.444593"],["-124.0388037","40.4451194"],["-124.0387106","40.44575"],["-124.0386736","40.4461315"],["-124.0386832","40.4464771"],["-124.0387499","40.4467965"],["-124.0388119","40.4470407"],["-124.0389311","40.4473308"],["-124.0391004","40.4476281"],["-124.0393089","40.4479231"],["-124.0395182","40.4482055"],["-124.0397598","40.4485088"],["-124.0399892","40.4487439"],["-124.0402792","40.4489911"],["-124.042212","40.4505179"],["-124.0436336","40.4516321"],["-124.044116","40.4519788"],["-124.0446611","40.4523296"],["-124.0451724","40.4526079"],["-124.0457329","40.4528952"],["-124.0462233","40.4531107"],["-124.0467394","40.4533052"],["-124.0478273","40.4536384"],["-124.0489149","40.4538653"],["-124.0496209","40.4539707"],["-124.0502747","40.4540345"],["-124.0507902","40.4540655"],["-124.0611274","40.4542095"],["-124.0619032","40.4542253"],["-124.0629092","40.4542616"],["-124.0637347","40.4544187"],["-124.0639961","40.4544888"],["-124.0642179","40.4545605"],["-124.0643241","40.4545779"],["-124.0644276","40.4545806"],["-124.0646433","40.4546856"],["-124.0648821","40.4548132"],["-124.0651174","40.4549515"],["-124.0653298","40.4550952"],["-124.0655816","40.4552927"],["-124.065808","40.4554933"],["-124.0669039","40.4566012"],["-124.0680063","40.457687"],["-124.0682384","40.4578569"],["-124.0684826","40.4580091"],["-124.06879","40.4581718"],["-124.0690974","40.4583078"],["-124.0694444","40.4584196"],["-124.0698155","40.4585106"],["-124.070201","40.4585786"],["-124.071613","40.458754"],["-124.0722634","40.4588434"],["-124.0729791","40.4589519"],["-124.0741859","40.4591554"],["-124.0885553","40.4623689"],["-124.0891951","40.4625456"],["-124.0896688","40.4627314"],["-124.0900838","40.4629153"],["-124.090469","40.4631169"],["-124.0909217","40.4633847"],["-124.091375","40.4637292"],["-124.0917844","40.4641009"],["-124.0922767","40.4646447"],["-124.0934818","40.466003"],["-124.0940279","40.4666061"],["-124.0973748","40.4702273"],["-124.098075","40.4711315"],["-124.099058","40.4725036"],["-124.0993687","40.4729941"],["-124.0995673","40.4734029"],["-124.0997162","40.4737644"],["-124.0998287","40.4740875"],["-124.0999115","40.4743897"],["-124.0999602","40.4746414"],["-124.1000064","40.474896"],["-124.1000591","40.4753171"],["-124.1001399","40.4761577"],["-124.1003453","40.4784219"],["-124.1003523","40.4787706"],["-124.100337","40.4790734"],["-124.1003048","40.4793455"],["-124.1002424","40.4796259"],["-124.1001558","40.4799346"],["-124.0998995","40.4805788"],["-124.0996236","40.4812299"],["-124.0993776","40.4819148"],["-124.0993177","40.4822034"],["-124.0992832","40.4824969"],["-124.0992639","40.4828246"],["-124.0992801","40.4831452"],["-124.0993135","40.4835114"],["-124.0993021","40.4840415"],["-124.0992944","40.4842414"],["-124.0992989","40.4846284"],["-124.099275","40.4849502"],["-124.0992441","40.4852309"],["-124.0991787","40.4855307"],["-124.0990966","40.4857901"],["-124.0990531","40.4859859"],["-124.0984524","40.4877448"],["-124.0983471","40.4880832"],["-124.0981167","40.488928"],["-124.0980096","40.4894006"],["-124.0979161","40.4899055"],["-124.097847","40.4903334"],["-124.0977602","40.4911075"],["-124.0977253","40.4916456"],["-124.0977002","40.4921609"],["-124.0977002","40.4926591"],["-124.0977092","40.4930743"],["-124.0977469","40.4936"],["-124.0978051","40.4942627"],["-124.0978335","40.4948609"],["-124.0979614","40.4955"],["-124.0980542","40.4959179"],["-124.0981369","40.4962811"],["-124.0984297","40.4973606"],["-124.0994461","40.5010207"],["-124.0995723","40.5013767"],["-124.0998269","40.5019351"],["-124.0999974","40.5022289"],["-124.1002181","40.5025165"],["-124.1004853","40.5028323"],["-124.1007706","40.50311"],["-124.1010806","40.503387"],["-124.1017056","40.5038421"],["-124.1020211","40.5040358"],["-124.1023734","40.5042275"],["-124.1027602","40.5043947"],["-124.1031318","40.5045393"],["-124.1035064","40.504662"],["-124.103882","40.50477"],["-124.1043485","40.5048741"],["-124.1048395","40.5049581"],["-124.105904","40.5051007"],["-124.1064842","40.5051707"],["-124.1072582","40.5052684"],["-124.1082678","40.505434"],["-124.109269","40.5056432"],["-124.1169149","40.5075319"],["-124.1172811","40.507648"],["-124.1175788","40.5077611"],["-124.1180961","40.508031"],["-124.1183475","40.5081832"],["-124.1186042","40.5083844"],["-124.1188834","40.5086232"],["-124.1198131","40.5095529"],["-124.1205672","40.5103192"],["-124.1210517","40.5107742"],["-124.1213645","40.511032"],["-124.1216731","40.5112744"],["-124.1219667","40.5114724"],["-124.1223046","40.5116561"],["-124.1226597","40.5118286"],["-124.1231131","40.5120383"],["-124.1235658","40.5122368"],["-124.1438969","40.5199637"],["-124.1448857","40.5203452"],["-124.1451978","40.5204837"],["-124.1455778","40.520673"],["-124.1459986","40.5209213"],["-124.1463969","40.5211909"],["-124.1467767","40.521504"],["-124.1472963","40.5220202"],["-124.1485979","40.5234"],["-124.1495568","40.5244188"],["-124.1499287","40.5248194"],["-124.1502479","40.5251838"],["-124.1504854","40.5254906"],["-124.1507641","40.5259313"],["-124.1509226","40.5262249"],["-124.1510733","40.5265709"],["-124.1511602","40.5268255"],["-124.1512328","40.5270891"],["-124.1513042","40.5274857"],["-124.1513451","40.5281696"],["-124.1513167","40.5285779"],["-124.1512051","40.5291614"],["-124.1504625","40.5322907"],["-124.1503176","40.5328135"],["-124.1501675","40.533184"],["-124.1499736","40.5335406"],["-124.1494548","40.5343101"],["-124.1478556","40.5365695"],["-124.1458101","40.5395297"],["-124.145118","40.5405892"],["-124.1449675","40.5409148"],["-124.1447158","40.5415376"],["-124.1445707","40.5420538"],["-124.1444991","40.5424109"],["-124.1444503","40.5428058"],["-124.1444327","40.5432082"],["-124.1444495","40.5436229"],["-124.144632","40.5448985"],["-124.1449356","40.546585"],["-124.145148","40.5477796"],["-124.1452148","40.5481896"],["-124.1453277","40.5489562"],["-124.1475959","40.5620659"],["-124.1477684","40.5630568"],["-124.1481292","40.5651691"],["-124.1482984","40.5663028"],["-124.148347","40.5668096"],["-124.148877","40.5741279"],["-124.148924","40.5746239"],["-124.1489808","40.5750988"],["-124.149041","40.5755224"],["-124.1491314","40.5760488"],["-124.149242","40.5765612"],["-124.1493796","40.5771296"],["-124.1496289","40.5780094"],["-124.1498315","40.5786221"],["-124.149982","40.5790392"],["-124.1503204","40.5798748"],["-124.1518843","40.583651"],["-124.1521146","40.5841781"],["-124.1522956","40.5845136"],["-124.1524632","40.5847844"],["-124.1526211","40.5850142"],["-124.1529035","40.5853882"],["-124.1530465","40.5855576"],["-124.153238","40.5857723"],["-124.153934","40.5865371"],["-124.1554232","40.5881693"],["-124.1556276","40.5883995"],["-124.1558743","40.5886845"],["-124.1560243","40.5888843"],["-124.1561721","40.5890997"],["-124.1563144","40.5893364"],["-124.1564446","40.5895879"],["-124.1565554","40.58982"],["-124.1566447","40.5900494"],["-124.1567154","40.5902658"],["-124.1571796","40.591769"],["-124.1573283","40.5921877"],["-124.1574925","40.5925424"],["-124.1577445","40.5929953"],["-124.1579407","40.5932855"],["-124.1580526","40.5934351"],["-124.1581745","40.59359"],["-124.1583242","40.5937688"],["-124.1585736","40.5940405"],["-124.1588523","40.5943076"],["-124.1590477","40.5944833"],["-124.1592363","40.5946367"],["-124.1594766","40.5948196"],["-124.1596707","40.5949572"],["-124.1600045","40.5951719"],["-124.1601673","40.5952692"],["-124.1603557","40.5953753"],["-124.1605791","40.5954918"],["-124.1608611","40.5956286"],["-124.162032","40.5961099"],["-124.165533","40.5975208"],["-124.1658174","40.5976587"],["-124.165975","40.5977464"],["-124.1662143","40.5978971"],["-124.166434","40.5980479"],["-124.1666033","40.5981817"],["-124.1668052","40.5983548"],["-124.1672669","40.5988275"],["-124.1685225","40.6001318"],["-124.1687453","40.6003505"],["-124.1689779","40.600544"],["-124.1690949","40.6006363"],["-124.1692646","40.6007509"],["-124.1694536","40.6008667"],["-124.169652","40.6009773"],["-124.1699121","40.601099"],["-124.1747092","40.6032021"],["-124.1753009","40.6035091"],["-124.1768152","40.6043345"],["-124.1774705","40.6046762"],["-124.1779701","40.6048996"],["-124.178341","40.6050451"],["-124.1787029","40.6051767"],["-124.1821151","40.6062321"],["-124.1827923","40.606476"],["-124.1832646","40.6066663"],["-124.1837984","40.6069057"],["-124.1843194","40.6071769"],["-124.1848389","40.6074686"],["-124.185348","40.6077975"],["-124.1872644","40.6091702"],["-124.1881158","40.6098136"],["-124.1886168","40.6102159"],["-124.191928","40.6130399"],["-124.192318","40.6133502"],["-124.1927335","40.6136363"],["-124.193169","40.6139098"],["-124.1975273","40.6162456"],["-124.1979939","40.6164746"],["-124.1985116","40.6166857"],["-124.1991586","40.616895"],["-124.2007005","40.6173445"],["-124.2011278","40.6174864"],["-124.2015663","40.6176671"],["-124.2019762","40.617879"],["-124.2026957","40.6183513"],["-124.2046863","40.6197212"],["-124.2049854","40.6199128"],["-124.2052966","40.6200864"],["-124.2056786","40.6202738"],["-124.2060825","40.6204342"],["-124.2068071","40.6206278"],["-124.2071802","40.6207052"],["-124.2075225","40.620761"],["-124.2081427","40.6208434"],["-124.2095844","40.621044"],["-124.2099666","40.6211239"],["-124.2104681","40.6212507"],["-124.2109213","40.6214062"],["-124.211387","40.6215762"],["-124.2117353","40.6217271"],["-124.2120723","40.6218881"],["-124.2123994","40.622077"],["-124.2127023","40.6222662"],["-124.2130721","40.6225391"],["-124.2136733","40.6229899"],["-124.2140181","40.6232507"],["-124.2150655","40.6240695"],["-124.2154152","40.6244195"],["-124.2156047","40.6246565"],["-124.2157797","40.6249215"],["-124.215947","40.6252037"],["-124.2161043","40.6255195"],["-124.2161998","40.6258177"],["-124.2162678","40.6261219"],["-124.2163177","40.6264502"],["-124.2163275","40.6267469"],["-124.2163177","40.6270553"],["-124.2162599","40.6273853"],["-124.2161682","40.627711"],["-124.2160343","40.6280581"],["-124.2084653","40.643325"],["-124.2083699","40.6436185"],["-124.2082814","40.6439402"],["-124.2082218","40.6442806"],["-124.208205","40.6446408"],["-124.208232","40.6449851"],["-124.2083092","40.6453477"],["-124.2084193","40.6457074"],["-124.2085918","40.6461053"],["-124.2094051","40.6475048"],["-124.2104894","40.6493493"],["-124.2112088","40.6505985"],["-124.2113657","40.650991"],["-124.2114522","40.6513169"],["-124.2115033","40.6516432"],["-124.2115034","40.6522656"],["-124.2114519","40.6525504"],["-124.2113924","40.6528329"],["-124.2112836","40.6531309"],["-124.2111482","40.6534392"],["-124.2110153","40.6537231"],["-124.2108374","40.6539877"],["-124.2106113","40.6542549"],["-124.2103974","40.6544971"],["-124.2101129","40.6547651"],["-124.2067659","40.6574759"],["-124.2063855","40.6578236"],["-124.2060713","40.6581384"],["-124.2058292","40.6584166"],["-124.2055686","40.6587344"],["-124.2053149","40.6590895"],["-124.2050751","40.6594665"],["-124.2046494","40.6602957"],["-124.2044853","40.6607133"],["-124.2043601","40.661058"],["-124.2021799","40.6688706"],["-124.2018901","40.6701851"],["-124.2017772","40.6708646"],["-124.2016843","40.6716832"],["-124.2012683","40.6751354"],["-124.2008688","40.6785705"],["-124.2006178","40.6812097"],["-124.2006774","40.6823638"],["-124.2007702","40.6830048"],["-124.20146","40.6864702"],["-124.2036156","40.6969646"],["-124.2037185","40.6973755"],["-124.2038352","40.6977292"],["-124.2039698","40.6980483"],["-124.2041083","40.6983441"],["-124.2042507","40.6985997"],["-124.2044012","40.6988538"],["-124.2045884","40.6991379"],["-124.2047702","40.6993935"],["-124.2050215","40.6996809"],["-124.2053283","40.7000199"],["-124.2059311","40.7005846"],["-124.2062756","40.7008448"],["-124.2076797","40.7018293"],["-124.2082835","40.7022734"],["-124.2085849","40.7025432"],["-124.2087867","40.7027721"],["-124.2089831","40.7030128"],["-124.2091689","40.7033149"],["-124.2093308","40.7036238"],["-124.2094454","40.7039449"],["-124.2095368","40.7042486"],["-124.2095741","40.7046175"],["-124.209628","40.7053512"],["-124.2097285","40.7068873"],["-124.2097603","40.7071904"],["-124.2098061","40.7074444"],["-124.2098722","40.707669"],["-124.209964","40.7079291"],["-124.2101307","40.7082564"],["-124.2103515","40.7086034"],["-124.2106135","40.708964"],["-124.2135486","40.7128355"],["-124.2148285","40.7145469"],["-124.2150585","40.714953"],["-124.2152515","40.7153916"],["-124.2153885","40.7158552"],["-124.2154716","40.7163572"],["-124.2154888","40.7169758"],["-124.2154582","40.7188087"],["-124.2154293","40.7195897"],["-124.2153865","40.7201094"],["-124.2151071","40.7228322"],["-124.21504","40.7234553"],["-124.2145903","40.7279974"],["-124.2145229","40.7287951"],["-124.2143125","40.7305639"],["-124.2142135","40.7312147"],["-124.2140656","40.7317186"],["-124.2138829","40.7321364"],["-124.2136224","40.7325772"],["-124.2132597","40.7330944"],["-124.2128071","40.7335729"],["-124.2123491","40.7340381"],["-124.2115927","40.7347998"],["-124.2109097","40.7354717"],["-124.2091888","40.7371391"],["-124.20838","40.7379052"],["-124.2081078","40.7381381"],["-124.2031964","40.7420898"],["-124.1989368","40.7455983"],["-124.194987","40.7490742"],["-124.1935359","40.7503946"],["-124.1932523","40.7507029"],["-124.1929992","40.7510097"],["-124.1927652","40.7513531"],["-124.191994","40.7527101"],["-124.1911492","40.7542173"],["-124.190472","40.7554256"],["-124.1901266","40.7559878"],["-124.1899264","40.7563549"],["-124.18975","40.7567127"],["-124.1896356","40.7569825"],["-124.18953","40.7572772"],["-124.1894675","40.7575355"],["-124.1893932","40.7578906"],["-124.1893566","40.7582431"],["-124.1893422","40.758488"],["-124.189343","40.7587943"],["-124.1893783","40.7591202"],["-124.1894295","40.7594325"],["-124.1895911","40.7600453"],["-124.1898822","40.7607974"],["-124.1903083","40.761921"],["-124.1904789","40.7622061"],["-124.1907584","40.7629133"],["-124.19102","40.7636662"],["-124.1914643","40.765762"],["-124.1915242","40.7661042"],["-124.191575","40.7665528"],["-124.191626","40.7671363"],["-124.1916386","40.7675984"],["-124.1916314","40.7682522"],["-124.1915957","40.7687117"],["-124.1915427","40.769205"],["-124.1913077","40.770589"],["-124.1910285","40.7719438"],["-124.1906254","40.7740698"],["-124.1905963","40.7742175"],["-124.1905562","40.7744125"],["-124.1905287","40.7745478"],["-124.1904347","40.7750534"],["-124.1903803","40.7753489"],["-124.1902634","40.7760069"],["-124.1902318","40.7761695"],["-124.1902021","40.7762634"],["-124.1901096","40.7765408"],["-124.1900216","40.7767831"],["-124.1898826","40.7770808"],["-124.1897542","40.7773215"],["-124.1895783","40.7776022"],["-124.1893696","40.7778496"],["-124.1891537","40.7780677"],["-124.1889177","40.7782549"],["-124.1886646","40.7784282"],["-124.188393","40.7785865"],["-124.1880646","40.7787372"],["-124.187562","40.7789619"],["-124.1873454","40.7790684"],["-124.186947","40.7792871"],["-124.186261","40.7797544"],["-124.1860147","40.7799579"],["-124.1858352","40.7801146"],["-124.1857185","40.7802306"],["-124.1855244","40.7804383"],["-124.1853102","40.780676"],["-124.1838825","40.7826529"],["-124.1836758","40.7829491"],["-124.1835749","40.7830939"],["-124.1828138","40.7841645"],["-124.1820157","40.7852714"],["-124.1818288","40.7855623"],["-124.1816885","40.7858034"],["-124.1815754","40.7859978"],["-124.1804701","40.787929"],["-124.1802781","40.7882523"],["-124.1797948","40.7890843"],["-124.1795382","40.789547"],["-124.1783831","40.7914656"],["-124.1782711","40.7916611"],["-124.1780487","40.7920498"],["-124.1779067","40.7922843"],["-124.1777273","40.7925978"],["-124.1759099","40.7957427"],["-124.1751723","40.7970081"],["-124.175142","40.7971119"],["-124.1751129","40.7972351"],["-124.1750921","40.7974168"],["-124.1750937","40.797722"],["-124.1750772","40.8002188"],["-124.1750687","40.8004749"],["-124.1750377","40.8005363"],["-124.1750138","40.8005737"],["-124.174991","40.8006016"],["-124.1749788","40.8006119"],["-124.1749545","40.8006332"],["-124.1749259","40.8006573"],["-124.1748794","40.8006833"],["-124.174833","40.8007001"],["-124.1747682","40.8007195"],["-124.1745952","40.8007458"],["-124.1735559","40.8008809"],["-124.1731571","40.8009328"],["-124.1704802","40.8012931"],["-124.1700322","40.801354"],["-124.1583671","40.8029814"],["-124.1581176","40.8030186"],["-124.1579214","40.8030479"],["-124.1566995","40.8032194"],["-124.1565037","40.8032465"],["-124.1548871","40.8034806"],["-124.1546602","40.803518"],["-124.1544523","40.8036086"],["-124.1541711","40.8037123"],["-124.1539213","40.8038009"],["-124.1534704","40.8038904"],["-124.152279","40.8038865"],["-124.152015","40.8038845"],["-124.1503958","40.8038777"],["-124.1500821","40.803875"],["-124.1495958","40.80387"],["-124.1493274","40.8038644"],["-124.1487635","40.8038534"],["-124.1482139","40.8038482"],["-124.1477299","40.8038452"],["-124.1474497","40.8038512"],["-124.1473174","40.8038583"],["-124.147158","40.8038724"],["-124.1467232","40.8039241"],["-124.1464234","40.8039739"],["-124.1459792","40.8040667"],["-124.1389457","40.8055769"],["-124.1386872","40.8056207"],["-124.1382916","40.8056717"],["-124.1380769","40.8056923"],["-124.1378259","40.8057104"],["-124.1376334","40.8057195"],["-124.137401","40.8057243"],["-124.1371859","40.8057237"],["-124.1367251","40.8057042"],["-124.1364662","40.805686"],["-124.136185","40.8056547"],["-124.1357619","40.805591"],["-124.1309388","40.8047977"],["-124.1302872","40.8047209"],["-124.1296327","40.8046658"],["-124.1289661","40.8046288"],["-124.1283581","40.8046186"],["-124.1277486","40.8046282"],["-124.1271279","40.804661"],["-124.1265124","40.8047062"],["-124.1259368","40.8047692"],["-124.1247678","40.8049571"],["-124.1241197","40.8050952"],["-124.1234807","40.805253"],["-124.1229192","40.8054103"],["-124.1223244","40.8055967"],["-124.1217383","40.8057991"],["-124.1210136","40.8060765"],["-124.1204923","40.8062906"],["-124.1200654","40.8064843"],["-124.119606","40.8067101"],["-124.0932311","40.8202741"],["-124.0907602","40.8215354"],["-124.0892442","40.8223231"],["-124.0886685","40.8226747"],["-124.0879397","40.8231648"],["-124.0873664","40.823585"],["-124.0868761","40.8239726"],["-124.0864062","40.8243655"],["-124.0860467","40.8246869"],["-124.0850587","40.8256892"],["-124.0846379","40.8261547"],["-124.0843933","40.8264707"],["-124.084057","40.8269667"],["-124.0837892","40.8273881"],["-124.083543","40.8277562"],["-124.0832957","40.828167"],["-124.083064","40.8285867"],["-124.0828618","40.8290045"],["-124.0826568","40.8294708"],["-124.0824151","40.8301279"],["-124.0822507","40.8306155"],["-124.0821109","40.8311187"],["-124.0819894","40.8317134"],["-124.0819123","40.832164"],["-124.081863","40.8326478"],["-124.0817968","40.8339216"],["-124.0817967","40.8347068"],["-124.0817901","40.8350874"],["-124.0816667","40.8436104"],["-124.0816648","40.8490526"],["-124.0817217","40.8503992"],["-124.0817494","40.8507808"],["-124.0824314","40.8597633"],["-124.0825788","40.8616956"],["-124.0829858","40.8668724"],["-124.0830418","40.8678988"],["-124.0830588","40.8684543"],["-124.0830359","40.868907"],["-124.0829993","40.8692222"],["-124.0829601","40.869537"],["-124.0828638","40.8699259"],["-124.0827608","40.8703344"],["-124.082262","40.8722497"],["-124.0822023","40.8726841"],["-124.0821762","40.8730278"],["-124.0821752","40.8732746"],["-124.0821973","40.873723"],["-124.0822589","40.8742045"],["-124.0823099","40.8745759"],["-124.0823426","40.8748156"],["-124.0824723","40.8756256"],["-124.0825195","40.8759973"],["-124.0825479","40.8763211"],["-124.0825454","40.8768543"],["-124.0824893","40.8774097"],["-124.0823985","40.8779133"],["-124.0821248","40.8788314"],["-124.0802466","40.8844659"],["-124.0799361","40.8855354"],["-124.0795797","40.886673"],["-124.0794597","40.8874347"],["-124.0794238","40.8880537"],["-124.079441","40.8886336"],["-124.0794836","40.8889929"],["-124.0795334","40.8893515"],["-124.0796711","40.8899534"],["-124.0797617","40.8902416"],["-124.0799674","40.890803"],["-124.0801425","40.8911699"],["-124.091277","40.9133717"],["-124.0918667","40.9144603"],["-124.0935195","40.9170557"],["-124.0939964","40.9178504"],["-124.0941985","40.9181506"],["-124.0943967","40.9184279"],["-124.094594","40.9186717"],["-124.0947878","40.9188828"],["-124.0949884","40.9190782"],["-124.0952236","40.9192911"],["-124.095536","40.9195396"],["-124.095895","40.9197798"],["-124.0963402","40.9200636"],["-124.096879","40.9203382"],["-124.0975239","40.9206365"],["-124.098246","40.9209528"],["-124.1008249","40.9220831"],["-124.1094325","40.9258996"],["-124.1099659","40.9261403"],["-124.110301","40.9263109"],["-124.1106872","40.9265316"],["-124.1110414","40.9267673"],["-124.1114181","40.9270552"],["-124.111677","40.9272886"],["-124.1119249","40.9275258"],["-124.1122338","40.9278738"],["-124.1124684","40.9281829"],["-124.1126089","40.9283969"],["-124.1128001","40.9287276"],["-124.1131018","40.929395"],["-124.1144039","40.933014"],["-124.1154983","40.9360467"],["-124.1159968","40.9375177"],["-124.116075","40.9378739"],["-124.1161202","40.9382984"],["-124.1158439","40.9675175"],["-124.1158387","40.9680544"],["-124.1158241","40.9690126"],["-124.1158443","40.9697984"],["-124.1158856","40.9703285"],["-124.1160084","40.9712057"],["-124.1172748","40.9781376"],["-124.1173734","40.9787381"],["-124.1173937","40.9793807"],["-124.1173605","40.9797162"],["-124.1169399","40.9816374"],["-124.1152867","40.9888426"],["-124.1149417","40.9901742"],["-124.1147621","40.9906355"],["-124.1141009","40.9920621"],["-124.1137683","40.9926695"],["-124.1134913","40.9932187"],["-124.1133534","40.9935265"],["-124.1132581","40.9937972"],["-124.1131798","40.9940624"],["-124.1131111","40.9943024"],["-124.1130391","40.9946861"],["-124.1129693","40.9951355"],["-124.1129296","40.9956619"],["-124.1128424","40.997402"],["-124.1127563","40.9983256"],["-124.1123425","41.0011753"],["-124.1120874","41.0028748"],["-124.1119605","41.0035332"],["-124.1118207","41.004158"],["-124.1116593","41.0047494"],["-124.1102896","41.0091803"],["-124.1100806","41.0097217"],["-124.1099584","41.0099873"],["-124.1098314","41.0102174"],["-124.1096228","41.0105355"],["-124.1092052","41.0111833"],["-124.1085452","41.0120956"],["-124.1082164","41.0126584"],["-124.1080718","41.0129382"],["-124.1070652","41.0157012"],["-124.1068676","41.0163307"],["-124.1067704","41.0167543"],["-124.1067024","41.0171764"],["-124.1066692","41.01772"],["-124.1066623","41.018246"],["-124.1066895","41.0189224"],["-124.1067886","41.0197553"],["-124.1069447","41.0209374"],["-124.1072098","41.0234587"],["-124.1072603","41.023878"],["-124.1071422","41.0247649"],["-124.1069921","41.0258471"],["-124.1069887","41.0262144"],["-124.1069942","41.026486"],["-124.1070284","41.0268276"],["-124.1070892","41.0271158"],["-124.1072222","41.0275901"],["-124.1073075","41.0277944"],["-124.1074338","41.0280368"],["-124.1076321","41.028331"],["-124.1080045","41.0288555"],["-124.1089803","41.030357"],["-124.1117321","41.0347524"],["-124.1120269","41.0352779"],["-124.1131034","41.0374901"],["-124.1152865","41.0421793"],["-124.1157311","41.0430416"],["-124.1160284","41.0434732"],["-124.1169416","41.044561"],["-124.1196958","41.0475117"],["-124.1225174","41.0506542"],["-124.1266566","41.0552565"],["-124.1270001","41.0555799"],["-124.127363","41.0558802"],["-124.127659","41.0560869"],["-124.127961","41.05628"],["-124.1316438","41.0581909"],["-124.1337883","41.059283"],["-124.1373936","41.0611417"],["-124.1381274","41.061513"],["-124.1389202","41.0619563"],["-124.1393844","41.0622463"],["-124.1397506","41.0624951"],["-124.1403996","41.063044"],["-124.1406735","41.0633212"],["-124.1408906","41.0635715"],["-124.1411056","41.0638462"],["-124.1412896","41.0640944"],["-124.1413895","41.06425"],["-124.1414687","41.0644136"],["-124.1415432","41.0646165"],["-124.1417708","41.0654486"],["-124.1418247","41.0657754"],["-124.1418546","41.0661059"],["-124.141844","41.0667433"],["-124.141475","41.0706714"],["-124.1413927","41.070985"],["-124.1413633","41.0711506"],["-124.1413195","41.0718492"],["-124.1413057","41.0723992"],["-124.1413287","41.0729371"],["-124.1413926","41.0734739"],["-124.1414799","41.0739404"],["-124.1416156","41.0744729"],["-124.1417871","41.0750202"],["-124.1420384","41.0756178"],["-124.1442925","41.0802267"],["-124.1528066","41.0976328"],["-124.1535426","41.0991955"],["-124.1538467","41.1000589"],["-124.1539553","41.1004775"],["-124.1540338","41.1008557"],["-124.1541009","41.1012949"],["-124.1542353","41.1026061"],["-124.1545823","41.1055695"],["-124.154715","41.106438"],["-124.1547789","41.1068514"],["-124.1548032","41.1074873"],["-124.1547781","41.1079798"],["-124.1547327","41.1085369"],["-124.1546346","41.1090839"],["-124.1545228","41.1095997"],["-124.1543673","41.110127"],["-124.151357","41.1185161"],["-124.1510941","41.1193898"],["-124.1509861","41.1199182"],["-124.1509232","41.1204765"],["-124.1508895","41.1210602"],["-124.1507746","41.1230702"],["-124.1503849","41.1300222"],["-124.1503521","41.130456"],["-124.1503287","41.1308065"],["-124.1503173","41.1311026"],["-124.150299","41.1314467"],["-124.1502657","41.1317913"],["-124.1502127","41.1320693"],["-124.1500915","41.1323823"],["-124.1499705","41.1326512"],["-124.1494561","41.1334953"],["-124.1492354","41.1338613"],["-124.1482621","41.1349046"],["-124.1478897","41.1352165"],["-124.1474792","41.1355266"],["-124.147127","41.1357765"],["-124.1467324","41.1360096"],["-124.1459423","41.1364214"],["-124.1450344","41.1368075"],["-124.1445309","41.1369858"],["-124.1429728","41.1374863"],["-124.1423613","41.1377096"],["-124.141867","41.1378799"],["-124.141362","41.138063"],["-124.1409221","41.138261"],["-124.1404841","41.1384745"],["-124.140027","41.1387232"],["-124.139595","41.1389739"],["-124.1391757","41.1392641"],["-124.1387467","41.1395864"],["-124.1383063","41.1399429"],["-124.1379932","41.1402445"],["-124.1376813","41.1405939"],["-124.1374184","41.1409189"],["-124.1371638","41.1412683"],["-124.1368843","41.1417233"],["-124.1366451","41.1421642"],["-124.1364453","41.1426214"],["-124.1363278","41.1429507"],["-124.1362171","41.1432858"],["-124.1361434","41.1436028"],["-124.1360661","41.1439889"],["-124.13603","41.1443577"],["-124.1359123","41.1480043"],["-124.1358707","41.1484216"],["-124.1358166","41.148719"],["-124.1357507","41.1490405"],["-124.1353977","41.1499415"],["-124.1352619","41.1502057"],["-124.1350477","41.1505626"],["-124.1348278","41.1508681"],["-124.1345681","41.151163"],["-124.1342695","41.1514769"],["-124.1339997","41.151715"],["-124.1337264","41.1519151"],["-124.1333716","41.1521475"],["-124.133004","41.1523716"],["-124.1314184","41.1532857"],["-124.1242686","41.1574309"],["-124.1225122","41.1584342"],["-124.1221435","41.1586265"],["-124.1217751","41.1587924"],["-124.1213707","41.1589293"],["-124.1210037","41.1590458"],["-124.1205698","41.159164"],["-124.1196439","41.1593442"],["-124.1175346","41.1597578"],["-124.1170743","41.1598731"],["-124.1166147","41.1600126"],["-124.116192","41.1601653"],["-124.1080194","41.1640042"],["-124.1075164","41.1642714"],["-124.1070979","41.1645275"],["-124.1065469","41.1649012"],["-124.1043927","41.1664444"],["-124.1039507","41.1667677"],["-124.1032795","41.1672717"],["-124.1029687","41.1675406"],["-124.1026416","41.1678849"],["-124.1024683","41.1681087"],["-124.1023301","41.1683185"],["-124.1021948","41.1686196"],["-124.1021101","41.1689717"],["-124.1020298","41.1694622"],["-124.1019487","41.1701396"],["-124.1019212","41.1706214"],["-124.1019223","41.1713814"],["-124.1022837","41.1737428"],["-124.102414","41.1745343"],["-124.1025472","41.175428"],["-124.1025974","41.1756246"],["-124.1026466","41.1757194"],["-124.1027882","41.1759451"],["-124.1028689","41.1760453"],["-124.1030419","41.1762154"],["-124.1033704","41.1764709"],["-124.1036145","41.1766448"],["-124.1042934","41.1771521"],["-124.1046514","41.1774519"],["-124.1048573","41.1776436"],["-124.1051936","41.1780162"],["-124.1053387","41.1782012"],["-124.10555","41.178528"],["-124.1057307","41.1789323"],["-124.1058289","41.1792028"],["-124.1059864","41.1797618"],["-124.1060843","41.1801569"],["-124.1061711","41.1805096"],["-124.1062293","41.1807822"],["-124.1063912","41.1813458"],["-124.106565","41.1819804"],["-124.1066034","41.1821501"],["-124.1066951","41.1824913"],["-124.1068047","41.1828318"],["-124.1068791","41.1830293"],["-124.1069468","41.1832722"],["-124.1069863","41.1835526"],["-124.1070329","41.1836851"],["-124.1072297","41.1840736"],["-124.1077534","41.1850281"],["-124.1078411","41.1852085"],["-124.1078685","41.1853222"],["-124.1080248","41.1856868"],["-124.1080608","41.1858982"],["-124.1080716","41.1860471"],["-124.1080655","41.1862547"],["-124.1080764","41.1866544"],["-124.1080726","41.1872567"],["-124.1080208","41.1874455"],["-124.107927","41.1876091"],["-124.1078206","41.1877687"],["-124.1077576","41.1879106"],["-124.107746","41.1879556"],["-124.1077383","41.1879987"],["-124.1077377","41.1881537"],["-124.107747","41.1882302"],["-124.1077776","41.1883067"],["-124.1079135","41.188485"],["-124.1080229","41.1885825"],["-124.1081781","41.1886986"],["-124.1083821","41.1888446"],["-124.1086997","41.18915"],["-124.1097065","41.1902164"],["-124.1098718","41.1904606"],["-124.1100255","41.1910361"],["-124.1101464","41.1914307"],["-124.1102764","41.191686"],["-124.1104039","41.1919599"],["-124.1104638","41.1921412"],["-124.1104925","41.1923299"],["-124.1105007","41.1925253"],["-124.1104621","41.1927444"],["-124.1104173","41.192927"],["-124.1102924","41.1932024"],["-124.1101913","41.193457"],["-124.1101763","41.193551"],["-124.1101876","41.1937384"],["-124.1102361","41.1939341"],["-124.1102968","41.194059"],["-124.1103401","41.1941289"],["-124.1104166","41.1942084"],["-124.110504","41.194308"],["-124.1105946","41.1943965"],["-124.1107171","41.1944974"],["-124.1108787","41.194654"],["-124.1109897","41.1948001"],["-124.1110537","41.1949491"],["-124.1110722","41.1950383"],["-124.11107","41.1951946"],["-124.1110247","41.1953519"],["-124.110939","41.1954988"],["-124.110874","41.1955734"],["-124.1107427","41.195681"],["-124.1103627","41.1958939"],["-124.1101876","41.1960236"],["-124.110039","41.1961936"],["-124.1099544","41.1963354"],["-124.1099198","41.1964226"],["-124.1098976","41.1966049"],["-124.1098988","41.1967018"],["-124.1099158","41.1967738"],["-124.1099533","41.1968556"],["-124.1100905","41.1970498"],["-124.1103322","41.1973271"],["-124.1106091","41.1976616"],["-124.110726","41.1978255"],["-124.1107862","41.1979446"],["-124.1108328","41.1980855"],["-124.1109171","41.198466"],["-124.1109922","41.1987436"],["-124.1110288","41.1989136"],["-124.1110356","41.1991626"],["-124.110994","41.1994384"],["-124.1108991","41.199734"],["-124.110745","41.2000777"],["-124.1105021","41.2005749"],["-124.1104501","41.2007051"],["-124.110428","41.2008072"],["-124.1104209","41.2009094"],["-124.110427","41.2010138"],["-124.1104837","41.201235"],["-124.110724","41.2020383"],["-124.1107774","41.2022879"],["-124.1107921","41.2025114"],["-124.110776","41.2027395"],["-124.1107453","41.2028967"],["-124.1106753","41.2031109"],["-124.1104668","41.2036159"],["-124.1103608","41.2039081"],["-124.1103105","41.2042219"],["-124.1100571","41.2069555"],["-124.1099835","41.2075318"],["-124.1098347","41.2082767"],["-124.1093004","41.2105217"],["-124.1090342","41.2116801"],["-124.1082626","41.2148542"],["-124.1080814","41.2155084"],["-124.107963","41.2158609"],["-124.1078929","41.2160299"],["-124.1077451","41.21629"],["-124.1075781","41.216559"],["-124.1073112","41.2169221"],["-124.1070328","41.2172423"],["-124.1067888","41.2174828"],["-124.106526","41.2177057"],["-124.1062011","41.2179352"],["-124.105809","41.2181686"],["-124.1052239","41.2184554"],["-124.104932","41.21857"],["-124.1046077","41.2186881"],["-124.1042829","41.2187807"],["-124.1039906","41.2188553"],["-124.1036413","41.2189098"],["-124.1031798","41.2189671"],["-124.1023143","41.2190379"],["-124.1015958","41.219121"],["-124.1004599","41.2193"],["-124.0998604","41.2194302"],["-124.0992912","41.2195829"],["-124.0988064","41.2197513"],["-124.098379","41.2199211"],["-124.0979892","41.2201039"],["-124.097629","41.2202743"],["-124.0967563","41.2207313"],["-124.0964206","41.2209445"],["-124.0959994","41.221248"],["-124.0953166","41.2217694"],["-124.0942187","41.2226247"],["-124.0939105","41.2228318"],["-124.093581","41.223027"],["-124.0922018","41.2237559"],["-124.0893888","41.2251264"],["-124.0876905","41.2259128"],["-124.0860804","41.2267785"],["-124.0858381","41.2269535"],["-124.0855583","41.2271954"],["-124.0852998","41.2274909"],["-124.0849852","41.2279316"],["-124.0845252","41.2286486"],["-124.0841327","41.2293661"],["-124.0840435","41.2295898"],["-124.0839303","41.2300251"],["-124.0832352","41.233288"],["-124.0831696","41.2337738"],["-124.0831926","41.2341207"],["-124.0832605","41.2343993"],["-124.0833301","41.2345785"],["-124.0834363","41.2347907"],["-124.0837426","41.2353276"],["-124.0838774","41.2355839"],["-124.0839132","41.2358148"],["-124.0839173","41.2359944"],["-124.0838928","41.236177"],["-124.0838372","41.2363354"],["-124.0836532","41.236722"],["-124.0835419","41.2370202"],["-124.0835171","41.2371852"],["-124.0835248","41.2373692"],["-124.0835781","41.237939"],["-124.0836327","41.2382807"],["-124.0837107","41.2386256"],["-124.0838123","41.2389439"],["-124.0840123","41.2393944"],["-124.0844461","41.2402809"],["-124.0845837","41.2406202"],["-124.0846345","41.2408378"],["-124.0846565","41.2410995"],["-124.0846559","41.2416037"],["-124.0846677","41.2421638"],["-124.084705","41.2423861"],["-124.0848118","41.2426712"],["-124.0850827","41.2431833"],["-124.0852055","41.243374"],["-124.085332","41.2435223"],["-124.0854821","41.2436641"],["-124.0856556","41.2437942"],["-124.085925","41.2439519"],["-124.0862893","41.2440996"],["-124.086688","41.2442223"],["-124.086886","41.2442932"],["-124.0870126","41.2443562"],["-124.0871438","41.2444336"],["-124.0872542","41.2445179"],["-124.0873599","41.2446186"],["-124.0875187","41.2448213"],["-124.0876537","41.2450566"],["-124.0879655","41.2456468"],["-124.0881014","41.2459312"],["-124.0881416","41.2460741"],["-124.0881545","41.2461428"],["-124.0881549","41.2462394"],["-124.0881416","41.246356"],["-124.0880626","41.2466049"],["-124.087722","41.2474193"],["-124.087454","41.2480683"],["-124.0872411","41.2485824"],["-124.0871427","41.2488344"],["-124.0871133","41.2489839"],["-124.0870968","41.2492525"],["-124.0871062","41.2494207"],["-124.0871398","41.2495834"],["-124.0872","41.2497389"],["-124.0872792","41.2498903"],["-124.0874108","41.2500905"],["-124.0875736","41.2502617"],["-124.0878705","41.2505509"],["-124.0880366","41.2507428"],["-124.0883824","41.2512615"],["-124.0892927","41.2526821"],["-124.089645","41.2531213"],["-124.0898662","41.2533337"],["-124.0906819","41.2539549"],["-124.0920522","41.2549688"],["-124.0930567","41.2557026"],["-124.0935384","41.2562026"],["-124.0939379","41.2566306"],["-124.0943772","41.2571449"],["-124.0953654","41.2582534"],["-124.0957591","41.2587709"],["-124.0962153","41.2594828"],["-124.0965601","41.2601702"],["-124.0967473","41.2606553"],["-124.0969053","41.2611484"],["-124.0970547","41.2617623"],["-124.0971837","41.262309"],["-124.0973622","41.263118"],["-124.0975431","41.2639107"],["-124.0978157","41.2650467"],["-124.0978607","41.2653815"],["-124.0978415","41.265653"],["-124.097797","41.2658954"],["-124.0977205","41.2661469"],["-124.097617","41.2664213"],["-124.097157","41.2673697"],["-124.0965911","41.268587"],["-124.0962929","41.2692923"],["-124.0959474","41.2701834"],["-124.0956115","41.2711286"],["-124.0951472","41.2726762"],["-124.0949628","41.2734133"],["-124.0939902","41.2782658"],["-124.0938885","41.2787064"],["-124.0936736","41.2794275"],["-124.0933673","41.2803596"],["-124.0930492","41.281303"],["-124.0927955","41.2818007"],["-124.0926544","41.2820266"],["-124.0924157","41.2823384"],["-124.0921282","41.2826449"],["-124.0918154","41.2829581"],["-124.0914738","41.283254"],["-124.0909683","41.2836329"],["-124.090359","41.2839929"],["-124.084698","41.2869274"],["-124.0842298","41.2870783"],["-124.0838706","41.2871585"],["-124.0835698","41.287199"],["-124.0833015","41.287227"],["-124.0829285","41.2872313"],["-124.0823989","41.2871879"],["-124.0819709","41.2871066"],["-124.0815479","41.2869862"],["-124.0811244","41.2868237"],["-124.0789887","41.2856996"],["-124.0782942","41.2853949"],["-124.0778954","41.2852326"],["-124.0776477","41.2851431"],["-124.0770399","41.284987"],["-124.076636","41.2848932"],["-124.076164","41.2848182"],["-124.075726","41.2847788"],["-124.0629634","41.2845948"],["-124.0627215","41.2846045"],["-124.0624588","41.2846383"],["-124.0622895","41.2846723"],["-124.0620827","41.2847303"],["-124.0619088","41.2847969"],["-124.0617428","41.2848779"],["-124.0615178","41.2850155"],["-124.0613176","41.285165"],["-124.0610941","41.2853637"],["-124.0604873","41.2858802"],["-124.0599765","41.2863164"],["-124.0595829","41.286667"],["-124.0594014","41.2868651"],["-124.0592499","41.2870496"],["-124.0590756","41.2873072"],["-124.0589104","41.2876248"],["-124.0588542","41.287758"],["-124.0587892","41.2879627"],["-124.0587334","41.288212"],["-124.0586694","41.2885471"],["-124.0586489","41.2886974"],["-124.0586062","41.2892043"],["-124.0585825","41.2896139"],["-124.058575","41.2897197"],["-124.0585729","41.2897391"],["-124.0585486","41.2898261"],["-124.0584799","41.2899934"],["-124.0582688","41.2903611"],["-124.0545832","41.2958398"],["-124.0540326","41.2965971"],["-124.0535719","41.2971602"],["-124.0531461","41.2975662"],["-124.0519476","41.2986408"],["-124.0514979","41.2990026"],["-124.0511625","41.2992702"],["-124.050883","41.2996067"],["-124.0507241","41.2998591"],["-124.0505235","41.300108"],["-124.0501878","41.3004146"],["-124.0497887","41.3007473"],["-124.0494818","41.300956"],["-124.049287","41.3010628"],["-124.0490707","41.3011578"],["-124.0485757","41.3013647"],["-124.0478331","41.3017375"],["-124.0474245","41.3019985"],["-124.047101","41.3021766"],["-124.0468384","41.3023117"],["-124.0466381","41.3023942"],["-124.0461556","41.3025343"],["-124.0455133","41.3027173"],["-124.0450996","41.3028448"],["-124.0448657","41.3029553"],["-124.0447029","41.3030511"],["-124.0445917","41.3031511"],["-124.044473","41.3032773"],["-124.0443837","41.3033973"],["-124.0443017","41.3035584"],["-124.0442626","41.3037022"],["-124.0442268","41.3039608"],["-124.0441794","41.3046138"],["-124.044185","41.3047927"],["-124.0442121","41.3049289"],["-124.044259","41.3050623"],["-124.0443349","41.3052083"],["-124.0444137","41.3053145"],["-124.0445764","41.3054825"],["-124.0448422","41.3057323"],["-124.0449613","41.3058624"],["-124.045105","41.3060864"],["-124.0451509","41.3062048"],["-124.0451871","41.3063585"],["-124.0452241","41.306765"],["-124.0452889","41.3079671"],["-124.0453125","41.3086031"],["-124.0453226","41.3090769"],["-124.0453764","41.3102117"],["-124.0453903","41.3105801"],["-124.0453825","41.3106776"],["-124.0453625","41.3107556"],["-124.0452904","41.3109326"],["-124.0450539","41.3114283"],["-124.0446116","41.3124025"],["-124.0444381","41.3127218"],["-124.0443013","41.3128801"],["-124.0440705","41.3130811"],["-124.0425058","41.3143048"],["-124.0421214","41.3146256"],["-124.0419216","41.3148474"],["-124.0417706","41.3150493"],["-124.0415952","41.3153525"],["-124.0414533","41.3156437"],["-124.0410642","41.316606"],["-124.040694","41.3174811"],["-124.0403762","41.3182485"],["-124.0401343","41.3188523"],["-124.0399238","41.3193766"],["-124.0395943","41.320176"],["-124.0391591","41.3212812"],["-124.0385792","41.3225639"],["-124.0384756","41.322738"],["-124.0383922","41.3228331"],["-124.0382946","41.3229228"],["-124.0381813","41.3230071"],["-124.0380161","41.3231043"],["-124.0375537","41.3233255"],["-124.0369099","41.3236303"],["-124.0363412","41.3239052"],["-124.0354309","41.3243453"],["-124.03484","41.3246629"],["-124.0345378","41.3248893"],["-124.0343307","41.3250755"],["-124.034166","41.3252494"],["-124.0338854","41.3255976"],["-124.0336738","41.325816"],["-124.0334819","41.3259718"],["-124.0331853","41.3261628"],["-124.0323977","41.3266457"],["-124.031583","41.3271643"],["-124.0307209","41.3277565"],["-124.0304383","41.3279805"],["-124.0303199","41.3280855"],["-124.0301374","41.3282967"],["-124.0300879","41.3283747"],["-124.0300102","41.3285337"],["-124.0299085","41.3287947"],["-124.0298504","41.3290254"],["-124.0298342","41.3293915"],["-124.0298517","41.3297324"],["-124.0302293","41.3318097"],["-124.0303205","41.3320628"],["-124.0304285","41.332279"],["-124.0308929","41.3329054"],["-124.0309844","41.3330407"],["-124.0310435","41.333156"],["-124.0310858","41.3332773"],["-124.0311107","41.3333989"],["-124.0311172","41.3335262"],["-124.0310941","41.333802"],["-124.0309071","41.3344813"],["-124.0307498","41.335036"],["-124.0306322","41.3354864"],["-124.0305928","41.3357163"],["-124.0305638","41.3361712"],["-124.0305623","41.3366837"],["-124.0305788","41.3368601"],["-124.030613","41.3370579"],["-124.0306944","41.3373271"],["-124.0307962","41.3375187"],["-124.0309264","41.3376824"],["-124.0311987","41.3379552"],["-124.0315898","41.338268"],["-124.0320616","41.338641"],["-124.0332906","41.3396064"],["-124.0336101","41.3398831"],["-124.0336933","41.3400031"],["-124.0337567","41.3401286"],["-124.0338026","41.340261"],["-124.0338299","41.340396"],["-124.0338389","41.3405362"],["-124.0338258","41.3406817"],["-124.033786","41.3407912"],["-124.0337236","41.3409102"],["-124.0336429","41.3410279"],["-124.0335465","41.3411385"],["-124.0319153","41.3426188"],["-124.0314633","41.3430494"],["-124.0312099","41.3433285"],["-124.0309839","41.3436254"],["-124.0303337","41.3448386"],["-124.0295667","41.3461132"],["-124.0290848","41.3467403"],["-124.0288785","41.3469936"],["-124.0278351","41.3480292"],["-124.0275933","41.3482527"],["-124.0270346","41.3487371"],["-124.0265581","41.3491031"],["-124.0257539","41.3496669"],["-124.0253568","41.3499249"],["-124.0246454","41.3503461"],["-124.0241558","41.3506189"],["-124.0207957","41.3525177"],["-124.0201362","41.3528468"],["-124.0197535","41.3529868"],["-124.019095","41.3531692"],["-124.0169562","41.3536826"],["-124.0163036","41.3538708"],["-124.0159402","41.3540081"],["-124.0156634","41.3541383"],["-124.0153448","41.3542996"],["-124.0150113","41.3545103"],["-124.0147319","41.3547332"],["-124.0144214","41.3550204"],["-124.0141861","41.3552722"],["-124.0139321","41.3556282"],["-124.0135135","41.3562629"],["-124.0130557","41.3569013"],["-124.012895","41.3570827"],["-124.0127696","41.3571975"],["-124.0126021","41.3573333"],["-124.0124565","41.3574427"],["-124.0122486","41.3575777"],["-124.0119827","41.3577304"],["-124.0117084","41.3578746"],["-124.0114505","41.3579871"],["-124.0112086","41.3580781"],["-124.0109342","41.3581647"],["-124.0088274","41.3586223"],["-124.0049378","41.3594376"],["-124.0042534","41.3595706"],["-124.0037353","41.3596459"],["-124.0031545","41.359692"],["-124.0025661","41.3597236"],["-124.0019194","41.3597147"],["-124.0008004","41.3595708"],["-123.9992157","41.359244"],["-123.998836","41.3591325"],["-123.9962444","41.3586459"],["-123.9952023","41.3584658"],["-123.9948074","41.3584314"],["-123.9945481","41.3584211"],["-123.9943116","41.3584223"],["-123.9940367","41.3584345"],["-123.9933592","41.3585387"],["-123.9931236","41.3585927"],["-123.9928991","41.3586577"],["-123.9926636","41.3587372"],["-123.9923714","41.3588461"],["-123.9920754","41.3589883"],["-123.9918213","41.359134"],["-123.9915588","41.3592982"],["-123.9912988","41.3594928"],["-123.99109","41.3596886"],["-123.9908027","41.3600344"],["-123.9903671","41.3607186"],["-123.9902662","41.36092"],["-123.9901098","41.3614558"],["-123.9896689","41.3626735"],["-123.9894267","41.3633639"],["-123.9893894","41.3635407"],["-123.9893669","41.3636831"],["-123.98935","41.363819"],["-123.989377","41.3640034"],["-123.9894295","41.3641757"],["-123.9895517","41.3644097"],["-123.9897506","41.3647211"],["-123.9900371","41.3651099"],["-123.990933","41.3661277"],["-123.9912723","41.3665415"],["-123.9914363","41.366853"],["-123.9915466","41.3671037"],["-123.9916155","41.3673569"],["-123.9916584","41.3675661"],["-123.991666","41.3677645"],["-123.9916586","41.3679873"],["-123.9916417","41.3681991"],["-123.9915909","41.3683794"],["-123.9915108","41.3686045"],["-123.9913989","41.3688654"],["-123.9912075","41.3692473"],["-123.9909337","41.3697184"],["-123.9906549","41.3701747"],["-123.9905409","41.3703906"],["-123.9904864","41.3705554"],["-123.9904615","41.3707416"],["-123.9904675","41.3709909"],["-123.9904944","41.3712561"],["-123.990544","41.3714975"],["-123.9906551","41.371784"],["-123.9907875","41.3720777"],["-123.9909663","41.3723539"],["-123.9912119","41.3726642"],["-123.9916073","41.3730692"],["-123.99198","41.3734545"],["-123.9936235","41.3752002"],["-123.9940138","41.3756625"],["-123.9942122","41.375974"],["-123.9943628","41.3762459"],["-123.9944663","41.3764506"],["-123.994557","41.3766813"],["-123.9946679","41.3769903"],["-123.9947857","41.3773663"],["-123.9948881","41.3777253"],["-123.9949313","41.3780685"],["-123.9949645","41.3783818"],["-123.9949635","41.3790263"],["-123.9949632","41.3794814"],["-123.9949535","41.3800775"],["-123.9949424","41.3809389"],["-123.9949477","41.3820391"],["-123.9949408","41.3834638"],["-123.9949132","41.386384"],["-123.9948929","41.387567"],["-123.9948695","41.3880821"],["-123.9948375","41.3884192"],["-123.9947932","41.3887443"],["-123.9947244","41.3891345"],["-123.9946243","41.3896177"],["-123.9945084","41.390099"],["-123.9943765","41.3905059"],["-123.9940203","41.3914818"],["-123.9935755","41.3926952"],["-123.9933907","41.3932459"],["-123.9933526","41.3934483"],["-123.9933274","41.3936928"],["-123.9933333","41.3939617"],["-123.9933524","41.3942373"],["-123.9933909","41.3945814"],["-123.9934613","41.3949649"],["-123.9935807","41.395463"],["-123.9937506","41.3960875"],["-123.9937839","41.3963641"],["-123.9937962","41.3966326"],["-123.9937893","41.3967635"],["-123.9937318","41.3971443"],["-123.9934502","41.3981871"],["-123.9930386","41.3997942"],["-123.992923","41.4002682"],["-123.9928841","41.4005197"],["-123.9928791","41.4007454"],["-123.99288","41.400973"],["-123.9929048","41.4011924"],["-123.9929508","41.4014546"],["-123.9930158","41.4016961"],["-123.9931129","41.4019605"],["-123.9932298","41.4022145"],["-123.9933793","41.4024519"],["-123.9935361","41.4026717"],["-123.9939274","41.4031146"],["-123.9941696","41.4033494"],["-123.9944293","41.4035659"],["-123.995166","41.4040853"],["-123.9969755","41.4053621"],["-123.9972301","41.4055282"],["-123.9974127","41.4056267"],["-123.997857","41.4058231"],["-123.998121","41.4059224"],["-123.998466","41.4060176"],["-123.99901","41.4061352"],["-123.9992888","41.4061568"],["-124.0002627","41.4063683"],["-124.0005854","41.4064498"],["-124.0007668","41.4065108"],["-124.0010035","41.4066048"],["-124.001377","41.406785"],["-124.0016679","41.4069672"],["-124.0019965","41.4072195"],["-124.002173","41.407388"],["-124.0024169","41.4076581"],["-124.0025712","41.4078731"],["-124.0027233","41.4081502"],["-124.0028211","41.4084409"],["-124.0029881","41.4092334"],["-124.0034594","41.4116485"],["-124.0035178","41.4120802"],["-124.003509","41.4123587"],["-124.0034523","41.4126546"],["-124.003371","41.4129108"],["-124.0032375","41.4132055"],["-124.003088","41.4134566"],["-124.0029075","41.4136891"],["-124.0027912","41.4138141"],["-124.0026444","41.4139602"],["-124.0024114","41.4141442"],["-124.0018398","41.4145065"],["-123.9995114","41.4159189"],["-123.9989169","41.4162878"],["-123.9986248","41.4164957"],["-123.9983913","41.4166992"],["-123.9982231","41.4168802"],["-123.99806","41.4170863"],["-123.9979222","41.4172939"],["-123.9978198","41.4174845"],["-123.9977518","41.4176715"],["-123.9977023","41.4178488"],["-123.9976338","41.418229"],["-123.9971704","41.4210242"],["-123.9971567","41.4212804"],["-123.9971644","41.4214799"],["-123.99719","41.421684"],["-123.9972373","41.4218821"],["-123.997296","41.4220575"],["-123.9973703","41.4222282"],["-123.9974639","41.4223805"],["-123.9975604","41.4225135"],["-123.9976975","41.4226723"],["-123.9978271","41.4228122"],["-123.9980266","41.4229886"],["-123.9982101","41.4231382"],["-123.9984009","41.4232681"],["-123.9986261","41.4234086"],["-123.9988619","41.4235323"],["-123.9990661","41.42363"],["-123.9992893","41.4237185"],["-123.9995245","41.4238001"],["-124.000466","41.4239967"],["-124.0057427","41.4249815"],["-124.0060679","41.4250496"],["-124.0063161","41.4251148"],["-124.0065078","41.425173"],["-124.0067034","41.4252473"],["-124.006891","41.4253237"],["-124.007077","41.4254129"],["-124.0072891","41.4255428"],["-124.0075842","41.425746"],["-124.0084172","41.4264385"],["-124.0093005","41.4272124"],["-124.0095507","41.4273897"],["-124.0097701","41.4275156"],["-124.0099855","41.4276215"],["-124.0102181","41.4277237"],["-124.0104329","41.427801"],["-124.0106782","41.4278747"],["-124.010929","41.4279357"],["-124.0111628","41.4279798"],["-124.0124658","41.4280817"],["-124.0133386","41.4281383"],["-124.0141441","41.4281933"],["-124.0144687","41.4282296"],["-124.0146763","41.4282692"],["-124.0148668","41.428331"],["-124.0150674","41.4284011"],["-124.0152853","41.4284887"],["-124.0155747","41.4286237"],["-124.0157962","41.4287493"],["-124.0160473","41.4289082"],["-124.0194334","41.4315517"],["-124.0196814","41.4317546"],["-124.0207842","41.4326332"],["-124.0213697","41.4330824"],["-124.0216235","41.4333489"],["-124.0219165","41.4336714"],["-124.0221226","41.4339453"],["-124.0222755","41.4342065"],["-124.0223804","41.4344375"],["-124.0224812","41.4346735"],["-124.0225576","41.4349153"],["-124.0226149","41.4351572"],["-124.0226507","41.4353688"],["-124.0226626","41.4356198"],["-124.022665","41.435904"],["-124.0226257","41.4361719"],["-124.0225424","41.4365648"],["-124.0224016","41.4370264"],["-124.0222148","41.4376101"],["-124.0218775","41.4385936"],["-124.0210981","41.4412336"],["-124.020806","41.4421473"],["-124.0202666","41.4438676"],["-124.0201896","41.4441636"],["-124.0201276","41.4444681"],["-124.0201329","41.444778"],["-124.0201824","41.4450913"],["-124.0203016","41.4453448"],["-124.0204633","41.4455879"],["-124.0206781","41.4458642"],["-124.0209423","41.4461601"],["-124.0211334","41.4463368"],["-124.0213831","41.4465056"],["-124.0217268","41.4467095"],["-124.0231319","41.4474621"],["-124.0236957","41.4477803"],["-124.0240376","41.4480235"],["-124.0243442","41.4482809"],["-124.0246329","41.4485531"],["-124.0248828","41.4488621"],["-124.0251208","41.4492198"],["-124.0253902","41.4497003"],["-124.0257875","41.4504463"],["-124.0262464","41.4511341"],["-124.0265022","41.4514472"],["-124.0267214","41.451706"],["-124.0269896","41.4519679"],["-124.0272975","41.4522078"],["-124.0276323","41.4524351"],["-124.0286127","41.452959"],["-124.02921","41.4532589"],["-124.0303167","41.4537524"],["-124.0305352","41.4539084"],["-124.0307506","41.4540981"],["-124.0309226","41.4542813"],["-124.0310297","41.4544601"],["-124.0311685","41.454798"],["-124.0313249","41.4553378"],["-124.0313755","41.4555098"],["-124.0314036","41.4556175"],["-124.0314002","41.4557268"],["-124.0313566","41.4559494"],["-124.0313185","41.4561911"],["-124.0312714","41.4566121"],["-124.0312307","41.456999"],["-124.031207","41.4573241"],["-124.0312356","41.457652"],["-124.0313013","41.4579257"],["-124.0314775","41.4582746"],["-124.0317072","41.4585815"],["-124.0318852","41.4588059"],["-124.0322596","41.4591814"],["-124.0326109","41.4594012"],["-124.0330125","41.4596445"],["-124.0336207","41.4600874"],["-124.0340243","41.4604711"],["-124.0342557","41.4607419"],["-124.034631","41.4612811"],["-124.034998","41.4617628"],["-124.0354919","41.4623572"],["-124.0362071","41.4631888"],["-124.0370301","41.4641516"],["-124.0378234","41.4650649"],["-124.0383433","41.4657224"],["-124.0386804","41.4662127"],["-124.0388933","41.4664834"],["-124.0395088","41.4672207"],["-124.0403312","41.4684393"],["-124.0411958","41.4696992"],["-124.0436975","41.473616"],["-124.0441638","41.4743288"],["-124.0443689","41.4745938"],["-124.0448038","41.4750521"],["-124.0460824","41.4762875"],["-124.0465847","41.4768117"],["-124.0468911","41.477218"],["-124.0471618","41.4776186"],["-124.0476748","41.4784309"],["-124.0502721","41.4827118"],["-124.0507434","41.4835302"],["-124.0508533","41.4838392"],["-124.0509064","41.4841667"],["-124.050914","41.48469"],["-124.0509196","41.4853208"],["-124.0509311","41.4857514"],["-124.0508872","41.4860379"],["-124.050785","41.4864182"],["-124.0506292","41.4867681"],["-124.0503872","41.4871153"],["-124.0501067","41.4874868"],["-124.0484392","41.4895737"],["-124.0475645","41.4906615"],["-124.0473771","41.4908832"],["-124.047215","41.491061"],["-124.0466493","41.4914913"],["-124.0457457","41.4921876"],["-124.0451335","41.4926784"],["-124.0448365","41.4929429"],["-124.0446209","41.4931763"],["-124.0444487","41.493401"],["-124.0442935","41.493664"],["-124.0441401","41.4939471"],["-124.0439855","41.494326"],["-124.04383","41.4947367"],["-124.0437144","41.4950889"],["-124.0435983","41.4953759"],["-124.0434795","41.495636"],["-124.043309","41.4958962"],["-124.0430791","41.496133"],["-124.0427809","41.4963797"],["-124.0424231","41.4966335"],["-124.0411661","41.4974115"],["-124.0397573","41.4982606"],["-124.0345189","41.5013161"],["-124.0341688","41.5015802"],["-124.0338661","41.501819"],["-124.0335754","41.5021273"],["-124.033372","41.5023893"],["-124.033193","41.5026694"],["-124.0329972","41.5029912"],["-124.0328378","41.5033318"],["-124.0326636","41.5037352"],["-124.0325156","41.5042987"],["-124.0321062","41.5064376"],["-124.0319885","41.5069588"],["-124.0318704","41.5072062"],["-124.031544","41.5077814"],["-124.0314683","41.5078707"],["-124.0312551","41.5080972"],["-124.0302385","41.5092825"],["-124.0293798","41.5102717"],["-124.0291561","41.5105395"],["-124.0288962","41.5109216"],["-124.0287872","41.5110925"],["-124.0286969","41.5112793"],["-124.0285932","41.5115316"],["-124.0285282","41.5117513"],["-124.0284688","41.5119745"],["-124.0284117","41.5124234"],["-124.0284052","41.5126965"],["-124.0284397","41.5130894"],["-124.0286114","41.5138264"],["-124.0287928","41.5141964"],["-124.0290262","41.5146162"],["-124.0327015","41.5207341"],["-124.033191","41.5215158"],["-124.0339112","41.5227347"],["-124.0350357","41.5245576"],["-124.0352446","41.5248392"],["-124.0354785","41.5251091"],["-124.0356923","41.5253354"],["-124.0359069","41.5255463"],["-124.0378126","41.5274164"],["-124.0478532","41.5373708"],["-124.0482843","41.5378309"],["-124.048539","41.5381259"],["-124.0487507","41.5384153"],["-124.0489321","41.5387135"],["-124.0491014","41.5390322"],["-124.0500634","41.541099"],["-124.050658","41.5424005"],["-124.0508456","41.542825"],["-124.0509341","41.543035"],["-124.0515179","41.5448919"],["-124.0518758","41.5460922"],["-124.0520893","41.5467774"],["-124.0528494","41.5494588"],["-124.0529236","41.5496662"],["-124.053057","41.5499473"],["-124.0540362","41.5515088"],["-124.0549182","41.5534279"],["-124.0552229","41.5541365"],["-124.0554936","41.5546911"],["-124.0557173","41.5549809"],["-124.0558006","41.5550521"],["-124.0561144","41.5553853"],["-124.0594522","41.5585294"],["-124.0598588","41.5589154"],["-124.0605034","41.5595356"],["-124.0625103","41.5613933"],["-124.0633637","41.5621739"],["-124.0637166","41.5624234"],["-124.0640676","41.5626479"],["-124.0647536","41.5630694"],["-124.0652424","41.5633741"],["-124.0658072","41.563731"],["-124.0662005","41.5640202"],["-124.0665702","41.5643373"],["-124.066871","41.5646486"],["-124.0671513","41.5650172"],["-124.0682623","41.5669418"],["-124.0686289","41.5675736"],["-124.0688786","41.5680147"],["-124.0708303","41.571527"],["-124.0714666","41.5726706"],["-124.0738248","41.5768365"],["-124.073957","41.5770352"],["-124.0741473","41.5772882"],["-124.0743963","41.5775777"],["-124.0747772","41.5779392"],["-124.0753922","41.5784369"],["-124.0757509","41.5786858"],["-124.0793801","41.5813148"],["-124.0799392","41.5816741"],["-124.0808526","41.5821921"],["-124.081956","41.5827303"],["-124.0824593","41.5829555"],["-124.0826229","41.5830315"],["-124.0828071","41.5831131"],["-124.082991","41.5831611"],["-124.0832144","41.5832195"],["-124.0839029","41.5834019"],["-124.0853591","41.5837873"],["-124.0898398","41.5848484"],["-124.0903616","41.5849891"],["-124.0907027","41.5851201"],["-124.0910324","41.585283"],["-124.0913236","41.5854612"],["-124.0915889","41.5856604"],["-124.091779","41.585831"],["-124.0923733","41.5864407"],["-124.0927913","41.5868961"],["-124.0946801","41.5889134"],["-124.095384","41.5897361"],["-124.095729","41.5901989"],["-124.0959694","41.590563"],["-124.0963436","41.59122"],["-124.096706","41.591902"],["-124.0970038","41.5924465"],["-124.0972006","41.5927505"],["-124.0974977","41.5931439"],["-124.097762","41.5934576"],["-124.0980111","41.5937313"],["-124.0986461","41.5943023"],["-124.0989289","41.5945225"],["-124.0991484","41.5946601"],["-124.0999061","41.5950674"],["-124.1001406","41.5952006"],["-124.1004163","41.5953927"],["-124.1005583","41.5955277"],["-124.1006988","41.5956959"],["-124.1008119","41.5958664"],["-124.1009673","41.5962211"],["-124.1010172","41.5964646"],["-124.1010229","41.5967003"],["-124.1009765","41.5970142"],["-124.1003926","41.59952"],["-124.100295","41.5998765"],["-124.1001775","41.6006109"],["-124.0999732","41.601976"],["-124.099931","41.6022781"],["-124.0999265","41.6024247"],["-124.0999374","41.6026344"],["-124.0999664","41.6028236"],["-124.100067","41.6032603"],["-124.1002026","41.6035529"],["-124.1003073","41.6037344"],["-124.1004056","41.6038937"],["-124.10053","41.6040572"],["-124.1006988","41.6042406"],["-124.1009063","41.6044369"],["-124.1012339","41.6047107"],["-124.1016094","41.6049935"],["-124.1023295","41.6055702"],["-124.1025452","41.6058121"],["-124.1027136","41.6060705"],["-124.1029002","41.6063806"],["-124.10301","41.6066217"],["-124.1031081","41.6069176"],["-124.103221","41.6072835"],["-124.1034605","41.6079197"],["-124.1036808","41.6084541"],["-124.1039122","41.6089175"],["-124.1047957","41.6102393"],["-124.1050265","41.6106389"],["-124.1052407","41.6110953"],["-124.1053813","41.6114237"],["-124.1055724","41.6120703"],["-124.1056607","41.6124129"],["-124.1057653","41.6128894"],["-124.1058181","41.6131881"],["-124.1058803","41.6135344"],["-124.1060189","41.6145919"],["-124.106103","41.6148742"],["-124.1061998","41.6151306"],["-124.106321","41.6153314"],["-124.1064611","41.6155235"],["-124.1066974","41.6157738"],["-124.1068421","41.6159063"],["-124.1069585","41.6159946"],["-124.1073115","41.6162184"],["-124.1079894","41.6166393"],["-124.1085741","41.6170096"],["-124.1088378","41.6172379"],["-124.109127","41.6175841"],["-124.1092077","41.6177161"],["-124.1092669","41.6178402"],["-124.1093389","41.6180559"],["-124.1093738","41.6182077"],["-124.1093911","41.6184447"],["-124.1093938","41.6186066"],["-124.1093461","41.6189408"],["-124.1093083","41.6191965"],["-124.1092954","41.6193833"],["-124.1093189","41.6196513"],["-124.1095371","41.6209649"],["-124.1096511","41.6214951"],["-124.1097141","41.6216906"],["-124.1098067","41.6219039"],["-124.1099765","41.6222075"],["-124.1101347","41.622438"],["-124.1102955","41.6226261"],["-124.1107137","41.6230506"],["-124.1109487","41.6233147"],["-124.1110564","41.6234594"],["-124.1111566","41.6236335"],["-124.111251","41.6238188"],["-124.1113138","41.6239672"],["-124.1113673","41.6241669"],["-124.1114806","41.6247788"],["-124.1115299","41.6249512"],["-124.1116806","41.6252048"],["-124.1119101","41.6255802"],["-124.1122747","41.62619"],["-124.1123878","41.6264375"],["-124.1124306","41.6265684"],["-124.1124575","41.6267052"],["-124.1124558","41.6270107"],["-124.1124165","41.627262"],["-124.1123259","41.6277352"],["-124.1122886","41.6281058"],["-124.1122768","41.628405"],["-124.1122906","41.6286057"],["-124.1124027","41.6290506"],["-124.1124425","41.6292762"],["-124.112482","41.6295062"],["-124.1124758","41.6298367"],["-124.1125125","41.6301473"],["-124.1125798","41.6303124"],["-124.1127079","41.630483"],["-124.1130838","41.6309281"],["-124.1134141","41.6312923"],["-124.113736","41.6316174"],["-124.114403","41.6322275"],["-124.1145168","41.6323881"],["-124.1145721","41.6325557"],["-124.1146752","41.6327246"],["-124.1149927","41.6330706"],["-124.1155079","41.6336176"],["-124.1156314","41.6338144"],["-124.115716","41.6340489"],["-124.1157321","41.6342946"],["-124.1156629","41.6345998"],["-124.1155543","41.6350695"],["-124.1154423","41.6355722"],["-124.1153777","41.6359178"],["-124.1153947","41.6364072"],["-124.1153891","41.6365377"],["-124.1153602","41.6366372"],["-124.1152988","41.6367762"],["-124.1150783","41.6371839"],["-124.1149613","41.637432"],["-124.1149446","41.637543"],["-124.1149642","41.6376114"],["-124.1151109","41.637883"],["-124.1152325","41.6380585"],["-124.1153213","41.638244"],["-124.1153129","41.638461"],["-124.115218","41.6389385"],["-124.1151047","41.6393942"],["-124.1150602","41.6396335"],["-124.1150915","41.6400471"],["-124.1151427","41.6403876"],["-124.1152333","41.6406701"],["-124.1153653","41.6409871"],["-124.1154569","41.6412325"],["-124.1155566","41.6416455"],["-124.1155801","41.6418811"],["-124.1155607","41.64211"],["-124.1155269","41.6422153"],["-124.115457","41.6423941"],["-124.1153132","41.6426334"],["-124.1149473","41.6431142"],["-124.1140682","41.6442345"],["-124.1137614","41.6446422"],["-124.1134163","41.6450766"],["-124.1131001","41.6454863"],["-124.1128449","41.645839"],["-124.1126034","41.6461738"],["-124.1124383","41.6464396"],["-124.1123836","41.6465598"],["-124.112336","41.6470369"],["-124.1123441","41.6471539"],["-124.1123739","41.6472656"],["-124.1125279","41.6475863"],["-124.112655","41.6477842"],["-124.1127442","41.6478919"],["-124.1128749","41.648007"],["-124.113563","41.6485433"],["-124.1138294","41.6487625"],["-124.1140853","41.6490037"],["-124.114253","41.6492119"],["-124.1144495","41.6494738"],["-124.1145503","41.6496564"],["-124.1146638","41.649932"],["-124.1149349","41.6507215"],["-124.1151636","41.6513995"],["-124.1155494","41.652605"],["-124.1157478","41.6531935"],["-124.1158326","41.6535098"],["-124.115885","41.6537952"],["-124.1159286","41.6544571"],["-124.1159269","41.6551962"],["-124.1158929","41.6555506"],["-124.1158305","41.6559664"],["-124.1157072","41.6565"],["-124.1155704","41.6570195"],["-124.1154291","41.6575163"],["-124.115372","41.6577977"],["-124.1153579","41.6580138"],["-124.1153772","41.6581559"],["-124.1154207","41.6583012"],["-124.1155274","41.6584951"],["-124.1156658","41.6587054"],["-124.1159526","41.6590652"],["-124.116147","41.6593255"],["-124.1162442","41.6595445"],["-124.1162789","41.6597948"],["-124.1162821","41.6600947"],["-124.1162585","41.6602952"],["-124.1162284","41.6604484"],["-124.1161674","41.6606"],["-124.1160806","41.6609082"],["-124.1159874","41.6612369"],["-124.1158921","41.6615766"],["-124.115806","41.6618719"],["-124.1156071","41.6623877"],["-124.1153787","41.6628804"],["-124.1151847","41.6631584"],["-124.1149035","41.663444"],["-124.1146106","41.6637688"],["-124.1141736","41.6642421"],["-124.113686","41.6647902"],["-124.1132262","41.6654022"],["-124.1130712","41.6656864"],["-124.1130067","41.6658306"],["-124.1129757","41.6659446"],["-124.1129461","41.6661236"],["-124.1129132","41.6665449"],["-124.1129183","41.6671102"],["-124.1130958","41.6681461"],["-124.113259","41.6690804"],["-124.1134175","41.6701318"],["-124.1135598","41.6711518"],["-124.1137032","41.6721912"],["-124.1138015","41.6729929"],["-124.1138331","41.6737114"],["-124.1138102","41.673948"],["-124.1137574","41.6741417"],["-124.1136936","41.6743287"],["-124.1135581","41.674662"],["-124.1133838","41.6750635"],["-124.1131325","41.6756965"],["-124.1130064","41.6761101"],["-124.1129086","41.6766138"],["-124.1128516","41.6772413"],["-124.1128509","41.6774368"],["-124.1129071","41.6778186"],["-124.1130074","41.6783383"],["-124.1131215","41.6786767"],["-124.1132296","41.6789289"],["-124.1135441","41.6795452"],["-124.1137489","41.6799868"],["-124.1138982","41.6803569"],["-124.1139538","41.6805951"],["-124.1139694","41.680731"],["-124.1139689","41.6810012"],["-124.1139359","41.6813261"],["-124.113906","41.6815723"],["-124.1138788","41.6819694"],["-124.1138492","41.6823217"],["-124.1137692","41.6827003"],["-124.1136982","41.6829024"],["-124.1136123","41.6830786"],["-124.1134593","41.6832887"],["-124.1133306","41.6834323"],["-124.1131138","41.6836062"],["-124.1129729","41.6837004"],["-124.1126745","41.6838299"],["-124.1124102","41.6839094"],["-124.108171","41.6848763"],["-124.1078942","41.684976"],["-124.1076268","41.6851043"],["-124.1074419","41.6852422"],["-124.1072605","41.6853915"],["-124.1070706","41.6855952"],["-124.106914","41.6858103"],["-124.1067791","41.6860437"],["-124.1067164","41.6862436"],["-124.1066981","41.6864604"],["-124.1067084","41.6867448"],["-124.1067779","41.6871048"],["-124.106861","41.6874464"],["-124.1068932","41.6876662"],["-124.1068961","41.6879779"],["-124.1068742","41.6881233"],["-124.1067774","41.6884346"],["-124.1064898","41.6891596"],["-124.1064072","41.689404"],["-124.1063647","41.6896317"],["-124.1063546","41.6898307"],["-124.1063576","41.6899794"],["-124.1063872","41.6901514"],["-124.10644","41.6903025"],["-124.1065251","41.6904408"],["-124.1068073","41.6908201"],["-124.1070942","41.6911639"],["-124.1072967","41.6913591"],["-124.1074827","41.6915102"],["-124.1077558","41.6917135"],["-124.1080873","41.6919428"],["-124.1083751","41.6921245"],["-124.1087524","41.6923373"],["-124.1092541","41.6926035"],["-124.1102178","41.6930338"],["-124.1128248","41.6942068"],["-124.1133779","41.6944058"],["-124.1141111","41.6945868"],["-124.1152764","41.6948221"],["-124.116144","41.6950194"],["-124.1165984","41.69516"],["-124.117043","41.695313"],["-124.1174519","41.6954872"],["-124.1178117","41.6956874"],["-124.1180464","41.6958588"],["-124.118457","41.6962055"],["-124.1188377","41.6965743"],["-124.1191616","41.6969618"],["-124.1193851","41.6972719"],["-124.1196772","41.6977549"],["-124.1199088","41.6981841"],["-124.120237","41.6988284"],["-124.1213032","41.7005892"],["-124.1217442","41.7011674"],["-124.122312","41.7017751"],["-124.124544","41.7039155"],["-124.1250183","41.7043467"],["-124.1260586","41.7053099"],["-124.1263487","41.7055115"],["-124.1265613","41.7056104"],["-124.1269232","41.7057386"],["-124.1273205","41.7058488"],["-124.1275936","41.7058739"],["-124.1278971","41.7058852"],["-124.1289435","41.7058488"],["-124.1294034","41.7058794"],["-124.1297386","41.705948"],["-124.1300192","41.7060486"],["-124.1301926","41.7061275"],["-124.1303191","41.7062152"],["-124.1304439","41.7063213"],["-124.1305766","41.7064987"],["-124.1307845","41.7068908"],["-124.1309918","41.7071915"],["-124.1312459","41.7075392"],["-124.1314168","41.7078029"],["-124.1314591","41.7078948"],["-124.1314901","41.7080541"],["-124.1314859","41.7082862"],["-124.1314675","41.7084128"],["-124.1314381","41.7084895"],["-124.1313828","41.708572"],["-124.1312044","41.7087546"],["-124.1310919","41.7088537"],["-124.130981","41.7089194"],["-124.1307052","41.7090417"],["-124.1301474","41.7092343"],["-124.1298065","41.7093299"],["-124.1292336","41.7094362"],["-124.1283983","41.709548"],["-124.1278985","41.7096298"],["-124.1276317","41.7097083"],["-124.1274174","41.7097859"],["-124.1272758","41.7098543"],["-124.1271716","41.7099186"],["-124.1270924","41.7099999"],["-124.1270277","41.7100861"],["-124.1269888","41.7101837"],["-124.1269674","41.7102962"],["-124.12697","41.710701"],["-124.1270129","41.7108425"],["-124.1271498","41.7109981"],["-124.1272669","41.7110852"],["-124.1273942","41.7111473"],["-124.1275606","41.7112029"],["-124.1277254","41.7112381"],["-124.1279442","41.7112591"],["-124.1283396","41.7112461"],["-124.1285322","41.7112535"],["-124.1287061","41.7112721"],["-124.1288504","41.7113003"],["-124.1289766","41.7113349"],["-124.1290831","41.7113788"],["-124.1292238","41.7114643"],["-124.1294483","41.7116456"],["-124.1295702","41.7117837"],["-124.1296733","41.7119298"],["-124.1297679","41.7120982"],["-124.1299286","41.7125307"],["-124.1300555","41.7127663"],["-124.1301651","41.7128866"],["-124.1302663","41.7129758"],["-124.1303786","41.7130445"],["-124.1304967","41.7131014"],["-124.1306742","41.7131557"],["-124.1309497","41.7132202"],["-124.1330966","41.7136403"],["-124.1339363","41.713853"],["-124.1344882","41.7140157"],["-124.1349012","41.7141389"],["-124.135034","41.7141872"],["-124.1352057","41.714275"],["-124.1353043","41.7143519"],["-124.135403","41.7144541"],["-124.1355153","41.7146241"],["-124.1355893","41.7147787"],["-124.1356481","41.7150142"],["-124.1356996","41.7154071"],["-124.13573","41.7158955"],["-124.1357725","41.7161186"],["-124.1358749","41.7163436"],["-124.136131","41.7167029"],["-124.136393","41.717039"],["-124.1365644","41.7173174"],["-124.1367752","41.7177425"],["-124.1368947","41.7180404"],["-124.1372659","41.7190626"],["-124.1375242","41.7197433"],["-124.137885","41.7204843"],["-124.1381901","41.7211477"],["-124.1384775","41.7217929"],["-124.1387261","41.7223254"],["-124.1389522","41.7227944"],["-124.1392104","41.7233753"],["-124.1393665","41.7236704"],["-124.1395013","41.7238276"],["-124.1397679","41.7240693"],["-124.1405089","41.7245659"],["-124.1408904","41.7248302"],["-124.141077","41.7250239"],["-124.141175","41.7251547"],["-124.1414456","41.7256327"],["-124.1418312","41.7263961"],["-124.1420915","41.7269461"],["-124.1423361","41.7275225"],["-124.1425291","41.7279055"],["-124.1428747","41.7284966"],["-124.1430753","41.7288116"],["-124.1433363","41.7291126"],["-124.1435086","41.7293537"],["-124.1439616","41.729844"],["-124.1445091","41.7303642"],["-124.1463146","41.7319189"],["-124.1471637","41.7326099"],["-124.1476902","41.7329806"],["-124.1480557","41.7332175"],["-124.1484285","41.7334373"],["-124.1488897","41.7336659"],["-124.1495265","41.7339591"],["-124.1500239","41.7341944"],["-124.1683841","41.7429391"],["-124.1696168","41.7434987"],["-124.1703346","41.7437908"],["-124.1710303","41.7440332"],["-124.173991","41.7449865"],["-124.1749134","41.7453011"],["-124.1754752","41.7455191"],["-124.1757166","41.7456395"],["-124.175913","41.7457441"],["-124.1761777","41.745894"],["-124.17656","41.7461471"],["-124.1768925","41.7463726"],["-124.1774599","41.7467822"],["-124.1829137","41.7508141"],["-124.1843891","41.7518864"],["-124.1846153","41.7520037"],["-124.1847899","41.7520637"],["-124.1850316","41.7521206"],["-124.1858574","41.7522912"],["-124.1901529","41.7532138"],["-124.1904738","41.7532421"],["-124.1906451","41.753223"],["-124.1908711","41.7531704"],["-124.1910351","41.7531294"],["-124.1912171","41.753106"],["-124.1912954","41.7530815"],["-124.1914527","41.7530465"],["-124.1915999","41.7530413"],["-124.1917463","41.7530615"],["-124.1919185","41.7531203"],["-124.192056","41.7531963"],["-124.1921422","41.7532715"],["-124.1928043","41.7539644"],["-124.1933718","41.7545656"],["-124.1939693","41.7552052"],["-124.1946567","41.7559173"],["-124.1953822","41.756681"],["-124.1960648","41.7574015"],["-124.1972424","41.7586108"],["-124.1974423","41.7588564"],["-124.1975405","41.7590037"],["-124.1976698","41.7592668"],["-124.1977286","41.7593817"],["-124.1977639","41.7595426"],["-124.1977814","41.7597387"],["-124.1976223","41.7610587"],["-124.1975342","41.7615178"],["-124.197429","41.7618848"],["-124.1971663","41.7625951"],["-124.1968827","41.7631292"],["-124.1968578","41.763307"],["-124.1966255","41.7636781"],["-124.196482","41.7639155"],["-124.1961151","41.7643636"],["-124.1954879","41.7651017"],["-124.1952746","41.7653043"],["-124.1950442","41.7655204"],["-124.1940081","41.7663364"],["-124.1938053","41.7664845"],["-124.1936348","41.7665942"],["-124.1931618","41.7669065"],["-124.192687","41.7672216"],["-124.1924482","41.7673917"],["-124.1922475","41.7675137"],["-124.1914353","41.7680886"],["-124.1910096","41.7683797"],["-124.1906381","41.7685671"],["-124.1894637","41.7693984"],["-124.1891085","41.7696645"],["-124.1889823","41.7697806"],["-124.188756","41.7700215"],["-124.1884334","41.7703836"],["-124.1883133","41.7705467"],["-124.1881297","41.7707935"],["-124.1878457","41.771337"],["-124.1876782","41.7717116"],["-124.1871464","41.7728825"],["-124.1867803","41.7736598"],["-124.1864637","41.7741855"],["-124.1862325","41.7745251"],["-124.1860376","41.7747759"],["-124.1858424","41.7750057"],["-124.1853975","41.7755022"],["-124.1850449","41.7758323"],["-124.1846508","41.7761558"],["-124.1842906","41.7764378"],["-124.1527633","41.7978791"],["-124.1521963","41.7983168"],["-124.1516478","41.7987849"],["-124.1511748","41.7992186"],["-124.1508102","41.7996049"],["-124.1503801","41.8001091"],["-124.1500296","41.8005393"],["-124.1496525","41.8010161"],["-124.14937","41.8014196"],["-124.1489683","41.8020824"],["-124.1487679","41.8024451"],["-124.1485726","41.8028314"],["-124.1483812","41.8032334"],["-124.1481655","41.8037536"],["-124.1479758","41.8043695"],["-124.1477581","41.8051124"],["-124.1475635","41.8062079"],["-124.1473332","41.8079119"],["-124.1473068","41.8081391"],["-124.1471198","41.8095561"],["-124.1470142","41.8103616"],["-124.1463715","41.8152417"],["-124.1447741","41.8292046"],["-124.1444505","41.8320874"],["-124.1422221","41.8550913"],["-124.1418842","41.8580252"],["-124.1417133","41.8590822"],["-124.1416188","41.8596419"],["-124.1414736","41.8603809"],["-124.1393155","41.8699355"],["-124.1388831","41.8718133"],["-124.1377841","41.8765834"],["-124.1373454","41.8785981"],["-124.1370188","41.8801174"],["-124.136831","41.880948"],["-124.136779","41.8812204"],["-124.1367377","41.8815468"],["-124.1367091","41.8823156"],["-124.1365432","41.9183321"],["-124.1365435","41.9188582"],["-124.1365403","41.9191258"],["-124.1365408","41.9193695"],["-124.1365591","41.9197001"],["-124.1366272","41.9200775"],["-124.1367035","41.9204072"],["-124.1368305","41.920741"],["-124.1369853","41.921102"],["-124.1372379","41.9215566"],["-124.1374168","41.9218279"],["-124.1376108","41.9220843"],["-124.1382796","41.9228369"],["-124.139101","41.923742"],["-124.1427997","41.9278469"],["-124.1430533","41.9281093"],["-124.1432552","41.92829"],["-124.1437295","41.9287019"],["-124.144022","41.9289312"],["-124.1443595","41.9291633"],["-124.1446981","41.9293846"],["-124.1450795","41.9296144"],["-124.145408","41.9297884"],["-124.1456461","41.9299056"],["-124.1459557","41.9300423"],["-124.1462614","41.9301805"],["-124.1467505","41.930381"],["-124.1471393","41.9305216"],["-124.1476381","41.9306668"],["-124.1482663","41.9308265"],["-124.1488585","41.9309498"],["-124.1680813","41.9344548"],["-124.1694816","41.9347593"],["-124.1702162","41.9349467"],["-124.1709946","41.9351815"],["-124.1718988","41.9354761"],["-124.173028","41.9359051"],["-124.1750249","41.9367528"],["-124.1753393","41.9368945"],["-124.1761816","41.9372619"],["-124.1880789","41.9424818"],["-124.1887013","41.9427743"],["-124.1893861","41.943122"],["-124.1899657","41.9434253"],["-124.1904891","41.9437282"],["-124.1910029","41.9440453"],["-124.2030305","41.9518303"],["-124.2032985","41.9520357"],["-124.2035","41.9522236"],["-124.2037187","41.9524734"],["-124.2039353","41.9527309"],["-124.2041641","41.9530482"],["-124.2043983","41.9534854"],["-124.2045387","41.9538966"],["-124.2046196","41.9542065"],["-124.2046834","41.9545225"],["-124.2047002","41.9548541"],["-124.2046947","41.9551324"],["-124.2046844","41.9553436"],["-124.2046332","41.9556476"],["-124.2045459","41.9559771"],["-124.2039032","41.9582346"],["-124.2035528","41.9594911"],["-124.2035323","41.9595618"],["-124.2031863","41.9610673"],["-124.2030859","41.9614197"],["-124.2029919","41.9617219"],["-124.2028563","41.9621815"],["-124.2027517","41.9626706"],["-124.2026857","41.9632124"],["-124.2026586","41.9636049"],["-124.2026319","41.9642185"],["-124.2026396","41.9651487"],["-124.2029837","41.9746592"],["-124.2031351","41.9774737"],["-124.2031892","41.9788958"],["-124.2033312","41.9810573"],["-124.2033459","41.9826048"],["-124.2033611","41.9835318"],["-124.203391","41.9837778"],["-124.2034899","41.9841103"],["-124.2036531","41.9844741"],["-124.2038007","41.9847421"],["-124.2041403","41.9852191"],["-124.2066494","41.988588"],["-124.2069813","41.9890523"],["-124.2072862","41.9894632"],["-124.2073805","41.989731"],["-124.2075497","41.9901423"],["-124.2076702","41.9905599"],["-124.2077416","41.9908501"],["-124.2077909","41.9911041"],["-124.2078833","41.9922665"],["-124.2078831","41.9925224"],["-124.208223","41.9980792"],["-124.2082553","41.9983406"],["-124.2084522","41.9999483"],["-124.2085397","42.0005934"],["-124.2086721","42.0012179"],["-124.20879","42.0017131"],["-124.2089362","42.0022284"],["-124.2090867","42.0027135"],["-124.2092769","42.0032434"],["-124.209451","42.0036808"],["-124.2096649","42.0041928"],["-124.2100788","42.0050773"],["-124.2107266","42.0062948"],["-124.2112976","42.0072146"],["-124.2116857","42.0077654"],["-124.2119828","42.0081532"],["-124.2132454","42.0095694"],["-124.2149536","42.0115776"],["-124.2153839","42.0120927"],["-124.2192425","42.0164624"],["-124.2200389","42.0172614"],["-124.2208649","42.0180065"],["-124.2281198","42.0240242"],["-124.2294096","42.0251045"],["-124.2351167","42.0298124"],["-124.2365227","42.0309743"],["-124.237833","42.032087"],["-124.2411131","42.0348116"],["-124.24131","42.0349768"],["-124.2416712","42.0352777"],["-124.242108","42.0356407"],["-124.2426042","42.0360535"],["-124.242776","42.0361874"],["-124.2429522","42.0363375"],["-124.2434108","42.0367193"],["-124.2470513","42.0397275"],["-124.2474504","42.0400767"],["-124.252264","42.0440869"],["-124.2531941","42.0448701"],["-124.2543175","42.0458145"],["-124.2578854","42.0487653"],["-124.2634144","42.0533525"],["-124.2637366","42.053602"],["-124.2639151","42.0537282"],["-124.2642696","42.0539665"],["-124.2644964","42.0540947"],["-124.2647184","42.0542141"],["-124.2649891","42.0543381"],["-124.2654167","42.0544993"],["-124.2655767","42.0545875"],["-124.2661242","42.0547113"],["-124.2665195","42.0547736"],["-124.266904","42.0548216"],["-124.2671358","42.0548087"],["-124.2709771","42.0550438"],["-124.2714618","42.0550616"],["-124.2723778","42.0550407"],["-124.2726831","42.0550203"],["-124.2731406","42.0549639"],["-124.273437","42.0549103"],["-124.2737653","42.0548418"],["-124.274076","42.0547756"],["-124.2743738","42.0547039"],["-124.2814075","42.0525649"],["-124.2816844","42.0524866"],["-124.2822157","42.0523597"],["-124.2825344","42.0523158"],["-124.2827602","42.0522971"],["-124.2829673","42.0522847"],["-124.2832041","42.0522861"],["-124.2834341","42.0522976"],["-124.2836701","42.0523229"],["-124.2839255","42.0523668"],["-124.2841629","42.0524182"],["-124.2843788","42.0524756"],["-124.2845819","42.0525407"],["-124.2848147","42.0526306"],["-124.2850136","42.0527216"],["-124.2853372","42.0528862"],["-124.2859336","42.0532099"],["-124.2878175","42.054225"],["-124.2881677","42.054383"],["-124.2886922","42.0545898"],["-124.2892065","42.0547674"],["-124.2897924","42.054944"],["-124.2906226","42.0551497"],["-124.2954901","42.0562686"],["-124.2957629","42.0563545"],["-124.2961853","42.0565064"],["-124.2965292","42.0566591"],["-124.2967423","42.0567669"],["-124.2969604","42.0568884"],["-124.2970672","42.0569576"],["-124.297303","42.0571208"],["-124.2974513","42.0572267"],["-124.297622","42.0573667"],["-124.297796","42.0575311"],["-124.2980219","42.057769"],["-124.2987179","42.0585778"],["-124.3013227","42.0617079"],["-124.3017009","42.0622468"],["-124.302389","42.0632903"],["-124.3028546","42.063966"],["-124.3034567","42.0647406"],["-124.3039678","42.0654068"],["-124.3042775","42.0658188"],["-124.3047901","42.0664734"],["-124.305886","42.0678999"],["-124.3074049","42.0699"],["-124.3080735","42.0707225"],["-124.3098012","42.0730393"],["-124.3102954","42.0737001"],["-124.3111118","42.0747299"],["-124.3116826","42.0753458"],["-124.3121912","42.0758811"],["-124.3127528","42.076461"],["-124.3131324","42.0768342"],["-124.3134851","42.0771985"],["-124.3139296","42.0775862"],["-124.3143447","42.0779352"],["-124.3147426","42.0782584"],["-124.3152644","42.0786432"],["-124.315871","42.0790749"],["-124.3164229","42.0794054"],["-124.3175849","42.0801075"],["-124.3185232","42.0806355"],["-124.321968","42.0825053"],["-124.3232515","42.0832135"],["-124.3239906","42.0836187"],["-124.3253242","42.0843142"],["-124.3264986","42.0850148"],["-124.3268421","42.0852657"],["-124.3271685","42.0855496"],["-124.3274852","42.0858462"],["-124.328185","42.0865761"],["-124.3285001","42.0869349"],["-124.3300128","42.0885815"],["-124.3304034","42.088997"],["-124.3314069","42.0900928"],["-124.3397594","42.0992257"],["-124.3409005","42.1005208"],["-124.3413144","42.1010251"],["-124.3421788","42.102127"],["-124.3432647","42.1036978"],["-124.3447397","42.1058657"],["-124.3477714","42.110367"],["-124.3481697","42.1110044"],["-124.3483766","42.1113921"],["-124.3485157","42.1117063"],["-124.3486149","42.1120049"],["-124.3487057","42.1123192"],["-124.3488027","42.1129221"],["-124.3488303","42.1133685"],["-124.3489158","42.1163113"],["-124.3489641","42.1179691"],["-124.3490223","42.1195723"],["-124.3490706","42.1203352"],["-124.34913","42.1215784"],["-124.3491605","42.1221047"],["-124.3492041","42.1226449"],["-124.3493787","42.1235164"],["-124.3495837","42.1244918"],["-124.3496252","42.1248851"],["-124.3496254","42.1251661"],["-124.3495991","42.1254623"],["-124.3495411","42.1257208"],["-124.3494616","42.1260162"],["-124.3491173","42.1269652"],["-124.3485896","42.1284264"],["-124.3484551","42.1288293"],["-124.3484033","42.1291936"],["-124.3484032","42.12955"],["-124.3484633","42.1298785"],["-124.3485774","42.130181"],["-124.3486938","42.1304436"],["-124.3489628","42.1308772"],["-124.3495443","42.1317767"],["-124.3497909","42.1322138"],["-124.3499158","42.1325304"],["-124.3500023","42.132852"],["-124.3500624","42.1331834"],["-124.35008","42.1335079"],["-124.350077","42.1337945"],["-124.3500691","42.1340829"],["-124.3500401","42.1343833"],["-124.3500015","42.1347355"],["-124.3499243","42.1352719"],["-124.3498986","42.1355786"],["-124.3498864","42.135848"],["-124.349906","42.1361554"],["-124.3500071","42.1364895"],["-124.3501441","42.1367997"],["-124.3503259","42.1370952"],["-124.3506121","42.1374695"],["-124.3509776","42.1379099"],["-124.351481","42.1385135"],["-124.3517346","42.1388527"],["-124.3519497","42.1391958"],["-124.3521131","42.1395082"],["-124.3522346","42.1398355"],["-124.3523273","42.140168"],["-124.3523857","42.1404432"],["-124.3523923","42.1410251"],["-124.3523388","42.1413384"],["-124.3520839","42.1428171"],["-124.3520259","42.1433618"],["-124.3520348","42.1437382"],["-124.3520948","42.1441555"],["-124.3521876","42.1445533"],["-124.3523191","42.1448522"],["-124.3524764","42.1451476"],["-124.3526808","42.1454685"],["-124.3529285","42.1457705"],["-124.3532307","42.1460944"],["-124.3535434","42.1463721"],["-124.3539061","42.1466538"],["-124.3542563","42.1468939"],["-124.354596","42.1471111"],["-124.3575435","42.1488437"],["-124.3581137","42.1491984"],["-124.3584443","42.1494684"],["-124.3589221","42.1499372"],["-124.3591831","42.150262"],["-124.3594074","42.1505961"],["-124.3595358","42.1509492"],["-124.3596421","42.15127"],["-124.3597311","42.1517058"],["-124.3598534","42.1527243"],["-124.3601773","42.1561048"],["-124.360182","42.1565437"],["-124.3601397","42.1569075"],["-124.3600516","42.1572599"],["-124.3599172","42.1576151"],["-124.3597379","42.1579717"],["-124.3595125","42.1583302"],["-124.3592598","42.1586779"],["-124.3589523","42.1590678"],["-124.3586588","42.1594519"],["-124.3583983","42.1598246"],["-124.3581561","42.16029"],["-124.3579133","42.1608136"],["-124.3577425","42.1613689"],["-124.3576474","42.1617937"],["-124.357631","42.1621939"],["-124.3576782","42.1625896"],["-124.3577404","42.1629874"],["-124.3578074","42.1632706"],["-124.3578877","42.1635222"],["-124.3580194","42.1638959"],["-124.3581707","42.1642151"],["-124.3586382","42.16506"],["-124.3595144","42.1666758"],["-124.3599113","42.1674827"],["-124.3600022","42.1677734"],["-124.3600568","42.1680786"],["-124.3601048","42.1683879"],["-124.3600871","42.168719"],["-124.3600291","42.169072"],["-124.3598934","42.1694539"],["-124.3597342","42.1697899"],["-124.359567","42.1700765"],["-124.3594685","42.1702552"],["-124.359191","42.1706293"],["-124.3587752","42.1711791"],["-124.3582965","42.1717831"],["-124.3580691","42.1721563"],["-124.3578727","42.1724309"],["-124.3577754","42.1727323"],["-124.357734","42.1730633"],["-124.3577154","42.1733376"],["-124.3577428","42.1735735"],["-124.3577944","42.1738505"],["-124.358228","42.1749268"],["-124.3584061","42.1754903"],["-124.3585263","42.1758676"],["-124.3585854","42.1761188"],["-124.3585945","42.1763803"],["-124.358569","42.1766619"],["-124.3584998","42.1769346"],["-124.3582399","42.1775979"],["-124.3581286","42.1779169"],["-124.3580511","42.1782368"],["-124.3580342","42.1785749"],["-124.3580772","42.1789024"],["-124.3581895","42.1792413"],["-124.3583767","42.1795461"],["-124.3585883","42.1798425"],["-124.3588893","42.1801738"],["-124.3592435","42.1805726"],["-124.3594889","42.1808749"],["-124.3596843","42.1811702"],["-124.3598217","42.1814897"],["-124.359924","42.1817974"],["-124.3599597","42.1821542"],["-124.3599718","42.1826285"],["-124.3599333","42.1837037"],["-124.3599485","42.1841192"],["-124.3599731","42.1844147"],["-124.360051","42.1846937"],["-124.3601567","42.1849593"],["-124.3603233","42.1852682"],["-124.3605334","42.1855464"],["-124.3607948","42.1858342"],["-124.3610649","42.1860787"],["-124.3614151","42.18633"],["-124.3617274","42.1865339"],["-124.3640562","42.1880791"],["-124.3645949","42.188529"],["-124.3649169","42.1888514"],["-124.3655479","42.1896016"],["-124.3658414","42.1900411"],["-124.3661946","42.1907229"],["-124.3664008","42.1911161"],["-124.3667514","42.1917347"],["-124.3671649","42.1925413"],["-124.3674186","42.1931379"],["-124.3679043","42.1941478"],["-124.3681172","42.1944925"],["-124.3683642","42.1948853"],["-124.3686081","42.1952122"],["-124.3688558","42.1954889"],["-124.3691288","42.1957911"],["-124.3694211","42.1960955"],["-124.369763","42.1964196"],["-124.3700878","42.1967059"],["-124.3707955","42.1972771"],["-124.3712367","42.1976292"],["-124.372035","42.1982492"],["-124.3724794","42.1985834"],["-124.3729951","42.1990055"],["-124.373373","42.1994043"],["-124.3736635","42.1998007"],["-124.3738703","42.2001447"],["-124.3739751","42.2004377"],["-124.3740254","42.2007474"],["-124.3740086","42.201046"],["-124.373944","42.2014211"],["-124.3738605","42.2017618"],["-124.3736369","42.2023724"],["-124.3732275","42.2034632"],["-124.373062","42.2040111"],["-124.373004","42.2044857"],["-124.3729852","42.2049203"],["-124.3730028","42.2055079"],["-124.3733256","42.208344"],["-124.3733827","42.2086245"],["-124.3734769","42.2089383"],["-124.3735844","42.2092299"],["-124.3736939","42.2094361"],["-124.373797","42.2096111"],["-124.3739199","42.2098079"],["-124.3741231","42.2100989"],["-124.3746488","42.2108422"],["-124.3748852","42.211211"],["-124.3750942","42.2116322"],["-124.3752186","42.2119833"],["-124.3752878","42.2122721"],["-124.3753226","42.2125569"],["-124.3753145","42.2128188"],["-124.3752718","42.213106"],["-124.3752021","42.2134207"],["-124.3750895","42.2137337"],["-124.3749076","42.2140332"],["-124.3746772","42.2143494"],["-124.3744133","42.214682"],["-124.3742187","42.214874"],["-124.3730731","42.2158984"],["-124.3726907","42.2162371"],["-124.3723585","42.2165633"],["-124.372074","42.2168849"],["-124.3718147","42.2172731"],["-124.3717019","42.2175424"],["-124.3716354","42.2177683"],["-124.3716101","42.2179786"],["-124.3715892","42.2183385"],["-124.3716009","42.2185736"],["-124.3716803","42.2187745"],["-124.37186","42.2191271"],["-124.3719717","42.2193391"],["-124.3720895","42.2195624"],["-124.3723186","42.2198715"],["-124.3725433","42.2201141"],["-124.3727522","42.220293"],["-124.3729374","42.2204445"],["-124.3730715","42.2205439"],["-124.3731896","42.2206074"],["-124.3733501","42.2206914"],["-124.3735217","42.2207783"],["-124.3737264","42.2208612"],["-124.3739683","42.2209556"],["-124.3746803","42.2212164"],["-124.3758334","42.2216026"],["-124.3765371","42.2218617"],["-124.3769841","42.2220745"],["-124.3773531","42.2222937"],["-124.3777091","42.2225449"],["-124.37804","42.2227961"],["-124.3783857","42.2230742"],["-124.3786945","42.223367"],["-124.3788825","42.2235582"],["-124.3791258","42.2238476"],["-124.3793532","42.2241672"],["-124.3798521","42.2249794"],["-124.380097","42.2254033"],["-124.3803478","42.225886"],["-124.3805936","42.2263712"],["-124.3807878","42.2267113"],["-124.3810406","42.2270487"],["-124.3812557","42.227287"],["-124.3815366","42.2275426"],["-124.3818409","42.2277951"],["-124.3825584","42.2282672"],["-124.3830258","42.228568"],["-124.3837429","42.2290652"],["-124.384016","42.2292733"],["-124.3842453","42.2294703"],["-124.3844976","42.2297513"],["-124.3847211","42.2300938"],["-124.3848856","42.2304014"],["-124.3851703","42.2311205"],["-124.3856526","42.2325518"],["-124.3858565","42.2329012"],["-124.386072","42.233196"],["-124.3863524","42.2334621"],["-124.3866703","42.2337014"],["-124.3871406","42.2340011"],["-124.3876188","42.2342536"],["-124.388147","42.2344942"],["-124.3887547","42.2347024"],["-124.3899532","42.2352717"],["-124.3904864","42.2355615"],["-124.3908691","42.2358162"],["-124.3911049","42.2360173"],["-124.3913375","42.2362387"],["-124.3915767","42.2365287"],["-124.3917863","42.2368002"],["-124.3919831","42.2371309"],["-124.3921302","42.2374396"],["-124.3922398","42.2377824"],["-124.3923332","42.2381465"],["-124.3923498","42.2385406"],["-124.3923329","42.2391037"],["-124.3916946","42.2455621"],["-124.3915513","42.2470956"],["-124.3915344","42.2476382"],["-124.3915424","42.2480695"],["-124.3916178","42.2484866"],["-124.3916971","42.2488654"],["-124.3918431","42.2492617"],["-124.3919687","42.2495511"],["-124.3921234","42.2498278"],["-124.3923045","42.2501181"],["-124.3925544","42.2504427"],["-124.3928956","42.2508255"],["-124.3932947","42.25121"],["-124.3936427","42.2514971"],["-124.3949199","42.2524572"],["-124.3960542","42.2533232"],["-124.3969","42.2541362"],["-124.3972496","42.2545377"],["-124.3975272","42.2549095"],["-124.3978","42.2553192"],["-124.3980025","42.2556907"],["-124.3981957","42.2560894"],["-124.3983693","42.2565332"],["-124.3985098","42.256957"],["-124.4047648","42.2799064"],["-124.4048993","42.2805276"],["-124.4050388","42.2814174"],["-124.405078","42.2818465"],["-124.4051023","42.282352"],["-124.4051094","42.2830322"],["-124.4049403","42.2875328"],["-124.4049316","42.2879508"],["-124.4049413","42.2883709"],["-124.4049824","42.2887266"],["-124.4050323","42.289079"],["-124.405121","42.2894975"],["-124.4051696","42.2896909"],["-124.4052394","42.2899094"],["-124.4053884","42.2903051"],["-124.408083","42.2970859"],["-124.4084904","42.2980849"],["-124.4086659","42.2984298"],["-124.4088507","42.2987424"],["-124.409048","42.2990224"],["-124.409288","42.2993116"],["-124.4095284","42.2996059"],["-124.4099482","42.3000761"],["-124.4103932","42.300579"],["-124.4106502","42.3009098"],["-124.4108198","42.3011477"],["-124.4109468","42.3014251"],["-124.411027","42.3016441"],["-124.4110725","42.3019212"],["-124.4110717","42.3021965"],["-124.411032","42.302516"],["-124.4109571","42.3028417"],["-124.4102424","42.3044314"],["-124.4099147","42.3051896"],["-124.4098167","42.3055286"],["-124.4097974","42.3058122"],["-124.4098086","42.3060491"],["-124.4098409","42.3062682"],["-124.4099199","42.3065332"],["-124.4099848","42.3067068"],["-124.4100916","42.3069268"],["-124.4102422","42.3071598"],["-124.4103953","42.307341"],["-124.4106228","42.3075576"],["-124.4109472","42.3077996"],["-124.4111437","42.3079163"],["-124.4113972","42.3080607"],["-124.4118509","42.30831"],["-124.4124682","42.3086494"],["-124.4128946","42.3089216"],["-124.4132472","42.3092169"],["-124.4136078","42.3096103"],["-124.4137852","42.3099284"],["-124.4139452","42.310312"],["-124.414612","42.3124275"],["-124.4147599","42.3128301"],["-124.4149053","42.313186"],["-124.4150997","42.3135969"],["-124.4159443","42.3153885"],["-124.4161645","42.315897"],["-124.4162776","42.3162638"],["-124.4163201","42.3165777"],["-124.4162871","42.3169248"],["-124.4162336","42.3172648"],["-124.4161069","42.317627"],["-124.4158957","42.3180281"],["-124.4155621","42.3185602"],["-124.4152868","42.3190213"],["-124.4151333","42.3193519"],["-124.4150488","42.319668"],["-124.4149973","42.3199739"],["-124.4150143","42.3203079"],["-124.4150998","42.320693"],["-124.4152286","42.3210352"],["-124.4157043","42.3218332"],["-124.4167193","42.3234817"],["-124.417117","42.3240267"],["-124.4172881","42.3241895"],["-124.4175152","42.3243589"],["-124.4177736","42.3245156"],["-124.4181546","42.3246998"],["-124.4194666","42.3252516"],["-124.419826","42.3254339"],["-124.420162","42.3256492"],["-124.4207716","42.326116"],["-124.4213153","42.326539"],["-124.4223354","42.3273801"],["-124.4225837","42.3275823"],["-124.422769","42.327785"],["-124.422933","42.3280156"],["-124.4231247","42.3283545"],["-124.4232365","42.3287105"],["-124.4232766","42.3291022"],["-124.4232624","42.3294843"],["-124.4231874","42.3298113"],["-124.4230555","42.3301612"],["-124.422792","42.3305099"],["-124.4224719","42.33083"],["-124.4220713","42.3311614"],["-124.4202537","42.3325562"],["-124.4187581","42.3336248"],["-124.4182154","42.3339594"],["-124.4176628","42.3342562"],["-124.4163173","42.3349212"],["-124.4144028","42.335643"],["-124.4138236","42.3359016"],["-124.4134238","42.336127"],["-124.4131552","42.3363295"],["-124.4130141","42.3364594"],["-124.4126746","42.3368327"],["-124.4124397","42.337155"],["-124.412288","42.3374688"],["-124.4121303","42.3378364"],["-124.4119992","42.3382436"],["-124.4120006","42.3384255"],["-124.4121046","42.3387447"],["-124.412238","42.3391013"],["-124.4123697","42.3394138"],["-124.4125392","42.3397306"],["-124.4127714","42.3400229"],["-124.4130788","42.3402899"],["-124.4134566","42.3405252"],["-124.4138669","42.3407373"],["-124.4142801","42.3409175"],["-124.4155082","42.341448"],["-124.4160219","42.3416871"],["-124.4163467","42.3419078"],["-124.4166298","42.342155"],["-124.4168391","42.342394"],["-124.4170256","42.3426702"],["-124.4172204","42.3430082"],["-124.4174203","42.3435244"],["-124.4179787","42.3451135"],["-124.4180461","42.3454472"],["-124.4180881","42.3457798"],["-124.4180548","42.3461962"],["-124.4179832","42.3466228"],["-124.4178002","42.3470343"],["-124.4175976","42.3473918"],["-124.417391","42.3476574"],["-124.4167436","42.3483559"],["-124.415604","42.3495159"],["-124.4151928","42.349998"],["-124.414943","42.350339"],["-124.4144646","42.3510263"],["-124.4142565","42.3513258"],["-124.414024","42.3517244"],["-124.4136283","42.3526908"],["-124.4133813","42.3530849"],["-124.4131647","42.3533207"],["-124.4128058","42.3536913"],["-124.4124581","42.3541314"],["-124.4123115","42.3544413"],["-124.4122441","42.354743"],["-124.4122245","42.3549855"],["-124.4122578","42.3552379"],["-124.4123517","42.3555387"],["-124.4125081","42.3558541"],["-124.412701","42.356159"],["-124.4128973","42.3564793"],["-124.4131044","42.3568542"],["-124.4132864","42.3572909"],["-124.4133699","42.3582368"],["-124.4134687","42.3588283"],["-124.4135409","42.3590605"],["-124.4136216","42.3592658"],["-124.4137461","42.3594872"],["-124.4138886","42.3597141"],["-124.4140306","42.359877"],["-124.4142128","42.3600631"],["-124.4144707","42.3602784"],["-124.4147493","42.3605085"],["-124.4149778","42.360713"],["-124.4152476","42.3609571"],["-124.4155183","42.3612409"],["-124.415764","42.3615734"],["-124.4159357","42.3619082"],["-124.4160635","42.362217"],["-124.4161269","42.3625564"],["-124.4161795","42.3630714"],["-124.4162318","42.3634237"],["-124.4162994","42.3636983"],["-124.4164071","42.3639347"],["-124.4165892","42.3642264"],["-124.4168062","42.3645154"],["-124.4170585","42.3647733"],["-124.4177646","42.365364"],["-124.4179866","42.365598"],["-124.4181669","42.3658385"],["-124.4183467","42.3661176"],["-124.4185001","42.3664588"],["-124.4186186","42.3667604"],["-124.4188316","42.3674483"],["-124.4196316","42.3701914"],["-124.4197726","42.3707293"],["-124.4199244","42.3712283"],["-124.4200283","42.3716945"],["-124.42008","42.3721437"],["-124.4201182","42.3725644"],["-124.4201486","42.3730379"],["-124.4201406","42.3738201"],["-124.4201253","42.3747472"],["-124.420152","42.3754509"],["-124.4202214","42.3760495"],["-124.4202862","42.3765237"],["-124.4203768","42.3769945"],["-124.4204916","42.3776237"],["-124.4205834","42.3780029"],["-124.4207756","42.3786583"],["-124.4211565","42.3798881"],["-124.4215137","42.3808972"],["-124.4219141","42.3818742"],["-124.4222635","42.3826402"],["-124.4226429","42.383511"],["-124.4229313","42.3841921"],["-124.4231462","42.3847396"],["-124.4232617","42.3851273"],["-124.4233285","42.3854996"],["-124.4233444","42.3857974"],["-124.4233446","42.3860737"],["-124.4233158","42.3863634"],["-124.4232478","42.386675"],["-124.4231715","42.3869896"],["-124.4230695","42.3874125"],["-124.4229818","42.3877682"],["-124.4228129","42.3883408"],["-124.4225875","42.3890278"],["-124.4223637","42.3897004"],["-124.4221982","42.3902663"],["-124.4221251","42.3906695"],["-124.4221031","42.3909779"],["-124.4221608","42.39146"],["-124.4222543","42.3919123"],["-124.4224607","42.3926741"],["-124.4225637","42.3931633"],["-124.4226456","42.3935077"],["-124.4226953","42.3938388"],["-124.422738","42.3942686"],["-124.4227404","42.3947047"],["-124.4227246","42.3950432"],["-124.4226955","42.3953662"],["-124.4226399","42.3957661"],["-124.4226316","42.3959638"],["-124.4225522","42.3965891"],["-124.4224338","42.3974964"],["-124.4221118","42.3995148"],["-124.4218512","42.4011142"],["-124.4216528","42.4024424"],["-124.4205794","42.4097351"],["-124.4205639","42.4098436"],["-124.4205317","42.4100945"],["-124.4205037","42.4105105"],["-124.4204863","42.4110229"],["-124.4205035","42.4113423"],["-124.4205366","42.4117652"],["-124.4205859","42.4123792"],["-124.4206598","42.4132558"],["-124.4206919","42.4138057"],["-124.4207316","42.4144576"],["-124.4207168","42.4147938"],["-124.4206547","42.4150901"],["-124.4205218","42.4154011"],["-124.4202649","42.4158884"],["-124.4198652","42.4166323"],["-124.4195274","42.4172643"],["-124.4192649","42.4177567"],["-124.4190062","42.4182377"],["-124.4187322","42.4187132"],["-124.4184977","42.4190766"],["-124.417751","42.4201654"],["-124.4171453","42.4211272"],["-124.4169635","42.4214546"],["-124.4167885","42.4217536"],["-124.4165641","42.4220247"],["-124.416345","42.4222714"],["-124.4159669","42.4225897"],["-124.4156186","42.4228017"],["-124.4152771","42.4229839"],["-124.4148794","42.4231504"],["-124.4144692","42.4233039"],["-124.4140806","42.4234634"],["-124.4138096","42.4235929"],["-124.4136144","42.4237438"],["-124.4134524","42.4239456"],["-124.4133446","42.4241795"],["-124.4133123","42.4243135"],["-124.4132839","42.4249547"],["-124.4132444","42.4283482"],["-124.4132457","42.4293133"],["-124.4133117","42.4294932"],["-124.4133207","42.4295115"],["-124.4133231","42.4295171"],["-124.4133614","42.4295876"],["-124.4134277","42.4296725"],["-124.4134962","42.4297456"],["-124.4135533","42.4297995"],["-124.4137954","42.4299554"],["-124.413909","42.4300246"],["-124.4139846","42.4300634"],["-124.4140607","42.4300967"],["-124.414149","42.4301294"],["-124.4142478","42.4301588"],["-124.414373","42.4301882"],["-124.4145016","42.4302116"],["-124.4146363","42.4302303"],["-124.4148608","42.4302421"],["-124.4151164","42.4302515"],["-124.4160516","42.4302794"],["-124.416929","42.4303026"],["-124.4181087","42.4303324"],["-124.4185233","42.430318"],["-124.4189879","42.4302792"],["-124.4191726","42.4302555"],["-124.4193541","42.430226"],["-124.4202447","42.4300328"],["-124.4247038","42.4289818"],["-124.4251055","42.4289073"],["-124.4253903","42.4288645"],["-124.42566","42.4288342"],["-124.4259215","42.4288196"],["-124.4261047","42.428814"],["-124.4263064","42.4288167"],["-124.4265796","42.4288278"],["-124.4268937","42.4288555"],["-124.427141","42.4288891"],["-124.4273554","42.4289227"],["-124.4275559","42.4289609"],["-124.4278177","42.4290216"],["-124.4281557","42.4291294"],["-124.4284622","42.4292425"],["-124.4286525","42.4293249"],["-124.4288358","42.4294096"],["-124.4289887","42.4294889"],["-124.4292033","42.429616"],["-124.4294164","42.4297614"],["-124.4296778","42.4299576"],["-124.4299238","42.4301745"],["-124.430124","42.4303765"],["-124.4302847","42.4305673"],["-124.4303935","42.4307179"],["-124.4305045","42.4308862"],["-124.4306208","42.4311083"],["-124.4307326","42.4313484"],["-124.4307911","42.4315209"],["-124.4308305","42.431658"],["-124.4308926","42.4319515"],["-124.4309121","42.4320782"],["-124.4309229","42.4322506"],["-124.4309188","42.4323711"],["-124.4309056","42.4325306"],["-124.4308838","42.4326973"],["-124.4308471","42.4328783"],["-124.4307849","42.4331177"],["-124.4307175","42.4333291"],["-124.4305819","42.4336798"],["-124.4300679","42.4348229"],["-124.4292794","42.4365225"],["-124.4208208","42.4551941"],["-124.4201091","42.456758"],["-124.41952","42.4580138"],["-124.4193224","42.458575"],["-124.419194","42.4590048"],["-124.4190135","42.4596201"],["-124.4189157","42.4599889"],["-124.4187559","42.4609562"],["-124.4186935","42.4614785"],["-124.4182216","42.4794119"],["-124.4181119","42.480727"],["-124.4180161","42.4815188"],["-124.4175167","42.4838773"],["-124.4173039","42.4846896"],["-124.4168996","42.4859652"],["-124.4166863","42.4865671"],["-124.4160827","42.4881012"],["-124.4159673","42.488439"],["-124.4157908","42.4889069"],["-124.414523","42.4919801"],["-124.4141074","42.4930374"],["-124.4125288","42.496929"],["-124.4102637","42.5024877"],["-124.4100023","42.503157"],["-124.4098596","42.5036241"],["-124.4097186","42.504214"],["-124.4096078","42.5048504"],["-124.4095538","42.5053586"],["-124.4095262","42.5058493"],["-124.4095531","42.5063504"],["-124.4096039","42.5068515"],["-124.4096832","42.5073439"],["-124.4100913","42.5093209"],["-124.4103016","42.5105794"],["-124.4103298","42.5110005"],["-124.4103348","42.5113897"],["-124.4103099","42.5117561"],["-124.410278","42.5120307"],["-124.410226","42.5122654"],["-124.4101045","42.5127134"],["-124.4100008","42.5129867"],["-124.4098113","42.5134424"],["-124.4086726","42.5159534"],["-124.3997688","42.5350007"],["-124.3992754","42.536059"],["-124.3988021","42.537044"],["-124.3980258","42.5387406"],["-124.3973993","42.5402873"],["-124.3970587","42.5413185"],["-124.3968999","42.5418462"],["-124.3964856","42.5434617"],["-124.395066","42.5490237"],["-124.3948171","42.5499024"],["-124.3946152","42.5504269"],["-124.3943786","42.5509515"],["-124.3941418","42.5514214"],["-124.3938478","42.5519528"],["-124.39352","42.5524699"],["-124.393264","42.552823"],["-124.3930111","42.5531507"],["-124.3855033","42.5620603"],["-124.3852161","42.5624308"],["-124.3850171","42.5627228"],["-124.3848685","42.5630043"],["-124.3846916","42.5634501"],["-124.3846385","42.5636364"],["-124.3845898","42.5639039"],["-124.3845703","42.564111"],["-124.3845586","42.5643321"],["-124.3845659","42.5645348"],["-124.3846242","42.5649234"],["-124.3846683","42.565108"],["-124.3847251","42.5652865"],["-124.3848038","42.5654985"],["-124.3850255","42.565977"],["-124.3871065","42.5698764"],["-124.3874377","42.5704977"],["-124.387723","42.5710814"],["-124.3878331","42.5713913"],["-124.3879275","42.5716839"],["-124.3879756","42.5719599"],["-124.3879937","42.5723015"],["-124.3879884","42.5727374"],["-124.3879646","42.5734068"],["-124.3879812","42.573654"],["-124.3880177","42.5738495"],["-124.3880914","42.5740584"],["-124.3882087","42.5742765"],["-124.3883572","42.5744809"],["-124.3885239","42.5746705"],["-124.3889218","42.5750284"],["-124.38924","42.5753144"],["-124.3895176","42.5755807"],["-124.3896881","42.5757792"],["-124.3898249","42.5760073"],["-124.3899248","42.5762585"],["-124.3899713","42.5765024"],["-124.3900003","42.5769691"],["-124.3900138","42.5775182"],["-124.3900441","42.5777451"],["-124.3901064","42.5779805"],["-124.3902886","42.578438"],["-124.3904143","42.5786431"],["-124.3905723","42.5788532"],["-124.390808","42.5791176"],["-124.3911038","42.5793987"],["-124.391468","42.5796923"],["-124.3918046","42.5799893"],["-124.3919583","42.5801505"],["-124.3920592","42.5802929"],["-124.3921744","42.5804788"],["-124.3922567","42.5806695"],["-124.3923062","42.5808596"],["-124.3923351","42.5810552"],["-124.3923328","42.5814208"],["-124.392307","42.5817767"],["-124.3922943","42.5821046"],["-124.3922937","42.5823354"],["-124.3923243","42.582549"],["-124.3925314","42.5832858"],["-124.3926469","42.5835882"],["-124.3928294","42.5839751"],["-124.3930029","42.584356"],["-124.3931069","42.5846493"],["-124.3931301","42.5849932"],["-124.3930722","42.58541"],["-124.3928351","42.586239"],["-124.3927463","42.5866156"],["-124.3927368","42.586977"],["-124.3927833","42.5873108"],["-124.3929472","42.5876859"],["-124.3931554","42.5880492"],["-124.3933417","42.588354"],["-124.3935454","42.5887057"],["-124.3943487","42.5903226"],["-124.3946061","42.590769"],["-124.3948004","42.5910789"],["-124.3950017","42.5913368"],["-124.3952328","42.5915817"],["-124.39549","42.5917853"],["-124.3957854","42.5920082"],["-124.3960751","42.592214"],["-124.3964124","42.5924189"],["-124.3972211","42.5928999"],["-124.3980569","42.5933864"],["-124.3985116","42.5936813"],["-124.3987422","42.5938829"],["-124.3989378","42.5941244"],["-124.3990723","42.5944157"],["-124.399125","42.5947199"],["-124.3991159","42.5950209"],["-124.3990388","42.5953451"],["-124.3988112","42.5959973"],["-124.3986928","42.5963883"],["-124.3986169","42.5967564"],["-124.3985655","42.5971258"],["-124.3985734","42.5975075"],["-124.3986105","42.597951"],["-124.3986685","42.5983837"],["-124.3987417","42.5988881"],["-124.3987641","42.5994187"],["-124.3987038","42.5997701"],["-124.398577","42.6000876"],["-124.3983877","42.6004048"],["-124.3980904","42.6008345"],["-124.3975536","42.601539"],["-124.3969504","42.6022815"],["-124.3962267","42.6031136"],["-124.3958561","42.6034347"],["-124.3955638","42.6036444"],["-124.3951887","42.6038486"],["-124.3947087","42.6040792"],["-124.3941446","42.6043362"],["-124.3935127","42.6046288"],["-124.3930878","42.6048749"],["-124.3927169","42.6051097"],["-124.3924397","42.6053387"],["-124.3921944","42.6056203"],["-124.3920082","42.605895"],["-124.3918823","42.6061604"],["-124.3917777","42.6065088"],["-124.3917341","42.6069116"],["-124.3917056","42.6074166"],["-124.3916353","42.6090266"],["-124.3916291","42.6098765"],["-124.391681","42.6105144"],["-124.391767","42.6108601"],["-124.3919108","42.6111983"],["-124.3920499","42.6115003"],["-124.3922676","42.6118876"],["-124.3924604","42.6121343"],["-124.3926994","42.6123718"],["-124.3929838","42.6126415"],["-124.3935875","42.6131469"],["-124.394992","42.6142665"],["-124.395438","42.6146336"],["-124.3957566","42.6149347"],["-124.3960193","42.6152312"],["-124.3962484","42.6155485"],["-124.3964299","42.6158304"],["-124.3965619","42.6160922"],["-124.3966707","42.6163878"],["-124.3967375","42.6166683"],["-124.3967902","42.6171355"],["-124.3967955","42.6176695"],["-124.3967727","42.6183414"],["-124.396797","42.618781"],["-124.3968671","42.6191175"],["-124.3971974","42.6197932"],["-124.3974024","42.6201528"],["-124.3976868","42.6205949"],["-124.3979529","42.6209559"],["-124.3981811","42.6213135"],["-124.3983899","42.6216839"],["-124.3985822","42.6221088"],["-124.3986884","42.6224464"],["-124.3987554","42.622816"],["-124.3987727","42.6232122"],["-124.3987554","42.6235716"],["-124.398698","42.6240018"],["-124.3986272","42.6244438"],["-124.3986077","42.6247586"],["-124.3986254","42.6250609"],["-124.3987064","42.6253608"],["-124.3987848","42.6256365"],["-124.3989283","42.6261984"],["-124.3989451","42.6265164"],["-124.3988866","42.6269293"],["-124.3988013","42.6274844"],["-124.398771","42.6278546"],["-124.3987707","42.6282413"],["-124.3988137","42.6285852"],["-124.3989166","42.6288799"],["-124.3990854","42.6291792"],["-124.3994328","42.6297093"],["-124.3995978","42.6299485"],["-124.3997627","42.6301926"],["-124.3999086","42.6304776"],["-124.4000441","42.6307967"],["-124.4001113","42.6311247"],["-124.4001289","42.6314534"],["-124.4001038","42.6318272"],["-124.4000563","42.6322389"],["-124.40002","42.632662"],["-124.400032","42.6330177"],["-124.4000865","42.6333376"],["-124.4002578","42.633649"],["-124.4004916","42.6339297"],["-124.4007669","42.6342062"],["-124.401097","42.6344805"],["-124.4013771","42.6347454"],["-124.4016199","42.6349972"],["-124.4017882","42.6352215"],["-124.401965","42.6355608"],["-124.4021268","42.6358889"],["-124.4023138","42.6363384"],["-124.4024654","42.6368684"],["-124.4026652","42.6373319"],["-124.4028921","42.6378512"],["-124.4031259","42.6383274"],["-124.4033486","42.6387045"],["-124.4039233","42.6395707"],["-124.4042069","42.6399649"],["-124.4045247","42.6403679"],["-124.4048623","42.6407645"],["-124.4052962","42.6412104"],["-124.4066767","42.6427537"],["-124.4073092","42.6435187"],["-124.4083401","42.6446869"],["-124.4086286","42.6450083"],["-124.4088593","42.6453889"],["-124.4089902","42.6458042"],["-124.409016","42.6462145"],["-124.4089396","42.6465941"],["-124.4085511","42.6478243"],["-124.4084214","42.648251"],["-124.4081224","42.6491062"],["-124.4079981","42.6496021"],["-124.4079622","42.6499763"],["-124.4079306","42.650368"],["-124.4079492","42.6505679"],["-124.4080173","42.6507645"],["-124.40822","42.6510712"],["-124.408399","42.6514174"],["-124.4086639","42.6519781"],["-124.4090771","42.6528181"],["-124.4096163","42.6538651"],["-124.4100727","42.6547328"],["-124.4102813","42.6551434"],["-124.4104464","42.655601"],["-124.4105566","42.6561491"],["-124.4106385","42.6567492"],["-124.410637","42.6572305"],["-124.4106718","42.657586"],["-124.4107721","42.6581786"],["-124.4110486","42.6592987"],["-124.4112472","42.6599318"],["-124.4115915","42.6608616"],["-124.4117926","42.6612982"],["-124.4119917","42.6616831"],["-124.4127304","42.6628659"],["-124.413085","42.6634603"],["-124.4136242","42.664175"],["-124.4147549","42.6655019"],["-124.4181644","42.6695752"],["-124.4185997","42.6701043"],["-124.418793","42.6703551"],["-124.4189172","42.6705317"],["-124.4190184","42.6707027"],["-124.4195027","42.6715815"],["-124.4196097","42.6718428"],["-124.4197682","42.6723294"],["-124.4198968","42.6728809"],["-124.4199472","42.6733743"],["-124.4199926","42.6738019"],["-124.4199864","42.6741922"],["-124.4199324","42.6747579"],["-124.4197061","42.6764918"],["-124.4190687","42.6812617"],["-124.419056","42.6816657"],["-124.4191004","42.6821173"],["-124.4192327","42.682509"],["-124.4194585","42.6828904"],["-124.4197432","42.6832255"],["-124.4201017","42.6835169"],["-124.420486","42.6837732"],["-124.4209132","42.6839875"],["-124.4213418","42.6841348"],["-124.4217701","42.6842338"],["-124.4221666","42.6843033"],["-124.422556","42.684326"],["-124.4236934","42.684248"],["-124.4253717","42.6840795"],["-124.4258875","42.6840114"],["-124.4262424","42.6839831"],["-124.4265368","42.6840197"],["-124.4267971","42.6841548"],["-124.427019","42.6843338"],["-124.427182","42.6845543"],["-124.4272508","42.6847719"],["-124.4273039","42.6853316"],["-124.4274787","42.6858845"],["-124.4276259","42.6861543"],["-124.4277921","42.6864047"],["-124.4280554","42.6866824"],["-124.4288853","42.6873022"],["-124.4291545","42.6874828"],["-124.4293151","42.687576"],["-124.4294997","42.6876209"],["-124.4297243","42.6876069"],["-124.4299383","42.6875449"],["-124.4301798","42.6874353"],["-124.4304551","42.6873455"],["-124.4309606","42.6872641"],["-124.4315296","42.6871779"],["-124.4319717","42.6871476"],["-124.432333","42.6871709"],["-124.4326233","42.6872489"],["-124.432968","42.6874787"],["-124.4339059","42.6881826"],["-124.4344526","42.6885613"],["-124.434829","42.6888027"],["-124.4353001","42.6889796"],["-124.4357608","42.689073"],["-124.436174","42.6890951"],["-124.4366607","42.689074"],["-124.4371291","42.6889775"],["-124.4375884","42.6888386"],["-124.4380346","42.6886954"],["-124.4389063","42.6882764"],["-124.439399","42.6880456"],["-124.439686","42.6879267"],["-124.4401274","42.6877821"],["-124.4419447","42.6872823"],["-124.442855","42.6870405"],["-124.4436608","42.6868416"],["-124.4439612","42.6867835"],["-124.4442318","42.6867414"],["-124.4444902","42.686714"],["-124.4448053","42.6867012"],["-124.4451518","42.6867145"],["-124.445553","42.6867726"],["-124.4459172","42.6868644"],["-124.446207","42.6869744"],["-124.4464331","42.6870958"],["-124.4466108","42.6872119"],["-124.4467617","42.6873299"],["-124.446895","42.6874673"],["-124.447016","42.6876324"],["-124.4471222","42.6878089"],["-124.4472709","42.6881772"],["-124.4474547","42.6889539"],["-124.4476382","42.6897215"],["-124.4479678","42.6906684"],["-124.4481842","42.6910607"],["-124.448519","42.6914211"],["-124.4489655","42.6917296"],["-124.4495177","42.6920014"],["-124.4517864","42.6930126"],["-124.4523818","42.6933005"],["-124.4527161","42.6935144"],["-124.4529775","42.6937768"],["-124.4532291","42.6941327"],["-124.4533493","42.6945169"],["-124.4533341","42.6948926"],["-124.4532126","42.695235"],["-124.4530242","42.6955991"],["-124.4528476","42.6958964"],["-124.452648","42.6961932"],["-124.4524941","42.6965235"],["-124.4524408","42.6968697"],["-124.4524518","42.6972008"],["-124.4525753","42.6975136"],["-124.4527155","42.6977591"],["-124.4530088","42.6980933"],["-124.4548326","42.7000502"],["-124.4551929","42.7004875"],["-124.4555113","42.7009126"],["-124.4558752","42.7014263"],["-124.4562654","42.7020605"],["-124.4566487","42.7027209"],["-124.456969","42.7034478"],["-124.4571977","42.704063"],["-124.4573953","42.7047181"],["-124.45763","42.7057549"],["-124.4579619","42.7071693"],["-124.4580948","42.7076143"],["-124.4586324","42.7090324"],["-124.4589077","42.7096456"],["-124.4619044","42.7153929"],["-124.4622923","42.7160342"],["-124.4630141","42.7170818"],["-124.4633964","42.7175872"],["-124.4636616","42.7178272"],["-124.4640074","42.7180235"],["-124.4644048","42.7181951"],["-124.465157","42.7184544"],["-124.4655694","42.7186122"],["-124.4658937","42.718765"],["-124.4661588","42.7189842"],["-124.4663662","42.7191796"],["-124.466522","42.7194117"],["-124.466646","42.7196747"],["-124.4666821","42.719881"],["-124.4666805","42.7201359"],["-124.466622","42.7206251"],["-124.4664934","42.7214381"],["-124.4663609","42.7222104"],["-124.4662415","42.7229168"],["-124.4661927","42.7235847"],["-124.4662287","42.7241761"],["-124.4663811","42.7247547"],["-124.4665936","42.7252984"],["-124.4668038","42.7256849"],["-124.4670275","42.7260373"],["-124.4673449","42.7265653"],["-124.4676835","42.7271193"],["-124.4684513","42.7282164"],["-124.4687929","42.7288114"],["-124.469191","42.7294971"],["-124.469525","42.7301096"],["-124.4708337","42.7320663"],["-124.4714329","42.732994"],["-124.472492","42.7347003"],["-124.4729159","42.7353005"],["-124.473282","42.7356987"],["-124.4736613","42.7360489"],["-124.4739246","42.7362278"],["-124.4743512","42.7364671"],["-124.4745715","42.7365701"],["-124.474804","42.7366656"],["-124.4752512","42.7368098"],["-124.4757192","42.7369197"],["-124.4761897","42.7370002"],["-124.4783122","42.7372466"],["-124.479014","42.7373285"],["-124.4794435","42.7373888"],["-124.4798945","42.7374813"],["-124.4804249","42.7376156"],["-124.4809099","42.7377721"],["-124.4815232","42.738032"],["-124.4821352","42.7383584"],["-124.4824886","42.7386196"],["-124.4828788","42.7389303"],["-124.4832402","42.7392492"],["-124.4835487","42.7395814"],["-124.4838375","42.7399032"],["-124.4843845","42.7403935"],["-124.485037","42.740864"],["-124.4855003","42.7411678"],["-124.4860757","42.7414683"],["-124.4902529","42.7431218"],["-124.4906252","42.7432398"],["-124.490956","42.7433159"],["-124.4914427","42.7433907"],["-124.4920429","42.7434589"],["-124.4924766","42.7435011"],["-124.4927684","42.7435132"],["-124.4930041","42.7435121"],["-124.4930324","42.743512"],["-124.4936607","42.7435095"],["-124.4944718","42.7435213"],["-124.4949639","42.743567"],["-124.4952602","42.7436416"],["-124.4956258","42.7437886"],["-124.4958479","42.7438938"],["-124.496127","42.744077"],["-124.4969072","42.7446342"],["-124.4971323","42.7448268"],["-124.4973335","42.7450503"],["-124.4974005","42.7451808"],["-124.4974196","42.7453272"],["-124.4974141","42.745698"],["-124.4974178","42.7464612"],["-124.4974112","42.7479179"],["-124.4974036","42.7503391"],["-124.4973754","42.7514298"],["-124.4973524","42.7556895"],["-124.4973586","42.7562776"],["-124.4979276","42.7657805"],["-124.4978922","42.7665058"],["-124.4978456","42.7670938"],["-124.4977764","42.7676235"],["-124.4953984","42.7797096"],["-124.4949958","42.7820886"],["-124.494794","42.7835422"],["-124.494558","42.7852224"],["-124.4942889","42.7875754"],["-124.4941912","42.7880508"],["-124.4940494","42.7885056"],["-124.4938531","42.7889683"],["-124.4936419","42.789364"],["-124.4933831","42.7897691"],["-124.493114","42.7902194"],["-124.4927213","42.790707"],["-124.4918342","42.7916405"],["-124.4911116","42.7923663"],["-124.488501","42.7950519"],["-124.4880726","42.7954601"],["-124.4877278","42.7958322"],["-124.4873818","42.7962345"],["-124.4871228","42.7965818"],["-124.4869296","42.7969185"],["-124.4867129","42.7974009"],["-124.4865734","42.7977723"],["-124.4864554","42.7982539"],["-124.4859481","42.801554"],["-124.485905","42.8019161"],["-124.4856541","42.8034557"],["-124.485514","42.8040807"],["-124.4852912","42.8047708"],["-124.4850336","42.8053039"],["-124.4844514","42.8064054"],["-124.4826971","42.8098224"],["-124.4823548","42.8105774"],["-124.482227","42.811025"],["-124.4821429","42.811396"],["-124.4820761","42.8118601"],["-124.4820485","42.8122588"],["-124.4820581","42.8126879"],["-124.4820892","42.8132174"],["-124.4823388","42.8155514"],["-124.4823815","42.8159557"],["-124.4825587","42.8175316"],["-124.4826035","42.8181248"],["-124.4829462","42.8209361"],["-124.4829936","42.8213585"],["-124.4830456","42.8222388"],["-124.4830566","42.8228344"],["-124.4830491","42.8234365"],["-124.4830049","42.8263787"],["-124.4829599","42.8269036"],["-124.4829191","42.8272226"],["-124.4828704","42.8274425"],["-124.4827882","42.8276853"],["-124.4827053","42.8278731"],["-124.4825951","42.8280613"],["-124.4824641","42.828245"],["-124.4822641","42.8284791"],["-124.4820625","42.8286875"],["-124.4809923","42.8297019"],["-124.4805437","42.8301227"],["-124.479835","42.8307926"],["-124.4795643","42.8310656"],["-124.4793752","42.8312894"],["-124.4792534","42.8314692"],["-124.4791871","42.8316089"],["-124.4791427","42.8317314"],["-124.4790923","42.831893"],["-124.4790101","42.8322586"],["-124.4775254","42.8390417"],["-124.4773219","42.8396274"],["-124.477033","42.8402511"],["-124.4753099","42.8437328"],["-124.4750609","42.8442684"],["-124.4748366","42.8447851"],["-124.4743777","42.846245"],["-124.4726025","42.8529253"],["-124.4724187","42.853457"],["-124.4722321","42.8539286"],["-124.4719358","42.8546026"],["-124.4716846","42.8552118"],["-124.4714342","42.8557843"],["-124.4711653","42.8564215"],["-124.4708035","42.857278"],["-124.470668","42.8576397"],["-124.4705845","42.8579395"],["-124.4705051","42.8582459"],["-124.4702991","42.8590217"],["-124.4702234","42.8593076"],["-124.4701452","42.8595331"],["-124.4700526","42.8597782"],["-124.4699458","42.8600509"],["-124.4698615","42.860241"],["-124.4697474","42.8604334"],["-124.4696498","42.8605632"],["-124.4695281","42.8606933"],["-124.4692773","42.8609246"],["-124.4678075","42.8622442"],["-124.4675113","42.8625663"],["-124.4673696","42.862763"],["-124.4671596","42.8630898"],["-124.4669673","42.8634847"],["-124.466851","42.863784"],["-124.4667782","42.864034"],["-124.4667217","42.8642891"],["-124.4666864","42.8644992"],["-124.4664294","42.8670422"],["-124.4663881","42.8675042"],["-124.4663798","42.867739"],["-124.4663903","42.867962"],["-124.4664207","42.8681746"],["-124.4664562","42.8683435"],["-124.4665109","42.8685192"],["-124.4665825","42.8686967"],["-124.4666531","42.8688433"],["-124.4668287","42.8691267"],["-124.4669616","42.8692971"],["-124.4671355","42.8695103"],["-124.4673705","42.869798"],["-124.467609","42.8700943"],["-124.467716","42.870253"],["-124.4678642","42.8705341"],["-124.4679252","42.8706914"],["-124.4679855","42.8708582"],["-124.4680335","42.8710334"],["-124.4681351","42.8717182"],["-124.4684733","42.8741664"],["-124.4686197","42.8752108"],["-124.468619","42.8757222"],["-124.4685825","42.8761336"],["-124.468163","42.8781085"],["-124.4680516","42.8785478"],["-124.4678833","42.8789171"],["-124.4676654","42.8792318"],["-124.4674086","42.8795281"],["-124.4670929","42.8798445"],["-124.4667383","42.8801472"],["-124.4664218","42.8804284"],["-124.4660554","42.880852"],["-124.4655165","42.8815341"],["-124.4638463","42.8837753"],["-124.4635472","42.8842465"],["-124.4634087","42.8846213"],["-124.4629068","42.8871218"],["-124.462209","42.8902315"],["-124.4621407","42.8906806"],["-124.4621274","42.8912573"],["-124.4621183","42.8918181"],["-124.4621044","42.8924756"],["-124.4620509","42.8929147"],["-124.4619425","42.8933736"],["-124.4617431","42.8940093"],["-124.4578804","42.9053784"],["-124.457654","42.9060559"],["-124.4575944","42.9062063"],["-124.4575402","42.9063828"],["-124.457456","42.9066536"],["-124.4571482","42.9074876"],["-124.4568659","42.908227"],["-124.4565957","42.9089578"],["-124.456342","42.9096308"],["-124.4560803","42.9101765"],["-124.45571","42.910798"],["-124.4546282","42.9124418"],["-124.4518524","42.916586"],["-124.4511418","42.9177439"],["-124.4509347","42.9181961"],["-124.4508154","42.9185193"],["-124.4505723","42.9199257"],["-124.4503306","42.9213775"],["-124.4502766","42.9217111"],["-124.450176","42.9223436"],["-124.4500454","42.9232325"],["-124.4500271","42.9235202"],["-124.4500173","42.9237589"],["-124.4500098","42.9247882"],["-124.4499987","42.9252262"],["-124.4499769","42.926523"],["-124.4499625","42.9280304"],["-124.4499613","42.9286734"],["-124.4499622","42.9295151"],["-124.4499386","42.930428"],["-124.4499027","42.9309038"],["-124.4498591","42.9312928"],["-124.4497691","42.9316007"],["-124.4496389","42.9319542"],["-124.4491949","42.9329632"],["-124.4487712","42.9339002"],["-124.4463898","42.9391611"],["-124.4452003","42.9418127"],["-124.444562","42.9432581"],["-124.443562","42.9454961"],["-124.443081","42.9465067"],["-124.4428495","42.9469729"],["-124.4425644","42.9474694"],["-124.4419306","42.9484823"],["-124.4408924","42.9502096"],["-124.4392858","42.9528402"],["-124.4386876","42.9538273"],["-124.438448","42.9542241"],["-124.4383176","42.9544067"],["-124.438147","42.9546129"],["-124.4379487","42.954803"],["-124.4377182","42.954996"],["-124.4374613","42.9552115"],["-124.4372582","42.9553939"],["-124.4371086","42.9555549"],["-124.4369948","42.9557063"],["-124.4364239","42.9565522"],["-124.4360326","42.957143"],["-124.4350253","42.9586763"],["-124.4347755","42.9590495"],["-124.4346421","42.959238"],["-124.4345495","42.959339"],["-124.4343709","42.9595148"],["-124.4341556","42.9597033"],["-124.4324701","42.9610503"],["-124.4322636","42.9612351"],["-124.4320747","42.9614216"],["-124.4318818","42.9616407"],["-124.431603","42.9619874"],["-124.4302923","42.9636627"],["-124.4300849","42.9639535"],["-124.4299179","42.9642346"],["-124.4296947","42.9646794"],["-124.4295265","42.9650161"],["-124.4289308","42.9661538"],["-124.4288349","42.9663903"],["-124.4287651","42.9665515"],["-124.4277475","42.9688388"],["-124.4274386","42.969515"],["-124.4271392","42.9701741"],["-124.4269543","42.9705849"],["-124.4264296","42.971792"],["-124.4261368","42.9724379"],["-124.4259217","42.9730062"],["-124.4254977","42.9745704"],["-124.4254134","42.9748106"],["-124.4252931","42.9750498"],["-124.4251731","42.9752899"],["-124.4249963","42.9755956"],["-124.4247772","42.9759353"],["-124.423943","42.9772194"],["-124.4238663","42.9773598"],["-124.4237944","42.9775244"],["-124.4237538","42.9776483"],["-124.4237229","42.9777978"],["-124.423693","42.9780798"],["-124.4235286","42.9801392"],["-124.4234359","42.981234"],["-124.4233812","42.9816221"],["-124.4233145","42.9819933"],["-124.4231959","42.9824096"],["-124.4193439","42.9923519"],["-124.4191651","42.9927685"],["-124.4189738","42.9932058"],["-124.4184218","42.9946141"],["-124.418095","42.995469"],["-124.4158196","43.0012805"],["-124.415655","43.0017176"],["-124.4156035","43.001898"],["-124.4155798","43.00205"],["-124.4155615","43.0023861"],["-124.4156048","43.0033364"],["-124.4156174","43.0037412"],["-124.4156656","43.0054563"],["-124.4156679","43.0057482"],["-124.4156379","43.0061195"],["-124.415462","43.0070859"],["-124.4153783","43.0074415"],["-124.4152095","43.0081801"],["-124.415123","43.0086331"],["-124.4150412","43.0090886"],["-124.4150048","43.0094343"],["-124.4149882","43.0117446"],["-124.4150819","43.0156544"],["-124.4152224","43.0205424"],["-124.4152637","43.0212859"],["-124.4153141","43.0220583"],["-124.4153585","43.0236733"],["-124.4153444","43.0249191"],["-124.4153305","43.0255507"],["-124.415312","43.0290081"],["-124.4153105","43.0294023"],["-124.4153129","43.0300704"],["-124.4153132","43.0305686"],["-124.4152901","43.0321907"],["-124.4152951","43.03275"],["-124.4152895","43.033141"],["-124.4152873","43.0335349"],["-124.4152987","43.0338821"],["-124.4153369","43.0341131"],["-124.4153815","43.034291"],["-124.4154552","43.0345098"],["-124.4155769","43.0348116"],["-124.4157812","43.0352826"],["-124.4159267","43.035657"],["-124.4159829","43.0359041"],["-124.4159946","43.0360496"],["-124.4159899","43.036219"],["-124.415975","43.0363561"],["-124.4159485","43.0365045"],["-124.4159144","43.0366456"],["-124.4158445","43.0368295"],["-124.4156116","43.0373575"],["-124.4153698","43.0378193"],["-124.4152024","43.0381498"],["-124.4151005","43.0383842"],["-124.415049","43.0385655"],["-124.4149988","43.0387631"],["-124.4149491","43.0391374"],["-124.414882","43.039868"],["-124.4148374","43.0404256"],["-124.414766","43.041438"],["-124.4146597","43.042408"],["-124.4146432","43.0426684"],["-124.4146393","43.0428078"],["-124.4146467","43.0430764"],["-124.4147188","43.0440924"],["-124.4147446","43.0445317"],["-124.4147345","43.0447037"],["-124.4146984","43.0449523"],["-124.4146469","43.0452137"],["-124.4145818","43.0454966"],["-124.4143123","43.0465596"],["-124.414264","43.0468125"],["-124.4142468","43.047116"],["-124.4142823","43.0474271"],["-124.4143596","43.047816"],["-124.4144816","43.04829"],["-124.4145722","43.0485848"],["-124.4148993","43.0495797"],["-124.4150009","43.0499404"],["-124.4150897","43.0503094"],["-124.4151632","43.0505998"],["-124.4152087","43.0510446"],["-124.4152515","43.0521709"],["-124.4152313","43.0535484"],["-124.4152562","43.0641663"],["-124.4152429","43.0645815"],["-124.4152296","43.0651168"],["-124.4152242","43.0655266"],["-124.4152325","43.0685665"],["-124.4152268","43.0690959"],["-124.4152141","43.0707923"],["-124.4151982","43.0732443"],["-124.4151929","43.0742358"],["-124.4151903","43.0749695"],["-124.4151875","43.0755697"],["-124.4152064","43.0758215"],["-124.4152181","43.0762076"],["-124.4151598","43.0772785"],["-124.4151631","43.0782803"],["-124.4151548","43.0821389"],["-124.4151552","43.082742"],["-124.4151548","43.0832099"],["-124.415103","43.0943888"],["-124.4151051","43.09482"],["-124.4151109","43.0954326"],["-124.4150945","43.0957736"],["-124.4150858","43.0961613"],["-124.4150786","43.0969007"],["-124.4150774","43.0994523"],["-124.4150762","43.0998869"],["-124.4150652","43.1012388"],["-124.4150602","43.1021978"],["-124.4150196","43.1138932"],["-124.4150139","43.1144694"],["-124.4150035","43.1151338"],["-124.4149789","43.1153023"],["-124.4149465","43.1154695"],["-124.4148952","43.1156913"],["-124.4148346","43.1159134"],["-124.4147554","43.1161411"],["-124.414676","43.1163271"],["-124.4145896","43.1165163"],["-124.4145078","43.1166673"],["-124.4143907","43.1168573"],["-124.4142739","43.1170316"],["-124.4141543","43.1171962"],["-124.4139799","43.1174012"],["-124.4137706","43.1176107"],["-124.4135635","43.1177915"],["-124.4133655","43.1179431"],["-124.4129438","43.1182244"],["-124.4126354","43.1183855"],["-124.4124508","43.1184722"],["-124.4122626","43.118551"],["-124.4119739","43.1186568"],["-124.4116473","43.1187598"],["-124.4111314","43.1188983"],["-124.4106948","43.1189886"],["-124.4102206","43.1190478"],["-124.409888","43.119081"],["-124.4090321","43.119107"],["-124.4017491","43.1190376"],["-124.4013745","43.1189873"],["-124.4007445","43.1189777"],["-124.3999856","43.1189713"],["-124.399854","43.1189777"],["-124.3997274","43.1189914"],["-124.3995789","43.1190128"],["-124.3993751","43.1190593"],["-124.3992667","43.1190925"],["-124.399147","43.1191438"],["-124.3990322","43.1192029"],["-124.3989276","43.1192681"],["-124.3988499","43.1193284"],["-124.3987596","43.1194229"],["-124.3986493","43.1195598"],["-124.3985852","43.1196883"],["-124.3985503","43.1197878"],["-124.3985222","43.1198935"],["-124.3985051","43.1199975"],["-124.3984883","43.1202737"],["-124.39844","43.1219153"],["-124.3984939","43.1221193"],["-124.3984672","43.1233627"],["-124.3984774","43.1244028"],["-124.3984424","43.1250546"],["-124.3983616","43.1260365"],["-124.3980662","43.1323461"],["-124.3979365","43.1359534"],["-124.3978817","43.1372243"],["-124.3978314","43.1378062"],["-124.3976919","43.1384534"],["-124.3975901","43.1389302"],["-124.3972515","43.1401924"],["-124.39605","43.143096"],["-124.3957396","43.1438829"],["-124.3956116","43.1442754"],["-124.3955295","43.1446372"],["-124.3954877","43.1449775"],["-124.3954588","43.1453428"],["-124.3954664","43.1476818"],["-124.3954756","43.1504729"],["-124.3955216","43.1516647"],["-124.3954903","43.1522218"],["-124.3954253","43.1526839"],["-124.3952426","43.1535189"],["-124.3949288","43.1544084"],["-124.3947208","43.154866"],["-124.394519","43.1552708"],["-124.3942304","43.1557665"],["-124.3938519","43.1562979"],["-124.3934406","43.1568395"],["-124.3930058","43.1573134"],["-124.392503","43.1578179"],["-124.3918577","43.1583798"],["-124.3907834","43.159253"],["-124.3783727","43.168961"],["-124.3773129","43.1698464"],["-124.376126","43.1707783"],["-124.3748083","43.1718102"],["-124.3579197","43.1850417"],["-124.3534693","43.1885008"],["-124.3513707","43.1901716"],["-124.3493154","43.1917584"],["-124.3486158","43.1922588"],["-124.3482636","43.1924629"],["-124.3478061","43.1926679"],["-124.3473266","43.1928036"],["-124.346934","43.19288"],["-124.3464674","43.1929161"],["-124.3460831","43.1929157"],["-124.3456615","43.1928594"],["-124.3451791","43.1927836"],["-124.3447748","43.1926952"],["-124.3444082","43.1925858"],["-124.3401044","43.1908966"],["-124.3395751","43.1907492"],["-124.3391711","43.1907053"],["-124.3388357","43.1906996"],["-124.3383513","43.1907207"],["-124.3378306","43.1907987"],["-124.3374133","43.1909084"],["-124.3369898","43.191042"],["-124.3365361","43.1911942"],["-124.3360644","43.1913606"],["-124.33438","43.1919989"],["-124.3338805","43.1921393"],["-124.3332364","43.1922645"],["-124.3326052","43.1923575"],["-124.3320784","43.1924057"],["-124.3315049","43.1924239"],["-124.3309129","43.1924145"],["-124.3303339","43.1923726"],["-124.3297229","43.1923214"],["-124.3287283","43.192178"],["-124.3274178","43.1919885"],["-124.3258822","43.1917907"],["-124.325032","43.1917389"],["-124.3243011","43.1917353"],["-124.3236046","43.1917884"],["-124.322919","43.1918817"],["-124.3222549","43.1920022"],["-124.3214975","43.1921979"],["-124.3201509","43.1927317"],["-124.3196269","43.19299"],["-124.3191266","43.1932815"],["-124.3180208","43.1940932"],["-124.3175301","43.1945406"],["-124.3090432","43.2026799"],["-124.3080009","43.2036627"],["-124.3074328","43.2041867"],["-124.3070509","43.2046278"],["-124.3067849","43.2050888"],["-124.3065768","43.2054845"],["-124.3064309","43.2059864"],["-124.3063514","43.2064231"],["-124.3063517","43.2068472"],["-124.3065051","43.2077431"],["-124.3068474","43.2097742"],["-124.3072008","43.2119928"],["-124.3074365","43.2135271"],["-124.3075788","43.2147046"],["-124.3075797","43.2152109"],["-124.3075298","43.2156965"],["-124.3074283","43.2161267"],["-124.3072849","43.2165742"],["-124.3070333","43.2171345"],["-124.3067961","43.2175423"],["-124.3065401","43.2179552"],["-124.3060717","43.2185097"],["-124.2911468","43.234619"],["-124.2903875","43.2354702"],["-124.2900247","43.2359743"],["-124.2896928","43.2365157"],["-124.2894333","43.2370043"],["-124.2892151","43.2375192"],["-124.2890397","43.2380418"],["-124.2868433","43.2485001"],["-124.2862204","43.2515785"],["-124.2860972","43.2521928"],["-124.2859698","43.2527466"],["-124.2858451","43.2531755"],["-124.2857404","43.2534254"],["-124.2855916","43.2537005"],["-124.2854383","43.2539183"],["-124.2852445","43.2541231"],["-124.2849641","43.2543712"],["-124.2846556","43.2545851"],["-124.2844139","43.254719"],["-124.2841361","43.2548503"],["-124.2838693","43.2549634"],["-124.2835663","43.2550519"],["-124.2832502","43.2551355"],["-124.2828951","43.2551889"],["-124.2825916","43.2552157"],["-124.2823303","43.2552245"],["-124.2820556","43.2552205"],["-124.2817922","43.255195"],["-124.2815146","43.2551611"],["-124.2808666","43.255049"],["-124.2796193","43.2547925"],["-124.2790042","43.2546874"],["-124.278549","43.2546277"],["-124.2781732","43.2545898"],["-124.2778476","43.2545682"],["-124.2773451","43.2545561"],["-124.2767314","43.2545771"],["-124.2761376","43.254626"],["-124.2755976","43.254711"],["-124.2750703","43.2548077"],["-124.2746135","43.2549192"],["-124.2741309","43.2550865"],["-124.2736056","43.2552875"],["-124.2731576","43.2555107"],["-124.2720072","43.2561924"],["-124.2714559","43.2565531"],["-124.2710769","43.2568154"],["-124.2699826","43.2576802"],["-124.2693408","43.2582576"],["-124.2689765","43.2586151"],["-124.2686175","43.2589766"],["-124.268182","43.2594355"],["-124.2680166","43.2596308"],["-124.267226","43.2606591"],["-124.2666034","43.2615785"],["-124.2655","43.2631818"],["-124.265333","43.2634513"],["-124.2651462","43.2637401"],["-124.2643809","43.2648196"],["-124.2642272","43.2650851"],["-124.2637652","43.2657552"],["-124.2634427","43.2662078"],["-124.2631849","43.2665845"],["-124.2629728","43.2669321"],["-124.262586","43.2676049"],["-124.2623362","43.2680775"],["-124.2619208","43.2690135"],["-124.2617341","43.2694528"],["-124.2615675","43.2700062"],["-124.2606754","43.2732027"],["-124.2585659","43.2813466"],["-124.2583603","43.2820821"],["-124.2582354","43.2824456"],["-124.2581003","43.2827486"],["-124.2579424","43.2830647"],["-124.2577391","43.2834059"],["-124.2575036","43.283735"],["-124.2572919","43.2840082"],["-124.2571207","43.2842001"],["-124.2569376","43.2844046"],["-124.2567685","43.2845727"],["-124.2565476","43.2847712"],["-124.2562287","43.2850315"],["-124.2558851","43.2852721"],["-124.2554796","43.2855238"],["-124.255045","43.2857745"],["-124.2545577","43.2860184"],["-124.2541557","43.2862051"],["-124.253792","43.2863448"],["-124.2533782","43.2864826"],["-124.2530291","43.286593"],["-124.2344097","43.2909427"],["-124.2342015","43.2909821"],["-124.2338549","43.2910455"],["-124.2335944","43.2910825"],["-124.233319","43.2911144"],["-124.2330849","43.2911339"],["-124.2328375","43.2911485"],["-124.2325493","43.2911556"],["-124.2322931","43.2911464"],["-124.2320734","43.2911322"],["-124.2318429","43.291113"],["-124.2315972","43.2910865"],["-124.2312685","43.2910306"],["-124.2309374","43.2909636"],["-124.2304597","43.2908412"],["-124.2246351","43.2890922"],["-124.2242913","43.2890187"],["-124.2239073","43.2889627"],["-124.223683","43.2889438"],["-124.2234761","43.2889429"],["-124.2232668","43.2889508"],["-124.2230537","43.2889688"],["-124.222788","43.2890068"],["-124.2225398","43.2890558"],["-124.222192","43.2891468"],["-124.2218174","43.2892492"],["-124.2214342","43.2894509"],["-124.2211279","43.2896345"],["-124.2208151","43.2898932"],["-124.2206577","43.2900551"],["-124.2204682","43.2902778"],["-124.2202897","43.2905602"],["-124.2198609","43.2913645"],["-124.2196635","43.2916617"],["-124.2193567","43.2920899"],["-124.2190871","43.2923796"],["-124.2185273","43.2929456"],["-124.2181956","43.2933406"],["-124.217745","43.2939887"],["-124.2173934","43.2944835"],["-124.2170596","43.2948888"],["-124.2165477","43.2954009"],["-124.2162648","43.2956617"],["-124.2148666","43.2968309"],["-124.2132707","43.298161"],["-124.2126355","43.2987348"],["-124.2124359","43.2989874"],["-124.2122544","43.2992785"],["-124.2121137","43.2996296"],["-124.2113344","43.3021319"],["-124.2112878","43.3024181"],["-124.2112767","43.302547"],["-124.2113031","43.3028181"],["-124.2113922","43.3033044"],["-124.2117345","43.3049922"],["-124.2117712","43.3053349"],["-124.2117679","43.3056456"],["-124.2117308","43.3059754"],["-124.2116366","43.3062701"],["-124.2115457","43.3065342"],["-124.2114747","43.3067961"],["-124.2112943","43.3070891"],["-124.2109842","43.307568"],["-124.2105602","43.3082379"],["-124.2100947","43.3090008"],["-124.2088308","43.3110351"],["-124.2084913","43.3116417"],["-124.208132","43.3125257"],["-124.2075335","43.3142219"],["-124.2072126","43.3152041"],["-124.2070516","43.3158115"],["-124.2069486","43.3162974"],["-124.2061704","43.3207365"],["-124.2059976","43.3217661"],["-124.2059398","43.3221982"],["-124.2058977","43.3225939"],["-124.2059018","43.3228864"],["-124.2059643","43.3232534"],["-124.2059858","43.3233655"],["-124.2060002","43.3236288"],["-124.2060568","43.3238532"],["-124.2061468","43.3241561"],["-124.2062187","43.3244566"],["-124.2062353","43.324718"],["-124.2062017","43.3249552"],["-124.2061321","43.3251872"],["-124.2060478","43.325396"],["-124.2058973","43.3256094"],["-124.2057514","43.3257831"],["-124.2055577","43.3259708"],["-124.2053398","43.3261618"],["-124.2050916","43.3263113"],["-124.2047552","43.3264627"],["-124.2038694","43.3267711"],["-124.2034287","43.3269341"],["-124.2029819","43.327168"],["-124.2025375","43.3274704"],["-124.2021884","43.3277806"],["-124.2018584","43.3281522"],["-124.2016052","43.328526"],["-124.2014099","43.3288856"],["-124.2012032","43.3293823"],["-124.1981151","43.3370702"],["-124.1979043","43.3376443"],["-124.1978249","43.3379851"],["-124.1978275","43.3382904"],["-124.1978626","43.3385936"],["-124.1979613","43.3388636"],["-124.1981028","43.3391359"],["-124.1982968","43.3394617"],["-124.1984358","43.3397364"],["-124.1984928","43.3398742"],["-124.1985606","43.3400885"],["-124.1986036","43.3403425"],["-124.1986128","43.3404983"],["-124.198592","43.340778"],["-124.1984603","43.3419401"],["-124.1984087","43.342202"],["-124.1983441","43.3424099"],["-124.198263","43.3426023"],["-124.1981614","43.3428221"],["-124.1979959","43.3431533"],["-124.1978457","43.3434559"],["-124.1977205","43.3437632"],["-124.1976632","43.3440571"],["-124.1976979","43.3444272"],["-124.1977068","43.3450075"],["-124.1977313","43.3457287"],["-124.1977615","43.3466484"],["-124.1977805","43.3472817"],["-124.1978081","43.3478357"],["-124.19784","43.34822"],["-124.1979542","43.3488067"],["-124.1980585","43.3491393"],["-124.198296","43.349728"],["-124.1984599","43.3501143"],["-124.1993995","43.3523834"],["-124.1996082","43.3528682"],["-124.1997755","43.3532315"],["-124.1999602","43.3535516"],["-124.2001449","43.3538198"],["-124.2003323","43.3540469"],["-124.2005261","43.3542507"],["-124.2007529","43.3544523"],["-124.2010004","43.3546565"],["-124.2013046","43.354865"],["-124.2016031","43.3550564"],["-124.2019205","43.3552471"],["-124.2028769","43.3556599"],["-124.2031389","43.3557503"],["-124.2033646","43.3558101"],["-124.2038572","43.3558755"],["-124.2041336","43.3559035"],["-124.204444","43.3558805"],["-124.204786","43.3558483"],["-124.2049758","43.3558354"],["-124.2061581","43.3558218"],["-124.2072368","43.3558824"],["-124.2082824","43.3559623"],["-124.2105786","43.356167"],["-124.2110671","43.3562324"],["-124.2114576","43.3563204"],["-124.211699","43.3563994"],["-124.2119257","43.3565578"],["-124.2120437","43.3566601"],["-124.2121016","43.3567267"],["-124.2121837","43.356864"],["-124.212231","43.3570617"],["-124.2122219","43.3602703"],["-124.2122209","43.3608526"],["-124.212217","43.3623649"],["-124.2122285","43.3625241"],["-124.2122696","43.3627222"],["-124.2124001","43.3630156"],["-124.2125215","43.3633247"],["-124.2126042","43.3636515"],["-124.2126662","43.3639797"],["-124.212701","43.3643245"],["-124.2127001","43.364727"],["-124.2126151","43.3654317"],["-124.2125977","43.3661946"],["-124.2125831","43.3669827"],["-124.2125529","43.3675045"],["-124.2125418","43.3676109"],["-124.2125211","43.3676968"],["-124.2124698","43.3679009"],["-124.2123412","43.3683425"],["-124.2122403","43.3688576"],["-124.2121855","43.3693858"],["-124.2121495","43.3696818"],["-124.2121232","43.3699404"],["-124.2120933","43.3702516"],["-124.2120924","43.3706146"],["-124.2121524","43.3708425"],["-124.2122191","43.371053"],["-124.2122953","43.3713304"],["-124.2123732","43.3715552"],["-124.2124286","43.3717611"],["-124.212476","43.3720299"],["-124.2125057","43.3722703"],["-124.2125196","43.3725503"],["-124.2125176","43.374389"],["-124.2125307","43.3746114"],["-124.2125549","43.3747646"],["-124.2126283","43.3749229"],["-124.2127842","43.3751363"],["-124.212941","43.3752801"],["-124.213093","43.3754018"],["-124.2132831","43.3755461"],["-124.2136112","43.3757981"],["-124.2139796","43.3760798"],["-124.2143367","43.3763212"],["-124.2145961","43.3764292"],["-124.2153401","43.377025"],["-124.2165214","43.3779309"],["-124.2167848","43.3781501"],["-124.2170142","43.3783618"],["-124.2172439","43.3786042"],["-124.2174923","43.378901"],["-124.2191462","43.381018"],["-124.2195648","43.3815734"],["-124.2198284","43.3819625"],["-124.2199857","43.3822407"],["-124.220354","43.3829939"],["-124.2206672","43.3836203"],["-124.2211485","43.3846525"],["-124.2212819","43.38495"],["-124.2213578","43.385198"],["-124.2213774","43.3853553"],["-124.2213877","43.3855186"],["-124.2213917","43.3856705"],["-124.2213854","43.3858325"],["-124.2213639","43.3859979"],["-124.2213083","43.3862009"],["-124.2211918","43.3865444"],["-124.221066","43.3869067"],["-124.2209843","43.3871955"],["-124.2207914","43.3878731"],["-124.2206505","43.3885157"],["-124.2205458","43.3890556"],["-124.2205008","43.3893553"],["-124.2204625","43.3896419"],["-124.2204278","43.3899371"],["-124.2203248","43.3906726"],["-124.2202439","43.3910596"],["-124.2200624","43.3918192"],["-124.2197889","43.392926"],["-124.2196487","43.3935992"],["-124.2196155","43.3938415"],["-124.2196182","43.3941301"],["-124.2196339","43.3944349"],["-124.2196755","43.394697"],["-124.2197397","43.3949635"],["-124.2198111","43.3952403"],["-124.2199935","43.3958102"],["-124.2203551","43.3969565"],["-124.2206696","43.3978733"],["-124.2209914","43.3988355"],["-124.2212001","43.3995374"],["-124.2215917","43.4007693"],["-124.2219032","43.4017829"],["-124.2220508","43.4022936"],["-124.2221196","43.4025963"],["-124.2221536","43.4028794"],["-124.2222144","43.4034443"],["-124.2222446","43.4036056"],["-124.2222995","43.4037482"],["-124.2223754","43.4038745"],["-124.2225004","43.4040474"],["-124.2225787","43.4042035"],["-124.2227069","43.404325"],["-124.2228326","43.4044675"],["-124.2229348","43.4046203"],["-124.2229895","43.4047865"],["-124.2230079","43.4049436"],["-124.2230224","43.4051156"],["-124.2230159","43.4054187"],["-124.2229957","43.4079467"],["-124.2230069","43.4085366"],["-124.2230173","43.40919"],["-124.223002","43.4095945"],["-124.2230099","43.4099698"],["-124.2230322","43.4101615"],["-124.2230735","43.4102904"],["-124.2231325","43.4103908"],["-124.2232208","43.4105057"],["-124.2233792","43.4106285"],["-124.2235449","43.410748"],["-124.2237487","43.4109179"],["-124.2238973","43.4110833"],["-124.2240311","43.4113328"],["-124.2240357","43.4120373"],["-124.2240559","43.4140726"],["-124.2240619","43.4150131"],["-124.2240376","43.4173513"],["-124.2240076","43.4180324"],["-124.2239708","43.4184445"],["-124.2239235","43.4187433"],["-124.2237972","43.4193639"],["-124.2213373","43.4311105"],["-124.2206627","43.4343331"],["-124.2206185","43.4345412"],["-124.2204498","43.435369"],["-124.2203026","43.4360793"],["-124.2199586","43.4372228"],["-124.2198513","43.4376022"],["-124.2198033","43.4378891"],["-124.2197722","43.4381371"],["-124.2197547","43.4383422"],["-124.2197617","43.4386023"],["-124.219769","43.4388529"],["-124.2198004","43.4391669"],["-124.2198601","43.4393733"],["-124.2199895","43.4397167"],["-124.2201519","43.4401198"],["-124.2203331","43.440526"],["-124.2214932","43.4429019"],["-124.2252054","43.4507302"],["-124.2253356","43.4509634"],["-124.2255804","43.4513791"],["-124.2258045","43.4516834"],["-124.2261511","43.4520907"],["-124.2265686","43.4525442"],["-124.2269196","43.4529005"],["-124.2277871","43.4537128"],["-124.2283976","43.4544743"],["-124.2287777","43.4550869"],["-124.2289392","43.4554551"],["-124.2290875","43.4558236"],["-124.2292308","43.4562966"],["-124.2292984","43.4566473"],["-124.2293508","43.4570066"],["-124.2293651","43.457323"],["-124.2293634","43.4575854"],["-124.2293379","43.4579168"],["-124.2292775","43.4583137"],["-124.2291841","43.4586956"],["-124.2290714","43.459027"],["-124.2289101","43.4594065"],["-124.2287388","43.4597568"],["-124.2285439","43.4600952"],["-124.22829","43.4604677"],["-124.2278902","43.4609625"],["-124.2267625","43.4623566"],["-124.2264269","43.4628682"],["-124.2261156","43.4634407"],["-124.2259122","43.4638788"],["-124.2257735","43.4642974"],["-124.2256376","43.4647651"],["-124.2240513","43.4714353"],["-124.2239459","43.4721049"],["-124.2239169","43.4726974"],["-124.2239288","43.4734832"],["-124.2240266","43.4744896"],["-124.224133","43.475444"],["-124.2241651","43.4757708"],["-124.2241687","43.4761166"],["-124.2241631","43.47653"],["-124.2241508","43.4769898"],["-124.2241086","43.4776398"],["-124.2239786","43.4784768"],["-124.2238965","43.4789471"],["-124.2236123","43.4800719"],["-124.2227001","43.4833312"],["-124.2225083","43.4839738"],["-124.2207164","43.4890469"],["-124.2204458","43.48983"],["-124.2202068","43.4904216"],["-124.2197983","43.4915546"],["-124.2195481","43.4922543"],["-124.2193836","43.4927656"],["-124.2192466","43.4932378"],["-124.2191","43.4937507"],["-124.2189957","43.4942596"],["-124.2188986","43.4948188"],["-124.2187712","43.4961381"],["-124.2186094","43.4980979"],["-124.2185115","43.4991376"],["-124.2184546","43.4998172"],["-124.2183435","43.500918"],["-124.2173068","43.5126989"],["-124.2171664","43.514298"],["-124.2168613","43.5177688"],["-124.2163403","43.5236163"],["-124.2162177","43.5250512"],["-124.2157047","43.5309194"],["-124.2154698","43.5336041"],["-124.2153043","43.5350839"],["-124.215244","43.5356107"],["-124.2151919","43.5360254"],["-124.2151269","43.5364262"],["-124.2149281","43.5373036"],["-124.2148188","43.5376717"],["-124.2146966","43.5380541"],["-124.2142959","43.5391413"],["-124.2139869","43.5399374"],["-124.2137092","43.5406791"],["-124.2129373","43.5428008"],["-124.2086052","43.5545612"],["-124.2083098","43.5553576"],["-124.2074171","43.5577584"],["-124.2060223","43.5614456"],["-124.2056071","43.5624576"],["-124.205406","43.5628666"],["-124.2051338","43.5633591"],["-124.2048274","43.5638688"],["-124.2045032","43.5643648"],["-124.2041311","43.5648526"],["-124.2037556","43.5653327"],["-124.2032704","43.5658889"],["-124.2007528","43.5687325"],["-124.1988869","43.5708244"],["-124.1960595","43.5738836"],["-124.1956938","43.57423"],["-124.1952901","43.5746014"],["-124.1945886","43.5751106"],["-124.1939777","43.5755084"],["-124.193123","43.575977"],["-124.1881553","43.5782789"],["-124.1877334","43.5785178"],["-124.1869232","43.5790966"],["-124.1865882","43.5793671"],["-124.1862747","43.5796511"],["-124.1859449","43.5800227"],["-124.185663","43.5803776"],["-124.1853871","43.5807793"],["-124.1850858","43.5812613"],["-124.1848985","43.5816654"],["-124.1847906","43.5819581"],["-124.1846853","43.5823816"],["-124.1846158","43.5828277"],["-124.184572","43.5832607"],["-124.1845439","43.583797"],["-124.1844697","43.5846109"],["-124.1844519","43.5850786"],["-124.184447","43.5855136"],["-124.1844494","43.5858939"],["-124.1843716","43.5864772"],["-124.1842648","43.5870151"],["-124.1841886","43.5872736"],["-124.184113","43.5875516"],["-124.1838626","43.5884245"],["-124.1835336","43.5893672"],["-124.1829641","43.5909333"],["-124.1827845","43.591453"],["-124.1825039","43.5922137"],["-124.1813634","43.5954503"],["-124.181215","43.5959256"],["-124.1810465","43.5964848"],["-124.1803759","43.5983973"],["-124.1802527","43.5988616"],["-124.1801697","43.5992524"],["-124.1800987","43.6003241"],["-124.1801141","43.6007832"],["-124.1802354","43.6026145"],["-124.1806519","43.6081953"],["-124.1813604","43.6182466"],["-124.1816413","43.6219975"],["-124.1817288","43.6225717"],["-124.181843","43.6231002"],["-124.1823271","43.624845"],["-124.1847213","43.6331138"],["-124.184933","43.633705"],["-124.1851789","43.6341504"],["-124.1854052","43.6344661"],["-124.1856742","43.6347934"],["-124.1859342","43.6350736"],["-124.186799","43.6358382"],["-124.1873514","43.636275"],["-124.1876677","43.6365512"],["-124.1878864","43.6367953"],["-124.1881014","43.6371012"],["-124.1882675","43.6374367"],["-124.1884582","43.6378583"],["-124.1886247","43.6382141"],["-124.1888215","43.6384938"],["-124.189099","43.6387827"],["-124.189778","43.6394828"],["-124.1900247","43.6397816"],["-124.1901767","43.6400875"],["-124.1903518","43.6405254"],["-124.1908731","43.6421545"],["-124.1910262","43.6429164"],["-124.1909864","43.6433931"],["-124.1909242","43.6437131"],["-124.1907815","43.6440265"],["-124.1904864","43.6443757"],["-124.1899073","43.6449799"],["-124.1896047","43.6453287"],["-124.189344","43.6457273"],["-124.189235","43.6460192"],["-124.189158","43.6464076"],["-124.1891535","43.6470056"],["-124.1891648","43.647701"],["-124.1891916","43.6486628"],["-124.1894416","43.6515661"],["-124.1896191","43.6535877"],["-124.1897468","43.6551087"],["-124.1897417","43.6555719"],["-124.1896923","43.6559333"],["-124.1895733","43.6562914"],["-124.1894378","43.6565918"],["-124.1892792","43.6568998"],["-124.1888894","43.6574901"],["-124.1883195","43.6582601"],["-124.1880875","43.6586306"],["-124.1879059","43.6590518"],["-124.1877951","43.6595084"],["-124.1877686","43.6600276"],["-124.1877413","43.6607229"],["-124.1876686","43.661579"],["-124.1876481","43.6621397"],["-124.1876231","43.6626186"],["-124.1875803","43.6629974"],["-124.1874661","43.663368"],["-124.1872437","43.6637515"],["-124.1870146","43.6641224"],["-124.1849689","43.6667857"],["-124.1827015","43.6697384"],["-124.1822951","43.6702094"],["-124.181892","43.6706027"],["-124.1814879","43.6709639"],["-124.1809043","43.6714016"],["-124.1801991","43.6719077"],["-124.1794826","43.6723845"],["-124.1786186","43.6728567"],["-124.1757207","43.6742559"],["-124.1750814","43.6745677"],["-124.1747038","43.6747368"],["-124.1742983","43.6748946"],["-124.1737861","43.6750163"],["-124.1733876","43.6750541"],["-124.1729153","43.675079"],["-124.1724695","43.675078"],["-124.1720297","43.6750328"],["-124.171692","43.6749796"],["-124.1699168","43.6745545"],["-124.1690782","43.6743681"],["-124.1685018","43.6742634"],["-124.1680114","43.674205"],["-124.1674161","43.6741814"],["-124.1661186","43.6742193"],["-124.1643977","43.6742982"],["-124.1626653","43.6743935"],["-124.1620989","43.6744713"],["-124.1616124","43.6745782"],["-124.1611013","43.674757"],["-124.1605577","43.6750025"],["-124.1596987","43.675462"],["-124.1589936","43.6758655"],["-124.1584868","43.6761813"],["-124.1574291","43.6769877"],["-124.1564477","43.6777862"],["-124.15569","43.6784214"],["-124.155094","43.6789018"],["-124.1545727","43.6793141"],["-124.1541077","43.6796589"],["-124.1536326","43.6799841"],["-124.1531877","43.6802627"],["-124.1527062","43.6805568"],["-124.151786","43.6811517"],["-124.1481299","43.6839791"],["-124.1472639","43.6846749"],["-124.1435288","43.6880855"],["-124.1425448","43.6888925"],["-124.1422439","43.6890683"],["-124.1419107","43.6892532"],["-124.1415802","43.6893947"],["-124.1411024","43.6895544"],["-124.1390052","43.6902226"],["-124.1310867","43.6926897"],["-124.1296381","43.6931528"],["-124.1279663","43.6936656"],["-124.1246003","43.6947"],["-124.1241312","43.6948403"],["-124.1230395","43.6951445"],["-124.1223459","43.6953002"],["-124.1211862","43.6955485"],["-124.1204482","43.6957122"],["-124.1139228","43.6972208"],["-124.1134686","43.6973487"],["-124.1130865","43.6974667"],["-124.1127389","43.6975876"],["-124.1124651","43.6977142"],["-124.112267","43.6978169"],["-124.1120936","43.6979149"],["-124.1117564","43.698144"],["-124.1111422","43.6985889"],["-124.1105798","43.6990601"],["-124.1087428","43.7005811"],["-124.1082372","43.7009893"],["-124.1065193","43.7023903"],["-124.1057943","43.7030032"],["-124.1051922","43.7034944"],["-124.1042141","43.7043352"],["-124.1038732","43.7047074"],["-124.1037096","43.7049177"],["-124.1035684","43.7051328"],["-124.1021726","43.7076853"],["-124.1012773","43.7092633"],["-124.1001305","43.7111422"],["-124.0999469","43.711399"],["-124.0994785","43.712243"],["-124.0990241","43.7134172"],["-124.0989377","43.7137823"],["-124.0988747","43.7143325"],["-124.0988614","43.7145581"],["-124.0988624","43.7148842"],["-124.0989123","43.715282"],["-124.0989978","43.7157143"],["-124.0991138","43.7160981"],["-124.099282","43.7165475"],["-124.0994247","43.7168176"],["-124.0997026","43.7173017"],["-124.0998834","43.7175694"],["-124.1001372","43.7178801"],["-124.1004341","43.7182136"],["-124.1010734","43.7187871"],["-124.1014256","43.7190475"],["-124.1018321","43.7193219"],["-124.1022236","43.719536"],["-124.1026425","43.7197449"],["-124.1031195","43.7199482"],["-124.1035288","43.7201056"],["-124.1039954","43.7202672"],["-124.1055212","43.7206736"],["-124.106106","43.7208403"],["-124.1066203","43.7210114"],["-124.1070275","43.7211694"],["-124.1073934","43.7213438"],["-124.1077211","43.7215286"],["-124.1080573","43.7217496"],["-124.1083666","43.721982"],["-124.1086448","43.7222581"],["-124.1088793","43.7225358"],["-124.1091096","43.7228681"],["-124.1092691","43.7232486"],["-124.109448","43.7237433"],["-124.1099593","43.7252791"],["-124.1100513","43.7255204"],["-124.1105356","43.7266396"],["-124.1108168","43.7272601"],["-124.1112527","43.728233"],["-124.1113719","43.7285171"],["-124.1117153","43.729696"],["-124.1117677","43.7299168"],["-124.1117789","43.7300689"],["-124.1117753","43.7302331"],["-124.1117464","43.7304204"],["-124.1116272","43.7307942"],["-124.1115581","43.7310219"],["-124.1114861","43.7312045"],["-124.1114389","43.7313932"],["-124.1114011","43.7316045"],["-124.1113959","43.7318199"],["-124.1113969","43.7320064"],["-124.1114401","43.7323128"],["-124.1114667","43.7324886"],["-124.111523","43.7328805"],["-124.111551","43.7331391"],["-124.111566","43.7333857"],["-124.1115612","43.7336099"],["-124.1115298","43.7340102"],["-124.1113104","43.7363001"],["-124.1112249","43.737186"],["-124.1111044","43.738399"],["-124.1110724","43.7387605"],["-124.1110472","43.7391032"],["-124.1110729","43.7396254"],["-124.1111842","43.7400214"],["-124.1112775","43.740266"],["-124.1114338","43.7405247"],["-124.1128383","43.7423634"],["-124.1143684","43.7443638"],["-124.1146947","43.7447469"],["-124.1150633","43.7451309"],["-124.1153907","43.7454555"],["-124.1189827","43.7484065"],["-124.1194016","43.7487065"],["-124.1202199","43.7492356"],["-124.1206478","43.7494959"],["-124.1243386","43.7514942"],["-124.1253101","43.7520358"],["-124.1256577","43.7522973"],["-124.1259775","43.752574"],["-124.1262415","43.7529269"],["-124.126351","43.7532946"],["-124.1263659","43.7536296"],["-124.1262431","43.7539445"],["-124.1260463","43.7542499"],["-124.1257937","43.7544954"],["-124.1255261","43.7546891"],["-124.1252093","43.754875"],["-124.1247194","43.7551139"],["-124.1243029","43.7553122"],["-124.1239404","43.7554951"],["-124.1236162","43.7556858"],["-124.1232688","43.7559688"],["-124.1230406","43.7562798"],["-124.1229046","43.7566476"],["-124.1228605","43.757046"],["-124.1228627","43.7583002"],["-124.1228697","43.7591113"],["-124.1228768","43.7603957"],["-124.1229308","43.7607363"],["-124.1230565","43.7610126"],["-124.1232144","43.7612576"],["-124.1234778","43.7615153"],["-124.1237884","43.7617395"],["-124.1241518","43.7619095"],["-124.1245342","43.7620436"],["-124.125807","43.7622515"],["-124.1263031","43.7623451"],["-124.1267955","43.7624698"],["-124.1272028","43.7626167"],["-124.1276548","43.7628177"],["-124.1280652","43.7630519"],["-124.12844","43.7633495"],["-124.1287149","43.7637175"],["-124.1289137","43.7640737"],["-124.1290119","43.764333"],["-124.1291097","43.764772"],["-124.1292506","43.7656527"],["-124.1295902","43.7681159"],["-124.1297308","43.7684326"],["-124.1299631","43.7687446"],["-124.1302172","43.7689723"],["-124.1306058","43.7691988"],["-124.1310012","43.7693478"],["-124.1313901","43.7694391"],["-124.131873","43.7695195"],["-124.1394246","43.7705178"],["-124.1406569","43.77069"],["-124.1412106","43.7707988"],["-124.1419228","43.771031"],["-124.1422615","43.7711799"],["-124.1425449","43.7713187"],["-124.1428512","43.7715179"],["-124.143123","43.7717327"],["-124.1433645","43.7719452"],["-124.1435794","43.7721765"],["-124.1437795","43.7724446"],["-124.1439666","43.7727808"],["-124.1440857","43.7730782"],["-124.1441534","43.7733818"],["-124.1443023","43.7746328"],["-124.1443516","43.7754149"],["-124.1443309","43.7756733"],["-124.1442734","43.7759362"],["-124.1441641","43.7762276"],["-124.1440331","43.7764804"],["-124.1437747","43.7768136"],["-124.1434722","43.7771787"],["-124.1430897","43.7776692"],["-124.1428606","43.7780736"],["-124.142681","43.7784857"],["-124.1425046","43.779186"],["-124.1422348","43.7802248"],["-124.1420362","43.7810185"],["-124.1419926","43.7813931"],["-124.1419745","43.7817445"],["-124.1419749","43.7821114"],["-124.142035","43.7824467"],["-124.1421288","43.7827315"],["-124.1422486","43.7830238"],["-124.1423816","43.7832829"],["-124.1426399","43.7836431"],["-124.1428833","43.7839164"],["-124.1431497","43.7841941"],["-124.1434839","43.784476"],["-124.1443346","43.7850426"],["-124.1448473","43.7853664"],["-124.1492934","43.7882108"],["-124.1498346","43.7886173"],["-124.1501257","43.7889214"],["-124.1503658","43.7892684"],["-124.1504565","43.7896349"],["-124.1504636","43.789956"],["-124.1503779","43.7902938"],["-124.1503073","43.7904919"],["-124.1502048","43.7906841"],["-124.1496972","43.7913815"],["-124.1494466","43.791752"],["-124.1492071","43.7921626"],["-124.1490051","43.7925601"],["-124.1488626","43.7929266"],["-124.1487476","43.7932646"],["-124.1486635","43.7936311"],["-124.148598","43.7939415"],["-124.1485369","43.7942868"],["-124.1484868","43.7946251"],["-124.147793","43.8013284"],["-124.1477172","43.8022161"],["-124.1477342","43.8025889"],["-124.1477858","43.8029584"],["-124.1479905","43.8035287"],["-124.1481119","43.8038036"],["-124.1482812","43.8040666"],["-124.1484898","43.8043224"],["-124.1487554","43.8045956"],["-124.1494532","43.8051157"],["-124.1505629","43.8058103"],["-124.151445","43.806366"],["-124.1526475","43.8071134"],["-124.1530049","43.8073527"],["-124.1532621","43.8075523"],["-124.1534603","43.8078087"],["-124.1535896","43.808173"],["-124.15364","43.80854"],["-124.1535869","43.8089527"],["-124.1532229","43.8106247"],["-124.1530478","43.8114587"],["-124.1530487","43.8118852"],["-124.1531433","43.8126944"],["-124.1534486","43.8138968"],["-124.153709","43.8151769"],["-124.153846","43.815853"],["-124.1538469","43.816204"],["-124.1537578","43.8165632"],["-124.1535319","43.8169271"],["-124.1532263","43.8172076"],["-124.1528705","43.8174406"],["-124.1524965","43.8176565"],["-124.1521472","43.8179027"],["-124.1518888","43.8181738"],["-124.1516898","43.8184805"],["-124.1515271","43.8188138"],["-124.1513763","43.8193216"],["-124.1509406","43.8210951"],["-124.1507779","43.8215047"],["-124.1506091","43.8217795"],["-124.1504045","43.8220876"],["-124.1501368","43.8223854"],["-124.1498429","43.8226534"],["-124.1495414","43.8229069"],["-124.1485439","43.8235391"],["-124.1480037","43.8238879"],["-124.1477578","43.8240818"],["-124.1476585","43.8242209"],["-124.1475216","43.8245056"],["-124.1474938","43.8248282"],["-124.1475122","43.8251095"],["-124.1476158","43.8254156"],["-124.1482794","43.8262363"],["-124.1484757","43.8265521"],["-124.1486018","43.8269382"],["-124.1486795","43.8279968"],["-124.1487971","43.8300336"],["-124.1489194","43.8321038"],["-124.1490109","43.8325417"],["-124.1491967","43.8330636"],["-124.1501447","43.8350279"],["-124.1503555","43.8355424"],["-124.150474","43.8358984"],["-124.150543","43.8362498"],["-124.1505512","43.8366115"],["-124.1505085","43.8370556"],["-124.1497459","43.8396188"],["-124.1485853","43.8428947"],["-124.1472685","43.8466128"],["-124.1469566","43.8476598"],["-124.1466404","43.849075"],["-124.1462834","43.8506293"],["-124.1459831","43.8519021"],["-124.1457587","43.8528517"],["-124.1456538","43.8532534"],["-124.1455221","43.8536283"],["-124.1453677","43.854038"],["-124.1451234","43.8545191"],["-124.1440562","43.8563394"],["-124.1424531","43.8590269"],["-124.1418933","43.8598201"],["-124.1409874","43.8609979"],["-124.1328571","43.8708818"],["-124.1325424","43.8713575"],["-124.1322907","43.8718053"],["-124.1320339","43.8723096"],["-124.1319001","43.8726743"],["-124.1316877","43.8735514"],["-124.1314493","43.8753986"],["-124.1313261","43.8761808"],["-124.131202","43.876726"],["-124.1310736","43.8770867"],["-124.1308942","43.8775355"],["-124.1296934","43.8802521"],["-124.1290665","43.8816482"],["-124.1288528","43.8819988"],["-124.1285633","43.882301"],["-124.1282452","43.882547"],["-124.1278646","43.8827541"],["-124.1276241","43.882858"],["-124.1273724","43.8829277"],["-124.1271318","43.8829771"],["-124.1268642","43.8830047"],["-124.126232","43.8830181"],["-124.1255144","43.8830221"],["-124.1242455","43.8830172"],["-124.123743","43.8830265"],["-124.123311","43.8830728"],["-124.1229777","43.8831487"],["-124.1226903","43.8832366"],["-124.1223871","43.8833594"],["-124.1221442","43.8834991"],["-124.1219196","43.8836798"],["-124.1216744","43.8839259"],["-124.1215026","43.8841744"],["-124.1213583","43.8844003"],["-124.1212308","43.8846896"],["-124.1208465","43.8860039"],["-124.1206034","43.8868873"],["-124.116198","43.9008784"],["-124.1158879","43.9018276"],["-124.1156449","43.9024955"],["-124.1153547","43.903201"],["-124.1147732","43.9042533"],["-124.1144011","43.9048734"],["-124.1132786","43.9063734"],["-124.1127941","43.9070195"],["-124.1125571","43.9073641"],["-124.1124216","43.9076593"],["-124.1123247","43.9079318"],["-124.1122679","43.9082501"],["-124.1119012","43.9097007"],["-124.1109262","43.9136829"],["-124.1106978","43.914475"],["-124.1089135","43.9194311"],["-124.1081213","43.9215229"],["-124.1079511","43.9221983"],["-124.1078878","43.9227901"],["-124.1078266","43.9237728"],["-124.1077136","43.9259986"],["-124.1076648","43.9265859"],["-124.1075996","43.9271926"],["-124.107221","43.9301387"],["-124.1069695","43.9314447"],["-124.1065633","43.9330099"],["-124.105387","43.9371952"],["-124.1050888","43.9381504"],["-124.1043034","43.94087"],["-124.1041718","43.9413797"],["-124.1041285","43.9416754"],["-124.1041134","43.9419508"],["-124.1041058","43.942408"],["-124.1041648","43.9449087"],["-124.104213","43.9498636"],["-124.1042281","43.951481"],["-124.1042919","43.9542324"],["-124.1043025","43.955593"],["-124.1043099","43.9564222"],["-124.1043485","43.9577835"],["-124.1044023","43.958269"],["-124.1044546","43.9584845"],["-124.1045115","43.9586171"],["-124.1046442","43.9588272"],["-124.104799","43.9590681"],["-124.104967","43.9592744"],["-124.1051778","43.9595153"],["-124.1055942","43.9598929"],["-124.1059","43.9600898"],["-124.1073172","43.9608862"],["-124.10759","43.9610634"],["-124.107826","43.9612278"],["-124.1079027","43.9613078"],["-124.1081523","43.9616268"],["-124.1082671","43.9617671"],["-124.1083806","43.9619193"],["-124.1085083","43.9621228"],["-124.1085568","43.9622585"],["-124.1086003","43.9623906"],["-124.1086531","43.9626204"],["-124.1086995","43.9632353"],["-124.1085207","43.96598"],["-124.1084771","43.9664142"],["-124.1084195","43.9667671"],["-124.1083525","43.9669965"],["-124.1082796","43.9672271"],["-124.1081946","43.9674657"],["-124.1080845","43.9677311"],["-124.1079187","43.9680321"],["-124.1078212","43.9681832"],["-124.1075637","43.9685849"],["-124.1068694","43.9695313"],["-124.1062802","43.9702816"],["-124.1057675","43.9710186"],["-124.1045049","43.972753"],["-124.1044241","43.972843"],["-124.1040402","43.97341"],["-124.1035593","43.9741042"],["-124.1030575","43.9747745"],["-124.1025251","43.9754804"],["-124.1020708","43.9760875"],["-124.1017956","43.9764861"],["-124.1015471","43.976908"],["-124.1013464","43.9773434"],["-124.1012723","43.9775951"],["-124.1012265","43.9778976"],["-124.1011873","43.9782641"],["-124.1015402","44.0039008"],["-124.1015427","44.0040802"],["-124.1015863","44.0084466"],["-124.1017073","44.0179558"],["-124.1017035","44.0181666"],["-124.1015603","44.0194756"],["-124.1012514","44.0225662"],["-124.1010421","44.0240593"],["-124.099832","44.034964"],["-124.0996721","44.0363501"],["-124.0991142","44.0414336"],["-124.0988028","44.0447599"],["-124.0985416","44.0473834"],["-124.0980243","44.0512043"],["-124.0978922","44.0524725"],["-124.0978176","44.0531456"],["-124.0977815","44.0536798"],["-124.0978108","44.0539206"],["-124.0978752","44.054103"],["-124.098029","44.0542629"],["-124.0981532","44.0544082"],["-124.0983674","44.05464"],["-124.0987453","44.0549944"],["-124.0990301","44.0552218"],["-124.0994216","44.0555564"],["-124.0996647","44.0558004"],["-124.0998326","44.0559972"],["-124.0998546","44.0561781"],["-124.0999196","44.0563704"],["-124.0999601","44.056567"],["-124.0999598","44.0567773"],["-124.0999162","44.0569926"],["-124.0996772","44.0575881"],["-124.0989383","44.0593156"],["-124.0988102","44.0596946"],["-124.0987667","44.0599853"],["-124.0987501","44.0603207"],["-124.0987797","44.060722"],["-124.0988313","44.0611745"],["-124.0988891","44.0616188"],["-124.0988942","44.0619501"],["-124.0988822","44.0622202"],["-124.0988468","44.06249"],["-124.0987195","44.0628935"],["-124.0985655","44.0633333"],["-124.0983698","44.0638312"],["-124.09821","44.0643273"],["-124.0981421","44.0647155"],["-124.0981304","44.0650985"],["-124.0981608","44.0654529"],["-124.0982407","44.0657853"],["-124.0983855","44.0661469"],["-124.0998398","44.0687383"],["-124.1003231","44.0695697"],["-124.1015151","44.0716142"],["-124.1016721","44.0719221"],["-124.101723","44.0721388"],["-124.1017314","44.0723647"],["-124.1016834","44.0725869"],["-124.1014866","44.0729499"],["-124.1013181","44.0733783"],["-124.1012244","44.073757"],["-124.101231","44.0740429"],["-124.1013184","44.0744938"],["-124.1014897","44.0749121"],["-124.1017925","44.0752843"],["-124.1022828","44.0757526"],["-124.1028801","44.0762574"],["-124.1034548","44.0767218"],["-124.104053","44.0772048"],["-124.1043985","44.077563"],["-124.1047416","44.077992"],["-124.1051744","44.078908"],["-124.109084","44.0886844"],["-124.1095646","44.0898733"],["-124.1098422","44.0905051"],["-124.1101609","44.0910406"],["-124.1105016","44.0915364"],["-124.1110358","44.0921616"],["-124.1120652","44.0932326"],["-124.1141882","44.0954374"],["-124.1148451","44.0961921"],["-124.1153021","44.0967769"],["-124.1156654","44.0972957"],["-124.1160162","44.0978048"],["-124.1162071","44.0980043"],["-124.1164422","44.0982016"],["-124.1167643","44.0983521"],["-124.1171417","44.0985155"],["-124.1175186","44.0986633"],["-124.1179288","44.0988689"],["-124.1182382","44.0990578"],["-124.1189395","44.099669"],["-124.1194265","44.1000323"],["-124.1197192","44.1002027"],["-124.1199773","44.100352"],["-124.1201974","44.1005135"],["-124.1203965","44.1006933"],["-124.1204751","44.100799"],["-124.1205387","44.1009123"],["-124.1205936","44.1010191"],["-124.1206479","44.1011469"],["-124.120674","44.1013097"],["-124.1206644","44.1014861"],["-124.1206359","44.1016491"],["-124.1205827","44.1018151"],["-124.1205321","44.101972"],["-124.1204935","44.1021402"],["-124.1204732","44.1022844"],["-124.1204746","44.1024493"],["-124.1204979","44.1026171"],["-124.120555","44.1027699"],["-124.120684","44.1030115"],["-124.1212458","44.1038494"],["-124.121365","44.1041366"],["-124.1214464","44.1044849"],["-124.1215164","44.1048985"],["-124.1215238","44.1052354"],["-124.121485","44.1058166"],["-124.1215533","44.1061246"],["-124.1217391","44.1064143"],["-124.1219571","44.1067195"],["-124.122119","44.1069803"],["-124.1221805","44.1072905"],["-124.1221581","44.1076736"],["-124.122163","44.1080232"],["-124.1222099","44.1082106"],["-124.1223507","44.1084045"],["-124.122579","44.1086538"],["-124.1228548","44.1089922"],["-124.123039","44.1093469"],["-124.1231394","44.1098447"],["-124.1232326","44.1103054"],["-124.1233088","44.110663"],["-124.1233524","44.1109408"],["-124.1233437","44.1111904"],["-124.1232976","44.1114411"],["-124.1232521","44.1116991"],["-124.1232497","44.1119352"],["-124.1233121","44.1121694"],["-124.1234036","44.1124815"],["-124.1234929","44.1128406"],["-124.1234882","44.1130657"],["-124.1234155","44.1133433"],["-124.1232939","44.1135602"],["-124.1230962","44.1137351"],["-124.1227451","44.1139826"],["-124.1225336","44.1141723"],["-124.1224246","44.1143826"],["-124.1223975","44.1145998"],["-124.1224683","44.1149653"],["-124.1225142","44.1152824"],["-124.1224585","44.1154923"],["-124.1222254","44.115705"],["-124.1219537","44.115873"],["-124.1215308","44.1160967"],["-124.1211432","44.1163068"],["-124.1205475","44.1166997"],["-124.1203116","44.1168358"],["-124.1200531","44.1169244"],["-124.1197543","44.1170063"],["-124.1195367","44.117068"],["-124.1193773","44.1171192"],["-124.1192443","44.117206"],["-124.1191764","44.1172695"],["-124.1190941","44.1173394"],["-124.118794","44.1175478"],["-124.1184642","44.1177066"],["-124.1181786","44.1178476"],["-124.1179739","44.1180395"],["-124.1178622","44.1182723"],["-124.1178523","44.1183422"],["-124.1178525","44.1184147"],["-124.1179275","44.1185583"],["-124.1181461","44.1186513"],["-124.118365","44.11872"],["-124.1187809","44.1186937"],["-124.1192267","44.1186174"],["-124.1195085","44.1185787"],["-124.1197847","44.1185547"],["-124.1200005","44.1185646"],["-124.1201813","44.1185823"],["-124.1203394","44.1186214"],["-124.1205655","44.1187037"],["-124.1212318","44.1190693"],["-124.1215645","44.1192898"],["-124.1219834","44.1195165"],["-124.1235773","44.1201751"],["-124.1247459","44.120659"],["-124.1255447","44.1210181"],["-124.1258477","44.1211842"],["-124.1260093","44.1213174"],["-124.1261874","44.1214848"],["-124.1263135","44.1216339"],["-124.1264072","44.1218107"],["-124.1264565","44.1219411"],["-124.1264986","44.1220748"],["-124.1265122","44.1222236"],["-124.1265137","44.1224779"],["-124.126474","44.1226768"],["-124.1263734","44.1228719"],["-124.1262728","44.1230599"],["-124.1261852","44.1232134"],["-124.1261365","44.1234341"],["-124.1261496","44.1236692"],["-124.1261545","44.1238857"],["-124.1261247","44.1240686"],["-124.1260767","44.1242142"],["-124.1259953","44.1243681"],["-124.1258741","44.1245146"],["-124.1257648","44.1246302"],["-124.1256706","44.1247911"],["-124.1256668","44.125015"],["-124.1257159","44.1251535"],["-124.1257278","44.1253044"],["-124.1257112","44.1254543"],["-124.1256672","44.1255668"],["-124.1255739","44.1256632"],["-124.1253614","44.1257407"],["-124.1251405","44.1257957"],["-124.1248999","44.1258631"],["-124.1246848","44.1259682"],["-124.1245436","44.1260658"],["-124.1244373","44.1261691"],["-124.124339","44.1263261"],["-124.1241977","44.126489"],["-124.1240682","44.1266149"],["-124.123945","44.1267023"],["-124.1238144","44.1268111"],["-124.123624","44.1270495"],["-124.1234683","44.1273129"],["-124.1233","44.127617"],["-124.1230717","44.128044"],["-124.122951","44.1283123"],["-124.1228568","44.1285285"],["-124.1227758","44.1287224"],["-124.1227085","44.1289292"],["-124.1224633","44.1301925"],["-124.1223518","44.1308557"],["-124.1217677","44.1339773"],["-124.121636","44.1347269"],["-124.1216499","44.1349353"],["-124.1216782","44.1351826"],["-124.1217391","44.1353942"],["-124.1218143","44.1356171"],["-124.1219133","44.1358682"],["-124.1220335","44.1361137"],["-124.1221734","44.136368"],["-124.1223087","44.1365717"],["-124.122405","44.1366957"],["-124.1225098","44.1367966"],["-124.1226102","44.1368616"],["-124.1227893","44.1369379"],["-124.1228948","44.1369665"],["-124.1230499","44.1369922"],["-124.1232194","44.1370088"],["-124.1236133","44.1370284"],["-124.1240084","44.1370486"],["-124.1243213","44.1370765"],["-124.1245628","44.1371387"],["-124.1246898","44.1371981"],["-124.1247821","44.1372707"],["-124.1248433","44.1373418"],["-124.1248852","44.1374146"],["-124.1249126","44.137513"],["-124.1249196","44.1376093"],["-124.1248962","44.1377071"],["-124.1248536","44.137789"],["-124.1247692","44.1378705"],["-124.1246754","44.137931"],["-124.1245575","44.1379786"],["-124.1244164","44.1380092"],["-124.1242602","44.1380165"],["-124.1233952","44.1379538"],["-124.1212152","44.1377595"],["-124.1210052","44.1377458"],["-124.1207815","44.1377505"],["-124.1205329","44.1377682"],["-124.1202632","44.1377988"],["-124.1199806","44.1378367"],["-124.1197576","44.1378884"],["-124.1195292","44.137946"],["-124.1193258","44.1380062"],["-124.1190857","44.1380884"],["-124.1188478","44.1381984"],["-124.118505","44.1383913"],["-124.1183106","44.1385307"],["-124.1180904","44.1387233"],["-124.1178444","44.1389876"],["-124.1176499","44.1392197"],["-124.1175034","44.1394735"],["-124.1174121","44.1397263"],["-124.117342","44.1399384"],["-124.1173097","44.1401106"],["-124.1172956","44.1402363"],["-124.1172895","44.1404595"],["-124.1173567","44.1409124"],["-124.117484","44.141983"],["-124.1176155","44.1431661"],["-124.1176304","44.1434161"],["-124.1176373","44.1437873"],["-124.1176267","44.1443335"],["-124.1176053","44.145035"],["-124.1175695","44.1456238"],["-124.1175108","44.146156"],["-124.1166631","44.1522819"],["-124.1164851","44.1536427"],["-124.1163643","44.1545744"],["-124.1161293","44.1562725"],["-124.1160626","44.1566719"],["-124.1159988","44.1570072"],["-124.1159396","44.1572665"],["-124.1157043","44.1581582"],["-124.1155685","44.1585759"],["-124.1154108","44.159049"],["-124.1135349","44.1648229"],["-124.1134129","44.1652359"],["-124.1133563","44.1654714"],["-124.1133206","44.1657734"],["-124.113343","44.1660273"],["-124.1134285","44.1663797"],["-124.1145616","44.1687839"],["-124.1153258","44.1704004"],["-124.1154545","44.170719"],["-124.1155857","44.1710744"],["-124.1157097","44.1714652"],["-124.1157656","44.1718737"],["-124.1157969","44.1722443"],["-124.1157859","44.1726174"],["-124.115707","44.1731745"],["-124.1155229","44.1737793"],["-124.1153899","44.1741085"],["-124.1153328","44.1742436"],["-124.1149712","44.1751112"],["-124.1148943","44.175412"],["-124.1148769","44.1756835"],["-124.1150819","44.1796932"],["-124.1152641","44.1831786"],["-124.1153001","44.1839945"],["-124.1153423","44.1848077"],["-124.1153976","44.1856432"],["-124.1153586","44.1858626"],["-124.1151686","44.1861733"],["-124.1150228","44.1863206"],["-124.1147841","44.186496"],["-124.1143598","44.186701"],["-124.1141004","44.1868726"],["-124.1139075","44.1870805"],["-124.1137614","44.1873016"],["-124.1136673","44.18755"],["-124.1136523","44.1877997"],["-124.1137352","44.1881114"],["-124.1138712","44.1883774"],["-124.1140299","44.1886806"],["-124.1141489","44.1890026"],["-124.1142189","44.1892941"],["-124.114247","44.1896192"],["-124.1142646","44.1900844"],["-124.114226","44.1909299"],["-124.1141895","44.1914025"],["-124.1140993","44.1916345"],["-124.1138987","44.1919174"],["-124.1136824","44.1921858"],["-124.1134861","44.1924563"],["-124.1133672","44.1926615"],["-124.1133068","44.192894"],["-124.1133011","44.192965"],["-124.1133001","44.1931856"],["-124.1133781","44.193399"],["-124.1134188","44.193679"],["-124.1136188","44.1942086"],["-124.1136693","44.194486"],["-124.1136516","44.1947388"],["-124.1135634","44.1950357"],["-124.1130855","44.1958378"],["-124.1129036","44.1961762"],["-124.1127888","44.1965052"],["-124.1124951","44.1977428"],["-124.1124145","44.1981369"],["-124.1124222","44.1984261"],["-124.1125011","44.1987101"],["-124.112656","44.1989597"],["-124.1128289","44.1991942"],["-124.1131267","44.1994993"],["-124.1133509","44.1997544"],["-124.1134558","44.2000023"],["-124.1135081","44.2003125"],["-124.1134603","44.2006456"],["-124.1133751","44.2011003"],["-124.1132988","44.2015187"],["-124.1132335","44.2018999"],["-124.1132297","44.2022337"],["-124.1133073","44.2025387"],["-124.1134291","44.2027838"],["-124.113624","44.203039"],["-124.1138356","44.2032935"],["-124.1141902","44.203604"],["-124.114387","44.2037621"],["-124.1145428","44.2039572"],["-124.1146446","44.2041992"],["-124.1146886","44.2044716"],["-124.1147033","44.2048184"],["-124.1147154","44.2051214"],["-124.1147403","44.2053126"],["-124.1148046","44.2056381"],["-124.1148764","44.2059674"],["-124.1149497","44.2064957"],["-124.1149221","44.2068648"],["-124.114857","44.2071363"],["-124.1147601","44.2074131"],["-124.1145801","44.2077472"],["-124.1143971","44.2080655"],["-124.1142369","44.2083409"],["-124.1140825","44.2086632"],["-124.1139236","44.2089676"],["-124.1134939","44.2098368"],["-124.1133513","44.2103174"],["-124.1131466","44.2113124"],["-124.1131375","44.2117826"],["-124.1131533","44.2122375"],["-124.1134628","44.2171812"],["-124.1134648","44.2177422"],["-124.1134278","44.2179911"],["-124.113316","44.21828"],["-124.1128994","44.2189745"],["-124.1119008","44.2205347"],["-124.1101902","44.2231365"],["-124.1100569","44.2232975"],["-124.1097175","44.2238251"],["-124.1094069","44.224283"],["-124.1092406","44.2246013"],["-124.1090996","44.2249332"],["-124.1090967","44.2255835"],["-124.1094199","44.2298477"],["-124.1095003","44.2307249"],["-124.1095353","44.2312767"],["-124.1095514","44.2316384"],["-124.1096164","44.2324371"],["-124.1096552","44.2329965"],["-124.1097851","44.2349331"],["-124.1098278","44.2354354"],["-124.1098424","44.2357892"],["-124.109921","44.2361187"],["-124.110011","44.2364098"],["-124.1100308","44.2364817"],["-124.1101225","44.2366949"],["-124.1102188","44.2369076"],["-124.1104371","44.2372053"],["-124.1110437","44.2379581"],["-124.1113018","44.2383042"],["-124.111398","44.2385018"],["-124.1114836","44.238743"],["-124.1115082","44.2389198"],["-124.111524","44.2391797"],["-124.1115041","44.2393622"],["-124.1112702","44.2400764"],["-124.1112029","44.2403704"],["-124.1111802","44.2405935"],["-124.1112128","44.2410097"],["-124.1114513","44.2431731"],["-124.1115764","44.2442543"],["-124.1116256","44.2446452"],["-124.1117843","44.2458928"],["-124.1118782","44.2466435"],["-124.1119891","44.2475305"],["-124.1120587","44.2480936"],["-124.1121135","44.2485453"],["-124.112127","44.2488213"],["-124.1121178","44.2490476"],["-124.1120947","44.2492662"],["-124.1111959","44.2529995"],["-124.1110782","44.2535464"],["-124.1108635","44.2543163"],["-124.1106576","44.2547518"],["-124.1103027","44.255261"],["-124.1097864","44.2559733"],["-124.1095035","44.256434"],["-124.1093551","44.2567967"],["-124.1092494","44.2571295"],["-124.1092036","44.2574749"],["-124.109178","44.2578496"],["-124.109181","44.2582192"],["-124.1092906","44.2586614"],["-124.1100934","44.2611802"],["-124.110142","44.2614093"],["-124.1100945","44.2616624"],["-124.1099506","44.2618989"],["-124.1096868","44.2621033"],["-124.109278","44.2622923"],["-124.1087425","44.2624411"],["-124.1082725","44.2626085"],["-124.1078279","44.2627987"],["-124.1075366","44.2629884"],["-124.1073355","44.263172"],["-124.107133","44.2633948"],["-124.1069746","44.2636317"],["-124.1068161","44.2639949"],["-124.1067741","44.2643333"],["-124.1068697","44.2652108"],["-124.1069246","44.2656702"],["-124.1071757","44.2679541"],["-124.1072697","44.2685547"],["-124.1073554","44.2689531"],["-124.1074841","44.2692743"],["-124.1076299","44.2695633"],["-124.1078256","44.2698622"],["-124.1080292","44.2701116"],["-124.1082712","44.2703806"],["-124.1088369","44.2709056"],["-124.1115621","44.2732196"],["-124.1123478","44.27386"],["-124.1126833","44.2741321"],["-124.1128295","44.2742795"],["-124.1129756","44.2744588"],["-124.1130938","44.2746604"],["-124.1131962","44.2748981"],["-124.1132807","44.275164"],["-124.1133148","44.2753321"],["-124.113325","44.2755021"],["-124.1133029","44.275756"],["-124.1132395","44.2760287"],["-124.1130976","44.2763254"],["-124.1129138","44.276614"],["-124.1118231","44.2779194"],["-124.1115791","44.2781775"],["-124.1111983","44.2784816"],["-124.1106427","44.2788224"],["-124.1100248","44.2791994"],["-124.109725","44.2794192"],["-124.1096522","44.2795419"],["-124.1096065","44.279673"],["-124.1095962","44.2798425"],["-124.1097038","44.2803336"],["-124.1096998","44.2805162"],["-124.1096707","44.2806844"],["-124.1095931","44.2809333"],["-124.1094462","44.2810942"],["-124.1093069","44.2812271"],["-124.1091341","44.2813427"],["-124.1089823","44.2814268"],["-124.1085979","44.2815553"],["-124.1082457","44.2816674"],["-124.108025","44.2817703"],["-124.1078905","44.2818818"],["-124.1078197","44.2819816"],["-124.1077751","44.2821328"],["-124.1077875","44.282271"],["-124.1078571","44.282446"],["-124.1080199","44.2825845"],["-124.1081944","44.282701"],["-124.1088834","44.2830085"],["-124.1091209","44.2831368"],["-124.1092932","44.2832679"],["-124.1094017","44.283378"],["-124.109446","44.2835131"],["-124.1094548","44.2836085"],["-124.1094206","44.2837508"],["-124.1093196","44.2839136"],["-124.1092319","44.284031"],["-124.1090712","44.2842038"],["-124.109017","44.2843578"],["-124.1090269","44.2844984"],["-124.1091175","44.2846571"],["-124.1092365","44.2847774"],["-124.1093492","44.2848353"],["-124.1095246","44.2849023"],["-124.109841","44.2849745"],["-124.1104818","44.2850688"],["-124.1107278","44.2851565"],["-124.1110848","44.2853056"],["-124.11157","44.2856008"],["-124.1119377","44.2858181"],["-124.1122038","44.2860338"],["-124.1123515","44.2862061"],["-124.112474","44.2864715"],["-124.1128184","44.2875607"],["-124.112926","44.2877673"],["-124.1130154","44.2880061"],["-124.1130236","44.2881724"],["-124.1129944","44.2882921"],["-124.1128083","44.2885428"],["-124.1125803","44.288818"],["-124.1124268","44.2889968"],["-124.1123541","44.2890673"],["-124.1122349","44.2891355"],["-124.1120908","44.289172"],["-124.1117478","44.2892477"],["-124.1112158","44.2893722"],["-124.1107101","44.2895272"],["-124.1103377","44.2896943"],["-124.1100203","44.2899233"],["-124.108804","44.2906078"],["-124.1084726","44.2908096"],["-124.1083435","44.290923"],["-124.1082424","44.2910208"],["-124.1081733","44.2911272"],["-124.1081511","44.2912132"],["-124.1081531","44.2913057"],["-124.1081943","44.291493"],["-124.1082749","44.2916383"],["-124.1084391","44.291759"],["-124.1085626","44.2918217"],["-124.1087067","44.2918794"],["-124.1089548","44.2919384"],["-124.109058","44.2919365"],["-124.1093304","44.2919568"],["-124.1096585","44.2919809"],["-124.1099079","44.2920164"],["-124.1101007","44.2920614"],["-124.1102675","44.2921097"],["-124.1104132","44.2922171"],["-124.1105296","44.292367"],["-124.1106378","44.2925387"],["-124.1107847","44.2928974"],["-124.1109959","44.2934674"],["-124.1111457","44.2939045"],["-124.1111804","44.2940534"],["-124.1111764","44.2941923"],["-124.1111434","44.29432"],["-124.1110288","44.2944628"],["-124.1108414","44.2946669"],["-124.1106913","44.2947956"],["-124.1105081","44.2949219"],["-124.1103401","44.2950134"],["-124.1101369","44.2950989"],["-124.1093098","44.2952812"],["-124.1089465","44.2953936"],["-124.1087667","44.2955044"],["-124.1086487","44.2956275"],["-124.108587","44.2957671"],["-124.1085366","44.2959005"],["-124.1085388","44.2960471"],["-124.1086007","44.2962097"],["-124.1087434","44.2964061"],["-124.1091952","44.2967952"],["-124.1093302","44.2969508"],["-124.1093852","44.2970728"],["-124.1094285","44.2972601"],["-124.1094087","44.2974406"],["-124.1093326","44.2976862"],["-124.1092296","44.2979063"],["-124.10912","44.2981481"],["-124.1088773","44.2985518"],["-124.1087511","44.298764"],["-124.1082045","44.2997346"],["-124.1078767","44.3003187"],["-124.1074147","44.3011603"],["-124.1070084","44.3018342"],["-124.1067442","44.3022464"],["-124.1065305","44.3025457"],["-124.1062537","44.3028567"],["-124.1055895","44.3035097"],["-124.1052296","44.3038185"],["-124.1050175","44.3039721"],["-124.1041969","44.3045842"],["-124.1025294","44.3058012"],["-124.1020932","44.3060863"],["-124.1016817","44.3063251"],["-124.1009513","44.3068589"],["-124.1004911","44.3072004"],["-124.100249","44.3073865"],["-124.0997033","44.3078229"],["-124.0994537","44.3080544"],["-124.0993201","44.3082334"],["-124.0992268","44.3084633"],["-124.0992019","44.3086956"],["-124.0992323","44.308862"],["-124.0992922","44.3090085"],["-124.0993644","44.3091474"],["-124.0994842","44.3093235"],["-124.0996305","44.3094729"],["-124.0997988","44.3095944"],["-124.1000198","44.3096972"],["-124.1004996","44.3098381"],["-124.1024156","44.3103599"],["-124.1028333","44.3105158"],["-124.1030594","44.3106245"],["-124.1032493","44.3107275"],["-124.1034687","44.3108754"],["-124.1035432","44.3109435"],["-124.1037332","44.3111449"],["-124.1038931","44.3113597"],["-124.1040481","44.3116329"],["-124.1045663","44.3127749"],["-124.10465","44.3130619"],["-124.1047635","44.3137471"],["-124.1047781","44.3140809"],["-124.1047688","44.3144056"],["-124.1047465","44.3147659"],["-124.1047129","44.3151069"],["-124.1046375","44.3154548"],["-124.1045333","44.3158008"],["-124.103243","44.3191271"],["-124.1022758","44.3216177"],["-124.1021967","44.3218418"],["-124.1021267","44.3220073"],["-124.1014681","44.3236501"],["-124.0995879","44.3284453"],["-124.0994208","44.3289566"],["-124.0993029","44.3292691"],["-124.099148","44.3296601"],["-124.0990897","44.3298289"],["-124.0984179","44.3314692"],["-124.0982832","44.3319176"],["-124.09813","44.3324817"],["-124.0979881","44.3330694"],["-124.0979767","44.3331665"],["-124.0978349","44.3337452"],["-124.0975623","44.3349493"],["-124.097237","44.3364435"],["-124.0966738","44.3390354"],["-124.0965415","44.3396706"],["-124.0960618","44.3418523"],["-124.0958925","44.3426808"],["-124.0957966","44.3431236"],["-124.0956595","44.3437786"],["-124.0953701","44.3451057"],["-124.0951907","44.3458587"],["-124.0949975","44.346733"],["-124.0948347","44.3474366"],["-124.0947128","44.3479738"],["-124.0944991","44.3489908"],["-124.0942891","44.3500204"],["-124.0942317","44.3502912"],["-124.0938869","44.3519295"],["-124.0937646","44.3524334"],["-124.0936299","44.3530507"],["-124.0934847","44.3537118"],["-124.0933346","44.3544147"],["-124.0931833","44.3550622"],["-124.0930293","44.355754"],["-124.0928428","44.3566513"],["-124.0925074","44.3582225"],["-124.0923792","44.3588174"],["-124.09213","44.360031"],["-124.0920872","44.3603475"],["-124.0919588","44.3609121"],["-124.0918204","44.3615549"],["-124.0915606","44.3627156"],["-124.0911457","44.3645737"],["-124.0907827","44.3662361"],["-124.0903102","44.3683515"],["-124.0900048","44.3697727"],["-124.0879778","44.3791397"],["-124.0879398","44.3800011"],["-124.0880741","44.3814396"],["-124.0882468","44.3827759"],["-124.0884692","44.3843976"],["-124.0886672","44.3858705"],["-124.0886214","44.3864701"],["-124.0884776","44.3870521"],["-124.0873441","44.3902552"],["-124.0868578","44.3914629"],["-124.0864722","44.3922666"],["-124.0863951","44.392564"],["-124.0863328","44.3928713"],["-124.0863156","44.3932715"],["-124.0862958","44.3937506"],["-124.0862497","44.3943566"],["-124.086116","44.3963381"],["-124.0860547","44.3971383"],["-124.0860454","44.3973912"],["-124.0860212","44.3977493"],["-124.0860231","44.3978581"],["-124.0860178","44.398008"],["-124.0859581","44.3987074"],["-124.0859197","44.3995002"],["-124.0858692","44.4001046"],["-124.085785","44.4011947"],["-124.0856913","44.4021153"],["-124.0856373","44.4024928"],["-124.0853067","44.4044156"],["-124.0849431","44.4064337"],["-124.0848163","44.4073177"],["-124.084572","44.4086285"],["-124.0844766","44.4091238"],["-124.0842991","44.4100664"],["-124.0841254","44.4109684"],["-124.0839684","44.4117267"],["-124.0837303","44.4125103"],["-124.0831892","44.4134927"],["-124.0827556","44.4141747"],["-124.082436","44.4145734"],["-124.0820504","44.4149617"],["-124.0816515","44.4153358"],["-124.0811936","44.4157063"],["-124.07798","44.418607"],["-124.0777159","44.4188475"],["-124.0775583","44.4189718"],["-124.076888","44.4195429"],["-124.0762518","44.419981"],["-124.0752982","44.4205749"],["-124.0728392","44.4220251"],["-124.072253","44.4223947"],["-124.0717635","44.422725"],["-124.0713482","44.4230439"],["-124.0709187","44.423393"],["-124.0705853","44.4236308"],["-124.0702561","44.4238211"],["-124.0699009","44.4239877"],["-124.0695735","44.4240952"],["-124.0692297","44.4242122"],["-124.0688916","44.4243618"],["-124.0685899","44.4245286"],["-124.0682988","44.4247299"],["-124.0680537","44.4249412"],["-124.0678487","44.4251616"],["-124.0676538","44.4254308"],["-124.0675175","44.4256833"],["-124.0674101","44.4259623"],["-124.0673371","44.4260478"],["-124.0672997","44.4261801"],["-124.0672623","44.4263511"],["-124.0672142","44.4266132"],["-124.0671804","44.4268645"],["-124.0672066","44.4269945"],["-124.0671939","44.4271833"],["-124.0671766","44.4273848"],["-124.0671292","44.4275088"],["-124.0671252","44.4276701"],["-124.0671358","44.4278004"],["-124.0671561","44.4279397"],["-124.0671925","44.4281171"],["-124.0672589","44.428321"],["-124.0673507","44.4284553"],["-124.0675246","44.428827"],["-124.067689","44.4291034"],["-124.0678841","44.4293737"],["-124.068135","44.4296737"],["-124.068745","44.4302813"],["-124.0734687","44.4346455"],["-124.0739667","44.4351207"],["-124.0741299","44.4352802"],["-124.0743406","44.435503"],["-124.0745779","44.4358437"],["-124.0747929","44.4362501"],["-124.0749456","44.4366478"],["-124.0750469","44.4371348"],["-124.0750487","44.4376042"],["-124.0750371","44.4379833"],["-124.0743915","44.4435091"],["-124.0738242","44.4488093"],["-124.0736027","44.4505134"],["-124.0735474","44.4512653"],["-124.073555","44.4518256"],["-124.0737096","44.4530309"],["-124.0738403","44.4535513"],["-124.0741253","44.4543885"],["-124.0750829","44.4569764"],["-124.0794405","44.4687763"],["-124.0797703","44.4704274"],["-124.0798322","44.4714181"],["-124.0798373","44.4717999"],["-124.0798239","44.4723962"],["-124.079683","44.4743798"],["-124.0795776","44.4754401"],["-124.0794657","44.4771447"],["-124.0794122","44.4779366"],["-124.0794194","44.4783317"],["-124.0794681","44.4786234"],["-124.0796811","44.4792318"],["-124.0809874","44.4827344"],["-124.0815463","44.4842594"],["-124.0827989","44.4876951"],["-124.082983","44.4883892"],["-124.0831447","44.4890825"],["-124.0832651","44.4897638"],["-124.0832965","44.4905524"],["-124.0832187","44.4936125"],["-124.0831542","44.4948091"],["-124.0830694","44.4954864"],["-124.0829581","44.4961748"],["-124.0827378","44.4970764"],["-124.0819595","44.4994054"],["-124.0818248","44.4998609"],["-124.0816874","44.5004342"],["-124.0804981","44.506164"],["-124.0799157","44.5087956"],["-124.0797532","44.5094402"],["-124.0795477","44.5099848"],["-124.0786827","44.512002"],["-124.0774868","44.5146164"],["-124.0766274","44.5165348"],["-124.0760043","44.5179839"],["-124.0758704","44.5182585"],["-124.0757376","44.5184748"],["-124.0755583","44.5186682"],["-124.07533","44.5188593"],["-124.0749706","44.5190674"],["-124.0745983","44.5192408"],["-124.0743272","44.5193197"],["-124.0740338","44.5193616"],["-124.07347","44.5193708"],["-124.0726213","44.5193622"],["-124.0721953","44.5193874"],["-124.0718325","44.5194523"],["-124.0714613","44.5195781"],["-124.0710044","44.5197833"],["-124.0706356","44.5200273"],["-124.0704068","44.5202717"],["-124.0702332","44.520503"],["-124.0701058","44.5207486"],["-124.0700193","44.5209498"],["-124.0699718","44.5211689"],["-124.0699635","44.5214423"],["-124.0699928","44.5217288"],["-124.0701333","44.5220388"],["-124.0704018","44.5223963"],["-124.0707545","44.5227079"],["-124.0712548","44.5230004"],["-124.0718987","44.5232844"],["-124.0725785","44.5235963"],["-124.0731439","44.5239409"],["-124.0735435","44.524234"],["-124.0739004","44.5245199"],["-124.0741757","44.5248595"],["-124.074602","44.5254735"],["-124.0748013","44.5258276"],["-124.0749792","44.5264408"],["-124.0750319","44.5267645"],["-124.0750558","44.5271418"],["-124.0748493","44.5308834"],["-124.074586","44.5339473"],["-124.0742598","44.5369116"],["-124.0738545","44.5405172"],["-124.0731361","44.545402"],["-124.072883","44.5470119"],["-124.0725155","44.5493949"],["-124.0720574","44.5524535"],["-124.0716872","44.5549054"],["-124.0711939","44.5571488"],["-124.0704109","44.5602327"],["-124.0699389","44.562102"],["-124.0689283","44.5662047"],["-124.0687052","44.5670945"],["-124.0681398","44.5692639"],["-124.0680548","44.5695678"],["-124.0679169","44.5700775"],["-124.0673784","44.5721464"],["-124.0663937","44.5746563"],["-124.066107","44.5753998"],["-124.0659843","44.5758472"],["-124.0659221","44.5762756"],["-124.0658836","44.5776875"],["-124.0658599","44.5782409"],["-124.0658317","44.5785528"],["-124.065771","44.578865"],["-124.0657043","44.5791596"],["-124.0656315","44.5794237"],["-124.0654805","44.5798657"],["-124.0652115","44.5805957"],["-124.0650854","44.5809757"],["-124.0650054","44.5812602"],["-124.0649409","44.5815547"],["-124.0648763","44.5818851"],["-124.0648039","44.5823339"],["-124.0644695","44.5848613"],["-124.0642275","44.5867335"],["-124.0640719","44.5879773"],["-124.0640745","44.5881763"],["-124.0640861","44.5883379"],["-124.064109","44.588489"],["-124.0641479","44.588647"],["-124.0641926","44.5887833"],["-124.0642485","44.5889442"],["-124.0643094","44.5891015"],["-124.064363","44.5892588"],["-124.0644019","44.5894068"],["-124.0644292","44.58956"],["-124.064452","44.5897597"],["-124.0644577","44.5899493"],["-124.0644566","44.5901722"],["-124.0644272","44.5903762"],["-124.0643737","44.5905959"],["-124.0643078","44.5907906"],["-124.0642546","44.590918"],["-124.0640625","44.5912398"],["-124.063535","44.5919901"],["-124.0632593","44.5924035"],["-124.0625511","44.5934957"],["-124.0538292","44.6067935"],["-124.0533969","44.60747"],["-124.0522493","44.6091978"],["-124.0510296","44.6110989"],["-124.0508308","44.6114996"],["-124.0506739","44.6118184"],["-124.0506019","44.6119898"],["-124.0505312","44.6121689"],["-124.0503806","44.6126249"],["-124.0502882","44.6129587"],["-124.0502561","44.6130889"],["-124.0502194","44.6132372"],["-124.0501799","44.6134086"],["-124.0501578","44.6136122"],["-124.0501467","44.6138306"],["-124.0501434","44.6142223"],["-124.0501529","44.6146455"],["-124.0502463","44.615106"],["-124.0503677","44.6155671"],["-124.0504638","44.6158894"],["-124.0505763","44.6162003"],["-124.050716","44.6164938"],["-124.051116","44.6171947"],["-124.0513695","44.6175603"],["-124.0515966","44.6178519"],["-124.0518191","44.6181004"],["-124.0522591","44.6185523"],["-124.0579975","44.623555"],["-124.0596142","44.6249663"],["-124.0598784","44.6251942"],["-124.0601686","44.6254507"],["-124.0605143","44.6257848"],["-124.0605613","44.6258408"],["-124.0606146","44.6258997"],["-124.0607805","44.6261011"],["-124.0609102","44.62627"],["-124.0612","44.6267391"],["-124.0613148","44.6269613"],["-124.0614442","44.6272568"],["-124.0615615","44.6278636"],["-124.0615815","44.6280594"],["-124.0615888","44.6283758"],["-124.0615849","44.6285579"],["-124.0615728","44.628671"],["-124.0615431","44.6288728"],["-124.0615245","44.6289848"],["-124.0614744","44.6291769"],["-124.0614171","44.6293536"],["-124.061349","44.6295085"],["-124.0612551","44.6297267"],["-124.0611414","44.6299491"],["-124.0610137","44.6301765"],["-124.0608184","44.6304409"],["-124.0606258","44.630671"],["-124.0604711","44.6308488"],["-124.0603266","44.6309956"],["-124.0601629","44.6311472"],["-124.0597622","44.6314551"],["-124.0593943","44.631695"],["-124.059129","44.6318553"],["-124.0555034","44.6338091"],["-124.054346","44.6344519"],["-124.0542193","44.6345293"],["-124.0540753","44.6346214"],["-124.053926","44.6347403"],["-124.0537517","44.6349067"],["-124.0536509","44.6350269"],["-124.0534677","44.6352579"],["-124.0533459","44.6354521"],["-124.0533127","44.6355155"],["-124.0531733","44.6358798"],["-124.0531229","44.6361952"],["-124.0530984","44.6372267"],["-124.0530902","44.6383647"],["-124.0530899","44.6384398"],["-124.0530481","44.6447945"],["-124.0530474","44.6449694"],["-124.0530366","44.6464427"],["-124.0530362","44.6467779"],["-124.0530362","44.6470711"],["-124.0530327","44.6473164"],["-124.0530307","44.6475516"],["-124.0530266","44.6482713"],["-124.0530284","44.6483705"],["-124.0530251","44.648627"],["-124.0530248","44.6486998"],["-124.0530221","44.6490335"],["-124.0530206","44.6509356"],["-124.053006","44.651521"],["-124.053006","44.6528407"],["-124.05301","44.655201"],["-124.0530377","44.6557327"],["-124.0531325","44.6565338"],["-124.0532597","44.6574449"],["-124.0533556","44.6579843"],["-124.0536825","44.6593303"],["-124.0539484","44.6600455"],["-124.0542148","44.660727"],["-124.0558345","44.6645591"],["-124.0563231","44.6656926"],["-124.0570596","44.6674174"],["-124.0573538","44.6681571"],["-124.0575338","44.6685773"],["-124.0579182","44.6694821"],["-124.0581668","44.6700471"],["-124.0585033","44.6708572"],["-124.0593705","44.6729612"],["-124.0609573","44.6767396"],["-124.0615832","44.6781659"],["-124.0619321","44.6789666"],["-124.0621106","44.6794096"],["-124.0622293","44.6797363"],["-124.0624023","44.6802114"],["-124.0625958","44.6807551"],["-124.063008","44.6821955"],["-124.0632689","44.6833244"],["-124.0633873","44.6839911"],["-124.0635305","44.6849948"],["-124.063586","44.6855116"],["-124.0636241","44.6860666"],["-124.0636458","44.6869057"],["-124.0636354","44.6876325"],["-124.0635793","44.6889643"],["-124.0634679","44.6899156"],["-124.0632109","44.6914652"],["-124.062983","44.6926962"],["-124.0627024","44.6941698"],["-124.0625308","44.6950404"],["-124.0624416","44.6955915"],["-124.0623861","44.696078"],["-124.062249","44.6969063"],["-124.0611518","44.7022382"],["-124.0610276","44.7029053"],["-124.0603049","44.7070408"],["-124.0602502","44.707849"],["-124.0601558","44.7084659"],["-124.0600749","44.7087021"],["-124.0599646","44.7089386"],["-124.0598551","44.7092273"],["-124.0594001","44.7101806"],["-124.058861","44.7115272"],["-124.0585748","44.7124659"],["-124.0584482","44.7130126"],["-124.0583685","44.7134425"],["-124.0582397","44.714426"],["-124.0581935","44.7152106"],["-124.0581896","44.7156975"],["-124.0582895","44.7172041"],["-124.058384","44.7188916"],["-124.058446","44.7200954"],["-124.058452","44.7217999"],["-124.0584081","44.7229795"],["-124.0582227","44.7243117"],["-124.0580288","44.7253174"],["-124.0576395","44.7271433"],["-124.0574801","44.728007"],["-124.0572261","44.7297908"],["-124.0571263","44.7308559"],["-124.0570225","44.7318685"],["-124.0562795","44.7377911"],["-124.0562563","44.7381036"],["-124.0562537","44.7385203"],["-124.0562286","44.7388283"],["-124.0561901","44.739099"],["-124.0561261","44.7395646"],["-124.0559721","44.7407176"],["-124.0558212","44.7413981"],["-124.0556968","44.7418006"],["-124.0555839","44.742097"],["-124.0553806","44.742503"],["-124.0551787","44.742844"],["-124.0549704","44.7431394"],["-124.0547021","44.7434543"],["-124.0543186","44.7438477"],["-124.0537388","44.744402"],["-124.0530659","44.7450451"],["-124.0526609","44.745452"],["-124.0523928","44.7457471"],["-124.0521044","44.7461673"],["-124.0518606","44.7465916"],["-124.0516346","44.747033"],["-124.051481","44.7474098"],["-124.0514106","44.747663"],["-124.051366","44.7479303"],["-124.0513466","44.7484931"],["-124.0513635","44.7488441"],["-124.0514591","44.7492947"],["-124.0516216","44.749768"],["-124.0518235","44.7502047"],["-124.0520456","44.7505958"],["-124.052331","44.751037"],["-124.0525765","44.7513369"],["-124.0528466","44.7516287"],["-124.0532294","44.7519707"],["-124.0536125","44.7522552"],["-124.0539933","44.7524907"],["-124.0544424","44.7527537"],["-124.0561707","44.7535756"],["-124.0573564","44.7541231"],["-124.0585772","44.7546858"],["-124.0589557","44.7548961"],["-124.0592063","44.7550616"],["-124.0594599","44.7552799"],["-124.059595","44.7554161"],["-124.0597025","44.7555703"],["-124.0598037","44.755738"],["-124.0598963","44.7559395"],["-124.0599556","44.7561682"],["-124.0600059","44.7564468"],["-124.0600237","44.7569999"],["-124.0600397","44.7577294"],["-124.0600762","44.7579733"],["-124.0601543","44.7581947"],["-124.0602787","44.7584474"],["-124.0604249","44.7586478"],["-124.0606009","44.7588113"],["-124.0608525","44.7590015"],["-124.0612712","44.7592404"],["-124.061834","44.7595338"],["-124.0621598","44.7597142"],["-124.0623362","44.7598231"],["-124.0624552","44.7599045"],["-124.0625691","44.7599919"],["-124.0626681","44.760077"],["-124.0627902","44.7602152"],["-124.0628729","44.7603157"],["-124.0629481","44.7604376"],["-124.0630379","44.7606342"],["-124.0631053","44.7608626"],["-124.0631274","44.761046"],["-124.0631193","44.7612569"],["-124.0630346","44.7616319"],["-124.0629194","44.7621035"],["-124.0628456","44.7624946"],["-124.0628286","44.7627445"],["-124.0628329","44.7630078"],["-124.0628642","44.7632386"],["-124.0629063","44.7634449"],["-124.0629675","44.7636402"],["-124.0630646","44.7638578"],["-124.0631937","44.7640766"],["-124.063354","44.7643106"],["-124.0643095","44.7656077"],["-124.065755","44.7676792"],["-124.0662719","44.7683373"],["-124.0665273","44.7686192"],["-124.0667874","44.7688957"],["-124.0670706","44.7691769"],["-124.0678592","44.7698776"],["-124.0701198","44.7718572"],["-124.0703607","44.7720977"],["-124.0706347","44.7723935"],["-124.0708652","44.7726636"],["-124.0710168","44.7728627"],["-124.071152","44.773071"],["-124.0712786","44.7732966"],["-124.0713806","44.7735044"],["-124.0714552","44.7736798"],["-124.0715226","44.7738974"],["-124.071573","44.7741145"],["-124.0715922","44.7743416"],["-124.0715963","44.7745412"],["-124.0715872","44.7747498"],["-124.0715536","44.7749521"],["-124.071507","44.775151"],["-124.0714503","44.7753361"],["-124.0712801","44.7756797"],["-124.071169","44.7758745"],["-124.0707074","44.7765821"],["-124.0705318","44.7768746"],["-124.0704026","44.7771538"],["-124.070312","44.7773938"],["-124.0702857","44.777492"],["-124.0702625","44.7776304"],["-124.0702443","44.7778641"],["-124.0702727","44.7781613"],["-124.0703346","44.7784188"],["-124.070464","44.7787108"],["-124.0706276","44.778972"],["-124.0708211","44.7792114"],["-124.0710425","44.7794489"],["-124.0712973","44.7796648"],["-124.0715369","44.779857"],["-124.072101","44.7803007"],["-124.0723038","44.7804803"],["-124.0724859","44.7806536"],["-124.0726284","44.7808063"],["-124.0727513","44.7809772"],["-124.0728315","44.7811325"],["-124.0728974","44.7813012"],["-124.0729469","44.7815168"],["-124.0729618","44.7816844"],["-124.0729648","44.7817854"],["-124.072956","44.7819243"],["-124.0729213","44.7821104"],["-124.0728417","44.7823475"],["-124.0725913","44.7829987"],["-124.0719201","44.7846637"],["-124.071618","44.7852915"],["-124.0713269","44.7857079"],["-124.0711435","44.7858914"],["-124.0709433","44.7860589"],["-124.070797","44.7861547"],["-124.0705325","44.786314"],["-124.0702632","44.786448"],["-124.0699822","44.7865499"],["-124.0696893","44.7866447"],["-124.0693333","44.7867171"],["-124.0689972","44.786773"],["-124.0679035","44.7869513"],["-124.0675709","44.7870186"],["-124.0672925","44.787091"],["-124.067065","44.7871836"],["-124.0668212","44.7873023"],["-124.0665984","44.7874417"],["-124.0664175","44.7875724"],["-124.0662576","44.787708"],["-124.0661388","44.7878376"],["-124.0660079","44.7879878"],["-124.0658957","44.7881483"],["-124.0657985","44.7883374"],["-124.0657424","44.7885092"],["-124.0657128","44.7887493"],["-124.0652599","44.7949561"],["-124.0651353","44.7963387"],["-124.0649792","44.7969694"],["-124.0648217","44.7974975"],["-124.0646298","44.7979997"],["-124.0642096","44.798688"],["-124.0637728","44.7994052"],["-124.0634577","44.7999655"],["-124.0632109","44.8004228"],["-124.0629285","44.8009652"],["-124.0626332","44.8014816"],["-124.0616929","44.8031709"],["-124.0612408","44.8040004"],["-124.0611223","44.8042564"],["-124.0610852","44.8043493"],["-124.0610625","44.804424"],["-124.0609984","44.8046837"],["-124.0609443","44.8051377"],["-124.0609521","44.8054373"],["-124.0609792","44.8057232"],["-124.0610285","44.8060045"],["-124.0610943","44.8063035"],["-124.0611371","44.8064571"],["-124.0612759","44.8070451"],["-124.0614345","44.8076895"],["-124.0617288","44.8091565"],["-124.0619702","44.8101311"],["-124.0620385","44.8103866"],["-124.0620784","44.8105063"],["-124.0622095","44.8111004"],["-124.0622713","44.8114547"],["-124.0623071","44.8116847"],["-124.0623244","44.8118651"],["-124.062378","44.8125513"],["-124.0624086","44.8134293"],["-124.0624112","44.8151622"],["-124.0624784","44.8157602"],["-124.0624894","44.8158432"],["-124.0625527","44.8161638"],["-124.0626085","44.8163937"],["-124.0627583","44.8169601"],["-124.0631047","44.8179942"],["-124.0631505","44.8181433"],["-124.0631732","44.8182152"],["-124.0633266","44.8186825"],["-124.06341","44.8189416"],["-124.0635192","44.8192994"],["-124.0637224","44.8198737"],["-124.0649557","44.8237294"],["-124.0655386","44.8254219"],["-124.0656962","44.8258875"],["-124.0657521","44.826086"],["-124.0658137","44.8263457"],["-124.0658455","44.8265725"],["-124.0658355","44.8268672"],["-124.0657941","44.8270472"],["-124.0657269","44.8272221"],["-124.0656205","44.8274186"],["-124.0654757","44.8276136"],["-124.0653212","44.8277899"],["-124.0651461","44.8279365"],["-124.0649849","44.8280416"],["-124.0647733","44.8281552"],["-124.0645782","44.8282477"],["-124.0644033","44.8283151"],["-124.0641724","44.8283894"],["-124.0639025","44.8284578"],["-124.0636695","44.8285003"],["-124.0632861","44.8285477"],["-124.0610422","44.8287764"],["-124.060151","44.8288764"],["-124.0597476","44.8289461"],["-124.0594686","44.8290139"],["-124.0591866","44.8290944"],["-124.0589042","44.8291968"],["-124.0586387","44.8293095"],["-124.0583898","44.8294399"],["-124.0581692","44.8295864"],["-124.0579366","44.8297425"],["-124.057701","44.8299678"],["-124.0574327","44.8302606"],["-124.0571983","44.8305526"],["-124.0566024","44.8313892"],["-124.0561034","44.8321041"],["-124.055216","44.833408"],["-124.0540881","44.8349366"],["-124.0533548","44.8359575"],["-124.0527391","44.8368196"],["-124.052156","44.8375795"],["-124.0507382","44.8395287"],["-124.0487029","44.8423593"],["-124.0483838","44.842786"],["-124.0482923","44.8429059"],["-124.0481099","44.8430736"],["-124.0479673","44.8432581"],["-124.0472437","44.8442854"],["-124.0468156","44.8450064"],["-124.0466578","44.8452993"],["-124.0466175","44.845516"],["-124.0464548","44.8458065"],["-124.0462845","44.8461118"],["-124.0459931","44.8466196"],["-124.0456813","44.8470636"],["-124.0440258","44.8500952"],["-124.0440309","44.8502323"],["-124.0433397","44.8514974"],["-124.0428381","44.8524078"],["-124.0427765","44.8525074"],["-124.0425444","44.852929"],["-124.0423096","44.8533536"],["-124.0418137","44.8542433"],["-124.0410428","44.8556499"],["-124.0407639","44.8561465"],["-124.039971","44.857638"],["-124.039331","44.8587681"],["-124.037663","44.861805"],["-124.0373529","44.8623861"],["-124.0368949","44.863251"],["-124.0367258","44.8636732"],["-124.0365233","44.8642667"],["-124.0336784","44.8745324"],["-124.0334091","44.8755452"],["-124.0327936","44.8777099"],["-124.0326257","44.8782575"],["-124.0325006","44.8786304"],["-124.03234","44.8790432"],["-124.0321049","44.8796359"],["-124.0318477","44.8802276"],["-124.031565","44.8808475"],["-124.030581","44.8826282"],["-124.0301883","44.8832463"],["-124.0289035","44.8850032"],["-124.0283391","44.8857409"],["-124.0278039","44.886364"],["-124.0275082","44.8866885"],["-124.0269362","44.8872774"],["-124.0254056","44.8887356"],["-124.0242738","44.8897153"],["-124.0230007","44.8906828"],["-124.02181","44.8915786"],["-124.0208071","44.8922833"],["-124.0205358","44.8924421"],["-124.0203026","44.892548"],["-124.0200363","44.8926564"],["-124.0196318","44.8927976"],["-124.0193334","44.8928806"],["-124.0150385","44.8939476"],["-124.0137528","44.8942407"],["-124.0119115","44.8946141"],["-124.0113593","44.8947374"],["-124.0109387","44.8948667"],["-124.0105275","44.8950243"],["-124.0101374","44.8952125"],["-124.0098161","44.8954056"],["-124.0093938","44.8957175"],["-124.0090312","44.8960456"],["-124.0087175","44.8963955"],["-124.0084709","44.8968096"],["-124.0082274","44.8974446"],["-124.0080995","44.8978778"],["-124.0050952","44.9123067"],["-124.0050298","44.9126411"],["-124.0049816","44.9129439"],["-124.0049691","44.913138"],["-124.0049625","44.9133597"],["-124.0049845","44.913614"],["-124.0050164","44.9138476"],["-124.0050757","44.9140981"],["-124.0051844","44.9143941"],["-124.0053009","44.9146781"],["-124.0054354","44.9148829"],["-124.0056335","44.9151509"],["-124.0059452","44.9155209"],["-124.0069096","44.9164074"],["-124.0105691","44.9196533"],["-124.0109473","44.9199723"],["-124.0112181","44.9201813"],["-124.0113158","44.9202512"],["-124.0117752","44.9205273"],["-124.0135093","44.921489"],["-124.013768","44.9216409"],["-124.0139411","44.9217507"],["-124.0140518","44.9218304"],["-124.0141535","44.921917"],["-124.014264","44.9220273"],["-124.0143745","44.922167"],["-124.014451","44.9222857"],["-124.0145079","44.922398"],["-124.014573","44.9225738"],["-124.0145936","44.9227205"],["-124.0146091","44.9231215"],["-124.0145849","44.9233443"],["-124.014525","44.9236397"],["-124.0144529","44.9238705"],["-124.0138953","44.9259264"],["-124.0138413","44.9261454"],["-124.0138135","44.926331"],["-124.0137904","44.9265406"],["-124.013778","44.9268034"],["-124.0137783","44.9270133"],["-124.0137536","44.9271583"],["-124.0137921","44.9273083"],["-124.01385","44.9274506"],["-124.0139451","44.9275354"],["-124.0139907","44.9276235"],["-124.0140656","44.9277491"],["-124.0141433","44.9278474"],["-124.0142128","44.9279182"],["-124.0142959","44.9280001"],["-124.0143806","44.9280695"],["-124.0144204","44.9281026"],["-124.0146103","44.9282352"],["-124.0147306","44.9283158"],["-124.0147993","44.9284128"],["-124.0151883","44.928638"],["-124.0153089","44.9286571"],["-124.0154814","44.9287563"],["-124.0156835","44.9288824"],["-124.0157358","44.9289639"],["-124.0164671","44.9294171"],["-124.0166023","44.9294445"],["-124.0167018","44.9295045"],["-124.0169367","44.9296496"],["-124.0175117","44.9299976"],["-124.0175916","44.9301075"],["-124.0178852","44.930281"],["-124.0179979","44.9302928"],["-124.0183928","44.9305347"],["-124.0188475","44.9308459"],["-124.0191105","44.9310452"],["-124.0193495","44.9312328"],["-124.0195829","44.9314344"],["-124.0198905","44.931719"],["-124.0201232","44.931955"],["-124.0204432","44.9322906"],["-124.0209999","44.9328888"],["-124.0213816","44.9332917"],["-124.0216063","44.9335259"],["-124.0219861","44.933916"],["-124.0220415","44.9339869"],["-124.022175","44.9341235"],["-124.0226214","44.934588"],["-124.0230388","44.9350503"],["-124.0232341","44.9352991"],["-124.0233133","44.9354277"],["-124.0233767","44.9355382"],["-124.0234733","44.9357906"],["-124.0235785","44.9360855"],["-124.023663","44.9364151"],["-124.0236727","44.9366987"],["-124.0236144","44.9369923"],["-124.0235187","44.9372376"],["-124.0234502","44.9373902"],["-124.02334","44.9376169"],["-124.0232192","44.9378029"],["-124.0230348","44.9380636"],["-124.0228358","44.9383268"],["-124.0223661","44.9388303"],["-124.022122","44.9390868"],["-124.0218578","44.9393698"],["-124.0217224","44.9395448"],["-124.0216168","44.9396964"],["-124.0215292","44.9398824"],["-124.0214552","44.9400746"],["-124.0213486","44.9404407"],["-124.0213009","44.9406742"],["-124.0212734","44.9408951"],["-124.0212536","44.9411124"],["-124.0212583","44.9417783"],["-124.0212512","44.9420733"],["-124.0211811","44.9424046"],["-124.0210737","44.9426732"],["-124.0209679","44.9428942"],["-124.0208954","44.9430217"],["-124.0207715","44.9431969"],["-124.0203497","44.9436158"],["-124.020099","44.9438546"],["-124.0185988","44.9452302"],["-124.0179476","44.9458794"],["-124.0174812","44.9463634"],["-124.016918","44.9469665"],["-124.0164673","44.947473"],["-124.0143553","44.950025"],["-124.0141789","44.9502624"],["-124.0140568","44.9504751"],["-124.0140047","44.9505894"],["-124.0139531","44.9507189"],["-124.0139086","44.9508593"],["-124.0138828","44.9509693"],["-124.0138438","44.9512253"],["-124.0138406","44.9513733"],["-124.0138562","44.951614"],["-124.0139968","44.953104"],["-124.0140178","44.9533694"],["-124.0140343","44.9535876"],["-124.0140404","44.953777"],["-124.0140382","44.9539186"],["-124.0140288","44.9541538"],["-124.0140134","44.9543853"],["-124.0139957","44.9545697"],["-124.0139769","44.9547318"],["-124.013955","44.9549105"],["-124.0139259","44.9551082"],["-124.0139026","44.9552505"],["-124.0137666","44.9561951"],["-124.0137305","44.9564325"],["-124.0136714","44.9568791"],["-124.0135945","44.9576121"],["-124.0135812","44.9578755"],["-124.0135801","44.9580197"],["-124.0135869","44.9582767"],["-124.0135968","44.9584222"],["-124.0136276","44.9586491"],["-124.01369","44.9589489"],["-124.0138373","44.9593794"],["-124.0139271","44.959624"],["-124.0141227","44.9600174"],["-124.0143277","44.9603826"],["-124.014497","44.9606443"],["-124.0146936","44.9609049"],["-124.0148896","44.9611217"],["-124.0151009","44.9613421"],["-124.0154114","44.9616378"],["-124.0155285","44.9617356"],["-124.0157562","44.9619082"],["-124.0161261","44.9621781"],["-124.0162242","44.9622457"],["-124.0163662","44.9623403"],["-124.016576","44.9624846"],["-124.0168052","44.9626436"],["-124.0169722","44.9627808"],["-124.0171168","44.9629258"],["-124.0172608","44.9631026"],["-124.0173715","44.9632835"],["-124.017435","44.9634171"],["-124.0174715","44.9635311"],["-124.0174966","44.9636173"],["-124.0175616","44.9639362"],["-124.0177192","44.964771"],["-124.0177559","44.9649766"],["-124.0178154","44.9653374"],["-124.0178294","44.9654667"],["-124.0178375","44.9655574"],["-124.0178309","44.9657013"],["-124.0178138","44.9658299"],["-124.0177912","44.9659628"],["-124.0177625","44.9660471"],["-124.0177193","44.9661602"],["-124.0176937","44.9662131"],["-124.0176118","44.9663647"],["-124.0175179","44.9665041"],["-124.0173154","44.9667387"],["-124.0171814","44.9668565"],["-124.0170555","44.9669532"],["-124.0167526","44.9671728"],["-124.0165231","44.9673468"],["-124.016284","44.96753"],["-124.0159574","44.9678237"],["-124.0158298","44.9679557"],["-124.0157374","44.968064"],["-124.0156533","44.9681964"],["-124.0155639","44.9683661"],["-124.0154778","44.9685453"],["-124.0154272","44.9686744"],["-124.015322","44.9689572"],["-124.0146367","44.9707382"],["-124.0145371","44.9710095"],["-124.0142367","44.9717812"],["-124.0141524","44.9719921"],["-124.0134623","44.9737695"],["-124.0133574","44.9740247"],["-124.0131962","44.9743964"],["-124.0130689","44.9746561"],["-124.0128671","44.9750301"],["-124.0127809","44.9751864"],["-124.0124247","44.9757704"],["-124.0123892","44.975831"],["-124.0123384","44.9759169"],["-124.011812","44.9768494"],["-124.0116552","44.9771233"],["-124.0113505","44.977643"],["-124.0112484","44.9778167"],["-124.0111545","44.9779783"],["-124.0111053","44.9780642"],["-124.0110895","44.9780876"],["-124.0109942","44.9781383"],["-124.010936","44.9782345"],["-124.0108661","44.9783571"],["-124.0108355","44.978423"],["-124.0108564","44.9785168"],["-124.0108133","44.9786001"],["-124.0107335","44.9787373"],["-124.0105317","44.9790913"],["-124.010421","44.9792547"],["-124.0102836","44.9793246"],["-124.0101722","44.9794503"],["-124.0101324","44.9794918"],["-124.0100793","44.9795433"],["-124.0100098","44.9796097"],["-124.009919","44.9796918"],["-124.0098102","44.9797822"],["-124.00959","44.9799848"],["-124.0095182","44.9800879"],["-124.0086594","44.9807026"],["-124.0084951","44.9808233"],["-124.0083794","44.9809115"],["-124.008124","44.981111"],["-124.0078951","44.9813374"],["-124.007756","44.981501"],["-124.0077055","44.9815774"],["-124.0076831","44.9816139"],["-124.0076529","44.9816591"],["-124.0076048","44.9817291"],["-124.0075202","44.9818448"],["-124.0074951","44.9818941"],["-124.007432","44.9820293"],["-124.007367","44.982231"],["-124.0073247","44.982372"],["-124.0073022","44.9824582"],["-124.0072724","44.9826824"],["-124.0072506","44.9830945"],["-124.0072496","44.9834394"],["-124.0072399","44.9839639"],["-124.0072388","44.9841697"],["-124.0072384","44.984245"],["-124.0072318","44.9845885"],["-124.0072242","44.9847097"],["-124.0072038","44.9849026"],["-124.0071794","44.9850411"],["-124.0071574","44.9851268"],["-124.0071114","44.9852599"],["-124.00708","44.985326"],["-124.0070387","44.9854143"],["-124.0070083","44.9854692"],["-124.0069508","44.9855674"],["-124.0064086","44.9864212"],["-124.0062446","44.986681"],["-124.0058034","44.9873926"],["-124.0056467","44.9876732"],["-124.0056149","44.9877449"],["-124.0055956","44.9878101"],["-124.0055711","44.9878913"],["-124.0055368","44.9880757"],["-124.0055289","44.9881724"],["-124.005528","44.988274"],["-124.0055351","44.9883945"],["-124.0055417","44.9884636"],["-124.0055559","44.9885563"],["-124.0055791","44.9886875"],["-124.0056351","44.9889385"],["-124.0057599","44.989447"],["-124.0058189","44.9897074"],["-124.0059699","44.9903423"],["-124.0061794","44.9912907"],["-124.0064079","44.992397"],["-124.006464","44.9926882"],["-124.0064875","44.9928813"],["-124.0065034","44.9930829"],["-124.0065016","44.9933099"],["-124.0064955","44.993441"],["-124.0064827","44.9935406"],["-124.006439","44.9937497"],["-124.006401","44.993881"],["-124.0063536","44.9940296"],["-124.0062849","44.9942212"],["-124.0062274","44.9943546"],["-124.0061717","44.9944582"],["-124.0061132","44.9945538"],["-124.0060206","44.994705"],["-124.0057945","44.994983"],["-124.005616","44.9951892"],["-124.0053948","44.9953951"],["-124.0050402","44.9956805"],["-124.0048935","44.9957719"],["-124.0044731","44.9960144"],["-124.0041308","44.99618"],["-124.0038348","44.9963176"],["-124.0029173","44.996687"],["-124.0026419","44.9967865"],["-124.0023515","44.9968813"],["-124.0018878","44.9970148"],["-124.0016421","44.9970729"],["-124.0013806","44.997127"],["-124.001136","44.9971613"],["-124.0008607","44.9971896"],["-124.000302","44.9972299"],["-123.9993839","44.9972648"],["-123.9991128","44.9972824"],["-123.9988664","44.9973003"],["-123.9986298","44.997321"],["-123.9984211","44.9973407"],["-123.9980782","44.9973839"],["-123.9978393","44.9974246"],["-123.9974645","44.9975034"],["-123.9973244","44.9975368"],["-123.9932166","44.998656"],["-123.9925163","44.9988583"],["-123.9922034","44.9989676"],["-123.9911883","44.9993835"],["-123.9886128","45.0005046"],["-123.9879285","45.0008423"],["-123.9876958","45.0009826"],["-123.9874615","45.0011367"],["-123.987269","45.0012899"],["-123.9868894","45.0016212"],["-123.9841963","45.0041506"],["-123.9839349","45.0043862"],["-123.9837944","45.0044911"],["-123.9836347","45.0046021"],["-123.983463","45.0047061"],["-123.9832985","45.0047901"],["-123.9831375","45.0048622"],["-123.982817","45.0049902"],["-123.9825094","45.0050924"],["-123.9819184","45.0052638"],["-123.9816906","45.0053326"],["-123.9812897","45.0054511"],["-123.9809065","45.0055914"],["-123.9805059","45.0057731"],["-123.9802535","45.0059277"],["-123.9800978","45.0060514"],["-123.9799648","45.0061644"],["-123.9798599","45.0062682"],["-123.9797624","45.0063791"],["-123.9796629","45.0065188"],["-123.9790654","45.007506"],["-123.9786754","45.0081974"],["-123.9781549","45.0091243"],["-123.9780063","45.0093803"],["-123.9779598","45.0094893"],["-123.9779195","45.0096062"],["-123.9778805","45.0097529"],["-123.9778641","45.009892"],["-123.9778572","45.0100354"],["-123.9778591","45.0101592"],["-123.9778806","45.010285"],["-123.97791","45.0104128"],["-123.977948","45.0105425"],["-123.9780249","45.010706"],["-123.9782638","45.0111303"],["-123.9785563","45.0116087"],["-123.978679","45.0118251"],["-123.9788089","45.0121037"],["-123.9788471","45.0122376"],["-123.9788817","45.0123688"],["-123.9788959","45.0124876"],["-123.9789037","45.0126183"],["-123.9788968","45.0127674"],["-123.9788693","45.0129074"],["-123.9788259","45.0130389"],["-123.9787648","45.0131845"],["-123.9786892","45.0133519"],["-123.9785734","45.0135282"],["-123.9784213","45.0137109"],["-123.9782246","45.0139215"],["-123.9778971","45.0142298"],["-123.9775611","45.0145239"],["-123.9772163","45.0148183"],["-123.9769065","45.0150073"],["-123.9767039","45.0151813"],["-123.9764943","45.0153745"],["-123.9762725","45.0155945"],["-123.9760541","45.0158383"],["-123.9758634","45.0160718"],["-123.9757079","45.0163098"],["-123.9755916","45.0165025"],["-123.9754462","45.0167976"],["-123.9753353","45.0170855"],["-123.9752461","45.0173571"],["-123.9746518","45.0192001"],["-123.9743713","45.0199764"],["-123.9741841","45.0203533"],["-123.9739971","45.020709"],["-123.9737177","45.0210717"],["-123.9734512","45.0213513"],["-123.9731009","45.02161"],["-123.972639","45.0218962"],["-123.9711489","45.0226581"],["-123.9602192","45.0275883"],["-123.9577423","45.0287437"],["-123.9570725","45.0291112"],["-123.9559703","45.0298572"],["-123.9555774","45.0301448"],["-123.9552092","45.0304544"],["-123.954509","45.0311077"],["-123.9539469","45.0316703"],["-123.9534644","45.0323196"],["-123.953017","45.0329778"],["-123.9526399","45.0336384"],["-123.9522521","45.0346137"],["-123.9519432","45.0356838"],["-123.9515616","45.0371497"],["-123.951175","45.0387246"],["-123.9510145","45.0395341"],["-123.9508737","45.0400181"],["-123.9507773","45.0405518"],["-123.9507822","45.0409778"],["-123.9509048","45.0414355"],["-123.9511529","45.041917"],["-123.9514304","45.0422672"],["-123.9519644","45.0427381"],["-123.95377","45.0440648"],["-123.9542883","45.04446"],["-123.95457","45.0447491"],["-123.9548223","45.045134"],["-123.9549657","45.0455124"],["-123.9550163","45.0458647"],["-123.954935","45.0462041"],["-123.95473","45.0466727"],["-123.9544209","45.0471502"],["-123.954093","45.0476988"],["-123.9538695","45.0482027"],["-123.9537395","45.0486078"],["-123.9536742","45.0489843"],["-123.9536686","45.0494988"],["-123.9538327","45.0505033"],["-123.9544718","45.0537861"],["-123.9546346","45.0548021"],["-123.9545904","45.0552676"],["-123.9544969","45.0557752"],["-123.9542586","45.0563165"],["-123.9540077","45.056756"],["-123.9536261","45.0572238"],["-123.953108","45.0577264"],["-123.9525298","45.0581433"],["-123.9519257","45.0584929"],["-123.9512001","45.0588026"],["-123.949727","45.0593254"],["-123.9491559","45.0596832"],["-123.9487672","45.0601566"],["-123.9486195","45.0606865"],["-123.9487265","45.0611971"],["-123.9491576","45.0625477"],["-123.94925","45.0631607"],["-123.949206","45.0637427"],["-123.9489757","45.0643847"],["-123.9484007","45.0657019"],["-123.9479095","45.0668837"],["-123.9475576","45.067632"],["-123.9472312","45.0683024"],["-123.9470733","45.0687661"],["-123.9470414","45.0692168"],["-123.9470988","45.069475"],["-123.9472863","45.0697679"],["-123.9481814","45.0707275"],["-123.9483719","45.0710483"],["-123.9484469","45.0713448"],["-123.9484062","45.0716334"],["-123.9482874","45.0719802"],["-123.9481222","45.0722743"],["-123.947816","45.0725944"],["-123.9474125","45.0728446"],["-123.9468461","45.0732324"],["-123.9464179","45.0736074"],["-123.9461626","45.0739765"],["-123.9460972","45.074321"],["-123.9461248","45.0747019"],["-123.9462504","45.0749831"],["-123.9464568","45.0752844"],["-123.9468042","45.0756141"],["-123.9477647","45.0762895"],["-123.9481476","45.0766253"],["-123.9484317","45.0769324"],["-123.9486357","45.0773352"],["-123.9487861","45.077784"],["-123.9489927","45.078703"],["-123.9491226","45.0791549"],["-123.949362","45.0795128"],["-123.9498004","45.0798546"],["-123.950271","45.0800744"],["-123.9509292","45.0802052"],["-123.95201","45.0802733"],["-123.9538349","45.080352"],["-123.9547589","45.0804245"],["-123.9552028","45.0805674"],["-123.9556213","45.0807609"],["-123.9560542","45.0811296"],["-123.9569924","45.0824531"],["-123.957393","45.0827505"],["-123.9578657","45.0829734"],["-123.9586441","45.0831828"],["-123.9601642","45.0834808"],["-123.9608529","45.083675"],["-123.9611979","45.0838012"],["-123.9615688","45.0839608"],["-123.9620576","45.0841993"],["-123.965463","45.0860767"],["-123.9674857","45.0872437"],["-123.969424","45.088442"],["-123.9703477","45.0891135"],["-123.972231","45.0905772"],["-123.9726891","45.0909659"],["-123.9733157","45.091564"],["-123.9769931","45.0953612"],["-123.9802199","45.0986631"],["-123.9816302","45.1001807"],["-123.9818491","45.1005576"],["-123.9819573","45.1009579"],["-123.9819684","45.1014412"],["-123.9818863","45.1018582"],["-123.9816582","45.1023137"],["-123.98136","45.1027749"],["-123.9808139","45.1034556"],["-123.9741295","45.1100478"],["-123.9720623","45.1120907"],["-123.9711359","45.1130189"],["-123.9706513","45.113561"],["-123.9703235","45.1139573"],["-123.9699595","45.1145875"],["-123.9689821","45.1166993"],["-123.968346","45.1180346"],["-123.9680552","45.1187078"],["-123.9679346","45.1191212"],["-123.9678713","45.119462"],["-123.9678358","45.1197405"],["-123.967853","45.1202083"],["-123.9678878","45.1205964"],["-123.9679636","45.1209665"],["-123.9680999","45.1213497"],["-123.968293","45.1218286"],["-123.9687989","45.1228101"],["-123.9694337","45.1240248"],["-123.9697683","45.1247184"],["-123.9699582","45.1251785"],["-123.9701554","45.1260802"],["-123.9701632","45.1264408"],["-123.9701165","45.1269197"],["-123.9699943","45.1275925"],["-123.9698317","45.1280294"],["-123.9695801","45.1284572"],["-123.9693367","45.1288183"],["-123.9688772","45.1294652"],["-123.9684964","45.1299614"],["-123.9681109","45.1304665"],["-123.9677882","45.1308875"],["-123.9675184","45.1312614"],["-123.9672747","45.1316552"],["-123.9670373","45.1321098"],["-123.9668525","45.1326415"],["-123.9666649","45.1332236"],["-123.9665678","45.1338335"],["-123.9665173","45.1344228"],["-123.966504","45.1349969"],["-123.9666014","45.1355838"],["-123.9667495","45.1361596"],["-123.966949","45.136717"],["-123.9673468","45.1376202"],["-123.9677074","45.1384041"],["-123.9687701","45.140619"],["-123.9689749","45.1410453"],["-123.9691113","45.1413821"],["-123.9692091","45.1416887"],["-123.9693033","45.1420736"],["-123.969338","45.1424616"],["-123.969335","45.1427721"],["-123.9693124","45.1430747"],["-123.9692734","45.1432557"],["-123.969166","45.143541"],["-123.9690094","45.1439121"],["-123.9687996","45.1442434"],["-123.968577","45.1445636"],["-123.9683036","45.1448991"],["-123.9679829","45.145198"],["-123.9676036","45.1454949"],["-123.9671373","45.145756"],["-123.9663471","45.1461084"],["-123.9654345","45.1464623"],["-123.9628886","45.1473692"],["-123.961347","45.1479074"],["-123.960206","45.1483288"],["-123.9595611","45.1486086"],["-123.9590757","45.1488643"],["-123.9585718","45.1491617"],["-123.9578502","45.1497275"],["-123.9573847","45.1501486"],["-123.9569805","45.1506027"],["-123.9565199","45.1512972"],["-123.9561157","45.152043"],["-123.9557622","45.1526885"],["-123.9553511","45.1533897"],["-123.955043","45.1538274"],["-123.9547342","45.154229"],["-123.95449","45.1545292"],["-123.9542183","45.1548235"],["-123.9539804","45.1550754"],["-123.9537888","45.1552723"],["-123.9533867","45.1556448"],["-123.9528487","45.1561141"],["-123.9518881","45.1567984"],["-123.9509477","45.1573673"],["-123.9503388","45.1576804"],["-123.9497233","45.157976"],["-123.9490008","45.1582865"],["-123.9481758","45.1586124"],["-123.9474177","45.1588607"],["-123.946636","45.1590799"],["-123.9454247","45.1593719"],["-123.9356957","45.1616426"],["-123.9349811","45.1618519"],["-123.9342729","45.1621164"],["-123.9337503","45.1623702"],["-123.9333884","45.1625925"],["-123.9330201","45.1628388"],["-123.9326748","45.1631178"],["-123.9323476","45.1634339"],["-123.9320625","45.1637461"],["-123.9317404","45.1641945"],["-123.9315178","45.1646218"],["-123.9313792","45.16504"],["-123.9312782","45.1654218"],["-123.9310179","45.1666529"],["-123.9298035","45.1726945"],["-123.9295443","45.1738174"],["-123.9294297","45.1741939"],["-123.9293155","45.1744985"],["-123.9291683","45.1748026"],["-123.9289891","45.1751032"],["-123.9287282","45.1754295"],["-123.9284455","45.1757351"],["-123.926578","45.177638"],["-123.9261196","45.1780603"],["-123.9258539","45.178282"],["-123.9256619","45.1784177"],["-123.9254192","45.1785209"],["-123.925119","45.1786235"],["-123.9248222","45.178687"],["-123.9236153","45.1788459"],["-123.9232581","45.1789208"],["-123.9229912","45.1790436"],["-123.9228049","45.1792001"],["-123.9225483","45.1794933"],["-123.9223605","45.1796923"],["-123.9220972","45.1798833"],["-123.9211273","45.1804997"],["-123.9207723","45.1807495"],["-123.92064","45.1808807"],["-123.9205138","45.1810586"],["-123.920427","45.1812427"],["-123.9203313","45.1816463"],["-123.9201433","45.182554"],["-123.9199785","45.1833389"],["-123.919901","45.1836333"],["-123.9197997","45.1837785"],["-123.9196626","45.183948"],["-123.9195168","45.1840733"],["-123.9192681","45.1842213"],["-123.9190771","45.1843076"],["-123.918876","45.1843677"],["-123.9186857","45.1844026"],["-123.9180041","45.1844256"],["-123.9124227","45.1843104"],["-123.9120563","45.1843277"],["-123.9117031","45.1843569"],["-123.9111944","45.1844829"],["-123.9105263","45.1846627"],["-123.9098243","45.1849004"],["-123.9095533","45.1850294"],["-123.9092462","45.1852148"],["-123.908578","45.18568"],["-123.9023838","45.1901278"],["-123.9012242","45.1910556"],["-123.8987157","45.1932525"],["-123.8982034","45.1937101"],["-123.8976872","45.1941049"],["-123.8969363","45.1946699"],["-123.8965038","45.1950372"],["-123.8962707","45.1953454"],["-123.8961486","45.1956409"],["-123.8960723","45.1959968"],["-123.8959416","45.1967029"],["-123.8956859","45.198036"],["-123.8955693","45.1983649"],["-123.8951279","45.1992423"],["-123.8949863","45.199485"],["-123.8948742","45.1996502"],["-123.8947189","45.1997904"],["-123.8945097","45.1999277"],["-123.8940444","45.2001801"],["-123.893678","45.200392"],["-123.8933327","45.2006042"],["-123.8930914","45.2008226"],["-123.8926555","45.2014012"],["-123.8923569","45.2017048"],["-123.8920485","45.201949"],["-123.8916899","45.2022092"],["-123.8914743","45.2023917"],["-123.8912143","45.2027078"],["-123.891042","45.2030304"],["-123.8909531","45.2032915"],["-123.8908779","45.2035729"],["-123.8908604","45.2038392"],["-123.8908829","45.2040899"],["-123.890907","45.2043196"],["-123.8908964","45.2045975"],["-123.8908189","45.2051097"],["-123.8906968","45.2056341"],["-123.8906503","45.205876"],["-123.8905987","45.2060442"],["-123.8905274","45.2061825"],["-123.8903998","45.2062746"],["-123.8901831","45.2063712"],["-123.8898699","45.2064755"],["-123.8895051","45.2066063"],["-123.8891775","45.2067126"],["-123.8888894","45.2067766"],["-123.8885719","45.2068249"],["-123.8882347","45.2068755"],["-123.8878792","45.206931"],["-123.8875677","45.2070255"],["-123.8871094","45.2072561"],["-123.8868753","45.2073725"],["-123.8866597","45.2074683"],["-123.8864074","45.2075743"],["-123.8859239","45.2077378"],["-123.885619","45.2078252"],["-123.8852298","45.2079261"],["-123.8849041","45.2080004"],["-123.8845682","45.2080646"],["-123.8841931","45.2081263"],["-123.8838508","45.2081807"],["-123.8835416","45.2082415"],["-123.8832264","45.20832"],["-123.882887","45.2084212"],["-123.8825786","45.2085387"],["-123.8822731","45.2086698"],["-123.8819869","45.2088083"],["-123.8817145","45.208971"],["-123.8813792","45.2092115"],["-123.8810908","45.2094093"],["-123.8808312","45.2095585"],["-123.8800115","45.2099691"],["-123.8796052","45.2102167"],["-123.8792398","45.2105083"],["-123.8787932","45.2109565"],["-123.8783681","45.2114508"],["-123.8782108","45.2116582"],["-123.8779978","45.2118599"],["-123.8777273","45.2120323"],["-123.8773755","45.212204"],["-123.877059","45.2123611"],["-123.8767763","45.2125928"],["-123.8765878","45.2128833"],["-123.8764226","45.2132154"],["-123.8762698","45.2135797"],["-123.876108","45.2139873"],["-123.8760461","45.2143413"],["-123.8760292","45.2147049"],["-123.8760475","45.2150406"],["-123.8760954","45.2154116"],["-123.8761475","45.2156516"],["-123.8762273","45.215858"],["-123.8763295","45.216063"],["-123.8764253","45.2162483"],["-123.8764897","45.2164048"],["-123.8765014","45.2165177"],["-123.876479","45.2166284"],["-123.8764196","45.2167351"],["-123.876316","45.216856"],["-123.8761587","45.2169767"],["-123.8757617","45.2173759"],["-123.8755812","45.2175962"],["-123.8754268","45.2178076"],["-123.8753049","45.2180292"],["-123.8751973","45.2182497"],["-123.8751434","45.2184433"],["-123.8751101","45.2186542"],["-123.8751713","45.2202811"],["-123.8752264","45.2209689"],["-123.8752656","45.2212547"],["-123.8753627","45.2218926"],["-123.8753778","45.2221925"],["-123.8753887","45.2225018"],["-123.8753808","45.2227317"],["-123.8753559","45.2229403"],["-123.8753018","45.2230923"],["-123.8751977","45.2232545"],["-123.8749927","45.2234707"],["-123.8747655","45.2236611"],["-123.8745596","45.2238305"],["-123.8743505","45.2240121"],["-123.8741661","45.2241762"],["-123.8739897","45.2243565"],["-123.8729289","45.2256177"],["-123.8726661","45.2259855"],["-123.8724866","45.2263198"],["-123.8724086","45.2265987"],["-123.8723653","45.2268189"],["-123.8723061","45.2272181"],["-123.8722178","45.2278538"],["-123.872126","45.22822"],["-123.8719733","45.2285264"],["-123.8717831","45.2287449"],["-123.8715283","45.2289085"],["-123.8712686","45.2290302"],["-123.8709702","45.2291191"],["-123.8705576","45.229175"],["-123.8700553","45.2291823"],["-123.8693221","45.2291714"],["-123.8687809","45.229173"],["-123.8680604","45.2292237"],["-123.8676644","45.2292594"],["-123.8672983","45.2292833"],["-123.8669982","45.229283"],["-123.866642","45.2292523"],["-123.8662423","45.2292084"],["-123.8651536","45.229064"],["-123.8645765","45.2289965"],["-123.8641832","45.2289689"],["-123.8638727","45.2289791"],["-123.8636627","45.229023"],["-123.8633869","45.2291287"],["-123.8628518","45.2293586"],["-123.8624051","45.2295671"],["-123.8620887","45.2297316"],["-123.8617507","45.2299397"],["-123.8615123","45.2300985"],["-123.8613351","45.2302531"],["-123.8612431","45.2303865"],["-123.8612657","45.230537"],["-123.8613494","45.2306963"],["-123.8615513","45.2308838"],["-123.8617202","45.231102"],["-123.8625411","45.2325782"],["-123.8631996","45.2339022"],["-123.8635148","45.2345297"],["-123.8637769","45.2350263"],["-123.8639574","45.235313"],["-123.8641448","45.2355415"],["-123.8644004","45.2358202"],["-123.8649282","45.2363504"],["-123.8652408","45.236732"],["-123.8654449","45.2370989"],["-123.8655332","45.2374542"],["-123.8655254","45.2377791"],["-123.8654491","45.2380796"],["-123.8652899","45.2384101"],["-123.8650518","45.2387172"],["-123.8630609","45.2403749"],["-123.8620894","45.2411863"],["-123.8583258","45.2442876"],["-123.8578442","45.2446118"],["-123.8575324","45.2447965"],["-123.8577263","45.2448845"],["-123.858943","45.244946"],["-123.8614824","45.2449783"],["-123.8622305","45.2448748"],["-123.8630953","45.2446286"],["-123.8644184","45.2443985"],["-123.8655297","45.2441147"],["-123.8669092","45.243588"],["-123.8677968","45.243088"],["-123.8685498","45.2421384"],["-123.8712775","45.2392047"],["-123.8722655","45.2387556"],["-123.875629","45.2385669"],["-123.8766339","45.2384996"],["-123.8756767","45.2385642"],["-123.8722638","45.2387558"],["-123.8712601","45.2392219"],["-123.8687724","45.2419002"],["-123.8677974","45.2430874"],["-123.8669049","45.2435901"],["-123.8655273","45.2441153"],["-123.8644287","45.2443963"],["-123.8631119","45.244625"],["-123.8622192","45.2448775"],["-123.8614858","45.244978"],["-123.8588994","45.244945"],["-123.857735","45.2448856"],["-123.8575025","45.2448059"],["-123.8571868","45.244828"],["-123.8568247","45.2448241"],["-123.8565756","45.244805"],["-123.8544492","45.2446144"],["-123.8538428","45.2445892"],["-123.8532919","45.2445868"],["-123.8528076","45.2446195"],["-123.8523436","45.2446983"],["-123.8519253","45.2448216"],["-123.8513028","45.2450744"],["-123.8508511","45.2452765"],["-123.850501","45.2454932"],["-123.8497981","45.2460502"],["-123.8487273","45.2469502"],["-123.8484455","45.2472572"],["-123.848307","45.2475842"],["-123.8482574","45.2478892"],["-123.8483316","45.2482776"],["-123.8484026","45.2486185"],["-123.8484494","45.2489691"],["-123.8484496","45.2492427"],["-123.8483495","45.2496618"],["-123.8481241","45.2505406"],["-123.848083","45.2507998"],["-123.8480994","45.2510202"],["-123.8481466","45.2513006"],["-123.8481963","45.2515849"],["-123.848232","45.2518842"],["-123.8482426","45.2524332"],["-123.8481994","45.2547137"],["-123.84821","45.255267"],["-123.8482461","45.2555474"],["-123.8483269","45.2558394"],["-123.8489127","45.2574246"],["-123.8490041","45.2578177"],["-123.8490608","45.2582235"],["-123.8490939","45.2588061"],["-123.8491199","45.2597488"],["-123.8491736","45.2602921"],["-123.849295","45.2606888"],["-123.8494542","45.2610514"],["-123.8496039","45.2613569"],["-123.8496817","45.2616311"],["-123.8496884","45.2626694"],["-123.8496822","45.2642965"],["-123.8496452","45.2649195"],["-123.8495181","45.2653568"],["-123.8492829","45.2659489"],["-123.8491047","45.2664271"],["-123.8488292","45.2668879"],["-123.848286","45.2676123"],["-123.848","45.2679119"],["-123.8476954","45.2680804"],["-123.8472978","45.2682367"],["-123.8468016","45.2684003"],["-123.8463315","45.2685347"],["-123.8458842","45.2686453"],["-123.8454492","45.2687218"],["-123.8450827","45.2687421"],["-123.8447058","45.2687335"],["-123.841211","45.2682487"],["-123.8395544","45.2679862"],["-123.838967","45.2679112"],["-123.8384654","45.2679245"],["-123.8380613","45.2679988"],["-123.8376599","45.2681337"],["-123.8373276","45.2683108"],["-123.8358562","45.2693168"],["-123.8355182","45.2696134"],["-123.8353682","45.2698863"],["-123.8353627","45.270273"],["-123.835419","45.2707762"],["-123.835521","45.2711812"],["-123.8355637","45.2715831"],["-123.8355361","45.2719555"],["-123.8354407","45.2722986"],["-123.8353343","45.272652"],["-123.8351762","45.2729686"],["-123.8349837","45.2732649"],["-123.8347646","45.2735542"],["-123.8345055","45.2738184"],["-123.834201","45.2740332"],["-123.8338164","45.2742225"],["-123.8331514","45.2745257"],["-123.8323766","45.274867"],["-123.8318391","45.2751304"],["-123.8315956","45.2753578"],["-123.8313364","45.2757597"],["-123.831114","45.2761171"],["-123.8309033","45.2763628"],["-123.8306773","45.2765645"],["-123.830456","45.2767015"],["-123.8299738","45.2769168"],["-123.8297929","45.2769641"],["-123.8294998","45.277032"],["-123.829261","45.2770745"],["-123.8289613","45.2770812"],["-123.827869","45.2770631"],["-123.8275691","45.2770646"],["-123.8265346","45.2770674"],["-123.8263515","45.2770909"],["-123.8262362","45.2771284"],["-123.8259471","45.2773748"],["-123.8256616","45.2777957"],["-123.824908","45.2788821"],["-123.8245361","45.2792638"],["-123.824272","45.2795715"],["-123.8240985","45.2798707"],["-123.8239987","45.2801226"],["-123.8239558","45.2803031"],["-123.8239409","45.2804935"],["-123.8239656","45.2808445"],["-123.8242505","45.2823461"],["-123.824334","45.2828813"],["-123.8242823","45.2831469"],["-123.8241607","45.2833765"],["-123.8239982","45.2835782"],["-123.8235016","45.2840553"],["-123.8233215","45.284341"],["-123.8231611","45.2847347"],["-123.8229283","45.2856307"],["-123.8226","45.2869779"],["-123.8224426","45.28744"],["-123.8221585","45.288009"],["-123.8218247","45.2886697"],["-123.8216447","45.289154"],["-123.8215919","45.2896247"],["-123.8216162","45.2900405"],["-123.8216972","45.2903334"],["-123.8217993","45.2906213"],["-123.8219671","45.2910283"],["-123.8221645","45.2914498"],["-123.8223353","45.2919448"],["-123.8223522","45.2921331"],["-123.8223459","45.2923389"],["-123.8220196","45.2940285"],["-123.8219616","45.2945511"],["-123.8219291","45.2951362"],["-123.8219765","45.295365"],["-123.82209","45.2956028"],["-123.8222795","45.2958253"],["-123.8225802","45.2961274"],["-123.8232547","45.2967073"],["-123.8238028","45.2971795"],["-123.823995","45.2974095"],["-123.8244107","45.2980393"],["-123.8247343","45.2986641"],["-123.8249479","45.2991664"],["-123.8251794","45.2995262"],["-123.8254275","45.2997785"],["-123.8260559","45.300233"],["-123.8266771","45.3005615"],["-123.8271476","45.3007618"],["-123.8276663","45.3009438"],["-123.8283837","45.3011147"],["-123.8306865","45.3016014"],["-123.8312737","45.3017526"],["-123.8315795","45.3018653"],["-123.831815","45.3019925"],["-123.8320921","45.3021871"],["-123.833352","45.3032739"],["-123.8336074","45.3035566"],["-123.8337283","45.3037847"],["-123.8338077","45.3040844"],["-123.8338447","45.3043592"],["-123.8338996","45.3047143"],["-123.8339693","45.3051058"],["-123.8342163","45.3056572"],["-123.8354804","45.3077914"],["-123.8356779","45.3080415"],["-123.83593","45.3083424"],["-123.8360397","45.3085305"],["-123.836103","45.3087128"],["-123.8361431","45.3089483"],["-123.8361666","45.3095522"],["-123.8361981","45.3099795"],["-123.8362667","45.3101891"],["-123.8363708","45.3103883"],["-123.8366084","45.3106875"],["-123.8370521","45.311108"],["-123.8372949","45.3113684"],["-123.8373959","45.3115276"],["-123.8374407","45.311665"],["-123.8374721","45.3118642"],["-123.8374802","45.3120518"],["-123.8374494","45.3122974"],["-123.8373473","45.3126207"],["-123.8372468","45.3129653"],["-123.8371437","45.3132919"],["-123.8371298","45.313666"],["-123.837167","45.3140873"],["-123.8372758","45.3152835"],["-123.8373375","45.3157075"],["-123.8374534","45.3159383"],["-123.837617","45.3161312"],["-123.8381966","45.3165227"],["-123.8390733","45.3170875"],["-123.8396249","45.3174305"],["-123.8399457","45.31766"],["-123.8401832","45.3178462"],["-123.8403575","45.3180401"],["-123.8405494","45.3182359"],["-123.8407793","45.3184841"],["-123.8414134","45.3189993"],["-123.8415698","45.319159"],["-123.8416894","45.3193256"],["-123.8417592","45.3194749"],["-123.8418035","45.3196405"],["-123.8418","45.3198249"],["-123.8417455","45.3199988"],["-123.8416521","45.3201573"],["-123.8415235","45.3203266"],["-123.8411224","45.3206709"],["-123.8403637","45.3212651"],["-123.8394757","45.3219531"],["-123.8389628","45.3223753"],["-123.8385157","45.3228493"],["-123.8376257","45.3238939"],["-123.8372459","45.3243849"],["-123.8370768","45.3247585"],["-123.8369553","45.3255651"],["-123.8367277","45.3275144"],["-123.836647","45.3285046"],["-123.8367191","45.3291063"],["-123.8368341","45.329898"],["-123.8369038","45.3304302"],["-123.8369734","45.3307989"],["-123.8371254","45.3312143"],["-123.8371554","45.331297"],["-123.8373044","45.33163"],["-123.837445","45.3320197"],["-123.8375322","45.3324409"],["-123.8375567","45.3330259"],["-123.8375017","45.3334963"],["-123.8373257","45.3339437"],["-123.8370364","45.3344264"],["-123.836749","45.3347866"],["-123.8363509","45.3352015"],["-123.8354299","45.3360415"],["-123.8333287","45.3378983"],["-123.8320767","45.3389764"],["-123.8312468","45.3394932"],["-123.8305955","45.3398123"],["-123.8298685","45.3400783"],["-123.8291886","45.3402546"],["-123.8283875","45.3403931"],["-123.8277639","45.340467"],["-123.8239878","45.3406902"],["-123.8229011","45.3407996"],["-123.8222336","45.3409378"],["-123.8215636","45.341131"],["-123.8208921","45.3414042"],["-123.8203433","45.341718"],["-123.8200282","45.3419395"],["-123.8197439","45.3421714"],["-123.8192207","45.3426415"],["-123.8189689","45.3428791"],["-123.8186841","45.3431696"],["-123.8183877","45.3434814"],["-123.8180181","45.3438878"],["-123.816385","45.3456356"],["-123.8156394","45.3464502"],["-123.8107658","45.3516836"],["-123.8104457","45.3520831"],["-123.8101386","45.3524901"],["-123.8099289","45.3528502"],["-123.8097656","45.3532073"],["-123.8096458","45.3536515"],["-123.8095883","45.3541443"],["-123.8095682","45.3547436"],["-123.8096763","45.3561696"],["-123.8096522","45.3568411"],["-123.8096202","45.3573829"],["-123.8095114","45.3578837"],["-123.8093514","45.3582625"],["-123.809208","45.3584714"],["-123.8089942","45.3587365"],["-123.8085243","45.3591517"],["-123.8079161","45.359554"],["-123.8066154","45.3602655"],["-123.8059903","45.3606448"],["-123.8055618","45.3609369"],["-123.8053714","45.3610892"],["-123.8051631","45.3612898"],["-123.8048951","45.3616195"],["-123.8047298","45.3618827"],["-123.8045897","45.3621532"],["-123.804499","45.3624238"],["-123.8044437","45.3627079"],["-123.8044091","45.3630802"],["-123.8042611","45.3786754"],["-123.8042441","45.3802125"],["-123.804172","45.3831407"],["-123.8040954","45.3838186"],["-123.8039044","45.3851058"],["-123.8028448","45.391143"],["-123.8026972","45.3920451"],["-123.8026524","45.3927298"],["-123.8026881","45.3933215"],["-123.8028105","45.3939401"],["-123.8029324","45.3944064"],["-123.8030731","45.3947919"],["-123.8032625","45.395222"],["-123.8036214","45.3959191"],["-123.8040136","45.396493"],["-123.8043994","45.3969696"],["-123.8048075","45.3974008"],["-123.8051803","45.3977444"],["-123.80556","45.3980446"],["-123.8060474","45.3983867"],["-123.8065371","45.3987059"],["-123.8081773","45.3996268"],["-123.8223115","45.4074039"],["-123.8227195","45.4076925"],["-123.823065","45.4079847"],["-123.823441","45.4083538"],["-123.8237508","45.4087137"],["-123.823991","45.4091216"],["-123.8241601","45.4094779"],["-123.8242687","45.4098777"],["-123.824357","45.4105885"],["-123.8243746","45.4111115"],["-123.8242774","45.4239139"],["-123.8242146","45.4248503"],["-123.8242031","45.4258129"],["-123.8242125","45.4269833"],["-123.824174","45.4285576"],["-123.8241216","45.4306381"],["-123.8240838","45.4319179"],["-123.8240861","45.4322895"],["-123.8241131","45.4325656"],["-123.8241597","45.4329113"],["-123.8242435","45.4332526"],["-123.8243602","45.4336081"],["-123.8244994","45.4339381"],["-123.8246887","45.434321"],["-123.8249747","45.4347387"],["-123.8252965","45.4351159"],["-123.8257626","45.435567"],["-123.8262388","45.435949"],["-123.827667","45.4369937"],["-123.8423959","45.4476282"],["-123.8427269","45.447933"],["-123.8428822","45.4481057"],["-123.8429802","45.4482514"],["-123.8430543","45.4483879"],["-123.8431053","45.4485434"],["-123.8431509","45.4487596"],["-123.8431632","45.4503998"],["-123.8431605","45.4563259"],["-123.8431513","45.457065"],["-123.8431429","45.4576737"],["-123.8432042","45.4578852"],["-123.8432603","45.4580064"],["-123.8433326","45.4581167"],["-123.843394","45.4581898"],["-123.8434753","45.458264"],["-123.8436546","45.4583898"],["-123.8438216","45.4585269"],["-123.8439443","45.4586731"],["-123.8440172","45.4588113"],["-123.8440857","45.4588883"],["-123.8442319","45.4596133"],["-123.844419","45.4603136"],["-123.844482","45.4607432"],["-123.8444972","45.4610555"],["-123.8443408","45.4671636"],["-123.8443327","45.4673812"],["-123.8443216","45.4675908"],["-123.8442526","45.4720907"],["-123.8441795","45.4721879"],["-123.8441778","45.4723319"],["-123.8441783","45.4753004"],["-123.8442129","45.4759691"],["-123.8442865","45.476727"],["-123.8443355","45.4770763"],["-123.8444139","45.4774667"],["-123.8445451","45.4784544"],["-123.8446075","45.4789566"],["-123.8448277","45.4809262"],["-123.8449844","45.48213"],["-123.8453363","45.4850709"],["-123.8455988","45.4870185"],["-123.845766","45.4883509"],["-123.845884","45.4893385"],["-123.845962","45.4898272"],["-123.8460733","45.4901899"],["-123.8462384","45.4905227"],["-123.8464543","45.4908688"],["-123.846577","45.4910491"],["-123.851036","45.496649"],["-123.8514786","45.4971043"],["-123.8517638","45.4973532"],["-123.8525764","45.4979377"],["-123.8531763","45.498275"],["-123.8769593","45.5108599"],["-123.8783166","45.5116173"],["-123.8786586","45.5118553"],["-123.8790892","45.5122137"],["-123.879538","45.512603"],["-123.8811844","45.5141904"],["-123.8827639","45.5157361"],["-123.8853566","45.5182551"],["-123.8867214","45.5195976"],["-123.8890322","45.5218563"],["-123.8893294","45.5221389"],["-123.8898577","45.5225243"],["-123.8903451","45.5228526"],["-123.8945838","45.5255889"],["-123.8956262","45.5262786"],["-123.8958841","45.5264744"],["-123.8960314","45.5266043"],["-123.8962123","45.5267842"],["-123.8963918","45.5269738"],["-123.8966248","45.5272557"],["-123.8968931","45.5276702"],["-123.8970646","45.528031"],["-123.897196","45.5283889"],["-123.9000412","45.5384626"],["-123.9005575","45.5400552"],["-123.9008529","45.5407483"],["-123.9010999","45.5412655"],["-123.901348","45.5417417"],["-123.9015683","45.5421376"],["-123.9017872","45.5424961"],["-123.9021358","45.5430096"],["-123.90262","45.5436911"],["-123.903099","45.5443037"],["-123.9035874","45.5448898"],["-123.9040392","45.545389"],["-123.904492","45.5458603"],["-123.9050179","45.546389"],["-123.9052542","45.5466533"],["-123.9054374","45.5469168"],["-123.9055133","45.547083"],["-123.90555","45.5472582"],["-123.9055798","45.5474829"],["-123.9055517","45.5477005"],["-123.9055021","45.5478804"],["-123.9053757","45.5481678"],["-123.9051847","45.5484527"],["-123.9049936","45.5486748"],["-123.9048076","45.5488556"],["-123.9045112","45.5490923"],["-123.903998","45.5494037"],["-123.9024339","45.550233"],["-123.9021139","45.5504295"],["-123.9018148","45.550633"],["-123.9015438","45.5508506"],["-123.901202","45.5511942"],["-123.9006147","45.5518922"],["-123.9003512","45.5522524"],["-123.9002058","45.5525456"],["-123.9001208","45.5528662"],["-123.9000595","45.5532225"],["-123.9000085","45.5534917"],["-123.8999449","45.5536671"],["-123.8998616","45.5538099"],["-123.8997454","45.5539561"],["-123.8995943","45.5541274"],["-123.8994059","45.5543387"],["-123.899143","45.5545939"],["-123.8990273","45.5547477"],["-123.8989492","45.554896"],["-123.8988789","45.5550597"],["-123.8988055","45.5552549"],["-123.8987337","45.5554314"],["-123.8986365","45.555613"],["-123.8983836","45.555992"],["-123.8978903","45.5566618"],["-123.8974201","45.5572444"],["-123.8972534","45.5574179"],["-123.8970165","45.557651"],["-123.8967349","45.5578589"],["-123.8965032","45.5579959"],["-123.8962794","45.5581067"],["-123.8959216","45.5582615"],["-123.8955871","45.5583747"],["-123.8948002","45.558604"],["-123.8944602","45.5586911"],["-123.8940837","45.5588064"],["-123.8937045","45.5589466"],["-123.8931786","45.5591957"],["-123.8928669","45.5593838"],["-123.8926313","45.5595714"],["-123.8924433","45.5597349"],["-123.892242","45.5599528"],["-123.8920344","45.5602446"],["-123.8916796","45.5607995"],["-123.8915436","45.5610387"],["-123.891389","45.5613844"],["-123.8913421","45.5615611"],["-123.8913167","45.5617466"],["-123.8913196","45.5619474"],["-123.8913686","45.562144"],["-123.8914464","45.562322"],["-123.8915823","45.5625416"],["-123.8917167","45.5626896"],["-123.8918586","45.5628194"],["-123.8920443","45.5629436"],["-123.8922174","45.5630498"],["-123.8924375","45.5631502"],["-123.8926568","45.5632216"],["-123.8929144","45.5632869"],["-123.8932672","45.5633297"],["-123.8935199","45.5633286"],["-123.8937604","45.5633198"],["-123.893999","45.5632972"],["-123.8971335","45.5629527"],["-123.8978374","45.5628959"],["-123.8992841","45.5629014"],["-123.8999833","45.5628992"],["-123.9010531","45.562907"],["-123.9018867","45.5628923"],["-123.9023776","45.5628489"],["-123.9028527","45.5627647"],["-123.9033518","45.5626456"],["-123.903969","45.5624558"],["-123.9044015","45.5622865"],["-123.9047786","45.5621049"],["-123.904987","45.5619906"],["-123.9053796","45.561736"],["-123.905699","45.5614877"],["-123.9065107","45.560793"],["-123.9068196","45.5605193"],["-123.9071161","45.5602545"],["-123.9073045","45.5600953"],["-123.9075074","45.5599727"],["-123.9077712","45.559874"],["-123.9079836","45.55982"],["-123.9119248","45.5591903"],["-123.9121777","45.5591665"],["-123.9123702","45.5591621"],["-123.9125884","45.5591666"],["-123.916021","45.5592567"],["-123.9166642","45.5592647"],["-123.9168299","45.5592567"],["-123.9169754","45.5592217"],["-123.9171038","45.5591802"],["-123.9174221","45.5589987"],["-123.9177628","45.5587942"],["-123.9180289","45.5586452"],["-123.9182102","45.5585657"],["-123.9184253","45.5585004"],["-123.9189877","45.5583832"],["-123.9223966","45.5577673"],["-123.9227014","45.557725"],["-123.9228662","45.5577146"],["-123.922966","45.5577168"],["-123.9230511","45.5577206"],["-123.9231473","45.5577353"],["-123.9232414","45.5577562"],["-123.9233453","45.5577861"],["-123.923442","45.5578231"],["-123.9235379","45.5578768"],["-123.923689","45.5579735"],["-123.9240586","45.5582539"],["-123.9243168","45.5584223"],["-123.9245356","45.5585374"],["-123.9248418","45.5586324"],["-123.9255623","45.5587807"],["-123.9283434","45.5593243"],["-123.9286752","45.5594039"],["-123.9291624","45.5595395"],["-123.9314037","45.560215"],["-123.9316651","45.5602833"],["-123.93191","45.560335"],["-123.9322567","45.5603841"],["-123.9328413","45.5604504"],["-123.9330822","45.5604907"],["-123.9333071","45.5605522"],["-123.9335031","45.560637"],["-123.933664","45.5607254"],["-123.9338058","45.5608324"],["-123.9339131","45.5609545"],["-123.9340114","45.5610839"],["-123.9341556","45.5613514"],["-123.9345825","45.5621736"],["-123.9347884","45.5625539"],["-123.9349166","45.5627564"],["-123.935055","45.5629568"],["-123.9354732","45.5633981"],["-123.9359522","45.5637999"],["-123.9398082","45.5668517"],["-123.9404567","45.5673847"],["-123.941796","45.5686555"],["-123.9419782","45.5688403"],["-123.9421036","45.5690141"],["-123.9422173","45.5692632"],["-123.9423284","45.569557"],["-123.9427838","45.5708799"],["-123.94302","45.5713935"],["-123.9431233","45.5715775"],["-123.9432394","45.5717642"],["-123.9434396","45.572028"],["-123.9436673","45.572308"],["-123.943867","45.5725863"],["-123.9439966","45.5728742"],["-123.9440761","45.5731779"],["-123.9443584","45.5741722"],["-123.9448938","45.5763235"],["-123.9451265","45.5773925"],["-123.9452354","45.5780645"],["-123.9453951","45.5792742"],["-123.9454833","45.5801751"],["-123.9455449","45.5809165"],["-123.9457306","45.5817733"],["-123.9460284","45.5825661"],["-123.9467996","45.5842762"],["-123.9471801","45.5851964"],["-123.9473914","45.5857939"],["-123.9476566","45.5867824"],["-123.9477309","45.5871749"],["-123.9478275","45.5879533"],["-123.947861","45.5883991"],["-123.9478817","45.5888828"],["-123.9478719","45.5893129"],["-123.9477901","45.5900549"],["-123.947615","45.5913061"],["-123.9464592","45.5980397"],["-123.9463017","45.5989455"],["-123.946106","45.6000933"],["-123.9456938","45.6024349"],["-123.9454805","45.6036943"],["-123.9453558","45.6044611"],["-123.9452276","45.6052043"],["-123.9439249","45.612627"],["-123.9438344","45.6131918"],["-123.9437778","45.6135073"],["-123.9437079","45.613943"],["-123.943649","45.6143415"],["-123.9435476","45.6150159"],["-123.9432154","45.6189486"],["-123.9428639","45.6222531"],["-123.9426067","45.6242534"],["-123.9421082","45.6275191"],["-123.9419545","45.6284334"],["-123.9411659","45.6334591"],["-123.941027","45.6342108"],["-123.9409167","45.6346954"],["-123.9408068","45.6352421"],["-123.9407195","45.6357497"],["-123.9403291","45.6381433"],["-123.9402096","45.6388929"],["-123.9400368","45.6399547"],["-123.9399203","45.6404306"],["-123.9397877","45.6407332"],["-123.9394726","45.6412522"],["-123.9391759","45.6416447"],["-123.9379567","45.6429075"],["-123.9363288","45.6445172"],["-123.9360107","45.6448556"],["-123.9357111","45.6452324"],["-123.9354592","45.6455888"],["-123.9350066","45.6463842"],["-123.9344917","45.6471523"],["-123.9340748","45.6476901"],["-123.9328263","45.6492166"],["-123.932071","45.6500069"],["-123.9318617","45.6503181"],["-123.9317253","45.650644"],["-123.9316679","45.6509965"],["-123.9317314","45.6513296"],["-123.9317399","45.6516856"],["-123.9316666","45.6519755"],["-123.9315111","45.6522061"],["-123.9311188","45.6527551"],["-123.930902","45.6530806"],["-123.9305691","45.6537673"],["-123.9299969","45.6551082"],["-123.9298659","45.655692"],["-123.9297677","45.6561566"],["-123.9297346","45.6564471"],["-123.9297371","45.6566646"],["-123.9297482","45.6568706"],["-123.9297358","45.6571688"],["-123.929712","45.6575375"],["-123.9296197","45.6579221"],["-123.9294986","45.6583388"],["-123.9292949","45.6589606"],["-123.9282849","45.6619327"],["-123.9279351","45.6633247"],["-123.9274302","45.6646224"],["-123.9271962","45.6651309"],["-123.9269791","45.6654223"],["-123.9266925","45.6656707"],["-123.9259248","45.6661556"],["-123.9257085","45.6663483"],["-123.9255567","45.6665614"],["-123.9254508","45.6667836"],["-123.9253945","45.667017"],["-123.9253638","45.6672926"],["-123.9253036","45.6676942"],["-123.9252225","45.6679023"],["-123.9250982","45.6680828"],["-123.9248382","45.6683373"],["-123.9245862","45.6685403"],["-123.9242837","45.6687514"],["-123.9239627","45.6689564"],["-123.9237709","45.6690912"],["-123.9236123","45.6692272"],["-123.9234777","45.6694087"],["-123.9234161","45.6695393"],["-123.9233843","45.6696568"],["-123.9233587","45.6697895"],["-123.9233643","45.6699882"],["-123.9234168","45.6702859"],["-123.9235398","45.6709369"],["-123.9237103","45.6719266"],["-123.9239753","45.6734232"],["-123.9240608","45.6741625"],["-123.9241103","45.6747023"],["-123.9241083","45.6753253"],["-123.9240814","45.6759248"],["-123.9239872","45.677315"],["-123.9238865","45.6788427"],["-123.9238684","45.6799998"],["-123.9238525","45.6805169"],["-123.923784","45.6808401"],["-123.9236649","45.6811862"],["-123.9236345","45.681358"],["-123.9236007","45.6815774"],["-123.9236281","45.6818044"],["-123.9236756","45.6821141"],["-123.9236942","45.6824673"],["-123.9236378","45.6834964"],["-123.9236524","45.6840262"],["-123.923685","45.6843957"],["-123.9237571","45.6849437"],["-123.9238236","45.6854395"],["-123.9238562","45.6857521"],["-123.9239259","45.6861276"],["-123.9240697","45.6866597"],["-123.9243049","45.6872819"],["-123.9243774","45.6875661"],["-123.9243911","45.6877545"],["-123.9243689","45.6878638"],["-123.9243309","45.6879714"],["-123.9242764","45.6880623"],["-123.9242142","45.6881446"],["-123.9241265","45.6882401"],["-123.9240429","45.6883092"],["-123.9239427","45.6883831"],["-123.9238116","45.6884486"],["-123.9236466","45.6884995"],["-123.9234381","45.688537"],["-123.923213","45.6885411"],["-123.9230008","45.6885339"],["-123.9187626","45.6879977"],["-123.9182074","45.6879459"],["-123.9177108","45.6879373"],["-123.917258","45.6879686"],["-123.9168491","45.6880277"],["-123.9165173","45.6881103"],["-123.9161713","45.6882117"],["-123.9158363","45.6883415"],["-123.9152229","45.6885737"],["-123.9142354","45.6889471"],["-123.9135356","45.6891949"],["-123.9130613","45.6893345"],["-123.9127294","45.6893987"],["-123.9123518","45.6894572"],["-123.9120306","45.6894891"],["-123.9116334","45.6894846"],["-123.9112494","45.6894732"],["-123.9108743","45.6894208"],["-123.9104661","45.6893414"],["-123.9100924","45.6892469"],["-123.9097705","45.6891306"],["-123.9091027","45.6888167"],["-123.9068303","45.6877249"],["-123.9066185","45.6876316"],["-123.9063864","45.6875409"],["-123.9058996","45.6873759"],["-123.9056377","45.6873243"],["-123.9053645","45.6872812"],["-123.9050754","45.6872479"],["-123.9042051","45.6871557"],["-123.902468","45.6869276"],["-123.9014839","45.6868139"],["-123.9010818","45.6867861"],["-123.9006902","45.6867783"],["-123.8993665","45.6868587"],["-123.897053","45.6870477"],["-123.8967236","45.6870604"],["-123.8964352","45.6870495"],["-123.8961811","45.6870228"],["-123.8959631","45.6869844"],["-123.8953805","45.6868325"],["-123.8948873","45.686676"],["-123.8941959","45.6864569"],["-123.8938776","45.6863584"],["-123.8936711","45.6863021"],["-123.8934618","45.6862602"],["-123.8932685","45.686233"],["-123.8928177","45.6862137"],["-123.8915041","45.6862443"],["-123.8909294","45.6862812"],["-123.8906381","45.6863213"],["-123.8903091","45.6864022"],["-123.8898928","45.686547"],["-123.8888799","45.6869266"],["-123.8885387","45.6870492"],["-123.888048","45.6872043"],["-123.8862382","45.6877233"],["-123.8854389","45.6879831"],["-123.8845551","45.6883521"],["-123.8836664","45.6887813"],["-123.8829849","45.6891309"],["-123.8826348","45.6893436"],["-123.8823661","45.6895151"],["-123.8822431","45.6895992"],["-123.8819195","45.6898607"],["-123.881617","45.6901322"],["-123.8811955","45.6905802"],["-123.8808905","45.6909933"],["-123.8806299","45.6914075"],["-123.879834","45.6928075"],["-123.8771433","45.6978335"],["-123.8768841","45.6983701"],["-123.8767924","45.698627"],["-123.8767707","45.6988079"],["-123.8767764","45.6990221"],["-123.8768586","45.6992495"],["-123.8769749","45.6994344"],["-123.877122","45.6996176"],["-123.8772519","45.6997192"],["-123.8773933","45.6998111"],["-123.8776028","45.6999261"],["-123.8778552","45.7000572"],["-123.8781444","45.700195"],["-123.8795587","45.7008055"],["-123.8803733","45.7011565"],["-123.8823865","45.7020573"],["-123.8831877","45.7024343"],["-123.883592","45.7026776"],["-123.8838384","45.7028594"],["-123.8840511","45.7030311"],["-123.8842236","45.7031947"],["-123.8843983","45.7033914"],["-123.8846141","45.7036711"],["-123.8848035","45.7039398"],["-123.8849745","45.7042165"],["-123.8851753","45.70458"],["-123.8853486","45.7049167"],["-123.8855046","45.7052717"],["-123.8855808","45.7054962"],["-123.8856698","45.7060203"],["-123.8857253","45.7063721"],["-123.8857634","45.7067388"],["-123.8858215","45.7072102"],["-123.8858584","45.7073774"],["-123.8859099","45.7075782"],["-123.8860296","45.7078313"],["-123.8862065","45.7080837"],["-123.8864372","45.7083256"],["-123.8866728","45.7085069"],["-123.886834","45.7086158"],["-123.8869884","45.7087044"],["-123.8871719","45.7087935"],["-123.8873928","45.7088804"],["-123.887668","45.7089685"],["-123.8878709","45.7090159"],["-123.8880613","45.7090524"],["-123.8885426","45.7091097"],["-123.8890862","45.7091449"],["-123.8902194","45.7092021"],["-123.890496","45.7092258"],["-123.8907692","45.7092642"],["-123.8909535","45.7092984"],["-123.8911208","45.7093424"],["-123.8912722","45.709395"],["-123.8915262","45.7095109"],["-123.8917091","45.7096247"],["-123.8918485","45.7097516"],["-123.8919529","45.7098688"],["-123.8920382","45.7099924"],["-123.892122","45.7101475"],["-123.8921687","45.7102554"],["-123.8922037","45.7103557"],["-123.8922361","45.7104862"],["-123.8922575","45.7106726"],["-123.892302","45.7114459"],["-123.8923299","45.7116833"],["-123.8923634","45.7118685"],["-123.8924061","45.7120421"],["-123.8924559","45.7122017"],["-123.8925638","45.712457"],["-123.8931076","45.7136562"],["-123.8936376","45.7147761"],["-123.8939063","45.7152966"],["-123.8940216","45.7155345"],["-123.8940894","45.7157048"],["-123.8941298","45.7158975"],["-123.8941559","45.7162716"],["-123.8941772","45.7167653"],["-123.8942139","45.7176504"],["-123.8947069","45.7176933"],["-123.8962785","45.7176678"],["-123.8981741","45.7176406"],["-123.8984827","45.7176435"],["-123.8987338","45.71765"],["-123.8990731","45.717681"],["-123.8993092","45.7177294"],["-123.899693","45.7178402"],["-123.8999585","45.7179427"],["-123.9010269","45.7184004"],["-123.9017759","45.7187204"],["-123.9025582","45.7190534"],["-123.9027899","45.7191338"],["-123.9030216","45.7191991"],["-123.9032636","45.7192526"],["-123.9035158","45.7192855"],["-123.9037716","45.7193024"],["-123.9039799","45.7192878"],["-123.904228","45.7192584"],["-123.904482","45.71921"],["-123.9047993","45.7191296"],["-123.9054516","45.718934"],["-123.9095095","45.7176551"],["-123.9100993","45.7174697"],["-123.9104541","45.7173599"],["-123.9105678","45.7173362"],["-123.9107138","45.7173097"],["-123.9108331","45.7172929"],["-123.9109931","45.7172761"],["-123.9113708","45.7172648"],["-123.9139055","45.7173379"],["-123.9144029","45.7173553"],["-123.9148319","45.7173748"],["-123.9152315","45.717407"],["-123.9155433","45.7174629"],["-123.9159158","45.7175489"],["-123.9171781","45.7178787"],["-123.9179754","45.7181146"],["-123.9206479","45.7190565"],["-123.9208976","45.7191537"],["-123.9214091","45.7193948"],["-123.9217973","45.7196071"],["-123.9221137","45.7197823"],["-123.9223449","45.7198881"],["-123.922766","45.7200354"],["-123.9234795","45.7202404"],["-123.9239062","45.7203835"],["-123.92422","45.7204928"],["-123.9244485","45.7205613"],["-123.9246444","45.7205883"],["-123.9248472","45.720582"],["-123.9249915","45.7205591"],["-123.925171","45.7205074"],["-123.925368","45.7204205"],["-123.9256392","45.7202095"],["-123.9262701","45.7195811"],["-123.9264467","45.7194483"],["-123.9265982","45.7193626"],["-123.9267586","45.7192863"],["-123.9269041","45.719235"],["-123.9270121","45.7192123"],["-123.9271326","45.7191951"],["-123.9272714","45.7191846"],["-123.9274069","45.7191854"],["-123.927539","45.7191952"],["-123.9276248","45.7192076"],["-123.9276964","45.7192225"],["-123.927837","45.7192572"],["-123.9279495","45.7192994"],["-123.9280428","45.719346"],["-123.9281669","45.7194179"],["-123.9282936","45.7195114"],["-123.9283949","45.7196152"],["-123.928508","45.7197564"],["-123.9285844","45.7198783"],["-123.9286431","45.7200078"],["-123.9286999","45.7201446"],["-123.9287335","45.7202616"],["-123.9287538","45.7203768"],["-123.928762","45.7205034"],["-123.9287579","45.7206427"],["-123.9286775","45.721083"],["-123.9283651","45.7224437"],["-123.9282202","45.7231368"],["-123.9282076","45.7233021"],["-123.9281927","45.7234954"],["-123.9281952","45.7237497"],["-123.9282235","45.7239699"],["-123.9282819","45.7241686"],["-123.9294735","45.7276665"],["-123.9306514","45.7310618"],["-123.9307849","45.7315544"],["-123.9308903","45.7318748"],["-123.9311282","45.7324642"],["-123.9312703","45.7328359"],["-123.9313763","45.7330649"],["-123.9314867","45.7332757"],["-123.9316224","45.7334759"],["-123.9317951","45.7336776"],["-123.9319989","45.7338664"],["-123.9322233","45.7340544"],["-123.9332964","45.7348464"],["-123.9349666","45.7359488"],["-123.9361137","45.7366656"],["-123.9365674","45.7369391"],["-123.9369946","45.7371424"],["-123.9374631","45.7373491"],["-123.9379051","45.7374881"],["-123.9384408","45.7376305"],["-123.9390315","45.7377693"],["-123.943367","45.738627"],["-123.9440894","45.7387863"],["-123.9452503","45.7390801"],["-123.9456426","45.7391943"],["-123.9463816","45.73946"],["-123.9476226","45.7399134"],["-123.9479483","45.7400024"],["-123.9482728","45.7400671"],["-123.9494971","45.7402186"],["-123.9500166","45.740305"],["-123.9503906","45.7403885"],["-123.9508151","45.7405199"],["-123.9512402","45.7406679"],["-123.9532477","45.741424"],["-123.9538353","45.7416483"],["-123.955389","45.7422575"],["-123.9558082","45.7424543"],["-123.956549","45.7428394"],["-123.9570805","45.7431176"],["-123.9574192","45.7432711"],["-123.9581936","45.7435619"],["-123.958638","45.7437384"],["-123.959056","45.7439221"],["-123.959433","45.7441185"],["-123.9601663","45.7445767"],["-123.9604555","45.7448228"],["-123.9606886","45.7450325"],["-123.9608328","45.7451671"],["-123.9611511","45.7455993"],["-123.9613813","45.7460285"],["-123.9616026","45.746498"],["-123.9620107","45.7475604"],["-123.9622971","45.7482051"],["-123.9624724","45.7485301"],["-123.9629453","45.7494239"],["-123.9631884","45.7498987"],["-123.9632994","45.7501864"],["-123.9633889","45.7504948"],["-123.9634614","45.7508642"],["-123.9635234","45.7513431"],["-123.963576","45.7524403"],["-123.9636272","45.7533035"],["-123.9636548","45.754057"],["-123.9636147","45.7543171"],["-123.9635539","45.7545215"],["-123.9634695","45.754726"],["-123.9633239","45.754976"],["-123.9631629","45.7552045"],["-123.9629052","45.7554815"],["-123.9626318","45.7556758"],["-123.962352","45.7558334"],["-123.9619105","45.7559962"],["-123.9613777","45.7561194"],["-123.9609215","45.7561889"],["-123.9599573","45.7563104"],["-123.9596088","45.7563869"],["-123.9593299","45.7564797"],["-123.9590925","45.7565872"],["-123.9588634","45.7567189"],["-123.9587091","45.7568365"],["-123.9585773","45.7569537"],["-123.9584691","45.7570773"],["-123.9583439","45.7572958"],["-123.9582632","45.7574922"],["-123.9582214","45.7576664"],["-123.9582258","45.757855"],["-123.9582334","45.7579604"],["-123.9582648","45.7580458"],["-123.9583277","45.7581996"],["-123.9584181","45.7584079"],["-123.9585453","45.7586839"],["-123.9586963","45.7590238"],["-123.9588293","45.7592965"],["-123.9589669","45.7596121"],["-123.9590747","45.7598735"],["-123.9590862","45.760053"],["-123.9590873","45.7602688"],["-123.9590318","45.7604793"],["-123.9589179","45.7607117"],["-123.9587689","45.7609746"],["-123.9585139","45.7612907"],["-123.958282","45.7614956"],["-123.9578978","45.7617613"],["-123.9576049","45.7619621"],["-123.9572429","45.7621976"],["-123.9557324","45.7631256"],["-123.9551725","45.7634738"],["-123.9543447","45.7639547"],["-123.9539113","45.7642422"],["-123.9533265","45.76467"],["-123.9526333","45.7652074"],["-123.9519097","45.7660158"],["-123.9509728","45.7672848"],["-123.9505642","45.7677931"],["-123.9500285","45.7682856"],["-123.9493381","45.7687655"],["-123.948199","45.7694057"],["-123.9466475","45.7701917"],["-123.9444002","45.771312"],["-123.9439484","45.7716184"],["-123.9437364","45.7718525"],["-123.9435745","45.7720597"],["-123.9434892","45.7722971"],["-123.9434256","45.7725327"],["-123.9434029","45.7727415"],["-123.9434101","45.7729576"],["-123.9434536","45.7731899"],["-123.9435144","45.7734129"],["-123.94361","45.7736033"],["-123.9437505","45.7738238"],["-123.943956","45.7740883"],["-123.9442713","45.7743671"],["-123.9451463","45.774983"],["-123.945759","45.7754623"],["-123.9461753","45.775753"],["-123.9464465","45.7759182"],["-123.9467111","45.7760692"],["-123.9470033","45.7762175"],["-123.9473277","45.7763647"],["-123.9512226","45.7780954"],["-123.9520717","45.7785196"],["-123.9525245","45.7787782"],["-123.9535112","45.7794143"],["-123.9547678","45.7803812"],["-123.9560239","45.7814287"],["-123.9565918","45.7819627"],["-123.9568785","45.7823579"],["-123.9571739","45.7828016"],["-123.9574737","45.7833709"],["-123.9578483","45.7842198"],["-123.9588474","45.7868226"],["-123.960706","45.79153"],["-123.9609527","45.7922474"],["-123.9611692","45.792745"],["-123.9614734","45.7933515"],["-123.9618036","45.7938897"],["-123.9621303","45.7943229"],["-123.9624995","45.7947662"],["-123.9630303","45.7952273"],["-123.9635721","45.7955759"],["-123.96425","45.795954"],["-123.9649384","45.7963503"],["-123.9660539","45.7970297"],["-123.9663424","45.7972469"],["-123.9665526","45.7974389"],["-123.9666565","45.7975621"],["-123.9667953","45.7977598"],["-123.9668715","45.7979254"],["-123.9669331","45.7981011"],["-123.9669648","45.7983089"],["-123.9669734","45.7984566"],["-123.966953","45.798639"],["-123.966901","45.798861"],["-123.9668492","45.7990233"],["-123.9665709","45.7996719"],["-123.9656208","45.8016066"],["-123.9652624","45.8022969"],["-123.9649679","45.8028829"],["-123.9648404","45.8031358"],["-123.9643054","45.8042552"],["-123.9639739","45.8049542"],["-123.9637484","45.8054202"],["-123.9635814","45.8057709"],["-123.9632305","45.8064854"],["-123.9629117","45.8071398"],["-123.9623937","45.808278"],["-123.9621488","45.8089019"],["-123.9619823","45.809451"],["-123.9618209","45.8099663"],["-123.9616969","45.8105107"],["-123.9615986","45.8110992"],["-123.961483","45.8124869"],["-123.9613712","45.814551"],["-123.9612916","45.8156578"],["-123.9611967","45.8171759"],["-123.9611215","45.8183972"],["-123.9610919","45.8190092"],["-123.9610828","45.8192254"],["-123.961071","45.8194125"],["-123.9610428","45.8198101"],["-123.9610283","45.8201217"],["-123.9609298","45.8220083"],["-123.9608719","45.8234037"],["-123.9608907","45.8238647"],["-123.960989","45.8246405"],["-123.9611271","45.8254575"],["-123.9611284","45.8257779"],["-123.9610778","45.8260596"],["-123.9609932","45.8262173"],["-123.9608964","45.8263741"],["-123.9600925","45.8271134"],["-123.9598079","45.8273832"],["-123.9597167","45.8275022"],["-123.9596288","45.8276427"],["-123.9595568","45.8278107"],["-123.9594986","45.828051"],["-123.9594732","45.8282951"],["-123.9595099","45.8285603"],["-123.9595725","45.8287506"],["-123.9596907","45.8289265"],["-123.9600392","45.829306"],["-123.9603159","45.8296275"],["-123.960479","45.8300207"],["-123.9605143","45.8302054"],["-123.9605442","45.8303915"],["-123.9605472","45.8307219"],["-123.9605462","45.8310695"],["-123.9605412","45.8312061"],["-123.960521","45.8313747"],["-123.960484","45.8315508"],["-123.9604275","45.8317417"],["-123.9603146","45.8319417"],["-123.960225","45.8320856"],["-123.9601846","45.8322133"],["-123.9601533","45.8323666"],["-123.9601464","45.8325264"],["-123.9601545","45.8326702"],["-123.9601639","45.83279"],["-123.9602188","45.8329686"],["-123.9602638","45.8331654"],["-123.9603358","45.8333926"],["-123.9603788","45.8335854"],["-123.9604223","45.8337596"],["-123.9604357","45.8339109"],["-123.9604314","45.8340403"],["-123.9604182","45.8341445"],["-123.9603903","45.834275"],["-123.9603375","45.8344126"],["-123.9602785","45.8345388"],["-123.9601892","45.834696"],["-123.9591391","45.8359164"],["-123.9589612","45.8361547"],["-123.9588706","45.83632"],["-123.9588098","45.8364632"],["-123.9587668","45.8365935"],["-123.9587348","45.8367365"],["-123.9587059","45.8369841"],["-123.9585946","45.8377886"],["-123.9584699","45.8382088"],["-123.9581962","45.8386771"],["-123.9579674","45.8390342"],["-123.9578779","45.8392262"],["-123.957831","45.839434"],["-123.9577817","45.8396143"],["-123.9577928","45.8398897"],["-123.9578127","45.8400521"],["-123.9578717","45.8402789"],["-123.9579401","45.8409081"],["-123.9580361","45.841203"],["-123.9581064","45.8413198"],["-123.9584943","45.8416551"],["-123.9586767","45.841878"],["-123.9587784","45.8419908"],["-123.9588548","45.8421177"],["-123.9589213","45.8422317"],["-123.9589911","45.8424142"],["-123.9590371","45.8425643"],["-123.9590457","45.8428171"],["-123.9590652","45.8430938"],["-123.9591233","45.8434791"],["-123.9592056","45.8435415"],["-123.9592436","45.8439955"],["-123.9592711","45.8442072"],["-123.9592982","45.8444374"],["-123.9593383","45.8448759"],["-123.9594016","45.8452824"],["-123.9594508","45.8455363"],["-123.9594983","45.8457007"],["-123.9595775","45.8459146"],["-123.959742","45.8462953"],["-123.9603052","45.8475358"],["-123.960473","45.8479056"],["-123.9605143","45.84806"],["-123.9605378","45.8483069"],["-123.9605377","45.848676"],["-123.9605188","45.8489889"],["-123.9604162","45.8497123"],["-123.9604027","45.850906"],["-123.9604904","45.8512188"],["-123.9605334","45.851452"],["-123.9606447","45.8518669"],["-123.9607588","45.8524175"],["-123.9607789","45.8525488"],["-123.9607819","45.8526476"],["-123.9607642","45.8528089"],["-123.960701","45.8532463"],["-123.9607009","45.8533874"],["-123.9607147","45.8535059"],["-123.9607537","45.8536437"],["-123.9608396","45.8538043"],["-123.9614631","45.8547229"],["-123.962188","45.8557896"],["-123.9623757","45.8560891"],["-123.962443","45.8562229"],["-123.9625065","45.8563629"],["-123.9625645","45.8565273"],["-123.9626072","45.856753"],["-123.9626316","45.8571175"],["-123.9626124","45.8573383"],["-123.9624933","45.8576657"],["-123.9622997","45.8579582"],["-123.9614792","45.8589508"],["-123.9611936","45.8593269"],["-123.9608614","45.8598379"],["-123.9606355","45.8602511"],["-123.960437","45.8606717"],["-123.9596201","45.8625841"],["-123.9592843","45.8634331"],["-123.9590525","45.8641663"],["-123.9589525","45.8645512"],["-123.9588196","45.8651789"],["-123.9587477","45.8656293"],["-123.9586066","45.8670614"],["-123.9583903","45.8694863"],["-123.9582579","45.8709293"],["-123.9582051","45.8715034"],["-123.9580683","45.873116"],["-123.9580046","45.8737996"],["-123.9576811","45.8773828"],["-123.9576269","45.8780589"],["-123.9576129","45.8784402"],["-123.9576208","45.8787579"],["-123.9576444","45.8790246"],["-123.9576858","45.8792912"],["-123.9577202","45.8794504"],["-123.9578252","45.8798079"],["-123.957967","45.8801822"],["-123.9581293","45.8805428"],["-123.9586531","45.8816219"],["-123.9588524","45.8820527"],["-123.9590042","45.8824353"],["-123.9590791","45.8826741"],["-123.9591537","45.8829708"],["-123.9592024","45.8832572"],["-123.9592247","45.8834796"],["-123.9592318","45.8837097"],["-123.9592243","45.8839666"],["-123.9591957","45.8842356"],["-123.9591422","45.8845383"],["-123.9590717","45.8848313"],["-123.9587845","45.885751"],["-123.958497","45.8866047"],["-123.9576489","45.8888788"],["-123.9557501","45.8941845"],["-123.9550527","45.8961566"],["-123.9547192","45.8971029"],["-123.9544296","45.8979171"],["-123.9541337","45.8987358"],["-123.9536498","45.9001199"],["-123.9533142","45.9011053"],["-123.9531445","45.9016036"],["-123.9530965","45.901809"],["-123.9530671","45.9020096"],["-123.9530528","45.9022191"],["-123.9530568","45.9024242"],["-123.9530767","45.9026283"],["-123.9531141","45.9028327"],["-123.9531702","45.9030394"],["-123.9532638","45.903289"],["-123.9534996","45.9038063"],["-123.9536966","45.9042344"],["-123.9538358","45.9045825"],["-123.9539212","45.904865"],["-123.9539841","45.9051189"],["-123.9540143","45.9053625"],["-123.9540159","45.9055743"],["-123.9539886","45.905785"],["-123.9539313","45.9059935"],["-123.9538669","45.9061826"],["-123.9537866","45.9063656"],["-123.9536777","45.9065614"],["-123.9535697","45.906713"],["-123.9534202","45.906891"],["-123.9532649","45.907066"],["-123.9530824","45.9072478"],["-123.9514689","45.9085996"],["-123.9505156","45.9093999"],["-123.9502264","45.9096407"],["-123.9498404","45.9099708"],["-123.9496081","45.9102323"],["-123.94942","45.9104843"],["-123.9486069","45.911809"],["-123.9482994","45.912166"],["-123.9481093","45.9123462"],["-123.947966","45.9124569"],["-123.9478351","45.9125546"],["-123.9476869","45.912644"],["-123.9473837","45.9128012"],["-123.9471125","45.9129125"],["-123.9468031","45.9130113"],["-123.9464491","45.9130934"],["-123.9457709","45.9131965"],["-123.9449573","45.9133065"],["-123.9441892","45.9134166"],["-123.9436698","45.9135246"],["-123.9431423","45.9136628"],["-123.9427609","45.9137712"],["-123.9424429","45.9138678"],["-123.941354","45.9142656"],["-123.9403808","45.9146309"],["-123.9400894","45.9147756"],["-123.9398094","45.9149379"],["-123.9395528","45.9151017"],["-123.9392922","45.915301"],["-123.9390481","45.9154971"],["-123.9389168","45.9156453"],["-123.938805","45.915789"],["-123.9386692","45.9160063"],["-123.9385173","45.9163075"],["-123.9384238","45.9165705"],["-123.9383167","45.917199"],["-123.9382362","45.9177923"],["-123.9381812","45.9182221"],["-123.9381416","45.9184874"],["-123.9380928","45.9187822"],["-123.9380452","45.9189577"],["-123.9379803","45.919135"],["-123.9379034","45.9193213"],["-123.9378132","45.9194783"],["-123.9376931","45.9196718"],["-123.9375692","45.9198364"],["-123.9374532","45.9199808"],["-123.9372798","45.9201709"],["-123.9370803","45.9203614"],["-123.9368634","45.9205409"],["-123.9366341","45.9207083"],["-123.9363411","45.9208943"],["-123.9358313","45.9211809"],["-123.9344532","45.9219169"],["-123.9336026","45.9224265"],["-123.9333124","45.9226148"],["-123.9330089","45.9228294"],["-123.9326532","45.9231151"],["-123.9323001","45.9234168"],["-123.9319433","45.9237318"],["-123.931595","45.9240629"],["-123.9312359","45.9244386"],["-123.9309125","45.9248056"],["-123.930677","45.9250982"],["-123.9304227","45.9254424"],["-123.9302266","45.9257302"],["-123.9300458","45.9260168"],["-123.929871","45.9263216"],["-123.9294255","45.9272109"],["-123.928946","45.9282023"],["-123.927996","45.9301997"],["-123.9278768","45.9305143"],["-123.9277825","45.9308458"],["-123.9276994","45.9311635"],["-123.9276285","45.9314615"],["-123.9275528","45.9318162"],["-123.9274992","45.932121"],["-123.9274362","45.9324325"],["-123.927379","45.9326941"],["-123.9273052","45.9329615"],["-123.9272353","45.9331836"],["-123.9271724","45.9333478"],["-123.9270729","45.9335568"],["-123.9268987","45.9338909"],["-123.926724","45.9341482"],["-123.9265153","45.9344085"],["-123.9262981","45.9346344"],["-123.926022","45.9348848"],["-123.9257124","45.9351266"],["-123.9247275","45.9358112"],["-123.9236341","45.9365"],["-123.9202905","45.9385644"],["-123.9199559","45.9388024"],["-123.9197175","45.9390089"],["-123.9195499","45.9391716"],["-123.9193992","45.9393387"],["-123.9192727","45.9395199"],["-123.9191427","45.9397681"],["-123.9190434","45.9400472"],["-123.9189806","45.940312"],["-123.9189545","45.9405029"],["-123.918955","45.9406775"],["-123.9189727","45.9409006"],["-123.9190502","45.9412471"],["-123.9191719","45.9415843"],["-123.9192988","45.9418232"],["-123.919586","45.9422194"],["-123.9200103","45.9427806"],["-123.9238846","45.9478369"],["-123.9243702","45.9483647"],["-123.9256848","45.9494468"],["-123.9263502","45.9499836"],["-123.9265657","45.9502189"],["-123.9267182","45.9504653"],["-123.9268134","45.9507416"],["-123.9268259","45.9510142"],["-123.9267928","45.9513343"],["-123.9264088","45.9539238"],["-123.9263144","45.9544594"],["-123.9260795","45.9558285"],["-123.9260809","45.9560699"],["-123.9261044","45.9562566"],["-123.926195","45.9564603"],["-123.9263343","45.9567059"],["-123.9267519","45.9573272"],["-123.9268207","45.9574508"],["-123.9268757","45.9575619"],["-123.9269084","45.9576768"],["-123.9269271","45.9577942"],["-123.9269308","45.9579286"],["-123.926923","45.9580622"],["-123.9268981","45.9581876"],["-123.9268629","45.9582972"],["-123.9268085","45.9584072"],["-123.9267353","45.9585178"],["-123.9266312","45.9586261"],["-123.9265362","45.9587107"],["-123.9264321","45.9587977"],["-123.9262886","45.9588926"],["-123.9261266","45.9589857"],["-123.9257577","45.9591647"],["-123.92554","45.9592758"],["-123.9253172","45.9594104"],["-123.9251934","45.9595117"],["-123.9250957","45.9596039"],["-123.9250017","45.9597196"],["-123.9249017","45.9598815"],["-123.9239849","45.961669"],["-123.9236083","45.96241"],["-123.9235486","45.9625548"],["-123.923505","45.9626994"],["-123.9234674","45.9628343"],["-123.9234542","45.9629617"],["-123.9234567","45.963061"],["-123.9234757","45.9632619"],["-123.9235633","45.9635931"],["-123.924166","45.9655522"],["-123.9261922","45.972414"],["-123.9262934","45.97268"],["-123.9264072","45.9729321"],["-123.9264942","45.9731047"],["-123.9274084","45.9746754"],["-123.9275292","45.9748992"],["-123.9276729","45.9751548"],["-123.9278915","45.9755507"],["-123.9279612","45.9756943"],["-123.9280062","45.9758053"],["-123.928041","45.9759313"],["-123.9280666","45.9760541"],["-123.928077","45.9761665"],["-123.928083","45.9763005"],["-123.9280743","45.9764309"],["-123.9280473","45.976575"],["-123.9280055","45.9767061"],["-123.9279491","45.9768276"],["-123.9278949","45.976934"],["-123.9278284","45.9770504"],["-123.9277129","45.9772116"],["-123.9272132","45.9778591"],["-123.9270947","45.978026"],["-123.9269885","45.9781857"],["-123.9269095","45.9783508"],["-123.9268593","45.978501"],["-123.9268098","45.9786726"],["-123.9267793","45.9788015"],["-123.9266547","45.9795074"],["-123.9262047","45.9819538"],["-123.9259562","45.9829457"],["-123.925854","45.9832393"],["-123.9257775","45.9833989"],["-123.9256929","45.9835247"],["-123.925562","45.9836801"],["-123.9252679","45.9839864"],["-123.9246143","45.9846122"],["-123.9244629","45.9847459"],["-123.9241596","45.9849704"],["-123.9239793","45.9850934"],["-123.9236169","45.9853337"],["-123.9234057","45.9854952"],["-123.9232935","45.9855956"],["-123.9232363","45.9856622"],["-123.9231624","45.9857724"],["-123.9230591","45.9859692"],["-123.9228268","45.9865444"],["-123.9219659","45.9887833"],["-123.9217952","45.9892591"],["-123.9217689","45.9894044"],["-123.9217483","45.9895748"],["-123.9217428","45.9898535"],["-123.9217398","45.990235"],["-123.9217154","45.9904686"],["-123.9216759","45.9906277"],["-123.9216431","45.9907393"],["-123.9214215","45.9913212"],["-123.9213503","45.9914984"],["-123.9211569","45.9919857"],["-123.9209017","45.9925849"],["-123.9208088","45.99277"],["-123.9207154","45.9929328"],["-123.920171","45.9937611"],["-123.919961","45.9941361"],["-123.9198062","45.9944703"],["-123.9196915","45.9947472"],["-123.9196696","45.994807"],["-123.9196591","45.9948399"],["-123.9195392","45.9951481"],["-123.9194096","45.9954818"],["-123.9191501","45.9961818"],["-123.9190223","45.9965382"],["-123.9177521","45.9999845"],["-123.9176384","46.0001529"],["-123.9173581","46.000881"],["-123.9173556","46.0010092"],["-123.9157867","46.0051793"],["-123.9155384","46.005901"],["-123.914756","46.007974"],["-123.9146089","46.008336"],["-123.9144967","46.0085576"],["-123.9143572","46.0087634"],["-123.9142016","46.008964"],["-123.9140038","46.0091653"],["-123.9138538","46.0092914"],["-123.9136229","46.0094624"],["-123.9133386","46.0096451"],["-123.9117868","46.0105327"],["-123.9116429","46.0106199"],["-123.9115284","46.0106951"],["-123.9114104","46.0107861"],["-123.9113005","46.0108876"],["-123.9111945","46.0110151"],["-123.9111376","46.0111037"],["-123.9110178","46.0113314"],["-123.9109677","46.0114662"],["-123.9109098","46.0117977"],["-123.9108542","46.01255"],["-123.910848","46.0127371"],["-123.9108652","46.0129413"],["-123.9108945","46.0131212"],["-123.9110105","46.0136465"],["-123.9110887","46.0140199"],["-123.9111149","46.0142104"],["-123.9112542","46.0155217"],["-123.911317","46.0164443"],["-123.9113916","46.0188971"],["-123.9113966","46.0192374"],["-123.9114015","46.0195982"],["-123.9114054","46.0199262"],["-123.9114121","46.0202217"],["-123.9114426","46.0212572"],["-123.9114586","46.0221748"],["-123.9114823","46.0227084"],["-123.9115063","46.0231269"],["-123.9122331","46.02804"],["-123.9122997","46.0285063"],["-123.9123655","46.0289759"],["-123.9124182","46.0293406"],["-123.9126621","46.0309293"],["-123.9127179","46.0312697"],["-123.9129016","46.03262"],["-123.9130094","46.0334879"],["-123.913081","46.0343588"],["-123.9131307","46.0349896"],["-123.9131828","46.0358379"],["-123.9132102","46.0367805"],["-123.91321","46.0371207"],["-123.9132071","46.0375104"],["-123.9132148","46.0381218"],["-123.9132278","46.0389394"],["-123.9132616","46.039879"],["-123.9133561","46.0414936"],["-123.9133819","46.0419707"],["-123.9134259","46.0426913"],["-123.9134677","46.0433617"],["-123.9136412","46.045283"],["-123.9138088","46.0468823"],["-123.9139591","46.0486349"],["-123.9140327","46.0494737"],["-123.9140703","46.0498027"],["-123.914105","46.0501175"],["-123.9141435","46.0504441"],["-123.914259","46.0513662"],["-123.9143321","46.0519231"],["-123.9143916","46.0522445"],["-123.9144798","46.0525623"],["-123.9146411","46.0530799"],["-123.9147909","46.0536436"],["-123.9148813","46.0543585"],["-123.9151299","46.0568189"],["-123.9153053","46.058551"],["-123.9156489","46.0619718"],["-123.9157495","46.0628826"],["-123.9166289","46.0705563"],["-123.9167729","46.0716767"],["-123.9168462","46.0722811"],["-123.9169921","46.0735497"],["-123.9170069","46.073728"],["-123.917013","46.073866"],["-123.9170134","46.0740381"],["-123.9169997","46.0743034"],["-123.9168878","46.076263"],["-123.9166886","46.077338"],["-123.9155279","46.082808"],["-123.9154446","46.0832634"],["-123.9154183","46.0835665"],["-123.9154278","46.0838545"],["-123.9154744","46.0841606"],["-123.9172048","46.0923254"],["-123.9173063","46.092888"],["-123.9173365","46.0932087"],["-123.9173276","46.0934314"],["-123.9173006","46.0935868"],["-123.9172692","46.093723"],["-123.9172371","46.0938311"],["-123.9171878","46.0939449"],["-123.9171226","46.0940818"],["-123.9170562","46.0942146"],["-123.9164341","46.0951252"],["-123.9163597","46.0952879"],["-123.9163059","46.0954418"],["-123.9162593","46.0956066"],["-123.9162365","46.0957605"],["-123.9162266","46.095935"],["-123.9162393","46.0961347"],["-123.9162582","46.0962664"],["-123.9162914","46.096407"],["-123.9163372","46.0965342"],["-123.916402","46.0966791"],["-123.9167476","46.0973328"],["-123.9186317","46.1004567"],["-123.9188202","46.1008729"],["-123.9189911","46.1013809"],["-123.9191242","46.1017855"],["-123.9192078","46.10203"],["-123.9197785","46.1033771"],["-123.9213128","46.1068904"],["-123.9214708","46.1072672"],["-123.9215371","46.1074419"],["-123.921584","46.1075797"],["-123.9216362","46.1077453"],["-123.9216803","46.1079235"],["-123.9217244","46.1081138"],["-123.9218108","46.1086572"],["-123.9219037","46.1094238"],["-123.9219146","46.1095036"],["-123.9219303","46.1095992"],["-123.9219835","46.1098083"],["-123.9221394","46.1101697"],["-123.9226678","46.1112733"],["-123.9231176","46.1125167"],["-123.924525","46.1170133"],["-123.9271278","46.124602"],["-123.9277468","46.1265325"],["-123.9285963","46.1295918"],["-123.9288241","46.1304739"],["-123.9289133","46.1308499"],["-123.9289727","46.1311529"],["-123.9290343","46.1315423"],["-123.9290477","46.1317439"],["-123.9290397","46.1319161"],["-123.9289947","46.1322215"],["-123.9289344","46.1325365"],["-123.9288452","46.1328422"],["-123.9285529","46.133401"],["-123.9282272","46.1338716"],["-123.9255062","46.1372849"],["-123.924585","46.138441"],["-123.9215473","46.1422025"],["-123.9175013","46.1472559"],["-123.9157614","46.1494482"],["-123.9141105","46.1515266"],["-123.9136857","46.1520564"],["-123.9134273","46.1523526"],["-123.913196","46.1526007"],["-123.9129115","46.1528901"],["-123.9125929","46.1531629"],["-123.9122438","46.1533751"],["-123.9119981","46.1535582"],["-123.9117933","46.1536983"],["-123.9115541","46.1538554"],["-123.9113957","46.1540047"],["-123.8946636","46.1636114"],["-123.8943016","46.1638222"],["-123.8936725","46.1641748"],["-123.8926766","46.1647214"],["-123.891553","46.1652704"],["-123.8728403","46.1731855"],["-123.8722317","46.173454"],["-123.871607","46.1737446"],["-123.8711344","46.1739991"],["-123.8706401","46.174286"],["-123.8701407","46.1746173"],["-123.8697244","46.1749364"],["-123.8693252","46.1752545"],["-123.8689901","46.1755644"],["-123.8619573","46.1823058"],["-123.8618131","46.1824188"],["-123.8616456","46.1825262"],["-123.8614088","46.1826164"],["-123.8612649","46.1826662"],["-123.861143","46.1827009"],["-123.8610398","46.1827183"],["-123.860901","46.1827348"],["-123.8608194","46.1827137"],["-123.8607428","46.1827055"],["-123.8606627","46.1827109"],["-123.860589","46.1827298"],["-123.8605242","46.1827599"],["-123.8604735","46.1827996"],["-123.8604346","46.1828465"],["-123.8603233","46.1829543"],["-123.8602191","46.1830311"],["-123.8600091","46.1831633"],["-123.8599104","46.1832351"],["-123.8598305","46.1833104"],["-123.8597699","46.1833841"],["-123.8597057","46.1834862"],["-123.8596617","46.18361"],["-123.8596129","46.1837602"],["-123.8595609","46.1839915"],["-123.8595313","46.1841007"],["-123.8594732","46.1842143"],["-123.8594222","46.1843067"],["-123.8593747","46.1843613"],["-123.8593023","46.1844271"],["-123.8591946","46.1845182"],["-123.8589469","46.1846888"],["-123.8585115","46.1849602"],["-123.8581443","46.1851934"],["-123.857843","46.1853335"],["-123.8576345","46.1854267"],["-123.8574335","46.1855166"],["-123.8547422","46.1867264"],["-123.8526702","46.1876817"],["-123.8510734","46.1883816"],["-123.8491194","46.1892619"],["-123.8482892","46.1896753"],["-123.8476454","46.1900049"],["-123.8474476","46.1901128"],["-123.8472738","46.1902082"],["-123.8471285","46.1902819"],["-123.8469918","46.190339"],["-123.8468755","46.1903827"],["-123.8466797","46.1904467"],["-123.8466024","46.1904703"],["-123.8464371","46.1905126"],["-123.8462975","46.190543"],["-123.8461461","46.1905727"],["-123.8459878","46.1905953"],["-123.845847","46.1906122"],["-123.8456705","46.1906256"],["-123.845524","46.1906337"],["-123.8453662","46.1906363"],["-123.844808","46.1906303"],["-123.8444988","46.190625"],["-123.8363937","46.1904769"],["-123.8361446","46.1904497"],["-123.8358982","46.1903982"],["-123.8356364","46.1903181"],["-123.8350466","46.190076"],["-123.834793","46.1899039"],["-123.8347297","46.1898406"],["-123.8347074","46.1898097"],["-123.8346865","46.1897579"],["-123.834701","46.1890853"],["-123.8286455","46.188981"],["-123.8269111","46.1890701"],["-123.8259749","46.189106"],["-123.8257551","46.1891449"],["-123.8188377","46.1895088"],["-123.8186567","46.1895066"],["-123.8183652","46.1894705"],["-123.8181223","46.1894265"],["-123.817858","46.1893479"],["-123.8175873","46.1892501"],["-123.8171394","46.1890287"],["-123.8167711","46.1888704"],["-123.8164845","46.1887778"],["-123.8162881","46.1887382"],["-123.8160217","46.1887018"],["-123.8158039","46.1886845"],["-123.815569","46.1886835"],["-123.8154469","46.1886861"],["-123.8153167","46.1886924"],["-123.8151776","46.1887032"],["-123.8150211","46.1887218"],["-123.8148203","46.1887545"],["-123.8146579","46.1887844"],["-123.8145407","46.1888134"],["-123.814308","46.1888793"],["-123.8139866","46.1889891"],["-123.8050598","46.1930524"],["-123.8046574","46.193223"],["-123.8044337","46.1933036"],["-123.8042611","46.1933506"],["-123.8040541","46.1933976"],["-123.803807","46.1934446"],["-123.803482","46.1934936"],["-123.8032062","46.1935197"],["-123.8029509","46.1935334"],["-123.8012879","46.1935189"],["-123.8010251","46.193525"],["-123.8007067","46.1935373"],["-123.8001445","46.193603"],["-123.7998735","46.1936427"],["-123.7995408","46.1936804"],["-123.7991841","46.1937088"],["-123.7988213","46.1937309"],["-123.7982676","46.1937349"],["-123.7958935","46.1937127"],["-123.7953292","46.1937335"],["-123.7948992","46.193772"],["-123.7945562","46.1938181"],["-123.7942811","46.1938675"],["-123.7940293","46.1939375"],["-123.7938018","46.1940249"],["-123.7934388","46.1942023"],["-123.7931222","46.194339"],["-123.7928827","46.1944104"],["-123.7926494","46.1944436"],["-123.7921711","46.1944728"],["-123.7877621","46.1944437"],["-123.7874474","46.1944201"],["-123.7871628","46.1943705"],["-123.7868551","46.1943116"],["-123.7865805","46.1942679"],["-123.7863375","46.1942446"],["-123.7860844","46.1942309"],["-123.7794715","46.1942335"],["-123.7790202","46.1942475"],["-123.7787935","46.1942687"],["-123.7784823","46.1943212"],["-123.7781038","46.1944275"],["-123.7769839","46.1948299"],["-123.7766741","46.1949216"],["-123.776478","46.1949591"],["-123.776198","46.1950006"],["-123.7758767","46.1950317"],["-123.7755771","46.1950506"],["-123.7752593","46.195056"],["-123.7748758","46.1950525"],["-123.7671698","46.1946954"],["-123.7668853","46.1946686"],["-123.7665865","46.1946307"],["-123.7663035","46.1945896"],["-123.7660477","46.1945404"],["-123.7658007","46.1944856"],["-123.7655115","46.1944096"],["-123.765207","46.1943191"],["-123.7648871","46.1942168"],["-123.7645549","46.1940957"],["-123.7642279","46.1939478"],["-123.7633424","46.1934972"],["-123.7626064","46.1931116"],["-123.7621923","46.1929298"],["-123.7619488","46.1928489"],["-123.7616565","46.1927623"],["-123.761254","46.1926678"],["-123.7606317","46.192538"],["-123.7596861","46.1923418"],["-123.7594088","46.1922731"],["-123.7591556","46.1921887"],["-123.7589305","46.1921012"],["-123.7587133","46.1919961"],["-123.7585497","46.1919012"],["-123.7584161","46.1918093"],["-123.7581395","46.1915765"],["-123.7579944","46.1914178"],["-123.7577939","46.1911373"],["-123.7570893","46.1899827"],["-123.7568161","46.1895413"],["-123.7567201","46.189397"],["-123.7566401","46.1892985"],["-123.7565496","46.1891953"],["-123.7564411","46.1890976"],["-123.7563146","46.1890099"],["-123.7561628","46.1889292"],["-123.7559391","46.1888424"],["-123.7556805","46.188774"],["-123.7552465","46.1886773"],["-123.7549684","46.188605"],["-123.7547789","46.188534"],["-123.7546022","46.1884507"],["-123.7544586","46.1883701"],["-123.7543288","46.1882903"],["-123.7542109","46.1882068"],["-123.7539935","46.1879992"],["-123.7538521","46.1878125"],["-123.7537491","46.1876027"],["-123.7536756","46.1873527"],["-123.7535776","46.1868974"],["-123.7535355","46.1867754"],["-123.7534878","46.1866789"],["-123.7534239","46.1865917"],["-123.7533431","46.1864969"],["-123.7532553","46.1864193"],["-123.7531257","46.1863322"],["-123.7529626","46.1862465"],["-123.7527571","46.1861574"],["-123.7524436","46.1860309"],["-123.752104","46.185879"],["-123.7519628","46.1857926"],["-123.7518299","46.1857046"],["-123.7515986","46.1855263"],["-123.7515076","46.185444"],["-123.7514125","46.1853422"],["-123.7512674","46.1851716"],["-123.7511087","46.184943"],["-123.7508808","46.1845813"],["-123.7506093","46.1841305"],["-123.7505247","46.1839504"],["-123.7504743","46.1837998"],["-123.7504339","46.183649"],["-123.750407","46.1834876"],["-123.7503708","46.1831726"],["-123.7503353","46.1828004"],["-123.7503469","46.1826551"],["-123.7503724","46.1825476"],["-123.7504124","46.1824551"],["-123.7504595","46.1823707"],["-123.7505415","46.182279"],["-123.7506277","46.1821968"],["-123.7507445","46.1821201"],["-123.750947","46.1819935"],["-123.7511849","46.1818226"],["-123.7512738","46.1817176"],["-123.7513434","46.1816019"],["-123.7514023","46.1814761"],["-123.7514479","46.1813397"],["-123.7516086","46.1807458"],["-123.7516488","46.1805551"],["-123.7516579","46.1804173"],["-123.7516582","46.1802513"],["-123.7516448","46.1800734"],["-123.7516297","46.1798773"],["-123.751632","46.1796823"],["-123.7516488","46.1794686"],["-123.7516887","46.1792824"],["-123.7517721","46.179037"],["-123.7518549","46.178852"],["-123.7519674","46.1786649"],["-123.7520812","46.1785027"],["-123.7522076","46.17835"],["-123.7524059","46.178166"],["-123.7525961","46.178004"],["-123.7548365","46.1763496"],["-123.7553068","46.1759942"],["-123.7555385","46.1758172"],["-123.7557045","46.1756782"],["-123.7558394","46.1755612"],["-123.7559508","46.1754449"],["-123.7560564","46.1753258"],["-123.7567006","46.1744507"],["-123.7567704","46.1743441"],["-123.7568431","46.1742135"],["-123.7569042","46.1740617"],["-123.7569269","46.1739314"],["-123.7569318","46.1737951"],["-123.7569142","46.1736726"],["-123.7568682","46.1735363"],["-123.7567311","46.173201"],["-123.7565269","46.1727187"],["-123.7564681","46.1725651"],["-123.7564297","46.1724325"],["-123.7564272","46.1722855"],["-123.7564391","46.1721439"],["-123.7564765","46.172035"],["-123.7565364","46.1719082"],["-123.7566176","46.1717934"],["-123.7567076","46.1716603"],["-123.7567881","46.171514"],["-123.7568375","46.1713546"],["-123.7568548","46.1712072"],["-123.7568463","46.1709987"],["-123.7567821","46.1705255"],["-123.756733","46.1702644"],["-123.7566833","46.1700388"],["-123.7566217","46.1698527"],["-123.7565321","46.1696494"],["-123.7564548","46.1695131"],["-123.7563632","46.1693752"],["-123.7562264","46.1692117"],["-123.7560998","46.1690947"],["-123.7559711","46.1689821"],["-123.7558138","46.1688702"],["-123.755351","46.1685758"],["-123.7541029","46.1678776"],["-123.7524182","46.1669473"],["-123.751524","46.1664708"],["-123.7512407","46.1663503"],["-123.7510079","46.1662644"],["-123.7507462","46.1661818"],["-123.7504944","46.1661154"],["-123.7482469","46.1656087"],["-123.7479453","46.1655475"],["-123.7476938","46.1655028"],["-123.7474893","46.1654768"],["-123.7470872","46.1654389"],["-123.7469026","46.1654345"],["-123.7467268","46.1654382"],["-123.7465538","46.1654479"],["-123.7463439","46.1654681"],["-123.74587","46.1655481"],["-123.7451588","46.165736"],["-123.7448688","46.1658228"],["-123.7446299","46.1659073"],["-123.7444394","46.1659921"],["-123.7442595","46.1660822"],["-123.7441084","46.1661844"],["-123.7439472","46.166298"],["-123.7438248","46.1664102"],["-123.7437092","46.1665391"],["-123.7436009","46.1666714"],["-123.7435153","46.1667965"],["-123.7434549","46.1669273"],["-123.7434071","46.1670425"],["-123.7433778","46.1671631"],["-123.7433506","46.1673188"],["-123.7433244","46.1674496"],["-123.7432834","46.1675496"],["-123.7432152","46.1676667"],["-123.7431179","46.1677831"],["-123.7429721","46.1679087"],["-123.7427667","46.1680559"],["-123.7422656","46.1683706"],["-123.741827","46.1686099"],["-123.7409379","46.1690131"],["-123.7405759","46.1691725"],["-123.7403946","46.1692442"],["-123.7402078","46.1693067"],["-123.7400192","46.1693471"],["-123.7398164","46.1693661"],["-123.7396016","46.1693751"],["-123.7392194","46.1693685"],["-123.7387713","46.1693613"],["-123.7383116","46.1693963"],["-123.7376204","46.1695013"],["-123.737067","46.1695617"],["-123.7361829","46.1695701"],["-123.7357572","46.1696101"],["-123.7353851","46.1697233"],["-123.7350462","46.1698433"],["-123.7347201","46.1699504"],["-123.7344895","46.1700053"],["-123.734263","46.1700292"],["-123.7339198","46.1700269"],["-123.7334994","46.1700165"],["-123.7331398","46.1700128"],["-123.7328848","46.1700203"],["-123.7324411","46.1700472"],["-123.730099","46.1702516"],["-123.7296631","46.1702803"],["-123.7294462","46.1702749"],["-123.7292209","46.1702491"],["-123.7290109","46.1702061"],["-123.7288156","46.1701491"],["-123.7285526","46.1700512"],["-123.7281951","46.1699072"],["-123.7277909","46.1697559"],["-123.7276112","46.1696988"],["-123.7274201","46.1696481"],["-123.727253","46.1696081"],["-123.727064","46.1695698"],["-123.7266659","46.1695195"],["-123.7264424","46.1695069"],["-123.7260018","46.1695006"],["-123.7230105","46.1695044"],["-123.7227638","46.1695143"],["-123.7224554","46.1695437"],["-123.7222226","46.1695765"],["-123.7219697","46.1696197"],["-123.7217101","46.1696802"],["-123.7213301","46.1697761"],["-123.7202567","46.1700454"],["-123.7200172","46.1700938"],["-123.7197634","46.1701396"],["-123.7195002","46.1701781"],["-123.7192474","46.1702005"],["-123.7189554","46.1702105"],["-123.7186599","46.1702029"],["-123.7183752","46.1701779"],["-123.7178302","46.1701011"],["-123.7165654","46.1698531"],["-123.7160838","46.1697889"],["-123.7149684","46.1697401"],["-123.7147028","46.1697231"],["-123.7124576","46.169527"],["-123.7103856","46.169428"],["-123.7062797","46.1693862"],["-123.7052237","46.169349"],["-123.7046258","46.1692949"],["-123.7040022","46.1692076"],["-123.7036773","46.1691378"],["-123.7033569","46.1690604"],["-123.7030457","46.1689641"],["-123.7027734","46.1688671"],["-123.7024995","46.1687537"],["-123.702043","46.1685354"],["-123.6998967","46.1673427"],["-123.6992894","46.1670552"],["-123.6989435","46.1669062"],["-123.6986549","46.1667939"],["-123.6983909","46.1666991"],["-123.6981878","46.1666307"],["-123.6979622","46.1665605"],["-123.6977043","46.166497"],["-123.6973763","46.166435"],["-123.6971052","46.166388"],["-123.6968431","46.1663543"],["-123.696577","46.1663311"],["-123.6962663","46.1663118"],["-123.695942","46.166304"],["-123.695598","46.1663152"],["-123.6952886","46.1663342"],["-123.6950199","46.1663608"],["-123.6947213","46.1663989"],["-123.6944249","46.1664491"],["-123.693964","46.1665473"],["-123.6937479","46.1666008"],["-123.6935263","46.1666631"],["-123.6929","46.1668574"],["-123.6880872","46.1685325"],["-123.6861975","46.1692108"],["-123.6859749","46.1692846"],["-123.6855161","46.1694252"],["-123.6852964","46.1694961"],["-123.6849714","46.1696104"],["-123.6846495","46.1697366"],["-123.6843085","46.1698727"],["-123.6839553","46.1700004"],["-123.6835835","46.1701249"],["-123.683236","46.1702281"],["-123.6829077","46.170316"],["-123.6821513","46.1704848"],["-123.6816988","46.1705647"],["-123.6812805","46.1706218"],["-123.6809135","46.1706505"],["-123.6806108","46.1706647"],["-123.6802625","46.1706603"],["-123.6799027","46.1706451"],["-123.6793191","46.1705899"],["-123.6790579","46.1705572"],["-123.6787439","46.1705113"],["-123.6489749","46.1645508"],["-123.6475429","46.1642767"],["-123.6470522","46.1642068"],["-123.6465358","46.1641575"],["-123.645856","46.1641207"],["-123.6454936","46.164114"],["-123.6451038","46.164116"],["-123.6405882","46.1643718"],["-123.5667572","46.1691586"],["-123.5651493","46.1693875"],["-123.560117","46.1706088"],["-123.5554815","46.1717323"],["-123.5510738","46.1727619"],["-123.5389088","46.174967"],["-123.5354664","46.1755208"],["-123.5297778","46.1760619"],["-123.5284211","46.1761742"],["-123.5280532","46.176183"],["-123.5265166","46.1760954"],["-123.5220969","46.1758106"],["-123.5204595","46.175738"],["-123.5197143","46.1757773"],["-123.5188809","46.1759276"],["-123.5171229","46.1763552"],["-123.5161971","46.1765572"],["-123.5155569","46.1766205"],["-123.5148968","46.1766476"],["-123.5125642","46.1764106"],["-123.5014466","46.1750456"],["-123.4991834","46.1746036"],["-123.4932769","46.1728711"],["-123.4911086","46.1721602"],["-123.4898844","46.1715604"],["-123.4857304","46.1688926"],["-123.4853065","46.1687039"],["-123.4848434","46.1685234"],["-123.4842936","46.1683574"],["-123.483719","46.1682312"],["-123.4829172","46.1681192"],["-123.4820709","46.168068"],["-123.4811686","46.1680698"],["-123.4805497","46.1681283"],["-123.479396","46.1683257"],["-123.4778777","46.1687506"],["-123.4724816","46.1703921"],["-123.4714577","46.1706338"],["-123.4706849","46.1707198"],["-123.4691167","46.1706156"],["-123.4537537","46.1688689"],["-123.4523114","46.1687288"],["-123.4515729","46.1687157"],["-123.4506599","46.1687451"],["-123.4498958","46.1688287"],["-123.4480834","46.1691533"],["-123.4411783","46.1705405"],["-123.4401878","46.1707189"],["-123.4395838","46.1707754"],["-123.4391228","46.1707765"],["-123.4386837","46.1707519"],["-123.4381055","46.1706873"],["-123.4374731","46.1705657"],["-123.4366492","46.1703072"],["-123.4360921","46.1700339"],["-123.4355709","46.1696918"],["-123.4351306","46.1693376"],["-123.4347156","46.1688511"],["-123.4344575","46.1684304"],["-123.4342937","46.168008"],["-123.4342005","46.1675191"],["-123.4341997","46.1670123"],["-123.4343678","46.166234"],["-123.4345309","46.165648"],["-123.4346183","46.1651107"],["-123.4346206","46.1645834"],["-123.434516","46.1641201"],["-123.4343001","46.1636371"],["-123.4340373","46.163236"],["-123.4333742","46.1625419"],["-123.4320689","46.1613081"],["-123.4306505","46.1599867"],["-123.4301339","46.1595705"],["-123.4294054","46.1590605"],["-123.4287868","46.1586817"],["-123.4274225","46.1580736"],["-123.4156874","46.1537299"],["-123.4147105","46.1532965"],["-123.41335","46.1525169"],["-123.412221","46.1519197"],["-123.3773432","46.1327168"],["-123.3759346","46.1318239"],["-123.3750659","46.131212"],["-123.3735773","46.130152"],["-123.3729951","46.1297423"],["-123.3710729","46.1284689"],["-123.3695989","46.1275534"],["-123.36874","46.127099"],["-123.3679227","46.1266911"],["-123.3602759","46.1233592"],["-123.3585668","46.1226889"],["-123.3574029","46.1223408"],["-123.3563243","46.1220803"],["-123.3509676","46.1209936"],["-123.342511","46.1190325"],["-123.3305474","46.116319"],["-123.3191723","46.1138838"],["-123.3077739","46.1113743"],["-123.3057183","46.1109837"],["-123.303829","46.1107437"],["-123.301314","46.1105648"],["-123.2993767","46.1105348"],["-123.2978819","46.11058"],["-123.2964379","46.1106652"],["-123.2950808","46.1108081"],["-123.2929283","46.1111487"],["-123.2410707","46.1212661"],["-123.2400006","46.1214165"],["-123.2394788","46.121453"],["-123.2390366","46.1214617"],["-123.2383435","46.1214312"],["-123.2376481","46.1213613"],["-123.2369903","46.1212532"],["-123.2352302","46.1208784"],["-123.2321361","46.1201642"],["-123.2301383","46.1195442"],["-123.2273008","46.1184218"],["-123.2232341","46.1166812"],["-123.222154","46.1162496"],["-123.2171635","46.1143476"],["-123.2150826","46.1135204"],["-123.214069","46.1129827"],["-123.2130664","46.1123587"],["-123.2097073","46.1101293"],["-123.2079385","46.1089403"],["-123.2076974","46.1087314"],["-123.2074817","46.1084936"],["-123.207257","46.1082176"],["-123.2070388","46.1078095"],["-123.206633","46.1064155"],["-123.2065141","46.1061117"],["-123.2062589","46.1056763"],["-123.2061932","46.1055976"],["-123.2060424","46.1054373"],["-123.2058048","46.1052058"],["-123.2054487","46.1049535"],["-123.2047923","46.1045521"],["-123.2038789","46.1040952"],["-123.2029559","46.1035836"],["-123.201714","46.1029007"],["-123.2013824","46.1027353"],["-123.2010059","46.1025872"],["-123.2005853","46.1024327"],["-123.2000988","46.1022785"],["-123.1996499","46.1021558"],["-123.1991746","46.1020648"],["-123.1987223","46.101987"],["-123.198014","46.1019157"],["-123.1972449","46.1018868"],["-123.188584","46.1021569"],["-123.1867832","46.1022966"],["-123.1845781","46.1025247"],["-123.1819265","46.1028057"],["-123.1799877","46.1029101"],["-123.1781747","46.1029023"],["-123.1769619","46.1029275"],["-123.1758591","46.1030323"],["-123.1736835","46.1033923"],["-123.1725124","46.1035136"],["-123.1718074","46.1035221"],["-123.1690423","46.1033453"],["-123.1680147","46.1032502"],["-123.1673891","46.1031382"],["-123.1668444","46.1029717"],["-123.1662152","46.1026704"],["-123.1657103","46.102232"],["-123.1645676","46.1009619"],["-123.1639602","46.1003819"],["-123.163528","46.1000882"],["-123.1631341","46.0999076"],["-123.1627151","46.0997308"],["-123.1616198","46.0994922"],["-123.1597641","46.0991623"],["-123.1551779","46.0981587"],["-123.1514169","46.097331"],["-123.1437779","46.0958856"],["-123.1316889","46.093819"],["-123.1295103","46.0934739"],["-123.1285656","46.0933729"],["-123.1275728","46.0933326"],["-123.1265195","46.0933538"],["-123.1254063","46.0934481"],["-123.1233277","46.0938205"],["-123.1143222","46.0956754"],["-123.1130048","46.0959121"],["-123.1121144","46.096033"],["-123.1109767","46.0960817"],["-123.1097912","46.0960374"],["-123.1081261","46.0957937"],["-123.1002817","46.0943993"],["-123.0988973","46.0942166"],["-123.0977151","46.0941526"],["-123.0956488","46.094241"],["-123.0834847","46.0950398"],["-123.0819616","46.0951808"],["-123.0804772","46.0954049"],["-123.0785939","46.0958175"],["-123.0769521","46.0962759"],["-123.0712426","46.0981113"],["-123.0697996","46.0985438"],["-123.068599","46.0988155"],["-123.0677187","46.0989592"],["-123.0666421","46.0991011"],["-123.0654228","46.0992172"],["-123.0642152","46.0992678"],["-123.0631327","46.0992681"],["-123.0619116","46.0992072"],["-123.0164022","46.0955492"],["-123.0147029","46.0955448"],["-123.0133705","46.095602"],["-123.0127137","46.0956492"],["-123.0120307","46.0957122"],["-123.0111115","46.0958233"],["-123.0101398","46.0959645"],["-123.0089222","46.0961893"],["-123.0077243","46.0964689"],["-123.0066227","46.0967775"],["-123.0049735","46.097312"],["-123.0032881","46.0979857"],["-123.0015381","46.0987432"],["-123.0004018","46.0992409"],["-122.9997387","46.0995154"],["-122.9993044","46.0996765"],["-122.9986888","46.0998155"],["-122.9981767","46.0999173"],["-122.9978058","46.0999642"],["-122.9974071","46.0999875"],["-122.9970999","46.0999882"],["-122.9967891","46.0999715"],["-122.9964583","46.0999451"],["-122.9960291","46.0998897"],["-122.9937884","46.0995304"],["-122.9839165","46.0982505"],["-122.9832097","46.0981905"],["-122.9825933","46.0981552"],["-122.9797249","46.0980714"],["-122.9793143","46.0980413"],["-122.9789036","46.0979936"],["-122.9785198","46.0979297"],["-122.9781245","46.0978367"],["-122.9777419","46.0977261"],["-122.9773167","46.0975836"],["-122.9766626","46.0973105"],["-122.9748171","46.0965066"],["-122.9744039","46.0963381"],["-122.9740076","46.0961964"],["-122.9737088","46.0960729"],["-122.9724567","46.0956642"],["-122.9718952","46.0954294"],["-122.9714139","46.0951774"],["-122.9709062","46.0948614"],["-122.9706933","46.0947685"],["-122.9704681","46.0947221"],["-122.9702121","46.094719"],["-122.969981","46.0947524"],["-122.9697869","46.0948219"],["-122.9696702","46.0949111"],["-122.9696105","46.0950173"],["-122.9695124","46.0954214"],["-122.9693656","46.0960463"],["-122.9693152","46.0962271"],["-122.9692308","46.0964364"],["-122.9691209","46.0966346"],["-122.968973","46.0968668"],["-122.9684229","46.0975464"],["-122.965494","46.1007027"],["-122.9526144","46.1147574"],["-122.952511","46.1148279"],["-122.9522589","46.1150734"],["-122.952136","46.1151659"],["-122.9518867","46.1153105"],["-122.9514964","46.1155264"],["-122.9513083","46.1156505"],["-122.951161","46.1157754"],["-122.9504966","46.1164142"],["-122.9498541","46.1161538"],["-122.9496494","46.1160856"],["-122.9494634","46.1160292"],["-122.9492457","46.1159901"],["-122.9490063","46.1159555"],["-122.9486597","46.1159448"],["-122.9312292","46.1158322"],["-122.9307762","46.1158407"],["-122.9304368","46.1159179"],["-122.9301022","46.116074"],["-122.9298544","46.1162589"],["-122.9297191","46.1164326"],["-122.929625","46.116608"],["-122.9291398","46.117515"],["-122.9272053","46.1209768"],["-122.9266519","46.1217466"],["-122.926374","46.1219874"],["-122.9261604","46.1220909"],["-122.925979","46.1221289"],["-122.9257739","46.1221282"],["-122.925567","46.1221087"],["-122.9252739","46.12206"],["-122.9249268","46.1219488"],["-122.9206699","46.1194745"],["-122.9186247","46.1182018"],["-122.9168466","46.1171366"],["-122.9070337","46.1118685"],["-122.9026992","46.1095291"],["-122.900258","46.1082086"],["-122.8997585","46.1079834"],["-122.8995019","46.1078843"],["-122.8992294","46.1077837"],["-122.8982711","46.1074817"],["-122.8979519","46.1073976"],["-122.8972327","46.1072371"],["-122.8969148","46.1071813"],["-122.8965821","46.1071279"],["-122.8961444","46.1070727"],["-122.8955906","46.107013"],["-122.8868687","46.1064431"],["-122.8862011","46.1064088"],["-122.8857439","46.1064108"],["-122.8852739","46.1064267"],["-122.8848656","46.1065049"],["-122.8844902","46.1065697"],["-122.8840394","46.1066291"],["-122.88324","46.106733"],["-122.8825332","46.1068298"],["-122.8817643","46.1069296"],["-122.8811077","46.1069545"],["-122.8805824","46.1069513"],["-122.8801647","46.106919"],["-122.8794012","46.1068452"],["-122.8788083","46.1067821"],["-122.8782732","46.1067207"],["-122.8780578","46.1066785"],["-122.8779061","46.1066475"],["-122.8777628","46.106605"],["-122.8776423","46.1065568"],["-122.8775323","46.1064825"],["-122.8774165","46.1063936"],["-122.8773045","46.106253"],["-122.8772638","46.1061715"],["-122.877242","46.106102"],["-122.8772386","46.1060387"],["-122.8772617","46.1059791"],["-122.8772966","46.1059257"],["-122.877344","46.1058666"],["-122.8774107","46.105819"],["-122.8774828","46.1057841"],["-122.877571","46.1057541"],["-122.8776728","46.1057261"],["-122.877768","46.1057193"],["-122.8778612","46.10572"],["-122.8779635","46.1057289"],["-122.8780565","46.1057512"],["-122.8781392","46.1057835"],["-122.8782271","46.1058287"],["-122.878304","46.1058965"],["-122.8783715","46.1059727"],["-122.878504","46.1061901"],["-122.8795585","46.107978"],["-122.880034","46.108788"],["-122.8802697","46.1091899"],["-122.8812933","46.1105878"],["-122.8818545","46.1112275"],["-122.8839434","46.1143893"],["-122.8893403","46.1226868"],["-122.8895597","46.1229862"],["-122.8897294","46.1231998"],["-122.8899132","46.1234059"],["-122.8901244","46.1236148"],["-122.8905767","46.1239884"],["-122.8908614","46.1242029"],["-122.8912046","46.1244302"],["-122.8917031","46.1247138"],["-122.8922827","46.1249835"],["-122.8936046","46.1255559"],["-122.8949831","46.1261557"],["-122.8959175","46.1266399"],["-122.8966778","46.1271522"],["-122.8972853","46.1276784"],["-122.8977316","46.1281716"],["-122.8981845","46.1288668"],["-122.8984313","46.1293644"],["-122.8986291","46.1300282"],["-122.8987366","46.1308836"],["-122.8975555","46.1405712"],["-122.8973024","46.1425992"],["-122.8972864","46.1431076"],["-122.8972917","46.1435219"],["-122.8973176","46.1438488"],["-122.8973544","46.1441517"],["-122.8974198","46.1444919"],["-122.8976769","46.1455308"],["-122.8980478","46.1463796"],["-122.899431","46.1489629"],["-122.9001343","46.1503824"],["-122.9006185","46.1515002"],["-122.9007215","46.151769"],["-122.9011729","46.1531857"],["-122.9015284","46.1545326"],["-122.9019024","46.1566434"],["-122.9022817","46.1588766"],["-122.904089","46.1691863"],["-122.9044233","46.1715516"],["-122.9043742","46.1721642"],["-122.9042107","46.1729568"],["-122.9038984","46.1736395"],["-122.9035055","46.1743893"],["-122.9000451","46.1791372"],["-122.8989253","46.1807401"],["-122.8981324","46.18223"],["-122.8976511","46.1834332"],["-122.8926666","46.1979075"],["-122.8922536","46.1996889"],["-122.8921203","46.2018752"],["-122.891908","46.2081224"],["-122.8917373","46.2104333"],["-122.891217","46.213372"],["-122.8902112","46.217887"],["-122.8889049","46.2233406"],["-122.8860439","46.2403605"],["-122.8857469","46.2422391"],["-122.8851648","46.2446946"],["-122.8841728","46.2484363"],["-122.8839034","46.249953"],["-122.8836821","46.2509959"],["-122.8835398","46.2519287"],["-122.8835301","46.2529708"],["-122.8836465","46.2540787"],["-122.8839304","46.255106"],["-122.8842178","46.2557844"],["-122.8847356","46.2566052"],["-122.8856886","46.2579615"],["-122.8868475","46.2595826"],["-122.8875735","46.2605882"],["-122.8893778","46.2631873"],["-122.8909421","46.2655795"],["-122.8924882","46.2680273"],["-122.8985338","46.277816"],["-122.9012986","46.2825476"],["-122.9055148","46.2898991"],["-122.9092174","46.297172"],["-122.9106067","46.2999911"],["-122.9111287","46.3011622"],["-122.9117157","46.3029518"],["-122.9125763","46.3062518"],["-122.9140832","46.3121718"],["-122.9145811","46.3141929"],["-122.9149082","46.316381"],["-122.9149018","46.3181046"],["-122.9145312","46.3201128"],["-122.9140085","46.3214695"],["-122.913738","46.3220876"],["-122.9133438","46.3227782"],["-122.912895","46.3235363"],["-122.9098778","46.3278432"],["-122.9093685","46.328643"],["-122.9087797","46.3299178"],["-122.9084953","46.3309685"],["-122.9080346","46.3346134"],["-122.9065693","46.3471156"],["-122.906253","46.3496116"],["-122.9059635","46.3524167"],["-122.9057958","46.3545196"],["-122.9058708","46.3557715"],["-122.9064565","46.3583452"],["-122.9075227","46.3626166"],["-122.9078866","46.3644818"],["-122.9079532","46.3653302"],["-122.9079248","46.3664142"],["-122.9076854","46.3680495"],["-122.9026352","46.3872039"],["-122.9002069","46.3966021"],["-122.8999465","46.3973748"],["-122.899713","46.3978716"],["-122.899359","46.3984656"],["-122.8989759","46.3990197"],["-122.8985007","46.3995528"],["-122.8980454","46.3999997"],["-122.8970015","46.4008773"],["-122.8919617","46.4048891"],["-122.8913935","46.4054234"],["-122.8909929","46.4058572"],["-122.8905531","46.4064162"],["-122.8901885","46.4069935"],["-122.8899109","46.4075667"],["-122.8896776","46.4081971"],["-122.8895317","46.4088026"],["-122.8894592","46.4093747"],["-122.8894385","46.4100157"],["-122.8895546","46.4109205"],["-122.8902058","46.4146778"],["-122.8904537","46.4159345"],["-122.8910215","46.4191795"],["-122.8910858","46.4204059"],["-122.8908361","46.422613"],["-122.8836215","46.4732915"],["-122.8834311","46.4743524"],["-122.8832429","46.4750088"],["-122.8825633","46.4769365"],["-122.8773492","46.4911426"],["-122.8769481","46.4923022"],["-122.8767881","46.4929971"],["-122.876648","46.4937754"],["-122.8765742","46.4945793"],["-122.8765537","46.4952284"],["-122.8764727","46.562567"],["-122.8764774","46.5631909"],["-122.8765013","46.5636071"],["-122.8765695","46.5642527"],["-122.8767363","46.5649148"],["-122.8770788","46.5659183"],["-122.8818921","46.5762464"],["-122.8824971","46.5773094"],["-122.8831259","46.578197"],["-122.8910273","46.5864663"],["-122.8981242","46.5938751"],["-122.90051","46.5964107"],["-122.9011405","46.5972103"],["-122.9017776","46.5980769"],["-122.9046082","46.6023277"],["-122.9070073","46.6059492"],["-122.907629","46.6068351"],["-122.9081815","46.6075086"],["-122.9087623","46.6081852"],["-122.9093441","46.6086651"],["-122.9101288","46.6092359"],["-122.9222012","46.6176117"],["-122.9238114","46.6188791"],["-122.9512379","46.6417051"],["-122.9519213","46.6422252"],["-122.952635","46.642675"],["-122.9534234","46.6431407"],["-122.9554931","46.6442113"],["-122.9704363","46.6514927"],["-122.9714935","46.651998"],["-122.9722077","46.6524115"],["-122.9727355","46.6527728"],["-122.9755205","46.6550167"],["-122.976229","46.6556509"],["-122.9766829","46.6561123"],["-122.9768499","46.6563295"],["-122.9771188","46.6567204"],["-122.9772513","46.6569334"],["-122.9773634","46.6571319"],["-122.9774811","46.6573662"],["-122.9775954","46.6576261"],["-122.9776746","46.6578384"],["-122.9777886","46.6582201"],["-122.9779126","46.658681"],["-122.9781012","46.6595016"],["-122.9785089","46.6612135"],["-122.9788169","46.6624404"],["-122.9791705","46.6641082"],["-122.9793209","46.6646367"],["-122.9794159","46.664959"],["-122.9795147","46.6652646"],["-122.9796951","46.6657138"],["-122.9800437","46.6665421"],["-122.9801742","46.6668404"],["-122.9802836","46.6671132"],["-122.9803793","46.6673757"],["-122.9804617","46.6676317"],["-122.9805209","46.6678911"],["-122.9805545","46.6680899"],["-122.9805746","46.6682708"],["-122.9805853","46.6684488"],["-122.9805868","46.6686456"],["-122.9805748","46.6688832"],["-122.9805368","46.6691799"],["-122.9804996","46.6693697"],["-122.9804324","46.6696267"],["-122.9803401","46.6699002"],["-122.9802288","46.6701639"],["-122.9801085","46.6704036"],["-122.9799918","46.6706077"],["-122.9798109","46.6708799"],["-122.979569","46.671187"],["-122.9793518","46.6714455"],["-122.9788412","46.6719944"],["-122.9738115","46.6773418"],["-122.9730346","46.6781724"],["-122.972849","46.6783842"],["-122.9727013","46.678564"],["-122.9725553","46.6787541"],["-122.9723417","46.679058"],["-122.9721875","46.6792995"],["-122.9720286","46.6795774"],["-122.9718353","46.679957"],["-122.9716801","46.6803242"],["-122.9715741","46.6806147"],["-122.9714876","46.6808949"],["-122.9714214","46.6811589"],["-122.9713677","46.6814261"],["-122.9709229","46.6843311"],["-122.9697089","46.6924473"],["-122.9696762","46.6928525"],["-122.9696664","46.6932336"],["-122.9696761","46.6936003"],["-122.9697033","46.6939692"],["-122.9697508","46.6943447"],["-122.9698184","46.6947314"],["-122.9699062","46.6951107"],["-122.9700239","46.6955204"],["-122.974736","46.7094139"],["-122.9751229","46.7106061"],["-122.9752457","46.71109"],["-122.9755017","46.71277"],["-122.9768087","46.7237136"],["-122.9769038","46.7245508"],["-122.9769378","46.7250135"],["-122.9769531","46.7253547"],["-122.9769615","46.725745"],["-122.9769594","46.7261382"],["-122.9769544","46.7265321"],["-122.9769479","46.7269751"],["-122.9768925","46.727523"],["-122.9768227","46.7279649"],["-122.9767516","46.728376"],["-122.9766896","46.728725"],["-122.9766134","46.7290966"],["-122.9765175","46.729512"],["-122.9764313","46.7298481"],["-122.9762898","46.7303078"],["-122.9757412","46.7318493"],["-122.9753586","46.7329991"],["-122.9752132","46.7336315"],["-122.9751607","46.7339059"],["-122.9751081","46.7342332"],["-122.9750776","46.7345349"],["-122.9750748","46.7349662"],["-122.9751053","46.7356367"],["-122.9751472","46.7363021"],["-122.9752701","46.7369897"],["-122.9754409","46.7376752"],["-122.9756361","46.738226"],["-122.9757904","46.7386101"],["-122.9759634","46.7389869"],["-122.9761383","46.7393322"],["-122.9763024","46.7396327"],["-122.9764574","46.7398842"],["-122.977445","46.7412792"],["-122.9812057","46.7464142"],["-122.981546","46.7469086"],["-122.9818826","46.7474252"],["-122.9908942","46.7622227"],["-123.0089518","46.7918442"],["-123.0096315","46.7929743"],["-123.009926","46.7936574"],["-123.0100268","46.7939855"],["-123.0101013","46.7942975"],["-123.0101691","46.7946565"],["-123.0102255","46.7950511"],["-123.0102341","46.795466"],["-123.010224","46.7958988"],["-123.0101955","46.7962336"],["-123.0101574","46.796503"],["-123.0100808","46.796843"],["-123.0099978","46.7971856"],["-123.0097093","46.7979443"],["-123.0095646","46.7982317"],["-123.0094298","46.7984838"],["-123.0078238","46.8011915"],["-123.0072966","46.8020718"],["-123.0023142","46.8103205"],["-122.9729378","46.8593734"],["-122.9726641","46.8598879"],["-122.9724501","46.860339"],["-122.9722535","46.8608186"],["-122.9720518","46.8613764"],["-122.9623523","46.8914959"],["-122.9618751","46.8930565"],["-122.9600584","46.8985955"],["-122.9597605","46.8991782"],["-122.9596251","46.8995838"],["-122.959417","46.9000307"],["-122.9591528","46.9005637"],["-122.9587479","46.9012049"],["-122.9579248","46.9025676"],["-122.9568349","46.9043807"],["-122.9542152","46.9087741"],["-122.9478294","46.9193229"],["-122.9473416","46.9201434"],["-122.9470934","46.9206289"],["-122.9468449","46.9211282"],["-122.9466405","46.9216318"],["-122.9462706","46.9227301"],["-122.9408102","46.9411166"],["-122.9398285","46.9443821"],["-122.9390826","46.9468995"],["-122.938091","46.9496221"],["-122.937976","46.9498655"],["-122.9378635","46.9500637"],["-122.9377305","46.9502524"],["-122.9375788","46.9504213"],["-122.9372476","46.9507201"],["-122.9365521","46.9513166"],["-122.9362267","46.951601"],["-122.9360878","46.9517274"],["-122.9359662","46.951845"],["-122.9358684","46.9519647"],["-122.935791","46.95209"],["-122.9357353","46.952216"],["-122.9357008","46.9523408"],["-122.9356801","46.9525334"],["-122.9357406","46.9527397"],["-122.9371732","46.9527508"],["-122.9378448","46.9527473"],["-122.9392987","46.9527333"],["-122.9393279","46.9522041"],["-122.9392819","46.9519555"],["-122.9388578","46.9507854"],["-122.9387379","46.9504212"],["-122.9386978","46.9502113"],["-122.938684","46.9499997"],["-122.9387023","46.9497823"],["-122.9387545","46.9495061"],["-122.9391359","46.9478839"],["-122.9396178","46.9460855"],["-122.946581","46.9223975"],["-122.9467586","46.9218653"],["-122.9469807","46.921311"],["-122.9471608","46.9209151"],["-122.947382","46.9204738"],["-122.9476355","46.9200109"],["-122.9592473","46.9008214"],["-122.9595922","46.9002241"],["-122.9597497","46.8999104"],["-122.9599045","46.8995823"],["-122.9600623","46.8992329"],["-122.9603596","46.8984706"],["-122.9610633","46.8963502"],["-122.9614013","46.8956656"],["-122.9615635","46.895305"],["-122.9616959","46.8950403"],["-122.9617779","46.8948986"],["-122.9618442","46.8948098"],["-122.9619535","46.8947376"],["-122.9620838","46.8946827"],["-122.9622231","46.8946578"],["-122.9623694","46.8946457"],["-122.9625294","46.8946667"],["-122.9626783","46.894703"],["-122.9628038","46.8947752"],["-122.9629865","46.8949356"],["-122.9633954","46.8955865"],["-122.9634383","46.895795"],["-122.9633912","46.8959178"],["-122.9633141","46.8960244"],["-122.9630908","46.896175"],["-122.9621674","46.896441"],["-122.9618587","46.8965062"],["-122.9616576","46.8965385"],["-122.9614797","46.8965576"],["-122.9613171","46.8965686"],["-122.9611998","46.8965704"],["-122.959575","46.8964938"],["-122.9596089","46.8958414"],["-122.9596409","46.8956313"],["-122.9597069","46.8955331"],["-122.9597957","46.8954522"],["-122.9599192","46.895384"],["-122.9600836","46.8953375"],["-122.9602503","46.8953254"],["-122.9604179","46.8953407"],["-122.9605252","46.8953659"],["-122.9606044","46.895397"],["-122.960678","46.8954439"],["-122.9607422","46.8954987"],["-122.960799","46.8955507"],["-122.9608352","46.8956156"],["-122.9608557","46.8956752"],["-122.9608653","46.8957466"],["-122.9608649","46.8958255"],["-122.9608383","46.8959451"],["-122.9607274","46.8963285"],["-122.9605262","46.8971899"],["-122.9600512","46.8986144"],["-122.9597575","46.8991846"],["-122.9596246","46.8995855"],["-122.9594082","46.9000492"],["-122.9591451","46.9005773"],["-122.9587441","46.9012111"],["-122.9579551","46.9025177"],["-122.9568258","46.9043958"],["-122.9542611","46.9086983"],["-122.9478334","46.9193166"],["-122.9473447","46.9201375"],["-122.9470787","46.9206578"],["-122.9468424","46.921134"],["-122.9466452","46.921619"],["-122.9462835","46.9226882"],["-122.9408116","46.9411126"],["-122.9398127","46.9444349"],["-122.9391179","46.9467667"],["-122.934224","46.9633973"],["-122.9310159","46.974303"],["-122.9307228","46.9750751"],["-122.9304847","46.9756229"],["-122.9301553","46.9762903"],["-122.9301045","46.9763948"],["-122.9299731","46.9766243"],["-122.9297315","46.9770263"],["-122.9294483","46.9774531"],["-122.9290307","46.9780505"],["-122.9287641","46.9783826"],["-122.9255059","46.9822969"],["-122.9245782","46.9834845"],["-122.9159347","46.9938082"],["-122.9152299","46.9946964"],["-122.9148472","46.9952421"],["-122.9144675","46.9958441"],["-122.9121242","46.9998752"],["-122.9073259","47.0081613"],["-122.9066549","47.009345"],["-122.9065395","47.0095936"],["-122.9064502","47.0098219"],["-122.9063852","47.0100316"],["-122.9063172","47.0102711"],["-122.9062367","47.0108239"],["-122.9058394","47.0152286"],["-122.9057969","47.0158008"],["-122.9057798","47.016105"],["-122.9057759","47.0164207"],["-122.9057845","47.016521"],["-122.9058008","47.0166994"],["-122.9058072","47.0167794"],["-122.9058477","47.0171889"],["-122.9059471","47.0177525"],["-122.9060461","47.0183255"],["-122.9062472","47.019611"],["-122.9062779","47.0200006"],["-122.9062861","47.0201265"],["-122.9062879","47.0202621"],["-122.906278","47.0203804"],["-122.9062509","47.0206374"],["-122.9062298","47.0207818"],["-122.906153","47.0210661"],["-122.9060963","47.0212311"],["-122.90601","47.0214473"],["-122.9059914","47.0214893"],["-122.9059093","47.0216239"],["-122.9058133","47.0217892"],["-122.9055693","47.0221011"],["-122.9054421","47.0222448"],["-122.9053203","47.0223761"],["-122.9050573","47.0226185"],["-122.9049183","47.022728"],["-122.9047905","47.0228258"],["-122.9046615","47.0229193"],["-122.904427","47.0230729"],["-122.904171","47.0232241"],["-122.9039346","47.0233383"],["-122.9036843","47.0234555"],["-122.903435","47.023569"],["-122.9030632","47.0237108"],["-122.9027774","47.0238021"],["-122.9024708","47.02389"],["-122.9020981","47.0239843"],["-122.9010298","47.0242455"],["-122.9006604","47.0243505"],["-122.9002457","47.0244822"],["-122.8997474","47.0246585"],["-122.8990742","47.0249639"],["-122.8989314","47.0250421"],["-122.8986449","47.0252244"],["-122.8984792","47.0253442"],["-122.8979948","47.0257022"],["-122.8975333","47.0261143"],["-122.8963948","47.0272491"],["-122.8942376","47.0294541"],["-122.8934774","47.0303677"],["-122.8921715","47.0320157"],["-122.8918737","47.0323854"],["-122.8913208","47.0330164"],["-122.8907467","47.0335984"],["-122.890178","47.0339903"],["-122.8894504","47.0343758"],["-122.8889102","47.0345952"],["-122.8884741","47.0347677"],["-122.8872121","47.0351587"],["-122.8864467","47.0353084"],["-122.8861092","47.0353616"],["-122.8858273","47.0353964"],["-122.8842855","47.0355245"],["-122.8783443","47.035926"],["-122.8777658","47.0359942"],["-122.8773268","47.0360634"],["-122.876883","47.0361551"],["-122.8764272","47.0362715"],["-122.8754342","47.036615"],["-122.8749841","47.0368299"],["-122.873969","47.0373949"],["-122.8716237","47.0389933"],["-122.8708824","47.0394265"],["-122.8703648","47.0396936"],["-122.8698648","47.0399032"],["-122.869332","47.0400824"],["-122.8684928","47.0402904"],["-122.8678406","47.0404171"],["-122.8672777","47.040506"],["-122.8666979","47.0405447"],["-122.8661354","47.0405667"],["-122.8638142","47.0404929"],["-122.860583","47.0403825"],["-122.8586603","47.0403354"],["-122.8565117","47.0403194"],["-122.8556611","47.0403287"],["-122.8550995","47.0403712"],["-122.8544064","47.0404934"],["-122.8533105","47.0407462"],["-122.8519017","47.0412283"],["-122.8433231","47.0445862"],["-122.8423938","47.0448946"],["-122.8414747","47.0451078"],["-122.8384137","47.0454143"],["-122.8255664","47.0465251"],["-122.8229458","47.0468094"],["-122.8222561","47.0469611"],["-122.8218952","47.047057"],["-122.8214967","47.0471793"],["-122.8208035","47.0474602"],["-122.8201418","47.04778"],["-122.8194086","47.0482387"],["-122.8166128","47.0501567"],["-122.8109941","47.0540009"],["-122.8089398","47.0553795"],["-122.8086777","47.0555317"],["-122.8084072","47.0556796"],["-122.8081441","47.055814"],["-122.8078424","47.0559544"],["-122.8075767","47.0560696"],["-122.8072625","47.056194"],["-122.8070014","47.0562907"],["-122.8066905","47.0563976"],["-122.8063511","47.0565006"],["-122.8060653","47.0565779"],["-122.8057529","47.0566555"],["-122.8048361","47.0568246"],["-122.7716272","47.0623188"],["-122.7666271","47.0631196"],["-122.7659905","47.0631969"],["-122.7568002","47.064011"],["-122.7561203","47.0640878"],["-122.7364015","47.0670512"],["-122.7345257","47.067308"],["-122.7260788","47.0679237"],["-122.7248249","47.0679637"],["-122.7159696","47.067882"],["-122.7155583","47.0678937"],["-122.7150505","47.0679231"],["-122.7146248","47.0679587"],["-122.7142043","47.0680173"],["-122.7136497","47.0681131"],["-122.712972","47.0682858"],["-122.7119086","47.0686447"],["-122.6897039","47.0771319"],["-122.6886415","47.0775197"],["-122.6848519","47.0786596"],["-122.6722451","47.0822186"],["-122.6716934","47.0823398"],["-122.6710198","47.0824583"],["-122.6614919","47.0838458"],["-122.6601587","47.0841109"],["-122.6432924","47.0882239"],["-122.6422576","47.0884238"],["-122.639551","47.0889669"],["-122.6220964","47.0932889"],["-122.6217123","47.0933915"],["-122.6213169","47.093495"],["-122.6194596","47.0941085"],["-122.6190642","47.0942569"],["-122.618597","47.0944449"],["-122.6181459","47.0946378"],["-122.6083884","47.0994566"],["-122.6076345","47.0998104"],["-122.6072177","47.0999839"],["-122.6068242","47.1001367"],["-122.6064903","47.1002525"],["-122.5988655","47.1023602"],["-122.5978573","47.1025681"],["-122.5968203","47.1027113"],["-122.595712","47.1027855"],["-122.5941939","47.1028607"],["-122.5930385","47.1029251"],["-122.5926522","47.1029776"],["-122.5922712","47.1030407"],["-122.591742","47.1031464"],["-122.5908994","47.1033513"],["-122.5862561","47.1046959"],["-122.5857265","47.1048675"],["-122.5852059","47.1050414"],["-122.5848047","47.1051872"],["-122.5844473","47.10533"],["-122.5840331","47.1055075"],["-122.5835701","47.105718"],["-122.5830941","47.1059618"],["-122.5825947","47.1062303"],["-122.5809657","47.1071604"],["-122.5804856","47.107411"],["-122.5800404","47.1076151"],["-122.5795334","47.1078239"],["-122.5789598","47.1080287"],["-122.5757698","47.1089503"],["-122.5720606","47.1100353"],["-122.571647","47.1101812"],["-122.5711864","47.1103638"],["-122.5707674","47.1105481"],["-122.5703711","47.1107417"],["-122.569914","47.1109805"],["-122.5622947","47.1154321"],["-122.5573561","47.1181543"],["-122.5573108","47.1181795"],["-122.5570563","47.1183258"],["-122.5559322","47.1190364"],["-122.5527205","47.1210685"],["-122.5457027","47.1251442"],["-122.5433592","47.126431"],["-122.5416622","47.1274299"],["-122.5402141","47.1283424"],["-122.5292912","47.1348245"],["-122.5217545","47.138759"],["-122.5209713","47.1391275"],["-122.5203263","47.1393813"],["-122.5196262","47.1395932"],["-122.5188316","47.1398049"],["-122.5180658","47.1400032"],["-122.5171011","47.1403543"],["-122.5154241","47.1411915"],["-122.5029007","47.1478986"],["-122.4848878","47.1583613"],["-122.4843995","47.1586645"],["-122.4838726","47.1590362"],["-122.4832223","47.1595365"],["-122.482708","47.160028"],["-122.4738621","47.1688141"],["-122.4725564","47.1701047"],["-122.4705372","47.1720694"],["-122.4687512","47.1738247"],["-122.4673806","47.1752124"],["-122.4669296","47.1757553"],["-122.4665837","47.1762274"],["-122.466221","47.176756"],["-122.4660428","47.1770439"],["-122.4658707","47.1774133"],["-122.4656302","47.178107"],["-122.4625641","47.1893045"],["-122.4623071","47.1905237"],["-122.4622344","47.1913874"],["-122.4622173","47.1921036"],["-122.4621976","47.1929163"],["-122.4621848","47.1939208"],["-122.4621588","47.1956293"],["-122.4621257","47.1963233"],["-122.4620737","47.1970643"],["-122.4619976","47.1977149"],["-122.4618856","47.1984356"],["-122.4614638","47.2009018"],["-122.4611762","47.2028313"],["-122.4611342","47.2033297"],["-122.4611434","47.2036909"],["-122.4611744","47.2040804"],["-122.4623189","47.2128789"],["-122.4630848","47.2186317"],["-122.4632626","47.2201018"],["-122.4633161","47.2210117"],["-122.4633385","47.221741"],["-122.463338","47.2221372"],["-122.4633232","47.2225443"],["-122.4632721","47.2258224"],["-122.4631971","47.2262533"],["-122.4630163","47.2267182"],["-122.462759","47.2272864"],["-122.4625599","47.2276336"],["-122.462365","47.2279004"],["-122.4620487","47.228242"],["-122.4612765","47.2289604"],["-122.4609805","47.2291722"],["-122.4606769","47.2293759"],["-122.4604838","47.2294925"],["-122.460007","47.229752"],["-122.4596744","47.2299062"],["-122.4592612","47.230074"],["-122.4587755","47.2302358"],["-122.4583191","47.2303609"],["-122.4578621","47.2304513"],["-122.4573679","47.2305362"],["-122.4567396","47.2306179"],["-122.4559746","47.2306571"],["-122.4554345","47.2306588"],["-122.4547106","47.2306288"],["-122.4535327","47.2305233"],["-122.4519756","47.2303587"],["-122.4492646","47.2301048"],["-122.4487312","47.2300921"],["-122.4481751","47.2300854"],["-122.4475423","47.2300991"],["-122.4471771","47.2301202"],["-122.4463132","47.2301915"],["-122.4451476","47.230346"],["-122.4447033","47.2304225"],["-122.4442631","47.2305166"],["-122.4432559","47.2307599"],["-122.4406485","47.2314897"],["-122.4394842","47.2318421"],["-122.4386377","47.2320761"],["-122.4377165","47.2323202"],["-122.436902","47.2325729"],["-122.4358943","47.2327944"],["-122.435191","47.2329065"],["-122.4345036","47.2330014"],["-122.4316203","47.2333303"],["-122.430972","47.2334165"],["-122.4303877","47.2335117"],["-122.4296779","47.2336645"],["-122.4287094","47.2339182"],["-122.4280514","47.2341352"],["-122.427604","47.2343004"],["-122.425217","47.2353359"],["-122.4238274","47.2359405"],["-122.4211219","47.2371396"],["-122.4202911","47.2374813"],["-122.4196637","47.237703"],["-122.4190133","47.2378852"],["-122.4182406","47.2380756"],["-122.4175043","47.2382151"],["-122.4169777","47.2383045"],["-122.4055282","47.2393046"],["-122.4047091","47.2393576"],["-122.4040855","47.2394143"],["-122.4036196","47.2394675"],["-122.402651","47.2396135"],["-122.4022501","47.2396997"],["-122.4015456","47.2398826"],["-122.3990867","47.2405996"],["-122.3983947","47.2407897"],["-122.3979174","47.2409096"],["-122.3975407","47.2409969"],["-122.3966653","47.2411667"],["-122.3961261","47.2412361"],["-122.3955627","47.2412949"],["-122.3944584","47.2414152"],["-122.393747","47.2414664"],["-122.3930439","47.241498"],["-122.3923346","47.241513"],["-122.3913968","47.2414982"],["-122.3905019","47.2414584"],["-122.3897483","47.2414143"],["-122.3880663","47.2413094"],["-122.3746901","47.2404451"],["-122.3687328","47.2404722"],["-122.3420966","47.2411136"],["-122.3414192","47.2411625"],["-122.3409333","47.2412254"],["-122.3404144","47.2413053"],["-122.339895","47.2414068"],["-122.3392947","47.2415658"],["-122.3386113","47.2417597"],["-122.3381213","47.2419354"],["-122.3375192","47.2422219"],["-122.3369796","47.2425198"],["-122.3362968","47.242972"],["-122.3355496","47.2435493"],["-122.3350368","47.2440602"],["-122.3347578","47.2444359"],["-122.3345036","47.2448248"],["-122.3342795","47.245293"],["-122.3339931","47.2461469"],["-122.3329846","47.2496098"],["-122.332517","47.2514237"],["-122.3320742","47.2530998"],["-122.3315832","47.2542738"],["-122.3312165","47.2550829"],["-122.3306639","47.256099"],["-122.3294374","47.2578711"],["-122.3289268","47.2585208"],["-122.3284428","47.2590914"],["-122.3272938","47.2602862"],["-122.3249806","47.2624129"],["-122.3195235","47.2674655"],["-122.3171598","47.2697221"],["-122.3161207","47.2708731"],["-122.3149721","47.2722901"],["-122.3132268","47.2747651"],["-122.3097203","47.2803796"],["-122.3095066","47.2807651"],["-122.3091688","47.2814884"],["-122.3089571","47.2820186"],["-122.3082488","47.2840275"],["-122.3078617","47.2851195"],["-122.3075693","47.2860686"],["-122.301594","47.303847"],["-122.3004716","47.307023"],["-122.2953937","47.3196901"],["-122.2949972","47.3208119"],["-122.2946551","47.322037"],["-122.2944942","47.3226724"],["-122.2943998","47.3231626"],["-122.2942912","47.3236115"],["-122.2941999","47.3242189"],["-122.2939747","47.3265102"],["-122.2938435","47.3280588"],["-122.2925918","47.3429777"],["-122.2925705","47.3435642"],["-122.2925795","47.3441758"],["-122.2926181","47.3447"],["-122.2926856","47.3451698"],["-122.2927663","47.3455992"],["-122.2928717","47.3461097"],["-122.2929762","47.3465522"],["-122.2931448","47.3470999"],["-122.2934899","47.3479359"],["-122.2939353","47.3489054"],["-122.2946934","47.3504393"],["-122.2954409","47.3520298"],["-122.2957231","47.3527555"],["-122.2960627","47.3538202"],["-122.2961846","47.3544416"],["-122.2962615","47.3550199"],["-122.2963288","47.3556188"],["-122.2963383","47.3563331"],["-122.2963339","47.3569432"],["-122.2962795","47.3575595"],["-122.2962002","47.3581489"],["-122.2957007","47.3601323"],["-122.2936731","47.3681197"],["-122.2933042","47.3695731"],["-122.2904875","47.3806017"],["-122.2902698","47.3818147"],["-122.2900993","47.3828822"],["-122.2900604","47.3836059"],["-122.2900378","47.384169"],["-122.2900156","47.3848026"],["-122.2900059","47.3851938"],["-122.290008","47.3857426"],["-122.2900727","47.386836"],["-122.2902186","47.3881326"],["-122.2912851","47.3955658"],["-122.291593","47.3975549"],["-122.2920766","47.4008095"],["-122.2921985","47.4018196"],["-122.292257","47.4025355"],["-122.2922769","47.4036087"],["-122.2922515","47.4044633"],["-122.2921895","47.4053475"],["-122.2920661","47.4065885"],["-122.2918247","47.4081"],["-122.2914898","47.4094416"],["-122.29007","47.4146685"],["-122.2897356","47.4158352"],["-122.2895287","47.4164398"],["-122.2893339","47.4169617"],["-122.289053","47.4175457"],["-122.2886483","47.4182285"],["-122.2883311","47.418713"],["-122.2880521","47.4190833"],["-122.2877214","47.4195029"],["-122.2873493","47.4199458"],["-122.2870285","47.4202809"],["-122.2867868","47.420516"],["-122.2858919","47.4213098"],["-122.2854511","47.4216497"],["-122.2848807","47.4220545"],["-122.2842926","47.4224551"],["-122.2736436","47.4294049"],["-122.2730405","47.4298158"],["-122.2722718","47.4304151"],["-122.2718918","47.4307591"],["-122.271479","47.4311646"],["-122.2712032","47.4314603"],["-122.2709681","47.4317408"],["-122.2706417","47.4321931"],["-122.2703964","47.4325884"],["-122.2702033","47.4329734"],["-122.270049","47.4333959"],["-122.2699144","47.4338282"],["-122.269698","47.4347148"],["-122.2679745","47.4423901"],["-122.2675524","47.4443778"],["-122.2674045","47.4450462"],["-122.2672772","47.4455882"],["-122.2671242","47.4461036"],["-122.2664599","47.4478092"],["-122.2645596","47.4524129"],["-122.264082","47.4535016"],["-122.2638881","47.4542674"],["-122.2637012","47.4550433"],["-122.2635549","47.4557282"],["-122.2634547","47.4570159"],["-122.2633789","47.4590033"],["-122.2633654","47.4599496"],["-122.2633803","47.4604592"],["-122.2634048","47.4607741"],["-122.2634288","47.4609645"],["-122.2634594","47.4611303"],["-122.2635522","47.4614387"],["-122.2636636","47.4617245"],["-122.263982","47.4624539"],["-122.2641718","47.4627967"],["-122.2646883","47.4635766"],["-122.2652812","47.4643513"],["-122.2656779","47.4648225"],["-122.2660854","47.4653492"],["-122.2663164","47.4656842"],["-122.2666521","47.4662256"],["-122.266888","47.4666374"],["-122.2671373","47.4671054"],["-122.2675947","47.4681457"],["-122.2682267","47.4703595"],["-122.2685454","47.4716075"],["-122.2687803","47.4724719"],["-122.2689519","47.4730287"],["-122.2692947","47.4739822"],["-122.2707486","47.4770249"],["-122.2712079","47.4779648"],["-122.2713056","47.478186"],["-122.2713701","47.4783525"],["-122.2714839","47.4787154"],["-122.2715852","47.4791533"],["-122.2716465","47.4794472"],["-122.2716721","47.4797006"],["-122.271685","47.4799489"],["-122.271691","47.4802581"],["-122.271634","47.4808283"],["-122.2715847","47.4810631"],["-122.2715256","47.4813014"],["-122.2714036","47.4817119"],["-122.2711526","47.4823868"],["-122.2706642","47.483135"],["-122.2704023","47.4834445"],["-122.2700747","47.4838192"],["-122.2698152","47.4840722"],["-122.2691051","47.4846657"],["-122.2676645","47.4858231"],["-122.2658438","47.4872784"],["-122.2652322","47.4878331"],["-122.2648712","47.4882273"],["-122.2646352","47.4885878"],["-122.2644365","47.4889704"],["-122.2643245","47.4893153"],["-122.2642729","47.489578"],["-122.2642429","47.4899012"],["-122.2642411","47.4902672"],["-122.2642979","47.4906123"],["-122.2644112","47.4909627"],["-122.2645697","47.4912945"],["-122.2647888","47.4916186"],["-122.2649983","47.4918972"],["-122.2652818","47.4922092"],["-122.2665166","47.4932732"],["-122.2706599","47.4967163"],["-122.2724802","47.4983077"],["-122.273712","47.4994752"],["-122.2738508","47.4996093"],["-122.2777753","47.5034557"],["-122.2798394","47.5058064"],["-122.2824232","47.5091576"],["-122.2839604","47.5111874"],["-122.2855803","47.5133299"],["-122.2872349","47.5155102"],["-122.2881067","47.5168176"],["-122.2884134","47.5173762"],["-122.2902403","47.5210775"],["-122.2905897","47.5219601"],["-122.291885","47.5259619"],["-122.2923191","47.5271958"],["-122.2926958","47.528157"],["-122.2931428","47.5292179"],["-122.2935678","47.5301381"],["-122.294155","47.5313362"],["-122.2954279","47.5339032"],["-122.2957161","47.5344025"],["-122.2959877","47.5348329"],["-122.2962782","47.5352528"],["-122.2965828","47.5356348"],["-122.2971259","47.5362365"],["-122.2975657","47.5366902"],["-122.2982364","47.5373125"],["-122.303254","47.5416635"],["-122.3068894","47.5450052"],["-122.3080221","47.5460456"],["-122.3082439","47.5462215"],["-122.3091325","47.546876"],["-122.3096241","47.5472225"],["-122.3102664","47.5476357"],["-122.3125766","47.548992"],["-122.3145195","47.550215"],["-122.3152325","47.5506608"],["-122.3157447","47.550977"],["-122.3160049","47.551173"],["-122.3164766","47.5515916"],["-122.3167219","47.5518434"],["-122.3168986","47.5520551"],["-122.3170537","47.5522816"],["-122.3172267","47.5525719"],["-122.3173943","47.5528871"],["-122.3176596","47.5533232"],["-122.3189284","47.5553772"],["-122.319857","47.5567271"],["-122.3207055","47.5579899"],["-122.3211809","47.5591237"],["-122.3213896","47.559867"],["-122.3214481","47.5602676"],["-122.3214821","47.560585"],["-122.3214838","47.5611673"],["-122.3214407","47.5617964"],["-122.3213526","47.5624056"],["-122.3210804","47.5637634"],["-122.3207215","47.5656739"],["-122.3200622","47.5697096"],["-122.3197024","47.5753348"],["-122.3196787","47.5755822"],["-122.3196455","47.5758682"],["-122.3196126","47.5761015"],["-122.3195911","47.5762498"],["-122.3195298","47.5765345"],["-122.3194115","47.5770808"],["-122.3191241","47.5782586"],["-122.3190196","47.5788872"],["-122.3189842","47.579461"],["-122.3190405","47.5803789"],["-122.3197644","47.583412"],["-122.3199463","47.5847449"],["-122.3201363","47.5871285"],["-122.3201385","47.5879741"],["-122.3202015","47.5885738"],["-122.3203942","47.5892959"],["-122.3205656","47.5899578"],["-122.3206143","47.590448"],["-122.3206408","47.5908258"],["-122.3206475","47.5911102"],["-122.3206423","47.5913443"],["-122.3206328","47.5915273"],["-122.3205962","47.5918435"],["-122.3205769","47.5919825"],["-122.3205225","47.5922882"],["-122.3204845","47.5924615"],["-122.3204049","47.5927712"],["-122.3203596","47.5929258"],["-122.3203214","47.593051"],["-122.3202851","47.5931637"],["-122.320164","47.5935288"],["-122.3200826","47.5937694"],["-122.3198337","47.5945869"],["-122.3197896","47.5948075"],["-122.3197446","47.5951077"],["-122.3197257","47.5952702"],["-122.3197191","47.5954738"],["-122.3197359","47.5957382"],["-122.31975","47.596087"],["-122.3197727","47.5963152"],["-122.3197977","47.596465"],["-122.3198389","47.5966533"],["-122.3199046","47.5969137"],["-122.3199437","47.597064"],["-122.3200353","47.5973983"],["-122.3201665","47.5977107"],["-122.3202443","47.5978793"],["-122.3203151","47.5980145"],["-122.3204354","47.5982272"],["-122.3205246","47.5983696"],["-122.3206317","47.5985339"],["-122.3207453","47.5986922"],["-122.3208628","47.5988451"],["-122.321","47.5990119"],["-122.3211167","47.5991478"],["-122.3213857","47.5994323"],["-122.3215653","47.5996051"],["-122.3217747","47.5997972"],["-122.3224879","47.6003606"],["-122.3254576","47.6026174"],["-122.3257663","47.6028733"],["-122.3259967","47.6030983"],["-122.3266539","47.6039442"],["-122.327305","47.6047288"],["-122.3277063","47.6052267"],["-122.3281439","47.6058183"],["-122.3295778","47.6074814"],["-122.3299229","47.6073412"],["-122.3321929","47.6063837"]]}};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))); });