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:[-97.23377425606763,31.059734339795966],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":[-96.796796,32.775958],"type":"start"};markerData[1][1]={"lonLat":[-98.494624,29.425184],"type":"finish"};markerData[1][2]={"lonLat":[-97.6400857660269,30.77902972093079],"type":"star","c":{"popup":{"title":"Waco Route","text":"370 miles (6 hours 40 minutes*)"}}};markerData[1][3]={"lonLat":[-95.79992243726068,30.903645744779254],"type":"star","c":{"popup":{"title":"Houston Detour","text":"440 miles (6 hours 25 minutes*)"}}};const geojson_1_0={type:'Feature',properties:{},geometry:{type:'LineString',coordinates:[["-96.7958444","32.7761383"],["-96.7957478","32.7758836"],["-96.7956417","32.7755185"],["-96.7968252","32.7745104"],["-96.7969277","32.7744267"],["-96.797126","32.7741333"],["-96.7972742","32.7739395"],["-96.7974631","32.7737268"],["-96.7976835","32.7735369"],["-96.7979407","32.7733621"],["-96.7985129","32.773036"],["-96.7987839","32.7728558"],["-96.7990354","32.7726205"],["-96.7994642","32.7723404"],["-96.8000736","32.7718612"],["-96.8023063","32.7700612"],["-96.8024397","32.7699662"],["-96.8025769","32.769893"],["-96.8027898","32.7697992"],["-96.8030393","32.7696927"],["-96.8033602","32.7695552"],["-96.8036413","32.7694453"],["-96.8038897","32.7693388"],["-96.8041169","32.7692222"],["-96.8043792","32.7690488"],["-96.8045695","32.7689018"],["-96.8048011","32.7687027"],["-96.8050642","32.7683132"],["-96.8052195","32.7679764"],["-96.8053145","32.7677092"],["-96.8054098","32.7673261"],["-96.8055083","32.7669564"],["-96.8056393","32.766561"],["-96.8057618","32.7662541"],["-96.8059259","32.76589"],["-96.8062315","32.7654345"],["-96.8067488","32.7644513"],["-96.8075403","32.7629839"],["-96.8097441","32.7588702"],["-96.8098112","32.758676"],["-96.80988","32.7583961"],["-96.8099379","32.7581783"],["-96.8100016","32.7578931"],["-96.8100432","32.7576014"],["-96.8100581","32.7573572"],["-96.8100521","32.7570689"],["-96.8100262","32.7567131"],["-96.8099267","32.7561556"],["-96.8098029","32.7555204"],["-96.8096947","32.7549052"],["-96.8096454","32.754144"],["-96.8096608","32.7507945"],["-96.809698","32.7502375"],["-96.8097473","32.7498611"],["-96.8098332","32.7494738"],["-96.8100234","32.7488522"],["-96.810271","32.7483145"],["-96.8106296","32.7476688"],["-96.8110228","32.7471593"],["-96.811582","32.7465566"],["-96.8121841","32.7460023"],["-96.8124827","32.7457815"],["-96.8128971","32.7455163"],["-96.813616","32.7451059"],["-96.8152099","32.744243"],["-96.8153768","32.7441565"],["-96.819678","32.741945"],["-96.8208336","32.7413469"],["-96.8221209","32.7406222"],["-96.8226824","32.7402604"],["-96.8231076","32.7399035"],["-96.8234861","32.7394638"],["-96.8236436","32.7391977"],["-96.8237605","32.7389954"],["-96.8238386","32.7388275"],["-96.8239132","32.7386444"],["-96.8239642","32.7384938"],["-96.8240242","32.7382865"],["-96.8240847","32.7379481"],["-96.824168","32.7374813"],["-96.8241","32.7359801"],["-96.8240969","32.7354488"],["-96.8241321","32.7349075"],["-96.8241906","32.7345259"],["-96.8242543","32.7341863"],["-96.8244015","32.7336195"],["-96.8251961","32.7310246"],["-96.8254084","32.7302799"],["-96.8255118","32.7298268"],["-96.825579","32.7294799"],["-96.8256396","32.7290804"],["-96.8257107","32.7285023"],["-96.8258684","32.727451"],["-96.826104","32.7263572"],["-96.8263352","32.7254875"],["-96.8266002","32.724622"],["-96.8271076","32.7230369"],["-96.8272477","32.72232"],["-96.8282618","32.7188307"],["-96.8283961","32.7183378"],["-96.8285085","32.7178996"],["-96.8291652","32.7155867"],["-96.8296219","32.7141684"],["-96.8299949","32.713028"],["-96.8301208","32.7126481"],["-96.8302178","32.7122413"],["-96.8302538","32.7118884"],["-96.8302847","32.7115085"],["-96.8303039","32.7102588"],["-96.830316","32.7096297"],["-96.8303164","32.7092792"],["-96.830264","32.7089304"],["-96.8301955","32.7085794"],["-96.83008","32.7082564"],["-96.8299218","32.7078991"],["-96.8298675","32.7077901"],["-96.8294213","32.7072182"],["-96.8289161","32.7067086"],["-96.8287327","32.7065238"],["-96.8282356","32.7060219"],["-96.8279861","32.705772"],["-96.8272402","32.7050509"],["-96.8268997","32.7046881"],["-96.8265767","32.7043279"],["-96.8262633","32.7039559"],["-96.8255209","32.7029477"],["-96.8251541","32.7023282"],["-96.8249508","32.7019613"],["-96.8247454","32.7015659"],["-96.8242903","32.7005854"],["-96.8241475","32.7002121"],["-96.8240071","32.6998051"],["-96.8237508","32.699002"],["-96.8236129","32.6984511"],["-96.823515","32.697992"],["-96.8234229","32.6974124"],["-96.8233601","32.6968284"],["-96.823336","32.6965926"],["-96.8233116","32.6958788"],["-96.8232922","32.6939845"],["-96.8232933","32.6932993"],["-96.8232901","32.6928573"],["-96.8232893","32.6920361"],["-96.8232754","32.6915156"],["-96.8232217","32.6907437"],["-96.8231791","32.6901437"],["-96.8231418","32.6895124"],["-96.8231284","32.6890128"],["-96.823125","32.6874582"],["-96.8230982","32.6820673"],["-96.8230759","32.6815982"],["-96.8230315","32.6810883"],["-96.8227221","32.6780436"],["-96.8226704","32.6772189"],["-96.8226398","32.6763886"],["-96.8226372","32.6716019"],["-96.8226782","32.6704899"],["-96.8226917","32.670073"],["-96.8227787","32.6691249"],["-96.8229657","32.6672483"],["-96.8230617","32.6657911"],["-96.8230755","32.6643752"],["-96.8231058","32.6604624"],["-96.8231113","32.6591136"],["-96.8231222","32.6577303"],["-96.8231332","32.6572339"],["-96.8231642","32.6567884"],["-96.8232901","32.6554836"],["-96.8233165","32.655061"],["-96.8233346","32.6546216"],["-96.8233736","32.6484459"],["-96.8233745","32.6471286"],["-96.8231832","32.6190941"],["-96.8231611","32.6176148"],["-96.8230991","32.6065507"],["-96.8230655","32.6055534"],["-96.8230243","32.6048989"],["-96.8229404","32.6041447"],["-96.8227629","32.6030326"],["-96.8227158","32.6026843"],["-96.8226938","32.6024989"],["-96.8226457","32.6020002"],["-96.8225442","32.5942588"],["-96.8225299","32.592583"],["-96.8225083","32.5896342"],["-96.8224829","32.5889025"],["-96.822464","32.5880602"],["-96.8224752","32.5774171"],["-96.8225732","32.5700264"],["-96.8225698","32.5696058"],["-96.822526","32.5561264"],["-96.8225254","32.5554927"],["-96.8224737","32.5504254"],["-96.8222968","32.5451787"],["-96.822255","32.5354814"],["-96.822254","32.5347243"],["-96.8222491","32.5342202"],["-96.8222509","32.5334958"],["-96.8222562","32.5326567"],["-96.8222394","32.5184682"],["-96.8222387","32.5179487"],["-96.8222314","32.5090698"],["-96.822231","32.507088"],["-96.8222352","32.5051826"],["-96.8222452","32.5041056"],["-96.8222382","32.5025623"],["-96.8222448","32.5015478"],["-96.8222696","32.5010099"],["-96.8223291","32.5004262"],["-96.822414","32.4998374"],["-96.8225233","32.4992833"],["-96.8226495","32.4986909"],["-96.8228783","32.4978668"],["-96.823131","32.497157"],["-96.823554","32.4961674"],["-96.8239394","32.4954286"],["-96.8243336","32.4947299"],["-96.8248663","32.4938073"],["-96.825571","32.4926455"],["-96.8384323","32.4708399"],["-96.8386985","32.4704396"],["-96.8395784","32.4688879"],["-96.8397099","32.4686576"],["-96.8405105","32.4673033"],["-96.8410644","32.4663658"],["-96.8413454","32.4658646"],["-96.8416024","32.4653762"],["-96.8420968","32.4642377"],["-96.8448405","32.456848"],["-96.845098","32.4562163"],["-96.845265","32.455722"],["-96.8472728","32.4502344"],["-96.8474384","32.4498019"],["-96.8494978","32.4441781"],["-96.8497134","32.4436467"],["-96.8500163","32.4429709"],["-96.8504114","32.4422218"],["-96.8507232","32.4416845"],["-96.8509505","32.4413312"],["-96.8511868","32.4409838"],["-96.8514551","32.4406147"],["-96.8523175","32.439525"],["-96.8628884","32.4265557"],["-96.8635666","32.425723"],["-96.8685924","32.4195707"],["-96.8698857","32.4179309"],["-96.8702301","32.4174496"],["-96.8705274","32.4169971"],["-96.8707522","32.4166334"],["-96.8709504","32.4162917"],["-96.8713598","32.4155075"],["-96.8716374","32.414899"],["-96.8718179","32.4144562"],["-96.8720091","32.4139235"],["-96.872245","32.4131641"],["-96.8724012","32.4125634"],["-96.8724943","32.4121562"],["-96.872569","32.4117387"],["-96.8726611","32.4110949"],["-96.8727356","32.4103621"],["-96.8728375","32.4089717"],["-96.8731716","32.4045624"],["-96.873217","32.4037094"],["-96.8732019","32.4029995"],["-96.8731613","32.4023785"],["-96.8730717","32.4016035"],["-96.8729784","32.4010377"],["-96.8728801","32.4005706"],["-96.8728041","32.4002434"],["-96.8725289","32.39931"],["-96.8717561","32.3970209"],["-96.8714814","32.3961683"],["-96.8707046","32.3939454"],["-96.8693631","32.3899724"],["-96.8691287","32.3892768"],["-96.8647717","32.3764284"],["-96.8645197","32.3757892"],["-96.8643863","32.3754789"],["-96.8641434","32.3749784"],["-96.8640277","32.3747504"],["-96.8638125","32.3743508"],["-96.8635152","32.3738559"],["-96.8632685","32.3734662"],["-96.8629308","32.3729715"],["-96.862481","32.3723695"],["-96.8593978","32.3687169"],["-96.8588216","32.3680045"],["-96.8586191","32.3677279"],["-96.8583948","32.3674118"],["-96.8579857","32.3667092"],["-96.8577602","32.3662796"],["-96.8574209","32.3655071"],["-96.8556743","32.3613461"],["-96.8554443","32.3607827"],["-96.8553495","32.3604809"],["-96.8552425","32.3601328"],["-96.8551539","32.3597765"],["-96.8550774","32.3594249"],["-96.8550214","32.3590469"],["-96.8549531","32.358389"],["-96.8549234","32.3580241"],["-96.8547797","32.353338"],["-96.8547208","32.351456"],["-96.8546379","32.3488492"],["-96.8546397","32.3485315"],["-96.8546438","32.3484058"],["-96.8546502","32.3482612"],["-96.8546739","32.3479351"],["-96.854723","32.3475394"],["-96.8547844","32.3471774"],["-96.8548595","32.3468169"],["-96.8550678","32.3459062"],["-96.8552204","32.3452564"],["-96.858986","32.3284112"],["-96.859576","32.3256527"],["-96.8625687","32.3108725"],["-96.8626761","32.310309"],["-96.8638565","32.3044542"],["-96.8645525","32.3010695"],["-96.8675245","32.2865608"],["-96.8677411","32.2855081"],["-96.8696247","32.2762914"],["-96.8697166","32.2758487"],["-96.8703582","32.2726777"],["-96.870596","32.2715262"],["-96.8707689","32.2706807"],["-96.8724118","32.262652"],["-96.8725372","32.2620486"],["-96.8735422","32.257145"],["-96.8761078","32.244549"],["-96.8762298","32.2440299"],["-96.8763761","32.2434998"],["-96.8765943","32.2428194"],["-96.876877","32.2421024"],["-96.8775882","32.2406486"],["-96.8823541","32.2312719"],["-96.8829355","32.230148"],["-96.8871353","32.2219273"],["-96.8877779","32.2205117"],["-96.8878347","32.2203992"],["-96.8880182","32.2200853"],["-96.8880706","32.2199669"],["-96.8880907","32.2198581"],["-96.8881057","32.2197399"],["-96.8882418","32.2194174"],["-96.8900954","32.2150631"],["-96.8905135","32.214183"],["-96.8916427","32.2119027"],["-96.8919394","32.2113108"],["-96.8921737","32.2107828"],["-96.8942077","32.2066604"],["-96.8948009","32.2054123"],["-96.8957332","32.203478"],["-96.8968826","32.2011127"],["-96.8982858","32.1982474"],["-96.8992271","32.1963435"],["-96.8992819","32.196196"],["-96.899341","32.1960707"],["-96.899387","32.1959933"],["-96.8994294","32.195913"],["-96.9025055","32.1896454"],["-96.9056357","32.1833218"],["-96.9061915","32.1823662"],["-96.9073608","32.1804382"],["-96.9076512","32.1799682"],["-96.9077845","32.179746"],["-96.908078","32.1792256"],["-96.9086243","32.178193"],["-96.9100352","32.1753815"],["-96.9101924","32.1750961"],["-96.9105796","32.1744272"],["-96.9108782","32.1739795"],["-96.9113218","32.1733493"],["-96.9119704","32.1725543"],["-96.913325","32.1710703"],["-96.9141836","32.170151"],["-96.919961","32.1639317"],["-96.9208777","32.1629457"],["-96.9245165","32.1590168"],["-96.9251011","32.1583938"],["-96.9359695","32.1466808"],["-96.9367882","32.1458081"],["-96.9371104","32.1454938"],["-96.9374952","32.1451454"],["-96.9379619","32.1447447"],["-96.9384708","32.1443267"],["-96.9389688","32.1439464"],["-96.9395366","32.1435542"],["-96.9404003","32.1430173"],["-96.9451796","32.140221"],["-96.958016","32.1327143"],["-96.9646009","32.1288756"],["-96.9785523","32.1215237"],["-96.9788643","32.1213601"],["-96.9792487","32.1211516"],["-96.9798208","32.1208511"],["-96.9825806","32.1193989"],["-96.989609","32.1158475"],["-96.9980373","32.1116738"],["-97.0015096","32.1098843"],["-97.0050506","32.1076892"],["-97.0258663","32.0946922"],["-97.0260263","32.0946109"],["-97.0261509","32.0945468"],["-97.0262637","32.0944656"],["-97.0265491","32.094258"],["-97.0363359","32.0881193"],["-97.0373499","32.0874834"],["-97.0406991","32.0854661"],["-97.061372","32.0740719"],["-97.0699655","32.069376"],["-97.0737366","32.0672958"],["-97.075469","32.0663722"],["-97.0804345","32.0636237"],["-97.090894","32.0578172"],["-97.091421","32.0574834"],["-97.0918379","32.0571792"],["-97.0923085","32.0567861"],["-97.0927015","32.0564297"],["-97.0930051","32.0560991"],["-97.0932833","32.0557694"],["-97.093538","32.055435"],["-97.093732","32.0551537"],["-97.0938905","32.0548893"],["-97.0940326","32.0546289"],["-97.0941785","32.0543455"],["-97.0943123","32.0540539"],["-97.094427","32.0537687"],["-97.0945272","32.053467"],["-97.094637","32.0531149"],["-97.0947019","32.0528476"],["-97.0947891","32.0524317"],["-97.0948156","32.05217"],["-97.0948628","32.0514106"],["-97.09489","32.0504757"],["-97.0949164","32.049248"],["-97.0949362","32.047811"],["-97.0950531","32.0442184"],["-97.0950757","32.0436638"],["-97.095096","32.0431132"],["-97.095106","32.0424983"],["-97.0957951","32.0201429"],["-97.09576","32.0178888"],["-97.0956158","32.006823"],["-97.0956268","32.0061232"],["-97.0956718","32.0055626"],["-97.0957389","32.0050974"],["-97.0958277","32.0046559"],["-97.0959494","32.0041784"],["-97.0961161","32.0036481"],["-97.0963425","32.00306"],["-97.0966829","32.0023219"],["-97.0971945","32.0014722"],["-97.1135897","31.9775346"],["-97.1149069","31.9756415"],["-97.1184748","31.9704859"],["-97.1187094","31.9701111"],["-97.1189053","31.9697321"],["-97.1190606","31.9694043"],["-97.1192818","31.9687458"],["-97.1193842","31.9682502"],["-97.1194414","31.9678304"],["-97.1194628","31.9674573"],["-97.1194576","31.967054"],["-97.1194287","31.966722"],["-97.1193962","31.9664453"],["-97.1193529","31.9661973"],["-97.1193052","31.9659775"],["-97.1192425","31.9657599"],["-97.1191772","31.9655513"],["-97.1190858","31.9652952"],["-97.1142886","31.9544022"],["-97.1100889","31.9448052"],["-97.1095012","31.9434904"],["-97.1090026","31.9422997"],["-97.1000796","31.9219132"],["-97.0996119","31.9208299"],["-97.0985982","31.9184895"],["-97.0982153","31.9176415"],["-97.096585","31.9139938"],["-97.0959353","31.9125104"],["-97.0910907","31.9013907"],["-97.088616","31.8957344"],["-97.0882397","31.8949165"],["-97.0878026","31.8938812"],["-97.0843201","31.8859223"],["-97.0827163","31.8822187"],["-97.0825984","31.8819407"],["-97.082466","31.8816584"],["-97.082233","31.8810313"],["-97.0820497","31.88048"],["-97.0818103","31.8796647"],["-97.0817134","31.879245"],["-97.0816318","31.8788487"],["-97.0815595","31.878421"],["-97.0814968","31.8779461"],["-97.0814397","31.8774206"],["-97.0814119","31.8769827"],["-97.0813983","31.8764998"],["-97.0813992","31.8759123"],["-97.0814201","31.8754123"],["-97.0815117","31.8744562"],["-97.0835489","31.8615543"],["-97.083685","31.860701"],["-97.084371","31.8563284"],["-97.0847262","31.8532447"],["-97.0848191","31.8526382"],["-97.0849809","31.8518083"],["-97.0850484","31.8515052"],["-97.0851975","31.8509346"],["-97.085397","31.8502378"],["-97.085647","31.8494573"],["-97.085908","31.8487163"],["-97.0894109","31.8395004"],["-97.0901387","31.837663"],["-97.0918544","31.8337604"],["-97.0969126","31.8230067"],["-97.0973607","31.8218345"],["-97.097534","31.8213056"],["-97.0977143","31.8206624"],["-97.0978932","31.8199777"],["-97.0980198","31.8194047"],["-97.0981435","31.8186976"],["-97.0982701","31.817588"],["-97.0983482","31.8166612"],["-97.0985589","31.8134971"],["-97.0986624","31.8120105"],["-97.0988256","31.8106184"],["-97.0990093","31.8094057"],["-97.0992329","31.8082435"],["-97.0994426","31.8073568"],["-97.099656","31.8065238"],["-97.1018616","31.7987549"],["-97.1019943","31.7982231"],["-97.1022611","31.7969621"],["-97.1024613","31.7958581"],["-97.1025504","31.7951966"],["-97.1026442","31.7943273"],["-97.1028213","31.7917616"],["-97.1028647","31.7901733"],["-97.1027183","31.7871988"],["-97.1027034","31.7867363"],["-97.1026935","31.7856922"],["-97.1027275","31.7844836"],["-97.1042365","31.7609374"],["-97.1043071","31.7597172"],["-97.1043959","31.7578682"],["-97.1043978","31.7564408"],["-97.1024499","31.7147147"],["-97.1022627","31.7103169"],["-97.1022479","31.7088565"],["-97.1024273","31.7025868"],["-97.1024244","31.7020821"],["-97.1024","31.7014866"],["-97.1023521","31.7007689"],["-97.1022779","31.7000666"],["-97.1021999","31.6994826"],["-97.1020511","31.6987088"],["-97.1017113","31.6973848"],["-97.1011108","31.6951667"],["-97.1007084","31.6936031"],["-97.1005112","31.6926459"],["-97.100156","31.6901076"],["-97.1001038","31.6892648"],["-97.0996178","31.6747285"],["-97.0995254","31.6715178"],["-97.0995149","31.6710298"],["-97.099547","31.6696083"],["-97.099608","31.6686375"],["-97.0998883","31.6662457"],["-97.1004698","31.6618729"],["-97.1005625","31.6607618"],["-97.100952","31.6554599"],["-97.1010008","31.6545915"],["-97.1010005","31.6542135"],["-97.1009912","31.6538582"],["-97.1009722","31.653533"],["-97.1009512","31.6533122"],["-97.1008655","31.6527044"],["-97.100798","31.6523374"],["-97.1006908","31.6518653"],["-97.100515","31.65123"],["-97.1003718","31.6507884"],["-97.0999742","31.6498139"],["-97.0994595","31.6488344"],["-97.0979413","31.6461758"],["-97.0974835","31.6452896"],["-97.0973337","31.644948"],["-97.0971947","31.644594"],["-97.09707","31.6442575"],["-97.0969756","31.6439633"],["-97.0968859","31.6436411"],["-97.0967613","31.6431464"],["-97.0966987","31.6428485"],["-97.0966315","31.642485"],["-97.0965392","31.6417195"],["-97.0956863","31.6303833"],["-97.0956575","31.6294143"],["-97.0956693","31.6290431"],["-97.0957027","31.6285965"],["-97.0957479","31.628161"],["-97.0958068","31.6277713"],["-97.0959387","31.6271628"],["-97.0960905","31.626565"],["-97.0962654","31.6260078"],["-97.0964339","31.6255502"],["-97.0965771","31.6251997"],["-97.0967302","31.6248631"],["-97.1064512","31.6046616"],["-97.1070236","31.6034474"],["-97.1078866","31.6016306"],["-97.1080513","31.6012883"],["-97.1082236","31.6009039"],["-97.1083679","31.600558"],["-97.1084915","31.6002372"],["-97.1086025","31.5999092"],["-97.108736","31.5994889"],["-97.1088777","31.5989466"],["-97.1089958","31.5983703"],["-97.1090509","31.5979727"],["-97.1091378","31.5970875"],["-97.1091837","31.5964974"],["-97.1092398","31.5956869"],["-97.109298","31.5949674"],["-97.1093486","31.5941628"],["-97.1094466","31.5927227"],["-97.1094763","31.592248"],["-97.1099994","31.5833919"],["-97.11004","31.58289"],["-97.1100726","31.5826077"],["-97.1101148","31.5823113"],["-97.1101819","31.5819845"],["-97.1102588","31.5816691"],["-97.110357","31.5813432"],["-97.110602","31.5807169"],["-97.1107328","31.5804124"],["-97.1108661","31.5801374"],["-97.1110379","31.5798106"],["-97.1112818","31.5794008"],["-97.1115864","31.5789291"],["-97.1118769","31.5784722"],["-97.1121817","31.5780031"],["-97.1123404","31.5777518"],["-97.1129199","31.5768415"],["-97.1130653","31.5766096"],["-97.1150686","31.5734338"],["-97.1151574","31.5732951"],["-97.1154502","31.5728137"],["-97.1155984","31.5725533"],["-97.1157257","31.5723391"],["-97.1158642","31.5720472"],["-97.1161358","31.5713924"],["-97.116297","31.5709524"],["-97.1163961","31.5706358"],["-97.1165478","31.5700401"],["-97.1166327","31.569587"],["-97.1167063","31.5690975"],["-97.1167545","31.568607"],["-97.1167683","31.5680399"],["-97.1167643","31.5677312"],["-97.116744","31.5665778"],["-97.116732","31.565934"],["-97.1167203","31.5653649"],["-97.116704","31.5647724"],["-97.1166885","31.5643929"],["-97.116687","31.5640443"],["-97.1167021","31.5637273"],["-97.1167374","31.5634067"],["-97.1167997","31.5629991"],["-97.1168594","31.5626407"],["-97.1169165","31.5623527"],["-97.1169708","31.5621498"],["-97.1170628","31.5618417"],["-97.117287","31.5611531"],["-97.1174845","31.5606714"],["-97.1176906","31.560237"],["-97.1178306","31.5599699"],["-97.1185068","31.558792"],["-97.1213455","31.5538962"],["-97.1215728","31.5534939"],["-97.1263765","31.5450948"],["-97.1267697","31.5443742"],["-97.126958","31.5439924"],["-97.1275395","31.542656"],["-97.1282172","31.5405775"],["-97.1288504","31.5383555"],["-97.131415","31.5306704"],["-97.1317774","31.5297336"],["-97.1328305","31.5273789"],["-97.1333719","31.5261754"],["-97.1338042","31.5252424"],["-97.1339725","31.5248624"],["-97.1362861","31.5197783"],["-97.1366932","31.5189566"],["-97.1371456","31.5180662"],["-97.1389584","31.5149757"],["-97.1395165","31.5140204"],["-97.1399965","31.5132111"],["-97.1416429","31.5106029"],["-97.1420045","31.5100388"],["-97.1426426","31.5090036"],["-97.1427987","31.5087347"],["-97.1432466","31.5078708"],["-97.1435481","31.5072376"],["-97.1440424","31.5060806"],["-97.1443135","31.50545"],["-97.1454967","31.5028352"],["-97.1462014","31.5015218"],["-97.1466344","31.5007533"],["-97.1470595","31.5000176"],["-97.1511389","31.4931835"],["-97.1517369","31.4921369"],["-97.1519492","31.4917644"],["-97.1582173","31.4811571"],["-97.1598091","31.4787088"],["-97.1600899","31.4782689"],["-97.1604891","31.4776239"],["-97.1697011","31.4627351"],["-97.1756982","31.4525278"],["-97.1873147","31.4338349"],["-97.1935175","31.4229343"],["-97.1939411","31.4222533"],["-97.1949519","31.4206836"],["-97.1971103","31.4174283"],["-97.1980843","31.4158734"],["-97.2030903","31.4069778"],["-97.2052452","31.402957"],["-97.20585","31.4017284"],["-97.2100933","31.3920128"],["-97.2108118","31.3903343"],["-97.2115725","31.3885699"],["-97.2118119","31.3880048"],["-97.2124732","31.3862803"],["-97.2127799","31.3853008"],["-97.2129821","31.3845456"],["-97.2131498","31.3838588"],["-97.2159122","31.3700878"],["-97.2161117","31.3689762"],["-97.2166564","31.3660674"],["-97.2173087","31.3630519"],["-97.2182377","31.3585521"],["-97.2183952","31.3578082"],["-97.2190715","31.3547132"],["-97.2195663","31.3524947"],["-97.2214537","31.343618"],["-97.2217972","31.3418125"],["-97.2220146","31.341005"],["-97.2222263","31.3402577"],["-97.2224035","31.3396442"],["-97.222941","31.3380997"],["-97.2233076","31.3371906"],["-97.2238484","31.3359476"],["-97.2248751","31.3338118"],["-97.2251333","31.3332503"],["-97.2266038","31.3302325"],["-97.2270193","31.3294142"],["-97.2278048","31.3280119"],["-97.2281599","31.3274446"],["-97.2289787","31.326283"],["-97.2294341","31.325703"],["-97.2298457","31.325202"],["-97.2303042","31.3246823"],["-97.2308723","31.3240692"],["-97.231404","31.3235408"],["-97.2319991","31.322992"],["-97.2323862","31.322633"],["-97.2329106","31.3221712"],["-97.2353055","31.3203291"],["-97.2359619","31.3198357"],["-97.2365837","31.3193555"],["-97.2370349","31.3189951"],["-97.2374218","31.3186522"],["-97.2377547","31.3183415"],["-97.2383747","31.3176588"],["-97.2386834","31.3172814"],["-97.2390302","31.3167916"],["-97.2417309","31.3123447"],["-97.2423162","31.3113736"],["-97.2459587","31.3053614"],["-97.2461595","31.3050417"],["-97.2465216","31.304473"],["-97.2467723","31.3040666"],["-97.2470955","31.3035775"],["-97.2474786","31.3030026"],["-97.2480335","31.3021219"],["-97.2500229","31.299183"],["-97.2515828","31.2968086"],["-97.2522559","31.2957363"],["-97.2527934","31.2948238"],["-97.2534588","31.2935258"],["-97.2536951","31.2930122"],["-97.2538824","31.2925893"],["-97.2541034","31.2920908"],["-97.2543929","31.2913654"],["-97.2547934","31.2903594"],["-97.2550398","31.2896941"],["-97.2554628","31.2884791"],["-97.255722","31.2877736"],["-97.2562199","31.2864713"],["-97.256633","31.2854774"],["-97.2569223","31.2848572"],["-97.2573655","31.2839965"],["-97.2578912","31.2830311"],["-97.2582828","31.2823529"],["-97.2586986","31.2817204"],["-97.2598263","31.280118"],["-97.2604882","31.2792242"],["-97.2642865","31.2745626"],["-97.2658432","31.2725781"],["-97.2673903","31.2701891"],["-97.2828567","31.243606"],["-97.2844862","31.2406937"],["-97.2849515","31.2399304"],["-97.2857372","31.2385319"],["-97.2871522","31.2360898"],["-97.2876923","31.2351698"],["-97.2883852","31.2339462"],["-97.289096","31.2326178"],["-97.2896977","31.2313559"],["-97.2903541","31.2299369"],["-97.291193","31.2281662"],["-97.2919689","31.2268291"],["-97.2926956","31.2256141"],["-97.2942065","31.2234823"],["-97.295827","31.221201"],["-97.2963566","31.2204245"],["-97.297237","31.2189635"],["-97.2986139","31.2165735"],["-97.3002402","31.2136836"],["-97.3011264","31.2120645"],["-97.3018511","31.2105287"],["-97.3025814","31.20878"],["-97.303024","31.2075993"],["-97.3043328","31.20381"],["-97.3046384","31.202947"],["-97.3049113","31.2022929"],["-97.3052711","31.201506"],["-97.3058899","31.2002385"],["-97.3083357","31.1954097"],["-97.3091909","31.1933943"],["-97.3111163","31.1884758"],["-97.312312","31.1854595"],["-97.3134763","31.1825304"],["-97.3138625","31.1814332"],["-97.314242","31.1803531"],["-97.3144838","31.1796654"],["-97.3153691","31.1773584"],["-97.3157874","31.1761466"],["-97.316026","31.1753706"],["-97.3165881","31.1735964"],["-97.3169175","31.1726764"],["-97.3179531","31.1700992"],["-97.3184109","31.1690484"],["-97.3196277","31.1664303"],["-97.3204033","31.1645905"],["-97.3227615","31.1585387"],["-97.3232297","31.157342"],["-97.3243623","31.1544004"],["-97.3247959","31.1532056"],["-97.3251431","31.1520757"],["-97.3262481","31.1488133"],["-97.3312045","31.1359563"],["-97.3317102","31.1345964"],["-97.3334619","31.1301512"],["-97.3336751","31.1297623"],["-97.3339436","31.1293401"],["-97.3342482","31.1288882"],["-97.3345482","31.1284657"],["-97.3349578","31.1279874"],["-97.3353979","31.1275665"],["-97.335887","31.1271919"],["-97.3368185","31.1265957"],["-97.3383634","31.1259657"],["-97.3393466","31.125695"],["-97.3412058","31.1253165"],["-97.3420779","31.1251646"],["-97.3430706","31.1249723"],["-97.3459225","31.1244493"],["-97.3472436","31.124175"],["-97.3479182","31.1239928"],["-97.3484616","31.1237985"],["-97.3490568","31.1235641"],["-97.3497207","31.1232208"],["-97.3507254","31.1225638"],["-97.3513505","31.1220946"],["-97.3518012","31.1216644"],["-97.3523298","31.1210591"],["-97.352773","31.1204905"],["-97.3530488","31.1199879"],["-97.353251","31.1196238"],["-97.3534085","31.1193133"],["-97.3535561","31.1189777"],["-97.3537499","31.1184877"],["-97.3540184","31.1177877"],["-97.3542301","31.1172488"],["-97.3548132","31.1156898"],["-97.3554189","31.1140794"],["-97.3559288","31.1127"],["-97.3573381","31.1089312"],["-97.3581193","31.1069787"],["-97.3584969","31.105994"],["-97.3589462","31.104796"],["-97.359483","31.1035455"],["-97.3597433","31.1030024"],["-97.3600616","31.1024136"],["-97.3605632","31.101555"],["-97.360892","31.1010457"],["-97.3610895","31.1007713"],["-97.3612705","31.1005436"],["-97.3618945","31.0998803"],["-97.3622032","31.0996027"],["-97.3626181","31.0992527"],["-97.3636634","31.09847"],["-97.3648649","31.0977046"],["-97.3653122","31.0974605"],["-97.3655962","31.0973181"],["-97.3665455","31.0968842"],["-97.3671319","31.096665"],["-97.367744","31.0964755"],["-97.368542","31.0962554"],["-97.370487","31.0957704"],["-97.3739407","31.0948455"],["-97.3784331","31.0935489"],["-97.3806317","31.0928514"],["-97.3816702","31.092489"],["-97.3840129","31.0916595"],["-97.385333","31.091269"],["-97.3919452","31.0892025"],["-97.3927123","31.0889674"],["-97.4007859","31.0864749"],["-97.4057773","31.0849209"],["-97.4062433","31.0847627"],["-97.406797","31.0845385"],["-97.4073529","31.0842754"],["-97.4078199","31.084021"],["-97.4081241","31.0838349"],["-97.4084371","31.0836223"],["-97.4087515","31.0833922"],["-97.4091783","31.0830504"],["-97.4104224","31.0820048"],["-97.4112155","31.0813502"],["-97.422157","31.0721817"],["-97.4346842","31.0617178"],["-97.4354461","31.0612007"],["-97.4363151","31.0606722"],["-97.4369974","31.0603047"],["-97.4375985","31.0600035"],["-97.4380563","31.0597869"],["-97.4386356","31.0595401"],["-97.4394607","31.0592253"],["-97.4479343","31.0563495"],["-97.449877","31.0556122"],["-97.4521431","31.0546905"],["-97.4533637","31.0541696"],["-97.4547011","31.0535624"],["-97.4586236","31.0515632"],["-97.4594585","31.0511164"],["-97.4607429","31.0504396"],["-97.4620137","31.0497509"],["-97.4644542","31.048412"],["-97.4647568","31.0482232"],["-97.465678","31.047621"],["-97.4662685","31.0472349"],["-97.4665757","31.0470342"],["-97.4667282","31.0469425"],["-97.4670196","31.0467847"],["-97.4671611","31.0467235"],["-97.4673326","31.0466641"],["-97.4674966","31.0466125"],["-97.4678727","31.0465162"],["-97.4681409","31.0464692"],["-97.4683626","31.0464397"],["-97.4685595","31.0464266"],["-97.4687918","31.0464226"],["-97.4692567","31.0464512"],["-97.4697018","31.046496"],["-97.4701217","31.0465464"],["-97.4705362","31.0466089"],["-97.4708577","31.0466642"],["-97.4711958","31.0467312"],["-97.4821176","31.0493286"],["-97.484802","31.0498719"],["-97.4902026","31.0506598"],["-97.4916399","31.0509039"],["-97.4920238","31.0509741"],["-97.4925219","31.0510724"],["-97.4937089","31.0513211"],["-97.4939772","31.0513855"],["-97.494136","31.0514245"],["-97.4942937","31.0514686"],["-97.4944573","31.0515043"],["-97.4946649","31.0515576"],["-97.4948774","31.0516126"],["-97.4993062","31.0528427"],["-97.5029532","31.0539634"],["-97.5035522","31.0541421"],["-97.5055852","31.0546982"],["-97.5077949","31.0551859"],["-97.5086791","31.0553468"],["-97.5102025","31.0555712"],["-97.5122108","31.0557859"],["-97.5189175","31.0560539"],["-97.520706","31.0560938"],["-97.546116","31.0553175"],["-97.5484783","31.0552723"],["-97.5509635","31.0553006"],["-97.5528644","31.0553366"],["-97.5533478","31.0553636"],["-97.5538025","31.0554187"],["-97.5542253","31.055484"],["-97.5546094","31.055564"],["-97.5549477","31.0556554"],["-97.5555817","31.0558492"],["-97.5558719","31.0559476"],["-97.5561724","31.0560701"],["-97.556522","31.0562249"],["-97.5573697","31.0566715"],["-97.5578096","31.056944"],["-97.5582437","31.0572571"],["-97.5600447","31.0586724"],["-97.5608408","31.0592683"],["-97.5613201","31.0595838"],["-97.5617842","31.0598381"],["-97.5622842","31.0600919"],["-97.5628232","31.0603238"],["-97.5679481","31.0624288"],["-97.5817313","31.0683116"],["-97.5831216","31.0688404"],["-97.6130043","31.0786877"],["-97.6166411","31.0798809"],["-97.6228149","31.0815164"],["-97.6266326","31.0822433"],["-97.6351359","31.0836415"],["-97.6356715","31.0836873"],["-97.6362581","31.0837203"],["-97.6368306","31.083747"],["-97.6376814","31.0837352"],["-97.6381429","31.0837166"],["-97.6386239","31.0836825"],["-97.6393087","31.0836085"],["-97.6399332","31.0835147"],["-97.6403211","31.0834433"],["-97.6411156","31.0832731"],["-97.6418541","31.0830744"],["-97.642199","31.0829645"],["-97.6426592","31.0827963"],["-97.6437216","31.0823744"],["-97.6443226","31.0821118"],["-97.6457399","31.081326"],["-97.6606865","31.0726323"],["-97.6611814","31.0723842"],["-97.6617893","31.0721236"],["-97.662362","31.0719188"],["-97.6629931","31.0717196"],["-97.6633158","31.0716299"],["-97.6641268","31.0714465"],["-97.6650647","31.0712967"],["-97.6667144","31.0710491"],["-97.667102","31.0709974"],["-97.6675876","31.0709505"],["-97.6680899","31.0709205"],["-97.6687172","31.0709136"],["-97.6693706","31.0709402"],["-97.6699142","31.0709872"],["-97.6705119","31.0710563"],["-97.6711589","31.0711614"],["-97.6719446","31.0713212"],["-97.6724393","31.0714409"],["-97.6852549","31.0752694"],["-97.690017","31.0767046"],["-97.6914084","31.0771569"],["-97.691907","31.0773449"],["-97.6924058","31.0775493"],["-97.692716","31.0776906"],["-97.6991602","31.0808601"],["-97.7001912","31.0813668"],["-97.7063599","31.0844023"],["-97.7216205","31.0918776"],["-97.7220611","31.092057"],["-97.7226305","31.0922599"],["-97.7339314","31.0952289"],["-97.7344513","31.0953861"],["-97.7347984","31.0955044"],["-97.7351656","31.0956563"],["-97.7356366","31.0958766"],["-97.7362469","31.0961964"],["-97.7367782","31.0965303"],["-97.7372935","31.0969047"],["-97.7377175","31.0972581"],["-97.7380779","31.0975984"],["-97.7384373","31.0979878"],["-97.7386961","31.098311"],["-97.7388996","31.0985821"],["-97.7391636","31.0989674"],["-97.7411136","31.1019794"],["-97.7422262","31.1036845"],["-97.7431339","31.105052"],["-97.7434361","31.1054739"],["-97.7438032","31.1059346"],["-97.7443061","31.1065091"],["-97.7448304","31.1070468"],["-97.74531","31.1074897"],["-97.7461478","31.1081699"],["-97.7466584","31.1085266"],["-97.7472344","31.1089007"],["-97.7478783","31.1092838"],["-97.7484908","31.1096217"],["-97.7489897","31.1098595"],["-97.7500772","31.110328"],["-97.7507665","31.1105872"],["-97.7513448","31.1107769"],["-97.7522388","31.1110293"],["-97.7527145","31.111139"],["-97.7534656","31.1112753"],["-97.7555294","31.1117814"],["-97.7588051","31.1127376"],["-97.7592483","31.1129053"],["-97.7598502","31.1131788"],["-97.7603853","31.1134784"],["-97.761011","31.1138652"],["-97.7615975","31.1142513"],["-97.7620692","31.1146484"],["-97.7623958","31.1149516"],["-97.7656041","31.1180404"],["-97.7659868","31.1183865"],["-97.7662723","31.1186157"],["-97.7665208","31.1187973"],["-97.7673188","31.1192583"],["-97.7677217","31.1194516"],["-97.7682811","31.1196766"],["-97.7691646","31.1199902"],["-97.7751718","31.1221478"],["-97.7756229","31.1222685"],["-97.7760575","31.1223619"],["-97.7766993","31.1224653"],["-97.777636","31.1225685"],["-97.7784512","31.1226025"],["-97.7791058","31.1226181"],["-97.7799249","31.122611"],["-97.7832579","31.1226688"],["-97.7855486","31.1227182"],["-97.7863629","31.1227112"],["-97.7880934","31.1227242"],["-97.789861","31.1226687"],["-97.7908651","31.1226004"],["-97.7920113","31.1225061"],["-97.7947836","31.1222172"],["-97.7966615","31.1220604"],["-97.7984859","31.1220137"],["-97.7996405","31.1220018"],["-97.8002583","31.1220358"],["-97.8009673","31.1220856"],["-97.806343","31.1225397"],["-97.807749","31.1226253"],["-97.8088996","31.1226622"],["-97.8100792","31.1226702"],["-97.8502741","31.1218717"],["-97.8548917","31.1214332"],["-97.8560358","31.1212835"],["-97.8569895","31.1211301"],["-97.8576429","31.1209611"],["-97.8585666","31.1206213"],["-97.8593315","31.1202784"],["-97.860271","31.1197796"],["-97.8609713","31.1193229"],["-97.8620638","31.1184376"],["-97.8628156","31.1177473"],["-97.8634887","31.1168984"],["-97.8677767","31.1100629"],["-97.8682953","31.1092414"],["-97.8688786","31.1084391"],["-97.8694375","31.1078276"],["-97.8701466","31.1071415"],["-97.8712821","31.1063129"],["-97.8724737","31.1056475"],["-97.8736763","31.10516"],["-97.8746248","31.1048705"],["-97.8798253","31.1037545"],["-97.8862721","31.1023811"],["-97.8912878","31.1013014"],["-97.8923211","31.1009413"],["-97.8931598","31.1005767"],["-97.893781","31.1002465"],["-97.8945487","31.0997367"],["-97.8969603","31.097846"],["-97.8979815","31.0971618"],["-97.8988485","31.0967125"],["-97.9003309","31.096196"],["-97.9015549","31.0959321"],["-97.9021174","31.0958835"],["-97.9028613","31.095851"],["-97.9091795","31.0958825"],["-97.9098561","31.0958719"],["-97.910476","31.0957983"],["-97.9110658","31.0957132"],["-97.9117196","31.0955909"],["-97.9135777","31.0951371"],["-97.9154157","31.094735"],["-97.9166817","31.0946263"],["-97.9173609","31.094644"],["-97.9177303","31.0946874"],["-97.9182182","31.0947636"],["-97.9184153","31.0948015"],["-97.918955","31.0949347"],["-97.9240896","31.0961513"],["-97.9250309","31.0963557"],["-97.9251873","31.0963806"],["-97.9256425","31.0964366"],["-97.9258937","31.0964603"],["-97.9262572","31.0964833"],["-97.9266478","31.0964976"],["-97.9272735","31.0964837"],["-97.9477645","31.0955225"],["-97.9481107","31.0954966"],["-97.9483845","31.0954692"],["-97.9486778","31.0954328"],["-97.9489438","31.0953932"],["-97.949224","31.0953435"],["-97.9494985","31.095287"],["-97.949758","31.0952246"],["-97.9500452","31.0951497"],["-97.9503204","31.095071"],["-97.9507949","31.0949102"],["-97.9517701","31.0944973"],["-97.9616274","31.0901909"],["-97.9643444","31.0887528"],["-97.9812277","31.0800954"],["-97.9814375","31.0800023"],["-97.9818732","31.0798219"],["-97.9821687","31.0797141"],["-97.9824529","31.0796173"],["-97.9827357","31.0795285"],["-97.9830437","31.0794433"],["-97.9833536","31.0793712"],["-97.9836538","31.0793089"],["-97.9839846","31.0792507"],["-97.9842916","31.079204"],["-97.9846205","31.0791667"],["-97.9849291","31.0791426"],["-97.9853094","31.079121"],["-97.9856977","31.0791128"],["-97.9905696","31.079323"],["-97.991091","31.0793353"],["-97.9915882","31.0793286"],["-97.9924419","31.0792952"],["-97.9973541","31.0788692"],["-97.9976158","31.0788493"],["-97.9979142","31.0788391"],["-97.9981629","31.0788423"],["-97.9986066","31.0788812"],["-97.9988202","31.0789133"],["-97.9990221","31.0789505"],["-97.9993074","31.0790214"],["-97.9994508","31.0790616"],["-97.9998274","31.0791995"],["-98.0003883","31.0794586"],["-98.0036152","31.0811294"],["-98.0039049","31.0812712"],["-98.0040001","31.081315"],["-98.0042167","31.0814079"],["-98.0045446","31.0815372"],["-98.0047456","31.0816055"],["-98.0049664","31.0816717"],["-98.005383","31.0817803"],["-98.0056072","31.0818273"],["-98.0058602","31.0818723"],["-98.0060739","31.0819053"],["-98.0063329","31.0819387"],["-98.00655","31.0819554"],["-98.0069305","31.0819721"],["-98.0071927","31.0819734"],["-98.007455","31.081963"],["-98.0077241","31.0819469"],["-98.0079633","31.0819255"],["-98.0081645","31.0819019"],["-98.0084801","31.0818499"],["-98.0087226","31.0818023"],["-98.0089915","31.0817376"],["-98.0171823","31.0792458"],["-98.0176486","31.0790986"],["-98.0179008","31.0790261"],["-98.0181867","31.0789519"],["-98.0190832","31.0787534"],["-98.0193845","31.0786946"],["-98.0197537","31.078635"],["-98.0201195","31.0785872"],["-98.0205757","31.0785466"],["-98.0207023","31.0785217"],["-98.0209184","31.0785016"],["-98.0330907","31.0778622"],["-98.0340594","31.0777565"],["-98.0353441","31.0775467"],["-98.0367733","31.0772168"],["-98.0369738","31.0771629"],["-98.0474059","31.0742114"],["-98.0476846","31.0741214"],["-98.0479523","31.0740235"],["-98.0482048","31.0739206"],["-98.0484378","31.0738202"],["-98.0486145","31.0737387"],["-98.0492374","31.0734196"],["-98.0531998","31.0713339"],["-98.0536137","31.0710955"],["-98.0540371","31.0708324"],["-98.0542581","31.0706845"],["-98.0545933","31.0704417"],["-98.0548823","31.0702239"],["-98.0551823","31.0699824"],["-98.0557111","31.0695118"],["-98.0559112","31.0693159"],["-98.056066","31.0691552"],["-98.0563662","31.0688293"],["-98.0566211","31.0685341"],["-98.0568089","31.0683004"],["-98.0570001","31.0680493"],["-98.0571178","31.0678803"],["-98.0573499","31.0675327"],["-98.0574859","31.0673094"],["-98.0575865","31.0671399"],["-98.0577622","31.0668242"],["-98.0596717","31.0630636"],["-98.0599257","31.0625806"],["-98.0602175","31.0620904"],["-98.060333","31.0619096"],["-98.0606371","31.0614847"],["-98.0608042","31.0612651"],["-98.0609739","31.0610538"],["-98.0611525","31.0608464"],["-98.0613191","31.0606592"],["-98.0614713","31.0604972"],["-98.0618736","31.0600928"],["-98.0621256","31.0598588"],["-98.0623598","31.0596555"],["-98.0625841","31.0594733"],["-98.0628197","31.0592913"],["-98.0632973","31.058937"],["-98.0639637","31.0585142"],["-98.0644809","31.0582264"],["-98.0678796","31.0564086"],["-98.0686142","31.0560571"],["-98.0690216","31.0558875"],["-98.0692812","31.0557866"],["-98.0694736","31.0557149"],["-98.070043","31.0555247"],["-98.0708646","31.0553056"],["-98.0714553","31.0551742"],["-98.0717481","31.0551183"],["-98.0719779","31.055079"],["-98.0724166","31.0550179"],["-98.0727312","31.0549851"],["-98.0733869","31.0549314"],["-98.0737198","31.0549177"],["-98.0744201","31.0549116"],["-98.0823418","31.0549808"],["-98.082739","31.0549773"],["-98.0833057","31.0549508"],["-98.083606","31.0549271"],["-98.0842846","31.0548481"],["-98.0846292","31.0547963"],["-98.0849773","31.0547382"],["-98.0853386","31.0546659"],["-98.0856147","31.0546011"],["-98.096732","31.0512533"],["-98.0978532","31.0509931"],["-98.0986009","31.0508534"],["-98.0993404","31.0507424"],["-98.1000311","31.050669"],["-98.1010534","31.0505966"],["-98.1017855","31.05057"],["-98.1021177","31.0505661"],["-98.1027724","31.0505804"],["-98.1034376","31.0506129"],["-98.1037961","31.0506399"],["-98.1251249","31.0530549"],["-98.1261278","31.0531897"],["-98.1269013","31.053345"],["-98.127189","31.0534139"],["-98.1277186","31.0535606"],["-98.1282241","31.0537169"],["-98.1285312","31.0538258"],["-98.1290875","31.0540449"],["-98.1297305","31.054334"],["-98.1363374","31.0575567"],["-98.1483083","31.0626636"],["-98.148665","31.0628246"],["-98.149047","31.0630152"],["-98.1490753","31.0630295"],["-98.1512055","31.064177"],["-98.1519244","31.064518"],["-98.1522372","31.0646406"],["-98.152507","31.0647359"],["-98.1529935","31.0648797"],["-98.1532623","31.0649443"],["-98.1537234","31.0650381"],["-98.1539368","31.0650716"],["-98.1541561","31.0650982"],["-98.1544303","31.0651241"],["-98.1547486","31.0651445"],["-98.1550765","31.0651512"],["-98.1553876","31.0651533"],["-98.1557177","31.0651376"],["-98.1587087","31.0649103"],["-98.1589942","31.0648718"],["-98.1592671","31.0648258"],["-98.1595129","31.0647706"],["-98.1597532","31.0647042"],["-98.1599566","31.0646456"],["-98.1602709","31.0645383"],["-98.1604927","31.0644561"],["-98.1606971","31.0643679"],["-98.1609959","31.0642271"],["-98.1611902","31.0641238"],["-98.161398","31.0640028"],["-98.1615997","31.0638749"],["-98.1657577","31.0610072"],["-98.1660828","31.0607835"],["-98.167314","31.0599555"],["-98.1679897","31.0595014"],["-98.1684059","31.0592318"],["-98.1688109","31.0589922"],["-98.1695436","31.058603"],["-98.170313","31.0582135"],["-98.1712665","31.0577961"],["-98.171955","31.0575248"],["-98.1731195","31.0571383"],["-98.1751837","31.056489"],["-98.1757537","31.0563098"],["-98.176533","31.0560646"],["-98.1780384","31.0555984"],["-98.1785466","31.0554529"],["-98.1794431","31.0551738"],["-98.1799263","31.0550634"],["-98.180828","31.0547802"],["-98.1809912","31.0547173"],["-98.1811156","31.0546599"],["-98.1812393","31.0545856"],["-98.181457","31.0544362"],["-98.1817206","31.0542735"],["-98.1819011","31.0541921"],["-98.1820846","31.0540984"],["-98.1820669","31.0534502"],["-98.1820385","31.0528353"],["-98.1819728","31.0523923"],["-98.181217","31.048265"],["-98.1803233","31.0437905"],["-98.180267","31.0430488"],["-98.1802506","31.0422387"],["-98.1803064","31.0419047"],["-98.1804273","31.0413037"],["-98.1807018","31.0403376"],["-98.1809639","31.0394615"],["-98.1811639","31.0388062"],["-98.1813187","31.0382059"],["-98.1814002","31.0377668"],["-98.1815679","31.0363238"],["-98.1820074","31.0325568"],["-98.1822705","31.0306617"],["-98.1824475","31.0297418"],["-98.1826537","31.0288176"],["-98.1829384","31.0277716"],["-98.1832385","31.0267962"],["-98.183607","31.0257298"],["-98.1840449","31.0246265"],["-98.1846185","31.0233518"],["-98.1857911","31.0211199"],["-98.1903734","31.0126926"],["-98.1907959","31.0118639"],["-98.1911014","31.0111845"],["-98.1920003","31.0085899"],["-98.1952186","30.9993145"],["-98.1955545","30.9984638"],["-98.1962148","30.9971329"],["-98.1971499","30.9953127"],["-98.1988216","30.9921417"],["-98.2005773","30.9888606"],["-98.2043908","30.9818304"],["-98.2056047","30.9796757"],["-98.2073041","30.9766197"],["-98.2091144","30.973334"],["-98.2103043","30.9711538"],["-98.2145426","30.9634729"],["-98.2168844","30.9592128"],["-98.2190528","30.9553226"],["-98.2206009","30.9530145"],["-98.2240905","30.9484102"],["-98.2294236","30.9414411"],["-98.2309204","30.9394883"],["-98.2315615","30.9386263"],["-98.236056","30.9326968"],["-98.2363364","30.9322547"],["-98.2365237","30.9318989"],["-98.236734","30.931402"],["-98.2370231","30.9304793"],["-98.2371143","30.9300655"],["-98.2371706","30.9296927"],["-98.2372154","30.929313"],["-98.2372454","30.9287189"],["-98.2373389","30.9232811"],["-98.2373813","30.9209715"],["-98.2377194","30.8976102"],["-98.2376706","30.896628"],["-98.2376287","30.8961676"],["-98.2375869","30.895747"],["-98.2349282","30.8721057"],["-98.2348914","30.8710428"],["-98.234931","30.8701418"],["-98.2377547","30.8339575"],["-98.2378202","30.8330796"],["-98.2384586","30.8250596"],["-98.2384939","30.8245664"],["-98.2390736","30.8171791"],["-98.2391978","30.8156621"],["-98.2392483","30.8149711"],["-98.2395","30.8117135"],["-98.2397935","30.8079209"],["-98.2399037","30.8065629"],["-98.2400362","30.8048275"],["-98.2400507","30.8041964"],["-98.2400387","30.8037571"],["-98.239994","30.8032109"],["-98.2399069","30.8026761"],["-98.2397847","30.8020916"],["-98.2394474","30.8006291"],["-98.2391912","30.7995201"],["-98.238534","30.7967016"],["-98.2383437","30.795874"],["-98.2382691","30.7955537"],["-98.2381953","30.7952376"],["-98.238081","30.79473"],["-98.2379483","30.7941969"],["-98.2378802","30.7938518"],["-98.2377088","30.7931071"],["-98.2376203","30.7927316"],["-98.237469","30.7921091"],["-98.2368785","30.7895601"],["-98.2367756","30.7891361"],["-98.2366767","30.788733"],["-98.236398","30.7876884"],["-98.2363092","30.7873817"],["-98.2362206","30.7870865"],["-98.2359932","30.7862819"],["-98.2351359","30.7832376"],["-98.2339508","30.7787485"],["-98.2330637","30.7752853"],["-98.2328292","30.7743693"],["-98.2326045","30.7734587"],["-98.2321762","30.7717716"],["-98.232051","30.7712747"],["-98.2311811","30.7678105"],["-98.229548","30.7613361"],["-98.2293067","30.760366"],["-98.2290065","30.7591678"],["-98.2288496","30.7585315"],["-98.2281953","30.7559033"],["-98.2278961","30.7547284"],["-98.2277822","30.754291"],["-98.2276447","30.7537433"],["-98.2275855","30.7535088"],["-98.2275418","30.7533077"],["-98.2275195","30.7532214"],["-98.2275028","30.7530391"],["-98.2274924","30.7528308"],["-98.2274963","30.7525464"],["-98.2275377","30.7523292"],["-98.227587","30.7521285"],["-98.2276544","30.7518911"],["-98.227732","30.7516922"],["-98.2280502","30.7510211"],["-98.2287749","30.7495343"],["-98.2294274","30.748237"],["-98.2295601","30.7480068"],["-98.2298657","30.7475264"],["-98.2317692","30.7448944"],["-98.2318809","30.7447374"],["-98.232204","30.7442814"],["-98.232345","30.7440859"],["-98.2326477","30.7436675"],["-98.2333655","30.742663"],["-98.2338817","30.7418764"],["-98.2349429","30.7400687"],["-98.235239","30.7395059"],["-98.2357476","30.7384648"],["-98.2361605","30.7375327"],["-98.2366107","30.7364694"],["-98.236684","30.7362923"],["-98.2370856","30.7353331"],["-98.2374079","30.7345583"],["-98.2383642","30.7322648"],["-98.2385073","30.7319361"],["-98.2386276","30.731644"],["-98.2541425","30.6943695"],["-98.2544615","30.6935221"],["-98.2546895","30.6927866"],["-98.2549262","30.6918454"],["-98.2550122","30.6914393"],["-98.2550674","30.6911017"],["-98.2551235","30.6906796"],["-98.2552059","30.6897846"],["-98.2552044","30.6883112"],["-98.254781","30.6804415"],["-98.254803","30.6791637"],["-98.2567124","30.6525893"],["-98.2567952","30.6518977"],["-98.2569018","30.6512283"],["-98.2571664","30.6501633"],["-98.2575998","30.648809"],["-98.2598699","30.6422067"],["-98.2604187","30.6406306"],["-98.261392","30.6377518"],["-98.2616034","30.6371368"],["-98.2617472","30.6366976"],["-98.2617862","30.636583"],["-98.2618148","30.6365011"],["-98.2618978","30.6362626"],["-98.2623036","30.6349995"],["-98.2625965","30.6337181"],["-98.2627451","30.6328654"],["-98.2629796","30.6311461"],["-98.26324","30.6289964"],["-98.26335","30.6281905"],["-98.2634563","30.6276085"],["-98.2636084","30.6269401"],["-98.2639337","30.6258491"],["-98.2661216","30.6195022"],["-98.2663007","30.6189834"],["-98.2667451","30.6176978"],["-98.2671223","30.6165002"],["-98.2673398","30.6155601"],["-98.267475","30.6148064"],["-98.2675835","30.6139487"],["-98.267631","30.6133627"],["-98.2676596","30.6128705"],["-98.2676632","30.6123876"],["-98.2676485","30.6117096"],["-98.2675556","30.6104875"],["-98.2671891","30.6073697"],["-98.2670823","30.6062799"],["-98.267058","30.605798"],["-98.2670875","30.6052398"],["-98.2671484","30.6046714"],["-98.2671976","30.6044113"],["-98.2672933","30.6040142"],["-98.2674571","30.6034749"],["-98.2676197","30.6030714"],["-98.2678805","30.6024941"],["-98.2685985","30.6009464"],["-98.2689167","30.6002673"],["-98.2691539","30.5997722"],["-98.2694077","30.5992617"],["-98.2717833","30.5943194"],["-98.2720646","30.5937514"],["-98.2724126","30.593032"],["-98.2727482","30.5923"],["-98.2729401","30.5917806"],["-98.2730467","30.5914472"],["-98.2732785","30.5905528"],["-98.2733528","30.5901285"],["-98.2734277","30.589509"],["-98.273448","30.5890626"],["-98.2734271","30.5881644"],["-98.2734105","30.5877463"],["-98.2733124","30.5858547"],["-98.2733012","30.5856539"],["-98.273128","30.5821507"],["-98.2730225","30.5800629"],["-98.2729957","30.5795598"],["-98.2729559","30.5787169"],["-98.272938","30.5780192"],["-98.2729393","30.5778229"],["-98.2729472","30.5776921"],["-98.272973","30.5774649"],["-98.2730145","30.5771471"],["-98.2730668","30.5768835"],["-98.2731466","30.5765627"],["-98.2733061","30.5760939"],["-98.2735024","30.5756581"],["-98.2736646","30.5753572"],["-98.2738212","30.5750886"],["-98.2742152","30.5744884"],["-98.2744124","30.5741908"],["-98.2746995","30.5737451"],["-98.2753312","30.5728008"],["-98.2753971","30.5726954"],["-98.2756388","30.5723096"],["-98.2759166","30.5718661"],["-98.2759961","30.5717035"],["-98.2761274","30.5713908"],["-98.2761786","30.5712124"],["-98.2762229","30.5710263"],["-98.2762665","30.5707966"],["-98.2762926","30.5706164"],["-98.2762966","30.5704802"],["-98.2762888","30.570262"],["-98.2762649","30.5699953"],["-98.276201","30.5697548"],["-98.2761612","30.5695012"],["-98.2746027","30.5652783"],["-98.2745837","30.5651739"],["-98.2745669","30.5650366"],["-98.2745603","30.5648731"],["-98.2745567","30.5647428"],["-98.2745578","30.5645842"],["-98.2745748","30.5644566"],["-98.2745931","30.5643189"],["-98.2745846","30.564091"],["-98.2746545","30.5638738"],["-98.2748049","30.5635833"],["-98.2752066","30.5629764"],["-98.2754891","30.5625937"],["-98.275802","30.5621102"],["-98.2759717","30.5617608"],["-98.2760751","30.5613812"],["-98.2761289","30.5610965"],["-98.2761519","30.5608598"],["-98.2761437","30.560587"],["-98.2760903","30.560211"],["-98.2759496","30.5597519"],["-98.2757017","30.5592593"],["-98.2752608","30.5586706"],["-98.2746507","30.5579022"],["-98.2744261","30.5575658"],["-98.274208","30.5571456"],["-98.2741054","30.5569181"],["-98.2739746","30.5565265"],["-98.2739124","30.5562429"],["-98.2738528","30.5558935"],["-98.2738309","30.5554677"],["-98.2738473","30.5551993"],["-98.2738737","30.5549188"],["-98.2739363","30.5546039"],["-98.2740196","30.5542902"],["-98.2741728","30.5538704"],["-98.2744803","30.5531266"],["-98.2755114","30.5506439"],["-98.2758537","30.5497524"],["-98.2760542","30.5491717"],["-98.2763099","30.5483002"],["-98.2765992","30.5471192"],["-98.2768163","30.5461378"],["-98.276916","30.5456939"],["-98.2776477","30.5425802"],["-98.2778858","30.5417379"],["-98.2781917","30.5408777"],["-98.2786123","30.5399391"],["-98.2907945","30.5166377"],["-98.2909583","30.5162864"],["-98.2914655","30.5153727"],["-98.2917315","30.5149514"],["-98.2940862","30.5118972"],["-98.2965797","30.5088023"],["-98.2967914","30.5086369"],["-98.2969174","30.5085816"],["-98.297085","30.5085618"],["-98.2972445","30.5085787"],["-98.2973635","30.5086412"],["-98.2974643","30.5087134"],["-98.297538","30.5088091"],["-98.2975624","30.5089426"],["-98.2975517","30.50909"],["-98.2974996","30.5092158"],["-98.2973926","30.5093205"],["-98.2972329","30.509394"],["-98.2970459","30.5094138"],["-98.2967345","30.5093899"],["-98.2950943","30.5089704"],["-98.2939543","30.5086794"],["-98.2924728","30.508302"],["-98.2922651","30.508249"],["-98.2784253","30.5046748"],["-98.2763456","30.5041155"],["-98.275845","30.5039499"],["-98.2754235","30.5037892"],["-98.2745918","30.5034237"],["-98.2646407","30.498812"],["-98.2627905","30.497999"],["-98.2620356","30.4977229"],["-98.2586017","30.4966659"],["-98.2535711","30.4951512"],["-98.2509708","30.4943893"],["-98.2503568","30.4942424"],["-98.2498914","30.4941598"],["-98.2493704","30.4940838"],["-98.2407917","30.4931841"],["-98.239399","30.4930398"],["-98.2361205","30.4926687"],["-98.2354546","30.492564"],["-98.2346758","30.492408"],["-98.2132882","30.4878087"],["-98.21246","30.4876159"],["-98.2119113","30.4874592"],["-98.2112383","30.4872221"],["-98.2107118","30.4870083"],["-98.200535","30.4826223"],["-98.1991284","30.4819897"],["-98.1980351","30.4814579"],["-98.1685676","30.4662811"],["-98.1677624","30.4658558"],["-98.1672898","30.465613"],["-98.1670678","30.4655076"],["-98.160496","30.4621318"],["-98.1600564","30.4618949"],["-98.1588125","30.4611426"],["-98.1584443","30.4608941"],["-98.1579414","30.4605355"],["-98.1574597","30.4601612"],["-98.1568417","30.4596602"],["-98.1543188","30.4575113"],["-98.1506529","30.4543905"],["-98.1504233","30.4541663"],["-98.1501872","30.4539088"],["-98.1499873","30.4536694"],["-98.1497835","30.453398"],["-98.1495187","30.4530154"],["-98.1493407","30.4527145"],["-98.149192","30.4524217"],["-98.1490659","30.4521243"],["-98.1489585","30.4518128"],["-98.1488767","30.4515081"],["-98.1487723","30.451051"],["-98.1487024","30.4506724"],["-98.1486404","30.4502215"],["-98.1485593","30.4495691"],["-98.1479853","30.4453361"],["-98.147844","30.4445191"],["-98.1477996","30.4443151"],["-98.1476959","30.4439398"],["-98.1474779","30.4432802"],["-98.1473516","30.4429541"],["-98.1471658","30.4425339"],["-98.1469554","30.4421157"],["-98.1467176","30.441691"],["-98.1455255","30.4397858"],["-98.1444518","30.4380352"],["-98.144155","30.4375196"],["-98.144028","30.4372595"],["-98.1437354","30.4366019"],["-98.1427883","30.4343766"],["-98.1425125","30.433743"],["-98.1422913","30.4333311"],["-98.1420974","30.4330119"],["-98.1418658","30.4326744"],["-98.14164","30.4323769"],["-98.1414118","30.4321175"],["-98.141027","30.4317121"],["-98.1405885","30.4312973"],["-98.1385912","30.4296756"],["-98.1384782","30.4295839"],["-98.1348073","30.4265919"],["-98.1341765","30.4261044"],["-98.1338751","30.4259129"],["-98.1335566","30.4257287"],["-98.1332809","30.4255906"],["-98.1329982","30.4254647"],["-98.1310554","30.4247816"],["-98.1307477","30.4246681"],["-98.1304715","30.424546"],["-98.1302117","30.4244143"],["-98.1299583","30.4242698"],["-98.129724","30.4241125"],["-98.1295071","30.4239459"],["-98.1287732","30.4233047"],["-98.1275671","30.4222407"],["-98.1264218","30.4211182"],["-98.1255311","30.4202645"],["-98.1238646","30.418751"],["-98.1231846","30.4181871"],["-98.1218414","30.4172386"],["-98.1099471","30.4104037"],["-98.108132","30.4093347"],["-98.1072952","30.408802"],["-98.1063629","30.408341"],["-98.102392","30.406005"],["-98.1009744","30.4053445"],["-98.0988008","30.404533"],["-98.0956993","30.4033395"],["-98.0946686","30.4026746"],["-98.093591","30.4019149"],["-98.0919931","30.4003023"],["-98.0917854","30.4000449"],["-98.0910165","30.3989852"],["-98.0892582","30.3970169"],["-98.0876121","30.3950923"],["-98.0869989","30.3943488"],["-98.0867421","30.3939207"],["-98.0864928","30.3933315"],["-98.086273","30.3924894"],["-98.0862446","30.3918473"],["-98.0863262","30.3905068"],["-98.0864153","30.3887278"],["-98.0864576","30.3871019"],["-98.0863328","30.3864835"],["-98.0861362","30.3858267"],["-98.0859434","30.3853208"],["-98.0854312","30.3842214"],["-98.0846209","30.3830071"],["-98.0809892","30.3774668"],["-98.0797746","30.3756141"],["-98.0794038","30.3749988"],["-98.0782887","30.3732882"],["-98.0780287","30.3728906"],["-98.0770691","30.3714397"],["-98.0766817","30.3709541"],["-98.0762348","30.3705501"],["-98.0752505","30.3699588"],["-98.0747794","30.3697078"],["-98.0743457","30.3694894"],["-98.0737445","30.3691104"],["-98.0731759","30.3686327"],["-98.0727165","30.3681315"],["-98.0697295","30.3635825"],["-98.0694595","30.3630501"],["-98.0692648","30.3618235"],["-98.0692016","30.3601858"],["-98.0691337","30.359747"],["-98.0690013","30.3590079"],["-98.0687935","30.358462"],["-98.0684164","30.3577446"],["-98.0680613","30.35722"],["-98.0674636","30.3564461"],["-98.0645613","30.3530108"],["-98.0637229","30.3519803"],["-98.0631489","30.3512561"],["-98.0629191","30.3509784"],["-98.0625645","30.3505979"],["-98.0619334","30.3499562"],["-98.061228","30.3492989"],["-98.0603741","30.3488199"],["-98.059297","30.3483213"],["-98.0583429","30.3481127"],["-98.0578228","30.348079"],["-98.0548692","30.3476576"],["-98.0535276","30.3474602"],["-98.0528093","30.347321"],["-98.0521704","30.3471405"],["-98.0516258","30.3469723"],["-98.0508194","30.346612"],["-98.0496908","30.3460053"],["-98.0487026","30.3453582"],["-98.0438837","30.3418063"],["-98.0431054","30.3412147"],["-98.0425818","30.3408284"],["-98.0422372","30.3406095"],["-98.0419219","30.3404441"],["-98.0414458","30.3402532"],["-98.0408854","30.3401205"],["-98.0403166","30.3400591"],["-98.0392371","30.340044"],["-98.0389333","30.3400367"],["-98.0385258","30.3400032"],["-98.038216","30.3399528"],["-98.0378476","30.3398763"],["-98.0376812","30.3398306"],["-98.0375109","30.3397746"],["-98.0372424","30.3396736"],["-98.0368266","30.3395072"],["-98.0363481","30.33922"],["-98.0359264","30.3389491"],["-98.0339366","30.3375172"],["-98.0332319","30.3369754"],["-98.0324122","30.3363544"],["-98.0318937","30.3360055"],["-98.0312897","30.3357052"],["-98.0303449","30.3353137"],["-98.029939","30.335124"],["-98.029675","30.3349724"],["-98.0294031","30.3347801"],["-98.0288574","30.3342938"],["-98.0282345","30.3337403"],["-98.0278357","30.3334469"],["-98.0274749","30.3332315"],["-98.0270762","30.3330355"],["-98.0264486","30.332776"],["-98.0261355","30.3326359"],["-98.0258654","30.3325036"],["-98.0255972","30.33235"],["-98.0254343","30.3322411"],["-98.0252987","30.3321409"],["-98.025151","30.3320265"],["-98.0250021","30.3319054"],["-98.0248409","30.3317566"],["-98.0246514","30.331563"],["-98.0244369","30.3313488"],["-98.0241339","30.3310456"],["-98.0238131","30.3307457"],["-98.0235614","30.3305571"],["-98.0233042","30.3303919"],["-98.0230997","30.3302776"],["-98.0227678","30.3301229"],["-98.0216469","30.3297382"],["-98.0207005","30.3293861"],["-98.0203381","30.3292402"],["-98.0197705","30.3289926"],["-98.0194161","30.3288223"],["-98.0182946","30.3282295"],["-98.0176273","30.3278463"],["-98.0163648","30.3270204"],["-98.0048092","30.3186685"],["-98.0043669","30.3183626"],["-98.0039894","30.3181389"],["-98.0034379","30.3178951"],["-98.0031906","30.3178125"],["-98.0029788","30.3177517"],["-98.002746","30.3176945"],["-98.0024803","30.3176461"],["-98.0021927","30.3176022"],["-98.0019877","30.3175874"],["-98.0018098","30.3175806"],["-98.0016186","30.3175808"],["-98.0014077","30.3175866"],["-98.0011523","30.3176066"],["-98.0009019","30.3176344"],["-97.9977683","30.318053"],["-97.9968537","30.3181456"],["-97.9958327","30.3182127"],["-97.9952209","30.318222"],["-97.9945219","30.318222"],["-97.9943256","30.3182173"],["-97.9935538","30.3181641"],["-97.9929146","30.3181147"],["-97.9911229","30.3179303"],["-97.9849373","30.3173051"],["-97.9847564","30.3172881"],["-97.9806613","30.3168702"],["-97.980091","30.3167739"],["-97.9795845","30.3166336"],["-97.9793102","30.3165395"],["-97.9791128","30.3164702"],["-97.9788979","30.3163905"],["-97.9782192","30.3160589"],["-97.9778853","30.3158384"],["-97.9772939","30.315377"],["-97.9740034","30.3126477"],["-97.9735303","30.3123103"],["-97.973081","30.3120275"],["-97.9726289","30.3117894"],["-97.9720454","30.3115358"],["-97.9715055","30.311336"],["-97.9703845","30.3110717"],["-97.9656213","30.3100514"],["-97.9651737","30.3099557"],["-97.9631476","30.3095342"],["-97.9578644","30.3084127"],["-97.9566832","30.3081735"],["-97.9561737","30.3080948"],["-97.9556008","30.3080338"],["-97.9551101","30.3080072"],["-97.9546285","30.3080003"],["-97.9539756","30.3080121"],["-97.9490279","30.3083102"],["-97.9485589","30.3082984"],["-97.9463619","30.3084099"],["-97.9459619","30.3084159"],["-97.9456992","30.3084043"],["-97.9453783","30.3083694"],["-97.9450976","30.3083233"],["-97.9446633","30.308227"],["-97.9442202","30.3081149"],["-97.943816","30.3079843"],["-97.940688","30.3067858"],["-97.9400666","30.3065511"],["-97.9374898","30.3055878"],["-97.9365958","30.3052123"],["-97.9361979","30.3050041"],["-97.9349665","30.3043796"],["-97.9344967","30.3041308"],["-97.9340291","30.3039475"],["-97.9333337","30.3034549"],["-97.9314692","30.3020867"],["-97.9303599","30.3011326"],["-97.9293073","30.3000824"],["-97.9291637","30.2999379"],["-97.9269493","30.2976503"],["-97.9268446","30.297527"],["-97.9253829","30.29586"],["-97.9249194","30.2953192"],["-97.9242791","30.2946865"],["-97.9238509","30.2943036"],["-97.9232354","30.2938064"],["-97.9228448","30.293514"],["-97.9201522","30.291931"],["-97.9193373","30.2913798"],["-97.9190166","30.291112"],["-97.9184971","30.2906018"],["-97.9178422","30.2897198"],["-97.9175344","30.2890189"],["-97.9172239","30.2882161"],["-97.9167516","30.2868246"],["-97.9166466","30.2861313"],["-97.916701","30.2844081"],["-97.9168704","30.281979"],["-97.9168373","30.281026"],["-97.9167505","30.2805804"],["-97.9164832","30.2798081"],["-97.9157271","30.2782227"],["-97.9148692","30.276606"],["-97.9147459","30.2763773"],["-97.9143583","30.275612"],["-97.9141146","30.2751378"],["-97.9137658","30.2744808"],["-97.9132758","30.2735978"],["-97.9123335","30.2719919"],["-97.9103085","30.2690819"],["-97.9097667","30.2682566"],["-97.9094709","30.2676323"],["-97.9089312","30.2660038"],["-97.9085154","30.2645435"],["-97.9077508","30.2613169"],["-97.9076497","30.2609952"],["-97.9075536","30.260742"],["-97.9073939","30.2604071"],["-97.90731","30.2602468"],["-97.9072449","30.2601377"],["-97.9070424","30.2598349"],["-97.9069117","30.2596569"],["-97.9067182","30.2594168"],["-97.9065354","30.2592126"],["-97.9046257","30.2573643"],["-97.9042913","30.2570385"],["-97.9033194","30.2560913"],["-97.9028484","30.2555971"],["-97.9007285","30.2535242"],["-97.9002603","30.253084"],["-97.8998017","30.252717"],["-97.899144","30.2522804"],["-97.8982953","30.2518435"],["-97.897943","30.2516528"],["-97.8972106","30.2512942"],["-97.8971988","30.2512881"],["-97.8907852","30.248196"],["-97.890457","30.2480406"],["-97.8892462","30.2474541"],["-97.8890754","30.2473719"],["-97.8885358","30.2471132"],["-97.8883046","30.246998"],["-97.8876628","30.2466858"],["-97.8874741","30.2465943"],["-97.8871995","30.2464557"],["-97.8867286","30.2462144"],["-97.886531","30.2460987"],["-97.8863623","30.245997"],["-97.8861835","30.2458722"],["-97.8860146","30.2457497"],["-97.885782","30.2455763"],["-97.8854822","30.2453229"],["-97.8849715","30.24484"],["-97.884364","30.2442534"],["-97.8835271","30.2434116"],["-97.8831357","30.2430258"],["-97.8815282","30.2414249"],["-97.8811996","30.2410548"],["-97.8805272","30.2402477"],["-97.8801482","30.2397634"],["-97.8799254","30.2394309"],["-97.8787232","30.2376467"],["-97.8784412","30.237259"],["-97.8783402","30.2371039"],["-97.8778828","30.2365002"],["-97.8775541","30.2360959"],["-97.8770261","30.2355529"],["-97.8766038","30.2351804"],["-97.8764863","30.23506"],["-97.8756039","30.2345025"],["-97.8754676","30.2343906"],["-97.875345","30.2342633"],["-97.8752253","30.2341236"],["-97.8751476","30.2340232"],["-97.8750847","30.233937"],["-97.8748462","30.233528"],["-97.8747863","30.2334464"],["-97.8747473","30.2334047"],["-97.8747083","30.2333774"],["-97.8745936","30.2333377"],["-97.8743937","30.2333328"],["-97.8741771","30.2333997"],["-97.8739338","30.2334742"],["-97.8736277","30.2335635"],["-97.8732834","30.2336499"],["-97.872977","30.233722"],["-97.8725268","30.2338169"],["-97.8722873","30.2338622"],["-97.8721167","30.2339373"],["-97.8716479","30.2339705"],["-97.871338","30.2339858"],["-97.8681293","30.2340679"],["-97.8680262","30.234069"],["-97.8677683","30.2340678"],["-97.8669778","30.2340069"],["-97.8661825","30.233924"],["-97.8655987","30.2338781"],["-97.8652495","30.2338816"],["-97.8645637","30.2339548"],["-97.8638035","30.2340893"],["-97.8632987","30.2342481"],["-97.8629359","30.2343739"],["-97.8628117","30.2344322"],["-97.8623737","30.2346317"],["-97.8620194","30.2347991"],["-97.8618642","30.2348627"],["-97.8616089","30.2349652"],["-97.8613667","30.235065"],["-97.8611005","30.235172"],["-97.8606296","30.2352672"],["-97.8603777","30.23531"],["-97.8598847","30.2353855"],["-97.8594237","30.2354592"],["-97.8591729","30.2354716"],["-97.8578311","30.2354915"],["-97.8570679","30.2354186"],["-97.8557997","30.2353266"],["-97.8531379","30.2353608"],["-97.8520891","30.2354095"],["-97.851282","30.2354964"],["-97.8500633","30.2356418"],["-97.8488177","30.2357389"],["-97.8482535","30.2358266"],["-97.8467341","30.2360688"],["-97.8454092","30.2362324"],["-97.8441901","30.2363502"],["-97.8433138","30.2364048"],["-97.842531","30.2364396"],["-97.8412264","30.2364736"],["-97.8408162","30.2364753"],["-97.831411","30.2364248"],["-97.8280209","30.2359563"],["-97.8266954","30.2357791"],["-97.826408","30.2357559"],["-97.8260885","30.2357497"],["-97.8257778","30.2357614"],["-97.8254236","30.2357966"],["-97.825064","30.2358561"],["-97.8247119","30.2359354"],["-97.8243369","30.2360423"],["-97.8239817","30.2361789"],["-97.8236488","30.2363295"],["-97.8231524","30.2366028"],["-97.8214279","30.2375987"],["-97.8208921","30.237902"],["-97.8205374","30.2380908"],["-97.8201687","30.2382964"],["-97.8198429","30.2384209"],["-97.8186363","30.2389234"],["-97.818178","30.2391299"],["-97.8139105","30.2412123"],["-97.8110947","30.2426061"],["-97.809524","30.2433907"],["-97.80896","30.2437191"],["-97.8081319","30.2442598"],["-97.8071101","30.2450534"],["-97.8059455","30.2461475"],["-97.8052599","30.2468852"],["-97.80492","30.2472852"],["-97.8046519","30.2476263"],["-97.8043557","30.2480237"],["-97.8038637","30.2487794"],["-97.8035423","30.2493144"],["-97.8031948","30.2499602"],["-97.8028718","30.250603"],["-97.8025997","30.2512662"],["-97.8015436","30.2541919"],["-97.8013474","30.2546762"],["-97.8011767","30.2550248"],["-97.8009839","30.2553879"],["-97.800784","30.2556992"],["-97.8005967","30.2559742"],["-97.8003811","30.2562445"],["-97.8001331","30.2565016"],["-97.7998672","30.2567502"],["-97.7996418","30.2569526"],["-97.7994163","30.2571392"],["-97.7991738","30.2573181"],["-97.7986885","30.2576504"],["-97.7875443","30.2637964"],["-97.7872192","30.2639597"],["-97.7868881","30.2641179"],["-97.7863639","30.2643476"],["-97.7860516","30.264466"],["-97.7852727","30.2647241"],["-97.78443","30.2650026"],["-97.7834153","30.2653361"],["-97.7831159","30.265447"],["-97.7815322","30.2660939"],["-97.7809385","30.2663604"],["-97.7804182","30.2666185"],["-97.7798438","30.2669232"],["-97.7793089","30.2672176"],["-97.7774416","30.2683592"],["-97.7757989","30.2694414"],["-97.774847","30.2700851"],["-97.7745182","30.2703375"],["-97.7741809","30.270619"],["-97.7738662","30.2708958"],["-97.7735439","30.2712069"],["-97.7732372","30.2715365"],["-97.7728404","30.2720244"],["-97.7718547","30.2733243"],["-97.7712711","30.2741043"],["-97.7706121","30.2746208"],["-97.7704284","30.2747444"],["-97.7702756","30.2748292"],["-97.7701309","30.2748971"],["-97.769939","30.274963"],["-97.7695503","30.2750648"],["-97.7692518","30.2750772"],["-97.7689157","30.2750639"],["-97.7684992","30.2750141"],["-97.7682765","30.2749708"],["-97.7680569","30.2749191"],["-97.7678522","30.2748634"],["-97.7675758","30.2747703"],["-97.7672635","30.2746462"],["-97.7670451","30.2745493"],["-97.7668102","30.2744267"],["-97.7666354","30.2743168"],["-97.7664406","30.2741774"],["-97.7662173","30.2739998"],["-97.7659075","30.2737339"],["-97.765452","30.2733109"],["-97.764915","30.272708"],["-97.7626147","30.270132"],["-97.7623376","30.2698563"],["-97.7621367","30.2696961"],["-97.7619312","30.2695574"],["-97.7616792","30.2694297"],["-97.7614375","30.2693438"],["-97.7609259","30.269125"],["-97.7586924","30.2681568"],["-97.7584132","30.2680163"],["-97.7581676","30.2678609"],["-97.7579354","30.2676843"],["-97.757313","30.2671112"],["-97.7572658","30.2670072"],["-97.7570727","30.2668617"],["-97.7569809","30.2668555"],["-97.7566666","30.2666709"],["-97.7565453","30.2666137"],["-97.756388","30.2665512"],["-97.7562408","30.2665074"],["-97.7560825","30.2664697"],["-97.7558472","30.2664296"],["-97.7544766","30.266273"],["-97.7542203","30.2662199"],["-97.7535138","30.2659907"],["-97.7518891","30.2654994"],["-97.7511697","30.2652762"],["-97.7501089","30.2649597"],["-97.7497231","30.2648471"],["-97.748997","30.264635"],["-97.7489293","30.2645708"],["-97.7483551","30.2644007"],["-97.7481703","30.264349"],["-97.747925","30.2643358"],["-97.7470312","30.2640886"],["-97.7469585","30.2640363"],["-97.746933","30.2640011"],["-97.746801","30.263965"],["-97.7464988","30.2638904"],["-97.7463645","30.263901"],["-97.7445621","30.2634034"],["-97.7438502","30.265281"],["-97.743837","30.2653166"],["-97.7431283","30.2672115"],["-97.7431223","30.267228"],["-97.7424554","30.2689888"],["-97.7413853","30.2686951"],["-97.7411325","30.2686234"],["-97.7395469","30.2681828"],["-97.7393209","30.2681199"],["-97.7389154","30.2680067"],["-97.7381668","30.2677986"],["-97.7380928","30.2677779"],["-97.7379088","30.267725"],["-97.7375918","30.2676366"],["-97.7361748","30.2672439"],["-97.7357941","30.2671375"],["-97.7346928","30.2668236"],["-97.7350363","30.2658886"],["-97.7350616","30.265812"],["-97.7350785","30.2657542"],["-97.7350649","30.2656802"],["-97.7350819","30.265516"],["-97.7351838","30.2648938"],["-97.7352402","30.2645726"],["-97.735272","30.2643504"],["-97.7353034","30.2641418"],["-97.7358467","30.262814"],["-97.7361964","30.2620626"],["-97.7363681","30.2616571"],["-97.7368952","30.2602281"],["-97.7370513","30.2597017"],["-97.7371163","30.2594186"],["-97.7371643","30.2591712"],["-97.7372057","30.2589217"],["-97.7372356","30.2586417"],["-97.7372579","30.2583269"],["-97.7372691","30.2579714"],["-97.7372725","30.2575286"],["-97.737236","30.2571104"],["-97.737163","30.2566862"],["-97.7370641","30.256095"],["-97.7366393","30.253802"],["-97.735337","30.2476066"],["-97.7351868","30.2469086"],["-97.7350877","30.2464307"],["-97.7350471","30.2461816"],["-97.7350234","30.2459639"],["-97.7350094","30.2457724"],["-97.7350031","30.245569"],["-97.7350118","30.2453265"],["-97.7350273","30.2450793"],["-97.7350598","30.2448419"],["-97.7350987","30.2446232"],["-97.7351634","30.2443534"],["-97.7352415","30.2441049"],["-97.7353306","30.2438573"],["-97.7354326","30.2436277"],["-97.7355293","30.243426"],["-97.7356823","30.2431539"],["-97.7365277","30.2417519"],["-97.7368637","30.241172"],["-97.7389875","30.2376721"],["-97.7471772","30.223877"],["-97.7477267","30.222991"],["-97.7493646","30.2200561"],["-97.7504193","30.2182656"],["-97.7522334","30.2152365"],["-97.7526036","30.2146237"],["-97.754855","30.2109293"],["-97.7560466","30.2090036"],["-97.757837","30.2064222"],["-97.7591286","30.204798"],["-97.7613721","30.2020455"],["-97.7618425","30.2014463"],["-97.76572","30.1966222"],["-97.7663515","30.1958661"],["-97.7703701","30.1908167"],["-97.7716704","30.1891379"],["-97.7719936","30.1886802"],["-97.7753387","30.1836657"],["-97.7867647","30.1662273"],["-97.7871454","30.1655891"],["-97.7876459","30.1646962"],["-97.78792","30.1641683"],["-97.7883315","30.1633356"],["-97.788583","30.1627921"],["-97.7889496","30.1619623"],["-97.7892757","30.1611141"],["-97.7895663","30.1603276"],["-97.7898776","30.159376"],["-97.7925239","30.1503646"],["-97.7963461","30.1397295"],["-97.8054517","30.1166876"],["-97.8055532","30.116418"],["-97.8058457","30.1156936"],["-97.8060198","30.1152516"],["-97.8062782","30.1146302"],["-97.8068863","30.113106"],["-97.8080412","30.1105449"],["-97.8084583","30.1096229"],["-97.8088022","30.1088721"],["-97.8093979","30.1075063"],["-97.8099976","30.1062107"],["-97.8108992","30.1043698"],["-97.8112386","30.1036856"],["-97.8131909","30.0995037"],["-97.8135552","30.0988147"],["-97.815033","30.0956405"],["-97.8154262","30.0948429"],["-97.8162964","30.0933428"],["-97.8173877","30.0915164"],["-97.8183448","30.0898861"],["-97.8190989","30.0885792"],["-97.8197721","30.0873877"],["-97.8224129","30.0825373"],["-97.8466871","30.0333759"],["-97.8471133","30.0325905"],["-97.847666","30.031662"],["-97.8482336","30.030765"],["-97.8590551","30.0156122"],["-97.8598735","30.0144285"],["-97.860274","30.0138085"],["-97.8607662","30.0130077"],["-97.8691159","29.9985473"],["-97.8693965","29.9980252"],["-97.8701114","29.9965445"],["-97.8703755","29.995934"],["-97.8706323","29.9953016"],["-97.8709211","29.9945513"],["-97.8713143","29.9933863"],["-97.8715037","29.992749"],["-97.8716742","29.9921335"],["-97.8718108","29.9916069"],["-97.8719171","29.9911349"],["-97.8729043","29.9861502"],["-97.8736852","29.981973"],["-97.8738247","29.9809301"],["-97.8748218","29.9707866"],["-97.8749499","29.9695807"],["-97.8751181","29.9685128"],["-97.8752317","29.967893"],["-97.8782987","29.9531031"],["-97.8785694","29.9520072"],["-97.8789207","29.9508229"],["-97.8794315","29.949356"],["-97.8796905","29.9487089"],["-97.8799333","29.9481271"],["-97.8802525","29.9474091"],["-97.8806779","29.9465522"],["-97.9017363","29.9057534"],["-97.9020599","29.9052044"],["-97.9028017","29.9040282"],["-97.9032205","29.9034151"],["-97.9039026","29.9024825"],["-97.9046695","29.901496"],["-97.9051821","29.9008902"],["-97.9062518","29.8997278"],["-97.9209923","29.8837291"],["-97.9217198","29.8829513"],["-97.9221386","29.8825284"],["-97.9226439","29.8820381"],["-97.9235544","29.8812037"],["-97.9241212","29.8807159"],["-97.9245893","29.8803287"],["-97.936948","29.8711673"],["-97.9387677","29.8697066"],["-97.9782914","29.8344289"],["-97.9887611","29.8250113"],["-97.989447","29.824502"],["-97.9904952","29.8237065"],["-97.9908247","29.8234966"],["-97.9940129","29.8206308"],["-97.994202","29.8204511"],["-97.9942495","29.8204047"],["-97.9946976","29.8199983"],["-97.9951899","29.8195576"],["-97.9957034","29.8191014"],["-97.9964031","29.8184733"],["-97.9967121","29.8181817"],["-97.9969269","29.8179628"],["-97.9972026","29.817702"],["-97.9974107","29.8176325"],["-97.9976048","29.8176315"],["-97.9979208","29.8176756"],["-97.9982581","29.8178871"],["-97.9985306","29.8180792"],["-97.9989049","29.818322"],["-98.0049804","29.8234067"],["-98.0053417","29.8236733"],["-98.0054833","29.8235775"],["-98.0056218","29.823465"],["-98.0063184","29.8228871"],["-98.006548","29.8227001"],["-98.006812","29.8224833"],["-98.006975","29.8223528"],["-98.0078402","29.8216531"],["-98.0085428","29.8210525"],["-98.0086752","29.820941"],["-98.0088275","29.8208131"],["-98.0095444","29.8201431"],["-98.009784","29.8199209"],["-98.0121072","29.8178021"],["-98.0131298","29.8168751"],["-98.0134054","29.8166224"],["-98.0142191","29.8158974"],["-98.0145533","29.815624"],["-98.0152105","29.815087"],["-98.0156736","29.8146989"],["-98.0159315","29.8144832"],["-98.0162328","29.8142261"],["-98.0165182","29.8139854"],["-98.0173623","29.8132644"],["-98.01822","29.8125847"],["-98.0199138","29.8112934"],["-98.0202234","29.811054"],["-98.0204776","29.8108525"],["-98.0209104","29.8104999"],["-98.0209859","29.8104376"],["-98.0212105","29.8102488"],["-98.0214238","29.81007"],["-98.0218383","29.8097156"],["-98.0220409","29.8095325"],["-98.0222736","29.8093076"],["-98.0224747","29.809081"],["-98.022656","29.8088555"],["-98.0228855","29.8085096"],["-98.0229773","29.8083555"],["-98.0230839","29.8081702"],["-98.0232504","29.8079078"],["-98.0234041","29.8076893"],["-98.0235732","29.8075044"],["-98.0240253","29.807114"],["-98.0242332","29.8069575"],["-98.0246757","29.8066396"],["-98.0254068","29.8061606"],["-98.0257001","29.8059907"],["-98.0260361","29.8058297"],["-98.029681","29.8043209"],["-98.0306243","29.8039565"],["-98.0317201","29.8036009"],["-98.03196","29.8035194"],["-98.0320384","29.8034901"],["-98.0321519","29.8034399"],["-98.0323228","29.8033604"],["-98.0325472","29.8032451"],["-98.0327803","29.803092"],["-98.0329256","29.8029868"],["-98.0332677","29.8026889"],["-98.0349966","29.8011057"],["-98.0354951","29.8006726"],["-98.036487","29.7998884"],["-98.0368926","29.7995874"],["-98.0375695","29.7990391"],["-98.0432921","29.7939001"],["-98.0439294","29.7932554"],["-98.0441944","29.7929414"],["-98.044392","29.7927011"],["-98.044435","29.7926485"],["-98.0447475","29.7922894"],["-98.0449136","29.7921322"],["-98.0452357","29.7918671"],["-98.0465251","29.7908739"],["-98.0495314","29.7890399"],["-98.0506185","29.7883426"],["-98.0514186","29.7877915"],["-98.0517265","29.7875698"],["-98.0521053","29.7872498"],["-98.0545743","29.7848308"],["-98.0547601","29.784613"],["-98.0550841","29.7841773"],["-98.0555836","29.7834851"],["-98.0559621","29.7829935"],["-98.0560892","29.7827653"],["-98.0564234","29.7823198"],["-98.0566881","29.7819971"],["-98.0569754","29.7817026"],["-98.0572436","29.7814675"],["-98.0574911","29.7812711"],["-98.0577595","29.7810798"],["-98.0580597","29.7809042"],["-98.0583826","29.780724"],["-98.060745","29.7795115"],["-98.0610654","29.7793385"],["-98.0612952","29.7792028"],["-98.0613591","29.779161"],["-98.0615574","29.7790149"],["-98.061945","29.7786928"],["-98.0631322","29.777635"],["-98.0634036","29.7773783"],["-98.065047","29.7756657"],["-98.0657223","29.7749202"],["-98.0662175","29.7744283"],["-98.0672769","29.7735695"],["-98.0677016","29.773254"],["-98.0679226","29.7731123"],["-98.0682947","29.7729246"],["-98.0688409","29.7726837"],["-98.0699402","29.772216"],["-98.0702323","29.7720807"],["-98.0706445","29.7718781"],["-98.0710773","29.7716464"],["-98.0714625","29.771426"],["-98.0718108","29.7712084"],["-98.0722335","29.7709027"],["-98.0727543","29.7704673"],["-98.0734598","29.7699619"],["-98.0808077","29.7763869"],["-98.0893816","29.7834176"],["-98.0938537","29.7866549"],["-98.0953618","29.7877827"],["-98.0987015","29.7903578"],["-98.1048265","29.7953214"],["-98.1054566","29.7957665"],["-98.1058991","29.7959077"],["-98.105998","29.7968508"],["-98.1067625","29.8045028"],["-98.1073598","29.809515"],["-98.1083449","29.821008"],["-98.1083529","29.8211122"],["-98.1085153","29.8231009"],["-98.1085769","29.8236839"],["-98.1086253","29.8239607"],["-98.1086771","29.8241891"],["-98.1087431","29.824402"],["-98.1088678","29.8247539"],["-98.1089998","29.8250699"],["-98.1091439","29.8253375"],["-98.1093295","29.8256295"],["-98.1095356","29.8259222"],["-98.1096918","29.8261105"],["-98.1098298","29.8262632"],["-98.1101153","29.8265453"],["-98.1104424","29.8268353"],["-98.1180989","29.8333563"],["-98.1182816","29.8335271"],["-98.1184629","29.8337093"],["-98.1185748","29.8338424"],["-98.1187549","29.834078"],["-98.1188526","29.8342267"],["-98.1189721","29.8344227"],["-98.1190634","29.8345937"],["-98.1191755","29.8348563"],["-98.119234","29.8350092"],["-98.1192896","29.8351927"],["-98.1193718","29.8355384"],["-98.119398","29.8357089"],["-98.1194234","29.8361951"],["-98.1194072","29.8364904"],["-98.1193774","29.8367006"],["-98.1193392","29.8369022"],["-98.1192407","29.8372623"],["-98.1191488","29.8375961"],["-98.1189848","29.8381501"],["-98.1183519","29.8402934"],["-98.1181939","29.8408517"],["-98.1181357","29.8411517"],["-98.1180963","29.8414375"],["-98.1180746","29.8417328"],["-98.1180707","29.8420132"],["-98.1180962","29.8424197"],["-98.1183966","29.8450414"],["-98.1184635","29.8454131"],["-98.1185486","29.8457037"],["-98.1186743","29.8460143"],["-98.1188113","29.8462903"],["-98.1189879","29.8465752"],["-98.1191888","29.8468564"],["-98.1193778","29.8470766"],["-98.119553","29.8472709"],["-98.1196632","29.8473595"],["-98.1198303","29.8474847"],["-98.1201561","29.8477169"],["-98.1205058","29.8479202"],["-98.1210419","29.8481867"],["-98.1219686","29.8486231"],["-98.1273268","29.8511376"],["-98.1280323","29.8514134"],["-98.1284079","29.8515168"],["-98.1286607","29.8515708"],["-98.1289263","29.8516129"],["-98.1291656","29.8516333"],["-98.1294841","29.8516454"],["-98.1301768","29.8516061"],["-98.131009","29.8514549"],["-98.1367757","29.8501351"],["-98.1371338","29.8500608"],["-98.1375026","29.8499975"],["-98.1378628","29.8499662"],["-98.1382647","29.8499546"],["-98.1386309","29.8499796"],["-98.1390631","29.8500382"],["-98.1394378","29.8501193"],["-98.1398195","29.8502387"],["-98.1401357","29.8503581"],["-98.1404893","29.8505292"],["-98.1408125","29.8507185"],["-98.1411159","29.8509275"],["-98.1414148","29.8511831"],["-98.1416485","29.851413"],["-98.141834","29.8516282"],["-98.1420459","29.8519153"],["-98.1422172","29.8521621"],["-98.1424036","29.8524377"],["-98.1426806","29.8528274"],["-98.142855","29.8530528"],["-98.1431067","29.8533228"],["-98.1433692","29.8535792"],["-98.143555","29.8537443"],["-98.1438064","29.8539362"],["-98.1440504","29.8541036"],["-98.1442679","29.8542462"],["-98.1445599","29.8544088"],["-98.1451888","29.854744"],["-98.1481991","29.8563081"],["-98.1487311","29.8565855"],["-98.1495215","29.8569952"],["-98.1498495","29.8571674"],["-98.1511713","29.8578547"],["-98.1513701","29.857953"],["-98.1517625","29.8581648"],["-98.1524403","29.8585214"],["-98.1527463","29.8586643"],["-98.1530116","29.85878"],["-98.1534293","29.8589316"],["-98.154817","29.8594038"],["-98.1553204","29.859581"],["-98.1556626","29.8597377"],["-98.1559271","29.8598738"],["-98.1563175","29.8600989"],["-98.157192","29.8606424"],["-98.1578701","29.8610692"],["-98.1581862","29.8612699"],["-98.1586201","29.8615449"],["-98.1601635","29.8624894"],["-98.1602759","29.8621666"],["-98.1606724","29.860288"],["-98.1608112","29.8596373"],["-98.1609194","29.8591241"],["-98.1611218","29.8585027"],["-98.1614787","29.8574233"],["-98.1615773","29.8571089"],["-98.1616109","29.8569962"],["-98.1616862","29.8566825"],["-98.1617665","29.8562192"],["-98.161866","29.8556291"],["-98.1619525","29.8553014"],["-98.1620889","29.8549578"],["-98.1622226","29.8546875"],["-98.1624052","29.8544007"],["-98.1625988","29.8541688"],["-98.1629367","29.8538609"],["-98.1633355","29.8535616"],["-98.1635584","29.8534357"],["-98.1637857","29.8533213"],["-98.1669117","29.8519407"],["-98.1707396","29.8503961"],["-98.1710092","29.8502894"],["-98.1717036","29.8500105"],["-98.1751967","29.8486196"],["-98.1753147","29.8485727"],["-98.1788278","29.8471625"],["-98.1791033","29.8470494"],["-98.1815887","29.8460574"],["-98.1820545","29.8458546"],["-98.1824507","29.8456425"],["-98.182726","29.8454715"],["-98.1839138","29.8447101"],["-98.1863735","29.843165"],["-98.1871009","29.8428005"],["-98.1875481","29.8426173"],["-98.1883323","29.8423418"],["-98.1888099","29.8422074"],["-98.1892656","29.842109"],["-98.1897612","29.8420217"],["-98.1902139","29.8419602"],["-98.1908015","29.8419292"],["-98.1910855","29.8419401"],["-98.1913187","29.8419684"],["-98.1916549","29.842032"],["-98.191861","29.8420872"],["-98.1923485","29.8422601"],["-98.1993625","29.8450083"],["-98.1997578","29.8451448"],["-98.2001693","29.845259"],["-98.2003827","29.8453004"],["-98.2005812","29.8453273"],["-98.2009642","29.8453632"],["-98.2011939","29.8453743"],["-98.2014956","29.8453663"],["-98.2017592","29.8453495"],["-98.2020396","29.8453073"],["-98.2023281","29.8452565"],["-98.2027232","29.8451578"],["-98.2032125","29.8449767"],["-98.2124467","29.8413181"],["-98.2134628","29.8408982"],["-98.213917","29.8406586"],["-98.2154983","29.8397409"],["-98.2161541","29.8393764"],["-98.2164219","29.839258"],["-98.2166452","29.8391756"],["-98.2169437","29.8390961"],["-98.2182427","29.8389592"],["-98.2259276","29.838679"],["-98.2265525","29.8386396"],["-98.2272809","29.8385524"],["-98.2277607","29.8384754"],["-98.2281803","29.8383941"],["-98.2287166","29.8382585"],["-98.2292558","29.8381139"],["-98.229624","29.8379987"],["-98.2299873","29.8378669"],["-98.2358212","29.8356123"],["-98.2367406","29.8353324"],["-98.2385434","29.8348797"],["-98.2394337","29.8346466"],["-98.2400883","29.8344581"],["-98.2402966","29.8343798"],["-98.2406793","29.8342218"],["-98.2432638","29.8331122"],["-98.2434558","29.8330373"],["-98.2437615","29.8329438"],["-98.2442774","29.8328053"],["-98.2446511","29.8327387"],["-98.244917","29.832716"],["-98.2452658","29.8327105"],["-98.2456357","29.8327243"],["-98.2460205","29.8327578"],["-98.2463888","29.8328165"],["-98.246657","29.832889"],["-98.2469099","29.8329648"],["-98.2471561","29.8330584"],["-98.2474701","29.8331901"],["-98.247769","29.8333506"],["-98.2480371","29.833518"],["-98.2482685","29.8336828"],["-98.2485667","29.8339407"],["-98.2488165","29.8342051"],["-98.249005","29.8344191"],["-98.2491708","29.8346427"],["-98.2499491","29.8357144"],["-98.2502846","29.8361753"],["-98.2508256","29.8369153"],["-98.2511907","29.8373797"],["-98.25139","29.8375877"],["-98.2518699","29.8380189"],["-98.2524678","29.8384416"],["-98.2527504","29.8386039"],["-98.2534739","29.8389347"],["-98.2537283","29.8390317"],["-98.2539405","29.839098"],["-98.2563443","29.8397082"],["-98.2568925","29.8398592"],["-98.257349","29.8400045"],["-98.2652066","29.8427786"],["-98.2678777","29.8437049"],["-98.2682546","29.8438227"],["-98.2685843","29.8439152"],["-98.2689051","29.8439861"],["-98.2692464","29.8440554"],["-98.2694913","29.844095"],["-98.2698721","29.844145"],["-98.2700484","29.8441625"],["-98.270315","29.8441857"],["-98.2706522","29.8442052"],["-98.2726719","29.8442457"],["-98.273583","29.8442692"],["-98.2738557","29.8442933"],["-98.2740627","29.8443224"],["-98.274244","29.8443601"],["-98.2744361","29.844404"],["-98.2746611","29.8444771"],["-98.2750083","29.8446298"],["-98.2751023","29.8446715"],["-98.2751676","29.844702"],["-98.2754415","29.8448638"],["-98.2755487","29.8449334"],["-98.2758204","29.845142"],["-98.2760112","29.8453189"],["-98.2761236","29.8454339"],["-98.2762466","29.8455714"],["-98.2763788","29.8457538"],["-98.27721","29.847008"],["-98.2815429","29.8536146"],["-98.2818836","29.8541081"],["-98.2823621","29.8546464"],["-98.2826443","29.8549143"],["-98.2829237","29.8551433"],["-98.2832097","29.8553589"],["-98.2853899","29.8569349"],["-98.285682","29.8571704"],["-98.2859339","29.8573877"],["-98.2861307","29.8575806"],["-98.2862338","29.8576902"],["-98.2863033","29.8577714"],["-98.2864219","29.8579088"],["-98.2865566","29.8580889"],["-98.2867422","29.8583609"],["-98.2869245","29.8586508"],["-98.287051","29.8589026"],["-98.2871796","29.8591833"],["-98.28736","29.8596854"],["-98.2876549","29.860484"],["-98.2879533","29.8610609"],["-98.2881403","29.8613694"],["-98.2883917","29.861702"],["-98.2886231","29.8619734"],["-98.2886692","29.8620205"],["-98.2887689","29.8621188"],["-98.2890095","29.8623303"],["-98.2902901","29.8634299"],["-98.2908787","29.8639145"],["-98.2911265","29.8641155"],["-98.2913545","29.8642708"],["-98.2920901","29.8647358"],["-98.2917704","29.8650526"],["-98.2885348","29.8678499"],["-98.2884506","29.8679451"],["-98.2883306","29.8681333"],["-98.288203","29.8683515"],["-98.2880467","29.8686316"],["-98.2874754","29.869585"],["-98.2873641","29.8697846"],["-98.2870662","29.8701985"],["-98.2867791","29.8705554"],["-98.2865097","29.8708852"],["-98.2862662","29.8711949"],["-98.2861484","29.871341"],["-98.2860511","29.8714471"],["-98.2859488","29.8715353"],["-98.2858562","29.871592"],["-98.2856607","29.8716959"],["-98.2843799","29.8723461"],["-98.2841947","29.8724455"],["-98.2839576","29.8725901"],["-98.2836231","29.8728086"],["-98.2832366","29.8730879"],["-98.2827912","29.8734272"],["-98.2821938","29.8738749"],["-98.2809573","29.8748043"],["-98.2806588","29.8750341"],["-98.2800686","29.8754738"],["-98.2793629","29.8759945"],["-98.2788765","29.8762611"],["-98.2765541","29.8772358"],["-98.2762943","29.8773171"],["-98.2760977","29.8773621"],["-98.2759834","29.8773797"],["-98.2758715","29.8773887"],["-98.275676","29.8773948"],["-98.2754074","29.877385"],["-98.2751051","29.8773782"],["-98.2749828","29.8774014"],["-98.2748309","29.8774458"],["-98.2741672","29.8777517"],["-98.2738649","29.8778734"],["-98.2735546","29.8779486"],["-98.2734026","29.8779392"],["-98.2732577","29.8779083"],["-98.2729275","29.8778198"],["-98.2724632","29.8777098"],["-98.2719728","29.8776032"],["-98.2717028","29.8775521"],["-98.2714958","29.8775539"],["-98.2713636","29.8775647"],["-98.2711721","29.8776195"],["-98.271064","29.8776585"],["-98.2709809","29.8777028"],["-98.2708876","29.8777609"],["-98.2707888","29.877841"],["-98.2707152","29.8779273"],["-98.2706276","29.8779994"],["-98.2705195","29.8780629"],["-98.2704469","29.878098"],["-98.2703108","29.8781117"],["-98.2698457","29.8778809"],["-98.2696093","29.8777326"],["-98.2694808","29.877654"],["-98.269345","29.8775583"],["-98.2691105","29.8773839"],["-98.2690599","29.877358"],["-98.2689545","29.8773369"],["-98.2689447","29.8772663"],["-98.2689358","29.8772341"],["-98.2688963","29.8771631"],["-98.2687003","29.8768977"],["-98.268535","29.8766796"],["-98.2683259","29.8764101"],["-98.268135","29.876131"],["-98.268098","29.8754937"],["-98.2680242","29.8754017"],["-98.2678825","29.8752568"],["-98.2678373","29.8752251"],["-98.2677897","29.8752172"],["-98.2677514","29.8752206"],["-98.2677071","29.8752339"],["-98.2676621","29.875267"],["-98.2676093","29.8753317"],["-98.2674936","29.8755466"],["-98.267372","29.875774"],["-98.2672943","29.8759124"],["-98.2672414","29.8759899"],["-98.2672001","29.8760359"],["-98.2671612","29.8760573"],["-98.2671191","29.8760694"],["-98.2670814","29.8760696"],["-98.2670315","29.8760597"],["-98.2669786","29.8760287"],["-98.2669219","29.875973"],["-98.2666435","29.8755788"],["-98.2665441","29.8754486"],["-98.2664556","29.8753508"],["-98.2663827","29.8753005"],["-98.2661282","29.8751585"],["-98.265984","29.8751006"],["-98.2658846","29.875081"],["-98.2656873","29.8750791"],["-98.2655709","29.8750742"],["-98.2654749","29.8750606"],["-98.2653357","29.8750107"],["-98.2649322","29.8748168"],["-98.2647469","29.8747335"],["-98.2645131","29.8746566"],["-98.264366","29.8746217"],["-98.2642492","29.8746062"],["-98.2640695","29.8746003"],["-98.2639306","29.8746159"],["-98.2638047","29.8746358"],["-98.2636934","29.8746767"],["-98.2635298","29.8747481"],["-98.2634706","29.8747778"],["-98.2630469","29.8750164"],["-98.262864","29.8751518"],["-98.262776","29.8752261"],["-98.2627045","29.8753897"],["-98.2634227","29.876028"],["-98.2635644","29.8761235"],["-98.2636306","29.8761582"],["-98.2637037","29.8761859"],["-98.2638736","29.8762294"],["-98.2639807","29.8762433"],["-98.2640991","29.8762437"],["-98.2641571","29.8761618"],["-98.2642825","29.8760244"],["-98.2645007","29.8758424"],["-98.2647992","29.8756593"],["-98.2652752","29.8760713"],["-98.2653848","29.8761903"],["-98.2654311","29.8762708"],["-98.2654543","29.8763386"],["-98.2654689","29.8764241"],["-98.2654865","29.8767815"],["-98.265505","29.8772726"],["-98.2655277","29.8774257"],["-98.2655497","29.8775015"],["-98.2655713","29.8776351"],["-98.2656198","29.8778393"],["-98.2657372","29.8782568"],["-98.2657987","29.8783928"],["-98.2658718","29.8784716"],["-98.265947","29.8785318"],["-98.2661202","29.8786613"],["-98.26636","29.87883"],["-98.2665622","29.8786653"],["-98.2667061","29.8785239"],["-98.2667688","29.8784663"],["-98.2668261","29.8784091"],["-98.2668915","29.878367"],["-98.2669901","29.8783298"],["-98.2671383","29.8784687"],["-98.2673718","29.8786805"],["-98.2679005","29.879091"],["-98.2685208","29.878854"],["-98.2697831","29.8783296"],["-98.2703229","29.8781299"],["-98.2704466","29.878098"],["-98.2705162","29.8780647"],["-98.2706281","29.877999"],["-98.2707158","29.8779266"],["-98.2707899","29.8778399"],["-98.270886","29.8777619"],["-98.2709819","29.8777022"],["-98.2710637","29.8776586"],["-98.2711735","29.877619"],["-98.2713656","29.8775643"],["-98.2714912","29.8775538"],["-98.2717027","29.8775521"],["-98.2719638","29.8776015"],["-98.2724401","29.8777046"],["-98.2729435","29.877824"],["-98.2732588","29.8779087"],["-98.2734028","29.8779392"],["-98.2735581","29.8779482"],["-98.2738652","29.8778732"],["-98.2741816","29.8777455"],["-98.2748303","29.8774461"],["-98.274981","29.8774018"],["-98.2751061","29.8773781"],["-98.2754199","29.8773853"],["-98.2756821","29.8773958"],["-98.2758676","29.877389"],["-98.2759815","29.87738"],["-98.2760919","29.8773631"],["-98.2762911","29.877318"],["-98.2765552","29.8772353"],["-98.2788787","29.8762602"],["-98.2793502","29.8760032"],["-98.2799978","29.8755267"],["-98.2806537","29.8750381"],["-98.2809141","29.874837"],["-98.2821794","29.8738854"],["-98.2827966","29.8734232"],["-98.28325","29.8730779"],["-98.2836192","29.8728113"],["-98.2839496","29.8725951"],["-98.2842052","29.8724397"],["-98.2843836","29.8723441"],["-98.2856598","29.8716963"],["-98.2858598","29.8715899"],["-98.2859503","29.8715342"],["-98.2860494","29.8714488"],["-98.2861476","29.871342"],["-98.2862698","29.8711904"],["-98.2865133","29.8708808"],["-98.2867715","29.8705648"],["-98.2870724","29.8701902"],["-98.2873641","29.8697847"],["-98.2874743","29.869587"],["-98.2880458","29.8686333"],["-98.2882078","29.8683427"],["-98.2883315","29.8681318"],["-98.2884483","29.8679482"],["-98.2885342","29.8678505"],["-98.2917759","29.8650477"],["-98.2920902","29.8647383"],["-98.2913636","29.8642764"],["-98.291125","29.864114"],["-98.2908975","29.86393"],["-98.2902935","29.8634328"],["-98.2890071","29.862328"],["-98.2887709","29.8621206"],["-98.2886669","29.8620183"],["-98.2886236","29.861974"],["-98.2883944","29.8617056"],["-98.2881437","29.8613744"],["-98.2879572","29.8610683"],["-98.2876598","29.8604955"],["-98.2873513","29.8596608"],["-98.2871812","29.8591863"],["-98.2870553","29.8589118"],["-98.2869216","29.858646"],["-98.2867422","29.8583611"],["-98.2865574","29.8580901"],["-98.2864212","29.8579078"],["-98.2863007","29.8577677"],["-98.2862312","29.8576876"],["-98.2861359","29.857586"],["-98.2859442","29.8573977"],["-98.285662","29.8571536"],["-98.2853825","29.8569293"],["-98.2832319","29.8553752"],["-98.2829332","29.8551507"],["-98.2826457","29.8549155"],["-98.2823646","29.8546486"],["-98.2818798","29.8541029"],["-98.2815394","29.8536092"],["-98.2772045","29.8469999"],["-98.2763729","29.8457454"],["-98.276247","29.8455719"],["-98.276126","29.8454369"],["-98.2760028","29.8453111"],["-98.2758244","29.8451455"],["-98.2755488","29.8449336"],["-98.2754388","29.8448621"],["-98.2751671","29.8447019"],["-98.2751052","29.8446729"],["-98.2750058","29.8446287"],["-98.2746634","29.8444777"],["-98.2744361","29.8444041"],["-98.274233","29.8443577"],["-98.2740724","29.8443155"],["-98.274031","29.8441872"],["-98.2740119","29.8441457"],["-98.2739548","29.8440792"],["-98.2738794","29.8440057"],["-98.273729","29.8439026"],["-98.2735585","29.8437992"],["-98.2734261","29.8437091"],["-98.273279","29.8435512"],["-98.2731847","29.8433724"],["-98.2730516","29.8430287"],["-98.2728431","29.8422151"],["-98.2728369","29.842161"],["-98.2728171","29.8420692"],["-98.2728164","29.8419393"],["-98.2728338","29.8417853"],["-98.2728885","29.8415976"],["-98.2729602","29.8414368"],["-98.2730291","29.8413189"],["-98.2730879","29.8412468"],["-98.2732157","29.841114"],["-98.2734219","29.8409097"],["-98.273589","29.8407389"],["-98.2740054","29.8402576"],["-98.2742175","29.8400186"],["-98.2746033","29.8395991"],["-98.2746534","29.8395238"],["-98.2746809","29.8394372"],["-98.274715","29.8392128"],["-98.2748752","29.8391368"],["-98.2751361","29.8390097"],["-98.275339","29.8388997"],["-98.2755526","29.8387679"],["-98.2776747","29.8372063"],["-98.2779095","29.8370322"],["-98.2783962","29.8366937"],["-98.2787198","29.8364936"],["-98.282813","29.8342806"],["-98.2852091","29.832976"],["-98.2857046","29.8327213"],["-98.2859518","29.8326026"],["-98.2864046","29.8323861"],["-98.2868066","29.8322114"],["-98.2905701","29.8307148"],["-98.2910443","29.8305171"],["-98.2912616","29.8304003"],["-98.2914392","29.8302933"],["-98.2916137","29.8301709"],["-98.2918584","29.8299749"],["-98.292154","29.8296716"],["-98.2922761","29.8295241"],["-98.2924143","29.8293329"],["-98.292564","29.829082"],["-98.2926515","29.8288952"],["-98.2927206","29.8287176"],["-98.2927762","29.828553"],["-98.2928363","29.8283146"],["-98.2928662","29.8281193"],["-98.2928876","29.8279288"],["-98.2928899","29.8277221"],["-98.2928736","29.8274923"],["-98.2928084","29.8270354"],["-98.2926188","29.8258102"],["-98.2925669","29.8252971"],["-98.2925669","29.8250503"],["-98.292591","29.8246928"],["-98.2926479","29.8242771"],["-98.2927519","29.8238426"],["-98.2928102","29.8236679"],["-98.2929189","29.8233803"],["-98.2929986","29.8231969"],["-98.29321","29.8227344"],["-98.2934432","29.8222352"],["-98.2936796","29.8217306"],["-98.2952259","29.8184224"],["-98.2954514","29.8180265"],["-98.2956421","29.8177585"],["-98.295835","29.8175374"],["-98.2959962","29.8173702"],["-98.2961518","29.8172257"],["-98.2962817","29.817116"],["-98.2964149","29.8170118"],["-98.2969114","29.8166764"],["-98.3016248","29.8135921"],["-98.3101061","29.8080901"],["-98.3106147","29.8078149"],["-98.3108311","29.8077185"],["-98.3109923","29.8076405"],["-98.3113","29.8075128"],["-98.3117109","29.8073634"],["-98.3121916","29.8072123"],["-98.3126983","29.8070741"],["-98.3131012","29.8069872"],["-98.3137045","29.8068936"],["-98.3145397","29.8068186"],["-98.3151986","29.8068063"],["-98.3156397","29.8068263"],["-98.3159841","29.8068471"],["-98.3162983","29.8068769"],["-98.3169946","29.8069941"],["-98.3309231","29.8103105"],["-98.3313332","29.8103883"],["-98.3319166","29.8104655"],["-98.3323443","29.8104996"],["-98.3328478","29.8105294"],["-98.3335555","29.8105235"],["-98.3341273","29.8104822"],["-98.3357111","29.8103328"],["-98.340579","29.8099144"],["-98.3411556","29.8098486"],["-98.341707","29.8097369"],["-98.3421872","29.8096124"],["-98.3425036","29.8095029"],["-98.3427857","29.8093907"],["-98.3430699","29.8092577"],["-98.3435619","29.8090092"],["-98.3441388","29.8086081"],["-98.3446102","29.8082236"],["-98.348651","29.8047749"],["-98.3489711","29.8044898"],["-98.3491178","29.804419"],["-98.3494064","29.8043575"],["-98.3497484","29.8043085"],["-98.351377","29.8045184"],["-98.3518951","29.8045977"],["-98.3521873","29.8046533"],["-98.3524599","29.8047189"],["-98.3527707","29.8048064"],["-98.3532157","29.8049635"],["-98.3545324","29.8054895"],["-98.3549619","29.8056733"],["-98.3556817","29.8059661"],["-98.3584951","29.8071123"],["-98.3588816","29.8072586"],["-98.3592116","29.8073636"],["-98.3595498","29.8074529"],["-98.3599251","29.8075414"],["-98.3602504","29.8076036"],["-98.3605402","29.8076418"],["-98.3609409","29.8076696"],["-98.3612927","29.8076836"],["-98.3615261","29.8076877"],["-98.3616728","29.8076888"],["-98.3619544","29.8076711"],["-98.3623016","29.8076387"],["-98.3627365","29.807587"],["-98.3631226","29.8075257"],["-98.3634123","29.8074626"],["-98.3637794","29.8073594"],["-98.3654956","29.8067975"],["-98.3706139","29.805079"],["-98.3708366","29.8050144"],["-98.3712176","29.8049171"],["-98.371901","29.8047663"],["-98.3724749","29.8046597"],["-98.3731459","29.8045711"],["-98.3761594","29.8043006"],["-98.3772246","29.8041984"],["-98.3829957","29.8036615"],["-98.3834588","29.803612"],["-98.3840103","29.8035322"],["-98.384654","29.8034119"],["-98.3848898","29.8033611"],["-98.3849619","29.8033442"],["-98.3850375","29.8033255"],["-98.3856446","29.8031651"],["-98.387132","29.8026343"],["-98.3876102","29.8024546"],["-98.3883772","29.8021607"],["-98.3899393","29.8015698"],["-98.3902293","29.8014585"],["-98.3905761","29.8013259"],["-98.3909972","29.8011654"],["-98.3934634","29.8002395"],["-98.394598","29.7998118"],["-98.3951738","29.7995963"],["-98.3954405","29.7994916"],["-98.3968928","29.7989458"],["-98.3982148","29.7984599"],["-98.3990977","29.7982171"],["-98.3998998","29.7980533"],["-98.4005","29.7979495"],["-98.4010865","29.7978774"],["-98.4019211","29.7978219"],["-98.4023232","29.7978105"],["-98.4028037","29.7978099"],["-98.4046107","29.7977834"],["-98.4050189","29.7977828"],["-98.4067857","29.797756"],["-98.4087861","29.7977271"],["-98.410244","29.7976922"],["-98.4154703","29.797615"],["-98.4177648","29.7976358"],["-98.4180035","29.7976761"],["-98.4189295","29.7977178"],["-98.419793","29.7977668"],["-98.4198552","29.7975869"],["-98.4200066","29.7970474"],["-98.4201103","29.7966416"],["-98.4201855","29.7962715"],["-98.4203495","29.7951921"],["-98.4206167","29.7936921"],["-98.4242256","29.7815237"],["-98.4245979","29.7804078"],["-98.4248992","29.7797462"],["-98.4262765","29.7772547"],["-98.4266203","29.7765473"],["-98.4269085","29.775745"],["-98.4271145","29.7750295"],["-98.4272851","29.7741961"],["-98.4281716","29.7677393"],["-98.4283423","29.7668095"],["-98.4286139","29.7659492"],["-98.4296189","29.7636899"],["-98.4298602","29.7630154"],["-98.4299815","29.7624762"],["-98.4300591","29.7619608"],["-98.4303096","29.7594073"],["-98.4305305","29.757622"],["-98.4326708","29.7473358"],["-98.4328843","29.7466436"],["-98.4332628","29.7457531"],["-98.4338337","29.7448155"],["-98.4373824","29.7402396"],["-98.4377983","29.7397011"],["-98.4380504","29.7393911"],["-98.4384325","29.7387731"],["-98.4386604","29.7382963"],["-98.4387655","29.7380394"],["-98.4388467","29.7378007"],["-98.4389686","29.737382"],["-98.4391854","29.7364748"],["-98.4412255","29.7273746"],["-98.4419781","29.7239879"],["-98.4421666","29.7232719"],["-98.4423214","29.7228157"],["-98.4425221","29.72233"],["-98.4427721","29.7217925"],["-98.44417","29.719054"],["-98.4458029","29.7162626"],["-98.4466855","29.7148898"],["-98.4497172","29.7091033"],["-98.4500375","29.7082594"],["-98.4503572","29.7072671"],["-98.450372","29.707186"],["-98.4505336","29.7059838"],["-98.450841","29.703788"],["-98.4513796","29.7004607"],["-98.4522868","29.6960341"],["-98.452441","29.6950764"],["-98.4529656","29.6911924"],["-98.4532771","29.6887577"],["-98.4535498","29.6866191"],["-98.4537835","29.6842287"],["-98.4534855","29.6796525"],["-98.453259","29.6777682"],["-98.4530247","29.6767922"],["-98.450964","29.6703293"],["-98.4506792","29.6691194"],["-98.4505873","29.6685155"],["-98.4504887","29.6659228"],["-98.450583","29.6627586"],["-98.4506125","29.6617091"],["-98.4506289","29.6604117"],["-98.4505713","29.6594084"],["-98.4502315","29.6578426"],["-98.4500716","29.6571275"],["-98.4494632","29.6549623"],["-98.4493601","29.6543593"],["-98.4492942","29.6536827"],["-98.4493163","29.6530166"],["-98.4494467","29.6523598"],["-98.4496889","29.6516498"],["-98.4523753","29.6451985"],["-98.4541023","29.6415294"],["-98.4644208","29.622396"],["-98.4646867","29.6218197"],["-98.4649239","29.6212829"],["-98.4652341","29.6204812"],["-98.4653464","29.6201354"],["-98.4656429","29.6191158"],["-98.4658386","29.6184363"],["-98.4661212","29.6174562"],["-98.4672108","29.6136069"],["-98.4704388","29.6026038"],["-98.470689","29.6016395"],["-98.4709191","29.600827"],["-98.4712528","29.5996627"],["-98.471345","29.5993054"],["-98.4717361","29.5980152"],["-98.4736021","29.5915885"],["-98.4738626","29.5906773"],["-98.4761544","29.5827977"],["-98.4814067","29.5676327"],["-98.4852493","29.5566553"],["-98.4858812","29.5549798"],["-98.4860256","29.554618"],["-98.4926232","29.5396565"],["-98.4927291","29.5393379"],["-98.4927567","29.5392421"],["-98.4927866","29.5391292"],["-98.4928116","29.5390214"],["-98.4928304","29.5389112"],["-98.4928447","29.5388011"],["-98.4928623","29.5385887"],["-98.4928639","29.5384749"],["-98.4928599","29.5383711"],["-98.4928517","29.538266"],["-98.49284","29.5381478"],["-98.4928228","29.5380407"],["-98.4928007","29.5379297"],["-98.4927759","29.5378235"],["-98.492747","29.5377185"],["-98.4927136","29.5376097"],["-98.492675","29.5375056"],["-98.4926348","29.5374058"],["-98.4925849","29.5373"],["-98.4925344","29.5371986"],["-98.492474","29.5370901"],["-98.4924167","29.5369938"],["-98.4923545","29.5368998"],["-98.4922873","29.5368024"],["-98.4922198","29.5367136"],["-98.4921386","29.5366161"],["-98.4920664","29.5365339"],["-98.4919818","29.5364434"],["-98.4918094","29.5362767"],["-98.4917149","29.5361909"],["-98.4871097","29.5326249"],["-98.4869177","29.5324703"],["-98.4866412","29.5322331"],["-98.4863753","29.5319879"],["-98.4862064","29.5318212"],["-98.4860474","29.5316557"],["-98.4858792","29.5314719"],["-98.4855801","29.5311178"],["-98.4853655","29.5308398"],["-98.4849289","29.5301944"],["-98.4847061","29.5298061"],["-98.4843522","29.5291025"],["-98.4812193","29.5228199"],["-98.4797667","29.5198251"],["-98.4794759","29.5192395"],["-98.4793372","29.5189739"],["-98.4780899","29.5165026"],["-98.4775879","29.5154928"],["-98.4771887","29.5146979"],["-98.4766257","29.5135592"],["-98.4764395","29.5131311"],["-98.4762834","29.5126783"],["-98.4762005","29.5122153"],["-98.4761755","29.5119273"],["-98.476185","29.5115581"],["-98.4762281","29.5112743"],["-98.4762905","29.5109636"],["-98.4763785","29.5106902"],["-98.4764633","29.5104734"],["-98.4766535","29.5101025"],["-98.4769157","29.5096272"],["-98.4779142","29.5079251"],["-98.4814781","29.5015041"],["-98.4839065","29.4973954"],["-98.4841691","29.4968477"],["-98.4842319","29.496667"],["-98.4842974","29.4964205"],["-98.4843473","29.4960714"],["-98.484358","29.4957827"],["-98.484333","29.4953985"],["-98.4842258","29.4947916"],["-98.4840784","29.4939682"],["-98.483628","29.4914132"],["-98.4835011","29.4907361"],["-98.4833991","29.4900633"],["-98.4833129","29.489594"],["-98.4829462","29.487743"],["-98.4822275","29.4836964"],["-98.4821241","29.4831489"],["-98.4810694","29.4773124"],["-98.4808986","29.4766093"],["-98.4806922","29.4760407"],["-98.4804772","29.4755696"],["-98.4802446","29.475126"],["-98.4800464","29.4747908"],["-98.4796199","29.4742088"],["-98.4772525","29.471469"],["-98.4768427","29.4710004"],["-98.476329","29.4703946"],["-98.4757131","29.4696779"],["-98.4753577","29.4692887"],["-98.4751144","29.4689796"],["-98.474864","29.4686335"],["-98.474547","29.4681592"],["-98.4743539","29.4678154"],["-98.4741987","29.467518"],["-98.4740831","29.4671857"],["-98.4739334","29.4666504"],["-98.4738949","29.4663522"],["-98.4738706","29.466041"],["-98.4738732","29.4657816"],["-98.4739511","29.4653194"],["-98.4740647","29.4650045"],["-98.4741958","29.4647629"],["-98.474417","29.464466"],["-98.4747349","29.4641408"],["-98.4750182","29.4638854"],["-98.4753053","29.4636487"],["-98.4756217","29.4634135"],["-98.4759625","29.4631847"],["-98.4762556","29.4629983"],["-98.4766144","29.4627758"],["-98.4775767","29.4622665"],["-98.4790492","29.461612"],["-98.4795135","29.4613889"],["-98.479743","29.4612577"],["-98.4799397","29.4611294"],["-98.4801524","29.4609652"],["-98.4805985","29.4605617"],["-98.4808395","29.4602804"],["-98.4811952","29.4597413"],["-98.4814147","29.4593115"],["-98.4815639","29.458936"],["-98.4816885","29.4585161"],["-98.4817553","29.458153"],["-98.4817977","29.4578466"],["-98.4818215","29.4575271"],["-98.4818414","29.4558118"],["-98.4818769","29.4553369"],["-98.4819146","29.4550558"],["-98.4819983","29.4546613"],["-98.4820581","29.4544622"],["-98.4821141","29.4543028"],["-98.4821787","29.4541393"],["-98.4823439","29.4537725"],["-98.4825331","29.4534148"],["-98.4828548","29.4528948"],["-98.4831036","29.4524951"],["-98.4833742","29.4520623"],["-98.4836201","29.4516496"],["-98.4838013","29.4512886"],["-98.4839449","29.4509235"],["-98.4839972","29.4506458"],["-98.4840051","29.4505869"],["-98.4840123","29.4502951"],["-98.4839732","29.4500084"],["-98.4839293","29.4497928"],["-98.483875","29.4496179"],["-98.4837349","29.4492961"],["-98.483576","29.4490231"],["-98.4834486","29.4488516"],["-98.4833342","29.4487054"],["-98.4831926","29.4485549"],["-98.4830259","29.4484079"],["-98.4828396","29.4482694"],["-98.4826402","29.4481353"],["-98.4824505","29.4480272"],["-98.4822848","29.4479433"],["-98.4819418","29.4478059"],["-98.4804472","29.4472567"],["-98.4800628","29.4471173"],["-98.4797678","29.4470046"],["-98.4794062","29.4468541"],["-98.479088","29.4467121"],["-98.478843","29.4465855"],["-98.4786596","29.446465"],["-98.4784851","29.4463337"],["-98.4783632","29.4462241"],["-98.4782677","29.4461075"],["-98.4781722","29.4459852"],["-98.4780697","29.44583"],["-98.4779759","29.4456628"],["-98.4779029","29.4454975"],["-98.4778506","29.4453288"],["-98.4778035","29.4450656"],["-98.4777952","29.4449355"],["-98.4777959","29.4447923"],["-98.4778154","29.444595"],["-98.4778685","29.4443341"],["-98.4779196","29.4441218"],["-98.4779813","29.4439142"],["-98.4781117","29.4435575"],["-98.4782993","29.4430302"],["-98.4786195","29.4420671"],["-98.4788464","29.4413936"],["-98.4790225","29.4408554"],["-98.479194","29.4399971"],["-98.4792084","29.4396705"],["-98.4792026","29.4394027"],["-98.4791756","29.4392463"],["-98.4791059","29.4390049"],["-98.4790286","29.4388128"],["-98.478958","29.438669"],["-98.4788859","29.4385394"],["-98.4787608","29.438356"],["-98.478516","29.4380209"],["-98.478286","29.4377003"],["-98.4780838","29.4373947"],["-98.4779469","29.437174"],["-98.4778537","29.4370033"],["-98.4777824","29.4368493"],["-98.4777242","29.4366722"],["-98.4776771","29.4364685"],["-98.4776556","29.4362691"],["-98.4776595","29.4360677"],["-98.4776803","29.4358413"],["-98.4777186","29.4356237"],["-98.4777777","29.4354116"],["-98.4778627","29.4351555"],["-98.478014","29.4347482"],["-98.4782131","29.4342331"],["-98.4784143","29.4338111"],["-98.4786689","29.4333181"],["-98.4790638","29.432729"],["-98.480843","29.4302611"],["-98.4810752","29.4299186"],["-98.4812677","29.4295899"],["-98.4814842","29.4290782"],["-98.4815671","29.4288329"],["-98.4816583","29.4284641"],["-98.4817141","29.4278922"],["-98.4817471","29.4269393"],["-98.4817294","29.4258398"],["-98.481682","29.424934"],["-98.4816896","29.4243851"],["-98.4816433","29.4235548"],["-98.4815961","29.4232382"],["-98.4814837","29.422716"],["-98.4815021","29.4225853"],["-98.481555","29.4225092"],["-98.4816894","29.4224567"],["-98.4818469","29.4224241"],["-98.4821964","29.4224988"],["-98.4842527","29.4229371"],["-98.4848632","29.4230708"],["-98.487271","29.4236153"],["-98.4873329","29.4236313"],["-98.4873812","29.4236448"],["-98.4874796","29.4236677"],["-98.4876265","29.4237033"],["-98.4877922","29.4237459"],["-98.4878349","29.4237574"],["-98.4885185","29.4239096"],["-98.4890525","29.4240133"],["-98.4893932","29.4240774"],["-98.4898605","29.4241658"],["-98.4909562","29.4244178"],["-98.4912685","29.4244885"],["-98.4915008","29.4245382"],["-98.4919048","29.4246289"],["-98.4930218","29.4249018"],["-98.4937101","29.425036"],["-98.4944608","29.4251745"],["-98.4945222","29.4251759"]]}};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:[["-96.7958456","32.77614"],["-96.7957448","32.7758757"],["-96.7956442","32.7755159"],["-96.7960683","32.7751455"],["-96.7953278","32.7745206"],["-96.7932073","32.7762513"],["-96.792449","32.7756116"],["-96.792259","32.7754478"],["-96.79198","32.7752082"],["-96.7918238","32.7750748"],["-96.7917708","32.7750141"],["-96.7917105","32.7749424"],["-96.7916356","32.7748275"],["-96.7911112","32.7739246"],["-96.7909315","32.7739678"],["-96.7908237","32.774002"],["-96.7897544","32.7741014"],["-96.7891059","32.7741675"],["-96.7885003","32.7742685"],["-96.7880897","32.7743557"],["-96.7876381","32.7744718"],["-96.7871176","32.7746278"],["-96.7866124","32.7747918"],["-96.7861418","32.7749896"],["-96.7856085","32.7752665"],["-96.7853067","32.7754595"],["-96.7848694","32.7757963"],["-96.7836732","32.7768357"],["-96.7832329","32.7771452"],["-96.7829148","32.7773349"],["-96.7827188","32.7774211"],["-96.7825392","32.7774711"],["-96.7823307","32.7775034"],["-96.7821759","32.7775125"],["-96.7820164","32.7775093"],["-96.7818263","32.7774878"],["-96.7816151","32.7774359"],["-96.7814216","32.777368"],["-96.7812714","32.7772921"],["-96.7811342","32.7772112"],["-96.7809952","32.7771098"],["-96.7808648","32.7769933"],["-96.7807301","32.7768587"],["-96.7804433","32.7765585"],["-96.7800522","32.7761674"],["-96.7791842","32.7752423"],["-96.7787827","32.7748297"],["-96.7786861","32.7746697"],["-96.7785909","32.7744559"],["-96.7785136","32.7742481"],["-96.7784501","32.7740404"],["-96.7783972","32.7738294"],["-96.778355","32.7735974"],["-96.7783337","32.7733698"],["-96.778329","32.7729375"],["-96.7783278","32.7722059"],["-96.7782953","32.7717321"],["-96.7782211","32.7712451"],["-96.7781149","32.7707126"],["-96.7779923","32.770304"],["-96.7775492","32.7690647"],["-96.7746673","32.7610463"],["-96.7744198","32.7604787"],["-96.7740615","32.7597524"],["-96.7737113","32.7590924"],["-96.7725326","32.756973"],["-96.772266","32.756449"],["-96.7720253","32.7559069"],["-96.7717464","32.7552133"],["-96.7715117","32.7545134"],["-96.771067","32.753044"],["-96.7709464","32.75263"],["-96.7704208","32.7509067"],["-96.7627349","32.7255418"],["-96.7624673","32.7247034"],["-96.7622672","32.7241936"],["-96.7620389","32.723687"],["-96.7617213","32.7230372"],["-96.7569807","32.7137322"],["-96.7568224","32.7133623"],["-96.7566593","32.7129615"],["-96.7565329","32.7126143"],["-96.7563745","32.7121491"],["-96.7559564","32.7106675"],["-96.7539409","32.7033016"],["-96.7536853","32.7025162"],["-96.7483555","32.6880779"],["-96.7477986","32.6866089"],["-96.7476109","32.6861898"],["-96.7472273","32.6854083"],["-96.7467998","32.6846543"],["-96.7465343","32.6842283"],["-96.7462797","32.6838524"],["-96.7459699","32.6834229"],["-96.7456814","32.6830463"],["-96.7452253","32.6824991"],["-96.7333619","32.6689014"],["-96.7270217","32.6621031"],["-96.7263104","32.6614077"],["-96.7257754","32.6609306"],["-96.7254112","32.6606303"],["-96.7251383","32.6604088"],["-96.7245223","32.659928"],["-96.7231495","32.6590871"],["-96.7175042","32.6560924"],["-96.7156283","32.6551169"],["-96.7147269","32.6546397"],["-96.7136845","32.6540942"],["-96.7118341","32.6531382"],["-96.7110854","32.652737"],["-96.7107557","32.6525391"],["-96.7104767","32.6523512"],["-96.7098778","32.6519088"],["-96.7095514","32.6516048"],["-96.7092854","32.6513402"],["-96.709022","32.6510572"],["-96.7087759","32.6507749"],["-96.7084005","32.6502768"],["-96.7082001","32.649978"],["-96.708018","32.6496715"],["-96.7064145","32.6464134"],["-96.7040519","32.6416662"],["-96.695045","32.6235106"],["-96.6861363","32.6041756"],["-96.6851338","32.6021596"],["-96.6846481","32.6012649"],["-96.6841714","32.6004052"],["-96.6840744","32.6002412"],["-96.6829081","32.598134"],["-96.6822471","32.5968788"],["-96.6819964","32.5964095"],["-96.6817515","32.5959648"],["-96.6814852","32.5954658"],["-96.6811657","32.5948796"],["-96.6806154","32.5938526"],["-96.6798879","32.5924993"],["-96.6795399","32.5918622"],["-96.6779934","32.5890031"],["-96.6769538","32.5868539"],["-96.6762124","32.5853287"],["-96.6710459","32.5744356"],["-96.669887","32.5720616"],["-96.6691874","32.5706259"],["-96.6679519","32.5679386"],["-96.667472","32.5669648"],["-96.6657583","32.5633759"],["-96.6657074","32.5632238"],["-96.665352","32.5623042"],["-96.6647004","32.5605279"],["-96.6641029","32.5588354"],["-96.6638347","32.5581406"],["-96.6627507","32.5552168"],["-96.6624206","32.5543157"],["-96.6621084","32.5534153"],["-96.6615359","32.5518088"],["-96.6607294","32.5495938"],["-96.6599866","32.5475612"],["-96.6594385","32.545901"],["-96.6592711","32.5451641"],["-96.6590078","32.5432831"],["-96.6589866","32.5422985"],["-96.6593682","32.528948"],["-96.6594395","32.5278303"],["-96.6595405","32.5271911"],["-96.6599572","32.5254936"],["-96.6628816","32.5175851"],["-96.6632373","32.516225"],["-96.6633584","32.5154298"],["-96.6634402","32.514722"],["-96.6634881","32.5134565"],["-96.6634325","32.5116122"],["-96.6634725","32.510368"],["-96.6636745","32.5078719"],["-96.6637579","32.5063413"],["-96.6638015","32.5052338"],["-96.6639001","32.501193"],["-96.6642301","32.4892625"],["-96.6642685","32.4878274"],["-96.6643648","32.4845228"],["-96.6643314","32.4838215"],["-96.6642606","32.4830849"],["-96.6641453","32.4823648"],["-96.6640008","32.4816819"],["-96.6638454","32.4810381"],["-96.6632931","32.4795172"],["-96.6621771","32.4768656"],["-96.6617506","32.4757683"],["-96.6614629","32.4747841"],["-96.6612217","32.4736606"],["-96.6611161","32.472918"],["-96.6610634","32.4719443"],["-96.6610579","32.4713036"],["-96.6610952","32.4706509"],["-96.6611379","32.4700607"],["-96.6612391","32.4694217"],["-96.6615771","32.4674805"],["-96.6617838","32.4662856"],["-96.6619823","32.4652081"],["-96.6622516","32.4637603"],["-96.6647067","32.4500233"],["-96.6647951","32.4494491"],["-96.664868","32.4489053"],["-96.6648987","32.4484989"],["-96.6648776","32.4473073"],["-96.6648142","32.446517"],["-96.6646135","32.4452878"],["-96.6644618","32.4445106"],["-96.6641508","32.4434181"],["-96.6637127","32.4422893"],["-96.6633633","32.4414113"],["-96.6626168","32.4394592"],["-96.6590221","32.4300615"],["-96.6589077","32.4296637"],["-96.6587451","32.4289528"],["-96.6586347","32.4284268"],["-96.6584916","32.4275032"],["-96.6584375","32.4268815"],["-96.6584198","32.4257808"],["-96.6584718","32.4248002"],["-96.6585244","32.4243729"],["-96.6586138","32.4238646"],["-96.6587145","32.4233441"],["-96.6590625","32.4219605"],["-96.6595675","32.4201033"],["-96.6598688","32.4188708"],["-96.6599692","32.418405"],["-96.6600324","32.4179765"],["-96.6601164","32.4172408"],["-96.6601482","32.4163848"],["-96.6601408","32.4154789"],["-96.6601048","32.4149713"],["-96.6600166","32.4141323"],["-96.6598867","32.4133681"],["-96.6597648","32.4128358"],["-96.6595229","32.4119814"],["-96.6592722","32.4111687"],["-96.6589316","32.4102102"],["-96.6585882","32.4092349"],["-96.6566021","32.4036956"],["-96.6562795","32.4028712"],["-96.6549551","32.3997877"],["-96.654559","32.3987207"],["-96.6483872","32.3811986"],["-96.647682","32.3792567"],["-96.6475025","32.3787658"],["-96.6472744","32.3781684"],["-96.6470857","32.3776896"],["-96.6469902","32.3774743"],["-96.6467437","32.3770203"],["-96.6463648","32.3763461"],["-96.6457938","32.3754305"],["-96.6455315","32.3750722"],["-96.6445062","32.3738292"],["-96.633877","32.361543"],["-96.633301","32.3608742"],["-96.6329025","32.3604139"],["-96.6326389","32.3601113"],["-96.6314425","32.3587093"],["-96.6309561","32.3581348"],["-96.6302244","32.3572396"],["-96.6294986","32.3562938"],["-96.6288737","32.3553976"],["-96.6198584","32.3404426"],["-96.6195582","32.3399341"],["-96.6192303","32.3393869"],["-96.6182646","32.3378301"],["-96.6171647","32.3362373"],["-96.6162671","32.3349648"],["-96.6153309","32.3336495"],["-96.6147856","32.3328635"],["-96.6132002","32.3305892"],["-96.6090863","32.3248053"],["-96.6090542","32.3247604"],["-96.6089801","32.3246558"],["-96.6089291","32.3245846"],["-96.6084462","32.3239018"],["-96.6076519","32.3227797"],["-96.6071426","32.3220711"],["-96.6059619","32.3204619"],["-96.6056313","32.3200467"],["-96.5999195","32.3132148"],["-96.599575","32.3128566"],["-96.5992178","32.3125205"],["-96.5983","32.3117181"],["-96.597417","32.311062"],["-96.5965538","32.3104438"],["-96.5958186","32.3099732"],["-96.5952549","32.3096566"],["-96.5928174","32.3084847"],["-96.5739615","32.2997606"],["-96.5713595","32.2985655"],["-96.5503835","32.2888773"],["-96.548648","32.2881445"],["-96.5470431","32.2874652"],["-96.544721","32.2863916"],["-96.5422258","32.2851724"],["-96.5417967","32.284958"],["-96.5416508","32.2848801"],["-96.539996","32.2840534"],["-96.5393214","32.2837417"],["-96.5209476","32.275243"],["-96.5204071","32.2749894"],["-96.5150799","32.272521"],["-96.5143318","32.2721546"],["-96.5135202","32.2716763"],["-96.5126829","32.2711162"],["-96.512184","32.2707285"],["-96.5115649","32.2702111"],["-96.5111683","32.2698546"],["-96.5108658","32.2695349"],["-96.5099842","32.2685144"],["-96.5095387","32.2679305"],["-96.5090023","32.267067"],["-96.5085259","32.2661958"],["-96.5080681","32.2653399"],["-96.5073832","32.2640481"],["-96.5068598","32.263038"],["-96.5044444","32.2585455"],["-96.5021768","32.2543328"],["-96.5017211","32.2534679"],["-96.500246","32.2507134"],["-96.4992499","32.2490611"],["-96.4968682","32.245291"],["-96.4958681","32.2434325"],["-96.4927277","32.2370302"],["-96.4907895","32.2330876"],["-96.4897214","32.2309773"],["-96.486373","32.2246087"],["-96.4859234","32.2236608"],["-96.4853876","32.2224503"],["-96.4849144","32.2214075"],["-96.484507","32.2205984"],["-96.4832534","32.2182167"],["-96.4763274","32.2042684"],["-96.4752219","32.2020259"],["-96.4747744","32.2011206"],["-96.4743315","32.200178"],["-96.474154","32.1996888"],["-96.4740506","32.199389"],["-96.4738979","32.1988358"],["-96.4737613","32.1980862"],["-96.4736206","32.19694"],["-96.4733007","32.1943643"],["-96.4730796","32.1927259"],["-96.4729062","32.191471"],["-96.4728387","32.1909546"],["-96.4721164","32.1851764"],["-96.4711488","32.1775218"],["-96.4710304","32.1765934"],["-96.4691786","32.1621324"],["-96.4687626","32.1588405"],["-96.4681798","32.1541727"],["-96.4681052","32.1537064"],["-96.468043","32.1534459"],["-96.4679141","32.1529714"],["-96.4677647","32.1525074"],["-96.4676134","32.1520948"],["-96.4673173","32.1513679"],["-96.4671166","32.1509344"],["-96.4668208","32.1503735"],["-96.4664991","32.1498085"],["-96.4661861","32.1493318"],["-96.465093","32.147796"],["-96.4646759","32.147163"],["-96.4642201","32.1463254"],["-96.4630036","32.1441493"],["-96.4623422","32.1430186"],["-96.4619854","32.1424498"],["-96.461796","32.1421446"],["-96.4558664","32.1332219"],["-96.4496812","32.1238531"],["-96.4491124","32.1230563"],["-96.4478883","32.1212893"],["-96.4470674","32.1200711"],["-96.4465111","32.1191769"],["-96.4461672","32.118526"],["-96.4458963","32.1179883"],["-96.4457575","32.1177115"],["-96.4455655","32.1172467"],["-96.4454219","32.1168424"],["-96.4450497","32.1156182"],["-96.4448317","32.1146805"],["-96.4445038","32.1131176"],["-96.4418328","32.101091"],["-96.4410056","32.0971747"],["-96.4406829","32.0957222"],["-96.4404584","32.0946697"],["-96.4403218","32.0940491"],["-96.439854","32.0920132"],["-96.4394904","32.0903499"],["-96.4392185","32.0889733"],["-96.4391354","32.0882209"],["-96.439084","32.0876034"],["-96.4390706","32.086877"],["-96.4391003","32.086105"],["-96.4391916","32.0851606"],["-96.4393443","32.0843171"],["-96.4395401","32.083467"],["-96.4397427","32.0827857"],["-96.4399402","32.0821857"],["-96.4400481","32.0818999"],["-96.4402885","32.0813531"],["-96.4404765","32.0809633"],["-96.4407411","32.0804397"],["-96.4410988","32.0798101"],["-96.4413696","32.0793647"],["-96.4416068","32.079009"],["-96.4418686","32.078633"],["-96.4421559","32.0782645"],["-96.4425897","32.0777592"],["-96.4431859","32.0770733"],["-96.4436855","32.0764004"],["-96.450792","32.0678089"],["-96.4512259","32.0672638"],["-96.4516327","32.0666392"],["-96.4519302","32.0661181"],["-96.452095","32.0657631"],["-96.4522638","32.0653628"],["-96.4523993","32.064948"],["-96.4525195","32.0645058"],["-96.4526457","32.063725"],["-96.4526806","32.0632011"],["-96.4526791","32.0624936"],["-96.4525982","32.0619316"],["-96.4524666","32.0612628"],["-96.4464541","32.039769"],["-96.4461246","32.0386751"],["-96.4458182","32.0378782"],["-96.4425366","32.0292901"],["-96.4402474","32.0234557"],["-96.4369208","32.0152462"],["-96.4333378","32.0067339"],["-96.4288028","31.9959884"],["-96.4249526","31.9868148"],["-96.4246263","31.985901"],["-96.424461","31.9853238"],["-96.4242555","31.9843563"],["-96.4223619","31.9712823"],["-96.4221065","31.9699359"],["-96.4208416","31.9648828"],["-96.4205892","31.9636343"],["-96.4205398","31.9632035"],["-96.4205005","31.9625619"],["-96.4204962","31.9586141"],["-96.4205134","31.9570271"],["-96.4205489","31.9565516"],["-96.4205835","31.9562869"],["-96.4216699","31.9512878"],["-96.4217975","31.9507243"],["-96.4218668","31.9505261"],["-96.4222549","31.9489082"],["-96.4231128","31.9446987"],["-96.4235165","31.9429357"],["-96.4236338","31.9423948"],["-96.4238067","31.9415659"],["-96.4244194","31.9386193"],["-96.4247196","31.9375081"],["-96.4250508","31.9359869"],["-96.4251425","31.9354955"],["-96.4251764","31.935249"],["-96.4252002","31.9349304"],["-96.4252101","31.9344584"],["-96.4251978","31.9342071"],["-96.4251405","31.9338574"],["-96.425085","31.9335647"],["-96.4250467","31.9334058"],["-96.4249974","31.9332282"],["-96.4249373","31.9330358"],["-96.424824","31.9327262"],["-96.4246818","31.9324164"],["-96.4245299","31.9321521"],["-96.4243058","31.9318225"],["-96.4238281","31.9312619"],["-96.4236318","31.9310691"],["-96.4234459","31.9309107"],["-96.4229043","31.930499"],["-96.422433","31.9301891"],["-96.417158","31.9269177"],["-96.4163651","31.9263617"],["-96.4160102","31.926076"],["-96.4156131","31.9257391"],["-96.4148259","31.9249257"],["-96.4140012","31.9239642"],["-96.4133376","31.9231957"],["-96.413135","31.9229866"],["-96.4125649","31.9224669"],["-96.4119096","31.9219354"],["-96.4115526","31.9216631"],["-96.38929","31.9080054"],["-96.3878921","31.9071429"],["-96.3870956","31.9066511"],["-96.3857045","31.9058341"],["-96.3571209","31.8904914"],["-96.3551209","31.8893901"],["-96.3543031","31.8888359"],["-96.3538226","31.8884436"],["-96.3534673","31.8881152"],["-96.3382342","31.8720989"],["-96.3374426","31.8712902"],["-96.3370361","31.8709129"],["-96.3365839","31.8705341"],["-96.3360948","31.8701692"],["-96.335597","31.8698315"],["-96.3350338","31.8695139"],["-96.3343694","31.8691727"],["-96.3337775","31.8689012"],["-96.3307011","31.8677751"],["-96.3158634","31.8623883"],["-96.31349","31.8615027"],["-96.3121579","31.8609826"],["-96.3117877","31.8608152"],["-96.3111996","31.8605005"],["-96.310673","31.8601653"],["-96.3101277","31.8597985"],["-96.3094941","31.8592935"],["-96.3086319","31.8584582"],["-96.2873337","31.8361049"],["-96.2864759","31.835103"],["-96.2859193","31.8343213"],["-96.2849113","31.8325861"],["-96.2765676","31.8168675"],["-96.2761536","31.8161714"],["-96.2757697","31.815602"],["-96.2753149","31.8149718"],["-96.2748502","31.8144016"],["-96.2739293","31.8134031"],["-96.2734829","31.8129438"],["-96.2722753","31.8119284"],["-96.2623078","31.803802"],["-96.2616204","31.8032139"],["-96.2612043","31.8028561"],["-96.2580233","31.7998419"],["-96.2570261","31.7989201"],["-96.2558922","31.79784"],["-96.2505081","31.7927696"],["-96.2491113","31.7915387"],["-96.2483326","31.7909737"],["-96.2464933","31.7897019"],["-96.2313603","31.7795259"],["-96.2304541","31.778863"],["-96.2297625","31.7783189"],["-96.2150781","31.7654959"],["-96.2141186","31.7646545"],["-96.2128354","31.763527"],["-96.2118575","31.7626376"],["-96.2114398","31.7622851"],["-96.2104067","31.7613119"],["-96.2070226","31.7578052"],["-96.2002925","31.750734"],["-96.1997525","31.7501843"],["-96.185124","31.7347797"],["-96.1838559","31.7333802"],["-96.1833949","31.7327968"],["-96.1827918","31.7319947"],["-96.1824637","31.7314906"],["-96.1822389","31.7311046"],["-96.1820517","31.7307615"],["-96.1816164","31.7298882"],["-96.1814687","31.729573"],["-96.1812451","31.7289898"],["-96.1810151","31.7283251"],["-96.1750009","31.7090978"],["-96.1747986","31.7084995"],["-96.1740035","31.7060165"],["-96.1737078","31.7051297"],["-96.1734202","31.7043651"],["-96.1731399","31.7036591"],["-96.1728409","31.7029539"],["-96.167124","31.6903055"],["-96.1669392","31.6898507"],["-96.166777","31.6894066"],["-96.1666171","31.6888943"],["-96.1664536","31.6883127"],["-96.1663424","31.687842"],["-96.1661813","31.6869392"],["-96.165988","31.6857687"],["-96.1589395","31.6426043"],["-96.1586625","31.6402175"],["-96.1577833","31.6263909"],["-96.1577027","31.6252083"],["-96.1563974","31.6050278"],["-96.1563256","31.6043167"],["-96.1561552","31.6034451"],["-96.1560538","31.6029876"],["-96.1559136","31.6024403"],["-96.155755","31.6019481"],["-96.1554068","31.6009228"],["-96.148124","31.5791054"],["-96.1478856","31.5784331"],["-96.1473684","31.5772805"],["-96.1468874","31.5764036"],["-96.1457588","31.574635"],["-96.1442058","31.5722912"],["-96.1426004","31.5698671"],["-96.1399263","31.5658255"],["-96.1383128","31.5633742"],["-96.1377444","31.562482"],["-96.1354523","31.559046"],["-96.1329792","31.5553272"],["-96.1323212","31.5542906"],["-96.1304498","31.5514502"],["-96.1294278","31.5499627"],["-96.1270648","31.5463517"],["-96.1191219","31.5343778"],["-96.1007653","31.5065369"],["-96.0987367","31.5033885"],["-96.0980896","31.5021468"],["-96.0976534","31.5009993"],["-96.0961","31.4962602"],["-96.0855599","31.4635435"],["-96.0852627","31.4626575"],["-96.0851181","31.462264"],["-96.0849155","31.4617936"],["-96.0847788","31.4615011"],["-96.0845381","31.4610273"],["-96.084224","31.4604347"],["-96.0839278","31.4599363"],["-96.0835742","31.4594046"],["-96.0832804","31.4589774"],["-96.0830828","31.458717"],["-96.0826611","31.4581904"],["-96.0809484","31.4562674"],["-96.0520915","31.4242014"],["-96.0495142","31.4213348"],["-96.0476723","31.4190631"],["-96.0434019","31.4126517"],["-96.022984","31.3816102"],["-96.0219387","31.3797981"],["-96.0212647","31.3784238"],["-96.0207931","31.3769441"],["-96.0113955","31.3425658"],["-96.0055159","31.3210214"],["-96.0041764","31.3161084"],["-95.9989442","31.2970004"],["-95.9982605","31.294611"],["-95.9970549","31.2920425"],["-95.9886445","31.2756171"],["-95.9880208","31.2741539"],["-95.987519","31.2724399"],["-95.9872603","31.2710886"],["-95.9871519","31.2698685"],["-95.9872456","31.2678647"],["-95.9882606","31.2564891"],["-95.9884655","31.2545067"],["-95.9888792","31.2497329"],["-95.989173","31.248373"],["-95.9897748","31.2464058"],["-95.9916063","31.2418244"],["-95.9922655","31.2399885"],["-95.9927335","31.2385121"],["-95.9935591","31.2354709"],["-95.9942648","31.2325805"],["-95.9948148","31.2286913"],["-95.9968695","31.2137303"],["-95.996915","31.2105305"],["-95.9966535","31.2089288"],["-95.9945118","31.1993778"],["-95.9938929","31.1965541"],["-95.9825822","31.1468924"],["-95.982434","31.1461789"],["-95.9822495","31.1454621"],["-95.9760409","31.1234365"],["-95.9756932","31.1223897"],["-95.975337","31.1214768"],["-95.9747267","31.1202124"],["-95.9713728","31.1146902"],["-95.9705286","31.1133577"],["-95.9677157","31.1087177"],["-95.9659558","31.1057335"],["-95.9652912","31.1044625"],["-95.9647981","31.1030972"],["-95.9637808","31.1001345"],["-95.9547608","31.0736468"],["-95.945253","31.045911"],["-95.9443268","31.0435804"],["-95.9433842","31.0417733"],["-95.9200193","31.0100847"],["-95.91758","31.0067402"],["-95.9147641","31.0029766"],["-95.9014082","30.9848073"],["-95.8998667","30.982892"],["-95.8975866","30.9805102"],["-95.8789195","30.9613406"],["-95.8778983","30.9603151"],["-95.8773443","30.959816"],["-95.8768884","30.9594256"],["-95.8764428","30.959067"],["-95.8757887","30.9585742"],["-95.8736668","30.9572964"],["-95.7923993","30.9107371"],["-95.7909718","30.9098488"],["-95.7897755","30.9089651"],["-95.7887715","30.908183"],["-95.7874165","30.906707"],["-95.7632282","30.876924"],["-95.7621206","30.8755631"],["-95.7530397","30.8643212"],["-95.7503308","30.8609734"],["-95.7492986","30.85975"],["-95.748657","30.8591034"],["-95.7482926","30.8587588"],["-95.7475108","30.8580952"],["-95.7387944","30.8516242"],["-95.7178565","30.8360833"],["-95.7170178","30.8353858"],["-95.7161796","30.8346102"],["-95.6799192","30.7963509"],["-95.6787033","30.7952468"],["-95.6773248","30.7941988"],["-95.65492","30.7794856"],["-95.6533597","30.7784656"],["-95.6513104","30.7771284"],["-95.6493782","30.7758662"],["-95.6382374","30.7685431"],["-95.6133759","30.7521895"],["-95.6115618","30.7510499"],["-95.6105298","30.7503814"],["-95.610026","30.7500452"],["-95.5850445","30.7336427"],["-95.5835334","30.7326389"],["-95.5830711","30.7322812"],["-95.5757167","30.7259832"],["-95.5750589","30.7253403"],["-95.5742886","30.7245059"],["-95.5732657","30.7230937"],["-95.572492","30.7219395"],["-95.5713435","30.7202388"],["-95.5593138","30.7024936"],["-95.555823","30.6978031"],["-95.5535866","30.694907"],["-95.553159","30.6943974"],["-95.5525582","30.6937702"],["-95.5518874","30.6931756"],["-95.5512245","30.6926677"],["-95.5506242","30.6922705"],["-95.5500441","30.6919198"],["-95.547473","30.6906426"],["-95.5288526","30.6815526"],["-95.5268087","30.6805001"],["-95.5251891","30.6795393"],["-95.5235009","30.6784475"],["-95.5215977","30.6771949"],["-95.520753","30.6765256"],["-95.5204188","30.6762252"],["-95.5198792","30.6756729"],["-95.519248","30.6749169"],["-95.5185169","30.6738558"],["-95.516741","30.670657"],["-95.512139","30.6623423"],["-95.5113755","30.6607637"],["-95.5110508","30.6597598"],["-95.5107719","30.6587835"],["-95.5106205","30.6580658"],["-95.510371","30.6556515"],["-95.5024687","30.5674898"],["-95.5023617","30.5664745"],["-95.5022086","30.5654725"],["-95.4914","30.5209481"],["-95.491195","30.5199185"],["-95.4911021","30.519089"],["-95.4910803","30.5174637"],["-95.4917583","30.5044727"],["-95.4920128","30.5015914"],["-95.4924713","30.4982344"],["-95.4933916","30.492256"],["-95.4955326","30.4786305"],["-95.4957348","30.4772154"],["-95.4962701","30.4738024"],["-95.4963676","30.4731165"],["-95.4964384","30.4725849"],["-95.4965","30.4720311"],["-95.4965407","30.4711029"],["-95.49655","30.4697705"],["-95.4965358","30.4684741"],["-95.4964796","30.4674952"],["-95.4962205","30.4648267"],["-95.4961005","30.4631761"],["-95.4958981","30.4562529"],["-95.4958918","30.4551713"],["-95.4955843","30.4418032"],["-95.4954574","30.4374508"],["-95.4954351","30.436033"],["-95.495358","30.4348738"],["-95.4952767","30.4338757"],["-95.4951696","30.4328175"],["-95.4949514","30.4313929"],["-95.4946263","30.4298491"],["-95.4928447","30.4238745"],["-95.4917082","30.4202103"],["-95.4906902","30.4167319"],["-95.4903144","30.4154692"],["-95.4881015","30.4082613"],["-95.4874766","30.4056454"],["-95.4872035","30.4038127"],["-95.4869997","30.4000901"],["-95.4863118","30.3787871"],["-95.4852864","30.3657705"],["-95.4849799","30.362532"],["-95.4847072","30.3597044"],["-95.4844618","30.3559033"],["-95.4842996","30.3535148"],["-95.4841069","30.3519245"],["-95.4838","30.3494278"],["-95.4836046","30.3482585"],["-95.4833863","30.3471519"],["-95.4829458","30.3458987"],["-95.4755028","30.3262891"],["-95.475283","30.3256727"],["-95.4720272","30.3157655"],["-95.4719126","30.3154672"],["-95.4708503","30.3125979"],["-95.4704261","30.3113407"],["-95.4699663","30.309881"],["-95.4683933","30.3052213"],["-95.4679836","30.304029"],["-95.4642959","30.2926317"],["-95.4641589","30.2921514"],["-95.4634921","30.2903697"],["-95.4627283","30.2885057"],["-95.4622775","30.2875666"],["-95.4615314","30.2862672"],["-95.4611922","30.2857141"],["-95.460326","30.2844794"],["-95.4596776","30.2834359"],["-95.4587399","30.2819494"],["-95.4585239","30.2815983"],["-95.4583549","30.2812702"],["-95.4582124","30.2809733"],["-95.4578615","30.2801677"],["-95.4574438","30.2791434"],["-95.4571507","30.2778844"],["-95.4570042","30.2771191"],["-95.4569294","30.2765248"],["-95.4568746","30.2756006"],["-95.4568738","30.2747719"],["-95.456925","30.2706874"],["-95.4569495","30.266567"],["-95.4569465","30.2633154"],["-95.4569803","30.2577264"],["-95.4569909","30.2567207"],["-95.4570311","30.2533246"],["-95.4570408","30.2522607"],["-95.4570527","30.249396"],["-95.4570756","30.2482201"],["-95.4571694","30.2473688"],["-95.4573555","30.2461128"],["-95.4577228","30.24443"],["-95.4580179","30.2431113"],["-95.4585345","30.2405772"],["-95.4587917","30.2368593"],["-95.4588274","30.2361483"],["-95.45885","30.2352899"],["-95.4586962","30.2332825"],["-95.458128","30.2271449"],["-95.4576899","30.2221465"],["-95.4574169","30.2190421"],["-95.4570409","30.2147425"],["-95.4567485","30.2117373"],["-95.4561375","30.205307"],["-95.4560263","30.2042837"],["-95.4558509","30.2030122"],["-95.4557053","30.2021737"],["-95.4556056","30.201771"],["-95.4548342","30.198019"],["-95.4543496","30.1954381"],["-95.4536088","30.1917453"],["-95.4533614","30.1905567"],["-95.4531374","30.1892559"],["-95.4530579","30.1887293"],["-95.4529558","30.1879425"],["-95.452834","30.1870047"],["-95.452811","30.1861655"],["-95.4524629","30.1826484"],["-95.4522848","30.1812961"],["-95.4505813","30.1638356"],["-95.4503207","30.1613369"],["-95.4502299","30.1605041"],["-95.4500601","30.1594525"],["-95.4496501","30.157178"],["-95.4484202","30.1515884"],["-95.4478579","30.148678"],["-95.447016","30.1447542"],["-95.4466533","30.1430159"],["-95.4446545","30.1330161"],["-95.4443156","30.1311081"],["-95.4441152","30.1300847"],["-95.4435137","30.1275032"],["-95.4426459","30.1232607"],["-95.4422115","30.1210817"],["-95.4420092","30.1202855"],["-95.4418922","30.1199192"],["-95.4417872","30.1196079"],["-95.4416755","30.1193442"],["-95.4414806","30.1189299"],["-95.4412011","30.1183784"],["-95.4408143","30.1177568"],["-95.4400478","30.1166209"],["-95.4383961","30.1145541"],["-95.4380609","30.1140969"],["-95.4376606","30.1133341"],["-95.4372321","30.1122283"],["-95.4364271","30.1092675"],["-95.4363188","30.1087737"],["-95.4362111","30.1079142"],["-95.4361292","30.1074959"],["-95.436069","30.1072795"],["-95.4359607","30.1070465"],["-95.4357582","30.1066085"],["-95.4351924","30.1058342"],["-95.4350773","30.1057043"],["-95.4344496","30.1052094"],["-95.4336951","30.1048136"],["-95.4184426","30.0978522"],["-95.4173739","30.0973291"],["-95.4168355","30.0970331"],["-95.4165401","30.096841"],["-95.4162785","30.0966187"],["-95.4159263","30.0962625"],["-95.4156333","30.0959048"],["-95.4153753","30.0955607"],["-95.4151198","30.0951251"],["-95.4149525","30.0947308"],["-95.4147086","30.0940372"],["-95.4132765","30.0889165"],["-95.413103","30.0882458"],["-95.4130101","30.0879726"],["-95.4108573","30.0800108"],["-95.4107723","30.0795199"],["-95.4107469","30.0791834"],["-95.4107645","30.0787682"],["-95.4112022","30.0763917"],["-95.4116556","30.073983"],["-95.4118316","30.073097"],["-95.4118786","30.0727578"],["-95.411931","30.0724163"],["-95.4119387","30.0720568"],["-95.4118965","30.071695"],["-95.4118291","30.0713297"],["-95.4116792","30.0708543"],["-95.4113498","30.0700469"],["-95.4107149","30.0691029"],["-95.4073995","30.0645842"],["-95.4067693","30.0637304"],["-95.4065114","30.0633188"],["-95.406342","30.0630139"],["-95.40624","30.0627665"],["-95.4059097","30.0615662"],["-95.4038127","30.0530435"],["-95.4037598","30.0524999"],["-95.4037752","30.0520231"],["-95.4038517","30.0515641"],["-95.4039629","30.0510645"],["-95.4044022","30.0499907"],["-95.4075395","30.0430828"],["-95.4076949","30.0426773"],["-95.4078065","30.0422712"],["-95.4078959","30.0419176"],["-95.4079245","30.0416636"],["-95.4079677","30.0411189"],["-95.4079016","30.0404772"],["-95.4064211","30.0341389"],["-95.4058058","30.0303643"],["-95.4056258","30.0293742"],["-95.4054861","30.028864"],["-95.4047576","30.0272428"],["-95.4046118","30.0268584"],["-95.4044702","30.0263405"],["-95.4044214","30.0260582"],["-95.4043874","30.0255969"],["-95.4044178","30.0249413"],["-95.404617","30.0234184"],["-95.4047613","30.0222913"],["-95.4047471","30.0201015"],["-95.4045485","30.0140964"],["-95.4044706","30.0127397"],["-95.4043192","30.0120016"],["-95.4036751","30.0095736"],["-95.4034424","30.0087932"],["-95.4031215","30.0082068"],["-95.402896","30.0078441"],["-95.4025624","30.0074128"],["-95.402241","30.0070773"],["-95.4018234","30.0066892"],["-95.4013996","30.006274"],["-95.400811","30.0057393"],["-95.3998635","30.0049032"],["-95.3993938","30.0042351"],["-95.3990942","30.0037024"],["-95.3988231","30.0029172"],["-95.3984715","30.0014869"],["-95.3979457","29.9993697"],["-95.397432","29.9973716"],["-95.3968921","29.9952522"],["-95.3965145","29.9936879"],["-95.395701","29.9903835"],["-95.3931875","29.9805022"],["-95.3926411","29.9783443"],["-95.3920799","29.9760427"],["-95.3919218","29.9756204"],["-95.3916883","29.9751762"],["-95.3914529","29.9747861"],["-95.3911664","29.9743944"],["-95.3908247","29.9740212"],["-95.3904118","29.9736415"],["-95.3899483","29.9732845"],["-95.3893311","29.9729101"],["-95.3888902","29.9727032"],["-95.3881238","29.9724242"],["-95.3835754","29.9709384"],["-95.3826227","29.9704385"],["-95.3821403","29.970115"],["-95.3817484","29.9697779"],["-95.381426","29.9694611"],["-95.3810865","29.9690218"],["-95.3808752","29.9686987"],["-95.3806708","29.9683347"],["-95.3804543","29.9679152"],["-95.3802918","29.967471"],["-95.3802014","29.9667527"],["-95.3801714","29.9659454"],["-95.3801351","29.9649533"],["-95.3801118","29.9640978"],["-95.3800886","29.9622161"],["-95.3800736","29.9610206"],["-95.3800309","29.9589577"],["-95.3800384","29.958751"],["-95.3800654","29.9585053"],["-95.3801053","29.9582385"],["-95.3801588","29.9579825"],["-95.3802241","29.9577442"],["-95.3803617","29.9573616"],["-95.3804635","29.9571325"],["-95.3805621","29.9569317"],["-95.3806821","29.9567137"],["-95.3807979","29.9565254"],["-95.3809073","29.9563563"],["-95.3810205","29.9562065"],["-95.3811354","29.9560636"],["-95.3814314","29.9557329"],["-95.3822792","29.954896"],["-95.3827448","29.9544383"],["-95.3828577","29.9543323"],["-95.3831035","29.954057"],["-95.3832256","29.9539056"],["-95.3833468","29.9537469"],["-95.3834635","29.9535846"],["-95.3835654","29.9534288"],["-95.3836646","29.9532622"],["-95.3839624","29.9527088"],["-95.3841324","29.9522361"],["-95.3842655","29.9512705"],["-95.3842806","29.9510197"],["-95.3842798","29.9506217"],["-95.3842523","29.9502512"],["-95.3838082","29.9483782"],["-95.3804322","29.9349235"],["-95.3800525","29.9335017"],["-95.3793353","29.9306768"],["-95.3790452","29.9295126"],["-95.3786203","29.9277899"],["-95.3783769","29.9263886"],["-95.3780577","29.9247422"],["-95.3771024","29.9207495"],["-95.3769291","29.9200794"],["-95.3766952","29.9194923"],["-95.3763955","29.9187872"],["-95.3762475","29.9184214"],["-95.3761825","29.9182044"],["-95.3761266","29.9179911"],["-95.3760898","29.9177579"],["-95.3760542","29.917493"],["-95.3760392","29.9172289"],["-95.3760618","29.9169365"],["-95.3761287","29.9163593"],["-95.3763046","29.9148828"],["-95.3763011","29.9143045"],["-95.3762886","29.9139138"],["-95.3762414","29.9136612"],["-95.3761806","29.9134308"],["-95.3760925","29.9131767"],["-95.3759272","29.9127947"],["-95.3753903","29.9117392"],["-95.3752223","29.9113797"],["-95.3751394","29.911117"],["-95.3732211","29.9032947"],["-95.3720791","29.8986851"],["-95.370336","29.8916993"],["-95.3651038","29.8707915"],["-95.3627042","29.8612054"],["-95.3623088","29.859594"],["-95.3608737","29.8538896"],["-95.3597521","29.8493458"],["-95.3556121","29.8328251"],["-95.3549654","29.8304017"],["-95.3548308","29.8296019"],["-95.3548111","29.8293635"],["-95.3548177","29.8290517"],["-95.3548801","29.82859"],["-95.3550009","29.8278731"],["-95.355516","29.8251965"],["-95.3557403","29.8240192"],["-95.3559004","29.823216"],["-95.3560007","29.8226693"],["-95.3560692","29.8220907"],["-95.3560708","29.8216657"],["-95.3560461","29.8213053"],["-95.3560033","29.8210447"],["-95.355893","29.8205778"],["-95.3557463","29.8201419"],["-95.3556425","29.8198756"],["-95.3554831","29.8195648"],["-95.3553094","29.8192798"],["-95.3551186","29.8189747"],["-95.3549219","29.8186533"],["-95.3539447","29.8173576"],["-95.3533136","29.8165169"],["-95.3529111","29.8158594"],["-95.3528321","29.8156334"],["-95.3528075","29.8154325"],["-95.3528147","29.815235"],["-95.3528555","29.8150599"],["-95.3529227","29.814885"],["-95.353056","29.814662"],["-95.3532272","29.8144828"],["-95.3533799","29.8143883"],["-95.3535695","29.8142959"],["-95.3537878","29.8142215"],["-95.3540641","29.8141693"],["-95.3543629","29.8141598"],["-95.3555616","29.8142365"],["-95.3559992","29.8142472"],["-95.3564906","29.8142262"],["-95.3576711","29.8141481"],["-95.3705318","29.8139248"],["-95.3710312","29.8138737"],["-95.3714252","29.8138758"],["-95.3718083","29.8138915"],["-95.3721891","29.8139384"],["-95.3725598","29.8140114"],["-95.3730691","29.8141746"],["-95.3737371","29.8144461"],["-95.3742238","29.8144815"],["-95.3745631","29.814456"],["-95.3748271","29.8143911"],["-95.3750279","29.8142948"],["-95.3752242","29.8141748"],["-95.3754035","29.8139921"],["-95.3755951","29.8137115"],["-95.3756896","29.8134819"],["-95.3757465","29.8132255"],["-95.3757473","29.8130052"],["-95.3756588","29.8127058"],["-95.3755586","29.8125184"],["-95.3753317","29.8121709"],["-95.3751626","29.8119501"],["-95.3747949","29.8113988"],["-95.3746198","29.811136"],["-95.374209","29.8104059"],["-95.3740289","29.8099793"],["-95.3735812","29.8086826"],["-95.3719635","29.8003178"],["-95.3719257","29.7998479"],["-95.3718752","29.7979565"],["-95.3718396","29.7961275"],["-95.3718128","29.7940062"],["-95.3718173","29.7930652"],["-95.3718198","29.7927239"],["-95.371913","29.790836"],["-95.3718695","29.7895248"],["-95.3718226","29.7891262"],["-95.3717483","29.7888098"],["-95.3716489","29.7885204"],["-95.3714886","29.7881619"],["-95.3712836","29.7877532"],["-95.3707186","29.7869361"],["-95.3692903","29.7848219"],["-95.3689631","29.7842304"],["-95.3688866","29.7840274"],["-95.3687777","29.7837063"],["-95.3687186","29.7834716"],["-95.3686584","29.783172"],["-95.3686305","29.7829798"],["-95.3685792","29.7826112"],["-95.3685319","29.7818468"],["-95.368521","29.781461"],["-95.3685756","29.7809858"],["-95.3686452","29.7806268"],["-95.3688822","29.7797703"],["-95.3692631","29.7786647"],["-95.3693458","29.7783123"],["-95.3693961","29.777979"],["-95.3694192","29.7776568"],["-95.3693997","29.7773248"],["-95.3693449","29.7769543"],["-95.3692966","29.7767308"],["-95.3690985","29.7762112"],["-95.3687357","29.7755529"],["-95.3685074","29.775182"],["-95.3683336","29.7749254"],["-95.3681794","29.7746823"],["-95.3680692","29.7745042"],["-95.367884","29.7741794"],["-95.3675075","29.77356"],["-95.367193","29.773034"],["-95.3668787","29.7725199"],["-95.3666517","29.7721338"],["-95.3664278","29.7717778"],["-95.3662287","29.7714437"],["-95.3660758","29.7711045"],["-95.3659577","29.770804"],["-95.3658565","29.7704976"],["-95.365812","29.7702105"],["-95.3657836","29.7699477"],["-95.3657745","29.7697505"],["-95.3657817","29.7695224"],["-95.3658051","29.7692136"],["-95.3658441","29.7689892"],["-95.3659218","29.7687011"],["-95.3659845","29.7685174"],["-95.3660877","29.76825"],["-95.3662394","29.7678889"],["-95.3664658","29.7673951"],["-95.3667536","29.7667725"],["-95.3669882","29.7662678"],["-95.367179","29.7658578"],["-95.3673133","29.7656032"],["-95.367424","29.7654245"],["-95.3675206","29.765277"],["-95.3676415","29.7651213"],["-95.3677712","29.764966"],["-95.3679216","29.764813"],["-95.3680976","29.7646496"],["-95.3682587","29.7645209"],["-95.3684803","29.7643689"],["-95.3687549","29.7642049"],["-95.3690831","29.7640357"],["-95.3703352","29.7634702"],["-95.3714415","29.7628067"],["-95.3717968","29.7625537"],["-95.3719623","29.7623732"],["-95.3720443","29.7622227"],["-95.3721097","29.7619483"],["-95.3720938","29.7618168"],["-95.372056","29.7616657"],["-95.3719886","29.761523"],["-95.3718824","29.7613832"],["-95.3717829","29.7612689"],["-95.3716388","29.761136"],["-95.3712452","29.7608565"],["-95.3708788","29.7606042"],["-95.3703978","29.7602674"],["-95.3702039","29.760144"],["-95.3701048","29.7600925"],["-95.3700155","29.7601952"],["-95.3695998","29.760732"],["-95.3695332","29.7608211"],["-95.369611","29.760872"],["-95.3699131","29.7610534"],["-95.3702076","29.7611678"],["-95.3704108","29.7612091"],["-95.3711847","29.7612846"],["-95.3714538","29.7613362"],["-95.3716209","29.7613977"],["-95.3717752","29.7615003"],["-95.3718626","29.7615963"],["-95.37191","29.7616945"],["-95.3719317","29.7617978"],["-95.3719272","29.7619259"],["-95.3718803","29.7620603"],["-95.371818","29.7621743"],["-95.3717085","29.7623008"],["-95.3712435","29.7626298"],["-95.3707769","29.762943"],["-95.3692924","29.7636252"],["-95.3688436","29.7638487"],["-95.3685363","29.7640109"],["-95.3684058","29.7640872"],["-95.3682524","29.7641871"],["-95.3679918","29.7643763"],["-95.3678585","29.7644849"],["-95.3677197","29.764613"],["-95.3676149","29.7647169"],["-95.3675134","29.7648268"],["-95.3673875","29.7649733"],["-95.3672497","29.765157"],["-95.3671174","29.7653614"],["-95.3670011","29.7655647"],["-95.3668917","29.7657685"],["-95.3667477","29.766074"],["-95.3666172","29.7663657"],["-95.3654488","29.768963"],["-95.3653093","29.7693002"],["-95.3652149","29.7695501"],["-95.3651611","29.7697193"],["-95.3651191","29.7698671"],["-95.3650888","29.7700031"],["-95.3650702","29.7701182"],["-95.3650589","29.7702292"],["-95.3650543","29.770365"],["-95.3650557","29.7705026"],["-95.3650674","29.7706537"],["-95.365088","29.7707948"],["-95.3651273","29.7709683"],["-95.3651721","29.7711128"],["-95.3652265","29.7712663"],["-95.3652899","29.7714176"],["-95.3653586","29.7715617"],["-95.36547","29.7717539"],["-95.3657922","29.7722647"],["-95.3661873","29.7727569"],["-95.3670332","29.7738172"],["-95.3673581","29.7743157"],["-95.3674895","29.7745351"],["-95.3675953","29.7747469"],["-95.3682175","29.7757576"],["-95.3684832","29.776156"],["-95.3687826","29.7765189"],["-95.3690371","29.7767742"],["-95.3692891","29.7769771"],["-95.3695456","29.7771757"],["-95.3698071","29.7773416"],["-95.3700963","29.7774975"],["-95.3705323","29.7776795"],["-95.3709371","29.7778299"],["-95.3717444","29.7781066"],["-95.3719929","29.7782212"],["-95.3735234","29.7786838"],["-95.3744387","29.778942"],["-95.3749021","29.7790442"],["-95.375402","29.7791197"],["-95.3759686","29.7791698"],["-95.3766344","29.7791872"],["-95.3775558","29.7791273"],["-95.3784319","29.7788775"],["-95.3788677","29.7787359"],["-95.3795242","29.7784809"],["-95.3805719","29.778092"],["-95.3822667","29.7775848"],["-95.3836102","29.777284"],["-95.3841898","29.7771863"],["-95.3846843","29.7771142"],["-95.3859725","29.7769667"],["-95.387403","29.7768874"],["-95.3890762","29.7768505"],["-95.3898839","29.7768482"],["-95.3907142","29.7767901"],["-95.3996516","29.7766055"],["-95.4008445","29.7766312"],["-95.4019959","29.7767013"],["-95.4027261","29.7767807"],["-95.4041718","29.7770089"],["-95.4065112","29.7773936"],["-95.4071461","29.7774767"],["-95.4077518","29.7775411"],["-95.4090378","29.7776342"],["-95.410318","29.777651"],["-95.4253955","29.777423"],["-95.4264179","29.7774305"],["-95.4272349","29.7774509"],["-95.4279179","29.7774796"],["-95.4424797","29.7791072"],["-95.4434773","29.7791774"],["-95.4452748","29.7792683"],["-95.4472473","29.7792133"],["-95.449435","29.779231"],["-95.4499418","29.7792726"],["-95.4504884","29.7793503"],["-95.4509592","29.7794362"],["-95.4514469","29.7795871"],["-95.4520209","29.7798153"],["-95.4534246","29.7805846"],["-95.4553987","29.7818637"],["-95.4574146","29.7831335"],["-95.4579726","29.7834326"],["-95.4584712","29.783651"],["-95.4601273","29.7841792"],["-95.4607238","29.7843042"],["-95.4612967","29.7843928"],["-95.4617444","29.784433"],["-95.4622343","29.784465"],["-95.4626818","29.7844787"],["-95.4666399","29.7845017"],["-95.4674997","29.7844748"],["-95.468561","29.7844581"],["-95.471108","29.7843528"],["-95.4728182","29.7842172"],["-95.4735488","29.7841528"],["-95.4741606","29.7841037"],["-95.476131","29.7839989"],["-95.4775396","29.7839427"],["-95.4795905","29.7839701"],["-95.4816873","29.7840324"],["-95.4862611","29.7842815"],["-95.4981422","29.7845299"],["-95.4992864","29.7845768"],["-95.5010156","29.7846402"],["-95.5026948","29.7846731"],["-95.5057975","29.7847293"],["-95.5086893","29.7846833"],["-95.5144311","29.7845339"],["-95.5164691","29.7845446"],["-95.5172527","29.784544"],["-95.5301747","29.7847326"],["-95.5323185","29.7847615"],["-95.5428679","29.7847206"],["-95.5442317","29.7847356"],["-95.5448565","29.7847251"],["-95.5461002","29.7847096"],["-95.5521173","29.7846333"],["-95.5647428","29.7848206"],["-95.5666147","29.7848206"],["-95.5821293","29.7849519"],["-95.5847323","29.7849343"],["-95.5985812","29.7850044"],["-95.6008543","29.7849966"],["-95.6079845","29.7850257"],["-95.6096492","29.7850243"],["-95.6136371","29.7850566"],["-95.61536","29.7850515"],["-95.6177364","29.7850775"],["-95.6199952","29.7850876"],["-95.6224751","29.7850854"],["-95.6241752","29.785091"],["-95.6256752","29.7850789"],["-95.6376273","29.7852076"],["-95.6449448","29.7850754"],["-95.6533325","29.7851482"],["-95.6613815","29.785116"],["-95.6771885","29.7851806"],["-95.6866694","29.7850852"],["-95.6906822","29.7850947"],["-95.6920437","29.7850941"],["-95.6981293","29.7852299"],["-95.7071656","29.7853231"],["-95.7157472","29.7852309"],["-95.7379425","29.7854674"],["-95.7387551","29.7854641"],["-95.7389306","29.7854637"],["-95.748308","29.7853445"],["-95.7531977","29.7853905"],["-95.7547105","29.7853908"],["-95.7629557","29.785523"],["-95.7720011","29.7854397"],["-95.7802949","29.785494"],["-95.781885","29.7854865"],["-95.7913182","29.7856387"],["-95.7978853","29.7855729"],["-95.8012511","29.7855207"],["-95.8023027","29.7855216"],["-95.8045872","29.7855079"],["-95.8049808","29.7854897"],["-95.8053455","29.7854586"],["-95.8056072","29.7854246"],["-95.8058646","29.7853831"],["-95.806129","29.7853329"],["-95.8064494","29.7852587"],["-95.8067832","29.7851687"],["-95.8070599","29.7850765"],["-95.807369","29.7849576"],["-95.8076676","29.7848334"],["-95.8079841","29.7846866"],["-95.8082378","29.7845605"],["-95.8084653","29.7844347"],["-95.8087602","29.7842537"],["-95.8090674","29.7840488"],["-95.8093388","29.783845"],["-95.8096139","29.7836188"],["-95.8098726","29.7833827"],["-95.8134211","29.7800121"],["-95.8136534","29.7798032"],["-95.8138418","29.7796438"],["-95.8139945","29.7795219"],["-95.8141605","29.7793982"],["-95.8143895","29.779237"],["-95.8146547","29.7790637"],["-95.8149418","29.7788858"],["-95.8151562","29.7787633"],["-95.8153826","29.7786429"],["-95.8156603","29.7785046"],["-95.8159499","29.7783748"],["-95.8162683","29.7782444"],["-95.8165675","29.7781281"],["-95.8171946","29.7779321"],["-95.8175118","29.7778484"],["-95.8181348","29.7777174"],["-95.8184428","29.7776659"],["-95.8187206","29.7776296"],["-95.8190271","29.7775984"],["-95.8193793","29.7775758"],["-95.819786","29.7775615"],["-95.8263553","29.7775047"],["-95.8272008","29.7775011"],["-95.8500268","29.7772571"],["-95.8554706","29.7774574"],["-95.8563169","29.7774735"],["-95.9008979","29.7773559"],["-95.9012523","29.7773549"],["-95.9176104","29.7773029"],["-95.9194916","29.7773065"],["-95.9221034","29.7772915"],["-95.9225406","29.7772947"],["-95.9236782","29.7773433"],["-95.9263831","29.7776575"],["-95.9371417","29.7790547"],["-95.9381486","29.7790756"],["-95.9507885","29.7789128"],["-95.9517022","29.7789119"],["-95.954211","29.7788944"],["-95.9553168","29.7789002"],["-95.9606853","29.7788394"],["-95.9637633","29.7788903"],["-95.9667694","29.7789288"],["-95.9689034","29.7789153"],["-95.9698482","29.7789678"],["-95.9726671","29.7795014"],["-95.9748815","29.7802821"],["-95.9777689","29.7818082"],["-95.9791605","29.7823409"],["-95.9802472","29.7825353"],["-95.9811387","29.7826609"],["-95.9820449","29.7827338"],["-95.9849488","29.7825075"],["-95.9869317","29.782339"],["-95.9877097","29.7822821"],["-95.989351","29.7821228"],["-95.9904832","29.7820083"],["-95.9919254","29.781794"],["-95.9938299","29.7814404"],["-95.9964463","29.780867"],["-95.9997045","29.7801006"],["-96.0033495","29.7792078"],["-96.0121763","29.7770716"],["-96.0160378","29.7760452"],["-96.0173908","29.7757124"],["-96.0191177","29.7752922"],["-96.0232652","29.7743139"],["-96.0403686","29.7702194"],["-96.0411348","29.7700536"],["-96.0416061","29.7699772"],["-96.0425804","29.769885"],["-96.0429945","29.7698657"],["-96.0439247","29.76986"],["-96.0450238","29.7699343"],["-96.046344","29.770069"],["-96.0685279","29.7727079"],["-96.0708795","29.772931"],["-96.0770616","29.7736543"],["-96.0854926","29.7748762"],["-96.0945832","29.7759868"],["-96.0995648","29.7765382"],["-96.1005407","29.7765729"],["-96.1112179","29.7761985"],["-96.1181322","29.7759099"],["-96.1214121","29.7757971"],["-96.1241202","29.7756568"],["-96.1261261","29.7754409"],["-96.1282614","29.7751047"],["-96.1309256","29.7745196"],["-96.1315265","29.7743681"],["-96.1320527","29.7742171"],["-96.1325461","29.7740475"],["-96.1330329","29.7738682"],["-96.1334949","29.7736086"],["-96.1342431","29.7732329"],["-96.1348542","29.7729574"],["-96.1352757","29.7727088"],["-96.1356422","29.7724604"],["-96.1364501","29.7718374"],["-96.1383797","29.7702857"],["-96.1399208","29.7691087"],["-96.1412426","29.7683614"],["-96.1423419","29.7678696"],["-96.1446537","29.7671357"],["-96.1660533","29.7606171"],["-96.1672655","29.7603136"],["-96.1679284","29.7601889"],["-96.1697615","29.7599334"],["-96.171013","29.7598622"],["-96.1723136","29.7598908"],["-96.173831","29.7600389"],["-96.1751838","29.760246"],["-96.1763007","29.7604825"],["-96.1773924","29.760768"],["-96.1861608","29.7633957"],["-96.1872539","29.7636545"],["-96.188451","29.7638378"],["-96.1895698","29.763905"],["-96.1907627","29.7638604"],["-96.1926191","29.7635986"],["-96.2227599","29.7584504"],["-96.2807905","29.7512993"],["-96.284949","29.7507257"],["-96.2900499","29.7497587"],["-96.4398244","29.7194519"],["-96.45736","29.7173672"],["-96.4937779","29.7121869"],["-96.5029201","29.7099983"],["-96.5042592","29.7096199"],["-96.5047902","29.709418"],["-96.5051163","29.7092612"],["-96.5068449","29.7082126"],["-96.5120741","29.7049179"],["-96.5129346","29.704443"],["-96.5139298","29.7040639"],["-96.5186019","29.7026853"],["-96.5280492","29.6991703"],["-96.5283589","29.6990296"],["-96.5286546","29.6988768"],["-96.5289496","29.6987092"],["-96.5292788","29.6984977"],["-96.5296653","29.6982345"],["-96.5347205","29.6945446"],["-96.5353286","29.6941679"],["-96.5357772","29.6939544"],["-96.5360734","29.6938342"],["-96.5363471","29.6937345"],["-96.5369168","29.6935419"],["-96.5371173","29.6934813"],["-96.5405031","29.6924086"],["-96.5410819","29.6922636"],["-96.5416469","29.6921473"],["-96.5421375","29.6920812"],["-96.542547","29.6920345"],["-96.5430531","29.6919904"],["-96.5434674","29.6919768"],["-96.5439408","29.6919888"],["-96.5443306","29.692018"],["-96.5576959","29.6936173"],["-96.5589991","29.6937289"],["-96.5600615","29.6937852"],["-96.5606123","29.6937836"],["-96.5625384","29.6937896"],["-96.5881026","29.6936106"],["-96.5920605","29.6936188"],["-96.6183768","29.6933948"],["-96.629426","29.6927937"],["-96.6836879","29.6894903"],["-96.7011214","29.688449"],["-96.7025665","29.6884948"],["-96.7086513","29.6892775"],["-96.7318","29.6923945"],["-96.7335058","29.6924722"],["-96.7722576","29.6921157"],["-96.8272501","29.6882485"],["-96.8311708","29.6879944"],["-96.832264","29.6880753"],["-96.8333204","29.6882736"],["-96.8347381","29.6887382"],["-96.8520917","29.6955777"],["-96.8534526","29.6960572"],["-96.8548439","29.6963871"],["-96.8559349","29.6965467"],["-96.8577518","29.6966179"],["-96.8828002","29.6961856"],["-96.886205","29.6960846"],["-96.8892135","29.6956591"],["-96.8939435","29.6949448"],["-96.899687","29.6940428"],["-96.9175088","29.6913148"],["-96.9210643","29.6908966"],["-96.9531835","29.6890315"],["-96.9557993","29.6889072"],["-96.956624","29.6889323"],["-96.9574868","29.6889845"],["-96.9778744","29.6911272"],["-96.987649","29.6914223"],["-97.0063075","29.6917529"],["-97.0077142","29.6918221"],["-97.0148301","29.6929639"],["-97.0277724","29.6951721"],["-97.0406811","29.6973545"],["-97.0431439","29.6976537"],["-97.0456805","29.6979005"],["-97.0478258","29.6980442"],["-97.0502484","29.6981568"],["-97.0540849","29.6981178"],["-97.1026941","29.6969277"],["-97.1239741","29.6964998"],["-97.1408153","29.6966804"],["-97.1429246","29.6965928"],["-97.1443426","29.6964371"],["-97.1469602","29.6958768"],["-97.1596884","29.6928292"],["-97.161616","29.692403"],["-97.1626696","29.6922148"],["-97.1633915","29.6921177"],["-97.1641461","29.6920413"],["-97.1655284","29.6919868"],["-97.2373236","29.6926444"],["-97.2399442","29.6925953"],["-97.2417068","29.6924429"],["-97.2431889","29.6921848"],["-97.2451401","29.6916388"],["-97.2615666","29.6859037"],["-97.2644663","29.6847952"],["-97.2921921","29.6715083"],["-97.2946038","29.6704254"],["-97.2952687","29.6702348"],["-97.2969638","29.6698874"],["-97.3018695","29.6694469"],["-97.3860825","29.6624118"],["-97.3947155","29.6612207"],["-97.4095014","29.6591097"],["-97.4493208","29.6546501"],["-97.4863599","29.6496223"],["-97.4870506","29.6495625"],["-97.4876283","29.649525"],["-97.4881295","29.6495067"],["-97.4889998","29.6495161"],["-97.4927625","29.6497381"],["-97.5589283","29.6537528"],["-97.5797674","29.6544374"],["-97.5803786","29.6544225"],["-97.5809281","29.6543908"],["-97.5814521","29.6543513"],["-97.583721","29.6540258"],["-97.6110627","29.6495837"],["-97.6169699","29.6486407"],["-97.6176416","29.6485687"],["-97.6182339","29.6485231"],["-97.6188691","29.6484931"],["-97.6195345","29.6484799"],["-97.6202368","29.6484973"],["-97.6243076","29.648767"],["-97.6679849","29.6519226"],["-97.6689427","29.651968"],["-97.6695404","29.6519781"],["-97.6700706","29.6519628"],["-97.670428","29.6519508"],["-97.6709874","29.6519194"],["-97.6723601","29.6517754"],["-97.672927","29.6516819"],["-97.6735725","29.6515572"],["-97.6742441","29.6514158"],["-97.7476588","29.6315567"],["-97.7568723","29.6291513"],["-97.8024085","29.61587"],["-97.8030991","29.6156924"],["-97.803791","29.6155373"],["-97.8042708","29.6154504"],["-97.8048407","29.6153651"],["-97.8056483","29.615279"],["-97.8063704","29.6152119"],["-97.8079003","29.6151686"],["-97.8475313","29.6148262"],["-97.8488707","29.6147906"],["-97.8495039","29.6147512"],["-97.8501467","29.6146882"],["-97.850953","29.6145722"],["-97.8516357","29.6144469"],["-97.8589223","29.6128093"],["-97.9144174","29.6000305"],["-97.9154252","29.5998196"],["-97.9161954","29.5997107"],["-97.9170008","29.5996176"],["-97.9186842","29.5995689"],["-97.9233739","29.5995535"],["-97.9253818","29.5995585"],["-97.9443328","29.5995194"],["-97.9515607","29.5995247"],["-97.9565289","29.5994979"],["-97.9591511","29.5995104"],["-97.9662171","29.5994763"],["-97.9665551","29.5994773"],["-97.9669801","29.5994668"],["-97.9673248","29.5994529"],["-97.9676834","29.5994319"],["-97.9684959","29.5993333"],["-97.9693379","29.599201"],["-97.9703924","29.5989808"],["-97.971159","29.5987556"],["-97.9720877","29.598434"],["-97.9729934","29.5980694"],["-97.9738956","29.5976328"],["-97.9744356","29.5973257"],["-97.9751472","29.5968668"],["-98.0013216","29.5790215"],["-98.001717","29.5787897"],["-98.0034245","29.5778695"],["-98.0045775","29.5772501"],["-98.0054001","29.5768124"],["-98.0181965","29.5699337"],["-98.0276976","29.5642507"],["-98.0302899","29.5626729"],["-98.0309806","29.5622022"],["-98.0313616","29.5619159"],["-98.0318526","29.561517"],["-98.0328616","29.5606256"],["-98.0331855","29.5603039"],["-98.0341328","29.5592697"],["-98.0387535","29.5542059"],["-98.040181","29.5527561"],["-98.0410352","29.552012"],["-98.0415639","29.5515955"],["-98.0420531","29.5512577"],["-98.0426127","29.5508936"],["-98.0437556","29.550221"],["-98.0442458","29.5499664"],["-98.0448721","29.549664"],["-98.0459903","29.5492089"],["-98.0836705","29.5368769"],["-98.0847954","29.5365084"],["-98.0865612","29.5359673"],["-98.1117039","29.5293203"],["-98.1130004","29.5288973"],["-98.196624","29.4973111"],["-98.2569679","29.4767361"],["-98.2664795","29.4736371"],["-98.2684769","29.4729882"],["-98.2878769","29.4667205"],["-98.3177984","29.4587529"],["-98.3192408","29.458327"],["-98.3233997","29.4570436"],["-98.3245233","29.4566955"],["-98.3297881","29.4550247"],["-98.3302389","29.4548816"],["-98.3365737","29.4528884"],["-98.3379113","29.4524727"],["-98.3416021","29.4513242"],["-98.3428254","29.4509458"],["-98.3457545","29.4500101"],["-98.3473599","29.4495016"],["-98.3492349","29.448891"],["-98.3527496","29.4477579"],["-98.3628237","29.444542"],["-98.3957463","29.4341251"],["-98.398932","29.4333468"],["-98.399964","29.4331141"],["-98.4024733","29.4325075"],["-98.4088708","29.4309574"],["-98.4130352","29.4297445"],["-98.4137","29.4295398"],["-98.4148929","29.4291304"],["-98.4156906","29.4288229"],["-98.4164352","29.4284676"],["-98.4172186","29.4280742"],["-98.4177956","29.4277451"],["-98.4186791","29.4271804"],["-98.4193969","29.4266721"],["-98.4202452","29.4260029"],["-98.4209417","29.4254044"],["-98.4213905","29.424957"],["-98.4222509","29.4240389"],["-98.4230242","29.4230441"],["-98.4237433","29.4221061"],["-98.4255079","29.4196089"],["-98.4264062","29.4183657"],["-98.4268846","29.4177694"],["-98.4272366","29.4173677"],["-98.4275935","29.4169999"],["-98.4282279","29.4163772"],["-98.4317511","29.4133191"],["-98.4328162","29.412432"],["-98.433957","29.4114675"],["-98.438048","29.4079528"],["-98.4406712","29.4056729"],["-98.440732","29.4056164"],["-98.4415339","29.404948"],["-98.4418773","29.4045944"],["-98.4427733","29.4038428"],["-98.4432914","29.4034761"],["-98.4436942","29.4032057"],["-98.4440181","29.4030279"],["-98.4442804","29.4028926"],["-98.4445413","29.4027635"],["-98.4448312","29.4026276"],["-98.445251","29.4024545"],["-98.4456159","29.4023134"],["-98.4459213","29.4022177"],["-98.4464363","29.4020702"],["-98.4467488","29.4019998"],["-98.4471136","29.4019285"],["-98.4475003","29.4018659"],["-98.4479818","29.4018113"],["-98.4481344","29.4018018"],["-98.448341","29.4017906"],["-98.4489914","29.401769"],["-98.4493867","29.4017652"],["-98.4503771","29.4017677"],["-98.4531352","29.4017604"],["-98.461246","29.401772"],["-98.464361","29.4017378"],["-98.4658872","29.4017405"],["-98.4670357","29.401717"],["-98.4680137","29.4016707"],["-98.4684591","29.4016144"],["-98.4690454","29.4015269"],["-98.4696193","29.4013901"],["-98.4699201","29.4013006"],["-98.4706409","29.4010412"],["-98.4713413","29.4007336"],["-98.4716924","29.4005547"],["-98.4724653","29.4000792"],["-98.4731082","29.3996361"],["-98.4737275","29.3990794"],["-98.473996","29.3988135"],["-98.4742784","29.398535"],["-98.4752535","29.3978008"],["-98.4754454","29.3976703"],["-98.4756635","29.3975274"],["-98.4758242","29.397437"],["-98.4760382","29.3973423"],["-98.4762471","29.397255"],["-98.4764004","29.3971975"],["-98.4765316","29.3971598"],["-98.4766518","29.3971323"],["-98.4767883","29.3971071"],["-98.476907","29.397093"],["-98.4770128","29.3970891"],["-98.4771277","29.3970911"],["-98.4772517","29.3971001"],["-98.4773647","29.397116"],["-98.4774647","29.3971364"],["-98.4775632","29.3971583"],["-98.4776596","29.3971868"],["-98.4777652","29.3972246"],["-98.4778699","29.3972698"],["-98.4779709","29.3973176"],["-98.4780603","29.3973617"],["-98.4781596","29.3974169"],["-98.4782603","29.3974761"],["-98.4783685","29.3975449"],["-98.4784595","29.3976053"],["-98.4785413","29.3976673"],["-98.4786238","29.3977347"],["-98.478809","29.3979029"],["-98.4789318","29.3979939"],["-98.4790074","29.3980801"],["-98.479078","29.3981668"],["-98.4793066","29.3984741"],["-98.4794728","29.3987159"],["-98.4797757","29.3992014"],["-98.4803367","29.4003174"],["-98.4804259","29.400536"],["-98.4805015","29.4007442"],["-98.4805792","29.4009819"],["-98.4806629","29.401288"],["-98.4807246","29.4015926"],["-98.4807678","29.4018476"],["-98.4808285","29.4022861"],["-98.4808451","29.4025172"],["-98.4808438","29.4027546"],["-98.4808322","29.4029688"],["-98.4808157","29.4031131"],["-98.4807078","29.404243"],["-98.4806251","29.4045995"],["-98.4798345","29.4077338"],["-98.4797074","29.4082543"],["-98.4796724","29.4084352"],["-98.4796334","29.4086617"],["-98.4795915","29.4090835"],["-98.4795702","29.4095869"],["-98.4795939","29.4098279"],["-98.4796665","29.4102803"],["-98.4798607","29.4111789"],["-98.4799844","29.4117468"],["-98.4801234","29.4123936"],["-98.4801787","29.4127345"],["-98.480209","29.4130653"],["-98.4802301","29.4134079"],["-98.4802345","29.4143901"],["-98.4802411","29.4151864"],["-98.4802314","29.4174556"],["-98.4800874","29.4183677"],["-98.4800336","29.418611"],["-98.4799223","29.4189352"],["-98.479712","29.4195284"],["-98.479624","29.4198708"],["-98.4795774","29.4201971"],["-98.4796873","29.4210722"],["-98.4797303","29.4212323"],["-98.479817","29.4215404"],["-98.479853","29.4216328"],["-98.4799167","29.4217323"],["-98.4800564","29.4218955"],["-98.4802143","29.422047"],["-98.4815801","29.4223616"],["-98.4821947","29.4224984"],["-98.4842855","29.4229444"],["-98.4848613","29.4230706"],["-98.4872692","29.4236147"],["-98.4873367","29.4236325"],["-98.4873809","29.4236447"],["-98.4874772","29.4236671"],["-98.4876179","29.423701"],["-98.4877918","29.4237458"],["-98.4878347","29.4237573"],["-98.4885235","29.4239107"],["-98.4890527","29.4240133"],["-98.4893449","29.4240681"],["-98.4898582","29.4241652"],["-98.4909168","29.4244089"],["-98.4912349","29.424481"],["-98.4915046","29.4245389"],["-98.4918807","29.4246233"],["-98.4930239","29.4249023"],["-98.4936896","29.4250323"],["-98.4944613","29.4251748"],["-98.4945219","29.425176"]]}};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))); });