if (typeof window.contentMaps === 'undefined') { window.contentMaps = {}; window.initialMapBounds = {}; } 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: [-91.95322221133144, 31.940459000280683], zoom: 5, cooperativeGestures: true }); window.contentMaps[1] = contentMap_1; var bounds_1 = new mapboxgl.LngLatBounds(); if (typeof markerData[1][0] === 'undefined') { markerData[1][0] = {}; } markerData[1][0]['lonLat'] = [-96.797413, 32.777233]; markerData[1][0]['geoson'] = { 'type': 'FeatureCollection', 'features': [{ 'type': 'Feature', 'geometry': { 'type': 'Point', 'coordinates': markerData[1][0]['lonLat'] }, 'properties': { 'title': 'start', 'description': 'start point' } }] }; for (const feature of markerData[1][0]['geoson'].features) { const el = document.createElement('div'); el.className = 'marker_start'; el.style.width = '58px'; el.style.height = '58px'; const marker = new mapboxgl.Marker(el, {offset: [0,-29]}) .setLngLat(feature.geometry.coordinates) .addTo(contentMap_1); marker.markerType = 'start'; markerData[1][0]['marker'] = marker; bounds_1.extend(markerData[1][0]['lonLat']); } markerData[1][0]['popup'] = false; markerData[1][0]['route'] = false; markerData[1][0]['card'] = false; if (typeof markerData[1][1] === 'undefined') { markerData[1][1] = {}; } markerData[1][1]['lonLat'] = [-86.495632, 30.393737]; markerData[1][1]['geoson'] = { 'type': 'FeatureCollection', 'features': [{ 'type': 'Feature', 'geometry': { 'type': 'Point', 'coordinates': markerData[1][1]['lonLat'] }, 'properties': { 'title': 'finish', 'description': 'finish point' } }] }; for (const feature of markerData[1][1]['geoson'].features) { const el = document.createElement('div'); el.className = 'marker_finish'; el.style.width = '58px'; el.style.height = '58px'; const marker = new mapboxgl.Marker(el, {offset: [0,-29]}) .setLngLat(feature.geometry.coordinates) .addTo(contentMap_1); marker.markerType = 'finish'; markerData[1][1]['marker'] = marker; bounds_1.extend(markerData[1][1]['lonLat']); } markerData[1][1]['popup'] = false; markerData[1][1]['route'] = false; markerData[1][1]['card'] = false; if (typeof markerData[1][2] === 'undefined') { markerData[1][2] = {}; } markerData[1][2]['lonLat'] = [ -91.60053180477288, 32.4541513622886]; markerData[1][2]['geoson'] = { 'type': 'FeatureCollection', 'features': [{ 'type': 'Feature', 'geometry': { 'type': 'Point', 'coordinates': markerData[1][2]['lonLat'] }, 'properties': { 'title': 'star', 'description': 'star point' } }] }; for (const feature of markerData[1][2]['geoson'].features) { const el = document.createElement('div'); el.className = 'marker_star'; el.style.width = '58px'; el.style.height = '58px'; const marker = new mapboxgl.Marker(el, {offset: [0,-29]}) .setLngLat(feature.geometry.coordinates) .addTo(contentMap_1); marker.markerType = 'star'; markerData[1][2]['marker'] = marker; bounds_1.extend(markerData[1][2]['lonLat']); } var markerConfigJson = JSON.parse('{"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":"\u2606"}}'); function getNewLngLat(map, originalLngLat, offsets) { var pixel = map.project(new mapboxgl.LngLat(originalLngLat[0], originalLngLat[1])); pixel.x += offsets.x; pixel.y += offsets.y; return map.unproject(pixel); } Object.keys(contentMaps).forEach(function(mapNum) { contentMaps[mapNum].on('zoom', function() { Object.keys(markerData[mapNum]).forEach(function(iconNum) { var marker = markerData[mapNum][iconNum]; if (!isMobileDevice() && marker.cardInstance) { var offsets = { x: marker.cardOffsetX, y: marker.cardOffsetY }; var newLngLat = getNewLngLat(contentMaps[mapNum], marker.lonLat, offsets); marker.cardInstance.setLngLat([newLngLat.lng, newLngLat.lat]); } }); }); }); window.toggleMapIconClick = function(mapNum, iconNum) { clickWasOnMarkerOrCard = true; for (const [key, icon] of Object.entries(markerData[mapNum])) { if (parseInt(key) === iconNum) continue; if (icon['popupInstance']) { icon['popupInstance'].remove(); delete icon['popupInstance']; } if (icon['route'] === true && contentMaps[mapNum].getLayer('iconRoute_'+mapNum+'_'+key)) { contentMaps[mapNum].removeLayer('iconRoute_'+mapNum+'_'+key); contentMaps[mapNum].removeSource('iconRoute_'+mapNum+'_'+key); } if(icon['marker']) { icon['marker'].getElement().classList.remove('markerSpanSelect'); } if(icon['marker'] && icon['marker'].getElement().style.display === 'none') { icon['marker'].getElement().style.display = 'block'; } if (icon['cardInstance']) { icon['cardInstance'].remove(); delete icon['cardInstance']; } if (icon['cardOverlay']) { var overlayToRemove = icon['cardOverlay']; if (overlayToRemove && overlayToRemove.parentNode) { overlayToRemove.parentNode.removeChild(overlayToRemove); delete icon['cardOverlay']; } } icon['clicked'] = false; } if (markerData[mapNum][iconNum]['clicked'] === false) { markerData[mapNum][iconNum]['marker'].getElement().classList.add('markerSpanSelect'); if (markerData[mapNum][iconNum]['popup'] === true) { const popupTitle = markerData[mapNum][iconNum]['popupTitle']; const popupText = markerData[mapNum][iconNum]['popupText']; let popupHTML = '
'; if (popupTitle) {popupHTML += '

' + popupTitle + '

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

' + popupText + '

';} popupHTML += '
'; var popup = new mapboxgl.Popup({ anchor: 'bottom', closeButton: false, closeOnClick: false, className: 'pointer' }) .setLngLat(markerData[mapNum][iconNum]['lonLat']) .setHTML(popupHTML) .addTo(contentMaps[mapNum]); markerData[mapNum][iconNum]['popupInstance'] = popup; popup._content.addEventListener('click', function() { toggleMapIconClick(mapNum, iconNum); }); markerData[mapNum][iconNum]['marker'].getElement().style.display = 'none'; } if (markerData[mapNum][iconNum]['route'] === true) { markerData[mapNum][iconNum]['routeGeoson'] = { type: 'Feature', properties: {}, geometry: { type: 'LineString', coordinates: markerData[mapNum][iconNum]['routeJson'] } }; contentMaps[mapNum].addLayer({ id: 'iconRoute_'+mapNum+'_'+iconNum, type: 'line', source: { type: 'geojson', data: markerData[mapNum][iconNum]['routeGeoson'] }, layout: { 'line-join': 'round', 'line-cap': 'round' }, paint: { 'line-color': ''+markerData[mapNum][iconNum]['routeColor'], 'line-width': 5, 'line-opacity': 0.8 } }); } if (markerData[mapNum][iconNum]['card']) { var cardContent = { cardTitle: markerData[mapNum][iconNum]['cardTitle'], cardDistanceTime: markerData[mapNum][iconNum]['cardDistanceTime'], cardPhotoCode: markerData[mapNum][iconNum]['cardPhotoCode'], }; if (markerData[mapNum][iconNum].hasOwnProperty('cardLink')) { cardContent.cardLink = markerData[mapNum][iconNum]['cardLink']; } if (markerData[mapNum][iconNum].hasOwnProperty('cardLinkText')) { cardContent.cardLinkText = markerData[mapNum][iconNum]['cardLinkText']; } if (!isMobileDevice()) { var cardContentHtml = createCardContentHtml(cardContent,false); var offsets = { x: markerData[mapNum][iconNum].cardOffsetX, y: markerData[mapNum][iconNum].cardOffsetY }; var newLngLat = getNewLngLat(contentMaps[mapNum], markerData[mapNum][iconNum]['lonLat'], offsets); var cardPopup = new mapboxgl.Popup({ anchor: 'bottom', closeButton: false, closeOnClick: false, className: 'pointer mapPopupCard' }) .setHTML(cardContentHtml) .setLngLat([newLngLat.lng, newLngLat.lat]) .addTo(contentMaps[mapNum]); markerData[mapNum][iconNum]['cardInstance'] = cardPopup; } else { var cardMobile = document.createElement('div'); cardMobile.className = 'mapPopupCardMobile'; cardMobile.innerHTML = createCardContentHtml(cardContent,true); var mapContainer = contentMaps[mapNum].getContainer(); mapContainer.appendChild(cardMobile); markerData[mapNum][iconNum]['cardOverlay'] = cardMobile; } } markerData[mapNum][iconNum]['clicked'] = true; updateMapBounds(mapNum, iconNum); } else { resetMarkersAndCards(mapNum); } } let clickWasOnMarkerOrCard = false; function resetMarkersAndCards(mapNum) { Object.keys(markerData[mapNum]).forEach((iconNum) => { if (markerData[mapNum][iconNum]['marker']) { markerData[mapNum][iconNum]['marker'].getElement().classList.remove('markerSpanSelect'); } if (markerData[mapNum][iconNum]['popupInstance']) { markerData[mapNum][iconNum]['popupInstance'].remove(); delete markerData[mapNum][iconNum]['popupInstance']; } if (markerData[mapNum][iconNum]['route'] === true) { if (contentMaps[mapNum].getLayer('iconRoute_'+mapNum+'_'+iconNum)) { contentMaps[mapNum].removeLayer('iconRoute_'+mapNum+'_'+iconNum); contentMaps[mapNum].removeSource('iconRoute_'+mapNum+'_'+iconNum); } } if (markerData[mapNum][iconNum]['card']) { if (markerData[mapNum][iconNum]['cardInstance']) { markerData[mapNum][iconNum]['cardInstance'].remove(); delete markerData[mapNum][iconNum]['cardInstance']; } } if (markerData[mapNum][iconNum]['cardOverlay']) { var overlayToRemove = markerData[mapNum][iconNum]['cardOverlay']; if (overlayToRemove && overlayToRemove.parentNode) { overlayToRemove.parentNode.removeChild(overlayToRemove); delete markerData[mapNum][iconNum]['cardOverlay']; } } markerData[mapNum][iconNum]['marker'].getElement().style.display = 'block'; markerData[mapNum][iconNum]['clicked'] = false; updateMapBounds(mapNum, iconNum); }); } function createCardContentHtml(cardContent,isMobile) { let htmlContent = '
'; if (cardContent.cardPhotoCode) { htmlContent += '
' + cardContent.cardPhotoCode + '
'; } if (cardContent.cardTitle || cardContent.cardDistanceTime || cardContent.cardLink) { htmlContent += '
'; if (cardContent.cardTitle) { htmlContent += '
' + cardContent.cardTitle + '
'; } if (cardContent.cardDistanceTime) { if (isMobile) { const parts = cardContent.cardDistanceTime.split('⏱️'); htmlContent += '
' + parts[0].trim() + '
⏱️ ' + parts[1].trim() + '
'; } else { htmlContent += '
' + cardContent.cardDistanceTime + '
'; } } if (cardContent.cardLink) { var linkText = cardContent.cardLinkText || 'See full details'; htmlContent += '' + linkText + ''; } htmlContent += '
'; } htmlContent += '
'; return htmlContent; } function isMobileDevice() { return window.innerWidth <= 768 || window.innerHeight <= 600; } function updateMapBounds(mapNum, iconNum) { const oldBounds = contentMaps[mapNum].getBounds(); const newBounds = contentMaps[mapNum].getBounds(); const mapDimensions = contentMaps[mapNum].getContainer().getBoundingClientRect(); const clickedMarker = markerData[mapNum][iconNum]; const clickedMarkerLonLat = clickedMarker['lonLat']; const clickedMarkerRouteJson = clickedMarker['routeJson']; const lngDiff = oldBounds.getNorthEast().lng - oldBounds.getSouthWest().lng; const latDiff = oldBounds.getNorthEast().lat - oldBounds.getSouthWest().lat; const lngPerPx = lngDiff / mapDimensions.width; const latPerPx = latDiff / mapDimensions.height; if (clickedMarker['popup'] && clickedMarker['clicked']) { const pixelCoordinates = contentMaps[mapNum].project(clickedMarkerLonLat); const tooCloseX = 100; const tooCloseT = 80; const tooCloseB = 10; const extendAmountXPixels = 120; const extendAmountTPixels = 120; const extendAmountBPixels = 20; const extendNWSE = [0,0,0,0]; if (pixelCoordinates.x < tooCloseX) { extendNWSE[3] = extendAmountXPixels- pixelCoordinates.x; } else if (pixelCoordinates.x > mapDimensions.width - tooCloseX) { extendNWSE[1] = extendAmountXPixels - (mapDimensions.width - pixelCoordinates.x); } if (pixelCoordinates.y < tooCloseT) { extendNWSE[0] = extendAmountTPixels- pixelCoordinates.y; } else if (pixelCoordinates.y > mapDimensions.height - tooCloseB) { extendNWSE[2] = extendAmountBPixels- (mapDimensions.height - pixelCoordinates.y); } for (let i = 0; i < extendNWSE.length; i++) { if (extendNWSE[i] > 0) { switch (i) { case 0: const extendNorthLat = extendNWSE[i] * latPerPx; newBounds.extend(new mapboxgl.LngLat(clickedMarkerLonLat[0], oldBounds.getNorthEast().lat + extendNorthLat)); break; case 1: const extendEastLng = extendNWSE[i] * lngPerPx; newBounds.extend(new mapboxgl.LngLat(oldBounds.getNorthEast().lng + extendEastLng, clickedMarkerLonLat[1])); break; case 2: const extendSouthLat = extendNWSE[i] * latPerPx; newBounds.extend(new mapboxgl.LngLat(clickedMarkerLonLat[0], oldBounds.getSouthWest().lat - extendSouthLat)); break; case 3: const extendWestLng = extendNWSE[i] * lngPerPx; newBounds.extend(new mapboxgl.LngLat(oldBounds.getSouthWest().lng - extendWestLng, clickedMarkerLonLat[1])); break; } } } if (Math.abs(newBounds.getSouthWest().lng - oldBounds.getSouthWest().lng) > 1e-6 || Math.abs(newBounds.getSouthWest().lat - oldBounds.getSouthWest().lat) > 1e-6 || Math.abs(newBounds.getNorthEast().lng - oldBounds.getNorthEast().lng) > 1e-6 || Math.abs(newBounds.getNorthEast().lat - oldBounds.getNorthEast().lat) > 1e-6) { contentMaps[mapNum].fitBounds(newBounds, { padding: 0, duration: 600, easing: (t) => t * (2 - t) }); } } if (clickedMarker['route'] && clickedMarker['routeJson'] && clickedMarker['clicked']) { const paddingRoutePixels = 20; let extendWest = false, extendEast = false, extendNorth = false, extendSouth = false; clickedMarker['routeJson'].forEach(coord => { if (coord[0] < newBounds.getWest()) extendWest = true; if (coord[0] > newBounds.getEast()) extendEast = true; if (coord[1] > newBounds.getNorth()) extendNorth = true; if (coord[1] < newBounds.getSouth()) extendSouth = true; newBounds.extend(new mapboxgl.LngLat(coord[0], coord[1])); }); const mapContainer = contentMaps[mapNum].getContainer(); const lngDegreesPerPixel = (newBounds.getEast() - newBounds.getWest()) / mapContainer.offsetWidth; const latDegreesPerPixel = (newBounds.getNorth() - newBounds.getSouth()) / mapContainer.offsetHeight; const westBound = extendWest ? newBounds.getWest() - paddingRoutePixels * lngDegreesPerPixel : newBounds.getWest(); const eastBound = extendEast ? newBounds.getEast() + paddingRoutePixels * lngDegreesPerPixel : newBounds.getEast(); const northBound = extendNorth ? newBounds.getNorth() + paddingRoutePixels * latDegreesPerPixel : newBounds.getNorth(); const southBound = extendSouth ? newBounds.getSouth() - paddingRoutePixels * latDegreesPerPixel : newBounds.getSouth(); const paddedBounds = new mapboxgl.LngLatBounds( new mapboxgl.LngLat(westBound, southBound), new mapboxgl.LngLat(eastBound, northBound) ); contentMaps[mapNum].fitBounds(paddedBounds, { padding: 0, duration: 600, easing: (t) => t * (2 - t) }); } if (!isMobileDevice() && markerData[mapNum][iconNum]['card'] && markerData[mapNum][iconNum]['clicked']) { const cardWidth = 300; const cardHeight = 360; const cardPadding = 100; const pixelCoordinates = contentMaps[mapNum].project(clickedMarkerLonLat); const offsetX = markerData[mapNum][iconNum]['cardOffsetX']; const offsetY = markerData[mapNum][iconNum]['cardOffsetY']; const markerPixel = contentMaps[mapNum].project(clickedMarkerLonLat); const topLeftPixel = { x: markerPixel.x + offsetX - cardWidth/2 - cardPadding, y: markerPixel.y + offsetY - cardHeight - cardPadding }; const topRightPixel = { x: topLeftPixel.x + cardWidth + (2 * cardPadding), y: topLeftPixel.y }; const bottomLeftPixel = { x: topLeftPixel.x, y: topLeftPixel.y + cardHeight + (2 * cardPadding) }; const bottomRightPixel = { x: topRightPixel.x, y: bottomLeftPixel.y }; [topLeftPixel, topRightPixel, bottomLeftPixel, bottomRightPixel].forEach(pixel => { const lngLat = contentMaps[mapNum].unproject(pixel); newBounds.extend(lngLat); }); contentMaps[mapNum].fitBounds(newBounds, { padding: 0, duration: 600, easing: (t) => t * (2 - t) }); } } markerData[1][2]['clicked'] = false; markerData[1][2]['marker'].getElement().addEventListener('click', function() { toggleMapIconClick(1, 2); }); markerData[1][2]['popup'] = true; markerData[1][2]['popupTitle'] = `Shreveport Route`; markerData[1][2]['popupText'] = `750 miles (12 hours 45 minutes*)`; markerData[1][2]['route'] = false; markerData[1][2]['card'] = false; if (typeof markerData[1][3] === 'undefined') { markerData[1][3] = {}; } markerData[1][3]['lonLat'] = [ -92.21467897229807, 30.25007977747683]; markerData[1][3]['geoson'] = { 'type': 'FeatureCollection', 'features': [{ 'type': 'Feature', 'geometry': { 'type': 'Point', 'coordinates': markerData[1][3]['lonLat'] }, 'properties': { 'title': 'star', 'description': 'star point' } }] }; for (const feature of markerData[1][3]['geoson'].features) { const el = document.createElement('div'); el.className = 'marker_star'; el.style.width = '58px'; el.style.height = '58px'; const marker = new mapboxgl.Marker(el, {offset: [0,-29]}) .setLngLat(feature.geometry.coordinates) .addTo(contentMap_1); marker.markerType = 'star'; markerData[1][3]['marker'] = marker; bounds_1.extend(markerData[1][3]['lonLat']); } markerData[1][3]['clicked'] = false; markerData[1][3]['marker'].getElement().addEventListener('click', function() { toggleMapIconClick(1, 3); }); markerData[1][3]['popup'] = true; markerData[1][3]['popupTitle'] = `Galveston Route`; markerData[1][3]['popupText'] = `1,190 miles (19 hours 50 minutes*)`; markerData[1][3]['route'] = false; markerData[1][3]['card'] = false; const geojson_1_0 = { type: 'Feature', properties: {}, geometry: { type: 'LineString', coordinates: [["-96.7970683","32.7776107"],["-96.7967344","32.7776659"],["-96.7964726","32.7777278"],["-96.7964162","32.7777386"],["-96.7963835","32.7777369"],["-96.7963701","32.7777304"],["-96.7963545","32.7777206"],["-96.7963407","32.7777016"],["-96.7963036","32.7775949"],["-96.7958669","32.7762228"],["-96.7957398","32.7758614"],["-96.7956439","32.7755161"],["-96.7968245","32.7745108"],["-96.7969283","32.7744259"],["-96.7971256","32.774134"],["-96.7972733","32.7739406"],["-96.797462","32.7737279"],["-96.797683","32.7735373"],["-96.7979354","32.7733652"],["-96.7985168","32.7730337"],["-96.7987835","32.7728561"],["-96.7990302","32.7726242"],["-96.7994631","32.7723412"],["-96.8000638","32.7718691"],["-96.8023092","32.7700591"],["-96.8024428","32.7699644"],["-96.8025799","32.7698916"],["-96.8027851","32.7698011"],["-96.8030372","32.7696937"],["-96.8033675","32.7695523"],["-96.8036435","32.7694444"],["-96.8038924","32.7693376"],["-96.8041179","32.7692216"],["-96.8043736","32.7690527"],["-96.8045795","32.7688938"],["-96.8048042","32.768699"],["-96.8050638","32.7683141"],["-96.8052189","32.767978"],["-96.8053125","32.7677161"],["-96.8054078","32.7673341"],["-96.8055048","32.7669681"],["-96.8056377","32.7665662"],["-96.8057683","32.7662388"],["-96.8059243","32.7658927"],["-96.8062315","32.7654344"],["-96.8068484","32.7642602"],["-96.8075168","32.7630278"],["-96.8097453","32.7588676"],["-96.8098124","32.7586709"],["-96.8098804","32.7583943"],["-96.8099406","32.7581683"],["-96.8100013","32.7578948"],["-96.8100439","32.7575974"],["-96.8100578","32.7573618"],["-96.8100531","32.7570892"],["-96.810026","32.7567106"],["-96.8099317","32.7561809"],["-96.8098063","32.7555377"],["-96.8096952","32.7549097"],["-96.8096457","32.7541482"],["-96.8096606","32.7508065"],["-96.8096969","32.7502487"],["-96.8097459","32.7498678"],["-96.8098347","32.7494681"],["-96.8100256","32.7488459"],["-96.8102658","32.7483239"],["-96.8106332","32.7476635"],["-96.8110143","32.7471692"],["-96.811573","32.7465654"],["-96.8121756","32.7460093"],["-96.8124846","32.7457801"],["-96.8130686","32.7454154"],["-96.8136464","32.7450905"],["-96.8152219","32.7442373"],["-96.8153701","32.7441598"],["-96.819684","32.741942"],["-96.8207986","32.741366"],["-96.8220894","32.7406405"],["-96.8226929","32.7402526"],["-96.8231006","32.7399103"],["-96.8234876","32.7394619"],["-96.8236447","32.739196"],["-96.8237595","32.7389971"],["-96.8238399","32.7388245"],["-96.8239137","32.7386429"],["-96.8239644","32.7384931"],["-96.8240239","32.7382865"],["-96.8240846","32.7379495"],["-96.8241678","32.7374802"],["-96.8241","32.7359814"],["-96.8240976","32.7354308"],["-96.8241331","32.7348933"],["-96.8241901","32.7345291"],["-96.8242548","32.734184"],["-96.8243966","32.7336373"],["-96.8252087","32.7309829"],["-96.825406","32.7302889"],["-96.8255121","32.7298249"],["-96.8255801","32.7294736"],["-96.8256397","32.7290789"],["-96.8257097","32.7285098"],["-96.8258681","32.7274525"],["-96.8261095","32.7263342"],["-96.8263232","32.7255297"],["-96.8266148","32.724576"],["-96.8271057","32.7230455"],["-96.8272466","32.7223233"],["-96.8282674","32.7188101"],["-96.8283928","32.7183502"],["-96.8285014","32.7179278"],["-96.8291709","32.7155683"],["-96.8296604","32.714051"],["-96.8299925","32.7130355"],["-96.8301213","32.7126464"],["-96.8302171","32.7122449"],["-96.8302551","32.7118771"],["-96.8302846","32.7115081"],["-96.830303","32.7103045"],["-96.8303168","32.7096109"],["-96.8303164","32.7092791"],["-96.8302624","32.7089207"],["-96.8301967","32.7085837"],["-96.8300799","32.7082562"],["-96.8299166","32.7078881"],["-96.8298673","32.7077898"],["-96.8294179","32.7072146"],["-96.8289105","32.7067032"],["-96.8287034","32.7064946"],["-96.8282318","32.7060183"],["-96.827972","32.7057581"],["-96.8272489","32.7050597"],["-96.8269067","32.7046953"],["-96.8265703","32.704321"],["-96.8262572","32.7039482"],["-96.8255187","32.7029445"],["-96.8251798","32.7023733"],["-96.8249502","32.7019597"],["-96.8247509","32.7015766"],["-96.8242902","32.700585"],["-96.8241425","32.7001979"],["-96.8240013","32.699788"],["-96.8237487","32.6989945"],["-96.8236168","32.6984669"],["-96.8235117","32.6979724"],["-96.8234235","32.6974152"],["-96.8233623","32.6968513"],["-96.8233342","32.696558"],["-96.8233082","32.695489"],["-96.8232924","32.6939779"],["-96.8232935","32.6933121"],["-96.82329","32.6928333"],["-96.8232897","32.6920637"],["-96.8232757","32.691521"],["-96.8232184","32.690699"],["-96.8231813","32.690174"],["-96.8231419","32.6895108"],["-96.8231285","32.6890238"],["-96.8231248","32.6874554"],["-96.823098","32.6820616"],["-96.8230776","32.6816226"],["-96.8230358","32.6811356"],["-96.8227242","32.678072"],["-96.8226695","32.6771966"],["-96.82264","32.676388"],["-96.8226376","32.6715828"],["-96.8226777","32.6705026"],["-96.8226914","32.6700764"],["-96.8227714","32.669201"],["-96.8229706","32.6671925"],["-96.823062","32.6657775"],["-96.8230776","32.6641336"],["-96.8231057","32.6605087"],["-96.8231109","32.6591603"],["-96.8231221","32.6577491"],["-96.8231321","32.657259"],["-96.8231618","32.6568162"],["-96.8232891","32.6554938"],["-96.823317","32.6550542"],["-96.8233352","32.6546008"],["-96.8233729","32.6485701"],["-96.8233738","32.6469973"],["-96.8231844","32.6191464"],["-96.8231606","32.6175803"],["-96.8230985","32.6065319"],["-96.8230653","32.6055477"],["-96.8230249","32.6049062"],["-96.8229412","32.6041506"],["-96.822766","32.603051"],["-96.8227161","32.602686"],["-96.8226939","32.6024989"],["-96.8226465","32.6020091"],["-96.822544","32.5942677"],["-96.8225302","32.5926637"],["-96.8225092","32.5896534"],["-96.8224822","32.5888785"],["-96.8224646","32.5881304"],["-96.8224752","32.5774189"],["-96.8225905","32.5710166"],["-96.8225853","32.5705752"],["-96.8225696","32.5696014"],["-96.8225264","32.5561294"],["-96.8225258","32.5554526"],["-96.8224749","32.5504657"],["-96.8223609","32.5474165"],["-96.8223496","32.5471465"],["-96.8223349","32.5466445"],["-96.8222971","32.545232"],["-96.8222547","32.5354312"],["-96.8222539","32.5347162"],["-96.822249","32.5341788"],["-96.8222508","32.5335384"],["-96.8222562","32.532691"],["-96.8222395","32.5184753"],["-96.8222388","32.5179489"],["-96.8222314","32.5090422"],["-96.8222309","32.5070241"],["-96.8222355","32.5051704"],["-96.8222453","32.5040696"],["-96.8222385","32.5026044"],["-96.8222456","32.5015282"],["-96.8222699","32.5010041"],["-96.8223339","32.500389"],["-96.8224148","32.4998333"],["-96.8225269","32.4992649"],["-96.8226466","32.4987023"],["-96.8228816","32.4978559"],["-96.8231266","32.4971677"],["-96.8235428","32.4961905"],["-96.8239374","32.4954321"],["-96.8243123","32.4947673"],["-96.8248641","32.4938105"],["-96.8255747","32.4926392"],["-96.8384314","32.470841"],["-96.8387018","32.470434"],["-96.8395742","32.4688952"],["-96.8397075","32.4686618"],["-96.8405211","32.4672856"],["-96.8410764","32.466345"],["-96.841338","32.4658783"],["-96.8415948","32.465392"],["-96.8420949","32.464242"],["-96.8448277","32.4568807"],["-96.8450967","32.4562192"],["-96.8452547","32.4557514"],["-96.8472801","32.4502151"],["-96.8474341","32.4498135"],["-96.8494968","32.4441801"],["-96.8497135","32.443646"],["-96.850021","32.4429607"],["-96.8504201","32.4422063"],["-96.8507144","32.4416986"],["-96.8509637","32.4413118"],["-96.8511856","32.4409854"],["-96.8514569","32.4406122"],["-96.8523026","32.4395438"],["-96.8628639","32.4265856"],["-96.8635845","32.4257016"],["-96.8685597","32.4196111"],["-96.8698952","32.4179184"],["-96.8702462","32.4174258"],["-96.8705229","32.4170043"],["-96.8707329","32.4166653"],["-96.8709358","32.4163175"],["-96.8713677","32.4154919"],["-96.8716353","32.4149041"],["-96.8718129","32.4144686"],["-96.8720005","32.4139488"],["-96.8722358","32.4131956"],["-96.8724035","32.412555"],["-96.8724891","32.4121815"],["-96.8725703","32.4117305"],["-96.8726599","32.4111053"],["-96.8727345","32.4103739"],["-96.8728344","32.409018"],["-96.8731703","32.4045786"],["-96.8732172","32.4037079"],["-96.8732003","32.4029691"],["-96.8731604","32.4023689"],["-96.8730713","32.4016013"],["-96.8729852","32.4010719"],["-96.872887","32.4006013"],["-96.8728016","32.4002342"],["-96.8725365","32.3993343"],["-96.871771","32.3970671"],["-96.8714893","32.3961918"],["-96.8706985","32.3939272"],["-96.8693578","32.3899573"],["-96.8691202","32.3892506"],["-96.8647715","32.376428"],["-96.8645221","32.3757955"],["-96.8643885","32.375483"],["-96.8641435","32.3749786"],["-96.8640333","32.3747616"],["-96.8638115","32.3743486"],["-96.8635221","32.3738668"],["-96.8632522","32.3734415"],["-96.8629148","32.3729485"],["-96.8624979","32.3723902"],["-96.8594295","32.3687557"],["-96.8588278","32.3680126"],["-96.8586337","32.367748"],["-96.858396","32.3674136"],["-96.8579896","32.3667168"],["-96.857767","32.3662929"],["-96.8573827","32.3654142"],["-96.8556736","32.3613451"],["-96.8554454","32.3607857"],["-96.8553395","32.3604496"],["-96.8552452","32.3601411"],["-96.8551522","32.3597693"],["-96.8550782","32.3594285"],["-96.8550235","32.3590643"],["-96.8549513","32.3583702"],["-96.8549234","32.3580237"],["-96.8547825","32.3534277"],["-96.8547195","32.3514162"],["-96.8546377","32.3488478"],["-96.8546399","32.3485263"],["-96.8546438","32.3484072"],["-96.8546506","32.3482576"],["-96.8546757","32.3479146"],["-96.8547214","32.3475492"],["-96.8547859","32.3471697"],["-96.8548502","32.3468596"],["-96.8550615","32.3459331"],["-96.8552128","32.3452881"],["-96.858968","32.3284914"],["-96.8595748","32.3256585"],["-96.8625644","32.3108959"],["-96.8626768","32.3103049"],["-96.8638551","32.304462"],["-96.864549","32.301087"],["-96.867533","32.2865197"],["-96.8677376","32.2855243"],["-96.8696208","32.2763092"],["-96.8697141","32.2758616"],["-96.8703543","32.2726961"],["-96.8705918","32.2715473"],["-96.870759","32.2707297"],["-96.8724107","32.2626569"],["-96.8725444","32.2620147"],["-96.8735394","32.2571584"],["-96.8761106","32.2445358"],["-96.8762288","32.244034"],["-96.8763786","32.2434916"],["-96.8765932","32.2428218"],["-96.8768776","32.2421011"],["-96.8775222","32.2407795"],["-96.8823502","32.2312791"],["-96.8829288","32.2301609"],["-96.8871263","32.2219457"],["-96.8877739","32.2205203"],["-96.8878331","32.2204022"],["-96.8880185","32.2200852"],["-96.8880708","32.2199668"],["-96.888091","32.2198571"],["-96.8881056","32.2197398"],["-96.8882368","32.2194298"],["-96.8900959","32.2150615"],["-96.8905327","32.214144"],["-96.8916398","32.2119083"],["-96.8919383","32.2113126"],["-96.892166","32.2107999"],["-96.8942134","32.2066488"],["-96.894822","32.2053668"],["-96.8957559","32.2034321"],["-96.8968892","32.2010991"],["-96.8982636","32.1982928"],["-96.8992271","32.1963439"],["-96.8992829","32.1961936"],["-96.8993422","32.1960688"],["-96.8993876","32.1959923"],["-96.8994287","32.1959144"],["-96.9025032","32.18965"],["-96.9056425","32.1833093"],["-96.9062106","32.1823338"],["-96.9073466","32.1804613"],["-96.9076497","32.1799709"],["-96.9077993","32.179721"],["-96.9081176","32.1791532"],["-96.9086115","32.1782177"],["-96.9100347","32.1753829"],["-96.9101885","32.175103"],["-96.9105853","32.174418"],["-96.9108872","32.1739665"],["-96.9113108","32.1733637"],["-96.9119645","32.1725612"],["-96.9133121","32.1710844"],["-96.9141216","32.1702179"],["-96.9199049","32.1639916"],["-96.9208923","32.16293"],["-96.9245719","32.1589569"],["-96.9250774","32.1584193"],["-96.9359659","32.1466849"],["-96.9367821","32.1458142"],["-96.9371003","32.1455033"],["-96.93753","32.1451149"],["-96.9379598","32.1447465"],["-96.9384655","32.1443309"],["-96.938971","32.1439448"],["-96.9395037","32.1435761"],["-96.940344","32.1430509"],["-96.9451931","32.1402131"],["-96.958085","32.1326738"],["-96.9645819","32.1288861"],["-96.9785353","32.1215324"],["-96.9788571","32.1213639"],["-96.9792483","32.1211518"],["-96.9797786","32.1208732"],["-96.9825758","32.1194014"],["-96.9893962","32.1159506"],["-96.9980099","32.1116876"],["-97.0015273","32.1098739"],["-97.00468","32.1079203"],["-97.0258635","32.0946937"],["-97.0260164","32.0946157"],["-97.0261496","32.0945476"],["-97.0262618","32.0944671"],["-97.0265605","32.0942508"],["-97.036348","32.0881115"],["-97.0373836","32.0874625"],["-97.0407049","32.0854628"],["-97.0614179","32.0740471"],["-97.0701161","32.0692914"],["-97.0736988","32.0673157"],["-97.0755811","32.0663131"],["-97.0806981","32.0634735"],["-97.0909031","32.057812"],["-97.0914105","32.0574905"],["-97.0918256","32.0571888"],["-97.0922922","32.0568002"],["-97.0926914","32.0564395"],["-97.0929953","32.0561103"],["-97.0932933","32.055757"],["-97.0935321","32.055443"],["-97.0937319","32.0551537"],["-97.0938861","32.0548966"],["-97.0940406","32.0546139"],["-97.0941725","32.0543576"],["-97.0943096","32.0540602"],["-97.094428","32.0537664"],["-97.0945328","32.0534498"],["-97.0946379","32.0531114"],["-97.0946977","32.0528661"],["-97.0947885","32.0524357"],["-97.0948149","32.0521769"],["-97.0948638","32.0513804"],["-97.0948917","32.0504128"],["-97.0949169","32.0492326"],["-97.0949365","32.0477882"],["-97.0950528","32.0442297"],["-97.0950777","32.0436219"],["-97.095096","32.0431133"],["-97.0951065","32.0424732"],["-97.0957951","32.0201611"],["-97.0957601","32.0178882"],["-97.0956159","32.0068194"],["-97.0956271","32.0061191"],["-97.0956697","32.0055796"],["-97.0957387","32.0050981"],["-97.0958305","32.004644"],["-97.095947","32.0041871"],["-97.0961116","32.003661"],["-97.0963378","32.0030712"],["-97.0966846","32.0023189"],["-97.0972176","32.0014371"],["-97.1136304","31.9774767"],["-97.114826","31.9757567"],["-97.1184712","31.9704913"],["-97.1187129","31.9701053"],["-97.118898","31.9697466"],["-97.1190642","31.9693955"],["-97.1192802","31.9687513"],["-97.1193833","31.9682551"],["-97.1194408","31.967834"],["-97.1194626","31.9674657"],["-97.1194571","31.9670499"],["-97.1194293","31.9667282"],["-97.1193968","31.9664477"],["-97.1193539","31.966204"],["-97.1193055","31.9659775"],["-97.1192475","31.9657763"],["-97.1191824","31.965567"],["-97.1190851","31.9652935"],["-97.1143309","31.9544986"],["-97.1100856","31.9447972"],["-97.1095115","31.9435146"],["-97.1089979","31.9422897"],["-97.1000838","31.9219229"],["-97.0996674","31.9209607"],["-97.098599","31.9184919"],["-97.0982268","31.9176668"],["-97.0966609","31.9141614"],["-97.0958624","31.912344"],["-97.0910278","31.9012463"],["-97.0886149","31.8957315"],["-97.0882415","31.8949198"],["-97.0877486","31.8937541"],["-97.0843023","31.8858817"],["-97.082717","31.8822202"],["-97.0825978","31.8819395"],["-97.0824657","31.8816587"],["-97.0822365","31.8810409"],["-97.0820501","31.8804807"],["-97.0818119","31.8796709"],["-97.0817093","31.8792276"],["-97.0816311","31.8788472"],["-97.0815627","31.8784434"],["-97.0814979","31.8779544"],["-97.0814422","31.8774462"],["-97.0814132","31.8770109"],["-97.081398","31.8764725"],["-97.0813987","31.8759423"],["-97.081422","31.8753859"],["-97.081515","31.8744281"],["-97.083535","31.8616446"],["-97.0836921","31.8606525"],["-97.0843679","31.8563514"],["-97.084729","31.8532222"],["-97.084817","31.8526508"],["-97.084971","31.8518527"],["-97.0850465","31.8515135"],["-97.0851911","31.8509578"],["-97.0854057","31.8502093"],["-97.085652","31.8494429"],["-97.0858884","31.8487687"],["-97.0894186","31.8394801"],["-97.0901363","31.837668"],["-97.0918519","31.8337668"],["-97.0969108","31.8230105"],["-97.0973598","31.8218374"],["-97.0975237","31.8213396"],["-97.097717","31.8206519"],["-97.0978976","31.81996"],["-97.0980209","31.8193992"],["-97.09814","31.8187235"],["-97.098265","31.8176373"],["-97.0983499","31.8166346"],["-97.0985505","31.813631"],["-97.0986685","31.8119432"],["-97.0988273","31.8106061"],["-97.0990122","31.8093892"],["-97.0992403","31.8082091"],["-97.0994286","31.8074135"],["-97.0996461","31.8065602"],["-97.1018582","31.7987681"],["-97.1019871","31.7982539"],["-97.1022542","31.7969995"],["-97.1024639","31.7958405"],["-97.1025555","31.7951534"],["-97.1026471","31.7942963"],["-97.1028208","31.7917774"],["-97.1028642","31.7902078"],["-97.1027198","31.787236"],["-97.1027038","31.7867524"],["-97.1026934","31.7857109"],["-97.1027304","31.7844213"],["-97.1042291","31.7610578"],["-97.1043069","31.7597237"],["-97.1043954","31.7578994"],["-97.1043995","31.7565071"],["-97.1024497","31.714707"],["-97.1022616","31.7102866"],["-97.1022491","31.7087646"],["-97.102427","31.7025883"],["-97.1024236","31.7020585"],["-97.1023976","31.7014404"],["-97.1023512","31.7007577"],["-97.1022808","31.7000892"],["-97.1021998","31.6994835"],["-97.1020576","31.6987392"],["-97.1017348","31.6974716"],["-97.1011612","31.6953543"],["-97.1007098","31.6936088"],["-97.1005023","31.6925957"],["-97.1001568","31.6901151"],["-97.1001016","31.6892248"],["-97.099617","31.6747064"],["-97.0995251","31.6715016"],["-97.0995146","31.6710152"],["-97.0995487","31.6695721"],["-97.0996091","31.66862"],["-97.0998781","31.6663205"],["-97.1004635","31.6619337"],["-97.1005659","31.6607141"],["-97.1009478","31.6555191"],["-97.1010013","31.6545573"],["-97.1010003","31.6541806"],["-97.100991","31.653851"],["-97.1009732","31.653545"],["-97.1009508","31.6533061"],["-97.1008688","31.6527257"],["-97.1007939","31.6523171"],["-97.1006906","31.6518645"],["-97.1005154","31.6512326"],["-97.1003713","31.650787"],["-97.099978","31.6498209"],["-97.099459","31.6488331"],["-97.0979407","31.6461742"],["-97.097487","31.6452971"],["-97.0973326","31.6449453"],["-97.0971878","31.6445765"],["-97.0970691","31.6442549"],["-97.0969696","31.6439435"],["-97.0968847","31.6436363"],["-97.0967567","31.6431265"],["-97.0966985","31.6428476"],["-97.0966318","31.6424888"],["-97.096537","31.6416951"],["-97.0956866","31.6303887"],["-97.0956574","31.6294074"],["-97.0956712","31.6290123"],["-97.0957045","31.6285751"],["-97.095749","31.6281512"],["-97.0958077","31.6277648"],["-97.0959406","31.6271544"],["-97.096094","31.6265534"],["-97.0962727","31.6259865"],["-97.096429","31.6255625"],["-97.0965681","31.6252202"],["-97.0967359","31.6248508"],["-97.1064356","31.6046941"],["-97.1070549","31.6033809"],["-97.107895","31.6016136"],["-97.1080439","31.6013036"],["-97.1082238","31.6009034"],["-97.1083632","31.6005698"],["-97.1084922","31.6002348"],["-97.1086082","31.5998929"],["-97.1087332","31.5994976"],["-97.1088755","31.5989555"],["-97.1089946","31.5983766"],["-97.109049","31.597989"],["-97.1091378","31.5970877"],["-97.1091845","31.5964875"],["-97.1092385","31.5957039"],["-97.1093012","31.5949222"],["-97.1093558","31.5940531"],["-97.1094452","31.5927419"],["-97.1094746","31.5922759"],["-97.1100012","31.5833723"],["-97.1100404","31.5828857"],["-97.1100711","31.5826182"],["-97.1101156","31.5823087"],["-97.1101833","31.5819782"],["-97.1102634","31.5816527"],["-97.1103584","31.581339"],["-97.1106033","31.5807133"],["-97.1107289","31.5804207"],["-97.1108709","31.5801278"],["-97.1110389","31.5798089"],["-97.1112827","31.5793997"],["-97.1115904","31.5789231"],["-97.1118995","31.5784372"],["-97.1121795","31.5780066"],["-97.1123392","31.5777538"],["-97.1129049","31.576865"],["-97.1130644","31.5766114"],["-97.1150668","31.5734365"],["-97.1151567","31.5732961"],["-97.115453","31.5728088"],["-97.115595","31.5725591"],["-97.1157239","31.5723423"],["-97.1158568","31.572064"],["-97.116146","31.5713672"],["-97.1162945","31.5709608"],["-97.116397","31.5706329"],["-97.1165466","31.570046"],["-97.11663","31.5696037"],["-97.1167045","31.5691129"],["-97.1167544","31.5686079"],["-97.1167682","31.5680574"],["-97.1167642","31.5677311"],["-97.1167447","31.5666244"],["-97.1167317","31.5659021"],["-97.1167184","31.5652885"],["-97.1167041","31.5647705"],["-97.1166888","31.5644007"],["-97.1166871","31.5640479"],["-97.1167023","31.5637279"],["-97.1167374","31.5634059"],["-97.1168006","31.562993"],["-97.1168617","31.5626284"],["-97.1169169","31.5623513"],["-97.1169708","31.5621495"],["-97.1170614","31.5618453"],["-97.117286","31.5611558"],["-97.117479","31.5606833"],["-97.1177001","31.5602181"],["-97.1178349","31.5599626"],["-97.1184834","31.558832"],["-97.1213188","31.5539429"],["-97.121573","31.5534938"],["-97.1263635","31.5451179"],["-97.1267693","31.5443753"],["-97.1269622","31.5439838"],["-97.1275399","31.5426546"],["-97.1282164","31.5405793"],["-97.1288383","31.5383957"],["-97.1313916","31.5307369"],["-97.1317787","31.5297307"],["-97.1328025","31.5274405"],["-97.1333723","31.5261744"],["-97.1337996","31.5252523"],["-97.1339563","31.5248984"],["-97.136257","31.5198394"],["-97.1366572","31.5190283"],["-97.1371438","31.5180693"],["-97.1389786","31.5149413"],["-97.1395117","31.5140287"],["-97.140022","31.5131691"],["-97.1416704","31.5105607"],["-97.1419928","31.5100567"],["-97.1426234","31.5090362"],["-97.1428642","31.5086185"],["-97.1429149","31.5085281"],["-97.1430607","31.5082486"],["-97.1431993","31.5079823"],["-97.1432376","31.5079025"],["-97.1435634","31.5072047"],["-97.1440223","31.5061275"],["-97.1443181","31.5054393"],["-97.145493","31.502842"],["-97.146211","31.5015047"],["-97.1466413","31.500741"],["-97.1470612","31.5000145"],["-97.1511496","31.493165"],["-97.1517354","31.4921395"],["-97.1519516","31.4917602"],["-97.1582268","31.4811416"],["-97.1598006","31.4787219"],["-97.1600928","31.4782645"],["-97.1605143","31.4775831"],["-97.1697401","31.4626725"],["-97.1758025","31.4523469"],["-97.1874046","31.4336806"],["-97.1935394","31.422898"],["-97.1939871","31.422181"],["-97.194937","31.4207063"],["-97.1970944","31.4174528"],["-97.1981117","31.4158287"],["-97.2031454","31.4068778"],["-97.2052301","31.4029866"],["-97.2058478","31.4017332"],["-97.2100776","31.3920499"],["-97.2107912","31.3903825"],["-97.2115883","31.3885329"],["-97.2118456","31.3879243"],["-97.2124769","31.3862698"],["-97.2127878","31.385273"],["-97.2129573","31.3846406"],["-97.213157","31.3838274"],["-97.2159193","31.370047"],["-97.2161221","31.3689166"],["-97.2166722","31.3659879"],["-97.2173112","31.3630389"],["-97.2182287","31.3585966"],["-97.2183834","31.3578641"],["-97.2190865","31.3546467"],["-97.2195447","31.3525901"],["-97.2214399","31.3436855"],["-97.2217971","31.3418127"],["-97.2220235","31.3409735"],["-97.2222186","31.3402861"],["-97.2224129","31.3396146"],["-97.222954","31.3380652"],["-97.223341","31.3371097"],["-97.2238031","31.3360453"],["-97.2248732","31.3338161"],["-97.2251494","31.3332146"],["-97.2266188","31.3302019"],["-97.2270376","31.3293795"],["-97.2277951","31.3280281"],["-97.2281546","31.3274528"],["-97.2289856","31.3262738"],["-97.2293983","31.3257476"],["-97.2298491","31.325198"],["-97.2302972","31.3246901"],["-97.2308736","31.3240678"],["-97.2314162","31.3235293"],["-97.2320137","31.3229786"],["-97.2323704","31.3226472"],["-97.2329123","31.3221698"],["-97.2352757","31.3203518"],["-97.2359121","31.3198736"],["-97.2365408","31.3193884"],["-97.2370367","31.3189937"],["-97.2373893","31.3186819"],["-97.2377522","31.318344"],["-97.2383664","31.3176683"],["-97.2386696","31.3172992"],["-97.2390367","31.316782"],["-97.2417177","31.3123666"],["-97.2423017","31.3113983"],["-97.2459804","31.305327"],["-97.2461606","31.3050401"],["-97.2465066","31.3044974"],["-97.2467585","31.3040885"],["-97.2470853","31.3035926"],["-97.2474827","31.3029961"],["-97.2480323","31.302124"],["-97.2501027","31.2990662"],["-97.2516429","31.2967136"],["-97.2522266","31.2957843"],["-97.2527903","31.294829"],["-97.2534746","31.2934925"],["-97.2536986","31.293005"],["-97.2539103","31.2925278"],["-97.2541042","31.2920894"],["-97.2543889","31.2913756"],["-97.254775","31.2904053"],["-97.2550286","31.2897266"],["-97.2554548","31.288501"],["-97.2557605","31.2876718"],["-97.2562172","31.2864786"],["-97.2566241","31.2854977"],["-97.2569053","31.2848923"],["-97.2573691","31.2839897"],["-97.2579026","31.2830102"],["-97.2582827","31.282353"],["-97.258693","31.2817284"],["-97.2598326","31.2801094"],["-97.2604672","31.2792515"],["-97.2643535","31.2744797"],["-97.265843","31.2725785"],["-97.2674089","31.2701579"],["-97.2828536","31.2436115"],["-97.2844825","31.2406994"],["-97.2849415","31.2399478"],["-97.2857591","31.2384923"],["-97.2871159","31.2361494"],["-97.2876548","31.235234"],["-97.2884312","31.233863"],["-97.2891043","31.2326016"],["-97.2896954","31.2313609"],["-97.2903696","31.2299035"],["-97.2912069","31.2281398"],["-97.2919132","31.2269226"],["-97.2926944","31.2256157"],["-97.2941567","31.2235525"],["-97.2958332","31.2211922"],["-97.2963719","31.2204004"],["-97.2972333","31.2189697"],["-97.2985681","31.2166549"],["-97.3002396","31.2136842"],["-97.3011262","31.2120651"],["-97.3018641","31.2104993"],["-97.3025569","31.2088417"],["-97.3029867","31.2077011"],["-97.3043185","31.2038507"],["-97.3046337","31.2029588"],["-97.3048959","31.2023286"],["-97.3052548","31.2015406"],["-97.3058427","31.2003322"],["-97.3083437","31.1953931"],["-97.3091835","31.1934122"],["-97.3111042","31.1885063"],["-97.3123988","31.1852435"],["-97.3134735","31.1825375"],["-97.3138816","31.1813769"],["-97.3142511","31.1803276"],["-97.3144746","31.1796907"],["-97.3153768","31.1773379"],["-97.3157859","31.1761514"],["-97.3160488","31.1752924"],["-97.3165705","31.173649"],["-97.3169091","31.1726984"],["-97.3179502","31.1701056"],["-97.3184027","31.1690664"],["-97.3196411","31.1664012"],["-97.3203746","31.1646616"],["-97.3227648","31.1585304"],["-97.3232286","31.1573446"],["-97.3243501","31.1544331"],["-97.3247975","31.1532001"],["-97.3251488","31.1520581"],["-97.3262668","31.1487607"],["-97.3312388","31.1358649"],["-97.33171","31.1345965"],["-97.3334618","31.1301512"],["-97.3336755","31.1297615"],["-97.3339447","31.1293382"],["-97.3342152","31.1289357"],["-97.3345438","31.1284712"],["-97.3349558","31.1279893"],["-97.3353952","31.1275688"],["-97.335874","31.1272012"],["-97.336824","31.1265928"],["-97.3383629","31.1259659"],["-97.3393372","31.1256971"],["-97.3411421","31.125328"],["-97.3420691","31.1251661"],["-97.3431121","31.124965"],["-97.3460223","31.1244297"],["-97.3472753","31.1241676"],["-97.3479126","31.1239946"],["-97.3484674","31.1237964"],["-97.3490479","31.123568"],["-97.3497248","31.1232184"],["-97.3507025","31.1225795"],["-97.3513468","31.1220976"],["-97.3517928","31.1216731"],["-97.3523115","31.1210812"],["-97.352769","31.1204968"],["-97.3530571","31.1199732"],["-97.3532482","31.119629"],["-97.3533992","31.1193324"],["-97.3535569","31.1189756"],["-97.3537687","31.1184378"],["-97.3540001","31.1178342"],["-97.35423","31.1172495"],["-97.3548144","31.1156862"],["-97.355074","31.1149994"],["-97.3560537","31.1123697"],["-97.357313","31.1089959"],["-97.3581058","31.107012"],["-97.3585029","31.1059779"],["-97.3589629","31.1047545"],["-97.3594659","31.1035789"],["-97.3597954","31.1028994"],["-97.3599821","31.1025507"],["-97.360614","31.1014676"],["-97.3608955","31.1010407"],["-97.361088","31.1007736"],["-97.361274","31.1005398"],["-97.3618903","31.0998843"],["-97.3622104","31.0995964"],["-97.3626429","31.0992329"],["-97.3636612","31.0984715"],["-97.364852","31.097712"],["-97.3653063","31.0974636"],["-97.3656062","31.0973136"],["-97.3665506","31.0968819"],["-97.3671442","31.0966609"],["-97.3677265","31.0964806"],["-97.3685366","31.0962567"],["-97.3704087","31.09579"],["-97.373087","31.0950996"],["-97.3791088","31.0933481"],["-97.3805753","31.0928712"],["-97.3816516","31.0924956"],["-97.3840301","31.091654"],["-97.3853455","31.0912652"],["-97.3919741","31.0891938"],["-97.3926874","31.0889747"],["-97.4010415","31.0863956"],["-97.4057751","31.0849215"],["-97.4062496","31.0847604"],["-97.4068053","31.0845349"],["-97.4073442","31.0842798"],["-97.4078069","31.0840284"],["-97.4081284","31.0838321"],["-97.4084407","31.0836199"],["-97.4087614","31.0833848"],["-97.4092005","31.083032"],["-97.4104865","31.0819523"],["-97.4112473","31.081324"],["-97.421928","31.072374"],["-97.4347125","31.061697"],["-97.4354217","31.0612162"],["-97.436293","31.0606848"],["-97.4370299","31.060288"],["-97.4375235","31.0600398"],["-97.4380573","31.0597865"],["-97.4386752","31.0595242"],["-97.4394975","31.0592123"],["-97.4479374","31.0563484"],["-97.4499504","31.0555839"],["-97.4522454","31.0546468"],["-97.4534489","31.0541323"],["-97.4546659","31.0535794"],["-97.4586341","31.0515576"],["-97.4594828","31.0511034"],["-97.4607509","31.0504355"],["-97.4620062","31.049755"],["-97.4644533","31.0484125"],["-97.4647557","31.0482239"],["-97.4650689","31.0480141"],["-97.465479","31.0477021"],["-97.4657808","31.0474527"],["-97.466018","31.0472398"],["-97.4662698","31.0470002"],["-97.4664674","31.046798"],["-97.4666473","31.0465968"],["-97.4670258","31.0461181"],["-97.4671941","31.0458819"],["-97.4673556","31.0456197"],["-97.4675682","31.0452469"],["-97.4682795","31.0439059"],["-97.4685042","31.0434767"],["-97.4698234","31.0409389"],["-97.4703404","31.0398773"],["-97.4707811","31.0388932"],["-97.4713325","31.0375023"],["-97.4719087","31.0360307"],["-97.4722201","31.0352083"],["-97.4731262","31.0328889"],["-97.4734066","31.0322831"],["-97.4740028","31.0307265"],["-97.4751245","31.0280653"],["-97.4755039","31.0273034"],["-97.4762869","31.0258165"],["-97.4769031","31.0246996"],["-97.477142","31.0243104"],["-97.4795657","31.020508"],["-97.4809924","31.0183353"],["-97.481658","31.0173883"],["-97.4858116","31.0111754"],["-97.4868576","31.0095932"],["-97.489363","31.0059271"],["-97.4925742","31.0011086"],["-97.4944203","30.9983999"],["-97.4959078","30.9961485"],["-97.498371","30.9925073"],["-97.4998639","30.9904561"],["-97.5010905","30.9888764"],["-97.5027566","30.9868928"],["-97.5036237","30.98591"],["-97.5067681","30.9826162"],["-97.5081281","30.9813105"],["-97.5228426","30.96841"],["-97.5234799","30.9678491"],["-97.5243209","30.9671353"],["-97.5252721","30.9663253"],["-97.5287851","30.9633393"],["-97.5299565","30.9622422"],["-97.5304952","30.9617069"],["-97.5346119","30.9573532"],["-97.5349117","30.9569914"],["-97.5352134","30.9566085"],["-97.5354215","30.9563122"],["-97.5356351","30.9559972"],["-97.5360026","30.9554279"],["-97.5361382","30.9551935"],["-97.5362777","30.9549453"],["-97.5364133","30.9547058"],["-97.5365686","30.9543847"],["-97.5370549","30.9532679"],["-97.5375173","30.9521938"],["-97.5377801","30.9515246"],["-97.5379567","30.951026"],["-97.5382055","30.950289"],["-97.5385173","30.9493061"],["-97.5389118","30.9478835"],["-97.5389831","30.947564"],["-97.5390516","30.9472385"],["-97.5390703","30.9471478"],["-97.5391155","30.9469113"],["-97.5397425","30.9433412"],["-97.5399287","30.942205"],["-97.5401501","30.9408167"],["-97.5406002","30.9374206"],["-97.5408677","30.9356814"],["-97.5412769","30.9335107"],["-97.5420209","30.9305142"],["-97.5427962","30.9279535"],["-97.5451353","30.921204"],["-97.5454889","30.9204649"],["-97.5457781","30.9199366"],["-97.5460978","30.9193142"],["-97.546547","30.9185595"],["-97.5469657","30.9179297"],["-97.5489697","30.9154445"],["-97.5594982","30.9033933"],["-97.5650415","30.8970771"],["-97.5743855","30.8863357"],["-97.575533","30.8849521"],["-97.5766196","30.8835269"],["-97.5776593","30.881917"],["-97.5785074","30.8803296"],["-97.5797084","30.8777725"],["-97.5808239","30.8753367"],["-97.5871098","30.8617169"],["-97.588829","30.8583074"],["-97.590802","30.8540911"],["-97.5935484","30.8478704"],["-97.6001125","30.8335909"],["-97.6019941","30.8295915"],["-97.6030159","30.8278502"],["-97.6039535","30.8264238"],["-97.6093381","30.8185358"],["-97.6098503","30.8176964"],["-97.6105947","30.8163897"],["-97.6163618","30.8040071"],["-97.6214523","30.7919403"],["-97.6216754","30.7913382"],["-97.6219075","30.7906648"],["-97.6222157","30.7896488"],["-97.6289329","30.7669183"],["-97.6293901","30.7655914"],["-97.629802","30.7645392"],["-97.6335511","30.7555793"],["-97.6338011","30.7549418"],["-97.6340708","30.7542225"],["-97.6344218","30.7532346"],["-97.6373893","30.7435776"],["-97.6378183","30.742293"],["-97.637982","30.7418064"],["-97.6381438","30.7413347"],["-97.638474","30.7403792"],["-97.6391697","30.7383736"],["-97.6393734","30.7377982"],["-97.6396337","30.7371016"],["-97.6483991","30.7117533"],["-97.6496415","30.7084025"],["-97.650129","30.7071606"],["-97.6503897","30.7065143"],["-97.6510074","30.70493"],["-97.6513665","30.7041439"],["-97.6551949","30.6945164"],["-97.6574461","30.6888428"],["-97.6575001","30.6886925"],["-97.6575464","30.6885446"],["-97.6575925","30.6883697"],["-97.6576437","30.6881578"],["-97.6576792","30.6879588"],["-97.6576893","30.6877623"],["-97.6576878","30.6875215"],["-97.6576843","30.6873349"],["-97.657675","30.6871883"],["-97.657663","30.6870539"],["-97.6576002","30.6867534"],["-97.6575624","30.6866056"],["-97.6575039","30.6864374"],["-97.6574237","30.686232"],["-97.6573148","30.6859966"],["-97.6571723","30.6857396"],["-97.6570684","30.6855855"],["-97.656924","30.6853947"],["-97.6525697","30.6800112"],["-97.6515142","30.6785632"],["-97.650301","30.6768538"],["-97.6410047","30.6622984"],["-97.6404023","30.6612506"],["-97.6396849","30.6599611"],["-97.6364269","30.6536688"],["-97.6351809","30.6513204"],["-97.6340099","30.6492603"],["-97.6331601","30.6477427"],["-97.6316176","30.644632"],["-97.6299205","30.6406801"],["-97.6294684","30.6395753"],["-97.629312","30.6390649"],["-97.6291504","30.6385001"],["-97.6290134","30.6379526"],["-97.628892","30.6374125"],["-97.6287927","30.6368593"],["-97.6286611","30.6356864"],["-97.6285179","30.6343339"],["-97.6283926","30.6331919"],["-97.6283126","30.6325882"],["-97.6282301","30.6321663"],["-97.6281243","30.6317288"],["-97.6279996","30.6312716"],["-97.6278508","30.6308021"],["-97.6276976","30.6303641"],["-97.6274378","30.6297697"],["-97.6271213","30.629124"],["-97.6265037","30.6280918"],["-97.6259334","30.6273021"],["-97.6252475","30.6264975"],["-97.6247196","30.6259499"],["-97.6241375","30.6254052"],["-97.6233889","30.624829"],["-97.6227588","30.6243716"],["-97.6223327","30.6240874"],["-97.6219165","30.6238384"],["-97.6214519","30.6235791"],["-97.6209649","30.6233262"],["-97.6197256","30.622776"],["-97.6087512","30.6181499"],["-97.6081989","30.6179087"],["-97.607863","30.6177464"],["-97.6072222","30.6174045"],["-97.6069698","30.6172571"],["-97.6064485","30.6169302"],["-97.6061497","30.6167268"],["-97.6058629","30.6165198"],["-97.6055067","30.6162456"],["-97.6051564","30.6159657"],["-97.6046409","30.6155198"],["-97.6044138","30.6153035"],["-97.6042066","30.6150933"],["-97.6039131","30.614783"],["-97.6037083","30.6145558"],["-97.6034511","30.6142583"],["-97.6032118","30.6139605"],["-97.6027914","30.6133688"],["-97.6024951","30.6129223"],["-97.6022615","30.6125237"],["-97.6020459","30.6121256"],["-97.6017714","30.6115419"],["-97.5958567","30.5968923"],["-97.5948504","30.5944538"],["-97.5940504","30.5926841"],["-97.5927815","30.5901941"],["-97.5912503","30.5875885"],["-97.5884273","30.5828271"],["-97.5877421","30.5816223"],["-97.5870858","30.5803714"],["-97.5865607","30.5792758"],["-97.5860239","30.5780819"],["-97.5855518","30.5770017"],["-97.5814585","30.56706"],["-97.5786094","30.5600609"],["-97.5781306","30.5588865"],["-97.5779848","30.5584861"],["-97.5778352","30.5580342"],["-97.5776463","30.5573939"],["-97.5774024","30.5563663"],["-97.5772651","30.5554688"],["-97.5771509","30.5530297"],["-97.5769762","30.5486901"],["-97.5768066","30.5438399"],["-97.5761647","30.5243565"],["-97.5759883","30.5196398"],["-97.5757243","30.5124326"],["-97.5757741","30.511421"],["-97.575928","30.5104801"],["-97.5762626","30.5092421"],["-97.5767104","30.5082467"],["-97.5776709","30.5066039"],["-97.5803181","30.5022116"],["-97.5815492","30.5000818"],["-97.5821183","30.4988803"],["-97.5826122","30.4975673"],["-97.5830619","30.4961413"],["-97.5843185","30.4897234"],["-97.5849623","30.4863463"],["-97.5851733","30.4855714"],["-97.5853791","30.4849317"],["-97.5855836","30.484307"],["-97.5858164","30.4837267"],["-97.5862121","30.4829243"],["-97.5866169","30.4821812"],["-97.5872136","30.4812087"],["-97.5926793","30.4725205"],["-97.593062","30.4718322"],["-97.5932877","30.4713787"],["-97.5936218","30.4706492"],["-97.5938967","30.4699344"],["-97.594053","30.4694682"],["-97.5941751","30.4690632"],["-97.5942951","30.4686289"],["-97.5943899","30.4682356"],["-97.5944743","30.4678217"],["-97.5945606","30.4673084"],["-97.5946404","30.4666946"],["-97.5946993","30.4660222"],["-97.5947521","30.4651491"],["-97.5944645","30.4490715"],["-97.5943058","30.4473477"],["-97.59411","30.445918"],["-97.5843361","30.4085266"],["-97.5837479","30.4060139"],["-97.5830869","30.4036681"],["-97.5820444","30.4003108"],["-97.5812345","30.3980231"],["-97.5801344","30.3952292"],["-97.5794616","30.3929721"],["-97.5792862","30.3920304"],["-97.5791385","30.391101"],["-97.5790619","30.3899044"],["-97.579032","30.3887604"],["-97.5791701","30.3869087"],["-97.5793609","30.3855884"],["-97.5797955","30.3838063"],["-97.5806381","30.3813284"],["-97.5819572","30.3772813"],["-97.5825599","30.3747762"],["-97.5839751","30.3681888"],["-97.584417","30.3660029"],["-97.5847826","30.3647437"],["-97.5852694","30.3636301"],["-97.5866994","30.36139"],["-97.5877852","30.3597134"],["-97.5888136","30.358151"],["-97.5926115","30.3522522"],["-97.5931264","30.3514832"],["-97.5935206","30.3507403"],["-97.5937451","30.350253"],["-97.5938856","30.3500232"],["-97.5940488","30.3496594"],["-97.5941663","30.3493483"],["-97.5942753","30.3489994"],["-97.5943676","30.3486399"],["-97.5944108","30.348344"],["-97.5944377","30.3480291"],["-97.5944597","30.3476817"],["-97.5944662","30.3473766"],["-97.5944547","30.3470377"],["-97.5944265","30.346703"],["-97.5943785","30.3463441"],["-97.5943005","30.3459571"],["-97.5940967","30.3452821"],["-97.5939489","30.3449235"],["-97.5936747","30.3443429"],["-97.5929444","30.3428814"],["-97.5927672","30.342465"],["-97.5926652","30.342096"],["-97.5926428","30.3418653"],["-97.592656","30.3416506"],["-97.5927141","30.3414185"],["-97.592787","30.3411616"],["-97.5929138","30.3408969"],["-97.5930593","30.340661"],["-97.5932451","30.3404285"],["-97.5934929","30.3401903"],["-97.5938052","30.3399643"],["-97.5942742","30.3397422"],["-97.5957857","30.3391308"],["-97.5992103","30.3377821"],["-97.6018081","30.3366716"],["-97.6028829","30.336198"],["-97.6035194","30.335936"],["-97.6042999","30.3356544"],["-97.6049207","30.3354612"],["-97.6180097","30.3319398"],["-97.619986","30.3314324"],["-97.6205672","30.3313012"],["-97.6222039","30.3310273"],["-97.6399687","30.3298017"],["-97.6408318","30.3297536"],["-97.6468396","30.3292936"],["-97.6537644","30.3288097"],["-97.6545551","30.3287515"],["-97.6615945","30.3282526"],["-97.6634036","30.3280775"],["-97.6652853","30.3277912"],["-97.6668531","30.3275102"],["-97.6681315","30.3272341"],["-97.6693639","30.3269355"],["-97.6701229","30.326736"],["-97.6710225","30.3264764"],["-97.6726752","30.3259351"],["-97.6815065","30.3228322"],["-97.6830733","30.3222969"],["-97.6835444","30.3221566"],["-97.6840057","30.322032"],["-97.6844291","30.3219361"],["-97.684882","30.3218541"],["-97.6853969","30.3217706"],["-97.6859334","30.3217024"],["-97.6864814","30.3216623"],["-97.6872159","30.3216232"],["-97.6906981","30.32138"],["-97.6921043","30.3213195"],["-97.6926726","30.3213133"],["-97.6931802","30.3213229"],["-97.6942564","30.3213707"],["-97.6956176","30.3214718"],["-97.6960777","30.3215201"],["-97.6968056","30.3216603"],["-97.6993857","30.3220729"],["-97.7000868","30.3221588"],["-97.7048872","30.3225814"],["-97.705154","30.3225871"],["-97.7055052","30.3225543"],["-97.7057739","30.3224872"],["-97.7061129","30.3223539"],["-97.706478","30.3221523"],["-97.7067568","30.3219068"],["-97.7069126","30.32172"],["-97.7070981","30.3214425"],["-97.7072086","30.321209"],["-97.7072824","30.3209856"],["-97.7073274","30.3206978"],["-97.7074381","30.3197918"],["-97.7074943","30.3192232"],["-97.7075532","30.3186392"],["-97.7075903","30.3182915"],["-97.7076294","30.317973"],["-97.7077872","30.3167446"],["-97.7078928","30.3158301"],["-97.7079199","30.3156605"],["-97.7079932","30.3153016"],["-97.7080687","30.314983"],["-97.7081693","30.3145948"],["-97.7082721","30.3142047"],["-97.7084436","30.3134824"],["-97.7086926","30.3128502"],["-97.7089575","30.3122156"],["-97.7091864","30.3117304"],["-97.7096877","30.3107728"],["-97.7099417","30.3103344"],["-97.7150225","30.3023594"],["-97.7152458","30.302104"],["-97.7156788","30.3014566"],["-97.7159308","30.3010906"],["-97.716275","30.3005504"],["-97.7164635","30.3002513"],["-97.7169143","30.2995455"],["-97.7185159","30.2968875"],["-97.7189476","30.2961667"],["-97.7199015","30.2946349"],["-97.7243382","30.287725"],["-97.7250012","30.2866715"],["-97.7258414","30.2853894"],["-97.7262276","30.284803"],["-97.7265026","30.2843859"],["-97.7270681","30.2835182"],["-97.7272398","30.283266"],["-97.7274464","30.2830173"],["-97.7278328","30.2825655"],["-97.7283551","30.2819319"],["-97.7286613","30.2815204"],["-97.7289868","30.2810718"],["-97.729237","30.2806346"],["-97.7293869","30.2803492"],["-97.7295539","30.2799712"],["-97.7298279","30.2793317"],["-97.7309552","30.2769387"],["-97.7312936","30.2762008"],["-97.7314934","30.2757564"],["-97.7315501","30.2755918"],["-97.7316283","30.2752863"],["-97.7316628","30.2751192"],["-97.7317576","30.2748101"],["-97.7318918","30.2744021"],["-97.7320334","30.2741002"],["-97.7322907","30.2733633"],["-97.732596","30.2724515"],["-97.7327482","30.2720039"],["-97.7328013","30.2718637"],["-97.7328506","30.2717338"],["-97.7328601","30.2717092"],["-97.7350425","30.2658931"],["-97.7358784","30.2661244"],["-97.7361045","30.2661914"],["-97.7361334","30.2662006"],["-97.7364024","30.2662746"],["-97.73793","30.2667018"],["-97.7381835","30.2667749"],["-97.7400791","30.2673103"],["-97.7403107","30.2673752"],["-97.7404044","30.2674011"],["-97.7404923","30.2674252"],["-97.7406585","30.2674711"],["-97.7440072","30.2684021"],["-97.7440324","30.2684103"],["-97.7441235","30.2684334"],["-97.7441618","30.2683544"],["-97.7441736","30.2683253"],["-97.7444689","30.2675101"],["-97.7420072","30.266818"],["-97.7419307","30.2667959"],["-97.7412186","30.2665982"],["-97.7408366","30.2664917"],["-97.7377296","30.2656251"],["-97.7375276","30.2655686"],["-97.736498","30.2652789"],["-97.7364507","30.2652662"],["-97.7354114","30.2649565"],["-97.7356698","30.2641962"],["-97.7357188","30.2640669"],["-97.7357275","30.2640427"],["-97.7357426","30.2640019"],["-97.7366949","30.2614307"],["-97.7368237","30.2610744"],["-97.7372174","30.2600156"],["-97.7372499","30.2598311"],["-97.737256","30.2597439"],["-97.7372442","30.2596293"],["-97.7372379","30.25953"],["-97.7372391","30.2594419"],["-97.737255","30.2593217"],["-97.7373052","30.2589911"],["-97.7373279","30.2588134"],["-97.7373354","30.2586389"],["-97.7373349","30.2584274"],["-97.7372515","30.2572612"],["-97.7371858","30.2568194"],["-97.7370782","30.2561759"],["-97.7366561","30.253883"],["-97.735342","30.2476293"],["-97.7351903","30.2469255"],["-97.7350901","30.2464424"],["-97.7350462","30.2461749"],["-97.7350237","30.2459696"],["-97.7350095","30.2457768"],["-97.735003","30.2455677"],["-97.7350121","30.2453223"],["-97.7350278","30.2450774"],["-97.7350596","30.2448429"],["-97.7350998","30.2446187"],["-97.7351647","30.2443484"],["-97.7352414","30.2441053"],["-97.7353295","30.2438593"],["-97.7354286","30.2436361"],["-97.735531","30.2434232"],["-97.7356916","30.2431378"],["-97.7365167","30.2417702"],["-97.7368752","30.2411521"],["-97.7390128","30.2376304"],["-97.7471725","30.223885"],["-97.7477209","30.2230006"],["-97.7493605","30.2200635"],["-97.7503906","30.218314"],["-97.7522268","30.2152471"],["-97.7526373","30.2145677"],["-97.7549776","30.2107291"],["-97.7560147","30.2090542"],["-97.7578462","30.2064098"],["-97.759217","30.2046887"],["-97.7613808","30.202035"],["-97.7618676","30.2014145"],["-97.7656928","30.1966554"],["-97.7663297","30.1958924"],["-97.7704271","30.1907442"],["-97.7716638","30.1891468"],["-97.772001","30.1886694"],["-97.7752636","30.1837803"],["-97.7867548","30.1662431"],["-97.7871606","30.165563"],["-97.7876576","30.1646748"],["-97.7879079","30.1641922"],["-97.7883253","30.1633492"],["-97.788598","30.1627587"],["-97.7889535","30.1619532"],["-97.7892702","30.1611289"],["-97.7895499","30.1603739"],["-97.7898696","30.1594031"],["-97.7925378","30.1503203"],["-97.7963551","30.1397057"],["-97.8054532","30.1166833"],["-97.8055556","30.1164119"],["-97.8058397","30.1157086"],["-97.8060168","30.1152584"],["-97.8062696","30.114651"],["-97.8068797","30.1131218"],["-97.8080369","30.1105551"],["-97.8084806","30.1095761"],["-97.8087813","30.1089192"],["-97.8094247","30.1074466"],["-97.8099856","30.1062361"],["-97.8108734","30.1044203"],["-97.811249","30.1036644"],["-97.8132015","30.0994821"],["-97.813561","30.0988025"],["-97.8150425","30.0956204"],["-97.8154253","30.0948449"],["-97.8163488","30.0932566"],["-97.8173463","30.091586"],["-97.8183027","30.0899595"],["-97.8191109","30.0885586"],["-97.8197684","30.0873941"],["-97.82236","30.0826404"],["-97.8466807","30.0333882"],["-97.8470789","30.032652"],["-97.8476606","30.0316708"],["-97.848246","30.0307461"],["-97.85913","30.0155062"],["-97.8598177","30.0145127"],["-97.8602706","30.0138136"],["-97.8607829","30.012979"],["-97.8690885","29.9985972"],["-97.8693938","29.9980303"],["-97.8701299","29.9965039"],["-97.8703928","29.9958932"],["-97.870651","29.9952547"],["-97.8709272","29.9945346"],["-97.8713321","29.99333"],["-97.8715127","29.9927177"],["-97.8716767","29.9921245"],["-97.8718113","29.9916062"],["-97.8719145","29.9911465"],["-97.8728925","29.9862111"],["-97.8736813","29.9819964"],["-97.8738196","29.9809742"],["-97.874827","29.9707346"],["-97.8749504","29.9695779"],["-97.8751303","29.9684423"],["-97.87524","29.967853"],["-97.8782959","29.9531162"],["-97.8785766","29.9519808"],["-97.8789243","29.9508117"],["-97.8794415","29.9493293"],["-97.8796667","29.948767"],["-97.87993","29.9481347"],["-97.8802526","29.9474091"],["-97.8806863","29.946536"],["-97.9017675","29.905699"],["-97.9020543","29.905214"],["-97.9027682","29.9040784"],["-97.903207","29.9034342"],["-97.9039266","29.902451"],["-97.9046712","29.901494"],["-97.9051815","29.9008909"],["-97.9060963","29.8998948"],["-97.9209656","29.8837582"],["-97.9217547","29.8829157"],["-97.9221051","29.8825617"],["-97.9226339","29.8820476"],["-97.9235962","29.8811666"],["-97.9241342","29.880705"],["-97.9246181","29.8803052"],["-97.9373134","29.8708967"],["-97.9387524","29.8697197"],["-97.9783459","29.83438"],["-97.9890552","29.8247338"],["-97.9894507","29.8243826"],["-98.0202073","29.796677"],["-98.0207082","29.7961822"],["-98.0232465","29.793478"],["-98.0248365","29.7917339"],["-98.0290012","29.7871999"],["-98.0294366","29.786682"],["-98.0297741","29.7862343"],["-98.0404765","29.7716442"],["-98.0414822","29.770271"],["-98.0418716","29.7697342"],["-98.0420478","29.7694927"],["-98.0422927","29.7691433"],["-98.0585833","29.7461392"],["-98.0588523","29.7458095"],["-98.0591303","29.7454862"],["-98.0595855","29.7449872"],["-98.0599185","29.7446609"],["-98.060425","29.7441923"],["-98.0621489","29.7427183"],["-98.0625943","29.742326"],["-98.0805888","29.7270531"],["-98.0819609","29.7258906"],["-98.0831208","29.7248899"],["-98.0834523","29.7245757"],["-98.0838015","29.7242277"],["-98.0846277","29.7233792"],["-98.0851562","29.7227536"],["-98.0854149","29.7224255"],["-98.0857171","29.7220196"],["-98.0860574","29.7215407"],["-98.0863199","29.7211482"],["-98.0868258","29.7203066"],["-98.0873291","29.7193781"],["-98.0877058","29.7185502"],["-98.0880619","29.7176812"],["-98.0882193","29.717226"],["-98.0884041","29.7166629"],["-98.0885575","29.716131"],["-98.0886449","29.7157835"],["-98.0887548","29.7153039"],["-98.0893891","29.712058"],["-98.0895636","29.7111054"],["-98.0902612","29.7074268"],["-98.0903852","29.7068627"],["-98.0904916","29.7064657"],["-98.0906311","29.7059826"],["-98.0908034","29.7054723"],["-98.090981","29.7050028"],["-98.0911731","29.7045445"],["-98.0914241","29.7040052"],["-98.0916929","29.7034736"],["-98.09192","29.7030513"],["-98.0921783","29.7026235"],["-98.092495","29.7021362"],["-98.0930464","29.7013629"],["-98.0932711","29.7010724"],["-98.0936948","29.7005731"],["-98.0941565","29.7000496"],["-98.0943524","29.6998467"],["-98.0945947","29.6996101"],["-98.0949083","29.6993082"],["-98.0951971","29.6990448"],["-98.0955357","29.6987521"],["-98.0962743","29.6981622"],["-98.0966628","29.6978799"],["-98.0970953","29.6975829"],["-98.0974845","29.697332"],["-98.0979399","29.6970528"],["-98.0987478","29.6966077"],["-98.0992021","29.6963798"],["-98.0996417","29.6961745"],["-98.1001596","29.6959505"],["-98.1025331","29.6950052"],["-98.1041354","29.6943765"],["-98.1048786","29.6940515"],["-98.1148706","29.690045"],["-98.1162913","29.6894731"],["-98.1217097","29.6872845"],["-98.1227104","29.6869074"],["-98.1240029","29.6864939"],["-98.1245518","29.6863441"],["-98.1256239","29.6860831"],["-98.1266721","29.6858911"],["-98.1366049","29.6841574"],["-98.1378051","29.683957"],["-98.1396628","29.6835944"],["-98.1404013","29.6834316"],["-98.1410083","29.6832555"],["-98.1412494","29.6831772"],["-98.1416128","29.6830435"],["-98.1426115","29.6826401"],["-98.1433743","29.6822272"],["-98.1439061","29.681925"],["-98.1442208","29.6817255"],["-98.1542566","29.6746621"],["-98.1604411","29.6702095"],["-98.1689559","29.6639099"],["-98.1693484","29.6636505"],["-98.1697359","29.6634091"],["-98.1701208","29.6631916"],["-98.1705104","29.6629844"],["-98.1709112","29.6627957"],["-98.181701","29.6582848"],["-98.1822559","29.6580432"],["-98.1826091","29.6578671"],["-98.1829231","29.6577023"],["-98.1833363","29.6574743"],["-98.1837666","29.6571995"],["-98.1867817","29.6550795"],["-98.2081869","29.6418327"],["-98.2088615","29.6414469"],["-98.2584062","29.6161702"],["-98.2587468","29.6159808"],["-98.2591283","29.615758"],["-98.2594991","29.6155293"],["-98.2598683","29.615289"],["-98.2602953","29.614998"],["-98.2605252","29.614833"],["-98.2611985","29.6143091"],["-98.2660902","29.6101634"],["-98.2669839","29.6093755"],["-98.2751793","29.6014673"],["-98.275507","29.6011785"],["-98.2759348","29.6008148"],["-98.2763382","29.6004951"],["-98.276976","29.6000231"],["-98.2778571","29.5994466"],["-98.2782322","29.5992204"],["-98.2787039","29.5989601"],["-98.2866466","29.5949338"],["-98.2879155","29.5942979"],["-98.299933","29.588207"],["-98.3003351","29.5879912"],["-98.3006446","29.5878124"],["-98.301077","29.5875372"],["-98.3052665","29.5846776"],["-98.3078166","29.5829281"],["-98.3080589","29.5827717"],["-98.3088703","29.5822881"],["-98.3091351","29.582145"],["-98.3096093","29.5819156"],["-98.3098702","29.5817945"],["-98.3103628","29.5815917"],["-98.3192291","29.5784498"],["-98.3198869","29.5782021"],["-98.3205607","29.5779175"],["-98.3210822","29.5776779"],["-98.3219787","29.5772156"],["-98.322482","29.5769322"],["-98.322939","29.5766515"],["-98.3234201","29.5763307"],["-98.3239262","29.5759807"],["-98.3244007","29.5756226"],["-98.3248396","29.5752685"],["-98.3282829","29.5723187"],["-98.3291234","29.5715935"],["-98.3403119","29.5619212"],["-98.3412613","29.5611118"],["-98.3423169","29.5601991"],["-98.3465358","29.5565768"],["-98.3472943","29.5559852"],["-98.3479348","29.5555378"],["-98.3487605","29.5550048"],["-98.3498022","29.554437"],["-98.3511923","29.5537774"],["-98.3519108","29.5534512"],["-98.3524921","29.5532094"],["-98.3529497","29.5530352"],["-98.3534707","29.5528544"],["-98.3546968","29.5524877"],["-98.356192","29.5520491"],["-98.3581497","29.5514751"],["-98.3587975","29.5512475"],["-98.3594982","29.5509655"],["-98.3602267","29.5506481"],["-98.361015","29.5502576"],["-98.3620671","29.5496781"],["-98.3742429","29.5428148"],["-98.3743837","29.542737"],["-98.3838771","29.5373662"],["-98.3844776","29.5370314"],["-98.3855094","29.5364504"],["-98.3860057","29.5361529"],["-98.387004","29.5354924"],["-98.3877037","29.5349681"],["-98.3879868","29.5347385"],["-98.3886586","29.5341525"],["-98.3889385","29.5338905"],["-98.3892386","29.5335921"],["-98.3898785","29.5329142"],["-98.3901203","29.5326304"],["-98.3904377","29.5322442"],["-98.3907434","29.5318418"],["-98.3910804","29.5313721"],["-98.3913867","29.530908"],["-98.3916774","29.5304263"],["-98.3919573","29.5299332"],["-98.3923853","29.5290745"],["-98.3925365","29.5287243"],["-98.3926785","29.5283778"],["-98.3928005","29.5280582"],["-98.393057","29.5272961"],["-98.3953173","29.5194995"],["-98.3954481","29.5191339"],["-98.3955868","29.5187904"],["-98.3957845","29.5183548"],["-98.3959975","29.5179061"],["-98.3963701","29.5170702"],["-98.3965709","29.516487"],["-98.3966479","29.5162042"],["-98.3967173","29.5159221"],["-98.3969859","29.5146218"],["-98.3971574","29.5137316"],["-98.3979094","29.5100736"],["-98.3979918","29.5097135"],["-98.398121","29.5091213"],["-98.3984502","29.5076053"],["-98.4003591","29.4983246"],["-98.4008143","29.4961429"],["-98.4011403","29.4945281"],["-98.4025099","29.4879156"],["-98.4029111","29.4860615"],["-98.4031796","29.4847411"],["-98.4037099","29.4819924"],["-98.4038692","29.4811195"],["-98.4040382","29.4803074"],["-98.4041381","29.4797704"],["-98.4042051","29.4793264"],["-98.4042779","29.4786366"],["-98.4043013","29.4782933"],["-98.4043214","29.4777659"],["-98.4043638","29.4755815"],["-98.4043762","29.4751781"],["-98.4043961","29.4749633"],["-98.4044303","29.4747013"],["-98.4044755","29.4744229"],["-98.404539","29.4741199"],["-98.4045985","29.4738838"],["-98.4046536","29.4736848"],["-98.4047216","29.4734697"],["-98.4048127","29.4732189"],["-98.4049757","29.4728199"],["-98.4062232","29.4703018"],["-98.4064126","29.4699128"],["-98.4096309","29.4635055"],["-98.4122362","29.4583391"],["-98.4129266","29.4569825"],["-98.4131399","29.4566137"],["-98.4133944","29.4562178"],["-98.4136524","29.4558485"],["-98.4138735","29.4555639"],["-98.4140907","29.4553022"],["-98.4143223","29.4550373"],["-98.4145727","29.4547734"],["-98.4149406","29.4544149"],["-98.4151986","29.4541791"],["-98.4156201","29.4538292"],["-98.4159043","29.4536103"],["-98.4162632","29.4533539"],["-98.4165578","29.4531569"],["-98.416878","29.452957"],["-98.4171923","29.4527763"],["-98.4176874","29.4525124"],["-98.4179698","29.4523742"],["-98.4184125","29.4521741"],["-98.4241543","29.449704"],["-98.4248778","29.4493697"],["-98.4384287","29.4417769"],["-98.4388879","29.4415283"],["-98.4393502","29.4412902"],["-98.4397433","29.4411"],["-98.4401496","29.4409125"],["-98.4408946","29.4406071"],["-98.4412041","29.4404903"],["-98.4426968","29.4400052"],["-98.4431488","29.439887"],["-98.4436726","29.4397588"],["-98.4441043","29.439664"],["-98.4445478","29.4395788"],["-98.4449958","29.4395039"],["-98.4455834","29.4394227"],["-98.4460892","29.4393654"],["-98.4465768","29.4393164"],["-98.4471977","29.4392781"],["-98.4477645","29.4392537"],["-98.4493299","29.4392687"],["-98.4507969","29.4392648"],["-98.4524295","29.4392779"],["-98.4531982","29.4392606"],["-98.4542463","29.4392023"],["-98.4546857","29.439162"],["-98.4555404","29.4390549"],["-98.4585998","29.4386579"],["-98.4590032","29.4386222"],["-98.4595971","29.4385892"],["-98.4601794","29.438572"],["-98.4620624","29.4385567"],["-98.4660516","29.4385644"],["-98.4712256","29.4385358"],["-98.4731324","29.4385018"],["-98.4737016","29.4384866"],["-98.4742742","29.4384838"],["-98.4747702","29.4384992"],["-98.4751356","29.4385131"],["-98.475521","29.4385395"],["-98.475996","29.4385867"],["-98.4767129","29.4386713"],["-98.479609","29.4391989"],["-98.4802706","29.4393366"],["-98.4807048","29.4394426"],["-98.4811798","29.4395767"],["-98.4817556","29.439768"],["-98.4819522","29.4398785"],["-98.4825684","29.4400919"],["-98.4828705","29.4402288"],["-98.4831332","29.4403115"],["-98.4833759","29.4403754"],["-98.4835778","29.4404237"],["-98.4837752","29.4404596"],["-98.4839617","29.4404851"],["-98.484173","29.4405042"],["-98.4843933","29.4405183"],["-98.4845839","29.4405228"],["-98.4850448","29.4405179"],["-98.4852353","29.4405107"],["-98.485418","29.4404989"],["-98.4855796","29.4404826"],["-98.4857529","29.4404573"],["-98.4859548","29.4404206"],["-98.4861682","29.4403738"],["-98.4864398","29.4402912"],["-98.4866536","29.4402177"],["-98.4868057","29.4401511"],["-98.4869572","29.4400744"],["-98.4871317","29.4399778"],["-98.4873445","29.4398565"],["-98.4878094","29.4395483"],["-98.488809","29.4388947"],["-98.4929065","29.4365104"],["-98.4931674","29.4363844"],["-98.4934418","29.4362658"],["-98.4937417","29.4361525"],["-98.4945078","29.4358862"],["-98.4947506","29.4357927"],["-98.4950048","29.435683"],["-98.4952659","29.4355589"],["-98.4954894","29.4354443"],["-98.4960097","29.435152"],["-98.496644","29.4348048"],["-98.4973944","29.4344009"],["-98.4977958","29.4341456"],["-98.4981372","29.4339226"],["-98.498415","29.4337309"],["-98.4986298","29.4335855"],["-98.4988971","29.4334004"],["-98.4990851","29.4332484"],["-98.4992305","29.4331167"],["-98.4993757","29.4329747"],["-98.4998188","29.4324905"],["-98.4999105","29.4323838"],["-98.5","29.4322738"],["-98.5000773","29.4321637"],["-98.5001493","29.4320517"],["-98.5002316","29.4319105"],["-98.5004651","29.4314811"],["-98.5008129","29.4308545"],["-98.5009404","29.4305797"],["-98.5009797","29.4304563"],["-98.5009847","29.4303822"],["-98.5009712","29.4300333"],["-98.500987","29.4299623"],["-98.500957","29.4297403"],["-98.499697","29.4296027"],["-98.4969638","29.4293871"],["-98.4968026","29.4294291"],["-98.4963425","29.4294085"],["-98.4962623","29.4294036"],["-98.4956187","29.429369"],["-98.4953989","29.4292984"],["-98.4953507","29.4292749"],["-98.4953157","29.4292353"],["-98.4952932","29.4291671"],["-98.495256","29.4288933"],["-98.4952309","29.4288193"],["-98.4951695","29.4287519"],["-98.4950926","29.4286793"],["-98.4950024","29.4286165"],["-98.4949159","29.4285628"],["-98.494819","29.4285158"],["-98.4947224","29.4284827"],["-98.4946196","29.4284609"],["-98.4945255","29.4284559"],["-98.494429","29.4284486"],["-98.4944157","29.4282363"],["-98.494421","29.4280793"],["-98.4944477","29.4276372"],["-98.4946431","29.4244102"],["-98.4946514","29.4242229"],["-98.4946332","29.4240998"],["-98.4942693","29.4240802"],["-98.4940891","29.4240767"],["-98.4939941","29.4240835"],["-98.4938223","29.4241172"],["-98.4933309","29.4242472"],["-98.4932108","29.4242723"],["-98.493122","29.4242792"],["-98.4930515","29.4242764"],["-98.4929141","29.4242563"],["-98.4918748","29.4240394"],["-98.4916596","29.4239864"],["-98.4905696","29.4236436"],["-98.4893299","29.4233131"],["-98.4880389","29.4230402"],["-98.4879206","29.4230153"],["-98.4874821","29.4229228"],["-98.4873864","29.4228989"],["-98.480984","29.4213731"],["-98.4809012","29.4210171"],["-98.4808647","29.420686"],["-98.4808489","29.4202984"],["-98.4808584","29.4196909"],["-98.4809613","29.4190338"],["-98.4809922","29.4187692"],["-98.480927","29.418461"],["-98.480878","29.4183364"],["-98.4808188","29.4181174"],["-98.4807023","29.4174793"],["-98.4804984","29.4152943"],["-98.4804535","29.4130921"],["-98.4804209","29.4127418"],["-98.4803684","29.4124147"],["-98.4802529","29.4119012"],["-98.4801392","29.4114122"],["-98.4799739","29.4106743"],["-98.4798691","29.4100948"],["-98.4798328","29.4096948"],["-98.4798186","29.4091363"],["-98.4798706","29.4087131"],["-98.4799513","29.4082391"],["-98.4801697","29.4072973"],["-98.4809302","29.4041373"],["-98.4810773","29.4029699"],["-98.4810858","29.4027091"],["-98.4810724","29.40246"],["-98.4810417","29.4021632"],["-98.4809965","29.4018317"],["-98.4809218","29.4014514"],["-98.4808256","29.4010774"],["-98.4806737","29.4005894"],["-98.4802899","29.3994921"],["-98.4800436","29.3986949"],["-98.4799359","29.3982289"],["-98.4798558","29.397773"],["-98.4798242","29.3974408"],["-98.4797873","29.3970617"],["-98.4796557","29.3965494"],["-98.4795337","29.3962196"],["-98.4794493","29.3960873"],["-98.4792364","29.3958055"],["-98.4790869","29.395669"],["-98.4788272","29.3954821"],["-98.478677","29.3953877"],["-98.4784872","29.3952849"],["-98.4781701","29.3951398"],["-98.4779321","29.3950349"],["-98.4777792","29.3949891"],["-98.477618","29.3949446"],["-98.4774714","29.3949151"],["-98.4772712","29.3948931"],["-98.4770563","29.3949093"],["-98.4767836","29.3949462"],["-98.4766018","29.3950004"],["-98.4764627","29.3950601"],["-98.4763315","29.3951196"],["-98.4760597","29.3953221"],["-98.4758371","29.3955792"],["-98.4757099","29.3957978"],["-98.4754988","29.396337"],["-98.4753449","29.3966808"],["-98.4751932","29.3969553"],["-98.4750262","29.3972342"],["-98.4748147","29.3975185"],["-98.4744195","29.3979786"],["-98.4740676","29.3983794"],["-98.4737178","29.398779"],["-98.4731559","29.399312"],["-98.4725747","29.399765"],["-98.4721326","29.4000727"],["-98.4717587","29.4002974"],["-98.4714206","29.400475"],["-98.4706863","29.4008132"],["-98.4700774","29.4010543"],["-98.4698798","29.4011185"],["-98.4692628","29.4012892"],["-98.468538","29.401414"],["-98.4681794","29.4014651"],["-98.4678417","29.4014956"],["-98.4670769","29.4015185"],["-98.4493903","29.4015363"],["-98.4484238","29.4015502"],["-98.4480579","29.401575"],["-98.4477353","29.4016029"],["-98.4474884","29.4016322"],["-98.4472692","29.4016671"],["-98.4469875","29.4017149"],["-98.4465839","29.4017952"],["-98.4461901","29.4018856"],["-98.445421","29.402132"],["-98.4450128","29.4022938"],["-98.4446939","29.4024269"],["-98.4440427","29.4027442"],["-98.4435245","29.4030403"],["-98.4430525","29.4033515"],["-98.4424023","29.4038718"],["-98.4415654","29.4045705"],["-98.4408309","29.4052161"],["-98.4396644","29.4062131"],["-98.4388992","29.4068868"],["-98.4377802","29.4078397"],["-98.4362326","29.4091676"],["-98.4348366","29.4103573"],["-98.4340309","29.4110601"],["-98.4332299","29.4117372"],["-98.4281877","29.4160259"],["-98.4277305","29.4164467"],["-98.4270818","29.4171456"],["-98.4263263","29.4180402"],["-98.4260862","29.4183422"],["-98.4258665","29.4186191"],["-98.4232441","29.4222845"],["-98.4228925","29.4227848"],["-98.422533","29.423308"],["-98.422038","29.4239725"],["-98.4217956","29.424257"],["-98.4214266","29.4246416"],["-98.4210718","29.4249962"],["-98.4205653","29.4254832"],["-98.4200865","29.4258869"],["-98.419447","29.4263998"],["-98.4187665","29.4269002"],["-98.4181328","29.4273358"],["-98.4165547","29.4282144"],["-98.4154714","29.4286838"],["-98.4146747","29.4289955"],["-98.4138878","29.4292733"],["-98.4091675","29.4306888"],["-98.4074456","29.4311371"],["-98.4009706","29.4326875"],["-98.396734","29.4337114"],["-98.3946063","29.434274"],["-98.3790422","29.4391805"],["-98.3505807","29.4482741"],["-98.3333903","29.4536679"],["-98.3193269","29.4580553"],["-98.3181582","29.4584022"],["-98.2968476","29.4640299"],["-98.2949371","29.4645712"],["-98.2885557","29.466259"],["-98.2832899","29.4679543"],["-98.2569883","29.4764787"],["-98.1979071","29.4965994"],["-98.1129564","29.528692"],["-98.1112404","29.5292221"],["-98.0868575","29.5356804"],["-98.0454905","29.5491626"],["-98.0443659","29.5496594"],["-98.0431625","29.5502808"],["-98.0427936","29.5504898"],["-98.04246","29.5506879"],["-98.0417097","29.5511906"],["-98.0410837","29.5516384"],["-98.0399231","29.5526078"],["-98.0394008","29.55309"],["-98.0386928","29.553823"],["-98.0332972","29.559757"],["-98.0327526","29.5603173"],["-98.0323213","29.5607381"],["-98.0317576","29.5612337"],["-98.0311969","29.5616913"],["-98.0306759","29.5620783"],["-98.0300185","29.5625274"],["-98.0183635","29.5695242"],["-98.0093278","29.5743783"],["-98.0018573","29.5783969"],["-98.0013277","29.5786924"],["-98.000831","29.5789951"],["-98.0000462","29.5795155"],["-97.9990125","29.5802021"],["-97.9975705","29.5811932"],["-97.9754397","29.5963102"],["-97.9743338","29.5970304"],["-97.9733045","29.5976039"],["-97.9724531","29.5979896"],["-97.9717907","29.5982496"],["-97.9712503","29.5984299"],["-97.9707049","29.5985927"],["-97.9700117","29.598774"],["-97.969447","29.5988947"],["-97.9689258","29.5989898"],["-97.9682611","29.5990883"],["-97.967674","29.5991413"],["-97.9670771","29.5991758"],["-97.966374","29.5992012"],["-97.9190055","29.5993119"],["-97.9170689","29.599354"],["-97.9163386","29.5994038"],["-97.9153665","29.5995249"],["-97.9130113","29.6000553"],["-97.8855667","29.6063767"],["-97.8588452","29.6125434"],["-97.8525072","29.6139892"],["-97.8509597","29.6142912"],["-97.8501136","29.6144223"],["-97.8494751","29.6144918"],["-97.8488724","29.6145368"],["-97.8477507","29.6145692"],["-97.8077275","29.6149025"],["-97.8065719","29.6149277"],["-97.8058724","29.6149764"],["-97.8054443","29.6150235"],["-97.8042933","29.6151816"],["-97.8038335","29.615264"],["-97.8032486","29.6153855"],["-97.8023304","29.6156157"],["-97.7549881","29.6293544"],["-97.7497607","29.6307367"],["-97.6836309","29.6485975"],["-97.6800908","29.6495518"],["-97.6743729","29.6510942"],["-97.6736848","29.6512526"],["-97.6731791","29.651356"],["-97.6723161","29.6514961"],["-97.6718546","29.6515642"],["-97.6713567","29.6516135"],["-97.6706678","29.6516604"],["-97.6698683","29.6516966"],["-97.6692453","29.6517002"],["-97.6688175","29.6516899"],["-97.6679285","29.6516424"],["-97.6207313","29.6482387"],["-97.6201338","29.6482127"],["-97.6194894","29.6482056"],["-97.6188642","29.6482199"],["-97.6182329","29.6482499"],["-97.6176244","29.6482975"],["-97.6169954","29.6483653"],["-97.6123608","29.6491017"],["-97.5830886","29.6538689"],["-97.5818207","29.6540599"],["-97.5809472","29.6541263"],["-97.5803773","29.6541577"],["-97.5797258","29.654176"],["-97.5730346","29.6539865"],["-97.4923944","29.6494393"],["-97.4883356","29.6492317"],["-97.4876718","29.6492422"],["-97.4869438","29.6492894"],["-97.4854533","29.6494468"],["-97.4506543","29.6544147"],["-97.4048528","29.6594847"],["-97.3865644","29.6621011"],["-97.3016073","29.6691994"],["-97.2977322","29.6695148"],["-97.2965185","29.6696778"],["-97.2953903","29.6699116"],["-97.2941574","29.6702929"],["-97.2908487","29.6718222"],["-97.2676564","29.6829958"],["-97.2650921","29.6842181"],["-97.263035","29.6850803"],["-97.2476067","29.6904917"],["-97.2446105","29.6915043"],["-97.2431802","29.6918759"],["-97.2416552","29.6921463"],["-97.2395844","29.6923327"],["-97.1665879","29.6917044"],["-97.1645554","29.6917385"],["-97.163299","29.691837"],["-97.1621015","29.6920089"],["-97.1600075","29.6924736"],["-97.1486522","29.6951472"],["-97.1453397","29.6956489"],["-97.1407613","29.6961939"],["-97.1369887","29.6963405"],["-97.1221205","29.6962775"],["-97.0570547","29.6977901"],["-97.0526287","29.6975417"],["-97.0393008","29.6965993"],["-97.0290222","29.6951153"],["-97.0119852","29.6922042"],["-97.0069138","29.6915043"],["-96.9844361","29.6911043"],["-96.9789086","29.6909637"],["-96.9735786","29.6904218"],["-96.9610018","29.68908"],["-96.9571646","29.6886822"],["-96.9557254","29.6886304"],["-96.9549864","29.6886399"],["-96.9204766","29.690668"],["-96.9169007","29.6911146"],["-96.8895077","29.6953184"],["-96.8859181","29.6957995"],["-96.8730785","29.6960785"],["-96.8574514","29.696322"],["-96.855413","29.6962204"],["-96.8547168","29.6961114"],["-96.8538841","29.6959303"],["-96.8530939","29.6957044"],["-96.8519539","29.6952922"],["-96.8346658","29.6884625"],["-96.8337421","29.6881643"],["-96.8328393","29.6879545"],["-96.8316203","29.6878068"],["-96.8299121","29.6878474"],["-96.7671103","29.6920267"],["-96.7370205","29.6922356"],["-96.7322864","29.6922239"],["-96.7301143","29.6919824"],["-96.7043728","29.6884799"],["-96.7029398","29.6883224"],["-96.7012078","29.6882499"],["-96.6953485","29.6885529"],["-96.6230611","29.6929543"],["-96.560822","29.6935573"],["-96.5600848","29.6935483"],["-96.5590035","29.6934966"],["-96.5585121","29.6934586"],["-96.5445586","29.6918198"],["-96.5441714","29.6917908"],["-96.5437387","29.6917721"],["-96.5434544","29.6917711"],["-96.5431857","29.6917804"],["-96.5429485","29.6917943"],["-96.5426766","29.691816"],["-96.5423933","29.6918453"],["-96.5421137","29.6918793"],["-96.5417674","29.6919316"],["-96.5414604","29.6919898"],["-96.541101","29.6920689"],["-96.5407664","29.6921484"],["-96.5403673","29.6922654"],["-96.5365213","29.693451"],["-96.5360448","29.6936208"],["-96.5357943","29.6937214"],["-96.5355469","29.6938298"],["-96.5353158","29.6939456"],["-96.5350845","29.6940674"],["-96.5348872","29.6941813"],["-96.5346801","29.6943158"],["-96.5342037","29.6946553"],["-96.5308188","29.6971518"],["-96.5294393","29.6981563"],["-96.5289091","29.6985119"],["-96.528229","29.6988855"],["-96.5277676","29.6990759"],["-96.5200894","29.7019629"],["-96.5191229","29.7023139"],["-96.5177327","29.702749"],["-96.5139721","29.7038521"],["-96.5129197","29.7042392"],["-96.5119391","29.7047677"],["-96.5064254","29.7082432"],["-96.5052172","29.7089723"],["-96.5047059","29.7092211"],["-96.5042008","29.7094302"],["-96.5026466","29.7098496"],["-96.4955355","29.7116268"],["-96.4939401","29.7119995"],["-96.4910318","29.7124589"],["-96.4819626","29.7137776"],["-96.4776295","29.7144189"],["-96.4590048","29.7169336"],["-96.4398936","29.7192362"],["-96.2883042","29.7499087"],["-96.2855807","29.7504137"],["-96.2813973","29.7509872"],["-96.2578691","29.7538091"],["-96.2276393","29.7574369"],["-96.1960629","29.7627717"],["-96.1910373","29.7635859"],["-96.1895051","29.7636629"],["-96.1885491","29.7636058"],["-96.1871878","29.76341"],["-96.1859728","29.7630908"],["-96.1782301","29.7607968"],["-96.1760485","29.7601932"],["-96.1749852","29.7599829"],["-96.173919","29.7598212"],["-96.1724029","29.7597035"],["-96.1711896","29.7596859"],["-96.1702232","29.7597185"],["-96.169355","29.7597759"],["-96.1680409","29.7599527"],["-96.1667924","29.7602153"],["-96.1651732","29.760639"],["-96.142926","29.7673897"],["-96.1416005","29.7678767"],["-96.1407906","29.7682714"],["-96.1397969","29.768833"],["-96.1382709","29.7700239"],["-96.1362017","29.7716666"],["-96.1353","29.7723558"],["-96.1345433","29.7728461"],["-96.1340616","29.7731044"],["-96.133386","29.7734424"],["-96.1320861","29.773929"],["-96.1314969","29.7741093"],["-96.1286788","29.774747"],["-96.1268485","29.7750724"],["-96.1253564","29.7752825"],["-96.1237205","29.7754428"],["-96.120733","29.7755757"],["-96.1174604","29.7757366"],["-96.1109857","29.7760681"],["-96.1007996","29.7763544"],["-96.0996966","29.7763312"],["-96.0988638","29.7762677"],["-96.0971702","29.7760777"],["-96.0884826","29.7750131"],["-96.0831594","29.7743296"],["-96.0807053","29.773958"],["-96.0693439","29.7725796"],["-96.0677917","29.7724153"],["-96.0449374","29.7697698"],["-96.044394","29.7697296"],["-96.043743","29.7697062"],["-96.0432053","29.7697004"],["-96.0422913","29.7697363"],["-96.0417713","29.7697937"],["-96.0406514","29.7699801"],["-96.0389435","29.7703169"],["-96.0334232","29.7716655"],["-96.0259604","29.7734122"],["-96.0256146","29.7734973"],["-96.0232908","29.7740515"],["-95.995835","29.780748"],["-95.9917367","29.7814388"],["-95.9905884","29.7815157"],["-95.9896706","29.781567"],["-95.9872184","29.7815716"],["-95.985233","29.7814409"],["-95.9837643","29.7812702"],["-95.9827432","29.7811146"],["-95.9818344","29.7809495"],["-95.9808831","29.780734"],["-95.9796927","29.7804187"],["-95.977313","29.7797637"],["-95.9756605","29.7793407"],["-95.9751709","29.7792314"],["-95.974139","29.7790663"],["-95.9732452","29.7789347"],["-95.9723574","29.7788197"],["-95.9709412","29.7786851"],["-95.9704599","29.7786531"],["-95.9692289","29.7786355"],["-95.9412132","29.7788407"],["-95.9385956","29.778872"],["-95.9379079","29.77888"],["-95.9375329","29.7788687"],["-95.9371315","29.7788441"],["-95.93668","29.7788091"],["-95.9325546","29.7782833"],["-95.9247788","29.7772852"],["-95.9237135","29.7771789"],["-95.9234028","29.7771596"],["-95.9226256","29.7771328"],["-95.8546118","29.7772612"],["-95.8506919","29.7771032"],["-95.8491326","29.7771038"],["-95.8268079","29.7773317"],["-95.825366","29.7773438"],["-95.819442","29.7774028"],["-95.8191398","29.7774207"],["-95.8188435","29.7774472"],["-95.818535","29.7774857"],["-95.8182731","29.7775251"],["-95.817744","29.7776204"],["-95.8175047","29.7776771"],["-95.8170012","29.7778116"],["-95.8167617","29.7778841"],["-95.8164856","29.7779781"],["-95.8162385","29.778068"],["-95.8159743","29.7781766"],["-95.8156831","29.7783044"],["-95.8153543","29.778461"],["-95.8151131","29.7785862"],["-95.8148901","29.7787107"],["-95.8146427","29.7788612"],["-95.814411","29.7790108"],["-95.8141505","29.7791877"],["-95.8139341","29.7793464"],["-95.8137526","29.7794847"],["-95.8135632","29.7796448"],["-95.8133414","29.7798396"],["-95.8125245","29.7806011"],["-95.8118941","29.7811738"],["-95.8095519","29.7833423"],["-95.8092952","29.7835635"],["-95.8090181","29.7837744"],["-95.8086167","29.7840356"],["-95.8082104","29.7842832"],["-95.807896","29.7844448"],["-95.8076324","29.7845694"],["-95.8073246","29.7846965"],["-95.8069693","29.7848293"],["-95.8066638","29.7849258"],["-95.8063884","29.785001"],["-95.8061415","29.7850575"],["-95.8058927","29.7851075"],["-95.8053806","29.7851867"],["-95.8051038","29.7852165"],["-95.8047069","29.7852379"],["-95.800428","29.7852421"],["-95.758534","29.7851723"],["-95.7445596","29.7850705"],["-95.7382117","29.7851033"],["-95.7220641","29.7849304"],["-95.7084121","29.7849624"],["-95.6465859","29.784593"],["-95.617394","29.7846054"],["-95.6169303","29.7846051"],["-95.6153824","29.7845983"],["-95.5505856","29.7842174"],["-95.5166044","29.7841285"],["-95.5056275","29.7842634"],["-95.5003225","29.7841958"],["-95.4970082","29.7840283"],["-95.4934399","29.7839706"],["-95.4878287","29.7838849"],["-95.4840714","29.7836994"],["-95.4808691","29.7835154"],["-95.4785863","29.7834237"],["-95.4779063","29.7834567"],["-95.4762223","29.783491"],["-95.4752916","29.7835137"],["-95.4700922","29.7838656"],["-95.4688595","29.7839098"],["-95.467328","29.7839475"],["-95.4626077","29.7839254"],["-95.4619562","29.7838929"],["-95.4614014","29.7838431"],["-95.4601041","29.7836959"],["-95.4596959","29.7836376"],["-95.4593808","29.7835722"],["-95.4590211","29.7834729"],["-95.4587055","29.7833657"],["-95.4583823","29.783237"],["-95.4581052","29.7831148"],["-95.4578947","29.7830122"],["-95.4576678","29.7828847"],["-95.4573102","29.7826663"],["-95.4537144","29.7802088"],["-95.4532415","29.7799027"],["-95.4526264","29.7795804"],["-95.4519147","29.77925"],["-95.4514709","29.7790784"],["-95.4508942","29.7789274"],["-95.450304","29.7788634"],["-95.4478313","29.7788076"],["-95.4469608","29.7788397"],["-95.4462137","29.7788328"],["-95.4446789","29.77883"],["-95.4430825","29.7788218"],["-95.4418212","29.7787748"],["-95.4286211","29.7773688"],["-95.427649","29.7772736"],["-95.4266244","29.7772105"],["-95.4248196","29.777222"],["-95.4092357","29.7774047"],["-95.408377","29.7773871"],["-95.4074743","29.7773188"],["-95.4068202","29.7772414"],["-95.4062105","29.7771454"],["-95.4057207","29.7769542"],["-95.4052304","29.7768251"],["-95.4047892","29.7767149"],["-95.4044573","29.7766407"],["-95.4041753","29.7765749"],["-95.4038234","29.7764715"],["-95.4032484","29.7763732"],["-95.4025107","29.7762711"],["-95.4017551","29.7761843"],["-95.4011085","29.7761382"],["-95.4006122","29.7761194"],["-95.3990003","29.7761401"],["-95.3988054","29.7761474"],["-95.3987068","29.7761469"],["-95.3977004","29.776164"],["-95.3976236","29.7761655"],["-95.3975638","29.7761617"],["-95.3975554","29.7748364"],["-95.3974444","29.7703621"],["-95.3973903","29.7699536"],["-95.3973514","29.7697458"],["-95.397314","29.7695136"],["-95.3972914","29.7693545"],["-95.397244","29.7689748"],["-95.3972249","29.7687478"],["-95.3972191","29.7686022"],["-95.3971978","29.7675899"],["-95.3972176","29.7673414"],["-95.3972557","29.7671064"],["-95.3973026","29.766925"],["-95.3973606","29.7667405"],["-95.3974291","29.7665682"],["-95.3975446","29.7663216"],["-95.3976443","29.7661455"],["-95.3978229","29.7659037"],["-95.3980564","29.765614"],["-95.3982729","29.7653661"],["-95.3984258","29.7651179"],["-95.3987452","29.764542"],["-95.3989122","29.764219"],["-95.3989548","29.7641065"],["-95.3989958","29.7639796"],["-95.3990325","29.7638309"],["-95.3990538","29.7637112"],["-95.399066","29.7635875"],["-95.3990708","29.7634285"],["-95.39912","29.7631754"],["-95.3991369","29.7629357"],["-95.3991556","29.7628453"],["-95.3991961","29.7627659"],["-95.3992527","29.7626936"],["-95.3993352","29.7626229"],["-95.3994377","29.7625714"],["-95.3995549","29.7625404"],["-95.3996687","29.762538"],["-95.3997936","29.7625593"],["-95.399904","29.7626021"],["-95.3999898","29.7626651"],["-95.4000484","29.762725"],["-95.4000984","29.7628018"],["-95.400126","29.762881"],["-95.4001368","29.7629787"],["-95.4001265","29.7630696"],["-95.4001012","29.7631523"],["-95.4000589","29.7632227"],["-95.4000108","29.7632733"],["-95.3998829","29.7633712"],["-95.399638","29.7635545"],["-95.3992748","29.7637209"],["-95.3990353","29.7638141"],["-95.398621","29.7639536"],["-95.398323","29.7640332"],["-95.3980052","29.7640941"],["-95.3977236","29.7641326"],["-95.3974362","29.7641526"],["-95.3971716","29.764153"],["-95.3968986","29.7641447"],["-95.3966167","29.764118"],["-95.3963277","29.764075"],["-95.3956204","29.7639238"],["-95.3944514","29.7636559"],["-95.3938964","29.7635165"],["-95.3928703","29.7632102"],["-95.392617","29.7631525"],["-95.392297","29.7630895"],["-95.3920147","29.763046"],["-95.3917327","29.7630136"],["-95.3911564","29.7629773"],["-95.390895","29.7629558"],["-95.3906456","29.7629234"],["-95.3903921","29.7628741"],["-95.3900956","29.7627911"],["-95.3892792","29.7625008"],["-95.3889157","29.7623818"],["-95.3885553","29.7622797"],["-95.3881858","29.7621887"],["-95.3877275","29.7620888"],["-95.3873168","29.7620228"],["-95.3869006","29.7619667"],["-95.3864824","29.7619304"],["-95.3860892","29.7619127"],["-95.3855917","29.7619164"],["-95.3850573","29.7619376"],["-95.3835708","29.7620604"],["-95.3832642","29.7620985"],["-95.3830293","29.7621443"],["-95.3827931","29.7622017"],["-95.3825188","29.7622835"],["-95.3802687","29.7630931"],["-95.3798949","29.7632056"],["-95.3792116","29.7633524"],["-95.3786243","29.7634534"],["-95.3776985","29.7635521"],["-95.3763584","29.7636265"],["-95.375116","29.7636493"],["-95.3741679","29.7635461"],["-95.3735274","29.7635539"],["-95.373249","29.7635609"],["-95.3729101","29.7635698"],["-95.3727973","29.7635788"],["-95.3724873","29.7635911"],["-95.3712255","29.7636146"],["-95.371083","29.7636113"],["-95.37098","29.7636008"],["-95.3708411","29.7635686"],["-95.370772","29.7635404"],["-95.3706967","29.7635029"],["-95.3706186","29.7634549"],["-95.3705276","29.7633793"],["-95.3701263","29.7629407"],["-95.3699455","29.7628004"],["-95.3697379","29.7626757"],["-95.3695303","29.76255"],["-95.3694276","29.7624827"],["-95.3693385","29.7623969"],["-95.3689855","29.7620346"],["-95.368768","29.7617976"],["-95.3687404","29.7617611"],["-95.3686937","29.7618037"],["-95.3684618","29.762055"],["-95.368446","29.7620727"],["-95.368432","29.7620907"],["-95.3684203","29.762127"],["-95.3685565","29.7621632"],["-95.3687927","29.7622442"],["-95.3690105","29.7623267"],["-95.3691371","29.7623979"],["-95.3693674","29.7625667"],["-95.3705461","29.7637393"],["-95.3706859","29.7638349"],["-95.3708685","29.7639173"],["-95.3709896","29.7639721"],["-95.3710916","29.7639959"],["-95.3712511","29.7640176"],["-95.3715429","29.7640218"],["-95.3717335","29.7640191"],["-95.3719657","29.7640197"],["-95.3720513","29.7640155"],["-95.3721164","29.7640203"],["-95.3724897","29.7640173"],["-95.3724836","29.7636596"],["-95.3724823","29.7634987"],["-95.3724938","29.7633344"],["-95.3725563","29.7631128"],["-95.3725851","29.7630271"],["-95.372654","29.7628619"],["-95.3727641","29.7626115"],["-95.3728847","29.7624468"],["-95.3729977","29.7623397"],["-95.373134","29.7622193"],["-95.3738577","29.761788"],["-95.3739592","29.7617132"],["-95.3740501","29.7616314"],["-95.3741697","29.7615106"],["-95.3743233","29.7613644"],["-95.3744673","29.7611428"],["-95.3745931","29.76091"],["-95.3747177","29.760642"],["-95.3748167","29.76036"],["-95.3748983","29.7600909"],["-95.3749498","29.7598101"],["-95.374972","29.7596353"],["-95.3748828","29.758659"],["-95.3747783","29.7580279"],["-95.3747777","29.7575642"],["-95.3747354","29.7536791"],["-95.3747054","29.7531708"],["-95.3746613","29.752922"],["-95.37456","29.7524806"],["-95.3744553","29.7521629"],["-95.3743122","29.7518515"],["-95.3742166","29.7516752"],["-95.3741056","29.7515041"],["-95.3739668","29.7513171"],["-95.3737348","29.7510459"],["-95.3734572","29.7507511"],["-95.3731925","29.7505276"],["-95.3722296","29.7499053"],["-95.3654369","29.7458365"],["-95.3649384","29.7455492"],["-95.3639882","29.7449685"],["-95.3632304","29.7445426"],["-95.3624889","29.7441765"],["-95.3615496","29.7437964"],["-95.3607068","29.7435119"],["-95.3599546","29.7432457"],["-95.3591333","29.742923"],["-95.3588214","29.7427649"],["-95.3585789","29.7426255"],["-95.358412","29.7425176"],["-95.3568623","29.7415271"],["-95.3543656","29.7399048"],["-95.3459126","29.7345074"],["-95.3437117","29.7327956"],["-95.3416202","29.7311328"],["-95.3406005","29.7303871"],["-95.3335763","29.7258531"],["-95.3290666","29.7229534"],["-95.3259861","29.7209991"],["-95.3255941","29.7207875"],["-95.3240083","29.7199536"],["-95.3189144","29.7172578"],["-95.3164674","29.7156687"],["-95.3150396","29.7147751"],["-95.311945","29.7127555"],["-95.3092394","29.7109493"],["-95.3080453","29.710144"],["-95.3005538","29.7051622"],["-95.2942783","29.701112"],["-95.2937578","29.7007532"],["-95.2930787","29.7002509"],["-95.2902185","29.6980452"],["-95.2896139","29.6975611"],["-95.2891256","29.6971255"],["-95.2886885","29.6967226"],["-95.2827504","29.6903956"],["-95.2808854","29.6885045"],["-95.2792463","29.6868966"],["-95.2765274","29.6841526"],["-95.2755703","29.6831914"],["-95.2743897","29.6820191"],["-95.2731723","29.6808032"],["-95.2723581","29.6799656"],["-95.2671148","29.6746335"],["-95.265572","29.673058"],["-95.2648212","29.6722829"],["-95.2645793","29.6719807"],["-95.2643666","29.6717149"],["-95.2641019","29.6713705"],["-95.263791","29.6709409"],["-95.2631475","29.6700209"],["-95.2613371","29.6672746"],["-95.2605242","29.6660455"],["-95.2597659","29.6649162"],["-95.2576965","29.661774"],["-95.2508894","29.6514413"],["-95.2502707","29.6505444"],["-95.2495994","29.6494987"],["-95.2490236","29.6485967"],["-95.2483468","29.6475505"],["-95.2474381","29.6461949"],["-95.2462017","29.6443538"],["-95.2458389","29.6438046"],["-95.245161","29.6427878"],["-95.2447011","29.6421934"],["-95.2442501","29.6416371"],["-95.2436878","29.6410674"],["-95.24253","29.6399573"],["-95.2242384","29.6233038"],["-95.212203","29.612322"],["-95.2113501","29.6115476"],["-95.208841","29.6093412"],["-95.2072122","29.6078206"],["-95.2025077","29.6034652"],["-95.1944899","29.5955567"],["-95.1929543","29.5940242"],["-95.1890208","29.5905631"],["-95.1824889","29.5847512"],["-95.1807292","29.5829971"],["-95.1777258","29.5796169"],["-95.1720424","29.5730817"],["-95.1694648","29.5700395"],["-95.1638568","29.5636806"],["-95.1613227","29.5608942"],["-95.1567115","29.55605"],["-95.1555005","29.55481"],["-95.1538257","29.553089"],["-95.1484851","29.5474623"],["-95.1440256","29.5427649"],["-95.1420857","29.540782"],["-95.1404624","29.5390572"],["-95.1396371","29.5381143"],["-95.1385782","29.5368872"],["-95.1354986","29.5334404"],["-95.1350894","29.5330253"],["-95.134372","29.532248"],["-95.1341394","29.5320087"],["-95.1337894","29.5316402"],["-95.1322333","29.5300364"],["-95.1312299","29.5290045"],["-95.1274875","29.5250366"],["-95.1268179","29.5241244"],["-95.1253644","29.5218624"],["-95.1236106","29.5192329"],["-95.1232849","29.5187011"],["-95.1201722","29.5137098"],["-95.119524","29.5126032"],["-95.1188735","29.5115063"],["-95.1177393","29.5095474"],["-95.1165084","29.5074564"],["-95.1161084","29.5067623"],["-95.1151914","29.5050931"],["-95.1145527","29.503909"],["-95.1137214","29.5023733"],["-95.1129185","29.500947"],["-95.1108694","29.4974747"],["-95.1090799","29.4944774"],["-95.1074758","29.4918194"],["-95.1049706","29.4876662"],["-95.1039573","29.4858755"],["-95.1019474","29.4824912"],["-95.1012655","29.4813904"],["-95.097575","29.4751718"],["-95.0956031","29.4719695"],["-95.0947673","29.4708049"],["-95.0937459","29.4695642"],["-95.0878644","29.4623376"],["-95.0871792","29.4614722"],["-95.0851236","29.4588676"],["-95.0832952","29.4566151"],["-95.0805468","29.4531811"],["-95.0798375","29.452304"],["-95.0791096","29.4514264"],["-95.0774788","29.4494774"],["-95.0745282","29.4458293"],["-95.0733836","29.4443619"],["-95.0705165","29.4407518"],["-95.0703389","29.4405645"],["-95.0701368","29.4403424"],["-95.0693946","29.4394711"],["-95.0684561","29.4384837"],["-95.0382069","29.4077406"],["-95.0366861","29.4061996"],["-95.0345198","29.4040222"],["-95.0334474","29.4029963"],["-95.0325806","29.4021128"],["-95.0313046","29.4007296"],["-95.0213624","29.3906314"],["-95.0207934","29.3900513"],["-95.0205711","29.3898252"],["-95.0200478","29.3892921"],["-95.0159495","29.3851453"],["-95.0146881","29.3838793"],["-95.0139691","29.3832302"],["-95.0125951","29.3820622"],["-94.9862977","29.3608063"],["-94.985042","29.3599928"],["-94.9834879","29.3592782"],["-94.9534772","29.3460543"],["-94.9528921","29.3457103"],["-94.9522535","29.3452994"],["-94.95122","29.3445331"],["-94.9392698","29.3350326"],["-94.9377287","29.3336923"],["-94.936686","29.3327508"],["-94.9348291","29.3311341"],["-94.9322312","29.3290812"],["-94.9300223","29.3276219"],["-94.9297186","29.327428"],["-94.9292583","29.32712"],["-94.9283637","29.3264881"],["-94.9171042","29.3176152"],["-94.9111119","29.3129016"],["-94.9098329","29.3118517"],["-94.9090805","29.3111166"],["-94.9085084","29.3104554"],["-94.9081122","29.3099093"],["-94.907038","29.3081399"],["-94.9055199","29.3056479"],["-94.90496","29.3050082"],["-94.9047771","29.30483"],["-94.9045908","29.3046579"],["-94.9043884","29.304496"],["-94.9041147","29.3043013"],["-94.9034913","29.3039242"],["-94.903101","29.3037265"],["-94.9028193","29.3035976"],["-94.9024597","29.303459"],["-94.9018339","29.3032218"],["-94.901208","29.3029729"],["-94.9007084","29.3027571"],["-94.8996789","29.3022536"],["-94.8743882","29.2898902"],["-94.8739291","29.289646"],["-94.8713408","29.2882013"],["-94.8708938","29.2879708"],["-94.8704521","29.2877461"],["-94.8673081","29.2861736"],["-94.8662763","29.2857709"],["-94.8655381","29.285583"],["-94.8650874","29.2854904"],["-94.8647671","29.285428"],["-94.8644858","29.2853791"],["-94.8642015","29.2853354"],["-94.8638598","29.2852914"],["-94.8635416","29.285266"],["-94.8631309","29.2852396"],["-94.8628955","29.2852343"],["-94.8623841","29.2852312"],["-94.8620581","29.2852411"],["-94.8617665","29.2852565"],["-94.8614175","29.2852893"],["-94.8606388","29.2853967"],["-94.8602388","29.2854633"],["-94.8599193","29.2855401"],["-94.8595547","29.2856307"],["-94.859008","29.2857922"],["-94.8567315","29.2865471"],["-94.8532066","29.2877169"],["-94.8525062","29.2879325"],["-94.8515976","29.2881711"],["-94.8511168","29.2882809"],["-94.8505359","29.2883903"],["-94.8500165","29.2884775"],["-94.8490171","29.2886153"],["-94.8485795","29.2886582"],["-94.8480521","29.2886939"],["-94.8470908","29.2887188"],["-94.8460881","29.2887068"],["-94.842102","29.2884755"],["-94.8405388","29.2884344"],["-94.8376062","29.288495"],["-94.837031","29.2885109"],["-94.836283","29.2885441"],["-94.8359418","29.2885719"],["-94.8355538","29.2886294"],["-94.8349723","29.2887335"],["-94.8345274","29.2888286"],["-94.796685","29.298754"],["-94.7966983","29.2989858"],["-94.796783","29.2992232"],["-94.7968504","29.2994072"],["-94.7974503","29.3011071"],["-94.7985359","29.3008208"],["-94.7980251","29.2992274"],["-94.7979067","29.2986661"],["-94.803195","29.2972628"],["-94.8037825","29.2971068"],["-94.8106832","29.2952854"],["-94.810748","29.2952686"],["-94.8353585","29.2888415"],["-94.835671","29.288785"],["-94.8359519","29.2887466"],["-94.8363103","29.288704"],["-94.8366614","29.2886789"],["-94.8400068","29.2885917"],["-94.8405372","29.2885855"],["-94.8410251","29.288598"],["-94.845409","29.288825"],["-94.8464448","29.2888666"],["-94.8471695","29.2888807"],["-94.8481252","29.2888368"],["-94.8485646","29.2888102"],["-94.8495278","29.2887031"],["-94.8500915","29.2886223"],["-94.8506923","29.2885211"],["-94.8517327","29.2883054"],["-94.8522801","29.2881583"],["-94.8528728","29.2879777"],["-94.8536589","29.2877226"],["-94.8584368","29.2861466"],["-94.8589134","29.2859936"],["-94.8593533","29.2858609"],["-94.8600796","29.2856694"],["-94.8604827","29.2855876"],["-94.8609461","29.2855137"],["-94.8617302","29.2854188"],["-94.8620722","29.2853934"],["-94.8623581","29.2853825"],["-94.8626563","29.2853783"],["-94.8628897","29.285384"],["-94.8631293","29.2853925"],["-94.8637662","29.2854379"],["-94.8643417","29.2855089"],["-94.8646012","29.2855652"],["-94.8650787","29.2856661"],["-94.8659333","29.2858495"],["-94.8668491","29.2861662"],["-94.8679417","29.2867108"],["-94.8690285","29.287252"],["-94.8698018","29.2876179"],["-94.8710157","29.2882255"],["-94.8713735","29.2884225"],["-94.8725525","29.2890622"],["-94.8749108","29.2903394"],["-94.8755011","29.2906345"],["-94.8844825","29.2950283"],["-94.9005946","29.3028864"],["-94.9010017","29.3030662"],["-94.9022145","29.3035407"],["-94.9028107","29.3037778"],["-94.9032154","29.3039662"],["-94.903592","29.3041737"],["-94.9038881","29.3043727"],["-94.904123","29.3045394"],["-94.9043766","29.3047428"],["-94.9045987","29.3049554"],["-94.9049033","29.3052721"],["-94.9050384","29.3054449"],["-94.90517","29.3056306"],["-94.9052933","29.3058112"],["-94.9054066","29.3060005"],["-94.9061062","29.3071194"],["-94.9079104","29.3099874"],["-94.9083507","29.3106334"],["-94.9093208","29.3116177"],["-94.9098166","29.3120522"],["-94.9103885","29.3125257"],["-94.9110554","29.3130521"],["-94.9117783","29.3136157"],["-94.9168437","29.3176795"],["-94.9235296","29.3229063"],["-94.9278867","29.3264447"],["-94.9337075","29.3310989"],["-94.9342761","29.3315264"],["-94.9357985","29.3326466"],["-94.9373929","29.3338537"],["-94.9381859","29.3344728"],["-94.9394131","29.3354305"],["-94.9514852","29.3449514"],["-94.9525255","29.345676"],["-94.9536812","29.3463623"],["-94.9635097","29.3507105"],["-94.971181","29.3540686"],["-94.9730016","29.3548554"],["-94.9748141","29.3556536"],["-94.9803512","29.3580815"],["-94.9839841","29.3595824"],["-94.9852777","29.3602436"],["-94.9859306","29.3606508"],["-94.9865868","29.3611339"],["-95.0038005","29.3750561"],["-95.0053329","29.376305"],["-95.013407","29.3828696"],["-95.0150181","29.3843675"],["-95.0279378","29.3974712"],["-95.0298489","29.3994215"],["-95.0350921","29.4047656"],["-95.0534829","29.4234268"],["-95.0691579","29.4393904"],["-95.0724759","29.4434182"],["-95.0734176","29.4446018"],["-95.0750796","29.4466831"],["-95.0759577","29.4477694"],["-95.0802432","29.4530213"],["-95.0811522","29.4543149"],["-95.0823617","29.4559031"],["-95.0943664","29.4707872"],["-95.0952623","29.4719298"],["-95.1079427","29.4931124"],["-95.1094164","29.4956231"],["-95.1105923","29.4975805"],["-95.1129692","29.5014851"],["-95.117516","29.5094806"],["-95.121192","29.515641"],["-95.1227156","29.5181446"],["-95.1260357","29.52369"],["-95.1266606","29.5245471"],["-95.1269912","29.5249714"],["-95.128092","29.5261717"],["-95.1290791","29.5272099"],["-95.1301289","29.528293"],["-95.1309169","29.5291053"],["-95.1321227","29.530354"],["-95.1333564","29.5316424"],["-95.1347547","29.5331194"],["-95.1357223","29.5341792"],["-95.1370432","29.5356935"],["-95.1382606","29.5370889"],["-95.139786","29.538824"],["-95.1407316","29.5398639"],["-95.1419142","29.5411571"],["-95.1427832","29.5421165"],["-95.1436347","29.543053"],["-95.1543862","29.5542083"],["-95.1554514","29.5553555"],["-95.1585752","29.5586282"],["-95.1594306","29.5595123"],["-95.1604171","29.5605263"],["-95.1627344","29.5629719"],["-95.164534","29.5649797"],["-95.169493","29.5706531"],["-95.170199","29.5714851"],["-95.1710274","29.5724727"],["-95.1762279","29.5785696"],["-95.1802582","29.5831235"],["-95.180902","29.5837799"],["-95.1814111","29.5842757"],["-95.1824243","29.5851958"],["-95.1896232","29.591489"],["-95.191089","29.5927961"],["-95.1934023","29.5949609"],["-95.1983948","29.5998966"],["-95.2000223","29.601605"],["-95.2025465","29.604488"],["-95.2028236","29.6049377"],["-95.202961","29.6052525"],["-95.203032","29.6054561"],["-95.2030884","29.6056462"],["-95.2031332","29.605933"],["-95.2031469","29.6062828"],["-95.2031284","29.6066083"],["-95.2030659","29.6069133"],["-95.2029987","29.6071374"],["-95.202903","29.6073478"],["-95.2027929","29.607579"],["-95.2026578","29.6078099"],["-95.2019618","29.60855"],["-95.2004234","29.6096916"],["-95.1987951","29.6109823"],["-95.1980363","29.6115905"],["-95.1972276","29.6122893"],["-95.1951848","29.6137895"],["-95.1914839","29.6165007"],["-95.1904865","29.6171703"],["-95.1897191","29.6176128"],["-95.1876206","29.618699"],["-95.1825166","29.6212848"],["-95.1818398","29.6216891"],["-95.1808241","29.6223567"],["-95.173751","29.6273707"],["-95.1726821","29.6282738"],["-95.1708872","29.6299303"],["-95.1695385","29.6312335"],["-95.1650314","29.6354566"],["-95.1637812","29.6366137"],["-95.1604254","29.639741"],["-95.159935","29.64025"],["-95.1594482","29.6408278"],["-95.1584567","29.6422943"],["-95.1578406","29.6436629"],["-95.1572831","29.6451051"],["-95.1568844","29.6463387"],["-95.1565183","29.6475914"],["-95.1562028","29.6493874"],["-95.156113","29.6504021"],["-95.156063","29.6523237"],["-95.1560419","29.6544912"],["-95.1560648","29.6552287"],["-95.1561576","29.6584254"],["-95.1561968","29.6594078"],["-95.1561861","29.6600798"],["-95.1561013","29.6608748"],["-95.1559744","29.6615492"],["-95.1556736","29.6632447"],["-95.1556302","29.6642612"],["-95.1556676","29.6660195"],["-95.1558849","29.6693079"],["-95.1559173","29.6701012"],["-95.1559573","29.67139"],["-95.1560067","29.6730751"],["-95.156085","29.6772835"],["-95.1560982","29.6781486"],["-95.1559899","29.6790149"],["-95.1558716","29.6793713"],["-95.1553924","29.6810496"],["-95.1547893","29.6830623"],["-95.1543829","29.684416"],["-95.1540642","29.6855008"],["-95.153807","29.6864558"],["-95.1536343","29.6872409"],["-95.1535462","29.6880154"],["-95.1535305","29.6889657"],["-95.1535097","29.6897127"],["-95.1534055","29.6977403"],["-95.153423","29.6995197"],["-95.1534171","29.7010786"],["-95.1534132","29.7026743"],["-95.1533999","29.7049147"],["-95.1533789","29.7067357"],["-95.1533368","29.710634"],["-95.1533058","29.7118917"],["-95.1532429","29.7126366"],["-95.1531393","29.713267"],["-95.1530472","29.7136836"],["-95.1529549","29.7140203"],["-95.1528512","29.7143265"],["-95.1527074","29.7146769"],["-95.1524021","29.7153332"],["-95.1522191","29.7156535"],["-95.1519625","29.7160445"],["-95.1514847","29.7166844"],["-95.1497531","29.7186956"],["-95.1491145","29.7194779"],["-95.1487436","29.7199311"],["-95.1484627","29.7203155"],["-95.1481737","29.7208451"],["-95.1480414","29.7211137"],["-95.1479582","29.7213388"],["-95.1478806","29.7215696"],["-95.1478246","29.7217641"],["-95.1477801","29.7219608"],["-95.1477441","29.7221595"],["-95.1477132","29.7223763"],["-95.1471348","29.7272042"],["-95.1468084","29.7299884"],["-95.1456757","29.7396401"],["-95.1456037","29.7406655"],["-95.1456197","29.742412"],["-95.1457816","29.7502408"],["-95.1458327","29.7518064"],["-95.1458509","29.7525093"],["-95.1458597","29.7536957"],["-95.1458803","29.7548648"],["-95.1459414","29.7577487"],["-95.1459918","29.7586098"],["-95.1461483","29.7599625"],["-95.1463613","29.7610658"],["-95.1464789","29.7615296"],["-95.1465952","29.761877"],["-95.146722","29.7622573"],["-95.1468844","29.7626981"],["-95.147084","29.7631625"],["-95.1473923","29.7637734"],["-95.1477299","29.7644844"],["-95.1479711","29.7649898"],["-95.1482295","29.765521"],["-95.1486192","29.7661442"],["-95.1491948","29.7668651"],["-95.1497095","29.7674988"],["-95.1502096","29.7682049"],["-95.150379","29.7685214"],["-95.1504435","29.7686809"],["-95.1505306","29.768974"],["-95.1505659","29.7691626"],["-95.1505709","29.7692887"],["-95.1505716","29.7694276"],["-95.1505673","29.7695874"],["-95.1504926","29.7700386"],["-95.1504386","29.7702049"],["-95.1503855","29.7703412"],["-95.1503183","29.7704948"],["-95.1501828","29.7707398"],["-95.1500311","29.7709568"],["-95.1498751","29.7711258"],["-95.149703","29.7712804"],["-95.1495723","29.771386"],["-95.149424","29.7714917"],["-95.1492765","29.7715974"],["-95.1491231","29.771684"],["-95.1488742","29.7717874"],["-95.1484222","29.7719838"],["-95.1472803","29.7722983"],["-95.1453023","29.772849"],["-95.1430161","29.7734759"],["-95.1241947","29.7780542"],["-95.123194","29.778295"],["-95.1225645","29.7784601"],["-95.1210211","29.7790378"],["-95.1075786","29.7846088"],["-95.1058734","29.7852212"],["-95.1005629","29.7869378"],["-95.0986824","29.7875641"],["-95.0926602","29.7895556"],["-95.0914124","29.789939"],["-95.090708","29.7901186"],["-95.0898717","29.7903004"],["-95.0884855","29.7905467"],["-95.085525","29.7908352"],["-95.0848059","29.7908997"],["-95.0840958","29.7910149"],["-95.0828829","29.7912558"],["-95.0814988","29.791621"],["-95.0784184","29.7927109"],["-95.074464","29.7941136"],["-95.0735067","29.7944472"],["-95.0727297","29.7947191"],["-95.0716967","29.7950205"],["-95.070906","29.795172"],["-95.0705715","29.7952162"],["-95.0701876","29.7952425"],["-95.0696863","29.7952672"],["-95.0692094","29.7952706"],["-95.0688072","29.7952408"],["-95.0683542","29.7951972"],["-95.0679533","29.7951331"],["-95.0674325","29.7950166"],["-95.0670134","29.7949126"],["-95.0666372","29.7947988"],["-95.0661985","29.7946552"],["-95.0652477","29.7942559"],["-95.0598087","29.791812"],["-95.0589915","29.7914945"],["-95.0586162","29.7913405"],["-95.0575456","29.7909142"],["-95.0571895","29.7907758"],["-95.0568707","29.7906828"],["-95.0559672","29.7904675"],["-95.0554586","29.7903871"],["-95.0549678","29.790331"],["-95.0544263","29.7902913"],["-95.0526343","29.7902919"],["-95.0523101","29.7903562"],["-95.0518194","29.7904338"],["-95.0514217","29.7904872"],["-95.0505086","29.7906649"],["-95.0498857","29.7908196"],["-95.0493429","29.7909794"],["-95.0486389","29.7912118"],["-95.0462657","29.7920807"],["-95.0438618","29.7929676"],["-95.042155","29.7936131"],["-95.039639","29.794567"],["-95.0312371","29.797707"],["-95.0298887","29.798195"],["-95.028637","29.7986505"],["-95.028414","29.7987345"],["-95.0273533","29.7991218"],["-95.0266944","29.7993343"],["-95.0263076","29.7994367"],["-95.0260342","29.7995018"],["-95.0255271","29.7995963"],["-95.0251382","29.7996601"],["-95.0241954","29.7997282"],["-95.013527","29.7999345"],["-95.0127414","29.7999774"],["-95.0120076","29.8000016"],["-95.0114821","29.8000342"],["-95.0102856","29.8001532"],["-94.9824728","29.8044689"],["-94.9813063","29.8046477"],["-94.9803424","29.8048089"],["-94.9796987","29.8049142"],["-94.96868","29.807255"],["-94.96718","29.8075309"],["-94.9436387","29.8111465"],["-94.9421316","29.8113935"],["-94.9410883","29.811639"],["-94.9401855","29.8118874"],["-94.9396838","29.8120571"],["-94.9390334","29.8122935"],["-94.938541","29.812486"],["-94.9379981","29.8127122"],["-94.9214228","29.8201022"],["-94.9204458","29.8205221"],["-94.9199972","29.8206887"],["-94.9195866","29.8208221"],["-94.9191281","29.8209439"],["-94.9186103","29.8210561"],["-94.9182139","29.8211194"],["-94.9177791","29.8211744"],["-94.9173854","29.8212135"],["-94.9167889","29.8212201"],["-94.9153154","29.8212102"],["-94.9065474","29.820997"],["-94.9058173","29.8209976"],["-94.9052771","29.8210072"],["-94.904092","29.8210833"],["-94.8728085","29.8237751"],["-94.8460171","29.8260908"],["-94.8429865","29.8263541"],["-94.8150734","29.8288104"],["-94.8101068","29.8292616"],["-94.8091056","29.8293395"],["-94.8057238","29.8296593"],["-94.7729629","29.8355657"],["-94.7717878","29.8358047"],["-94.7706146","29.8360525"],["-94.765942","29.8369399"],["-94.7615782","29.837734"],["-94.7563144","29.8385723"],["-94.7550655","29.8386728"],["-94.7536561","29.8387575"],["-94.7499036","29.8387929"],["-94.7341943","29.8388516"],["-94.7277407","29.8390308"],["-94.6970417","29.8400745"],["-94.695032","29.8401362"],["-94.689449","29.8403375"],["-94.6867432","29.8404177"],["-94.6826365","29.8405498"],["-94.6643211","29.8404465"],["-94.6609719","29.8403788"],["-94.6600734","29.8403659"],["-94.6581645","29.840328"],["-94.6387633","29.8396475"],["-94.5805118","29.8374456"],["-94.5081739","29.8320786"],["-94.4986183","29.8313349"],["-94.4506351","29.8277333"],["-94.4388929","29.8269824"],["-94.3968392","29.8272188"],["-94.3951202","29.8272655"],["-94.3942395","29.8273289"],["-94.3937317","29.8273941"],["-94.3928063","29.8275702"],["-94.3923131","29.8276847"],["-94.3917439","29.8278415"],["-94.3912023","29.828032"],["-94.3906903","29.8282204"],["-94.3899896","29.8285223"],["-94.3896675","29.8286455"],["-94.3892476","29.8288701"],["-94.3888013","29.8291293"],["-94.388308","29.829438"],["-94.3877989","29.8297868"],["-94.3868104","29.8306603"],["-94.3848346","29.8327241"],["-94.3842925","29.8332755"],["-94.3825952","29.8350776"],["-94.3801028","29.8376889"],["-94.3789819","29.8388585"],["-94.3781739","29.8397076"],["-94.3771372","29.8406827"],["-94.3756248","29.8420205"],["-94.3739744","29.8434755"],["-94.3707468","29.8463359"],["-94.350523","29.8642304"],["-94.3437142","29.8702933"],["-94.3429379","29.8709335"],["-94.3418412","29.8718181"],["-94.3377675","29.8751487"],["-94.3372676","29.8755396"],["-94.3370871","29.8757362"],["-94.3363215","29.8763607"],["-94.3335634","29.8785872"],["-94.3307997","29.8808056"],["-94.3291703","29.8821297"],["-94.2629184","29.9362184"],["-94.2468113","29.9493363"],["-94.2425219","29.9534664"],["-94.2249289","29.9708576"],["-94.218743","29.9769697"],["-94.214091","29.9815447"],["-94.2122074","29.9833023"],["-94.2112631","29.984363"],["-94.2071349","29.9884122"],["-94.2052662","29.9900665"],["-94.1993274","29.9961177"],["-94.1854689","30.0098459"],["-94.1846342","30.0106584"],["-94.1834002","30.0118787"],["-94.1699334","30.0251818"],["-94.1693625","30.0257445"],["-94.1604988","30.0344338"],["-94.1572832","30.0376619"],["-94.1564571","30.0384644"],["-94.1503878","30.0444782"],["-94.1498707","30.0449962"],["-94.1415233","30.0532102"],["-94.1399187","30.0547975"],["-94.1392334","30.0554505"],["-94.1385164","30.0561592"],["-94.1376423","30.0570345"],["-94.1369509","30.0577692"],["-94.1363922","30.0584318"],["-94.1360648","30.0589032"],["-94.1357339","30.0594658"],["-94.135334","30.0602618"],["-94.1349525","30.0612344"],["-94.1347593","30.0618885"],["-94.1345731","30.0630211"],["-94.134492","30.0638521"],["-94.1346018","30.0701485"],["-94.1346264","30.0712281"],["-94.1347094","30.0723592"],["-94.1347558","30.0727705"],["-94.1350117","30.0743237"],["-94.1354493","30.0766876"],["-94.1355567","30.077526"],["-94.1356838","30.0788203"],["-94.1357744","30.0823401"],["-94.1358034","30.08319"],["-94.1358533","30.0858435"],["-94.1358789","30.086567"],["-94.1359068","30.0871561"],["-94.1359553","30.08872"],["-94.1359721","30.089013"],["-94.1360229","30.0918163"],["-94.1359947","30.092208"],["-94.135959","30.0924666"],["-94.1358939","30.0927625"],["-94.13581","30.0930544"],["-94.1356675","30.0934037"],["-94.1355036","30.0937012"],["-94.1353635","30.0939376"],["-94.135269","30.094097"],["-94.1351605","30.0942433"],["-94.1350308","30.0943932"],["-94.1348509","30.0945819"],["-94.1346799","30.0947436"],["-94.1345046","30.094896"],["-94.1343437","30.0950162"],["-94.1336343","30.0954244"],["-94.1331358","30.0956612"],["-94.1329265","30.0957382"],["-94.1327495","30.0957902"],["-94.1324196","30.0958689"],["-94.1322392","30.0959043"],["-94.1320358","30.0959385"],["-94.1318222","30.0959649"],["-94.1316404","30.0959847"],["-94.1314115","30.0959973"],["-94.1309492","30.0960083"],["-94.1306943","30.0960105"],["-94.129042","30.0960291"],["-94.1274668","30.0959928"],["-94.1238102","30.095828"],["-94.1232928","30.0958195"],["-94.122585","30.0958177"],["-94.1171526","30.095944"],["-94.115034","30.0959901"],["-94.1051671","30.0961142"],["-94.1048074","30.0961036"],["-94.1044235","30.0960602"],["-94.1039632","30.0959797"],["-94.1037001","30.095927"],["-94.1035134","30.0958827"],["-94.1031011","30.0957452"],["-94.1029008","30.0956733"],["-94.1027481","30.0956147"],["-94.1020677","30.0952907"],["-94.1017236","30.095149"],["-94.1014689","30.0950511"],["-94.1011477","30.0949348"],["-94.1008554","30.0948526"],["-94.1005563","30.0947717"],["-94.1003344","30.0947089"],["-94.1000827","30.094652"],["-94.0996544","30.094577"],["-94.0992567","30.0945198"],["-94.0987451","30.0944689"],["-94.0983427","30.0944508"],["-94.0980164","30.0944455"],["-94.0975503","30.0944486"],["-94.0855214","30.0947308"],["-94.0840221","30.0947809"],["-94.0824898","30.0948298"],["-94.081172","30.0948842"],["-94.0760698","30.0952787"],["-94.074955","30.0954169"],["-94.0742429","30.0955227"],["-94.0729394","30.095868"],["-94.0718977","30.0961761"],["-94.0699206","30.0968138"],["-94.0687174","30.097249"],["-94.0679551","30.0975507"],["-94.067837","30.0976041"],["-94.0677957","30.0976252"],["-94.0670751","30.0979298"],["-94.0664148","30.0982194"],["-94.0658208","30.098519"],["-94.0653875","30.0987735"],["-94.060793","30.1018576"],["-94.0599032","30.1024137"],["-94.0593258","30.1028097"],["-94.0558975","30.1050883"],["-94.0543276","30.1060779"],["-94.0533884","30.1067555"],["-94.047856","30.1103718"],["-94.0462775","30.1113986"],["-94.0458996","30.1116363"],["-94.0435767","30.1132204"],["-94.0422478","30.1141419"],["-94.033828","30.1196666"],["-94.0304699","30.1218998"],["-94.0263991","30.1245983"],["-94.0254541","30.1252287"],["-94.0245935","30.1258273"],["-94.0223437","30.1273484"],["-94.0194294","30.1293968"],["-94.0186417","30.1299311"],["-94.0178425","30.1303805"],["-94.0159046","30.1314205"],["-94.0138559","30.1325026"],["-94.0129772","30.1329891"],["-94.0124092","30.1332915"],["-94.0117471","30.1336461"],["-94.0113935","30.1338435"],["-94.0107248","30.1341606"],["-94.0097349","30.1345588"],["-94.0089284","30.1348425"],["-94.0084841","30.1349758"],["-94.0079995","30.1351074"],["-94.0072818","30.1352709"],["-94.006604","30.1354001"],["-94.0060989","30.1354617"],["-94.0051192","30.1355823"],["-94.0044914","30.1356072"],["-94.0038568","30.1356176"],["-94.0027649","30.1355689"],["-94.0022848","30.1355318"],["-94.0015176","30.1354269"],["-94.000018","30.1351787"],["-93.9991068","30.1350264"],["-93.9982822","30.1348684"],["-93.9960295","30.1343883"],["-93.9920191","30.1335426"],["-93.9740872","30.1299071"],["-93.9721101","30.1295122"],["-93.9716077","30.1294195"],["-93.9707525","30.1293137"],["-93.9698908","30.1292343"],["-93.9683189","30.1291864"],["-93.9333262","30.13018"],["-93.9331131","30.1301788"],["-93.9103684","30.1307793"],["-93.9085785","30.1308211"],["-93.9075846","30.1308274"],["-93.9065673","30.1308263"],["-93.8965755","30.1306595"],["-93.8959938","30.1306329"],["-93.8953227","30.1305759"],["-93.8942862","30.1304477"],["-93.8920307","30.1301017"],["-93.8907663","30.1299454"],["-93.8895696","30.1298458"],["-93.8849494","30.1298382"],["-93.8833327","30.1298642"],["-93.8807606","30.1301048"],["-93.8658829","30.131725"],["-93.8652407","30.1317728"],["-93.8646503","30.1317819"],["-93.8640529","30.1317634"],["-93.863229","30.1316691"],["-93.8627185","30.1315441"],["-93.8622156","30.1314157"],["-93.8616619","30.1312376"],["-93.8610438","30.1309989"],["-93.8604366","30.1307302"],["-93.8595615","30.1303115"],["-93.8577812","30.1294491"],["-93.8564486","30.1288133"],["-93.8461697","30.1239656"],["-93.8453394","30.123653"],["-93.8445325","30.1233833"],["-93.8434687","30.1230742"],["-93.8360718","30.1214101"],["-93.835187","30.1211992"],["-93.8337967","30.12081"],["-93.832938","30.1205009"],["-93.8319366","30.1200997"],["-93.8251028","30.1167857"],["-93.82347","30.1161437"],["-93.8229658","30.1159828"],["-93.8222965","30.1157912"],["-93.821352","30.1155508"],["-93.8198742","30.1151939"],["-93.8171303","30.1145171"],["-93.8159249","30.1142318"],["-93.8130102","30.1135955"],["-93.8119625","30.1133891"],["-93.8103217","30.1130733"],["-93.8097481","30.1129847"],["-93.8092224","30.1129352"],["-93.8086666","30.1128918"],["-93.8081446","30.1128873"],["-93.8070072","30.1129485"],["-93.8064916","30.1130387"],["-93.8060312","30.1131444"],["-93.8055069","30.11328"],["-93.8000625","30.1150576"],["-93.7966149","30.1161963"],["-93.7871722","30.1193102"],["-93.785303","30.1199237"],["-93.7832001","30.1205735"],["-93.7823769","30.1207749"],["-93.7816768","30.1209183"],["-93.7807512","30.1210759"],["-93.7800906","30.1211441"],["-93.7793758","30.1212021"],["-93.7773699","30.1212631"],["-93.7560559","30.121611"],["-93.7537833","30.1215807"],["-93.7528593","30.1215098"],["-93.7415453","30.1203922"],["-93.7404189","30.1202271"],["-93.7393514","30.1200165"],["-93.7387449","30.1198601"],["-93.7355963","30.1189242"],["-93.7350753","30.1188126"],["-93.7345937","30.118719"],["-93.7338782","30.1186237"],["-93.7326864","30.1185106"],["-93.7317721","30.1184732"],["-93.7286922","30.1184659"],["-93.7275247","30.1184677"],["-93.7257926","30.1184879"],["-93.725077","30.1185528"],["-93.724155","30.1187049"],["-93.7232819","30.1188747"],["-93.7219494","30.119241"],["-93.7189261","30.1201486"],["-93.7175951","30.1205592"],["-93.716819","30.1208215"],["-93.7161582","30.1210713"],["-93.701263","30.127425"],["-93.7010165","30.1275303"],["-93.6924564","30.131225"],["-93.690872","30.1319224"],["-93.599579","30.1709377"],["-93.5933692","30.1736394"],["-93.5923624","30.1740989"],["-93.5684656","30.1843977"],["-93.5670832","30.1848972"],["-93.5660334","30.1852532"],["-93.5655669","30.1854121"],["-93.5651027","30.1855418"],["-93.5645961","30.18568"],["-93.5642403","30.1857751"],["-93.5640271","30.1858269"],["-93.5637575","30.185897"],["-93.5635294","30.1859538"],["-93.5631065","30.1860364"],["-93.5621287","30.1862113"],["-93.5619635","30.1862434"],["-93.5606215","30.1865016"],["-93.5119187","30.1958752"],["-93.5099915","30.196313"],["-93.5077592","30.1967766"],["-93.5062049","30.1970031"],["-93.504587","30.1972593"],["-93.449909","30.2077011"],["-93.4453862","30.208663"],["-93.4431906","30.2091221"],["-93.4387926","30.2098169"],["-93.4353306","30.2104756"],["-93.433777","30.2107672"],["-93.4271053","30.2120741"],["-93.4226795","30.2129823"],["-93.4157526","30.2143879"],["-93.4150682","30.2145124"],["-93.4145479","30.2146002"],["-93.4138595","30.2147101"],["-93.4131964","30.2148099"],["-93.4112573","30.2150476"],["-93.4098303","30.2151588"],["-93.4085705","30.2152476"],["-93.3864146","30.215451"],["-93.3849813","30.2154779"],["-93.3830619","30.2155835"],["-93.3770367","30.2156286"],["-93.3762965","30.2156236"],["-93.3255995","30.21598"],["-93.3242455","30.2161062"],["-93.3232036","30.2163563"],["-93.322055","30.2167708"],["-93.3214346","30.2171015"],["-93.3210074","30.2173829"],["-93.3205228","30.2177292"],["-93.3200939","30.218105"],["-93.3195789","30.2186497"],["-93.3185797","30.219859"],["-93.318236","30.2202318"],["-93.3178075","30.2205713"],["-93.3172501","30.2209865"],["-93.3161936","30.2215384"],["-93.2840524","30.2355949"],["-93.282503","30.2361267"],["-93.2810314","30.2365244"],["-93.2794942","30.236903"],["-93.2777148","30.2371713"],["-93.2761343","30.2373197"],["-93.2719624","30.2374063"],["-93.2691717","30.2373944"],["-93.2616617","30.2370079"],["-93.2605167","30.2369637"],["-93.2600541","30.2369576"],["-93.2596458","30.2369632"],["-93.2353888","30.2370671"],["-93.2277056","30.2371118"],["-93.2270835","30.2370944"],["-93.2257348","30.237011"],["-93.2229149","30.2367571"],["-93.222291","30.2366816"],["-93.2217335","30.2365982"],["-93.2211556","30.2364948"],["-93.2188453","30.2360706"],["-93.2173981","30.2358458"],["-93.2163371","30.235765"],["-93.2158426","30.2357586"],["-93.2032147","30.2358577"],["-93.2018951","30.2358886"],["-93.2011314","30.2359145"],["-93.1929521","30.2362102"],["-93.1923906","30.2362464"],["-93.1921613","30.2362723"],["-93.1918972","30.2363137"],["-93.191678","30.2363681"],["-93.1913288","30.2364759"],["-93.191051","30.2365933"],["-93.190859","30.2366843"],["-93.190717","30.2367678"],["-93.1905658","30.2368668"],["-93.1904095","30.2369808"],["-93.1902344","30.2371318"],["-93.189878","30.2374711"],["-93.1882745","30.2390525"],["-93.1879514","30.2393807"],["-93.1863797","30.2409368"],["-93.1854828","30.24182"],["-93.1847299","30.2425857"],["-93.1841151","30.2431958"],["-93.1828595","30.2444507"],["-93.1824713","30.2448279"],["-93.1817279","30.2455619"],["-93.1814638","30.2458113"],["-93.1812881","30.2459628"],["-93.1811112","30.2461018"],["-93.1808789","30.2462708"],["-93.1805443","30.2464647"],["-93.1803399","30.2465686"],["-93.1800875","30.2466478"],["-93.1798889","30.2466972"],["-93.1797173","30.2467328"],["-93.1795241","30.2467664"],["-93.1793249","30.2467947"],["-93.1790243","30.2468175"],["-93.1785805","30.2468299"],["-93.1781914","30.2468337"],["-93.1778078","30.2468303"],["-93.1773195","30.246815"],["-93.1749738","30.2466496"],["-93.1679418","30.2461477"],["-93.1550759","30.2451807"],["-93.1353209","30.243811"],["-93.1343307","30.2437971"],["-93.1334445","30.243797"],["-93.1329035","30.2438329"],["-93.1321194","30.2439286"],["-93.1311279","30.2440764"],["-93.1172613","30.2466269"],["-93.1152703","30.2469823"],["-93.1143467","30.2470808"],["-93.1123959","30.247261"],["-93.1108229","30.2473629"],["-93.0369328","30.247632"],["-93.0306697","30.2480193"],["-93.0137398","30.249296"],["-93.0126334","30.2493704"],["-93.0022053","30.250128"],["-92.9999672","30.2501692"],["-92.998288","30.2501766"],["-92.9970988","30.2501642"],["-92.996492","30.2501464"],["-92.9957866","30.2501132"],["-92.9949577","30.2500595"],["-92.9927699","30.2498443"],["-92.9915801","30.2497083"],["-92.972282","30.2465759"],["-92.9716708","30.2464862"],["-92.9712226","30.2464336"],["-92.9708323","30.2463955"],["-92.9699662","30.2463336"],["-92.9625574","30.2463194"],["-92.8263767","30.2466429"],["-92.8163405","30.2468861"],["-92.813514","30.2469534"],["-92.8073704","30.2470358"],["-92.7547134","30.2472206"],["-92.7543178","30.2472358"],["-92.753914","30.2472572"],["-92.752868","30.2473241"],["-92.7482746","30.247697"],["-92.7468091","30.24775"],["-92.7460232","30.2477562"],["-92.7404387","30.2476027"],["-92.7393484","30.2475654"],["-92.7350707","30.2474348"],["-92.7298284","30.2474357"],["-92.7290095","30.2474073"],["-92.7273806","30.2473056"],["-92.7259564","30.247163"],["-92.7199022","30.2465852"],["-92.7185433","30.2465024"],["-92.6991816","30.2463345"],["-92.6975507","30.2463621"],["-92.6967208","30.2463598"],["-92.6490325","30.2465367"],["-92.6484082","30.2464975"],["-92.6443296","30.24604"],["-92.6436372","30.2459169"],["-92.6416249","30.2454995"],["-92.6366815","30.2442047"],["-92.635829","30.2439596"],["-92.6332308","30.2432267"],["-92.6319056","30.2428372"],["-92.6317602","30.2427983"],["-92.6269147","30.2414146"],["-92.6128662","30.2374548"],["-92.6119305","30.2372363"],["-92.6110558","30.2370502"],["-92.6089902","30.2366915"],["-92.607258","30.2364733"],["-92.6061933","30.2363802"],["-92.6051789","30.2363105"],["-92.6042633","30.2362648"],["-92.6027","30.2362452"],["-92.5872595","30.2360592"],["-92.5825048","30.2361764"],["-92.5576808","30.2360682"],["-92.5568706","30.2360221"],["-92.5559904","30.2359537"],["-92.5545028","30.2357939"],["-92.5538435","30.2357031"],["-92.5517062","30.2353397"],["-92.5357287","30.2320132"],["-92.5347991","30.2318971"],["-92.5341441","30.2318262"],["-92.5335435","30.231775"],["-92.5329281","30.2317359"],["-92.5320237","30.2316877"],["-92.5296183","30.2316219"],["-92.4855848","30.2307389"],["-92.484693","30.230741"],["-92.4818365","30.2308733"],["-92.4681851","30.2328531"],["-92.4651781","30.2334341"],["-92.4499941","30.2356268"],["-92.4491108","30.2356829"],["-92.3429473","30.2354131"],["-92.3421467","30.235438"],["-92.3411688","30.2354903"],["-92.3403343","30.2355524"],["-92.3395367","30.2356285"],["-92.3385466","30.2357438"],["-92.3376908","30.2358649"],["-92.3357347","30.2362027"],["-92.3336576","30.2366739"],["-92.3082216","30.2438277"],["-92.3075743","30.2440423"],["-92.2914918","30.24991"],["-92.2893308","30.2505945"],["-92.2885069","30.2508198"],["-92.28762","30.2510423"],["-92.2867891","30.251231"],["-92.2858711","30.2514199"],["-92.2850371","30.2515711"],["-92.2825656","30.2519199"],["-92.2813342","30.2520379"],["-92.2808995","30.2520694"],["-92.2784809","30.2521659"],["-92.2666535","30.252219"],["-92.2648202","30.2522224"],["-92.2637895","30.2522319"],["-92.2479422","30.2521749"],["-92.2464082","30.2520246"],["-92.2160352","30.2479831"],["-92.213377","30.2477589"],["-92.2125742","30.2477258"],["-92.2120177","30.2477061"],["-92.1127217","30.2471247"],["-92.1111511","30.2471022"],["-92.1048879","30.2470711"],["-92.1024976","30.2470621"],["-92.0912734","30.2469868"],["-92.0541244","30.2467758"],["-92.0534758","30.246791"],["-92.0525237","30.2468317"],["-92.051866","30.2468747"],["-92.0501272","30.2470312"],["-92.0486883","30.2472253"],["-92.0473309","30.2474436"],["-92.0456135","30.2478079"],["-92.0448906","30.247979"],["-92.0433856","30.2483821"],["-92.0421786","30.2487592"],["-92.040509","30.2493346"],["-92.032423","30.2526016"],["-92.0308959","30.2532196"],["-92.0168699","30.2589274"],["-92.0157569","30.2593694"],["-92.0149177","30.2597173"],["-92.0146551","30.2598324"],["-92.003744","30.2642791"],["-92.0030499","30.2645447"],["-92.0016965","30.2650346"],["-92.0012167","30.2651924"],["-92.0008737","30.265284"],["-91.9995157","30.2657047"],["-91.9968568","30.2665455"],["-91.9474938","30.2817281"],["-91.9470785","30.2818541"],["-91.9465889","30.2820084"],["-91.9461463","30.2821559"],["-91.9452653","30.2824769"],["-91.9448629","30.2826393"],["-91.9444927","30.2827976"],["-91.9432102","30.2834052"],["-91.93682","30.286536"],["-91.9367152","30.2865784"],["-91.9364772","30.2867028"],["-91.9266238","30.2915144"],["-91.9251254","30.2921594"],["-91.9245011","30.2924097"],["-91.9229793","30.2929635"],["-91.9220455","30.2932725"],["-91.9212101","30.2935314"],["-91.9205981","30.2937055"],["-91.8688875","30.3081286"],["-91.8497653","30.3121783"],["-91.847749","30.3125321"],["-91.8189945","30.3173076"],["-91.8174309","30.3175919"],["-91.8167723","30.3177271"],["-91.8150373","30.318141"],["-91.8061633","30.3205395"],["-91.8052605","30.3207516"],["-91.8043626","30.3209384"],["-91.7822121","30.3259629"],["-91.726896","30.3410159"],["-91.7249818","30.3415992"],["-91.7242977","30.3418118"],["-91.7238433","30.341955"],["-91.7118349","30.3452624"],["-91.7083741","30.346144"],["-91.6619782","30.3586508"],["-91.6471342","30.3628102"],["-91.6365001","30.3657045"],["-91.5071779","30.4005656"],["-91.5062072","30.4008535"],["-91.4739542","30.4095503"],["-91.4725726","30.4098786"],["-91.4709624","30.4102305"],["-91.4531677","30.4134534"],["-91.4406962","30.4167213"],["-91.4182119","30.4227432"],["-91.416855","30.4231455"],["-91.4153012","30.4236319"],["-91.4135402","30.424232"],["-91.4031026","30.4280208"],["-91.4001572","30.4289766"],["-91.3939551","30.4306715"],["-91.3716422","30.4366023"],["-91.3222187","30.4497521"],["-91.3189052","30.4505114"],["-91.3178283","30.450687"],["-91.316744","30.4508182"],["-91.3141719","30.4510448"],["-91.2729723","30.4534389"],["-91.271477","30.453425"],["-91.2702473","30.4533361"],["-91.2683346","30.4530218"],["-91.246115","30.4476723"],["-91.241662","30.446666"],["-91.2394196","30.4463278"],["-91.2383205","30.4462058"],["-91.2369647","30.446074"],["-91.234453","30.445803"],["-91.233281","30.4456295"],["-91.2319502","30.4453831"],["-91.2304588","30.4450279"],["-91.2286777","30.4445581"],["-91.2270834","30.4440512"],["-91.2211457","30.4417889"],["-91.2192797","30.4411714"],["-91.2175018","30.4407721"],["-91.2154535","30.4405529"],["-91.1939097","30.4392689"],["-91.1888391","30.4389877"],["-91.1880175","30.4389508"],["-91.1860764","30.438945"],["-91.182831","30.4390344"],["-91.1821923","30.4390325"],["-91.1819827","30.4390239"],["-91.1818589","30.4390178"],["-91.1812364","30.4389778"],["-91.1810458","30.4389652"],["-91.1807193","30.438942"],["-91.1805984","30.4389285"],["-91.1804633","30.4389086"],["-91.1803379","30.4388854"],["-91.1802195","30.4388569"],["-91.1801082","30.4388248"],["-91.1799825","30.438786"],["-91.1798662","30.4387418"],["-91.179755","30.4386935"],["-91.1796412","30.4386387"],["-91.1795401","30.4385826"],["-91.1794335","30.4385196"],["-91.1793241","30.4384478"],["-91.1792292","30.4383793"],["-91.1791411","30.4383053"],["-91.1790515","30.4382247"],["-91.1789532","30.4381265"],["-91.1788177","30.4379725"],["-91.1787419","30.4378716"],["-91.1786777","30.4377775"],["-91.1785591","30.4375689"],["-91.1785157","30.4374725"],["-91.1784797","30.4373807"],["-91.1783813","30.4371115"],["-91.178345","30.4370081"],["-91.1783095","30.4369104"],["-91.1782074","30.4366264"],["-91.178172","30.4365257"],["-91.1781422","30.436445"],["-91.1781076","30.4363557"],["-91.1780751","30.4362754"],["-91.1780338","30.4361758"],["-91.177986","30.4360687"],["-91.1779364","30.4359629"],["-91.1778749","30.4358455"],["-91.1777479","30.4356102"],["-91.1776925","30.4355165"],["-91.177625","30.435411"],["-91.1775504","30.4353023"],["-91.1774442","30.4351497"],["-91.1772305","30.4348878"],["-91.1757702","30.4326944"],["-91.17544","30.4322389"],["-91.1749694","30.4316444"],["-91.174889","30.4315506"],["-91.1748026","30.4314545"],["-91.1747242","30.4313707"],["-91.1746478","30.4312871"],["-91.1745399","30.4311705"],["-91.1742856","30.4309002"],["-91.173915","30.4305174"],["-91.1738297","30.4304349"],["-91.1736342","30.4302499"],["-91.1732698","30.4299217"],["-91.1729511","30.4296469"],["-91.1727911","30.4295168"],["-91.172399","30.4292095"],["-91.1719193","30.4288515"],["-91.1712973","30.4284242"],["-91.1708945","30.4281631"],["-91.17019","30.4277464"],["-91.1698378","30.427552"],["-91.1696096","30.4274331"],["-91.1694386","30.4273459"],["-91.1692806","30.4272666"],["-91.1691352","30.4271952"],["-91.1690074","30.4271343"],["-91.1688645","30.4270671"],["-91.1687656","30.4270239"],["-91.1681692","30.4267602"],["-91.1679066","30.4266549"],["-91.1674808","30.4264898"],["-91.1672853","30.4264187"],["-91.1671048","30.426352"],["-91.1669082","30.4262835"],["-91.1664982","30.4261502"],["-91.1662323","30.4260666"],["-91.1659005","30.4259671"],["-91.1654526","30.4258579"],["-91.1644281","30.4256366"],["-91.1628507","30.4253775"],["-91.1561964","30.4246713"],["-91.1299926","30.4218586"],["-91.1271736","30.421518"],["-91.1253635","30.4211586"],["-91.1237456","30.4208059"],["-91.1232135","30.4206722"],["-91.1229399","30.4205768"],["-91.1225509","30.4204141"],["-91.1220629","30.4201577"],["-91.1194641","30.4184695"],["-91.1187652","30.4181843"],["-91.1179667","30.4179363"],["-91.1168323","30.4176644"],["-91.1155502","30.4173597"],["-91.1143647","30.4169911"],["-91.1139061","30.4168149"],["-91.1134764","30.4166082"],["-91.1132383","30.41648"],["-91.1129264","30.416301"],["-91.1125938","30.4160964"],["-91.1117984","30.4155778"],["-91.1110219","30.4150379"],["-91.1102632","30.4144938"],["-91.1097393","30.4141031"],["-91.0977165","30.4044346"],["-91.0870918","30.3959681"],["-91.0854621","30.3946999"],["-91.0840367","30.3937376"],["-91.0579487","30.3769031"],["-91.0538495","30.3742228"],["-91.0521248","30.3728557"],["-91.0503952","30.3713047"],["-91.0485045","30.3693357"],["-91.0402099","30.3592533"],["-91.0306183","30.3474423"],["-91.0261124","30.3421079"],["-91.0220866","30.3379655"],["-91.014986","30.3309371"],["-91.0040358","30.320215"],["-91.0021544","30.3183574"],["-91.0011181","30.3173056"],["-91.0003356","30.3164992"],["-90.9995793","30.315612"],["-90.998382","30.3140929"],["-90.9976865","30.3131033"],["-90.996874","30.3118349"],["-90.9958264","30.3099292"],["-90.9953918","30.3090142"],["-90.9949086","30.3080006"],["-90.9942751","30.3062986"],["-90.993289","30.3028057"],["-90.9895377","30.282"],["-90.9887469","30.2783376"],["-90.9880297","30.2758569"],["-90.9875764","30.2744069"],["-90.9872239","30.2733772"],["-90.9865589","30.271641"],["-90.9855976","30.2693798"],["-90.984668","30.2674014"],["-90.9835239","30.2651973"],["-90.9696154","30.2400967"],["-90.9687723","30.2385411"],["-90.9671391","30.2356324"],["-90.9652914","30.2325927"],["-90.9639636","30.2305899"],["-90.9626164","30.2287549"],["-90.9610849","30.2268289"],["-90.9449709","30.2073277"],["-90.9431083","30.2052761"],["-90.9421634","30.2043846"],["-90.9403395","30.2028268"],["-90.9391005","30.2018636"],["-90.9367926","30.2003093"],["-90.9356081","30.1996054"],["-90.9334101","30.1984811"],["-90.9277543","30.1957114"],["-90.9241006","30.1939358"],["-90.881461","30.1734348"],["-90.8780511","30.172047"],["-90.875738","30.1712148"],["-90.8733437","30.1704649"],["-90.820398","30.1559251"],["-90.8172687","30.1551825"],["-90.8146511","30.1547404"],["-90.7821367","30.1496416"],["-90.7793187","30.1491292"],["-90.7744996","30.1480382"],["-90.7718057","30.147261"],["-90.7641539","30.1449725"],["-90.7449148","30.1391756"],["-90.7036709","30.1267033"],["-90.7000986","30.1257297"],["-90.6985","30.1253709"],["-90.6944301","30.1245974"],["-90.6901399","30.1240343"],["-90.5061285","30.1073302"],["-90.5036301","30.1069486"],["-90.5017454","30.1065502"],["-90.4998762","30.1060854"],["-90.4923154","30.1036757"],["-90.4902506","30.1030049"],["-90.4656537","30.0952781"],["-90.4065413","30.0783531"],["-90.4055844","30.0779908"],["-90.4048641","30.0776404"],["-90.4036517","30.0768858"],["-90.3168748","30.0180995"],["-90.3073528","30.0116902"],["-90.3053009","30.0105079"],["-90.304389","30.0100581"],["-90.3032093","30.0095155"],["-90.3018937","30.0089593"],["-90.3002301","30.008343"],["-90.2987078","30.0078137"],["-90.297802","30.0075504"],["-90.2958741","30.007079"],["-90.2946306","30.0068159"],["-90.2934289","30.0066121"],["-90.2920217","30.0064098"],["-90.2905103","30.0062549"],["-90.2885131","30.0061121"],["-90.2861798","30.0060874"],["-90.2831878","30.0062003"],["-90.2436116","30.009279"],["-90.2419453","30.0093075"],["-90.240652","30.0092429"],["-90.2140276","30.0074953"],["-90.2136014","30.0074372"],["-90.2132254","30.0073688"],["-90.2128067","30.0072682"],["-90.2123053","30.0071232"],["-90.211902","30.0069893"],["-90.2114741","30.0068228"],["-90.2110256","30.0066187"],["-90.2105396","30.006373"],["-90.2100336","30.0060755"],["-90.2048729","30.002854"],["-90.2040981","30.0023814"],["-90.2035667","30.0020774"],["-90.2030919","30.0018213"],["-90.2025591","30.0015479"],["-90.20199","30.0012842"],["-90.2013447","30.0010143"],["-90.2006089","30.0007398"],["-90.1996234","30.0004049"],["-90.1986489","30.0001408"],["-90.1971528","29.9998353"],["-90.1964291","29.9997288"],["-90.1958676","29.9996611"],["-90.1939491","29.9995277"],["-90.1259487","29.9960599"],["-90.1234046","29.9957389"],["-90.1228399","29.995657"],["-90.1222884","29.9955648"],["-90.1215577","29.9954235"],["-90.120666","29.9951793"],["-90.1199647","29.994907"],["-90.1193843","29.9946664"],["-90.1187339","29.9943063"],["-90.1185097","29.9941401"],["-90.1181872","29.9939195"],["-90.117848","29.9936582"],["-90.1175611","29.9934011"],["-90.1171265","29.9929038"],["-90.1169148","29.9925929"],["-90.1167648","29.9923374"],["-90.1165949","29.991951"],["-90.1164837","29.9916237"],["-90.1164036","29.9912901"],["-90.116346","29.9909489"],["-90.1163282","29.9906758"],["-90.1163345","29.9901406"],["-90.1163641","29.9891166"],["-90.1163671","29.9885874"],["-90.1162643","29.9877166"],["-90.1161654","29.9872064"],["-90.1160954","29.9869009"],["-90.1160252","29.9866761"],["-90.1134148","29.9799378"],["-90.1116738","29.9756348"],["-90.1114547","29.9750307"],["-90.1110684","29.9738349"],["-90.1108738","29.9732045"],["-90.1107255","29.972756"],["-90.1104233","29.9721146"],["-90.1090898","29.9695086"],["-90.1088544","29.9690974"],["-90.1086613","29.9688041"],["-90.1083946","29.9684754"],["-90.1077965","29.9679066"],["-90.1057182","29.9659586"],["-90.1053041","29.9655868"],["-90.1050516","29.9653853"],["-90.1048387","29.9652225"],["-90.1046054","29.965049"],["-90.1020879","29.9632924"],["-90.1018682","29.9631186"],["-90.1006204","29.962206"],["-90.0996445","29.9615026"],["-90.0939987","29.9574938"],["-90.0936513","29.957236"],["-90.0933172","29.9568585"],["-90.0930653","29.9565527"],["-90.0927162","29.9561864"],["-90.0923507","29.9558204"],["-90.0922842","29.9557717"],["-90.0919434","29.9555415"],["-90.0916061","29.9553657"],["-90.0912733","29.9552254"],["-90.0908711","29.9550883"],["-90.0906789","29.9550372"],["-90.0905152","29.9550036"],["-90.0881936","29.954573"],["-90.0869293","29.9543422"],["-90.0852907","29.9541089"],["-90.0838166","29.9538607"],["-90.0835721","29.9537807"],["-90.0834427","29.9537177"],["-90.0831207","29.9535517"],["-90.08304","29.9535115"],["-90.0828709","29.9534434"],["-90.0828157","29.9534244"],["-90.0826216","29.9533635"],["-90.0824944","29.9534425"],["-90.0816195","29.9530626"],["-90.0811402","29.9528339"],["-90.0805644","29.9525833"],["-90.0786268","29.9517808"],["-90.0782662","29.9516165"],["-90.0775842","29.9513291"],["-90.0751917","29.9505364"],["-90.0749538","29.9504675"],["-90.0724029","29.9498941"],["-90.0720735","29.94982"],["-90.0718796","29.9497845"],["-90.0714038","29.9513797"],["-90.0725984","29.9517665"],["-90.0736141","29.9521209"],["-90.0737316","29.9521804"],["-90.0734347","29.9532012"],["-90.0733827","29.9534284"],["-90.0733556","29.9535897"],["-90.0733173","29.9537135"],["-90.0732509","29.9537945"],["-90.073757","29.9540479"],["-90.0738796","29.9541272"],["-90.0739661","29.9541952"],["-90.0740568","29.9542771"],["-90.0741741","29.954362"],["-90.0743359","29.9544362"],["-90.0745301","29.9545228"],["-90.0748212","29.9546527"],["-90.0751542","29.9548191"],["-90.0754639","29.9549697"],["-90.0769066","29.9556386"],["-90.0786765","29.9564203"],["-90.0788488","29.9566116"],["-90.0789046","29.9566872"],["-90.0789375","29.9567465"],["-90.0789634","29.9568018"],["-90.0789829","29.9568592"],["-90.0789985","29.9569246"],["-90.0790016","29.9569826"],["-90.0789994","29.9570323"],["-90.0789944","29.9570807"],["-90.0789871","29.9571283"],["-90.0789723","29.9571856"],["-90.0789483","29.9572449"],["-90.0789154","29.9573028"],["-90.0788885","29.9573441"],["-90.0788586","29.9573853"],["-90.0787996","29.9574534"],["-90.0786265","29.9576432"],["-90.0785436","29.9577391"],["-90.0784879","29.9578202"],["-90.0784477","29.95789"],["-90.0784183","29.957956"],["-90.0783388","29.9581484"],["-90.0782853","29.9582687"],["-90.0782415","29.958354"],["-90.0781994","29.9584268"],["-90.0781414","29.9585069"],["-90.0777336","29.9590117"],["-90.0767877","29.9601273"],["-90.0680971","29.9698781"],["-90.0672352","29.9708643"],["-90.065949","29.9722705"],["-90.065146","29.973165"],["-90.0627642","29.9758023"],["-90.0620212","29.9766342"],["-90.0614396","29.977225"],["-90.0609509","29.9776779"],["-90.0601468","29.9784107"],["-90.0593147","29.9790727"],["-90.0559856","29.9817535"],["-90.0545423","29.9829559"],["-90.0542769","29.9832085"],["-90.0540608","29.983434"],["-90.0537783","29.9837573"],["-90.0534599","29.9841777"],["-90.0531808","29.9846967"],["-90.0530056","29.9850597"],["-90.0528914","29.985391"],["-90.0527785","29.9858122"],["-90.0526486","29.9864599"],["-90.0525161","29.9871246"],["-90.0523668","29.9877685"],["-90.0522323","29.9881692"],["-90.0520148","29.9886556"],["-90.0516774","29.9892126"],["-90.0510915","29.9899293"],["-90.0449043","29.9967987"],["-90.0442998","29.9974287"],["-90.043042","29.9986118"],["-90.04225","29.9992686"],["-90.0414818","29.999867"],["-90.0407388","30.0003979"],["-90.0401699","30.00078"],["-90.0390741","30.0014623"],["-90.0384117","30.0017914"],["-90.0377981","30.0020769"],["-90.037327","30.0022596"],["-90.0368246","30.0024295"],["-90.0361584","30.002633"],["-90.0355457","30.0027844"],["-90.0304201","30.0038852"],["-90.0182595","30.0066093"],["-90.0162753","30.0070759"],["-90.0156983","30.0072687"],["-90.0151462","30.007524"],["-90.0146832","30.0077973"],["-90.0143428","30.0080528"],["-90.0141505","30.0082137"],["-90.0139765","30.0083887"],["-90.0134917","30.0090354"],["-90.0133903","30.009201"],["-90.0132924","30.0093801"],["-90.0132026","30.0095654"],["-90.0131224","30.0097604"],["-90.0130542","30.0099534"],["-90.0129935","30.010152"],["-90.0129416","30.0103725"],["-90.0129054","30.0105928"],["-90.0128744","30.0108714"],["-90.0128549","30.0113519"],["-90.0133074","30.0161015"],["-90.0138366","30.0216742"],["-90.0138873","30.0221961"],["-90.0138961","30.0224101"],["-90.013897","30.0225793"],["-90.013889","30.0227172"],["-90.0138746","30.0228744"],["-90.0138531","30.0230259"],["-90.0138242","30.0231563"],["-90.0137784","30.0233204"],["-90.0136909","30.0235897"],["-90.013591","30.0238242"],["-90.0134796","30.0240283"],["-90.0133421","30.0242557"],["-90.0131441","30.0245414"],["-90.0129938","30.0247263"],["-90.0128259","30.0249168"],["-90.0126364","30.0250907"],["-90.0124359","30.0252509"],["-90.0121805","30.0254182"],["-90.0116816","30.0257057"],["-90.0113625","30.0258364"],["-90.0110083","30.025955"],["-90.0106824","30.0260414"],["-90.0103264","30.026121"],["-90.0097326","30.0262264"],["-90.0078112","30.026538"],["-89.9984953","30.0281998"],["-89.9974225","30.0284583"],["-89.996995","30.0285922"],["-89.9955661","30.0290764"],["-89.9938735","30.0297408"],["-89.9820404","30.0345389"],["-89.9807449","30.0350484"],["-89.979851","30.0354231"],["-89.9759552","30.0370386"],["-89.975326","30.0373334"],["-89.9738306","30.0381184"],["-89.9731601","30.0385127"],["-89.9726979","30.0387982"],["-89.971672","30.0394192"],["-89.9661936","30.0428765"],["-89.964155","30.0441765"],["-89.9635396","30.0445546"],["-89.9614069","30.0458973"],["-89.9596941","30.0469819"],["-89.9586017","30.0477131"],["-89.9582732","30.0479187"],["-89.9578935","30.0481412"],["-89.9572111","30.0485554"],["-89.9359992","30.0619419"],["-89.9354899","30.062283"],["-89.9350787","30.0626101"],["-89.934734","30.0629126"],["-89.9344174","30.0632213"],["-89.9334328","30.0643262"],["-89.9317289","30.0662518"],["-89.9198274","30.0795907"],["-89.9188032","30.0807303"],["-89.8781818","30.1264004"],["-89.8692652","30.1374465"],["-89.8651666","30.1425212"],["-89.8604941","30.1483957"],["-89.8595791","30.1494173"],["-89.8582175","30.1508402"],["-89.8572687","30.1517613"],["-89.8567542","30.1522243"],["-89.8548686","30.1537048"],["-89.8525956","30.1553482"],["-89.8518194","30.15593"],["-89.8509083","30.1566907"],["-89.8489306","30.1585129"],["-89.8405387","30.1664399"],["-89.8353624","30.1713111"],["-89.7975189","30.2070865"],["-89.795761","30.2088797"],["-89.7947394","30.210103"],["-89.7940389","30.2109809"],["-89.7934247","30.2117717"],["-89.7925578","30.212914"],["-89.791923","30.2135862"],["-89.7775465","30.2272138"],["-89.7756238","30.2290347"],["-89.7741906","30.230401"],["-89.7723554","30.2321384"],["-89.7710859","30.2334341"],["-89.7701793","30.2344524"],["-89.7694626","30.2353274"],["-89.7683791","30.2367872"],["-89.7678079","30.2376317"],["-89.7671595","30.2386732"],["-89.7665902","30.2396736"],["-89.7660189","30.2407708"],["-89.7654853","30.2419128"],["-89.7651093","30.2427969"],["-89.7646655","30.2439478"],["-89.7642979","30.2448862"],["-89.7531269","30.2748175"],["-89.7526259","30.2761612"],["-89.7513341","30.2795931"],["-89.7465809","30.2923447"],["-89.7462365","30.29325"],["-89.7456842","30.2947455"],["-89.7441263","30.2988995"],["-89.7438707","30.2994382"],["-89.743573","30.2999849"],["-89.742884","30.3009362"],["-89.7426023","30.3012803"],["-89.7422429","30.3016834"],["-89.7419197","30.3020304"],["-89.7416248","30.3023206"],["-89.7413018","30.3026092"],["-89.7409804","30.3028759"],["-89.7406899","30.3031006"],["-89.7403779","30.3033034"],["-89.7397615","30.3036591"],["-89.7393997","30.3038171"],["-89.7390744","30.3039381"],["-89.7386893","30.304064"],["-89.738274","30.3041715"],["-89.7379165","30.3042397"],["-89.7375376","30.3042927"],["-89.7371809","30.3043216"],["-89.7368679","30.3043381"],["-89.7362764","30.3043109"],["-89.7359451","30.3042834"],["-89.7355448","30.3042185"],["-89.7351067","30.304133"],["-89.7324144","30.3035591"],["-89.7307177","30.3031358"],["-89.7159309","30.2990277"],["-89.7151727","30.2988446"],["-89.7143989","30.2986714"],["-89.7136566","30.2985134"],["-89.712579","30.2983325"],["-89.7112869","30.2981387"],["-89.7100735","30.2979958"],["-89.7085442","30.2978737"],["-89.7073083","30.2977995"],["-89.6768288","30.2967221"],["-89.6742143","30.2967077"],["-89.6716491","30.2968482"],["-89.6705119","30.2969605"],["-89.6680702","30.2973165"],["-89.6660491","30.2977312"],["-89.6292427","30.3061462"],["-89.628336","30.3063524"],["-89.626386","30.3068627"],["-89.5969789","30.3157707"],["-89.5944993","30.3165312"],["-89.5932635","30.3169042"],["-89.5726437","30.3232236"],["-89.5463202","30.3312692"],["-89.5452996","30.3315693"],["-89.5437225","30.3320261"],["-89.543337","30.3321225"],["-89.5429189","30.3322153"],["-89.5424493","30.3323051"],["-89.5419041","30.3323986"],["-89.5413804","30.3324774"],["-89.5403538","30.3325855"],["-89.539829","30.3326179"],["-89.5383988","30.332651"],["-89.5377288","30.332628"],["-89.5370552","30.3325825"],["-89.5360262","30.3324745"],["-89.5351548","30.332338"],["-89.5342956","30.332164"],["-89.532935","30.3318197"],["-89.5314977","30.3314472"],["-89.5309104","30.3313139"],["-89.5303653","30.3312075"],["-89.5299338","30.3311342"],["-89.5289002","30.3309934"],["-89.5282226","30.3309313"],["-89.5276923","30.3308931"],["-89.5268383","30.3308649"],["-89.5262075","30.3308664"],["-89.5255036","30.3308882"],["-89.524087","30.3310041"],["-89.5235349","30.331076"],["-89.5229681","30.3311649"],["-89.5225094","30.3312449"],["-89.5221034","30.3313288"],["-89.5204758","30.3317238"],["-89.4613597","30.3465248"],["-89.4579598","30.3474836"],["-89.4171383","30.3600646"],["-89.415809","30.3605106"],["-89.4144346","30.360976"],["-89.3911376","30.3681028"],["-89.3900048","30.3684325"],["-89.3744195","30.3732157"],["-89.3719113","30.3739913"],["-89.3250725","30.3884299"],["-89.3233857","30.3890806"],["-89.3222731","30.3895823"],["-89.3213449","30.3900236"],["-89.3205873","30.390445"],["-89.3080211","30.3976607"],["-89.3074988","30.3979756"],["-89.3071262","30.3981781"],["-89.3067213","30.3983879"],["-89.3058672","30.3987831"],["-89.3053203","30.399026"],["-89.3048409","30.3992192"],["-89.304287","30.3994203"],["-89.3036834","30.3996186"],["-89.3030615","30.3997994"],["-89.3021039","30.4000514"],["-89.3016353","30.4001511"],["-89.3012178","30.4002296"],["-89.2998958","30.4004289"],["-89.2885708","30.402066"],["-89.2803204","30.4032593"],["-89.2773334","30.4036442"],["-89.275754","30.4037614"],["-89.2735852","30.4038284"],["-89.2724662","30.4038154"],["-89.2695287","30.4036504"],["-89.2621396","30.4030668"],["-89.2528511","30.4030658"],["-89.2401663","30.403144"],["-89.2382643","30.4032644"],["-89.2364922","30.4034555"],["-89.2356647","30.4035646"],["-89.2341633","30.4038222"],["-89.2325067","30.4041603"],["-89.2317172","30.4043507"],["-89.2311102","30.4045015"],["-89.2299275","30.4048412"],["-89.2290607","30.4051151"],["-89.228068","30.4054513"],["-89.2012979","30.4154882"],["-89.1998779","30.4159941"],["-89.1993418","30.4161463"],["-89.1982775","30.4163903"],["-89.1977118","30.4164974"],["-89.1969562","30.4166166"],["-89.1960978","30.4167184"],["-89.1953166","30.4167766"],["-89.1788324","30.4169632"],["-89.1755154","30.4170379"],["-89.1745994","30.4171035"],["-89.1738781","30.4171636"],["-89.1728278","30.4172831"],["-89.1717563","30.417427"],["-89.171014","30.4175385"],["-89.1697857","30.4177695"],["-89.1430661","30.4236058"],["-89.1426197","30.4236863"],["-89.1411047","30.4239146"],["-89.1405999","30.4239649"],["-89.1390921","30.4240559"],["-89.137865","30.4240777"],["-89.1337787","30.4240454"],["-89.1315372","30.4240313"],["-89.1307598","30.4240591"],["-89.1280983","30.4242611"],["-89.1269333","30.4243967"],["-89.1232818","30.4250442"],["-89.1224254","30.4252538"],["-89.094965","30.4322564"],["-89.0933862","30.4326808"],["-89.0927053","30.4328561"],["-89.0754226","30.437453"],["-89.072806","30.4380104"],["-89.0304701","30.4443684"],["-89.0263936","30.4451532"],["-88.9986586","30.4499268"],["-88.9975401","30.4501066"],["-88.9969342","30.4502301"],["-88.9963683","30.4503637"],["-88.9958349","30.4505067"],["-88.9953439","30.450652"],["-88.9947923","30.4508294"],["-88.9942846","30.4510029"],["-88.9937744","30.4512047"],["-88.9932161","30.451441"],["-88.9926453","30.4517011"],["-88.9921867","30.451931"],["-88.9916618","30.4522137"],["-88.9911713","30.4524957"],["-88.9906268","30.4528334"],["-88.9840989","30.4573135"],["-88.9837779","30.4575158"],["-88.9828633","30.4580569"],["-88.9823469","30.4583278"],["-88.9818307","30.4585786"],["-88.981349","30.458797"],["-88.9807947","30.4590352"],["-88.9803178","30.4592212"],["-88.9798296","30.4593958"],["-88.9790199","30.4596595"],["-88.9785249","30.4597966"],["-88.9779878","30.4599347"],["-88.9768885","30.4601712"],["-88.9757707","30.4603459"],["-88.9748007","30.4604468"],["-88.9744395","30.4604697"],["-88.9737963","30.4605003"],["-88.9732754","30.4605113"],["-88.961437","30.4605152"],["-88.9606085","30.4605036"],["-88.960062","30.4604785"],["-88.9590005","30.4603969"],["-88.9585517","30.4603427"],["-88.9575469","30.460187"],["-88.9570459","30.460093"],["-88.9565245","30.4599778"],["-88.9555702","30.4597325"],["-88.9550063","30.4595607"],["-88.9538404","30.4591568"],["-88.9530599","30.4588356"],["-88.9524589","30.4585625"],["-88.9520075","30.4583359"],["-88.9506669","30.4575944"],["-88.9433588","30.4534934"],["-88.9388084","30.451039"],["-88.9373672","30.4503622"],["-88.9359003","30.4497687"],["-88.9348802","30.4493843"],["-88.9339035","30.4490467"],["-88.9326257","30.4486603"],["-88.9305309","30.448086"],["-88.9296303","30.4478871"],["-88.9289112","30.447742"],["-88.9262353","30.447329"],["-88.9246309","30.4471633"],["-88.9237797","30.4470963"],["-88.9221581","30.4470188"],["-88.9214305","30.4470038"],["-88.9206612","30.4470048"],["-88.9191487","30.4470446"],["-88.9172579","30.4471759"],["-88.9156525","30.447352"],["-88.9139489","30.4476083"],["-88.9131588","30.4477518"],["-88.9113093","30.4481476"],["-88.9104706","30.4483641"],["-88.9096576","30.4485832"],["-88.9087485","30.4487613"],["-88.9075597","30.4490445"],["-88.9065551","30.4493415"],["-88.905103","30.4498155"],["-88.9012389","30.451153"],["-88.9004748","30.4513612"],["-88.8999581","30.4514175"],["-88.8995785","30.4514313"],["-88.89931","30.451424"],["-88.8990328","30.4514039"],["-88.8987633","30.4513686"],["-88.8984727","30.4513021"],["-88.8980451","30.4511581"],["-88.8977149","30.4510163"],["-88.8974159","30.4508724"],["-88.8971145","30.4506857"],["-88.896776","30.4504489"],["-88.8965243","30.4502327"],["-88.8963286","30.4500556"],["-88.8961231","30.4498364"],["-88.895977","30.4496558"],["-88.8958107","30.4493974"],["-88.8956507","30.4491296"],["-88.8955166","30.4488517"],["-88.8954101","30.4485669"],["-88.8953345","30.4483245"],["-88.8952691","30.4480863"],["-88.8952159","30.4477482"],["-88.8951164","30.4471831"],["-88.8949879","30.4337598"],["-88.8949765","30.4326179"],["-88.8949265","30.4303841"],["-88.8941616","30.4162536"],["-88.8941939","30.4142322"],["-88.8942063","30.4139004"],["-88.8942273","30.4136718"],["-88.8942678","30.4133443"],["-88.894325","30.4129015"],["-88.89438","30.4124593"],["-88.894417","30.4120117"],["-88.8944114","30.4117027"],["-88.8943708","30.4115838"],["-88.8936049","30.4115873"],["-88.8931053","30.4115943"],["-88.8928356","30.4115612"],["-88.8927109","30.4115494"],["-88.8926238","30.411527"],["-88.8925471","30.4114854"],["-88.8925157","30.4114546"],["-88.8924904","30.4114276"],["-88.892448","30.4113745"],["-88.8923889","30.4112606"],["-88.892398","30.4109369"],["-88.8923934","30.4105814"],["-88.8923501","30.4099557"],["-88.8923328","30.4096874"],["-88.8923128","30.4089013"],["-88.8922723","30.4062269"],["-88.8921771","30.3994311"],["-88.8921788","30.3992138"],["-88.8921607","30.3990693"],["-88.892172","30.3989642"],["-88.8921815","30.3988707"],["-88.8921567","30.3987577"],["-88.8904546","30.3987772"],["-88.8901736","30.3987988"],["-88.8899441","30.3988119"],["-88.8882312","30.3988522"],["-88.8882069","30.3983079"],["-88.888206","30.397959"],["-88.8882068","30.3978079"],["-88.8882235","30.3977698"],["-88.8882477","30.3977309"],["-88.8883749","30.3975865"],["-88.8883682","30.3975766"],["-88.8881755","30.3974497"],["-88.888028","30.3973732"],["-88.887903","30.3973288"],["-88.887776","30.397296"],["-88.8876168","30.3972791"],["-88.8871497","30.3972777"],["-88.8871476","30.3973821"],["-88.8871744","30.398875"],["-88.8899283","30.3988125"],["-88.8901793","30.3987982"],["-88.8904453","30.3987774"],["-88.892158","30.3987578"],["-88.8921815","30.3988713"],["-88.8921721","30.3989637"],["-88.8921558","30.3990693"],["-88.8920815","30.399217"],["-88.8920424","30.3994515"],["-88.8920166","30.3996688"],["-88.8920068","30.3998496"],["-88.8920613","30.4031798"],["-88.892219","30.403186"],["-88.8939252","30.4031965"],["-88.8939906","30.4035578"],["-88.894047","30.403833"],["-88.8941052","30.4041085"],["-88.8941678","30.4044236"],["-88.8942132","30.4048098"],["-88.8942192","30.4052501"],["-88.8941967","30.4060418"],["-88.8941763","30.406861"],["-88.8941332","30.4074454"],["-88.8941511","30.4077726"],["-88.8939329","30.4099483"],["-88.8938366","30.4126807"],["-88.8944253","30.4234435"],["-88.8946023","30.4264581"],["-88.8946819","30.4279051"],["-88.8947193","30.4287907"],["-88.894765","30.4323594"],["-88.8947592","30.4334159"],["-88.8948342","30.4389582"],["-88.8948515","30.4426137"],["-88.8946559","30.4439831"],["-88.894622","30.4444168"],["-88.8946091","30.4446678"],["-88.8946119","30.4449564"],["-88.8946596","30.4500846"],["-88.8946533","30.4504551"],["-88.8946168","30.450729"],["-88.8945621","30.4509601"],["-88.894461","30.4511802"],["-88.8943484","30.4514113"],["-88.8942285","30.4516041"],["-88.8940888","30.4518195"],["-88.8939502","30.4520205"],["-88.8937538","30.4522679"],["-88.8935807","30.4524467"],["-88.8934698","30.4525449"],["-88.8933582","30.4526361"],["-88.8930738","30.4528459"],["-88.8927781","30.4530293"],["-88.8924726","30.4531887"],["-88.8921724","30.4533162"],["-88.891911","30.4534186"],["-88.891603","30.4535078"],["-88.8913063","30.4535685"],["-88.8910504","30.4536112"],["-88.8907524","30.4536309"],["-88.8902554","30.4536483"],["-88.8894606","30.4536678"],["-88.8884239","30.4537296"],["-88.8114305","30.4542821"],["-88.8108813","30.4543054"],["-88.8102872","30.4543476"],["-88.809671","30.4544042"],["-88.8090672","30.4544808"],["-88.8084111","30.4545842"],["-88.8066598","30.4549407"],["-88.7900848","30.4584321"],["-88.7892669","30.4585968"],["-88.7886767","30.4587001"],["-88.7882309","30.4587646"],["-88.7877681","30.4588217"],["-88.7868163","30.4589081"],["-88.7863347","30.4589338"],["-88.7857597","30.4589486"],["-88.7851755","30.4589482"],["-88.7846165","30.4589332"],["-88.7840286","30.4589042"],["-88.7834808","30.4588608"],["-88.7827851","30.4587828"],["-88.7823766","30.4587219"],["-88.7818128","30.4586323"],["-88.7808513","30.4584457"],["-88.7798997","30.4581978"],["-88.7793977","30.4580555"],["-88.7782425","30.4576693"],["-88.7478925","30.4471408"],["-88.7471823","30.4469178"],["-88.7465402","30.4467477"],["-88.7457661","30.4465629"],["-88.7449557","30.4464103"],["-88.7442","30.4462955"],["-88.7436836","30.4462298"],["-88.7430905","30.4461724"],["-88.7425838","30.4461396"],["-88.7419517","30.4461165"],["-88.7413953","30.4461101"],["-88.7408761","30.4461138"],["-88.7403427","30.4461367"],["-88.7372044","30.4463469"],["-88.7359041","30.4464177"],["-88.7354182","30.4464265"],["-88.7348315","30.4464231"],["-88.7342689","30.4463972"],["-88.7336744","30.4463563"],["-88.7331159","30.4463058"],["-88.732608","30.4462442"],["-88.7316521","30.4460914"],["-88.7311859","30.4460017"],["-88.7306644","30.4458866"],["-88.7301258","30.4457539"],["-88.7297014","30.4456397"],["-88.7290949","30.4454473"],["-88.7278836","30.445023"],["-88.6956914","30.433437"],["-88.6932055","30.4325544"],["-88.6926309","30.4323811"],["-88.6920913","30.4322349"],["-88.691574","30.4321097"],["-88.6910357","30.4319933"],["-88.6905839","30.4319084"],["-88.6900647","30.4318246"],["-88.6896305","30.431763"],["-88.6890994","30.4317014"],["-88.6886481","30.43166"],["-88.6880862","30.4316199"],["-88.687573","30.431599"],["-88.6869953","30.4315899"],["-88.6864068","30.4315972"],["-88.6858857","30.4316148"],["-88.685326","30.4316529"],["-88.6313701","30.4372274"],["-88.6279493","30.4374362"],["-88.5534993","30.4380947"],["-88.552463","30.4381333"],["-88.5503571","30.4382703"],["-88.5496336","30.4383577"],["-88.5398987","30.4396261"],["-88.5333268","30.4405006"],["-88.5322476","30.440686"],["-88.5315977","30.4408235"],["-88.5308857","30.4409903"],["-88.5303349","30.4411353"],["-88.5291528","30.4414904"],["-88.5282944","30.4417975"],["-88.4991018","30.4544345"],["-88.4985981","30.4546338"],["-88.4980854","30.4548199"],["-88.497753","30.4549365"],["-88.49701","30.4551702"],["-88.4966622","30.4552728"],["-88.4958515","30.4554855"],["-88.4955172","30.4555672"],["-88.4949238","30.455698"],["-88.4939902","30.455871"],["-88.4934391","30.4559553"],["-88.4928441","30.4560333"],["-88.4922775","30.4560933"],["-88.4916052","30.4561486"],["-88.4604145","30.4576488"],["-88.4378376","30.4603351"],["-88.4353959","30.4606922"],["-88.4346733","30.4608218"],["-88.4342158","30.4609105"],["-88.4337592","30.46101"],["-88.433318","30.4611109"],["-88.4319837","30.4614421"],["-88.4307327","30.4617919"],["-88.4301757","30.4619669"],["-88.4288085","30.4624264"],["-88.4281545","30.4626662"],["-88.4034038","30.4729589"],["-88.3981059","30.4751788"],["-88.3975886","30.4753945"],["-88.3871181","30.479762"],["-88.386694","30.4799394"],["-88.331857","30.4969545"],["-88.3318193","30.4969617"],["-88.3233096","30.4986531"],["-88.3118514","30.5013158"],["-88.3104126","30.5017655"],["-88.3060135","30.5033261"],["-88.2236338","30.5450433"],["-88.2196003","30.5472056"],["-88.1840544","30.5729931"],["-88.1652946","30.5835557"],["-88.1647196","30.5838722"],["-88.1639852","30.5843085"],["-88.1635661","30.5845736"],["-88.163167","30.5848385"],["-88.1628403","30.5850638"],["-88.162466","30.5853321"],["-88.1621044","30.5856027"],["-88.1617428","30.5858851"],["-88.1614348","30.5861336"],["-88.1604376","30.5870045"],["-88.1598391","30.58758"],["-88.1589489","30.5885179"],["-88.158637","30.5888695"],["-88.1583962","30.5891511"],["-88.1581196","30.5894962"],["-88.1577677","30.5899624"],["-88.1573096","30.5905981"],["-88.1565039","30.5918731"],["-88.1513166","30.6004686"],["-88.1507208","30.6013914"],["-88.1495524","30.6031051"],["-88.1480998","30.6050757"],["-88.1480148","30.605185"],["-88.1456934","30.6080113"],["-88.1435833","30.6102898"],["-88.1374158","30.6166776"],["-88.1365817","30.6174932"],["-88.1360229","30.618015"],["-88.135382","30.6185498"],["-88.1348402","30.6189939"],["-88.1342614","30.6194622"],["-88.1334386","30.620075"],["-88.1323571","30.6208316"],["-88.1314079","30.6214708"],["-88.1304333","30.6220731"],["-88.1292766","30.6227284"],["-88.1272488","30.6237343"],["-88.1250904","30.6246572"],["-88.1242155","30.6249869"],["-88.1235026","30.6252015"],["-88.1224908","30.6254194"],["-88.1196796","30.625854"],["-88.1190607","30.6259687"],["-88.1186004","30.6260872"],["-88.118198","30.6262121"],["-88.1178041","30.6263445"],["-88.1174515","30.6264844"],["-88.1133838","30.6284044"],["-88.1110735","30.6295046"],["-88.0992274","30.6347895"],["-88.0976157","30.6356267"],["-88.0965417","30.6362286"],["-88.0955538","30.6367982"],["-88.0953052","30.6369632"],["-88.0945918","30.63738"],["-88.0936635","30.6379131"],["-88.0929948","30.6382819"],["-88.092675","30.6384379"],["-88.0923643","30.6385783"],["-88.0911879","30.639069"],["-88.0904372","30.6393837"],["-88.0895692","30.6397874"],["-88.0867405","30.6411958"],["-88.0847207","30.6422737"],["-88.0843017","30.6425216"],["-88.0838439","30.6428096"],["-88.0810535","30.6447608"],["-88.0792583","30.6460492"],["-88.0783662","30.6468452"],["-88.0776207","30.6475764"],["-88.077093","30.6480781"],["-88.0767422","30.6483915"],["-88.0762404","30.6487969"],["-88.0756303","30.6492201"],["-88.0750637","30.649597"],["-88.0742144","30.6500447"],["-88.0721282","30.6510346"],["-88.0715403","30.6513417"],["-88.0712344","30.651543"],["-88.0709089","30.6517712"],["-88.0701381","30.6523464"],["-88.0637175","30.6571743"],["-88.0519863","30.6649536"],["-88.0515001","30.6653528"],["-88.0510924","30.6657177"],["-88.0506887","30.6661649"],["-88.049444","30.6677204"],["-88.0490829","30.6681732"],["-88.0475987","30.670023"],["-88.0468698","30.6709261"],["-88.0466739","30.6711626"],["-88.0456709","30.6723816"],["-88.0452012","30.6730064"],["-88.0449319","30.6734089"],["-88.0446702","30.6738599"],["-88.0444303","30.674309"],["-88.0442402","30.6747025"],["-88.0440997","30.6750186"],["-88.0439721","30.6753429"],["-88.0437352","30.6760843"],["-88.0436027","30.6766705"],["-88.0431878","30.6789763"],["-88.0428353","30.6812245"],["-88.0426531","30.6823094"],["-88.0425598","30.6826779"],["-88.0423622","30.6831928"],["-88.0422351","30.6834093"],["-88.0420991","30.6836458"],["-88.0420385","30.6837436"],["-88.0419668","30.6838495"],["-88.0419063","30.6839334"],["-88.0418278","30.6840363"],["-88.0416917","30.6841978"],["-88.0415404","30.6843553"],["-88.0414525","30.6844419"],["-88.0399252","30.6859166"],["-88.0397104","30.6861385"],["-88.0394963","30.6863556"],["-88.0393399","30.6865252"],["-88.0391857","30.6867172"],["-88.0391099","30.6868199"],["-88.0389859","30.6870165"],["-88.0389302","30.6871124"],["-88.0388782","30.687209"],["-88.0388284","30.687309"],["-88.0387845","30.6874072"],["-88.0387432","30.6875077"],["-88.0387026","30.687613"],["-88.0386685","30.6877094"],["-88.038635","30.6878148"],["-88.0386059","30.687919"],["-88.0385792","30.6880296"],["-88.0385564","30.6881355"],["-88.0385376","30.688242"],["-88.038523","30.6883529"],["-88.0385062","30.6885524"],["-88.0385011","30.68866"],["-88.0384997","30.6887578"],["-88.0385057","30.688902"],["-88.038529","30.6892154"],["-88.0386424","30.6898556"],["-88.038772","30.6903831"],["-88.0388325","30.690633"],["-88.0388593","30.690774"],["-88.0388743","30.6908744"],["-88.0389164","30.6911493"],["-88.0389888","30.6917961"],["-88.0391944","30.6932477"],["-88.0392129","30.6934999"],["-88.0392222","30.6937786"],["-88.0392335","30.6938916"],["-88.039276","30.6941163"],["-88.0393613","30.6945102"],["-88.0395777","30.6954004"],["-88.0396862","30.6956443"],["-88.0398818","30.6960084"],["-88.0399927","30.6961855"],["-88.0402153","30.6965017"],["-88.040428","30.696764"],["-88.0406823","30.6970662"],["-88.0411243","30.6974788"],["-88.0418636","30.6979645"],["-88.0450006","30.699531"],["-88.0451322","30.6997092"],["-88.0451672","30.6997672"],["-88.0451792","30.6998168"],["-88.0451787","30.6998746"],["-88.0451748","30.6999164"],["-88.04515","30.6999701"],["-88.0451163","30.7000264"],["-88.0450369","30.700138"],["-88.0441352","30.7004811"],["-88.0438061","30.7005879"],["-88.0435059","30.7006585"],["-88.0424539","30.7008664"],["-88.0422839","30.7009454"],["-88.0421129","30.7010629"],["-88.0419761","30.7012011"],["-88.0418206","30.7014908"],["-88.0417807","30.7016048"],["-88.0417808","30.7017566"],["-88.041818","30.7019685"],["-88.0418905","30.7021302"],["-88.0421885","30.7024739"],["-88.0427944","30.7031478"],["-88.043339","30.7037558"],["-88.043674","30.7041638"],["-88.0438425","30.7045184"],["-88.0438786","30.7048304"],["-88.0436823","30.7048384"],["-88.0435562","30.7047867"],["-88.0434019","30.7047253"],["-88.0433203","30.7046389"],["-88.0432977","30.7045709"],["-88.0432934","30.7044624"],["-88.0433278","30.7041576"],["-88.0432761","30.7040185"],["-88.0430417","30.703733"],["-88.042734","30.7034129"],["-88.0424733","30.7031903"],["-88.0411905","30.7026466"],["-88.0408129","30.7024787"],["-88.0405896","30.7023365"],["-88.0404453","30.702171"],["-88.0403612","30.7020429"],["-88.0402643","30.7017455"],["-88.0392049","30.6972456"],["-88.0390587","30.6966417"],["-88.0387119","30.6948151"],["-88.0385543","30.6935777"],["-88.0387133","30.6948232"],["-88.0390594","30.6966447"],["-88.0392718","30.6975352"],["-88.0402635","30.7017421"],["-88.0403606","30.7020424"],["-88.040445","30.7021707"],["-88.0405921","30.7023388"],["-88.0408151","30.7024798"],["-88.0412103","30.7026549"],["-88.0424788","30.7031932"],["-88.0427325","30.7034114"],["-88.0430403","30.703732"],["-88.0432746","30.7040162"],["-88.0433276","30.7041562"],["-88.0432935","30.7044613"],["-88.0432978","30.7045706"],["-88.0433199","30.7046384"],["-88.0434022","30.7047255"],["-88.0435565","30.7047867"],["-88.043684","30.7048388"],["-88.0438786","30.7048304"],["-88.0438422","30.704518"],["-88.0436745","30.7041652"],["-88.0433468","30.7037651"],["-88.042719","30.7030642"],["-88.0422161","30.7025045"],["-88.0418884","30.7021272"],["-88.0418183","30.7019692"],["-88.0417806","30.7017578"],["-88.0417808","30.7016045"],["-88.0418213","30.7014892"],["-88.0419768","30.7012003"],["-88.0421136","30.7010624"],["-88.0422833","30.7009456"],["-88.0424488","30.7008678"],["-88.0434952","30.7006609"],["-88.0438126","30.7005861"],["-88.0441506","30.7004756"],["-88.0450703","30.7001314"],["-88.0456494","30.6999186"],["-88.0456534","30.6998167"],["-88.0456304","30.699716"],["-88.0455999","30.6996571"],["-88.0455636","30.6995997"],["-88.0454511","30.699481"],["-88.0419169","30.6976527"],["-88.0417577","30.69756"],["-88.0415759","30.697447"],["-88.0414327","30.6973395"],["-88.041283","30.6972139"],["-88.0411457","30.6970873"],["-88.0409465","30.6968727"],["-88.0405215","30.6963611"],["-88.0402009","30.695941"],["-88.04011","30.6957918"],["-88.0399932","30.6955622"],["-88.0399114","30.6953664"],["-88.0398345","30.6951189"],["-88.0394231","30.693371"],["-88.0393132","30.6927724"],["-88.0390936","30.6909715"],["-88.0390441","30.6905771"],["-88.0389909","30.6903523"],["-88.0388455","30.6897881"],["-88.0388872","30.6895122"],["-88.0394491","30.6893147"],["-88.0412354","30.6887731"],["-88.0418346","30.688582"],["-88.0435089","30.68811"],["-88.0439975","30.6891835"],["-88.0432208","30.6894469"],["-88.0421534","30.6897493"],["-88.0420092","30.6897691"],["-88.0413762","30.6899686"],["-88.0411743","30.6900442"],["-88.030893","30.6929943"],["-88.030746","30.6930135"],["-88.0306007","30.6930272"],["-88.030469","30.6930396"],["-88.0303716","30.693011"],["-88.0302504","30.6929982"],["-88.0301476","30.692977"],["-88.0300362","30.692948"],["-88.0298795","30.6928912"],["-88.0297588","30.6928271"],["-88.0295976","30.6927387"],["-88.0290983","30.6924281"],["-88.0285837","30.692167"],["-88.0268183","30.691311"],["-88.0265494","30.6911799"],["-88.0263791","30.6911127"],["-88.0262234","30.6910723"],["-88.025982","30.6910571"],["-88.0257831","30.6910909"],["-88.0251766","30.6912847"],["-88.0248577","30.6913377"],["-88.0245473","30.6913599"],["-88.024329","30.6913416"],["-88.0236745","30.6912196"],["-88.0000761","30.6845529"],["-87.99879","30.6841322"],["-87.9973618","30.6836106"],["-87.9961136","30.6830972"],["-87.9949454","30.6825805"],["-87.9932641","30.6817296"],["-87.9917875","30.6809135"],["-87.9912243","30.6805703"],["-87.9905205","30.6801228"],["-87.989571","30.679487"],["-87.9887603","30.6789109"],["-87.9854679","30.6764838"],["-87.9847252","30.6759294"],["-87.9838346","30.6752821"],["-87.9830066","30.6746853"],["-87.9801382","30.6727762"],["-87.9789158","30.6720156"],["-87.9777658","30.6713278"],["-87.9763831","30.6705342"],["-87.9753012","30.6699428"],["-87.9739407","30.6692307"],["-87.9712016","30.6678999"],["-87.9687448","30.6668138"],["-87.9658517","30.6656659"],["-87.9646385","30.6652222"],["-87.9632004","30.6647238"],["-87.9609631","30.6640006"],["-87.9290275","30.6560974"],["-87.9282856","30.6559291"],["-87.9265984","30.6556095"],["-87.9248271","30.655347"],["-87.9239474","30.6552439"],["-87.9222235","30.655105"],["-87.92101","30.655044"],["-87.9190961","30.6550204"],["-87.9165061","30.6550979"],["-87.9163638","30.6551137"],["-87.9152679","30.6552309"],["-87.8579867","30.662731"],["-87.8536511","30.6630517"],["-87.8509023","30.6631129"],["-87.8496061","30.6630932"],["-87.845595","30.6628732"],["-87.8437823","30.6626862"],["-87.8423756","30.66251"],["-87.8402301","30.6621776"],["-87.7896186","30.652495"],["-87.7877109","30.6522106"],["-87.7863205","30.6520607"],["-87.7855149","30.651997"],["-87.7844048","30.651936"],["-87.7834882","30.6519056"],["-87.7666214","30.6518388"],["-87.7648146","30.651835"],["-87.761215","30.6518327"],["-87.7603125","30.6518291"],["-87.7361514","30.6517406"],["-87.7352582","30.6517278"],["-87.7339184","30.6516553"],["-87.7330448","30.6515859"],["-87.7319853","30.6514804"],["-87.7308145","30.6513291"],["-87.7295148","30.6511195"],["-87.7279867","30.6508239"],["-87.7267504","30.6505408"],["-87.7248568","30.6500312"],["-87.7166132","30.6474505"],["-87.7138904","30.6466134"],["-87.7128084","30.6463225"],["-87.7118988","30.6461075"],["-87.7106851","30.6458577"],["-87.6973842","30.6436299"],["-87.6963438","30.6434174"],["-87.6954325","30.6431987"],["-87.6943791","30.6429107"],["-87.6934063","30.6426045"],["-87.6924698","30.642278"],["-87.6908964","30.6416467"],["-87.688992","30.6407365"],["-87.6839656","30.6382652"],["-87.682852","30.637762"],["-87.6819014","30.6374355"],["-87.6808921","30.637169"],["-87.6797652","30.6369287"],["-87.6775906","30.6363003"],["-87.6758072","30.6358581"],["-87.6752261","30.6357806"],["-87.6750402","30.6357711"],["-87.674928","30.6356952"],["-87.674844","30.6356205"],["-87.6747763","30.6355084"],["-87.6746983","30.6352697"],["-87.6746453","30.6293553"],["-87.6745291","30.6282791"],["-87.6743919","30.6276153"],["-87.6741318","30.6267394"],["-87.673222","30.6247976"],["-87.6691706","30.6185418"],["-87.6685435","30.6176412"],["-87.6671298","30.615405"],["-87.6668896","30.6149108"],["-87.666689","30.6144306"],["-87.666514","30.6139729"],["-87.6663826","30.6135436"],["-87.6662367","30.6129188"],["-87.6661328","30.6120822"],["-87.6660654","30.6113638"],["-87.6660654","30.6107673"],["-87.6660619","30.6084299"],["-87.6660614","30.6070356"],["-87.666048","30.6056617"],["-87.6660558","30.6039827"],["-87.6662181","30.6005387"],["-87.6662218","30.5788194"],["-87.6661869","30.577377"],["-87.6661464","30.5765351"],["-87.6661082","30.5758039"],["-87.6660208","30.5726897"],["-87.6660154","30.5721518"],["-87.6660149","30.5690493"],["-87.6660135","30.5686711"],["-87.6660165","30.5674337"],["-87.6660726","30.5487709"],["-87.6660177","30.5227989"],["-87.6660216","30.5218342"],["-87.6660285","30.5210314"],["-87.6660687","30.5190175"],["-87.6661345","30.5172759"],["-87.6661895","30.516605"],["-87.6662212","30.5154993"],["-87.6662272","30.5132542"],["-87.6662486","30.5065119"],["-87.666206","30.5055559"],["-87.6658114","30.5014096"],["-87.6657241","30.4998488"],["-87.6658685","30.4875182"],["-87.6658678","30.4859537"],["-87.66593","30.482248"],["-87.6659586","30.4814648"],["-87.6661161","30.4792047"],["-87.6662788","30.4764231"],["-87.6663457","30.4518611"],["-87.6663538","30.4512166"],["-87.6663527","30.4506578"],["-87.6559384","30.450673"],["-87.6555513","30.4506615"],["-87.6553125","30.4506348"],["-87.6550891","30.4505993"],["-87.6548727","30.4505571"],["-87.654676","30.4505093"],["-87.6544716","30.4504475"],["-87.6542464","30.4503683"],["-87.6540195","30.4502777"],["-87.6538043","30.4501738"],["-87.6536028","30.450071"],["-87.6534489","30.4499753"],["-87.6532762","30.4498625"],["-87.6530826","30.4497155"],["-87.6529134","30.4495738"],["-87.6527525","30.449434"],["-87.6526089","30.4492764"],["-87.6524708","30.4491136"],["-87.6523376","30.4489378"],["-87.6522182","30.448754"],["-87.6521139","30.4485611"],["-87.6520224","30.4483661"],["-87.6519403","30.4481612"],["-87.6518691","30.4479451"],["-87.651816","30.447741"],["-87.6517774","30.4475239"],["-87.6517589","30.4473083"],["-87.6517494","30.4468874"],["-87.6517486","30.4462375"],["-87.6517527","30.4457218"],["-87.6517724","30.4455012"],["-87.6518037","30.4452796"],["-87.6520402","30.4442729"],["-87.6525239","30.4424405"],["-87.6526408","30.4419221"],["-87.6526731","30.4417003"],["-87.6526887","30.4414492"],["-87.6526945","30.4409211"],["-87.652688","30.4391725"],["-87.6526775","30.4383872"],["-87.6526618","30.4382095"],["-87.6526184","30.4380005"],["-87.6525636","30.4378112"],["-87.6525223","30.4376971"],["-87.6524436","30.4375161"],["-87.6523502","30.4373304"],["-87.6522692","30.4371954"],["-87.6521633","30.4370467"],["-87.6516669","30.4364669"],["-87.6509014","30.4355786"],["-87.6499334","30.4344307"],["-87.6495858","30.4339372"],["-87.6493253","30.4335102"],["-87.6490923","30.4330503"],["-87.6489002","30.4325746"],["-87.6487434","30.4320865"],["-87.6486291","30.4315952"],["-87.6485471","30.4310784"],["-87.6485062","30.4305752"],["-87.6484934","30.429263"],["-87.6484003","30.419042"],["-87.6483548","30.4184265"],["-87.6478109","30.4128407"],["-87.6476923","30.4115547"],["-87.6476225","30.4105208"],["-87.6475629","30.4103764"],["-87.6475772","30.409587"],["-87.6475863","30.4083704"],["-87.647581","30.4072844"],["-87.6475807","30.4070838"],["-87.6475824","30.4067856"],["-87.6475826","30.4062592"],["-87.6475861","30.3997157"],["-87.6476425","30.3994599"],["-87.6477082","30.3962523"],["-87.6476541","30.3888324"],["-87.6476568","30.3885291"],["-87.6476672","30.3882139"],["-87.6476935","30.3879385"],["-87.6477429","30.3876152"],["-87.6478136","30.3872784"],["-87.6479865","30.3867293"],["-87.6481163","30.3864066"],["-87.6483084","30.3860055"],["-87.6484921","30.3856773"],["-87.648725","30.3853188"],["-87.6496598","30.3841331"],["-87.6503983","30.3832235"],["-87.6521136","30.3811643"],["-87.652384","30.380795"],["-87.652636","30.3804187"],["-87.6528464","30.3800376"],["-87.653035","30.379629"],["-87.6531439","30.3793197"],["-87.6532638","30.3789364"],["-87.6533575","30.3785018"],["-87.6534213","30.3780909"],["-87.6534501","30.3776394"],["-87.6533706","30.3638453"],["-87.6533776","30.3634258"],["-87.6533952","30.3632069"],["-87.6534395","30.3629699"],["-87.6536802","30.3622685"],["-87.6542391","30.3606969"],["-87.6544259","30.3601265"],["-87.6544802","30.3598075"],["-87.6544891","30.3588733"],["-87.654487","30.3578915"],["-87.6544783","30.3566426"],["-87.6544663","30.3563684"],["-87.6545012","30.3550677"],["-87.6546541","30.3488152"],["-87.6546543","30.3483254"],["-87.6547173","30.3408584"],["-87.6546214","30.3346314"],["-87.6545686","30.3325193"],["-87.6544828","30.327545"],["-87.6545266","30.3272266"],["-87.6545573","30.3270404"],["-87.6546188","30.3269379"],["-87.6547377","30.3268358"],["-87.6550071","30.3267221"],["-87.6552952","30.3266975"],["-87.6556757","30.3266794"],["-87.6561471","30.3266732"],["-87.6571195","30.3266726"],["-87.6599533","30.3266625"],["-87.6625708","30.3266597"],["-87.6650327","30.3265575"],["-87.6667105","30.3265239"],["-87.670433","30.3265353"],["-87.6710539","30.3265352"],["-87.6733613","30.3265459"],["-87.6745061","30.3265423"],["-87.6754673","30.3265464"],["-87.6773997","30.3265369"],["-87.6795513","30.3265517"],["-87.6815787","30.3265461"],["-87.6825858","30.3265461"],["-87.683025","30.3265242"],["-87.6832336","30.3264559"],["-87.6832022","30.3146743"],["-87.6831808","30.308392"],["-87.6831585","30.2988686"],["-87.6831549","30.2977706"],["-87.6831542","30.2973767"],["-87.6831597","30.2969274"],["-87.6831859","30.2960718"],["-87.6832317","30.2954738"],["-87.6832977","30.2949418"],["-87.683346","30.2946207"],["-87.6834199","30.2942146"],["-87.6835379","30.2936653"],["-87.6837504","30.2928524"],["-87.6838426","30.2925564"],["-87.6859116","30.2869553"],["-87.6860807","30.2864455"],["-87.6862051","30.2860029"],["-87.6862627","30.2857655"],["-87.6863684","30.2853065"],["-87.6864251","30.2850305"],["-87.686457","30.2848724"],["-87.6865148","30.28446"],["-87.68657","30.2840236"],["-87.6866354","30.2832238"],["-87.6868167","30.2800755"],["-87.6868686","30.2788238"],["-87.6869943","30.2761728"],["-87.6870192","30.2755433"],["-87.6870845","30.2748228"],["-87.687256","30.2735975"],["-87.6872879","30.2734612"],["-87.6873385","30.2732849"],["-87.6873757","30.2731132"],["-87.6874243","30.2728477"],["-87.6875109","30.2724442"],["-87.68756","30.2721798"],["-87.6875589","30.2720267"],["-87.68759","30.2718634"],["-87.6878883","30.2706928"],["-87.6879279","30.270528"],["-87.6879446","30.2704582"],["-87.6879724","30.2703614"],["-87.6880104","30.2702017"],["-87.6881596","30.2696278"],["-87.6882242","30.2693431"],["-87.6882892","30.2689978"],["-87.6884401","30.2678686"],["-87.6884839","30.267343"],["-87.6884999","30.2670561"],["-87.6885165","30.2658273"],["-87.688512","30.2645243"],["-87.6884648","30.2589118"],["-87.6884504","30.2578181"],["-87.6884593","30.2573067"],["-87.6885782","30.256201"],["-87.689615","30.2494474"],["-87.6897492","30.2485469"],["-87.6910768","30.2482693"],["-87.6916896","30.2481526"],["-87.7003032","30.2464791"],["-87.7008592","30.2463705"],["-87.7032586","30.2459097"],["-87.7035208","30.2466456"],["-87.704009","30.2465979"],["-87.7043472","30.2465549"],["-87.7046317","30.2465808"],["-87.7048909","30.2466903"],["-87.7051035","30.2467842"],["-87.7051396","30.2467931"],["-87.7051681","30.2467806"],["-87.705211","30.2467063"],["-87.7054141","30.2460752"],["-87.7050013","30.2459645"],["-87.7038877","30.2457897"],["-87.7008795","30.2463666"],["-87.7003154","30.2464766"],["-87.6917043","30.2481495"],["-87.6910958","30.2482656"],["-87.6897442","30.248511"],["-87.6857728","30.2489118"],["-87.6851823","30.2489716"],["-87.6792718","30.2495815"],["-87.6783352","30.2497082"],["-87.6780079","30.2497675"],["-87.6722382","30.2508585"],["-87.6718436","30.250935"],["-87.6714784","30.251017"],["-87.671062","30.251119"],["-87.6706115","30.2512573"],["-87.6700382","30.2514617"],["-87.6696776","30.2516023"],["-87.6693821","30.2517144"],["-87.669231","30.2517665"],["-87.6687228","30.2519207"],["-87.6682005","30.2520456"],["-87.667915","30.2520878"],["-87.667687","30.2521127"],["-87.6673887","30.2521341"],["-87.667024","30.2521506"],["-87.6664222","30.2521524"],["-87.6661649","30.2521359"],["-87.6660376","30.252121"],["-87.6658541","30.2520394"],["-87.6653406","30.2519345"],["-87.6652356","30.251962"],["-87.6650332","30.251903"],["-87.664838","30.2518364"],["-87.6646363","30.2517608"],["-87.6638704","30.2514467"],["-87.66362","30.2513568"],["-87.6634374","30.2513044"],["-87.6631968","30.2512469"],["-87.6629359","30.2511988"],["-87.6627569","30.2511725"],["-87.6625434","30.2511519"],["-87.6623236","30.2511448"],["-87.6621018","30.25115"],["-87.6611614","30.2512139"],["-87.6605718","30.2512675"],["-87.6601732","30.2513172"],["-87.6597122","30.2513894"],["-87.6588633","30.2515622"],["-87.6572873","30.2519123"],["-87.6567247","30.2520571"],["-87.6561817","30.2522033"],["-87.6512533","30.2537341"],["-87.645975","30.2551436"],["-87.6453623","30.2552795"],["-87.6445848","30.2554487"],["-87.6443116","30.2554995"],["-87.6437973","30.2555826"],["-87.6431412","30.2556917"],["-87.6391698","30.2563206"],["-87.6380506","30.2564945"],["-87.6378662","30.2565237"],["-87.6375629","30.2565745"],["-87.636584","30.2567559"],["-87.6362589","30.2568265"],["-87.6361323","30.2568585"],["-87.6355525","30.2570075"],["-87.6350455","30.2571515"],["-87.6345828","30.257296"],["-87.632644","30.257972"],["-87.6314102","30.2583948"],["-87.6305922","30.2586692"],["-87.6301374","30.2588144"],["-87.6292543","30.2590622"],["-87.6290034","30.2591228"],["-87.6283711","30.2592834"],["-87.6281722","30.2593347"],["-87.6266196","30.2596875"],["-87.626531","30.2597075"],["-87.6244496","30.2601943"],["-87.6242073","30.2602523"],["-87.6213159","30.2609245"],["-87.6209531","30.2610114"],["-87.6205361","30.2611069"],["-87.6203292","30.2611543"],["-87.6202508","30.2611716"],["-87.614302","30.2625381"],["-87.614204","30.2625636"],["-87.6140035","30.2626116"],["-87.612946","30.2629037"],["-87.612635","30.2630051"],["-87.6114864","30.2633844"],["-87.6085234","30.264359"],["-87.6083402","30.2644223"],["-87.6080867","30.2645092"],["-87.6078541","30.2645832"],["-87.6074403","30.264633"],["-87.6058232","30.2651602"],["-87.6056428","30.2652116"],["-87.6052467","30.2653127"],["-87.6037937","30.2656494"],["-87.6034946","30.265717"],["-87.5925374","30.2681252"],["-87.5913819","30.2683964"],["-87.5820873","30.270417"],["-87.5810346","30.2706864"],["-87.5803023","30.2709149"],["-87.5796414","30.2710674"],["-87.5795062","30.271099"],["-87.5783035","30.2713805"],["-87.5779544","30.2714591"],["-87.5766534","30.2717569"],["-87.5764845","30.2717971"],["-87.5700381","30.2732706"],["-87.5696147","30.2733628"],["-87.5693708","30.2734196"],["-87.568449","30.2736286"],["-87.5662508","30.2741416"],["-87.5661455","30.2741655"],["-87.5657211","30.2742622"],["-87.5652207","30.274379"],["-87.5643692","30.27459"],["-87.5639083","30.2747139"],["-87.563263","30.2749115"],["-87.5631343","30.2749511"],["-87.5624763","30.2751779"],["-87.5623681","30.2752119"],["-87.5615953","30.2755043"],["-87.5610866","30.2756946"],["-87.5600597","30.2760809"],["-87.5599632","30.2761178"],["-87.5583342","30.2767323"],["-87.5576279","30.2769946"],["-87.5571309","30.2771925"],["-87.5566855","30.2773331"],["-87.5561311","30.2775345"],["-87.555599","30.2777116"],["-87.5550952","30.2778463"],["-87.5547404","30.2779077"],["-87.554421","30.2779479"],["-87.5541068","30.2779737"],["-87.5538308","30.2779897"],["-87.5535444","30.2779997"],["-87.5532772","30.2780005"],["-87.5530196","30.2779941"],["-87.5527144","30.2779722"],["-87.5524302","30.2779452"],["-87.5521266","30.2778962"],["-87.5518543","30.2778443"],["-87.5515692","30.2777806"],["-87.5512014","30.2776908"],["-87.5487106","30.2770262"],["-87.5482","30.2769192"],["-87.5478187","30.2768527"],["-87.5474728","30.2768027"],["-87.5469922","30.2767516"],["-87.546485","30.2767041"],["-87.5458351","30.2766738"],["-87.5455866","30.2766682"],["-87.5445634","30.2766901"],["-87.5435762","30.2767376"],["-87.5425246","30.2768488"],["-87.5420878","30.2769072"],["-87.5407266","30.2771611"],["-87.5336528","30.2785355"],["-87.5331797","30.2786231"],["-87.5326917","30.2787111"],["-87.5324693","30.2787541"],["-87.5305445","30.279131"],["-87.5304146","30.2791567"],["-87.5279334","30.2796515"],["-87.5259909","30.2800415"],["-87.5210946","30.2810446"],["-87.5206967","30.2811244"],["-87.5187058","30.2815201"],["-87.5175506","30.2817825"],["-87.5162823","30.2820846"],["-87.5161516","30.2821116"],["-87.5159585","30.2821615"],["-87.515798","30.2821958"],["-87.5150988","30.2823245"],["-87.5147676","30.2823876"],["-87.508461","30.2835929"],["-87.5022417","30.2847932"],["-87.4971675","30.2856321"],["-87.4970474","30.2856511"],["-87.4935159","30.2862324"],["-87.4874891","30.2875283"],["-87.4873187","30.2875657"],["-87.460876","30.2928293"],["-87.4509785","30.2941857"],["-87.4507701","30.2942142"],["-87.4345234","30.2964021"],["-87.4339628","30.2964807"],["-87.4336678","30.2965326"],["-87.4332662","30.2966184"],["-87.4327878","30.2967404"],["-87.4325603","30.2968077"],["-87.431761","30.2970995"],["-87.4310381","30.2973896"],["-87.4306056","30.2975778"],["-87.4299159","30.2978919"],["-87.4291584","30.2981852"],["-87.4289557","30.2982785"],["-87.4287701","30.2983829"],["-87.428565","30.2985187"],["-87.428343","30.2987083"],["-87.428148","30.2989147"],["-87.4279959","30.2990885"],["-87.4277885","30.2993691"],["-87.4276515","30.2995994"],["-87.4275532","30.2997933"],["-87.4274602","30.3000314"],["-87.4273494","30.3004466"],["-87.4273175","30.300651"],["-87.4273042","30.3009882"],["-87.4273525","30.3025331"],["-87.4275347","30.3079862"],["-87.4275083","30.3088605"],["-87.4274901","30.3090112"],["-87.4274626","30.3091711"],["-87.4271642","30.3103338"],["-87.4252006","30.316409"],["-87.425008","30.316979"],["-87.4249741","30.3170976"],["-87.4249364","30.3171899"],["-87.4248679","30.3173737"],["-87.4248552","30.3174538"],["-87.4247658","30.3177353"],["-87.4246854","30.3179539"],["-87.424617","30.318113"],["-87.4245355","30.3182953"],["-87.4245044","30.31836"],["-87.4242033","30.3188651"],["-87.423884","30.3192791"],["-87.4236716","30.3195394"],["-87.4234873","30.3197642"],["-87.4234384","30.3198206"],["-87.42324","30.3200373"],["-87.4230518","30.3202259"],["-87.422817","30.3204372"],["-87.422597","30.3206117"],["-87.4224507","30.3207154"],["-87.4223033","30.3208107"],["-87.4221333","30.3209113"],["-87.421912","30.3210285"],["-87.4216053","30.3211613"],["-87.4202313","30.3217153"],["-87.4197752","30.3218865"],["-87.4186888","30.3223158"],["-87.4180629","30.3226073"],["-87.4178586","30.3227294"],["-87.4176737","30.3228581"],["-87.4174999","30.3230046"],["-87.4172848","30.3232038"],["-87.4171207","30.3233781"],["-87.4169433","30.3235977"],["-87.4168283","30.3237715"],["-87.4167323","30.3239418"],["-87.4166595","30.3240856"],["-87.4166042","30.3242127"],["-87.4165488","30.3243616"],["-87.4164989","30.3245144"],["-87.4164557","30.3246681"],["-87.4164461","30.3247147"],["-87.4164176","30.3249071"],["-87.416409","30.3249734"],["-87.4163941","30.3252003"],["-87.4163739","30.3255837"],["-87.4163525","30.3258629"],["-87.4163233","30.326106"],["-87.416288","30.3263094"],["-87.4162472","30.326506"],["-87.4161225","30.3269859"],["-87.4160328","30.3272713"],["-87.4159168","30.3275487"],["-87.4157875","30.3278014"],["-87.4142509","30.3305218"],["-87.411444","30.335468"],["-87.4112368","30.3358213"],["-87.4110956","30.3360296"],["-87.4108539","30.3363482"],["-87.4106418","30.3365922"],["-87.4104061","30.3368309"],["-87.4101748","30.3370407"],["-87.4099447","30.3372279"],["-87.4097221","30.3373909"],["-87.4095104","30.3375326"],["-87.4091566","30.3377388"],["-87.4086779","30.3380028"],["-87.3999398","30.3425214"],["-87.3987083","30.3432479"],["-87.3982636","30.3435369"],["-87.3910167","30.3485549"],["-87.3905594","30.3488639"],["-87.390257","30.3490551"],["-87.3898861","30.3492754"],["-87.3895096","30.3494787"],["-87.3891202","30.3496756"],["-87.3886825","30.3498717"],["-87.3883293","30.3500177"],["-87.3878672","30.3501949"],["-87.3698688","30.3561073"],["-87.3632445","30.3587513"],["-87.3626478","30.358957"],["-87.3615691","30.359337"],["-87.3606385","30.3597081"],["-87.3604039","30.3598153"],["-87.3602372","30.3599752"],["-87.3589301","30.3605042"],["-87.3587853","30.3605548"],["-87.3585465","30.3606304"],["-87.3584779","30.360653"],["-87.3577838","30.3609278"],["-87.3574754","30.3610518"],["-87.3573557","30.3611149"],["-87.3554293","30.3618827"],["-87.3541371","30.3623905"],["-87.3531121","30.3627952"],["-87.3517231","30.3633233"],["-87.3514286","30.3634087"],["-87.3510228","30.3635073"],["-87.3506125","30.3636044"],["-87.3501032","30.3637176"],["-87.3498108","30.3637637"],["-87.3494197","30.3638185"],["-87.3487519","30.3638995"],["-87.3486547","30.3639113"],["-87.3485474","30.363923"],["-87.347459","30.3640192"],["-87.3470951","30.364063"],["-87.3466145","30.3641498"],["-87.3459659","30.3642978"],["-87.3455177","30.3644192"],["-87.3449257","30.3646081"],["-87.3445104","30.3647615"],["-87.3439927","30.364978"],["-87.3428975","30.3654714"],["-87.3427667","30.3655308"],["-87.342346","30.3657228"],["-87.3370851","30.3681129"],["-87.3363096","30.3684557"],["-87.332145","30.3702724"],["-87.3182474","30.3762934"],["-87.3178518","30.3764837"],["-87.3176251","30.3766122"],["-87.3173762","30.3767691"],["-87.317101","30.3769822"],["-87.3168899","30.3771574"],["-87.3167548","30.3772661"],["-87.3166844","30.3773301"],["-87.3164439","30.3775462"],["-87.3162719","30.377713"],["-87.316002","30.3779508"],["-87.3158408","30.3780876"],["-87.3155757","30.3782926"],["-87.3153626","30.3784498"],["-87.3152124","30.3785415"],["-87.3150252","30.3786429"],["-87.3148042","30.3787463"],["-87.3143035","30.3789151"],["-87.3128944","30.3793652"],["-87.3123062","30.3795501"],["-87.2901136","30.386929"],["-87.2898165","30.3870081"],["-87.2894512","30.3870888"],["-87.2892003","30.3871207"],["-87.2889561","30.3871397"],["-87.2793355","30.3876666"],["-87.2782592","30.3877216"],["-87.2779303","30.3877444"],["-87.2769049","30.3878002"],["-87.2764058","30.3878232"],["-87.2760498","30.3878797"],["-87.2757271","30.3879678"],["-87.2754606","30.388052"],["-87.2659437","30.39086"],["-87.260978","30.3923259"],["-87.2556207","30.3939095"],["-87.2552631","30.3940129"],["-87.2540845","30.3943554"],["-87.2533474","30.3945411"],["-87.252989","30.3946448"],["-87.2527648","30.394733"],["-87.2525166","30.3948494"],["-87.2524027","30.3949118"],["-87.2522763","30.394993"],["-87.252098","30.3951227"],["-87.2519123","30.3952692"],["-87.2517101","30.3954864"],["-87.2516101","30.3956212"],["-87.2515508","30.3956977"],["-87.2513952","30.3959396"],["-87.2512417","30.39622"],["-87.2508875","30.3969606"],["-87.2506875","30.3973916"],["-87.2503066","30.3982214"],["-87.2500706","30.3987381"],["-87.2498143","30.3992862"],["-87.2496076","30.3995928"],["-87.2493656","30.3998882"],["-87.2475358","30.4019664"],["-87.2471304","30.402368"],["-87.2469147","30.4025884"],["-87.2467483","30.4027428"],["-87.2465748","30.4028807"],["-87.2463948","30.4030071"],["-87.2462488","30.4030967"],["-87.2460939","30.4031829"],["-87.2458429","30.4033038"],["-87.2456662","30.4033757"],["-87.2454964","30.4034332"],["-87.245227","30.4035082"],["-87.2450711","30.4035413"],["-87.2449364","30.4035632"],["-87.2447139","30.4035884"],["-87.244605","30.4035963"],["-87.2443343","30.4036008"],["-87.2440105","30.4035948"],["-87.2436996","30.4035904"],["-87.2425483","30.4035552"],["-87.2423897","30.4035538"],["-87.2422161","30.4035548"],["-87.2419977","30.4035678"],["-87.241886","30.4035856"],["-87.2417068","30.4036289"],["-87.2415104","30.4036899"],["-87.2413477","30.4037559"],["-87.2411951","30.4038241"],["-87.2411183","30.40387"],["-87.2410547","30.4039131"],["-87.2409793","30.4039631"],["-87.2408985","30.404016"],["-87.2407439","30.404158"],["-87.2405918","30.4042533"],["-87.2402255","30.4044889"],["-87.2399886","30.4046505"],["-87.2396637","30.4048502"],["-87.2393236","30.4050616"],["-87.2381724","30.4057864"],["-87.2377984","30.406021"],["-87.2376282","30.4061299"],["-87.2373351","30.4063238"],["-87.2353842","30.407582"],["-87.2294789","30.4113189"],["-87.2261403","30.4111986"],["-87.2260918","30.4114093"],["-87.2257105","30.4179503"],["-87.2255742","30.4199794"],["-87.225432","30.4199937"],["-87.2250391","30.4200226"],["-87.2246273","30.4200842"],["-87.2187333","30.4210889"],["-87.2174244","30.4212899"],["-87.214446","30.4217987"],["-87.214373","30.4218117"],["-87.2142865","30.4218266"],["-87.2133429","30.4219972"],["-87.2134442","30.4225059"],["-87.2134952","30.4227347"],["-87.2139087","30.4248736"],["-87.2140818","30.4258202"],["-87.2143687","30.4276714"],["-87.2132247","30.4278842"],["-87.2111984","30.4177736"],["-87.2111624","30.4175899"],["-87.2111518","30.4175423"],["-87.2109771","30.4168348"],["-87.2108878","30.4164091"],["-87.210776","30.4157012"],["-87.2107613","30.4156095"],["-87.2106672","30.4151092"],["-87.2104752","30.4151366"],["-87.2088793","30.4154216"],["-87.2086399","30.4154559"],["-87.2081546","30.4155323"],["-87.2075522","30.4156284"],["-87.2069288","30.4157349"],["-87.2065515","30.4158072"],["-87.2060879","30.4159097"],["-87.2055268","30.4160038"],["-87.20411","30.4162359"],["-87.2002534","30.4168888"],["-87.2002082","30.4168937"],["-87.2001335","30.4168873"],["-87.2000359","30.4168587"],["-87.1997734","30.416768"],["-87.1995753","30.4167839"],["-87.1994397","30.4169092"],["-87.1992816","30.4170383"],["-87.1989738","30.4172511"],["-87.1987528","30.417391"],["-87.1985561","30.4174985"],["-87.1983914","30.4175763"],["-87.1978973","30.4177459"],["-87.1972871","30.4179316"],["-87.1970198","30.4180047"],["-87.1967371","30.4180425"],["-87.1964716","30.4180639"],["-87.1963321","30.4180736"],["-87.1957393","30.4180273"],["-87.1955569","30.4179885"],["-87.1953971","30.4179465"],["-87.1952585","30.4178898"],["-87.1950738","30.4178029"],["-87.1949119","30.4177249"],["-87.1947766","30.4176428"],["-87.1946581","30.4175608"],["-87.1944494","30.4173933"],["-87.194308","30.4172796"],["-87.1942319","30.4172135"],["-87.1940237","30.4170093"],["-87.1937736","30.4167147"],["-87.1936972","30.4166116"],["-87.1936144","30.4164922"],["-87.1935072","30.4163187"],["-87.1933915","30.4161104"],["-87.1932909","30.415886"],["-87.1931229","30.4154553"],["-87.1929521","30.4150216"],["-87.1926681","30.4142426"],["-87.1901005","30.4068307"],["-87.1821455","30.3853192"],["-87.1816964","30.3841254"],["-87.1791864","30.3777889"],["-87.1780456","30.3749509"],["-87.1775697","30.3737851"],["-87.1771552","30.3727633"],["-87.1766838","30.3717487"],["-87.1765907","30.3715735"],["-87.1765398","30.3714883"],["-87.1764671","30.3713801"],["-87.1761986","30.3709941"],["-87.1753502","30.3698192"],["-87.175132","30.3695291"],["-87.1750303","30.3694119"],["-87.1749021","30.3692719"],["-87.1747612","30.3691278"],["-87.1746143","30.3689893"],["-87.1744826","30.3688701"],["-87.1743895","30.3687897"],["-87.1742109","30.3686453"],["-87.1739713","30.3684662"],["-87.1738517","30.3683814"],["-87.1737274","30.3682972"],["-87.1735836","30.3682073"],["-87.1734195","30.3681091"],["-87.1731303","30.367953"],["-87.1729296","30.3678515"],["-87.1723459","30.3675642"],["-87.1720792","30.3674227"],["-87.1718873","30.3673133"],["-87.1716909","30.3671896"],["-87.1714976","30.367056"],["-87.1712939","30.3668969"],["-87.1712069","30.366821"],["-87.1710474","30.3666757"],["-87.170886","30.3665155"],["-87.1708116","30.3664363"],["-87.1707326","30.3663469"],["-87.1705966","30.3661806"],["-87.170519","30.3660805"],["-87.170393","30.3658977"],["-87.170348","30.3658255"],["-87.170313","30.3657649"],["-87.170273","30.3656875"],["-87.1702352","30.3656117"],["-87.1700611","30.3652243"],["-87.1698029","30.3646172"],["-87.1697019","30.3643927"],["-87.1682797","30.3610902"],["-87.1681592","30.3608351"],["-87.1680923","30.3607071"],["-87.1679996","30.3605414"],["-87.1679417","30.3604471"],["-87.1678094","30.3602438"],["-87.1676532","30.3600208"],["-87.1675465","30.359881"],["-87.1674878","30.3598079"],["-87.1673827","30.3596833"],["-87.1673151","30.3596068"],["-87.1670826","30.3593625"],["-87.1669675","30.3592506"],["-87.1666126","30.358938"],["-87.1664297","30.3587919"],["-87.1662849","30.3586849"],["-87.165885","30.3584236"],["-87.1653954","30.3581472"],["-87.1649594","30.3579557"],["-87.1645136","30.3577819"],["-87.1638845","30.3575961"],["-87.163388","30.3574818"],["-87.1630247","30.3574274"],["-87.1628609","30.3574119"],["-87.1626789","30.3573993"],["-87.1623345","30.357379"],["-87.1619694","30.3573727"],["-87.1613139","30.357396"],["-87.1607974","30.3574679"],["-87.1604668","30.3575234"],["-87.1601739","30.3575952"],["-87.1535482","30.3593177"],["-87.1519094","30.3597128"],["-87.130994","30.3652162"],["-87.1303918","30.3654015"],["-87.1296916","30.365639"],["-87.1289537","30.3659142"],["-87.1281372","30.3662713"],["-87.1271291","30.3667653"],["-87.1264998","30.3671186"],["-87.1254107","30.3678026"],["-87.1245603","30.368415"],["-87.1236878","30.3691265"],["-87.116563","30.3757655"],["-87.1147654","30.377446"],["-87.1120959","30.3799257"],["-87.1114456","30.3804915"],["-87.1106895","30.3810631"],["-87.1102495","30.3813685"],["-87.1101507","30.3814364"],["-87.1096276","30.3817743"],["-87.1091506","30.3820574"],["-87.1085995","30.3823591"],["-87.1081154","30.3826132"],["-87.1075462","30.3828923"],["-87.1070209","30.383118"],["-87.105837","30.3835738"],["-87.1050816","30.3838186"],["-87.1041711","30.3840645"],["-87.1032143","30.3842811"],["-87.0923834","30.3859146"],["-87.0862819","30.3868214"],["-87.0789219","30.3879313"],["-87.0456495","30.3928841"],["-87.0317352","30.3949603"],["-87.0302168","30.395186"],["-86.9970079","30.400114"],["-86.9963655","30.4002087"],["-86.9727934","30.4036905"],["-86.9720537","30.4037638"],["-86.9713649","30.4038218"],["-86.9701053","30.4038495"],["-86.9580562","30.4037037"],["-86.9572108","30.4036507"],["-86.9569536","30.4036289"],["-86.9560069","30.4035082"],["-86.955135","30.4033618"],["-86.9525292","30.4028051"],["-86.9519242","30.4026894"],["-86.9506948","30.4024923"],["-86.9500339","30.4024133"],["-86.9464278","30.4022449"],["-86.871152","30.4014897"],["-86.8692279","30.4014766"],["-86.8627099","30.4014253"],["-86.8620836","30.4014406"],["-86.8609772","30.4015276"],["-86.8604145","30.401588"],["-86.8594623","30.4017313"],["-86.8589147","30.4018339"],["-86.8579358","30.4020649"],["-86.8574009","30.4022086"],["-86.8565536","30.4024739"],["-86.8557228","30.4027646"],["-86.8554596","30.4028689"],["-86.8547199","30.4031781"],["-86.8536089","30.403731"],["-86.8507181","30.4052255"],["-86.8477542","30.4067589"],["-86.8468665","30.4071996"],["-86.846261","30.4074744"],["-86.8459078","30.4076206"],["-86.8437203","30.4084152"],["-86.8432462","30.4085842"],["-86.8423031","30.4088756"],["-86.8418551","30.4089948"],["-86.8411954","30.4091523"],["-86.8407121","30.4092598"],["-86.8403107","30.4093396"],["-86.839741","30.4094219"],["-86.8386739","30.4095559"],["-86.8382566","30.4095983"],["-86.8372514","30.4096447"],["-86.8355412","30.4096487"],["-86.8272016","30.4095917"],["-86.8162278","30.4095387"],["-86.8068413","30.409486"],["-86.8055412","30.4094998"],["-86.7824648","30.4102783"],["-86.7559935","30.4112141"],["-86.755343","30.4112338"],["-86.7368459","30.4118805"],["-86.7354054","30.411922"],["-86.7348078","30.4119367"],["-86.7327001","30.4119863"],["-86.7318295","30.4119876"],["-86.730672","30.4119802"],["-86.7303099","30.41197"],["-86.7300036","30.4119706"],["-86.7295893","30.4119621"],["-86.728697","30.4119349"],["-86.7282812","30.4119217"],["-86.70009","30.4108876"],["-86.6963318","30.4108228"],["-86.6829019","30.4103093"],["-86.6651396","30.4096477"],["-86.6645523","30.4096242"],["-86.656294","30.4093361"],["-86.6511616","30.4091032"],["-86.6416048","30.4078278"],["-86.6413827","30.4077911"],["-86.6280463","30.405774"],["-86.6211275","30.4047345"],["-86.6181379","30.4043847"],["-86.6174747","30.4043395"],["-86.6168876","30.404339"],["-86.6052293","30.4036182"],["-86.6049331","30.4036011"],["-86.604687","30.4035824"],["-86.6045024","30.4035628"],["-86.6043418","30.4035387"],["-86.6041751","30.4035107"],["-86.6040426","30.4034762"],["-86.6039166","30.4034037"],["-86.6037481","30.4033572"],["-86.6032701","30.4032009"],["-86.6028404","30.4030327"],["-86.602646","30.4029453"],["-86.6024438","30.4028484"],["-86.6022283","30.4027294"],["-86.6020651","30.4026269"],["-86.6019254","30.4025316"],["-86.6017227","30.4023694"],["-86.6015583","30.4022216"],["-86.6014928","30.4021584"],["-86.6013134","30.4019567"],["-86.6008166","30.4013259"],["-86.5995708","30.3997228"],["-86.5990203","30.3990137"],["-86.5987422","30.3986749"],["-86.5985116","30.3984176"],["-86.5982821","30.3981978"],["-86.5980086","30.3979649"],["-86.597711","30.3977254"],["-86.5973307","30.3974368"],["-86.5970435","30.3972543"],["-86.5966647","30.3970504"],["-86.596345","30.3968881"],["-86.5958712","30.3966757"],["-86.5956219","30.3965754"],["-86.5952297","30.3964319"],["-86.5948933","30.3963298"],["-86.594426","30.3962104"],["-86.5938026","30.3960828"],["-86.5933649","30.3960031"],["-86.592967","30.3959389"],["-86.5923047","30.3958788"],["-86.5915601","30.3958322"],["-86.5910897","30.3958049"],["-86.5852704","30.395539"],["-86.5829245","30.3954326"],["-86.582127","30.3954013"],["-86.58142","30.3953749"],["-86.578089","30.3952206"],["-86.577206","30.3951787"],["-86.5674564","30.3947124"],["-86.5589416","30.3943113"],["-86.5579653","30.3942402"],["-86.557646","30.3942223"],["-86.557462","30.3942132"],["-86.5565131","30.3941158"],["-86.5551442","30.3939364"],["-86.5542201","30.3937898"],["-86.5528661","30.3935295"],["-86.5519658","30.3933352"],["-86.54071","30.3905823"],["-86.5400301","30.3904053"],["-86.5395567","30.3902812"],["-86.5387103","30.3900848"],["-86.5383026","30.3899947"],["-86.5378806","30.3898972"],["-86.5372505","30.3897353"],["-86.5366086","30.3895858"],["-86.5357086","30.3894036"],["-86.534384","30.389216"],["-86.5332158","30.3891235"],["-86.5321354","30.3890943"],["-86.531391","30.3891077"],["-86.5305882","30.3891494"],["-86.5300236","30.389199"],["-86.529085","30.3893112"],["-86.5284152","30.3894267"],["-86.5276394","30.3895824"],["-86.526669","30.3898282"],["-86.5258563","30.390053"],["-86.5249787","30.3903605"],["-86.5241476","30.3906823"],["-86.523703","30.3908676"],["-86.5232768","30.3910582"],["-86.5195464","30.3927192"],["-86.5161569","30.3942318"],["-86.5141701","30.3951029"],["-86.5140294","30.3951514"],["-86.5138724","30.3952029"],["-86.5137318","30.3952421"],["-86.5136059","30.3952727"],["-86.5134938","30.3952973"],["-86.51338","30.3953188"],["-86.5132342","30.3953405"],["-86.51303","30.3953575"],["-86.5119858","30.3953999"],["-86.5118539","30.3953972"],["-86.5114922","30.3953772"],["-86.5113787","30.3953671"],["-86.5110203","30.3953222"],["-86.51078","30.3952764"],["-86.5104462","30.3952045"],["-86.5100811","30.3951275"],["-86.508587","30.3948089"],["-86.5084401","30.3947787"],["-86.5081694","30.3947222"],["-86.5054492","30.3941472"],["-86.5053068","30.3941165"],["-86.5038814","30.3938153"],["-86.496013","30.3921333"],["-86.4956276","30.3934429"],["-86.4955839","30.3935377"],["-86.495554","30.3935858"],["-86.4955222","30.3935932"],["-86.4954932","30.3936044"],["-86.4954684","30.3936231"],["-86.4954513","30.3936463"],["-86.4954417","30.3936768"],["-86.4954425","30.3937083"],["-86.4954553","30.3937377"],["-86.4954736","30.3937599"],["-86.495498","30.3937757"],["-86.4955254","30.3937857"],["-86.4955532","30.3937889"],["-86.4955819","30.3937866"],["-86.4956141","30.3937756"],["-86.4956409","30.3937575"]] } }; const coordinates_1_0 = geojson_1_0.geometry.coordinates; for (const coord of coordinates_1_0) { bounds_1.extend(coord); contentMap_1.fitBounds(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(bounds_1, {padding: {top: 60, bottom: 60, left: 60, right: 60}}); const geojson_1_1 = { type: 'Feature', properties: {}, geometry: { type: 'LineString', coordinates: [["-96.7984657","32.7771437"],["-96.7984702","32.777236"],["-96.798449","32.7772786"],["-96.7983604","32.7773267"],["-96.7971252","32.7776026"],["-96.7968207","32.7776817"],["-96.7966547","32.7777435"],["-96.7963974","32.777869"],["-96.7962381","32.7779705"],["-96.79339","32.7786302"],["-96.7932983","32.7786638"],["-96.7932246","32.7786989"],["-96.7931842","32.7787233"],["-96.7931331","32.7787564"],["-96.7930773","32.7787953"],["-96.7930286","32.7788363"],["-96.7929679","32.7789063"],["-96.7929143","32.7789778"],["-96.7927727","32.7791269"],["-96.7927078","32.7791732"],["-96.7926481","32.7792173"],["-96.7925523","32.7793297"],["-96.7924165","32.7794471"],["-96.7922833","32.7795466"],["-96.7921381","32.7796293"],["-96.792","32.7796862"],["-96.7918274","32.7797357"],["-96.7916618","32.779767"],["-96.7914885","32.7797827"],["-96.7912249","32.7797882"],["-96.7909082","32.7797846"],["-96.7907137","32.7798025"],["-96.7905993","32.779822"],["-96.7904869","32.7798471"],["-96.7903945","32.7798692"],["-96.7902879","32.779899"],["-96.7901838","32.7799412"],["-96.7901134","32.7799779"],["-96.7897059","32.7802137"],["-96.7904984","32.7811533"],["-96.7906314","32.7813121"],["-96.7908738","32.7816142"],["-96.7901798","32.7817678"],["-96.7897868","32.7818563"],["-96.7895124","32.7820594"],["-96.7892676","32.7822373"],["-96.7891176","32.7823255"],["-96.788971","32.7823967"],["-96.7887942","32.7824603"],["-96.7886274","32.7825005"],["-96.7884407","32.7825164"],["-96.7882479","32.7825128"],["-96.7879993","32.7824803"],["-96.7877576","32.7824208"],["-96.7875097","32.7823423"],["-96.7871983","32.782214"],["-96.7868467","32.7820669"],["-96.7863639","32.7818712"],["-96.7856297","32.7815566"],["-96.7849535","32.7812516"],["-96.7845486","32.7810545"],["-96.784288","32.7809025"],["-96.7839793","32.7807095"],["-96.7835386","32.7804398"],["-96.7832771","32.7801893"],["-96.7829562","32.7798425"],["-96.7794157","32.7756966"],["-96.7791155","32.7753345"],["-96.7789843","32.7751598"],["-96.7788593","32.7749739"],["-96.7787774","32.7748341"],["-96.7786849","32.7746666"],["-96.778589","32.7744512"],["-96.7785156","32.7742535"],["-96.7784512","32.7740431"],["-96.7783985","32.7738347"],["-96.7783536","32.7735905"],["-96.7783341","32.7733761"],["-96.7783291","32.7729324"],["-96.7783277","32.7722044"],["-96.7782954","32.7717313"],["-96.7782204","32.7712419"],["-96.7781135","32.7707085"],["-96.7779891","32.7702936"],["-96.7775812","32.7691522"],["-96.7746588","32.7610249"],["-96.7744215","32.7604822"],["-96.7740775","32.759784"],["-96.7736873","32.7590491"],["-96.7725343","32.756976"],["-96.7722616","32.7564397"],["-96.7720164","32.755886"],["-96.7717482","32.7552173"],["-96.771498","32.7544707"],["-96.7710676","32.7530466"],["-96.7709395","32.7526079"],["-96.770759","32.7520072"],["-96.7702484","32.749335"],["-96.7701763","32.7489783"],["-96.7701326","32.7488332"],["-96.7700175","32.7485196"],["-96.7699599","32.7483766"],["-96.7698041","32.7480726"],["-96.7697124","32.7479221"],["-96.7696187","32.7477811"],["-96.7695233","32.7476493"],["-96.7694225","32.7475256"],["-96.7692582","32.7473477"],["-96.7688598","32.7469999"],["-96.7672427","32.7456206"],["-96.7669113","32.7453962"],["-96.7667303","32.7452895"],["-96.7665311","32.7451833"],["-96.7663629","32.7450972"],["-96.7661587","32.7450007"],["-96.7659779","32.7449254"],["-96.7656097","32.7447958"],["-96.7653982","32.744728"],["-96.7652228","32.7446834"],["-96.7650275","32.7446415"],["-96.764841","32.7446052"],["-96.764632","32.7445726"],["-96.7644076","32.7445433"],["-96.7641751","32.7445194"],["-96.7638904","32.7444947"],["-96.7633924","32.7444669"],["-96.7629613","32.744464"],["-96.7627546","32.7444688"],["-96.762552","32.7444771"],["-96.7621336","32.7445128"],["-96.7619403","32.7445368"],["-96.7617572","32.7445657"],["-96.7615804","32.7445991"],["-96.7613987","32.7446383"],["-96.7612218","32.7446819"],["-96.7606345","32.7448805"],["-96.7566216","32.7464418"],["-96.7560006","32.7466709"],["-96.755741","32.7467524"],["-96.7554552","32.7468266"],["-96.7550866","32.7469117"],["-96.7545539","32.7470104"],["-96.7536299","32.7471203"],["-96.7531927","32.7471514"],["-96.7527646","32.7471691"],["-96.7472036","32.7471546"],["-96.7435788","32.7471465"],["-96.7427458","32.7470979"],["-96.7281265","32.7452807"],["-96.7277385","32.745219"],["-96.7273663","32.7451411"],["-96.7269304","32.7450316"],["-96.7266002","32.7449253"],["-96.7263126","32.7448186"],["-96.7260062","32.744689"],["-96.7256763","32.7445393"],["-96.7253712","32.744394"],["-96.7250816","32.744221"],["-96.724766","32.7440186"],["-96.7244665","32.7438083"],["-96.7240078","32.7434437"],["-96.7144591","32.735229"],["-96.7142123","32.7349938"],["-96.7139697","32.7347443"],["-96.7137125","32.7344697"],["-96.7134809","32.7342051"],["-96.7124275","32.7329703"],["-96.712135","32.732656"],["-96.7118927","32.7324146"],["-96.7116287","32.7321791"],["-96.7113404","32.7319366"],["-96.7110319","32.7317032"],["-96.7076468","32.7294097"],["-96.7065405","32.7286804"],["-96.702512","32.7259394"],["-96.701891","32.7254987"],["-96.7013135","32.7250802"],["-96.7008903","32.7247755"],["-96.6905855","32.7177508"],["-96.6870216","32.715601"],["-96.6790863","32.7102073"],["-96.6784416","32.7097796"],["-96.6780677","32.7095599"],["-96.6772127","32.7090834"],["-96.676823","32.7088604"],["-96.6764152","32.7085977"],["-96.6729","32.7062139"],["-96.6725612","32.7060074"],["-96.6722499","32.7058327"],["-96.6718962","32.705662"],["-96.6715588","32.7055165"],["-96.671213","32.7053897"],["-96.6708312","32.7052657"],["-96.6704432","32.7051605"],["-96.6679253","32.7045501"],["-96.6676663","32.7044975"],["-96.6675864","32.7044825"],["-96.667444","32.7044588"],["-96.6671437","32.7044149"],["-96.6658367","32.7042447"],["-96.6653594","32.7041631"],["-96.6649484","32.7040698"],["-96.661414","32.7032086"],["-96.6606145","32.7030461"],["-96.657742","32.702451"],["-96.6512172","32.7006196"],["-96.6483793","32.6996653"],["-96.6473631","32.6992481"],["-96.64694","32.69906"],["-96.6460502","32.6986256"],["-96.6391551","32.6949072"],["-96.6373867","32.6940263"],["-96.6370336","32.6938388"],["-96.6366999","32.6935485"],["-96.6359619","32.6930649"],["-96.6357794","32.6929329"],["-96.6355724","32.6927601"],["-96.6353478","32.6925363"],["-96.6350506","32.692228"],["-96.6348258","32.6920066"],["-96.634628","32.6918452"],["-96.6344127","32.691708"],["-96.6341639","32.6915821"],["-96.6339399","32.6914987"],["-96.6337226","32.6914264"],["-96.6335251","32.6913797"],["-96.6331623","32.6913346"],["-96.6329693","32.6913212"],["-96.632694","32.6913421"],["-96.6323432","32.6913939"],["-96.6321554","32.6914393"],["-96.6317296","32.6916125"],["-96.6315448","32.6917027"],["-96.6309506","32.6920777"],["-96.6305498","32.6924926"],["-96.6303957","32.6927086"],["-96.6302592","32.6929443"],["-96.6301715","32.693164"],["-96.6300062","32.6937657"],["-96.6298375","32.6943735"],["-96.6296967","32.6948503"],["-96.6296036","32.6950758"],["-96.6294864","32.6953111"],["-96.6293474","32.6955428"],["-96.6291807","32.695774"],["-96.6290036","32.6959774"],["-96.6287767","32.6962297"],["-96.6284773","32.6964716"],["-96.6241983","32.7001404"],["-96.6237658","32.7004755"],["-96.6235665","32.7006136"],["-96.6230708","32.7008669"],["-96.6228184","32.7009802"],["-96.6224864","32.7011181"],["-96.6221146","32.7012618"],["-96.6218034","32.7013644"],["-96.6214969","32.701447"],["-96.6212231","32.7015128"],["-96.6209187","32.7015717"],["-96.6204169","32.7016494"],["-96.6201431","32.7016823"],["-96.6198236","32.7017135"],["-96.6195468","32.7017293"],["-96.6191132","32.7017376"],["-96.6184243","32.7017427"],["-96.6164274","32.7017418"],["-96.6130187","32.7017217"],["-96.6108759","32.7018568"],["-96.5989364","32.7029914"],["-96.5973679","32.7031453"],["-96.5848984","32.704345"],["-96.5842999","32.7043837"],["-96.5838082","32.7044027"],["-96.5833352","32.7044114"],["-96.5826376","32.7043999"],["-96.5502048","32.7023744"],["-96.5494784","32.7023121"],["-96.548407","32.7021977"],["-96.5339868","32.7000142"],["-96.5333936","32.6999383"],["-96.5327457","32.699878"],["-96.5314265","32.6998057"],["-96.5310615","32.6998043"],["-96.5301507","32.6998238"],["-96.5109716","32.7004875"],["-96.5094159","32.7005311"],["-96.5084989","32.7005047"],["-96.5081646","32.7004846"],["-96.5075308","32.7004298"],["-96.4960374","32.6991665"],["-96.4789871","32.697278"],["-96.4783491","32.6972471"],["-96.4777606","32.6972331"],["-96.4771582","32.6972395"],["-96.476064","32.6972839"],["-96.4514574","32.6994037"],["-96.4510182","32.6994198"],["-96.4505691","32.6994262"],["-96.4500327","32.6994185"],["-96.4495784","32.6994011"],["-96.4490385","32.6993724"],["-96.4477268","32.6992512"],["-96.4473804","32.6992073"],["-96.4292083","32.6964134"],["-96.4280626","32.6962545"],["-96.4272061","32.6961791"],["-96.4266991","32.6961488"],["-96.3875021","32.6957759"],["-96.3867762","32.6958035"],["-96.3864005","32.6958246"],["-96.3858666","32.695867"],["-96.3852635","32.6959321"],["-96.3833541","32.6962458"],["-96.3603336","32.700652"],["-96.3598757","32.7007769"],["-96.3593637","32.7009255"],["-96.3589096","32.7010702"],["-96.3583851","32.7012514"],["-96.3579849","32.7013997"],["-96.3574863","32.701593"],["-96.3567453","32.701919"],["-96.3554684","32.7025522"],["-96.3544135","32.7031506"],["-96.340444","32.711245"],["-96.338584","32.7122998"],["-96.3380784","32.7125504"],["-96.3375067","32.7128085"],["-96.3361037","32.7133463"],["-96.3356129","32.7135087"],["-96.3351265","32.7136508"],["-96.3345471","32.7138077"],["-96.3306418","32.7147775"],["-96.3293996","32.7150531"],["-96.328192","32.7152438"],["-96.3276638","32.7153098"],["-96.3271845","32.7153565"],["-96.3265635","32.7153995"],["-96.3260094","32.7154247"],["-96.3253858","32.7154333"],["-96.3249481","32.7154323"],["-96.3240771","32.7154024"],["-96.3231029","32.7153381"],["-96.3217852","32.7152254"],["-96.306782","32.7140262"],["-96.3064245","32.7139809"],["-96.3057114","32.7138694"],["-96.3049982","32.7137384"],["-96.3042336","32.7135654"],["-96.3032083","32.7132857"],["-96.3024776","32.7130421"],["-96.3015839","32.7127086"],["-96.3002998","32.7121866"],["-96.2747235","32.7010321"],["-96.2743646","32.7008655"],["-96.2738578","32.700645"],["-96.2729321","32.7003077"],["-96.2719329","32.699956"],["-96.2711223","32.6996974"],["-96.2701178","32.699429"],["-96.2527611","32.6951439"],["-96.251342","32.6947909"],["-96.2475579","32.6938484"],["-96.1918897","32.6800493"],["-96.1859544","32.6781839"],["-96.1839636","32.6776585"],["-96.0776894","32.6510842"],["-96.0770078","32.6509273"],["-96.0738936","32.6501346"],["-96.0704531","32.6492448"],["-96.0690876","32.6488885"],["-96.0575405","32.6459477"],["-96.051822","32.6440821"],["-96.0104583","32.6284467"],["-95.9999949","32.6248087"],["-95.9832112","32.6191858"],["-95.9782063","32.6175007"],["-95.975355","32.6165427"],["-95.9618926","32.611964"],["-95.9583198","32.6106531"],["-95.9361662","32.601729"],["-95.9335935","32.6007873"],["-95.9323624","32.6004119"],["-95.9310435","32.600102"],["-95.9294038","32.5997958"],["-95.9279457","32.5996201"],["-95.9253703","32.5994672"],["-95.9073024","32.598468"],["-95.9051714","32.5981374"],["-95.9032192","32.597619"],["-95.899985","32.5964249"],["-95.8175924","32.563419"],["-95.8008444","32.5570272"],["-95.7801446","32.5508797"],["-95.778746","32.5504321"],["-95.7774207","32.5499542"],["-95.7706311","32.5472223"],["-95.726657","32.5314131"],["-95.7188075","32.5283791"],["-95.7164318","32.5275414"],["-95.7154438","32.5271645"],["-95.7149189","32.5269452"],["-95.7144693","32.5267492"],["-95.6909886","32.5160373"],["-95.6902015","32.5156921"],["-95.689372","32.5153573"],["-95.6886727","32.5150978"],["-95.6880444","32.514886"],["-95.6866697","32.5144761"],["-95.6859861","32.5143022"],["-95.6853019","32.5141461"],["-95.6845752","32.5139977"],["-95.6386541","32.5056702"],["-95.6382574","32.5055767"],["-95.6371354","32.5052748"],["-95.6255962","32.5017739"],["-95.6227169","32.500974"],["-95.6213017","32.5006952"],["-95.6198771","32.50051"],["-95.616856","32.5003029"],["-95.5887962","32.4992"],["-95.5876561","32.4991107"],["-95.5869508","32.4990373"],["-95.5861069","32.4989284"],["-95.585494","32.4988367"],["-95.5835207","32.4984471"],["-95.5680855","32.4951775"],["-95.5672441","32.4949638"],["-95.5527896","32.4909223"],["-95.5507157","32.4903465"],["-95.5451499","32.4887845"],["-95.5435261","32.4883323"],["-95.5417777","32.4878329"],["-95.5389392","32.4869057"],["-95.5364163","32.4860622"],["-95.5320319","32.4846394"],["-95.531409","32.4844747"],["-95.5307534","32.4843343"],["-95.5302281","32.484234"],["-95.5295576","32.4841311"],["-95.5292157","32.484086"],["-95.5019873","32.4810376"],["-95.4983685","32.4803729"],["-95.4914142","32.479689"],["-95.4906294","32.4795871"],["-95.489877","32.4794635"],["-95.4895883","32.479407"],["-95.4878864","32.4789975"],["-95.4873317","32.4788283"],["-95.4644303","32.4712367"],["-95.4631572","32.4708877"],["-95.4620665","32.4706356"],["-95.4603748","32.4703363"],["-95.4589936","32.4701715"],["-95.441005","32.4690358"],["-95.4370942","32.4688013"],["-95.4361011","32.4687689"],["-95.4182442","32.4686218"],["-95.4156436","32.4684897"],["-95.4130427","32.4682504"],["-95.412148","32.4681883"],["-95.4107283","32.4681549"],["-95.4078966","32.4682875"],["-95.4059167","32.4684307"],["-95.4040764","32.4684914"],["-95.3930843","32.4683949"],["-95.3904075","32.468193"],["-95.3901722","32.4681661"],["-95.3900209","32.4681369"],["-95.3897608","32.4680697"],["-95.3896037","32.4680336"],["-95.389376","32.468013"],["-95.3879774","32.467991"],["-95.3876196","32.4679451"],["-95.3875484","32.4679274"],["-95.3875039","32.4679136"],["-95.3874581","32.4678899"],["-95.3874085","32.4678598"],["-95.3873546","32.4678127"],["-95.387118","32.4675534"],["-95.3866339","32.4667677"],["-95.3864713","32.4664983"],["-95.3851096","32.4640788"],["-95.3848951","32.4636506"],["-95.3845799","32.4630525"],["-95.3837823","32.4617105"],["-95.3776679","32.4517211"],["-95.3770553","32.450766"],["-95.3768307","32.4504515"],["-95.3765837","32.450124"],["-95.376179","32.4496149"],["-95.3759195","32.4493153"],["-95.3755966","32.4489616"],["-95.373429","32.44671"],["-95.3730486","32.4462878"],["-95.372611","32.4457596"],["-95.3724039","32.4454936"],["-95.3721874","32.445206"],["-95.3718312","32.4446916"],["-95.3716532","32.4444299"],["-95.3714593","32.4442515"],["-95.3712024","32.4437969"],["-95.3709906","32.4434048"],["-95.3706866","32.4427448"],["-95.3666044","32.433297"],["-95.3659807","32.4319032"],["-95.3658445","32.4316337"],["-95.3656798","32.4313578"],["-95.3653429","32.4308185"],["-95.3651261","32.4305116"],["-95.3648116","32.4301073"],["-95.3644104","32.4296115"],["-95.3628148","32.4278445"],["-95.3608397","32.4256546"],["-95.3601816","32.4248507"],["-95.353219","32.4150425"],["-95.3529433","32.414704"],["-95.3526769","32.4143913"],["-95.3522693","32.4139592"],["-95.3511516","32.4128302"],["-95.3465254","32.408536"],["-95.346314","32.4083169"],["-95.3459527","32.4079097"],["-95.3457843","32.4077004"],["-95.3456103","32.4074722"],["-95.3454336","32.4072151"],["-95.3452892","32.4069935"],["-95.3451592","32.4067747"],["-95.3450336","32.4065465"],["-95.3448934","32.4062597"],["-95.3403929","32.3960437"],["-95.3400338","32.3952462"],["-95.3399917","32.3950324"],["-95.339933","32.3949127"],["-95.3397429","32.3946022"],["-95.3395422","32.3943018"],["-95.339392","32.394105"],["-95.3392389","32.3939181"],["-95.3389446","32.393608"],["-95.3379305","32.3925674"],["-95.3371742","32.3917519"],["-95.3366041","32.3910642"],["-95.3340606","32.38789"],["-95.3338307","32.3877446"],["-95.3335488","32.3873708"],["-95.3334026","32.3871579"],["-95.3332897","32.3869796"],["-95.3331937","32.3868119"],["-95.3331274","32.3866884"],["-95.3330411","32.38652"],["-95.3329747","32.386372"],["-95.3329028","32.3862045"],["-95.3328384","32.3860388"],["-95.3327756","32.3858594"],["-95.3325712","32.3850939"],["-95.332368","32.3842104"],["-95.3323243","32.3840252"],["-95.3317242","32.381297"],["-95.3316777","32.3810894"],["-95.3316424","32.3808908"],["-95.3316251","32.3806322"],["-95.3316059","32.380245"],["-95.3316054","32.3801356"],["-95.3316192","32.3797232"],["-95.3316424","32.3794715"],["-95.3324489","32.3734434"],["-95.3324748","32.3731784"],["-95.3324915","32.3729654"],["-95.3325098","32.3725568"],["-95.3325119","32.3723177"],["-95.3325075","32.3721838"],["-95.3324958","32.3720263"],["-95.3324401","32.3717369"],["-95.3324031","32.3715968"],["-95.3323574","32.3714425"],["-95.3323085","32.3712918"],["-95.332178","32.3709909"],["-95.332013","32.3707115"],["-95.3319094","32.3705458"],["-95.3318021","32.3704064"],["-95.3316929","32.3702771"],["-95.3315701","32.3701416"],["-95.3314559","32.3700303"],["-95.3313177","32.3699036"],["-95.3311711","32.3697852"],["-95.3310232","32.3696764"],["-95.3308987","32.3695883"],["-95.3303072","32.3692499"],["-95.3278906","32.3679271"],["-95.3274852","32.3677001"],["-95.3273988","32.3675791"],["-95.3265114","32.3670934"],["-95.3263105","32.3670678"],["-95.3255053","32.3666194"],["-95.3247463","32.3661306"],["-95.3241809","32.3657518"],["-95.3240632","32.3655681"],["-95.3236821","32.3652999"],["-95.3232404","32.3649959"],["-95.3230382","32.3649603"],["-95.3196499","32.3626484"],["-95.3195767","32.3624993"],["-95.3190765","32.3621817"],["-95.3182794","32.3617338"],["-95.3180472","32.3616908"],["-95.3176955","32.3614786"],["-95.3156999","32.3601562"],["-95.3156089","32.3601011"],["-95.3155346","32.360057"],["-95.3154616","32.3600152"],["-95.3151165","32.3598383"],["-95.3149391","32.3597658"],["-95.3147412","32.3596987"],["-95.3145314","32.3596407"],["-95.3143195","32.3595832"],["-95.3141437","32.359465"],["-95.3135642","32.359402"],["-95.3130794","32.3593997"],["-95.3128911","32.359484"],["-95.3114399","32.3595458"],["-95.311206","32.3594683"],["-95.3102677","32.359503"],["-95.3097597","32.3595184"],["-95.3095427","32.3596082"],["-95.306116","32.3596153"],["-95.3022686","32.3595488"],["-95.3020621","32.3594652"],["-95.3016576","32.3594516"],["-95.3015133","32.3593747"],["-95.3014463","32.3593472"],["-95.3013852","32.3593147"],["-95.3013293","32.3592812"],["-95.3012804","32.3592339"],["-95.3011461","32.3590574"],["-95.3010152","32.3588082"],["-95.3009815","32.3587388"],["-95.3009466","32.3586664"],["-95.3008652","32.3585903"],["-95.3008281","32.3584691"],["-95.300798","32.358345"],["-95.3007777","32.3582407"],["-95.3007687","32.3581423"],["-95.3007553","32.3578758"],["-95.3007216","32.3568852"],["-95.3006653","32.35283"],["-95.3027788","32.3528721"],["-95.3027775","32.3553866"],["-95.3007494","32.3554502"],["-95.3007216","32.356884"],["-95.3007556","32.3578846"],["-95.3007691","32.3581491"],["-95.3007778","32.35824"],["-95.3007982","32.3583468"],["-95.3008285","32.3584701"],["-95.3008597","32.3585924"],["-95.3008406","32.358703"],["-95.3008641","32.3587791"],["-95.300894","32.3588503"],["-95.300953","32.3589682"],["-95.3010025","32.3590766"],["-95.3009786","32.3591919"],["-95.3009635","32.3592399"],["-95.3009398","32.3592798"],["-95.3009117","32.3593117"],["-95.300874","32.3593431"],["-95.3008148","32.3593768"],["-95.3006153","32.3594517"],["-95.2973285","32.3594713"],["-95.2971727","32.3594788"],["-95.2968585","32.3595031"],["-95.295148","32.3597092"],["-95.2934463","32.3599431"],["-95.2933597","32.359959"],["-95.2933032","32.3599752"],["-95.2932645","32.3599988"],["-95.2932117","32.3600492"],["-95.2930864","32.3602668"],["-95.2929447","32.3604748"],["-95.2929609","32.3605864"],["-95.2926243","32.3609655"],["-95.2914704","32.3623526"],["-95.291136","32.362738"],["-95.2909033","32.3630083"],["-95.2907902","32.363164"],["-95.2906145","32.3634173"],["-95.2905193","32.3635759"],["-95.2903661","32.363875"],["-95.2902475","32.3641976"],["-95.2900984","32.3646445"],["-95.289964","32.3647472"],["-95.2897173","32.3654431"],["-95.2897495","32.3655889"],["-95.2891375","32.367463"],["-95.2888373","32.368466"],["-95.2886033","32.3694118"],["-95.2884788","32.3695276"],["-95.2884294","32.369676"],["-95.288238","32.3702909"],["-95.2882661","32.3704406"],["-95.2881764","32.3707372"],["-95.2880214","32.3711635"],["-95.287881","32.3714952"],["-95.2877381","32.371804"],["-95.287487","32.3722866"],["-95.2871659","32.3728214"],["-95.2870536","32.3729934"],["-95.2868605","32.3732664"],["-95.286476","32.3737693"],["-95.2862506","32.3740392"],["-95.2860279","32.3742794"],["-95.2854287","32.3748926"],["-95.2815673","32.3786867"],["-95.2801894","32.3800451"],["-95.2791443","32.3811071"],["-95.2783877","32.3819135"],["-95.2782212","32.3821217"],["-95.2778905","32.3825788"],["-95.2775472","32.3830756"],["-95.2772737","32.3835328"],["-95.2770129","32.384002"],["-95.276825","32.384382"],["-95.2766766","32.3847034"],["-95.2748814","32.3891426"],["-95.2744406","32.3902228"],["-95.2742862","32.3905716"],["-95.2741209","32.3909084"],["-95.2735698","32.3918763"],["-95.273271","32.3923299"],["-95.272914","32.3928295"],["-95.2727865","32.3929884"],["-95.2725041","32.3933204"],["-95.2720695","32.3938018"],["-95.2718049","32.3940753"],["-95.2714992","32.3943737"],["-95.2711787","32.3946694"],["-95.2706122","32.3951439"],["-95.2679818","32.3972047"],["-95.2672459","32.3977119"],["-95.2670907","32.3978111"],["-95.2665321","32.3981482"],["-95.2547276","32.4047955"],["-95.2527962","32.4058546"],["-95.2519681","32.4062622"],["-95.2516068","32.4063274"],["-95.2433525","32.409653"],["-95.2410983","32.4105398"],["-95.2254823","32.4168174"],["-95.2239127","32.4174505"],["-95.2131441","32.421834"],["-95.2117785","32.4224812"],["-95.2114143","32.4226521"],["-95.210133","32.4231945"],["-95.2073927","32.4243429"],["-95.2072227","32.4244729"],["-95.2059557","32.4250336"],["-95.2056317","32.4251299"],["-95.2050003","32.4254081"],["-95.2024355","32.4264403"],["-95.1947163","32.4299822"],["-95.1938128","32.430383"],["-95.1933221","32.43058"],["-95.1928405","32.430746"],["-95.1921431","32.430953"],["-95.1919338","32.4310082"],["-95.1914569","32.4311162"],["-95.1911719","32.4311722"],["-95.1908366","32.4312328"],["-95.1512495","32.4353365"],["-95.1506612","32.4354286"],["-95.1499377","32.4355652"],["-95.1490243","32.4357758"],["-95.1486631","32.43587"],["-95.1479836","32.4360656"],["-95.13498","32.4404476"],["-95.134723","32.4404967"],["-95.1346061","32.4405074"],["-95.1344807","32.4405142"],["-95.1343596","32.4405169"],["-95.1342389","32.4405162"],["-95.1340958","32.4405013"],["-95.1339125","32.4404706"],["-95.1331751","32.4402167"],["-95.1329548","32.4401588"],["-95.1328111","32.4401372"],["-95.1326689","32.4401232"],["-95.1323805","32.4400999"],["-95.1322234","32.4400784"],["-95.1315967","32.4399565"],["-95.1311921","32.4398687"],["-95.1296165","32.4394003"],["-95.1282547","32.4389476"],["-95.1278917","32.4388392"],["-95.1269826","32.4385842"],["-95.1259799","32.4383446"],["-95.1252101","32.4381857"],["-95.1245949","32.4380689"],["-95.1226723","32.4378094"],["-95.1214973","32.4377127"],["-95.1073019","32.4372037"],["-95.1056223","32.4371602"],["-95.1050748","32.4371682"],["-95.1040617","32.437205"],["-95.1035954","32.4372323"],["-95.1031483","32.4372686"],["-95.1019825","32.4373903"],["-95.07179","32.4418765"],["-95.0705359","32.4419638"],["-95.0673127","32.4419721"],["-95.0657494","32.4418096"],["-94.9578168","32.4350571"],["-94.9335136","32.4330008"],["-94.9307422","32.4327965"],["-94.9252944","32.4327048"],["-94.869659","32.4324166"],["-94.8472425","32.4334533"],["-94.8377278","32.4343321"],["-94.8373934","32.4343499"],["-94.8361961","32.4343676"],["-94.8354437","32.4343518"],["-94.8332794","32.4342442"],["-94.8330376","32.4342393"],["-94.8327059","32.434236"],["-94.8321384","32.4342377"],["-94.8287382","32.4344078"],["-94.8279636","32.4344511"],["-94.8272125","32.4344843"],["-94.8004764","32.4351835"],["-94.796323","32.434917"],["-94.7839471","32.4332313"],["-94.7814932","32.4328147"],["-94.7721513","32.4309219"],["-94.7705919","32.4307316"],["-94.7691025","32.4306371"],["-94.768533","32.4306333"],["-94.7669051","32.4306731"],["-94.7663178","32.4307123"],["-94.7651175","32.430829"],["-94.7645526","32.430906"],["-94.7639388","32.4310028"],["-94.7633749","32.4311058"],["-94.7627693","32.4312309"],["-94.7622074","32.4313589"],["-94.7615359","32.4315277"],["-94.7609106","32.4317065"],["-94.7601648","32.4319373"],["-94.721702","32.4455105"],["-94.7208739","32.4458042"],["-94.690476","32.4563452"],["-94.6899028","32.4564875"],["-94.6879012","32.4569154"],["-94.6871652","32.4570496"],["-94.609036","32.4684579"],["-94.5947172","32.4701233"],["-94.5933797","32.4703654"],["-94.5819393","32.4729652"],["-94.5272952","32.4836091"],["-94.5255533","32.4839014"],["-94.5240635","32.4840901"],["-94.5235862","32.4841404"],["-94.4689028","32.4864623"],["-94.4677589","32.4864512"],["-94.4627231","32.4864276"],["-94.4350823","32.4875719"],["-94.4330212","32.4877536"],["-94.4292363","32.4881049"],["-94.4054116","32.4889311"],["-94.4020802","32.4887591"],["-94.3999674","32.4887515"],["-94.3670068","32.4905184"],["-94.3647725","32.4907586"],["-94.231136","32.4961211"],["-94.1907958","32.492287"],["-94.1866367","32.4921239"],["-94.1845738","32.4921866"],["-94.169479","32.4932739"],["-94.1628567","32.4932677"],["-94.1616485","32.4931598"],["-94.1584901","32.4927011"],["-94.0828278","32.4779556"],["-94.0812602","32.4775845"],["-94.0784889","32.4767704"],["-94.0771322","32.4762864"],["-94.0603984","32.4696321"],["-94.0596618","32.4693133"],["-94.0590975","32.4690603"],["-94.0289446","32.4542644"],["-94.0284418","32.454048"],["-94.0265165","32.4532917"],["-94.0249635","32.4528327"],["-94.0240177","32.4525909"],["-94.0224738","32.4522483"],["-94.0214768","32.4520674"],["-94.0206618","32.4519498"],["-94.020296","32.451899"],["-94.019924","32.4518508"],["-94.0196371","32.4518161"],["-94.0183165","32.4516948"],["-94.0168924","32.451647"],["-94.0017988","32.4515659"],["-94.0000836","32.4514788"],["-93.9981845","32.4512896"],["-93.9970383","32.4511399"],["-93.9960018","32.4509795"],["-93.9950992","32.4508187"],["-93.9922662","32.4501826"],["-93.9824722","32.4472818"],["-93.9817612","32.4471141"],["-93.9811261","32.446977"],["-93.9799117","32.4467619"],["-93.979222","32.4466643"],["-93.9656435","32.4454531"],["-93.9469806","32.4438245"],["-93.9457802","32.4437233"],["-93.9447865","32.4436535"],["-93.9435292","32.4435535"],["-93.9430112","32.4435272"],["-93.9410252","32.4435478"],["-93.8646659","32.4505271"],["-93.8633453","32.4506885"],["-93.8614007","32.4510035"],["-93.8574682","32.4519226"],["-93.8569556","32.4520743"],["-93.8453285","32.4557947"],["-93.8439788","32.4562531"],["-93.8412452","32.4570966"],["-93.8220216","32.4632128"],["-93.8198705","32.4639214"],["-93.8193188","32.4641413"],["-93.8185507","32.464465"],["-93.815926","32.4657632"],["-93.813991","32.4667175"],["-93.8129334","32.467164"],["-93.8113475","32.4677079"],["-93.7964913","32.4724208"],["-93.7959058","32.4725895"],["-93.7953262","32.4727412"],["-93.7936233","32.4731162"],["-93.792845","32.4732988"],["-93.7923577","32.4734332"],["-93.7873553","32.475018"],["-93.786788","32.4752026"],["-93.78481","32.475841"],["-93.7842476","32.4760583"],["-93.783935","32.4761932"],["-93.783533","32.4763758"],["-93.7826183","32.476857"],["-93.7822535","32.4770814"],["-93.7818115","32.4773783"],["-93.7813314","32.4777247"],["-93.77836","32.4800477"],["-93.7776566","32.480595"],["-93.7766598","32.4814017"],["-93.776343","32.4816915"],["-93.7760116","32.4820217"],["-93.775738","32.482318"],["-93.7754963","32.4826023"],["-93.7752803","32.4828903"],["-93.7749756","32.483311"],["-93.7747949","32.4835757"],["-93.7746076","32.4838723"],["-93.774397","32.4842353"],["-93.7742044","32.484599"],["-93.7740662","32.484885"],["-93.7739201","32.4852441"],["-93.7736347","32.4860569"],["-93.7727228","32.4888218"],["-93.7726133","32.4891354"],["-93.7723936","32.4896564"],["-93.772259","32.4899148"],["-93.7720902","32.4901817"],["-93.7719063","32.4904505"],["-93.7717677","32.4906366"],["-93.77164","32.4907959"],["-93.7715109","32.4909449"],["-93.7713632","32.4911052"],["-93.7710622","32.4914001"],["-93.7708518","32.4915855"],["-93.7706538","32.4917513"],["-93.7704044","32.4919367"],["-93.7701521","32.492114"],["-93.7696534","32.492405"],["-93.7693616","32.492555"],["-93.7690119","32.4927182"],["-93.7624124","32.4954422"],["-93.7620715","32.495577"],["-93.7593929","32.4966735"],["-93.7584701","32.4970466"],["-93.7575006","32.4974354"],["-93.7567791","32.4977228"],["-93.7542167","32.4988006"],["-93.7535129","32.4991314"],["-93.7531695","32.4992986"],["-93.752812","32.4994888"],["-93.7523356","32.4997989"],["-93.7506164","32.5010162"],["-93.7492641","32.5019927"],["-93.749072","32.5020859"],["-93.7489207","32.5021642"],["-93.7487353","32.5022881"],["-93.7479882","32.5027872"],["-93.747719","32.5029818"],["-93.7475477","32.5031311"],["-93.7472471","32.5034468"],["-93.7470871","32.5036282"],["-93.746961","32.5037952"],["-93.7465046","32.5045054"],["-93.7458205","32.5055799"],["-93.7456767","32.5058535"],["-93.7455903","32.5060601"],["-93.7455248","32.5062299"],["-93.745483","32.5063659"],["-93.7454452","32.5065188"],["-93.745374","32.5069351"],["-93.7453079","32.507239"],["-93.7452442","32.5074415"],["-93.7451803","32.5075853"],["-93.745104","32.5077305"],["-93.7450026","32.5078908"],["-93.7448742","32.5080677"],["-93.7433051","32.5097829"],["-93.7431359","32.5100114"],["-93.7430437","32.5101908"],["-93.7430175","32.5103161"],["-93.7430046","32.5105155"],["-93.7430079","32.5105735"],["-93.7430131","32.5106249"],["-93.743033","32.510734"],["-93.7430994","32.5109707"],["-93.7431441","32.511089"],["-93.7431947","32.5111946"],["-93.7434838","32.5116911"],["-93.7443","32.5124725"],["-93.7456694","32.5138728"],["-93.7461426","32.514337"],["-93.7483849","32.5165865"],["-93.7461698","32.5182287"],["-93.7462325","32.5183778"],["-93.7465008","32.5186556"],["-93.7467291","32.5188804"],["-93.7493336","32.5213301"],["-93.7495901","32.5215958"],["-93.7497478","32.5217918"],["-93.7498932","32.5220011"],["-93.7500211","32.522217"],["-93.7501478","32.5224829"],["-93.7502549","32.5227521"],["-93.7503445","32.5230249"],["-93.7505175","32.5236343"],["-93.7508381","32.5247539"],["-93.7510061","32.5254374"],["-93.7512927","32.5264483"],["-93.7513337","32.5266425"],["-93.7513578","32.526858"],["-93.7513641","32.5272118"],["-93.7513319","32.5275475"],["-93.7512662","32.5278293"],["-93.7511765","32.5281038"],["-93.7510315","32.5284107"],["-93.7508335","32.5287297"],["-93.7502464","32.5294708"],["-93.7501806","32.5296399"],["-93.7503534","32.5295076"],["-93.7515759","32.5280337"],["-93.751769","32.5277032"],["-93.7518546","32.5274702"],["-93.7519205","32.5272737"],["-93.751957","32.5271048"],["-93.7519892","32.5268288"],["-93.751992","32.5267097"],["-93.7519911","32.526614"],["-93.751981","32.5265098"],["-93.7519691","32.5264106"],["-93.7519493","32.5262979"],["-93.7519238","32.5261728"],["-93.7518895","32.5260567"],["-93.7518402","32.5259195"],["-93.7517707","32.5257418"],["-93.7517069","32.5255948"],["-93.7515183","32.5253024"],["-93.75123","32.5248616"],["-93.7510754","32.5245455"],["-93.7508861","32.5240872"],["-93.7506986","32.5235195"],["-93.7504938","32.5228784"],["-93.7504039","32.5226525"],["-93.7502845","32.5223992"],["-93.7501496","32.5221631"],["-93.750032","32.5219801"],["-93.7499174","32.5218201"],["-93.7498036","32.5216744"],["-93.7497049","32.5215537"],["-93.7495928","32.5214309"],["-93.7494545","32.5212941"],["-93.7493248","32.5211694"],["-93.7492502","32.5210999"],["-93.7491817","32.5210349"],["-93.7477683","32.5197095"],["-93.7470525","32.5190067"],["-93.7484734","32.5179809"],["-93.7492403","32.5174685"],["-93.7497945","32.5170574"],["-93.7501693","32.5166764"],["-93.7464885","32.5129771"],["-93.7461379","32.5126133"],["-93.7459356","32.5125133"],["-93.7446209","32.5112154"],["-93.7444739","32.5109687"],["-93.7439825","32.5104785"],["-93.7437253","32.5102812"],["-93.7435968","32.5101824"],["-93.7434565","32.5100879"],["-93.743225","32.5099688"],["-93.7430979","32.5099215"],["-93.7429584","32.5098909"],["-93.7428998","32.5098852"],["-93.7428622","32.5098824"],["-93.7427643","32.5098762"],["-93.7425832","32.5098776"],["-93.7424068","32.5098968"],["-93.7422501","32.5099304"],["-93.7420806","32.509988"],["-93.7419331","32.5100603"],["-93.741773","32.5101694"],["-93.7416047","32.510316"],["-93.7414404","32.5104657"],["-93.7408658","32.5109902"],["-93.7407131","32.5110979"],["-93.7405065","32.5112501"],["-93.7400268","32.5115796"],["-93.7391469","32.5120446"],["-93.7380506","32.512603"],["-93.7364348","32.5134236"],["-93.7362258","32.513508"],["-93.7360214","32.5135861"],["-93.7358244","32.5136493"],["-93.7356086","32.5137087"],["-93.7353456","32.5137769"],["-93.7351269","32.5138213"],["-93.7346741","32.5138843"],["-93.7344627","32.513906"],["-93.733961","32.513924"],["-93.7219186","32.5137301"],["-93.7214839","32.5137128"],["-93.7208199","32.5136674"],["-93.7205777","32.5136468"],["-93.7202767","32.5136198"],["-93.717236","32.5132389"],["-93.716679","32.5131755"],["-93.7163016","32.5131502"],["-93.71602","32.5131456"],["-93.7157598","32.513149"],["-93.7153869","32.5131689"],["-93.7151317","32.5131978"],["-93.7148176","32.5132435"],["-93.7143962","32.5133178"],["-93.7141095","32.5133899"],["-93.7136425","32.5135241"],["-93.7133726","32.5136319"],["-93.7127987","32.5139025"],["-93.7124109","32.5141119"],["-93.7121043","32.5143081"],["-93.7118155","32.5145111"],["-93.7115801","32.5146981"],["-93.7109746","32.5152671"],["-93.7106938","32.5156379"],["-93.7102152","32.5163528"],["-93.7099556","32.5167442"],["-93.7086566","32.518709"],["-93.7064318","32.522103"],["-93.7060862","32.5226437"],["-93.7059734","32.5227968"],["-93.7057522","32.523067"],["-93.7054133","32.5234235"],["-93.705059","32.523772"],["-93.7048927","32.523913"],["-93.7047497","32.5240253"],["-93.7044629","32.5242185"],["-93.7043226","32.524308"],["-93.7041554","32.5243997"],["-93.7038904","32.524529"],["-93.7035414","32.5246923"],["-93.7031887","32.5248414"],["-93.7028088","32.5249644"],["-93.7024749","32.5250612"],["-93.7021583","32.5251355"],["-93.7017021","32.5252098"],["-93.7015286","32.5252324"],["-93.700632","32.5253035"],["-93.6866147","32.5263066"],["-93.6832324","32.5266676"],["-93.6787768","32.5274813"],["-93.6757738","32.528067"],["-93.6735882","32.5285867"],["-93.6688557","32.5298442"],["-93.6253177","32.540748"],["-93.6216961","32.5415703"],["-93.6193847","32.5418064"],["-93.6143526","32.5418736"],["-93.5332087","32.5417751"],["-93.5310559","32.5418908"],["-93.5293129","32.5421515"],["-93.5273569","32.5425574"],["-93.5255609","32.5430756"],["-93.5229967","32.5440491"],["-93.520855","32.5451658"],["-93.5196421","32.5459004"],["-93.5188198","32.5464518"],["-93.4860592","32.5709181"],["-93.4823949","32.5735075"],["-93.4802899","32.5746233"],["-93.478877","32.5752097"],["-93.4777488","32.5755883"],["-93.4756109","32.5761934"],["-93.4734928","32.5766015"],["-93.4693624","32.5767774"],["-93.4577112","32.5769752"],["-93.4490342","32.5771954"],["-93.3503382","32.5866152"],["-93.3494981","32.5867426"],["-93.3484574","32.5869802"],["-93.3425808","32.5885802"],["-93.3391422","32.5895306"],["-93.3254322","32.5932725"],["-93.3240914","32.5935901"],["-93.3229391","32.5938166"],["-93.3220841","32.5939531"],["-93.3211735","32.5940658"],["-93.3201848","32.5941383"],["-93.3190607","32.594186"],["-93.3165295","32.5942376"],["-93.3141471","32.5940986"],["-93.3126175","32.5939629"],["-93.3112721","32.5938018"],["-93.310159","32.5936221"],["-93.3087568","32.5933555"],["-93.3076196","32.5930855"],["-93.3062565","32.592741"],["-93.3023194","32.5916031"],["-93.2994336","32.590813"],["-93.2869076","32.5880841"],["-93.286315","32.5879769"],["-93.285596","32.5878699"],["-93.2850921","32.5878078"],["-93.2842086","32.5877039"],["-93.28227","32.5874851"],["-93.2815009","32.5873743"],["-93.2807328","32.5872318"],["-93.2784706","32.5867347"],["-93.2764717","32.5863078"],["-93.2753493","32.5860496"],["-93.2726417","32.585472"],["-93.2650285","32.5838578"],["-93.2630503","32.5834598"],["-93.2600053","32.5828262"],["-93.258653","32.5825655"],["-93.2552833","32.5818607"],["-93.2540641","32.5816104"],["-93.2520002","32.5811858"],["-93.2362864","32.5778864"],["-93.2358905","32.577801"],["-93.2161377","32.5736656"],["-93.2152953","32.5734822"],["-93.2135044","32.5731236"],["-93.2119712","32.5728096"],["-93.2101078","32.5724288"],["-93.206985","32.5716539"],["-93.205245","32.5711814"],["-93.2034765","32.5707"],["-93.1993947","32.5695648"],["-93.1979713","32.5692175"],["-93.1962926","32.5688383"],["-93.1941145","32.5684564"],["-93.1918832","32.568108"],["-93.1900221","32.5678076"],["-93.1532827","32.5620108"],["-93.1522327","32.5618803"],["-93.1512929","32.561789"],["-93.1501296","32.5616959"],["-93.1484258","32.5616199"],["-93.0887042","32.563321"],["-93.0489715","32.5631906"],["-93.0464793","32.5630138"],["-93.0286247","32.5610521"],["-93.0258145","32.5608117"],["-93.0242108","32.5607522"],["-93.021935","32.5607921"],["-93.0189852","32.5610245"],["-93.0106537","32.5618381"],["-93.0060873","32.5622887"],["-92.9650775","32.5666417"],["-92.9639932","32.5666959"],["-92.9311457","32.5670659"],["-92.9297318","32.56699"],["-92.9285492","32.5668938"],["-92.9266008","32.5666675"],["-92.925376","32.5664728"],["-92.923858","32.5661894"],["-92.9041475","32.5619996"],["-92.900323","32.5611513"],["-92.8835187","32.5577345"],["-92.8801662","32.5571732"],["-92.8791381","32.5570067"],["-92.8458402","32.5507504"],["-92.8424432","32.55011"],["-92.8370397","32.5488755"],["-92.8326785","32.5480711"],["-92.8297694","32.5477837"],["-92.8266716","32.5476168"],["-92.8053102","32.5479389"],["-92.7992953","32.5480942"],["-92.7970769","32.5481206"],["-92.7890182","32.548273"],["-92.7845141","32.5482625"],["-92.7829241","32.548155"],["-92.7775777","32.5476689"],["-92.700502","32.5402655"],["-92.6812223","32.5405451"],["-92.6638237","32.5399944"],["-92.6453654","32.5400528"],["-92.6434897","32.5400681"],["-92.6432157","32.5400738"],["-92.6420022","32.5400752"],["-92.6411294","32.5400867"],["-92.6398064","32.540093"],["-92.5220118","32.5393471"],["-92.5201167","32.539264"],["-92.5189008","32.539171"],["-92.5167431","32.5389189"],["-92.4589389","32.5300084"],["-92.4557581","32.5295744"],["-92.4452067","32.5284592"],["-92.4439612","32.5282865"],["-92.4424222","32.5279858"],["-92.4409342","32.5276258"],["-92.433294","32.5251995"],["-92.4299714","32.5244775"],["-92.4183267","32.5222052"],["-92.4165193","32.5219176"],["-92.4148915","32.5217539"],["-92.411909","32.5217019"],["-92.3678214","32.52161"],["-92.3661099","32.521555"],["-92.3378393","32.520198"],["-92.3368015","32.520121"],["-92.3351645","32.5199408"],["-92.3335179","32.5196597"],["-92.3320189","32.5193825"],["-92.3310398","32.5191518"],["-92.3293482","32.5187127"],["-92.3278889","32.518253"],["-92.3263372","32.5177383"],["-92.324628","32.5171368"],["-92.3224758","32.5164017"],["-92.3188888","32.51528"],["-92.3155756","32.5142662"],["-92.3047782","32.5109237"],["-92.3028293","32.5103956"],["-92.3015742","32.5101491"],["-92.2994787","32.5098294"],["-92.2982947","32.5097323"],["-92.2966666","32.5096751"],["-92.2810228","32.5096889"],["-92.2767083","32.5097362"],["-92.2746483","32.5097918"],["-92.2685588","32.5098293"],["-92.26378","32.5097365"],["-92.2550974","32.5097161"],["-92.2521092","32.5097715"],["-92.2478566","32.5098598"],["-92.2438588","32.5098524"],["-92.2201374","32.5097518"],["-92.2148847","32.5098923"],["-92.2096673","32.510002"],["-92.2009067","32.510721"],["-92.1990255","32.5107831"],["-92.170578","32.5108275"],["-92.1695852","32.5107705"],["-92.168737","32.510675"],["-92.1677221","32.5105188"],["-92.1667658","32.5103365"],["-92.1658042","32.5100952"],["-92.1649511","32.5098312"],["-92.164081","32.5095398"],["-92.1633505","32.5092522"],["-92.1626776","32.5089678"],["-92.162184","32.5087301"],["-92.1615965","32.5084233"],["-92.1610051","32.5080878"],["-92.1599369","32.5074312"],["-92.1520606","32.5024529"],["-92.1509183","32.5017605"],["-92.1488085","32.5006924"],["-92.1477054","32.5001983"],["-92.1466014","32.499772"],["-92.145402","32.499378"],["-92.1443126","32.4990803"],["-92.1432929","32.4988352"],["-92.1377572","32.4977987"],["-92.1289396","32.4961594"],["-92.1281021","32.4960353"],["-92.1222081","32.4949243"],["-92.1215542","32.4948602"],["-92.1208592","32.4948582"],["-92.120316","32.4949278"],["-92.1195719","32.4951261"],["-92.1157326","32.4962333"],["-92.1147793","32.4965873"],["-92.1134988","32.4971712"],["-92.1099506","32.4994254"],["-92.1095299","32.4996984"],["-92.1087854","32.5001733"],["-92.1085486","32.5003019"],["-92.1083337","32.5004052"],["-92.1080006","32.5005444"],["-92.107619","32.5006666"],["-92.1069824","32.5008334"],["-92.106335","32.5009494"],["-92.1058349","32.5009686"],["-92.1050217","32.5009371"],["-92.1042288","32.5008852"],["-92.1025748","32.5007564"],["-92.0782602","32.4988382"],["-92.0776896","32.4987737"],["-92.0772048","32.4987044"],["-92.0759964","32.4984904"],["-92.0599192","32.495033"],["-92.057547","32.4945929"],["-92.0570414","32.4945242"],["-92.050056","32.4939408"],["-92.0062015","32.4902026"],["-91.9216108","32.4829707"],["-91.920012","32.4827827"],["-91.9190041","32.4826335"],["-91.9127115","32.48155"],["-91.9085056","32.4808187"],["-91.9066934","32.480523"],["-91.9053885","32.4803434"],["-91.9045918","32.4802735"],["-91.9039004","32.4802272"],["-91.8772265","32.4801199"],["-91.8761335","32.4800635"],["-91.875153","32.4799898"],["-91.8739965","32.4798652"],["-91.8727485","32.4796557"],["-91.8619678","32.4772472"],["-91.8541595","32.4754405"],["-91.8060503","32.4672664"],["-91.8043287","32.46694"],["-91.8028264","32.4666165"],["-91.7734025","32.458778"],["-91.7720547","32.4584649"],["-91.7707175","32.4581784"],["-91.7695016","32.4579736"],["-91.7680303","32.4577688"],["-91.7579931","32.4567072"],["-91.7560696","32.45651"],["-91.7545717","32.4564467"],["-91.7053424","32.4562341"],["-91.7047833","32.4562271"],["-91.6154032","32.4557691"],["-91.6142757","32.4557064"],["-91.6129369","32.4555909"],["-91.6107236","32.4553129"],["-91.549921","32.4464938"],["-91.5469176","32.4460619"],["-91.5457127","32.4459031"],["-91.5439498","32.4457119"],["-91.5431344","32.4456481"],["-91.5418986","32.4455798"],["-91.5073208","32.444717"],["-91.5048054","32.4446357"],["-91.5036724","32.4445723"],["-91.5029097","32.4445009"],["-91.5019843","32.4443622"],["-91.4995365","32.4439317"],["-91.486247","32.4414283"],["-91.3798559","32.4254534"],["-91.3784128","32.4252897"],["-91.2973965","32.4189888"],["-91.2962037","32.4188713"],["-91.295488","32.4187813"],["-91.2936611","32.4184859"],["-91.2920803","32.4181758"],["-91.2255267","32.404542"],["-91.2227251","32.4038727"],["-91.2208727","32.403275"],["-91.2186762","32.4024242"],["-91.2173606","32.4018696"],["-91.2164074","32.4014257"],["-91.215471","32.4009493"],["-91.1935531","32.3886032"],["-91.1899363","32.3868139"],["-91.1881943","32.3860097"],["-91.1863438","32.3852074"],["-91.183583","32.3841378"],["-91.1799628","32.3829133"],["-91.1210939","32.3642023"],["-91.1184147","32.363337"],["-91.1153636","32.3622602"],["-91.1142213","32.3618145"],["-91.1128751","32.3612702"],["-91.1077905","32.3589421"],["-91.0669691","32.3385148"],["-91.0659021","32.3380146"],["-91.0647756","32.3375303"],["-91.0634878","32.3370197"],["-91.0622165","32.33656"],["-91.0608397","32.3361245"],["-91.0595754","32.3357555"],["-91.0585803","32.3354839"],["-91.0579649","32.3353371"],["-91.0565098","32.3350505"],["-91.0057649","32.3267379"],["-90.9557571","32.3196271"],["-90.9546142","32.319525"],["-90.9535676","32.3194667"],["-90.9526024","32.3194471"],["-90.9520077","32.3194552"],["-90.9506843","32.3195062"],["-90.9494966","32.3196094"],["-90.947787","32.3198298"],["-90.9397124","32.3209122"],["-90.9361783","32.3212809"],["-90.9328182","32.3215075"],["-90.9318215","32.321532"],["-90.9305954","32.3215349"],["-90.9290903","32.3214736"],["-90.9276072","32.3213666"],["-90.9263163","32.3212546"],["-90.9242382","32.3209614"],["-90.9232308","32.3207931"],["-90.9221267","32.3205718"],["-90.920952","32.320303"],["-90.9199079","32.3200403"],["-90.9179484","32.3194693"],["-90.9166226","32.3190259"],["-90.9160292","32.3188088"],["-90.9148819","32.3183549"],["-90.9139057","32.3179331"],["-90.9099251","32.315964"],["-90.8995397","32.3105134"],["-90.8993132","32.3104053"],["-90.8987919","32.3101748"],["-90.8984111","32.3100267"],["-90.8980162","32.3099135"],["-90.8975209","32.3098022"],["-90.8972646","32.3097714"],["-90.8969534","32.309745"],["-90.8965725","32.3097297"],["-90.8960037","32.3097352"],["-90.8956219","32.3097711"],["-90.8952408","32.3098307"],["-90.8949377","32.3098983"],["-90.8916534","32.3109711"],["-90.8909502","32.3112225"],["-90.8902665","32.311501"],["-90.8885732","32.3124047"],["-90.8862374","32.3136986"],["-90.8856046","32.3140979"],["-90.8847723","32.3147404"],["-90.8841579","32.3152471"],["-90.8836516","32.31565"],["-90.8832391","32.3159408"],["-90.8828886","32.3161683"],["-90.8824892","32.3163937"],["-90.881661","32.3167986"],["-90.8784629","32.3182067"],["-90.8776679","32.3185556"],["-90.8773077","32.3187106"],["-90.8767654","32.3189443"],["-90.8687218","32.3224714"],["-90.8684711","32.3225822"],["-90.8670835","32.3232053"],["-90.8664703","32.3235006"],["-90.8659714","32.3237864"],["-90.8653815","32.324166"],["-90.864853","32.3245692"],["-90.8642616","32.3250833"],["-90.8637175","32.3256258"],["-90.863241","32.3262081"],["-90.862833","32.3267839"],["-90.8623879","32.3275648"],["-90.86063","32.3308591"],["-90.8603585","32.3313424"],["-90.8601412","32.3316534"],["-90.8599293","32.3319371"],["-90.8596925","32.3321982"],["-90.8594303","32.3324607"],["-90.8591318","32.3327126"],["-90.8585484","32.3331212"],["-90.8582028","32.3333381"],["-90.8535423","32.3361894"],["-90.850667","32.3380722"],["-90.847736","32.3400321"],["-90.8471116","32.3404502"],["-90.8457925","32.3413434"],["-90.8446499","32.3421095"],["-90.8422429","32.3437381"],["-90.8421693","32.3437873"],["-90.8398608","32.3452986"],["-90.8388466","32.3458969"],["-90.8381419","32.3461875"],["-90.8377473","32.3463297"],["-90.8374358","32.3464288"],["-90.8370348","32.3465373"],["-90.8365593","32.3466531"],["-90.8361216","32.3467413"],["-90.8357063","32.3468011"],["-90.8210345","32.3481721"],["-90.8202791","32.3482482"],["-90.8186751","32.3484659"],["-90.8166005","32.3487753"],["-90.8050481","32.3508897"],["-90.8031948","32.3511812"],["-90.8015466","32.351392"],["-90.7783864","32.3532718"],["-90.7542375","32.353216"],["-90.7511705","32.3530341"],["-90.7448227","32.3525819"],["-90.7431019","32.3525958"],["-90.7419585","32.3526625"],["-90.7407336","32.3528232"],["-90.739322","32.3530458"],["-90.737932","32.3533967"],["-90.7361891","32.3539168"],["-90.7303007","32.3556018"],["-90.7227129","32.3574501"],["-90.7191407","32.3582079"],["-90.6934818","32.3630723"],["-90.6895178","32.3636292"],["-90.6878896","32.36372"],["-90.6864762","32.3637069"],["-90.6848777","32.3636243"],["-90.6832479","32.3634845"],["-90.6816405","32.3632458"],["-90.6799382","32.3628937"],["-90.6559003","32.3559639"],["-90.6530855","32.3551993"],["-90.6515618","32.354877"],["-90.6492816","32.3545931"],["-90.6252341","32.3525617"],["-90.6242064","32.3523142"],["-90.6232073","32.3520072"],["-90.6217154","32.3513638"],["-90.6136391","32.3469681"],["-90.6069756","32.3433407"],["-90.604686","32.3423114"],["-90.6031929","32.341832"],["-90.6018807","32.3414832"],["-90.6005833","32.341196"],["-90.599352","32.34102"],["-90.5981973","32.3408996"],["-90.5972397","32.3408368"],["-90.5964166","32.3408003"],["-90.5956437","32.3407808"],["-90.5953454","32.3407865"],["-90.5945766","32.3408247"],["-90.5936247","32.3408938"],["-90.5927032","32.3409851"],["-90.5919501","32.3411129"],["-90.5899925","32.3416254"],["-90.5671173","32.3494252"],["-90.5390196","32.359981"],["-90.5376276","32.3604199"],["-90.5364669","32.3607274"],["-90.5354628","32.3609215"],["-90.5344409","32.3610669"],["-90.5323145","32.361203"],["-90.482696","32.3620936"],["-90.4804299","32.3620871"],["-90.478363","32.3619586"],["-90.4763659","32.3618047"],["-90.4599527","32.3601185"],["-90.4250474","32.3576806"],["-90.4170453","32.357123"],["-90.4152003","32.3569629"],["-90.4141319","32.3568711"],["-90.4132691","32.3568016"],["-90.4125615","32.3567226"],["-90.4120574","32.3566524"],["-90.4115337","32.3565629"],["-90.4110187","32.356457"],["-90.4104337","32.356314"],["-90.4098135","32.3561428"],["-90.4069275","32.3552394"],["-90.4059025","32.3549115"],["-90.4025129","32.3538265"],["-90.400775","32.3533508"],["-90.3975663","32.3525902"],["-90.3876262","32.3502321"],["-90.384897","32.3497056"],["-90.3695142","32.3470266"],["-90.3673912","32.3466205"],["-90.3659897","32.3462535"],["-90.3485761","32.3405024"],["-90.3478695","32.3402573"],["-90.3466647","32.3397729"],["-90.3459381","32.3394269"],["-90.345144","32.3390274"],["-90.344204","32.3384823"],["-90.343275","32.3378463"],["-90.3411688","32.3363918"],["-90.3340482","32.3314879"],["-90.329883","32.3289238"],["-90.2651602","32.2920075"],["-90.2642079","32.2915499"],["-90.2628759","32.2910139"],["-90.2622661","32.290831"],["-90.2604236","32.2904004"],["-90.2541531","32.2891071"],["-90.2525484","32.2888036"],["-90.2517839","32.2886887"],["-90.25089","32.2885793"],["-90.2501212","32.2885039"],["-90.2493154","32.2884472"],["-90.2484833","32.2884146"],["-90.2476088","32.2883999"],["-90.2446202","32.2885035"],["-90.2415393","32.2886345"],["-90.2381576","32.2887307"],["-90.2373402","32.2887118"],["-90.2348426","32.288544"],["-90.2302826","32.2881273"],["-90.2294289","32.2880108"],["-90.2287682","32.2878921"],["-90.2278154","32.2877067"],["-90.227386","32.2876256"],["-90.2218073","32.2865408"],["-90.2211006","32.286433"],["-90.2202179","32.2863487"],["-90.2192246","32.2862728"],["-90.2184576","32.2862272"],["-90.2171528","32.2861251"],["-90.2166917","32.2860233"],["-90.2163641","32.2859184"],["-90.2160343","32.2857859"],["-90.2157427","32.285624"],["-90.2154557","32.2854329"],["-90.2150513","32.2850497"],["-90.2148026","32.2847212"],["-90.2146059","32.2843522"],["-90.2143464","32.2837607"],["-90.2139145","32.2826648"],["-90.2133676","32.2813484"],["-90.2129383","32.2803173"],["-90.2127388","32.27989"],["-90.2125418","32.27954"],["-90.2120841","32.2788803"],["-90.2107264","32.2770506"],["-90.2103797","32.2766383"],["-90.2101253","32.2763343"],["-90.2097153","32.2760586"],["-90.209154","32.2757552"],["-90.2088585","32.2756253"],["-90.2083027","32.2754363"],["-90.2079378","32.2753507"],["-90.2071315","32.2752706"],["-90.2060493","32.2752925"],["-90.2035918","32.275575"],["-90.1982024","32.2758566"],["-90.1971936","32.2758213"],["-90.1937584","32.2756948"],["-90.1932595","32.2757066"],["-90.1927795","32.2757401"],["-90.1924141","32.275781"],["-90.1919556","32.275853"],["-90.187547","32.2767766"],["-90.1870092","32.2768656"],["-90.1863817","32.276936"],["-90.185724","32.2769564"],["-90.1850638","32.276956"],["-90.1842728","32.2768746"],["-90.1820474","32.2765347"],["-90.178373","32.2759471"],["-90.1775819","32.2759129"],["-90.177153","32.2759128"],["-90.1765802","32.2759921"],["-90.17614","32.2761262"],["-90.1757001","32.2763096"],["-90.1752101","32.2765632"],["-90.1747806","32.2768939"],["-90.1743199","32.2773889"],["-90.1740364","32.2778799"],["-90.1724013","32.2809427"],["-90.1720911","32.2815148"],["-90.1718663","32.2818684"],["-90.1713549","32.2825329"],["-90.1692763","32.2850705"],["-90.1685832","32.2860591"],["-90.1682138","32.2866946"],["-90.1679632","32.2872412"],["-90.1677056","32.28796"],["-90.1675093","32.288707"],["-90.167413","32.2892597"],["-90.167363","32.2897739"],["-90.1673953","32.2904328"],["-90.1674461","32.2913252"],["-90.1674358","32.2926531"],["-90.1674247","32.2936481"],["-90.1674134","32.2942861"],["-90.1673581","32.2946097"],["-90.1672282","32.2949272"],["-90.1670538","32.295238"],["-90.1667804","32.2955651"],["-90.1664419","32.2958745"],["-90.1659671","32.2962619"],["-90.1657536","32.2964777"],["-90.1656473","32.2966802"],["-90.1656046","32.2968603"],["-90.165607","32.2970847"],["-90.1656718","32.2973625"],["-90.1657985","32.2976058"],["-90.1659966","32.2978443"],["-90.1662548","32.2980529"],["-90.1665506","32.2981983"],["-90.1668489","32.2982712"],["-90.1677511","32.2983898"],["-90.1680539","32.2984079"],["-90.1683663","32.2983887"],["-90.1686785","32.298332"],["-90.1691358","32.2981881"],["-90.1715041","32.2973024"],["-90.1720598","32.2971727"],["-90.1725708","32.2971273"],["-90.1730658","32.2971292"],["-90.1734896","32.2971666"],["-90.1744196","32.2972832"],["-90.1756531","32.2974596"],["-90.1862092","32.2988846"],["-90.1864057","32.2979311"],["-90.1779721","32.2967212"],["-90.1762123","32.2964525"],["-90.1754831","32.2963686"],["-90.1749468","32.2963385"],["-90.1738967","32.2964034"],["-90.1730461","32.2965516"],["-90.1725126","32.2967042"],["-90.1704236","32.2975445"],["-90.1698351","32.2976643"],["-90.1693668","32.2976699"],["-90.1689831","32.2975687"],["-90.1686439","32.29739"],["-90.1683705","32.2971411"],["-90.1681781","32.29683"],["-90.1680874","32.2964389"],["-90.1680648","32.2952575"],["-90.16795","32.2940777"],["-90.1679015","32.2927899"],["-90.1677483","32.2903674"],["-90.1678225","32.2893508"],["-90.1679892","32.2885253"],["-90.1683664","32.287374"],["-90.168743","32.2866373"],["-90.1691703","32.2859398"],["-90.1696509","32.285318"],["-90.171298","32.2834189"],["-90.1720628","32.2826186"],["-90.1726447","32.2819055"],["-90.1732646","32.281004"],["-90.174127","32.2795601"],["-90.1744071","32.2788844"],["-90.1745029","32.2783244"],["-90.1745034","32.2778454"],["-90.1744272","32.2772974"],["-90.1741194","32.2765754"],["-90.173675","32.2759922"],["-90.1729965","32.2754452"],["-90.1720767","32.274994"],["-90.1712885","32.2747987"],["-90.1700604","32.2745787"],["-90.1691547","32.2744374"],["-90.1660586","32.2739199"],["-90.1638831","32.2735355"],["-90.1632867","32.2734163"],["-90.1629003","32.2733024"],["-90.162457","32.2731267"],["-90.1619503","32.2728344"],["-90.1615227","32.2724913"],["-90.1611883","32.2721511"],["-90.1608956","32.2718022"],["-90.1606189","32.2714316"],["-90.1603605","32.2710292"],["-90.1601396","32.2705985"],["-90.1600341","32.2702979"],["-90.1599629","32.269996"],["-90.1599213","32.2696606"],["-90.1599182","32.2693453"],["-90.1599832","32.2688852"],["-90.1600311","32.2686869"],["-90.1601232","32.2684052"],["-90.1602392","32.2680686"],["-90.1602585","32.2678243"],["-90.1603727","32.2674935"],["-90.1605329","32.2669647"],["-90.1606744","32.2663585"],["-90.1607762","32.2656778"],["-90.1611204","32.2574287"],["-90.1613259","32.2551916"],["-90.1614304","32.2545046"],["-90.1616661","32.2533351"],["-90.1620321","32.2519247"],["-90.1651815","32.2411227"],["-90.165328","32.2405244"],["-90.1653978","32.2400691"],["-90.1653867","32.2397495"],["-90.1652009","32.2385103"],["-90.165135","32.2381429"],["-90.1650653","32.2379136"],["-90.1649888","32.2377381"],["-90.1643714","32.236614"],["-90.1590623","32.2266894"],["-90.1575996","32.223955"],["-90.1561961","32.2213747"],["-90.1556266","32.2204126"],["-90.1485924","32.2073383"],["-90.1399294","32.191391"],["-90.1395226","32.1905909"],["-90.1386065","32.1883211"],["-90.1376821","32.1858694"],["-90.1357178","32.1807382"],["-90.1355395","32.1802416"],["-90.1275702","32.1593062"],["-90.1268683","32.1576479"],["-90.1263952","32.1568708"],["-90.1258464","32.1561516"],["-90.1252277","32.155452"],["-90.1245929","32.1548478"],["-90.1240816","32.1543965"],["-90.1236439","32.1539869"],["-90.1230103","32.1534428"],["-90.1222461","32.1528872"],["-90.1215943","32.1524887"],["-90.1209559","32.1521516"],["-90.1035421","32.1440818"],["-90.1016021","32.1431448"],["-90.1005926","32.1425673"],["-90.0997277","32.141997"],["-90.0990823","32.1415377"],["-90.0944334","32.1380843"],["-90.093544","32.1374287"],["-90.0880058","32.1333092"],["-90.0781733","32.1259789"],["-90.0527675","32.1070524"],["-90.0519479","32.1063518"],["-90.0514745","32.1059196"],["-90.050795","32.1052119"],["-90.05009","32.1043957"],["-90.048028","32.1017867"],["-90.0474428","32.1011832"],["-90.0469146","32.1006999"],["-90.046307","32.1002082"],["-90.0457491","32.099813"],["-90.0451613","32.099437"],["-90.0430208","32.0982625"],["-90.0422788","32.0978405"],["-90.0417008","32.0974615"],["-90.0411336","32.0970437"],["-90.0406615","32.0966494"],["-90.0401147","32.0961506"],["-90.039628","32.0956228"],["-90.039169","32.0950654"],["-90.0387487","32.0944773"],["-90.0381156","32.0933867"],["-90.0370884","32.0915214"],["-90.0361145","32.0897636"],["-90.0356895","32.0890701"],["-90.035335","32.0885435"],["-90.0348118","32.0878511"],["-90.0343013","32.0872371"],["-90.0334573","32.0863569"],["-90.0327772","32.085726"],["-90.0313815","32.0846249"],["-89.9880252","32.0520262"],["-89.9872255","32.051395"],["-89.9863501","32.0506173"],["-89.9572345","32.0237047"],["-89.9515852","32.0184848"],["-89.950879","32.0179774"],["-89.9500744","32.0174728"],["-89.9488339","32.0168565"],["-89.9079134","32.0000402"],["-89.906972","31.9996502"],["-89.9059838","31.9992257"],["-89.9044462","31.9985336"],["-89.9029014","31.9976787"],["-89.9018767","31.996975"],["-89.8914869","31.989616"],["-89.8906177","31.9891304"],["-89.8895811","31.988653"],["-89.8883813","31.9882394"],["-89.886609","31.9877884"],["-89.8813662","31.9865421"],["-89.8799607","31.9861542"],["-89.8790973","31.9858295"],["-89.8781493","31.9853714"],["-89.8771234","31.9847916"],["-89.8761319","31.9840828"],["-89.8752709","31.9833741"],["-89.86654","31.9765813"],["-89.8658722","31.9760652"],["-89.8642932","31.9747814"],["-89.8637348","31.9742735"],["-89.8631502","31.9736815"],["-89.8623504","31.9728001"],["-89.8613819","31.9715297"],["-89.858065","31.9670072"],["-89.856659","31.965265"],["-89.8551087","31.963448"],["-89.8525772","31.960537"],["-89.8509319","31.9585793"],["-89.8470673","31.9535767"],["-89.8467024","31.9531308"],["-89.8456423","31.9519987"],["-89.8255287","31.9310866"],["-89.824149","31.9297646"],["-89.8231022","31.9289266"],["-89.8216695","31.9278927"],["-89.8205179","31.9271198"],["-89.8130691","31.9227038"],["-89.7936948","31.9113873"],["-89.7906592","31.9098279"],["-89.7692943","31.8972751"],["-89.7662935","31.8954723"],["-89.7658144","31.8950852"],["-89.7654128","31.8947201"],["-89.7651447","31.894458"],["-89.764845","31.8941185"],["-89.7644918","31.8936778"],["-89.7642135","31.8932642"],["-89.7639692","31.8928674"],["-89.7637515","31.8924243"],["-89.7635302","31.891916"],["-89.7633918","31.8914784"],["-89.7632882","31.8910669"],["-89.763223","31.8907491"],["-89.7631485","31.8902079"],["-89.7631227","31.8897559"],["-89.7631235","31.8893006"],["-89.7631621","31.8887945"],["-89.7640855","31.882531"],["-89.7641159","31.8819781"],["-89.7641076","31.8816067"],["-89.764094","31.8812894"],["-89.7640569","31.8810076"],["-89.7640006","31.8806663"],["-89.7638952","31.8802058"],["-89.7637638","31.8797534"],["-89.7636128","31.8793364"],["-89.7633771","31.8787937"],["-89.7630632","31.8782345"],["-89.7626911","31.8776997"],["-89.7623188","31.8772147"],["-89.761795","31.8766595"],["-89.7613586","31.8762677"],["-89.7609002","31.8758849"],["-89.7603825","31.8755373"],["-89.7598104","31.8752123"],["-89.7592305","31.8749206"],["-89.7584685","31.8745955"],["-89.7569378","31.8739863"],["-89.7433348","31.8685509"],["-89.7419345","31.8679942"],["-89.7408402","31.8675692"],["-89.7385578","31.8667139"],["-89.7366143","31.8660906"],["-89.7337405","31.8651791"],["-89.7313221","31.8644169"],["-89.7305528","31.8641064"],["-89.7300022","31.8638287"],["-89.7295545","31.8635799"],["-89.7288573","31.8631145"],["-89.7285843","31.8628944"],["-89.7282706","31.8626287"],["-89.7278847","31.8622682"],["-89.7219342","31.8561657"],["-89.7215614","31.855709"],["-89.7212497","31.8552583"],["-89.7210223","31.8549085"],["-89.7208375","31.8545874"],["-89.7206581","31.8542227"],["-89.7192185","31.8507523"],["-89.7181473","31.8483221"],["-89.7176097","31.8472455"],["-89.7169028","31.84592"],["-89.7064405","31.8289091"],["-89.7049452","31.826595"],["-89.7026199","31.8230638"],["-89.7016052","31.8215176"],["-89.7003569","31.8196243"],["-89.699212","31.8176305"],["-89.6964055","31.8116151"],["-89.6956771","31.8100453"],["-89.691287","31.8004827"],["-89.6909667","31.799797"],["-89.6904529","31.7987134"],["-89.6898728","31.7975079"],["-89.6891705","31.7960988"],["-89.685284","31.7882942"],["-89.6847905","31.7873178"],["-89.6810176","31.7796738"],["-89.6805437","31.7786745"],["-89.6796974","31.7766229"],["-89.6792561","31.7754554"],["-89.6760868","31.7672056"],["-89.6757904","31.7665864"],["-89.6755698","31.7661737"],["-89.6752071","31.765577"],["-89.674783","31.7649876"],["-89.6743022","31.764402"],["-89.6737814","31.7638574"],["-89.6730125","31.7631511"],["-89.6721886","31.7624223"],["-89.6715126","31.7618294"],["-89.6683686","31.7590772"],["-89.6673846","31.7582262"],["-89.6671479","31.7580129"],["-89.6634768","31.7548137"],["-89.6631022","31.7545073"],["-89.6622941","31.7538916"],["-89.6611539","31.753057"],["-89.6597526","31.7521272"],["-89.6588838","31.7515699"],["-89.6585974","31.7514023"],["-89.6576593","31.7508749"],["-89.6568788","31.7504636"],["-89.6556099","31.749828"],["-89.6545552","31.7493408"],["-89.653931","31.74907"],["-89.6532952","31.748808"],["-89.6492057","31.7472044"],["-89.6482683","31.7468279"],["-89.6478357","31.746639"],["-89.6474558","31.7464595"],["-89.6471479","31.7462995"],["-89.6467758","31.7460932"],["-89.6463032","31.7458004"],["-89.6457899","31.7454633"],["-89.6454731","31.7452348"],["-89.6450838","31.7449283"],["-89.6448554","31.7447347"],["-89.644746","31.7446286"],["-89.6444721","31.7443655"],["-89.6441603","31.744058"],["-89.6438779","31.7437487"],["-89.6436209","31.7434457"],["-89.6434588","31.7432477"],["-89.6432299","31.74294"],["-89.6430389","31.742663"],["-89.6428759","31.7424199"],["-89.6427965","31.7422898"],["-89.6424664","31.7417106"],["-89.6421259","31.7410657"],["-89.6419302","31.7406845"],["-89.6349659","31.7270424"],["-89.6346322","31.7264463"],["-89.6343305","31.7259285"],["-89.6340642","31.7255056"],["-89.6195344","31.7041355"],["-89.6187813","31.7030739"],["-89.6183215","31.702508"],["-89.6178488","31.7019639"],["-89.6173723","31.7014739"],["-89.6169488","31.7010688"],["-89.6077792","31.6926127"],["-89.6072455","31.6920863"],["-89.6065305","31.6913426"],["-89.602704","31.6871926"],["-89.6020941","31.6865189"],["-89.6018572","31.6862724"],["-89.5917429","31.6752684"],["-89.5906448","31.6740765"],["-89.5901849","31.673578"],["-89.5891166","31.6724196"],["-89.5845836","31.6674873"],["-89.5837289","31.6665675"],["-89.576483","31.6586727"],["-89.5758716","31.6580304"],["-89.575471","31.6576548"],["-89.5748241","31.6570079"],["-89.5733595","31.6555711"],["-89.5728095","31.6549901"],["-89.5724982","31.6546296"],["-89.5719694","31.6539757"],["-89.5716245","31.6535277"],["-89.5711115","31.6527178"],["-89.5706603","31.6519371"],["-89.5701988","31.6510195"],["-89.5698738","31.6502191"],["-89.5691709","31.648138"],["-89.5690093","31.6476777"],["-89.5688348","31.647254"],["-89.568763","31.6470721"],["-89.5685274","31.6465173"],["-89.5683045","31.6460672"],["-89.5680179","31.6455443"],["-89.56784","31.6452475"],["-89.5674922","31.6446986"],["-89.567159","31.6442066"],["-89.5669735","31.6439488"],["-89.5664325","31.6432541"],["-89.5655405","31.642112"],["-89.5648153","31.64119"],["-89.5603668","31.6355576"],["-89.5600706","31.6351898"],["-89.559777","31.6348194"],["-89.5594667","31.6344314"],["-89.559135","31.63404"],["-89.558516","31.6333671"],["-89.5582165","31.6330651"],["-89.5577732","31.632656"],["-89.5574798","31.6323927"],["-89.5572018","31.6321452"],["-89.5564281","31.6315541"],["-89.5561191","31.6313363"],["-89.5556272","31.6310008"],["-89.555194","31.6307235"],["-89.5546124","31.6303778"],["-89.5542681","31.6301879"],["-89.553414","31.6297451"],["-89.5530962","31.6295989"],["-89.5526321","31.6294005"],["-89.5512886","31.6288593"],["-89.548178","31.62764"],["-89.5473853","31.6273101"],["-89.5470221","31.6271431"],["-89.5466595","31.6269669"],["-89.5463088","31.6267854"],["-89.5456686","31.6264376"],["-89.5454756","31.626329"],["-89.5452646","31.6262015"],["-89.5446004","31.6257454"],["-89.5441723","31.6254332"],["-89.5437335","31.6250922"],["-89.5432466","31.6246792"],["-89.5426954","31.6241763"],["-89.5417361","31.6231591"],["-89.5413835","31.6227537"],["-89.5412075","31.6225279"],["-89.5409531","31.6221771"],["-89.5406709","31.6217646"],["-89.5403646","31.6212806"],["-89.5401875","31.6209933"],["-89.5399716","31.6206126"],["-89.5395919","31.6198196"],["-89.5392514","31.6190556"],["-89.5343801","31.6076016"],["-89.5232126","31.5813598"],["-89.5223534","31.5793869"],["-89.5221686","31.5790044"],["-89.5219623","31.5786285"],["-89.5217369","31.5782005"],["-89.5213007","31.5774018"],["-89.5180919","31.5721518"],["-89.5173906","31.571011"],["-89.5115914","31.5615375"],["-89.5068172","31.553745"],["-89.4974576","31.5384615"],["-89.4965131","31.5369177"],["-89.4942701","31.5332066"],["-89.4932404","31.5315672"],["-89.4927834","31.5308371"],["-89.4921964","31.5298767"],["-89.4913644","31.5284881"],["-89.4847121","31.5176035"],["-89.4836667","31.5159072"],["-89.483067","31.5149352"],["-89.4623946","31.4812868"],["-89.462158","31.4809554"],["-89.4618267","31.4805174"],["-89.4615483","31.4801636"],["-89.4611224","31.4796585"],["-89.4556214","31.4739267"],["-89.455009","31.4732858"],["-89.4487034","31.4667185"],["-89.4482108","31.4662094"],["-89.4479374","31.4659311"],["-89.4477314","31.4657247"],["-89.4416002","31.4593398"],["-89.4411418","31.4588714"],["-89.4383415","31.4559299"],["-89.435959","31.4534785"],["-89.4355873","31.4530845"],["-89.4319851","31.4493346"],["-89.4309863","31.4481929"],["-89.4305241","31.4476125"],["-89.4298321","31.4467346"],["-89.4293223","31.4460201"],["-89.4278993","31.4440411"],["-89.4275683","31.4435753"],["-89.4260947","31.441519"],["-89.4255167","31.4407212"],["-89.4132192","31.4235644"],["-89.4126529","31.4227866"],["-89.4118795","31.4217542"],["-89.4114246","31.421195"],["-89.410552","31.4201757"],["-89.4099663","31.4195221"],["-89.4098358","31.4193845"],["-89.4095157","31.4190438"],["-89.408974","31.418508"],["-89.3826716","31.3947379"],["-89.3779744","31.3903871"],["-89.3777747","31.3902076"],["-89.3709463","31.3840141"],["-89.3705976","31.3836874"],["-89.3698942","31.3829888"],["-89.3684939","31.3814653"],["-89.3662814","31.3788634"],["-89.3656833","31.3781633"],["-89.3651948","31.3775891"],["-89.3636117","31.3757792"],["-89.3630574","31.375159"],["-89.357037","31.3684385"],["-89.3558943","31.3671553"],["-89.3555956","31.3668934"],["-89.354772","31.3659281"],["-89.3545698","31.3656867"],["-89.3542786","31.3653412"],["-89.3539428","31.3649305"],["-89.353696","31.3646345"],["-89.3502225","31.3605656"],["-89.3491382","31.3594141"],["-89.3489048","31.3591736"],["-89.3487436","31.3588261"],["-89.3486287","31.3585547"],["-89.3485846","31.3584356"],["-89.348546","31.3583067"],["-89.3485252","31.3581894"],["-89.34851","31.3580736"],["-89.3484978","31.3578999"],["-89.3484014","31.35608"],["-89.3483963","31.355771"],["-89.3484146","31.3556172"],["-89.3484474","31.355408"],["-89.3485125","31.3551738"],["-89.3485703","31.3550172"],["-89.3486498","31.354854"],["-89.3487506","31.354661"],["-89.3491703","31.3540843"],["-89.3496947","31.3534952"],["-89.3501601","31.3529434"],["-89.3505259","31.352434"],["-89.3508638","31.3519088"],["-89.3510697","31.3515518"],["-89.3512431","31.3512184"],["-89.3514006","31.3508863"],["-89.3515543","31.3505152"],["-89.3516977","31.3501315"],["-89.3518299","31.3497006"],["-89.3519634","31.3491866"],["-89.3520669","31.3487468"],["-89.3521726","31.3481209"],["-89.3522192","31.3476409"],["-89.352239","31.3471706"],["-89.3523929","31.3341626"],["-89.3524467","31.3307769"],["-89.352477","31.3281145"],["-89.352467","31.3270602"],["-89.3525242","31.3221055"],["-89.3525379","31.3200487"],["-89.3526061","31.3133023"],["-89.352785","31.2942558"],["-89.3527887","31.2930309"],["-89.3528499","31.286977"],["-89.3528473","31.2857006"],["-89.3528049","31.285091"],["-89.3527398","31.2845485"],["-89.3526504","31.2839689"],["-89.3525111","31.2833314"],["-89.3522948","31.2825107"],["-89.3520824","31.2818928"],["-89.3516891","31.2808507"],["-89.3515242","31.2804563"],["-89.3513396","31.2800708"],["-89.3511075","31.2796239"],["-89.3507296","31.2789488"],["-89.350023","31.2779068"],["-89.3288952","31.2480014"],["-89.3281675","31.2468509"],["-89.3277177","31.2461191"],["-89.3268672","31.2447109"],["-89.3266755","31.2443584"],["-89.3264348","31.243896"],["-89.3263268","31.2436467"],["-89.3262531","31.2434183"],["-89.326209","31.2432175"],["-89.3261938","31.2430225"],["-89.3262035","31.242805"],["-89.3262359","31.2425832"],["-89.3262836","31.242362"],["-89.3263958","31.2419211"],["-89.3264288","31.2417697"],["-89.3264428","31.2416521"],["-89.3264521","31.2415459"],["-89.326445","31.2414254"],["-89.3264222","31.241303"],["-89.3263913","31.2411886"],["-89.3263471","31.2410757"],["-89.3262848","31.240964"],["-89.326206","31.240864"],["-89.3261062","31.2407582"],["-89.3259734","31.2406496"],["-89.3258481","31.2405753"],["-89.3256997","31.2404958"],["-89.3255221","31.2404304"],["-89.32537","31.2403841"],["-89.3251404","31.2403242"],["-89.3224879","31.2397277"],["-89.321172","31.2394046"],["-89.3188184","31.2387595"],["-89.3157841","31.2381233"],["-89.3146976","31.2379635"],["-89.3138658","31.2378753"],["-89.313147","31.2378182"],["-89.3124064","31.2377699"],["-89.3114146","31.2377433"],["-89.3109554","31.2377505"],["-89.3106058","31.2377634"],["-89.3098101","31.2378187"],["-89.3092304","31.2378681"],["-89.3081024","31.2379951"],["-89.30759","31.238069"],["-89.3068443","31.2381987"],["-89.3055944","31.2385075"],["-89.3050852","31.2386492"],["-89.3035161","31.2391515"],["-89.3032164","31.2392625"],["-89.3024411","31.2395732"],["-89.3011275","31.2400847"],["-89.3003219","31.2403964"],["-89.2973226","31.2415355"],["-89.2969493","31.2416498"],["-89.2963339","31.2418195"],["-89.2958011","31.2419582"],["-89.2953447","31.242066"],["-89.2946619","31.2421989"],["-89.2935961","31.2423466"],["-89.2930278","31.2424154"],["-89.2923948","31.2424811"],["-89.2917675","31.2425198"],["-89.2850812","31.2426013"],["-89.2836419","31.2426932"],["-89.2831499","31.2427386"],["-89.2823021","31.2428523"],["-89.2811703","31.2430439"],["-89.2805862","31.2431595"],["-89.2799618","31.2433119"],["-89.2786834","31.2436676"],["-89.2745264","31.244891"],["-89.273406","31.2451906"],["-89.2729742","31.2452923"],["-89.2722939","31.2454309"],["-89.2701221","31.2457643"],["-89.2693905","31.2458323"],["-89.2686554","31.2458826"],["-89.2680144","31.2459134"],["-89.2665233","31.245929"],["-89.2656734","31.2459024"],["-89.2649188","31.2458592"],["-89.2644091","31.2458164"],["-89.2635763","31.2457238"],["-89.2564959","31.2447971"],["-89.2550981","31.2446534"],["-89.2541034","31.2445969"],["-89.2531272","31.244591"],["-89.2508768","31.2447143"],["-89.2411723","31.2453428"],["-89.2406056","31.245379"],["-89.2386632","31.2454987"],["-89.2381496","31.245514"],["-89.2377061","31.2455047"],["-89.2373179","31.2454848"],["-89.2368937","31.2454533"],["-89.2364022","31.2453893"],["-89.235908","31.2453089"],["-89.2354446","31.2452168"],["-89.234939","31.2450939"],["-89.2180519","31.2404808"],["-89.2175577","31.2403084"],["-89.2170279","31.2401048"],["-89.2165333","31.2398969"],["-89.2160203","31.2396607"],["-89.2154865","31.2393891"],["-89.2148781","31.2390503"],["-89.2142743","31.2386838"],["-89.2137533","31.2383403"],["-89.213187","31.2379153"],["-89.2124386","31.2373647"],["-89.2118386","31.2369205"],["-89.2114645","31.2366417"],["-89.2108188","31.2362054"],["-89.2104294","31.2359588"],["-89.2098004","31.2356056"],["-89.2090665","31.2352147"],["-89.2079687","31.2347737"],["-89.2074781","31.2345915"],["-89.2057477","31.2340617"],["-89.2006586","31.2325409"],["-89.1942294","31.2306342"],["-89.1928281","31.2301798"],["-89.1915923","31.2297393"],["-89.1905338","31.2293211"],["-89.1896883","31.2289495"],["-89.1886977","31.2284834"],["-89.1863768","31.2270952"],["-89.1802165","31.2230267"],["-89.1776321","31.2212879"],["-89.1672268","31.2143175"],["-89.1641322","31.2122559"],["-89.1634636","31.2118029"],["-89.1630371","31.2115617"],["-89.1625557","31.2113406"],["-89.1619625","31.2110997"],["-89.1614992","31.2109502"],["-89.1610127","31.2108383"],["-89.1601906","31.2107146"],["-89.1595125","31.2106282"],["-89.1589629","31.2105691"],["-89.1583924","31.2105587"],["-89.1196292","31.2108881"],["-89.1188086","31.2108567"],["-89.1180177","31.2108095"],["-89.0599148","31.2044637"],["-89.0585533","31.2043081"],["-89.0573978","31.2041128"],["-89.0557486","31.2037376"],["-89.0476747","31.2013279"],["-89.0470696","31.2011578"],["-89.0449236","31.200712"],["-89.0444487","31.2006463"],["-89.0435157","31.2005475"],["-89.0430668","31.2005151"],["-89.0426224","31.2004908"],["-89.0421778","31.2004758"],["-89.0383305","31.2005086"],["-89.0381938","31.2004858"],["-89.0381256","31.2004601"],["-89.0380732","31.2004377"],["-89.0380307","31.2004152"],["-89.0379911","31.2003896"],["-89.0379153","31.2003196"],["-89.0378791","31.2002792"],["-89.0378422","31.200227"],["-89.0377978","31.2001312"],["-89.0377725","31.1994045"],["-89.0377409","31.1986451"],["-89.0376607","31.1979728"],["-89.0375517","31.1973973"],["-89.0362442","31.1928597"],["-89.0360152","31.1911192"],["-89.0357365","31.1877466"],["-89.0357814","31.1873413"],["-89.0358444","31.1869469"],["-89.0361532","31.1858269"],["-89.0372049","31.1821618"],["-89.0374594","31.1811761"],["-89.0375003","31.1806916"],["-89.0374382","31.1802799"],["-89.0372959","31.1798713"],["-89.0371124","31.1795382"],["-89.0369047","31.1792519"],["-89.0366048","31.1789489"],["-89.036199","31.178667"],["-89.035689","31.1784001"],["-89.0334078","31.1773364"],["-89.0327169","31.1769876"],["-89.0322472","31.1767099"],["-89.0318411","31.1764508"],["-89.0313555","31.17609"],["-89.0308939","31.1757193"],["-89.0304147","31.1752598"],["-89.0299948","31.1748096"],["-89.0295425","31.1742431"],["-89.0290955","31.1735723"],["-89.0287316","31.1729384"],["-89.0285314","31.1724625"],["-89.0282459","31.1716635"],["-89.0280404","31.1708223"],["-89.0279346","31.1701401"],["-89.0279058","31.1691505"],["-89.0279383","31.1685896"],["-89.0280363","31.1679206"],["-89.0288171","31.1642124"],["-89.0288673","31.1638211"],["-89.0288741","31.1634433"],["-89.0288553","31.1629495"],["-89.0287908","31.1625564"],["-89.0286885","31.162153"],["-89.0285403","31.1617344"],["-89.0283536","31.1613218"],["-89.0280271","31.1607843"],["-89.0272757","31.1597298"],["-89.0269434","31.1592319"],["-89.0267389","31.1588861"],["-89.026615","31.1586165"],["-89.0264859","31.1582778"],["-89.0263909","31.1579084"],["-89.0263096","31.1575484"],["-89.0262656","31.1571766"],["-89.026252","31.1567531"],["-89.0262781","31.1563218"],["-89.0263439","31.1559038"],["-89.0264713","31.1554362"],["-89.0266507","31.1549689"],["-89.0268908","31.1544276"],["-89.0270788","31.1539856"],["-89.0272107","31.1536089"],["-89.0273305","31.1532022"],["-89.0274202","31.1527615"],["-89.0274921","31.1523143"],["-89.0275257","31.1518935"],["-89.0275331","31.1514548"],["-89.0275147","31.1510095"],["-89.0274691","31.1505856"],["-89.0274002","31.150172"],["-89.0273049","31.1497658"],["-89.0271035","31.1491412"],["-89.0259165","31.145864"],["-89.0232177","31.1383705"],["-89.0208442","31.1317527"],["-89.020454","31.1305751"],["-89.0202955","31.1299556"],["-89.0201592","31.1292948"],["-89.0199508","31.1279158"],["-89.019792","31.1268204"],["-89.0195647","31.1252448"],["-89.0194877","31.1248437"],["-89.0193157","31.1243357"],["-89.0191189","31.1238756"],["-89.0188542","31.1233872"],["-89.0185003","31.1228732"],["-89.0180822","31.1223529"],["-89.0176389","31.1219161"],["-89.0171417","31.1215232"],["-89.0164892","31.1210955"],["-89.0098091","31.1173411"],["-89.0091173","31.1169108"],["-89.0083312","31.1163663"],["-89.0076795","31.1158758"],["-89.0071359","31.1154196"],["-89.006546","31.1148799"],["-89.0059553","31.1142798"],["-89.0053152","31.1135384"],["-89.0047266","31.1127833"],["-89.0042154","31.1120384"],["-89.0038423","31.1114327"],["-89.0035012","31.1108053"],["-89.0031299","31.1100333"],["-89.0028518","31.1093899"],["-89.0025248","31.1084513"],["-89.0008935","31.1035989"],["-89.0005817","31.102691"],["-88.9998455","31.1005087"],["-88.9996585","31.0999393"],["-88.9986214","31.0968899"],["-88.9979654","31.0950287"],["-88.9966126","31.0910238"],["-88.9964541","31.0905982"],["-88.9963304","31.0902439"],["-88.9958982","31.0894621"],["-88.9957148","31.0892055"],["-88.9955272","31.0889767"],["-88.9952959","31.0887198"],["-88.9949753","31.0883945"],["-88.9943163","31.0877457"],["-88.9940271","31.087432"],["-88.9937448","31.0870959"],["-88.9934714","31.0867279"],["-88.9932126","31.0863338"],["-88.9929687","31.0859351"],["-88.9927012","31.0853586"],["-88.9924622","31.0847082"],["-88.9923318","31.0842525"],["-88.9922513","31.0838942"],["-88.9921879","31.0834895"],["-88.9919332","31.0809547"],["-88.991821","31.080016"],["-88.9917601","31.0797426"],["-88.9916918","31.0795456"],["-88.9915994","31.0793086"],["-88.9914465","31.0790446"],["-88.9912733","31.0787995"],["-88.9909074","31.0783963"],["-88.9886521","31.0763911"],["-88.9871555","31.0751357"],["-88.986194","31.0743818"],["-88.9854987","31.0738281"],["-88.9851285","31.0735122"],["-88.9848662","31.0732476"],["-88.984478","31.072774"],["-88.9841979","31.0723711"],["-88.9818586","31.0687301"],["-88.9802846","31.0662225"],["-88.9828784","31.0648493"],["-88.9802919","31.0662213"],["-88.9818559","31.0687255"],["-88.9842036","31.0723796"],["-88.9844775","31.0727738"],["-88.9848657","31.0732464"],["-88.9851256","31.0735096"],["-88.9854962","31.0738264"],["-88.9862051","31.0743908"],["-88.9871925","31.0751656"],["-88.9887681","31.0764908"],["-88.9908949","31.0783838"],["-88.9912804","31.0788078"],["-88.9914505","31.0790515"],["-88.9915983","31.079306"],["-88.9916946","31.0795531"],["-88.9917617","31.0797474"],["-88.9918212","31.0800173"],["-88.9919333","31.0809556"],["-88.9919731","31.0814036"],["-88.9917207","31.0817275"],["-88.9898719","31.0843948"],["-88.9887909","31.0852682"],["-88.9771344","31.0930518"],["-88.9725594","31.097184"],["-88.9718013","31.0983763"],["-88.9716704","31.0990783"],["-88.9723325","31.1026559"],["-88.9724795","31.1033443"],["-88.9725502","31.1036764"],["-88.9725711","31.1040184"],["-88.9725587","31.1042932"],["-88.9725096","31.1045782"],["-88.9724014","31.1049391"],["-88.9722057","31.1053606"],["-88.9717967","31.1060516"],["-88.9710292","31.1073205"],["-88.9709106","31.1076791"],["-88.9708287","31.1082794"],["-88.9708172","31.1089047"],["-88.9708268","31.1094424"],["-88.9709454","31.1103046"],["-88.9711744","31.1118599"],["-88.9711791","31.1122966"],["-88.971111","31.1128263"],["-88.9709497","31.1136647"],["-88.9708048","31.1142682"],["-88.9706425","31.1147596"],["-88.9704101","31.1152597"],["-88.969325","31.1173961"],["-88.9687408","31.1185586"],["-88.9686273","31.1188834"],["-88.9685646","31.1191822"],["-88.9685447","31.1194843"],["-88.968679","31.1217525"],["-88.9686795","31.1222985"],["-88.9686215","31.1226346"],["-88.9685251","31.1229084"],["-88.9676102","31.1248537"],["-88.9672973","31.1253794"],["-88.9669738","31.1257848"],["-88.966583","31.1261678"],["-88.9659091","31.1266162"],["-88.963804","31.1279653"],["-88.9632342","31.1283263"],["-88.9620185","31.1291418"],["-88.9615609","31.1294679"],["-88.9613324","31.129725"],["-88.9611457","31.1300629"],["-88.9607333","31.1310311"],["-88.9590256","31.1351345"],["-88.9585082","31.1362915"],["-88.9578274","31.1373993"],["-88.9575811","31.1377684"],["-88.957431","31.13797"],["-88.9572865","31.1381224"],["-88.9569649","31.138357"],["-88.9566371","31.1385837"],["-88.9547909","31.1395216"],["-88.9539882","31.1399461"],["-88.9535433","31.1402568"],["-88.9296521","31.1585548"],["-88.928848","31.1591548"],["-88.927254","31.1604236"],["-88.9266363","31.160934"],["-88.9265589","31.1609694"],["-88.9264867","31.1609882"],["-88.9264092","31.1610044"],["-88.9263348","31.1610158"],["-88.9262609","31.1610236"],["-88.926184","31.1610263"],["-88.9260923","31.1610259"],["-88.9258625","31.1609566"],["-88.9187424","31.1572201"],["-88.9177323","31.1567218"],["-88.9165282","31.1562063"],["-88.9151231","31.155706"],["-88.9138113","31.155276"],["-88.91294","31.1550259"],["-88.9118781","31.1547675"],["-88.910896","31.1545553"],["-88.9100232","31.1543845"],["-88.9090862","31.1542449"],["-88.8951823","31.1525396"],["-88.8946649","31.1524389"],["-88.8942174","31.1523365"],["-88.893189","31.152047"],["-88.8924719","31.1517972"],["-88.8922372","31.1517055"],["-88.8917719","31.1515124"],["-88.8914003","31.1513431"],["-88.890948","31.1511199"],["-88.8907003","31.1509881"],["-88.8831613","31.1464363"],["-88.8822371","31.1459141"],["-88.8815433","31.1455744"],["-88.8809805","31.1453404"],["-88.8803728","31.1451077"],["-88.8796684","31.1448805"],["-88.8786502","31.144612"],["-88.8777381","31.1444272"],["-88.875252","31.1440701"],["-88.8736541","31.143829"],["-88.8719773","31.1435156"],["-88.870658","31.1432499"],["-88.8687204","31.1428411"],["-88.8674572","31.1424531"],["-88.8658073","31.1418076"],["-88.8640994","31.1409889"],["-88.8623695","31.1398644"],["-88.8607219","31.1387546"],["-88.8599616","31.1381309"],["-88.8590933","31.1373313"],["-88.8584104","31.1364514"],["-88.8573557","31.1350484"],["-88.856674","31.1342055"],["-88.8526979","31.1291121"],["-88.8517353","31.1279903"],["-88.8512943","31.1275579"],["-88.8508246","31.1271574"],["-88.8503095","31.1267638"],["-88.8494686","31.1262046"],["-88.8447881","31.1232471"],["-88.843932","31.1227396"],["-88.8429543","31.1221989"],["-88.8421166","31.1217644"],["-88.8411694","31.1212982"],["-88.8402496","31.1208812"],["-88.8391588","31.1204164"],["-88.8375681","31.1198113"],["-88.8344502","31.1188463"],["-88.832024","31.118155"],["-88.8301414","31.1176047"],["-88.8283112","31.1170125"],["-88.8270295","31.1165677"],["-88.8252292","31.115795"],["-88.8232235","31.1148155"],["-88.8201217","31.1129974"],["-88.8161506","31.1105609"],["-88.8140398","31.1093329"],["-88.8122104","31.1085323"],["-88.8106708","31.108019"],["-88.8096237","31.1077579"],["-88.8085855","31.1075413"],["-88.8076314","31.1074016"],["-88.8066157","31.1072946"],["-88.8052016","31.1072357"],["-88.8041503","31.1072629"],["-88.8026995","31.1073606"],["-88.8001909","31.1075759"],["-88.7988069","31.1076752"],["-88.7977806","31.1077184"],["-88.7965711","31.1077401"],["-88.7953806","31.1077232"],["-88.7941814","31.1076792"],["-88.7931126","31.1076062"],["-88.7919288","31.1074969"],["-88.7909671","31.1073859"],["-88.7901157","31.1072629"],["-88.7891771","31.1071094"],["-88.7882572","31.1069353"],["-88.7871848","31.1067032"],["-88.7860981","31.106445"],["-88.7778752","31.1041555"],["-88.7756886","31.1034883"],["-88.7746741","31.1029664"],["-88.7738087","31.1024213"],["-88.7731725","31.1019229"],["-88.7708333","31.0994608"],["-88.7558652","31.083051"],["-88.7538958","31.0809639"],["-88.7533042","31.0804993"],["-88.7526327","31.0800288"],["-88.7521051","31.0797008"],["-88.7499983","31.0784362"],["-88.748884","31.0777239"],["-88.7484964","31.0774431"],["-88.7480616","31.0771313"],["-88.7434898","31.0735598"],["-88.7428563","31.0730659"],["-88.7424237","31.0726548"],["-88.7420118","31.0722312"],["-88.7415533","31.0717001"],["-88.7411723","31.0711469"],["-88.735063","31.0612416"],["-88.7337507","31.0596175"],["-88.7312346","31.056322"],["-88.7291516","31.0541012"],["-88.723594","31.0486507"],["-88.7216635","31.0465931"],["-88.7160006","31.0391006"],["-88.7155548","31.0382968"],["-88.7152861","31.0376435"],["-88.7150575","31.0368729"],["-88.7149125","31.0359341"],["-88.7149035","31.0349817"],["-88.7149813","31.0341601"],["-88.7166746","31.0249445"],["-88.71682","31.0238717"],["-88.7168196","31.0230652"],["-88.7167347","31.0222067"],["-88.7165125","31.0213531"],["-88.7162066","31.0205267"],["-88.7158204","31.0197718"],["-88.7150991","31.0187834"],["-88.7145227","31.0181508"],["-88.7135405","31.0173334"],["-88.7122014","31.0164964"],["-88.7095424","31.0153245"],["-88.686201","31.0045791"],["-88.6856991","31.0043302"],["-88.6853771","31.0041454"],["-88.6849448","31.0038751"],["-88.6845731","31.0036046"],["-88.6842513","31.0033589"],["-88.6840083","31.0031552"],["-88.6837673","31.0029297"],["-88.6835203","31.0026799"],["-88.6830304","31.0020859"],["-88.6825123","31.0013043"],["-88.6816784","30.9997571"],["-88.6753495","30.986382"],["-88.6748311","30.9854068"],["-88.674485","30.9848341"],["-88.6740751","30.9841958"],["-88.6700873","30.9793363"],["-88.6691719","30.9781162"],["-88.667501","30.9756018"],["-88.6628315","30.9679029"],["-88.6616803","30.9661238"],["-88.6609769","30.9653069"],["-88.6601161","30.9644801"],["-88.6592554","30.96385"],["-88.6583384","30.9632511"],["-88.6572682","30.9627105"],["-88.6562995","30.9623192"],["-88.6552882","30.9619824"],["-88.654366","30.9617505"],["-88.6529724","30.9615714"],["-88.6444228","30.9609966"],["-88.6428069","30.9608126"],["-88.6408707","30.9605058"],["-88.6385718","30.9600828"],["-88.6361962","30.9596197"],["-88.6047854","30.9536406"],["-88.6030026","30.9533302"],["-88.6019464","30.9532029"],["-88.600854","30.9531032"],["-88.5998147","30.9530477"],["-88.5987652","30.9530149"],["-88.5973966","30.9530391"],["-88.5956119","30.9531535"],["-88.5714593","30.9560679"],["-88.5706053","30.9561541"],["-88.5697232","30.9562087"],["-88.568989","30.9562382"],["-88.5680669","30.9562517"],["-88.5670403","30.9562346"],["-88.5658228","30.9561731"],["-88.5646902","30.956074"],["-88.5636101","30.9559477"],["-88.56258","30.9557902"],["-88.561316","30.9555371"],["-88.5601823","30.9552599"],["-88.5591109","30.9549593"],["-88.5580316","30.9546197"],["-88.5570967","30.9542917"],["-88.556388","30.9540148"],["-88.5501243","30.9514058"],["-88.5473727","30.9502573"],["-88.5370803","30.9459241"],["-88.5361814","30.945495"],["-88.5355175","30.9451551"],["-88.534441","30.9445469"],["-88.5335742","30.9440202"],["-88.5328189","30.9435134"],["-88.5319392","30.9428732"],["-88.5310419","30.9421724"],["-88.5303226","30.941567"],["-88.529719","30.9410178"],["-88.5288874","30.9401917"],["-88.5189762","30.9291121"],["-88.5175855","30.9278027"],["-88.5160556","30.9265703"],["-88.5150237","30.925818"],["-88.5142342","30.9252902"],["-88.5137446","30.9249889"],["-88.5129786","30.924535"],["-88.5117773","30.9238997"],["-88.5010138","30.9189211"],["-88.4675475","30.903474"],["-88.4613551","30.9006117"],["-88.4587786","30.8993426"],["-88.4578053","30.898779"],["-88.4561075","30.8977448"],["-88.4545956","30.8966745"],["-88.4537307","30.8960277"],["-88.4528389","30.895308"],["-88.451441","30.8940744"],["-88.45092","30.893582"],["-88.4344362","30.8770958"],["-88.424322","30.8670812"],["-88.4239251","30.8667565"],["-88.4225802","30.8658183"],["-88.4219799","30.8654032"],["-88.4211035","30.8648308"],["-88.4160305","30.8618467"],["-88.4141508","30.8607289"],["-88.4125496","30.8596743"],["-88.4107574","30.8583051"],["-88.4099995","30.8576531"],["-88.4095186","30.8572056"],["-88.4091579","30.8568364"],["-88.4086321","30.8562184"],["-88.4075516","30.8548953"],["-88.4071654","30.8543903"],["-88.4064138","30.8534211"],["-88.4058091","30.8527718"],["-88.4053365","30.8523609"],["-88.4047237","30.8519464"],["-88.4042019","30.8516414"],["-88.4036401","30.8513596"],["-88.4031988","30.8511713"],["-88.4026912","30.8509785"],["-88.4004394","30.8501918"],["-88.3999063","30.849959"],["-88.3990274","30.8494879"],["-88.3979945","30.8487311"],["-88.3974923","30.8482839"],["-88.3966562","30.8473068"],["-88.3963637","30.8468594"],["-88.3960659","30.8464013"],["-88.3958515","30.8459016"],["-88.3957166","30.8454747"],["-88.3954768","30.8446119"],["-88.3953161","30.8439363"],["-88.3951545","30.8431947"],["-88.3950515","30.8426453"],["-88.3949301","30.8419935"],["-88.3947636","30.8411045"],["-88.3944089","30.8394563"],["-88.3942425","30.8388812"],["-88.3940264","30.8383989"],["-88.3936837","30.8378655"],["-88.3933823","30.8374922"],["-88.3929521","30.8370576"],["-88.391689","30.8360555"],["-88.3876891","30.832928"],["-88.3824054","30.8286166"],["-88.381784","30.8281307"],["-88.3815702","30.8279836"],["-88.3811421","30.8277239"],["-88.3807909","30.8275257"],["-88.3805585","30.8274082"],["-88.3801963","30.8272335"],["-88.3796775","30.8270226"],["-88.3789489","30.8267743"],["-88.3784827","30.8266556"],["-88.3778979","30.8265323"],["-88.3774742","30.8264561"],["-88.3771478","30.8264117"],["-88.3695761","30.8257854"],["-88.3687701","30.8256671"],["-88.3681279","30.8255166"],["-88.3676898","30.8253956"],["-88.3666516","30.8250294"],["-88.3635573","30.8238986"],["-88.3629987","30.823709"],["-88.362713","30.8236112"],["-88.3623251","30.8234999"],["-88.362024","30.8234334"],["-88.3615621","30.8233601"],["-88.3612728","30.8233268"],["-88.3607888","30.8233038"],["-88.3573691","30.8233345"],["-88.3568517","30.8233213"],["-88.3565061","30.8232972"],["-88.3561962","30.8232536"],["-88.3555119","30.8231139"],["-88.3552949","30.823031"],["-88.355016","30.8229245"],["-88.3547024","30.8227914"],["-88.3543346","30.8225962"],["-88.3541698","30.8225029"],["-88.353837","30.8222894"],["-88.3535481","30.8220603"],["-88.3533508","30.8218865"],["-88.3524208","30.8209744"],["-88.3518659","30.8204245"],["-88.3499248","30.8185023"],["-88.3495749","30.8181583"],["-88.3492504","30.8178285"],["-88.3487271","30.8173097"],["-88.3481264","30.8167207"],["-88.3475281","30.816129"],["-88.3466348","30.8152379"],["-88.3389237","30.8075843"],["-88.3384913","30.8071506"],["-88.3372329","30.8058907"],["-88.3363477","30.8050078"],["-88.3343984","30.8028528"],["-88.3333164","30.8015808"],["-88.3328853","30.8011058"],["-88.3324721","30.8007361"],["-88.3319911","30.8003237"],["-88.3315372","30.8000145"],["-88.3311189","30.7997491"],["-88.3307006","30.799522"],["-88.3300646","30.7992248"],["-88.3294355","30.7989741"],["-88.3286641","30.7987438"],["-88.3205458","30.7965252"],["-88.3194917","30.7962367"],["-88.3183626","30.7959361"],["-88.3173787","30.7956724"],["-88.2936883","30.7892099"],["-88.2809729","30.7857461"],["-88.2771778","30.7846981"],["-88.2764371","30.7844564"],["-88.2753311","30.7840244"],["-88.2741935","30.7834709"],["-88.2732251","30.782954"],["-88.2728202","30.7827201"],["-88.2723992","30.7824643"],["-88.2711794","30.781723"],["-88.2694309","30.7806482"],["-88.2682616","30.7799714"],["-88.2676789","30.7797171"],["-88.2671362","30.7795002"],["-88.266486","30.7792955"],["-88.2659876","30.7791597"],["-88.2654367","30.7790518"],["-88.2645621","30.7789449"],["-88.2610448","30.7787546"],["-88.2605527","30.7786976"],["-88.2597116","30.7786338"],["-88.2591296","30.7786105"],["-88.2588419","30.7786012"],["-88.2582772","30.7785685"],["-88.2578509","30.778553"],["-88.2560301","30.7785276"],["-88.2558321","30.7785838"],["-88.2555838","30.7785713"],["-88.2545735","30.7785683"],["-88.2542102","30.7785596"],["-88.2537141","30.7785367"],["-88.2529226","30.7784609"],["-88.2525816","30.7784146"],["-88.2522426","30.7783619"],["-88.25199","30.778313"],["-88.2515855","30.778232"],["-88.2507607","30.7780127"],["-88.2500254","30.7777614"],["-88.2490408","30.7773739"],["-88.2486332","30.7771853"],["-88.2477619","30.7767118"],["-88.2468011","30.7761501"],["-88.2458163","30.7755837"],["-88.2449782","30.7752028"],["-88.2409435","30.7734019"],["-88.240368","30.7731302"],["-88.2399399","30.7729177"],["-88.2390302","30.7723621"],["-88.2378741","30.7714972"],["-88.2371256","30.7709236"],["-88.2355083","30.7696921"],["-88.2341436","30.7686465"],["-88.2325972","30.7674861"],["-88.2276752","30.7641905"],["-88.2269979","30.7636735"],["-88.2264309","30.7632066"],["-88.2257416","30.7625718"],["-88.2204617","30.7573979"],["-88.2199652","30.7570183"],["-88.2192387","30.7565632"],["-88.2183932","30.7561584"],["-88.2178205","30.75595"],["-88.2173252","30.7558207"],["-88.2167011","30.7556935"],["-88.2154928","30.755534"],["-88.2122327","30.7551455"],["-88.2071401","30.754257"],["-88.2037271","30.7538505"],["-88.2029729","30.7537262"],["-88.2024029","30.7536081"],["-88.2011573","30.7533145"],["-88.1955746","30.7516698"],["-88.1941709","30.7511447"],["-88.1934023","30.7507929"],["-88.1920666","30.7501693"],["-88.1914287","30.7498741"],["-88.1833572","30.746087"],["-88.1825267","30.7456268"],["-88.1817985","30.745123"],["-88.1813367","30.7447498"],["-88.1807146","30.7441516"],["-88.1801387","30.7435053"],["-88.1798092","30.7430545"],["-88.1795314","30.7426059"],["-88.1792137","30.7420347"],["-88.1768737","30.7366043"],["-88.1766491","30.7360727"],["-88.1749739","30.7321772"],["-88.1745722","30.7314621"],["-88.1741096","30.7308731"],["-88.1657421","30.7225935"],["-88.1654435","30.7222137"],["-88.1652","30.7219612"],["-88.1646148","30.7214792"],["-88.1642241","30.7212507"],["-88.1637068","30.7210068"],["-88.1633567","30.720902"],["-88.1629579","30.720813"],["-88.1623668","30.7207285"],["-88.1616789","30.7206472"],["-88.1610404","30.7205999"],["-88.1585191","30.720335"],["-88.1389914","30.7193916"],["-88.1382475","30.7193136"],["-88.1377615","30.7191987"],["-88.137364","30.7190748"],["-88.1369487","30.7188689"],["-88.1364663","30.7185743"],["-88.1362309","30.7183806"],["-88.1360008","30.7181812"],["-88.1356709","30.7178385"],["-88.1307819","30.7129753"],["-88.1289231","30.7113573"],["-88.1248657","30.7086326"],["-88.1247871","30.7085032"],["-88.124672","30.7083774"],["-88.1240902","30.7079658"],["-88.1236645","30.707683"],["-88.1233647","30.7074876"],["-88.1230328","30.7072727"],["-88.1222966","30.7068042"],["-88.1221806","30.7067799"],["-88.1220633","30.7067522"],["-88.1219817","30.7067446"],["-88.1218853","30.7067775"],["-88.1217705","30.7069369"],["-88.1216746","30.7071082"],["-88.1215601","30.7075304"],["-88.1214244","30.7080339"],["-88.121116","30.7092148"],["-88.1210877","30.7093874"],["-88.1211297","30.7094133"],["-88.1211869","30.7094529"],["-88.1212553","30.7094815"],["-88.1213365","30.7094978"],["-88.1214356","30.7095509"],["-88.1215281","30.7096987"],["-88.1215708","30.7099037"],["-88.1215671","30.7105319"],["-88.1211728","30.7125544"],["-88.1208275","30.7144696"],["-88.1206413","30.71628"],["-88.1198961","30.7292472"],["-88.1198273","30.7297457"],["-88.1197561","30.7301152"],["-88.1196866","30.7303759"],["-88.1195981","30.7306771"],["-88.1194649","30.7310346"],["-88.119311","30.7314179"],["-88.1191404","30.7317619"],["-88.1189339","30.7321209"],["-88.1186759","30.7325312"],["-88.1184118","30.7328898"],["-88.118037","30.7333414"],["-88.1177104","30.7336792"],["-88.1172761","30.7340808"],["-88.1167172","30.7345168"],["-88.109657","30.7390775"],["-88.1082941","30.7400381"],["-88.1076889","30.7404948"],["-88.1074707","30.7406649"],["-88.106388","30.7415484"],["-88.1054212","30.7424039"],["-88.0976444","30.7496628"],["-88.0968282","30.7504315"],["-88.0962312","30.7510437"],["-88.0960105","30.7512027"],["-88.0959261","30.7512752"],["-88.0958513","30.7513464"],["-88.0957666","30.7514213"],["-88.0955239","30.7516081"],["-88.0954003","30.7516818"],["-88.0951796","30.7517977"],["-88.0949957","30.7518738"],["-88.0948071","30.7519347"],["-88.0946602","30.7519736"],["-88.0944748","30.7520109"],["-88.0942435","30.7520402"],["-88.0939732","30.7520495"],["-88.0937073","30.7520324"],["-88.0934827","30.7519974"],["-88.0932475","30.751946"],["-88.0930117","30.7518675"],["-88.0927735","30.7517647"],["-88.092563","30.7516478"],["-88.0923828","30.7515259"],["-88.0922096","30.7513893"],["-88.092006","30.7512383"],["-88.0916119","30.7508445"],["-88.0911983","30.7504251"],["-88.0909748","30.7501782"],["-88.090776","30.7499351"],["-88.0905415","30.7495829"],["-88.0903189","30.7492024"],["-88.0901327","30.748789"],["-88.0900554","30.7485764"],["-88.0899789","30.7483186"],["-88.0898959","30.7480285"],["-88.0898306","30.7477209"],["-88.0897878","30.7469665"],["-88.0897721","30.7450626"],["-88.0897471","30.743882"],["-88.0896771","30.7433609"],["-88.0895244","30.7427886"],["-88.0892153","30.7420264"],["-88.0889908","30.7416133"],["-88.0886821","30.7411338"],["-88.0882322","30.7405911"],["-88.0871888","30.7396557"],["-88.0810304","30.7344586"],["-88.0676587","30.723376"],["-88.0536908","30.7117874"],["-88.0526874","30.7109287"],["-88.0521307","30.7103732"],["-88.0517134","30.7098408"],["-88.051273","30.7091929"],["-88.0497994","30.7064181"],["-88.0493439","30.7052949"],["-88.0488624","30.7042863"],["-88.0472533","30.7010832"],["-88.0470138","30.7007162"],["-88.0468874","30.7005484"],["-88.0465055","30.7001938"],["-88.046085","30.6999726"],["-88.0459166","30.6999214"],["-88.0456597","30.6999251"],["-88.0450742","30.7001301"],["-88.0441473","30.7004767"],["-88.0438104","30.7005866"],["-88.0434874","30.7006626"],["-88.0424495","30.7008676"],["-88.0422832","30.7009458"],["-88.0421128","30.7010629"],["-88.0419759","30.7012012"],["-88.0418226","30.7014864"],["-88.0417805","30.7016051"],["-88.0417806","30.7017587"],["-88.0418181","30.7019691"],["-88.0418884","30.7021274"],["-88.0422175","30.7025067"],["-88.0427812","30.703133"],["-88.0433433","30.7037609"],["-88.0436754","30.7041666"],["-88.0438421","30.7045178"],["-88.0438788","30.7048302"],["-88.043681","30.7048382"],["-88.0435508","30.7047844"],["-88.0434027","30.7047257"],["-88.0433203","30.7046386"],["-88.0432975","30.7045714"],["-88.0432932","30.7044623"],["-88.0433276","30.7041581"],["-88.0432762","30.7040185"],["-88.0430352","30.7037261"],["-88.0427331","30.7034118"],["-88.0424743","30.703191"],["-88.0411961","30.7026486"],["-88.0408155","30.7024799"],["-88.0405923","30.7023388"],["-88.040446","30.7021721"],["-88.0403609","30.7020425"],["-88.0402612","30.7017327"],["-88.0392533","30.6974575"],["-88.0390579","30.6966376"],["-88.038687","30.6946987"],["-88.0385543","30.6935776"],["-88.0387209","30.6948701"],["-88.0390598","30.6966463"],["-88.0392662","30.6975111"],["-88.0402601","30.7017293"],["-88.0403605","30.7020422"],["-88.0404457","30.7021718"],["-88.0405915","30.7023384"],["-88.0408165","30.7024807"],["-88.0412098","30.7026545"],["-88.0424802","30.7031942"],["-88.0427265","30.7034057"],["-88.0430394","30.7037305"],["-88.0432768","30.7040193"],["-88.0433278","30.704156"],["-88.0432934","30.7044645"],["-88.0432976","30.7045708"],["-88.0433198","30.7046382"],["-88.0434012","30.7047251"],["-88.0435506","30.7047844"],["-88.0436842","30.7048388"],["-88.0438779","30.7048316"],["-88.0438421","30.7045177"],["-88.0436741","30.704164"],["-88.0433262","30.7037411"],["-88.0427754","30.7031268"],["-88.0421863","30.7024715"],["-88.0418902","30.7021295"],["-88.041818","30.7019683"],["-88.0417806","30.7017579"],["-88.0417811","30.7016029"],["-88.0418224","30.7014871"],["-88.0419745","30.7012035"],["-88.0421116","30.7010639"],["-88.0422829","30.7009459"],["-88.0424492","30.7008677"],["-88.0434902","30.7006619"],["-88.0438115","30.7005864"],["-88.0441348","30.7004811"],["-88.0450841","30.7001265"],["-88.045649","30.6999188"],["-88.0456531","30.6998143"],["-88.0456307","30.6997162"],["-88.0456005","30.6996576"],["-88.0455645","30.6996011"],["-88.0454502","30.69948"],["-88.0419175","30.6976531"],["-88.0417519","30.6975567"],["-88.041574","30.6974457"],["-88.0414275","30.6973356"],["-88.041281","30.6972117"],["-88.0411421","30.697084"],["-88.0409468","30.6968727"],["-88.0405164","30.696355"],["-88.0402023","30.6959431"],["-88.0401102","30.6957915"],["-88.0399962","30.695568"],["-88.0399105","30.6953638"],["-88.0398324","30.6951112"],["-88.0394249","30.6933776"],["-88.0393134","30.6927741"],["-88.0390961","30.6909931"],["-88.0390445","30.6905779"],["-88.0389895","30.6903465"],["-88.0388454","30.6897858"],["-88.0388867","30.6895126"],["-88.0394696","30.6893082"],["-88.0412314","30.6887743"],["-88.0418281","30.688584"],["-88.0435077","30.6881086"],["-88.0439993","30.6891776"],["-88.0432084","30.6894506"],["-88.0421552","30.6897488"],["-88.042006","30.6897702"],["-88.0413797","30.6899673"],["-88.0411766","30.6900435"],["-88.0308941","30.6929941"],["-88.030743","30.6930139"],["-88.0305975","30.6930276"],["-88.0304695","30.6930396"],["-88.0303719","30.6930111"],["-88.0302512","30.6929984"],["-88.0301421","30.6929758"],["-88.0300361","30.6929478"],["-88.029879","30.6928912"],["-88.029755","30.6928248"],["-88.0295924","30.6927358"],["-88.0290998","30.6924287"],["-88.028635","30.692192"],["-88.0268369","30.6913198"],["-88.0265524","30.6911813"],["-88.0263781","30.6911123"],["-88.0262216","30.6910722"],["-88.0259812","30.6910572"],["-88.0257842","30.6910906"],["-88.0251699","30.6912867"],["-88.0248608","30.6913373"],["-88.0245495","30.6913599"],["-88.0243308","30.6913417"],["-88.0236516","30.6912134"],["-88.0002033","30.6845919"],["-87.9987057","30.6841032"],["-87.9974296","30.683637"],["-87.9959875","30.6830431"],["-87.9949609","30.6825874"],["-87.993261","30.6817283"],["-87.9917936","30.6809166"],["-87.9912436","30.6805822"],["-87.9905567","30.6801462"],["-87.9895799","30.679493"],["-87.9887354","30.6788928"],["-87.9854266","30.6764538"],["-87.9848066","30.6759896"],["-87.983816","30.6752685"],["-87.98301","30.6746874"],["-87.9802792","30.6728659"],["-87.978928","30.6720232"],["-87.9777364","30.6713105"],["-87.9765551","30.6706306"],["-87.9752896","30.6699367"],["-87.9739355","30.6692279"],["-87.9712069","30.6679025"],["-87.9687309","30.6668079"],["-87.9660182","30.6657287"],["-87.9645818","30.6652019"],["-87.9631176","30.664696"],["-87.9609127","30.6639853"],["-87.9289786","30.6560862"],["-87.928248","30.6559211"],["-87.9266243","30.6556139"],["-87.9248242","30.6553465"],["-87.9239431","30.6552435"],["-87.9222126","30.6551044"],["-87.9210054","30.6550439"],["-87.9191622","30.6550192"],["-87.9165064","30.6550979"],["-87.9163454","30.6551159"],["-87.9152412","30.6552339"],["-87.85806","30.6627227"],["-87.853745","30.6630484"],["-87.8509246","30.6631126"],["-87.8496105","30.6630933"],["-87.845557","30.6628707"],["-87.8436091","30.6626663"],["-87.8423149","30.6625014"],["-87.8403204","30.6621934"],["-87.7895475","30.6524825"],["-87.7876688","30.6522052"],["-87.7862955","30.6520584"],["-87.7854306","30.6519913"],["-87.7844697","30.6519387"],["-87.7834835","30.6519054"],["-87.7666361","30.651839"],["-87.7648038","30.651835"],["-87.7611569","30.6518329"],["-87.7602761","30.6518288"],["-87.7361338","30.6517404"],["-87.7352238","30.6517269"],["-87.7339072","30.6516545"],["-87.7329695","30.6515793"],["-87.7319239","30.6514735"],["-87.7308515","30.6513344"],["-87.7294399","30.6511064"],["-87.7280233","30.6508318"],["-87.7267107","30.6505312"],["-87.7248762","30.6500367"],["-87.7163062","30.6473554"],["-87.7138801","30.6466108"],["-87.7128366","30.6463296"],["-87.7118584","30.6460985"],["-87.710725","30.6458655"],["-87.6973728","30.6436276"],["-87.6963656","30.6434222"],["-87.6953479","30.6431773"],["-87.6943802","30.6429113"],["-87.6933967","30.6426015"],["-87.6924757","30.6422801"],["-87.6909483","30.6416693"],["-87.6890786","30.6407788"],["-87.6839832","30.6382734"],["-87.6828466","30.6377598"],["-87.681864","30.6374242"],["-87.6808769","30.6371659"],["-87.6797779","30.636932"],["-87.6776038","30.6363039"],["-87.675806","30.6358581"],["-87.6752298","30.6357808"],["-87.6750404","30.635771"],["-87.6749296","30.6356961"],["-87.6748438","30.6356207"],["-87.6747805","30.6355153"],["-87.6746979","30.6352573"],["-87.6746448","30.6293385"],["-87.6745294","30.6282804"],["-87.6743879","30.6275998"],["-87.6741303","30.626735"],["-87.6732407","30.6248268"],["-87.6691734","30.6185451"],["-87.6685343","30.6176276"],["-87.6671306","30.6154067"],["-87.6668905","30.6149133"],["-87.6666856","30.6144218"],["-87.6665113","30.6139643"],["-87.6663809","30.613538"],["-87.666233","30.6128988"],["-87.6661321","30.6120741"],["-87.6660652","30.6113637"],["-87.6660655","30.6107607"],["-87.6660615","30.6083174"],["-87.6660616","30.6071136"],["-87.6660482","30.6057411"],["-87.6660553","30.6040175"],["-87.6662198","30.6004725"],["-87.666219","30.5786592"],["-87.666186","30.5773561"],["-87.666148","30.576556"],["-87.666107","30.5757755"],["-87.6660209","30.5727061"],["-87.6660152","30.5721537"],["-87.6660149","30.5690175"],["-87.6660133","30.5686635"],["-87.6660164","30.567445"],["-87.6660712","30.548968"],["-87.666018","30.5227689"],["-87.6660215","30.5218656"],["-87.6660289","30.5210166"],["-87.6660711","30.5189338"],["-87.6661355","30.5172629"],["-87.6661888","30.5166087"],["-87.6662208","30.5155188"],["-87.6662275","30.5132073"],["-87.6662487","30.5064804"],["-87.6662048","30.5055349"],["-87.6658171","30.5014865"],["-87.6657238","30.4998434"],["-87.6658688","30.4875053"],["-87.6658679","30.4860284"],["-87.66593","30.4822505"],["-87.6659572","30.4814953"],["-87.6661329","30.478971"],["-87.6662811","30.4763545"],["-87.6663446","30.4519299"],["-87.6663534","30.4512337"],["-87.6663543","30.4506592"],["-87.6559137","30.4506728"],["-87.6555575","30.4506617"],["-87.6553066","30.4506339"],["-87.6550936","30.4506"],["-87.6548653","30.4505558"],["-87.654679","30.4505102"],["-87.654462","30.4504443"],["-87.6542501","30.4503697"],["-87.6540232","30.4502792"],["-87.6538115","30.4501771"],["-87.6536014","30.4500702"],["-87.6534417","30.4499707"],["-87.6532761","30.4498624"],["-87.6530809","30.4497144"],["-87.6529155","30.4495756"],["-87.6527531","30.449435"],["-87.6526077","30.4492749"],["-87.6524646","30.449106"],["-87.6523338","30.4489327"],["-87.6522178","30.4487525"],["-87.6521128","30.4485596"],["-87.6520207","30.4483625"],["-87.6519404","30.4481613"],["-87.6518719","30.4479532"],["-87.651816","30.4477403"],["-87.6517779","30.4475259"],["-87.6517589","30.4473141"],["-87.6517492","30.446866"],["-87.6517486","30.4462768"],["-87.6517529","30.4457217"],["-87.6517714","30.4455075"],["-87.6518034","30.4452802"],["-87.6520318","30.4443056"],["-87.6525218","30.4424487"],["-87.6526418","30.4419164"],["-87.6526729","30.4417013"],["-87.6526885","30.4414591"],["-87.6526941","30.440998"],["-87.652689","30.439279"],["-87.6526777","30.4383887"],["-87.652662","30.4382088"],["-87.6526187","30.4380034"],["-87.6525636","30.4378108"],["-87.6525229","30.4376986"],["-87.6524469","30.4375231"],["-87.6523508","30.4373314"],["-87.6522701","30.4371967"],["-87.6521636","30.4370469"],["-87.6516846","30.436487"],["-87.6508813","30.4355551"],["-87.6499465","30.4344473"],["-87.6495888","30.4339419"],["-87.6493223","30.4335049"],["-87.6490908","30.4330476"],["-87.6489037","30.4325843"],["-87.648746","30.4320963"],["-87.6486286","30.4315927"],["-87.6485478","30.4310853"],["-87.648506","30.4305747"],["-87.6484938","30.4292597"],["-87.6483989","30.4190184"],["-87.6483565","30.4184444"],["-87.6478172","30.4129069"],["-87.6476884","30.4115009"],["-87.6476226","30.4105229"],["-87.6475625","30.410376"],["-87.6475771","30.4095863"],["-87.6475866","30.4083903"],["-87.6475811","30.4072773"],["-87.6475807","30.4070729"],["-87.6475825","30.4068077"],["-87.6475827","30.4062167"],["-87.6475862","30.3997174"],["-87.6476422","30.3994649"],["-87.6477089","30.3961897"],["-87.6476541","30.3888006"],["-87.647657","30.3885178"],["-87.6476672","30.3882157"],["-87.6476943","30.3879314"],["-87.6477433","30.3876132"],["-87.6478141","30.3872773"],["-87.647985","30.386734"],["-87.6481097","30.3864206"],["-87.6483065","30.386009"],["-87.64849","30.3856809"],["-87.6487247","30.3853191"],["-87.649776","30.383988"],["-87.6502891","30.3833568"],["-87.6521058","30.3811743"],["-87.6523751","30.3808077"],["-87.6526364","30.3804183"],["-87.6528446","30.3800412"],["-87.6530349","30.3796296"],["-87.6531546","30.3792869"],["-87.6532648","30.3789325"],["-87.6533593","30.3784937"],["-87.6534212","30.3780916"],["-87.65345","30.3776481"],["-87.6533709","30.3638256"],["-87.6533767","30.3634419"],["-87.6533955","30.3632046"],["-87.6534408","30.3629649"],["-87.6537155","30.3621699"],["-87.6542295","30.3607238"],["-87.6544272","30.360122"],["-87.6544804","30.3598048"],["-87.654489","30.3588034"],["-87.6544874","30.3579895"],["-87.6544779","30.3566316"],["-87.6544663","30.356365"],["-87.6544981","30.3551601"],["-87.6546545","30.3488043"],["-87.6546542","30.3483265"],["-87.6547175","30.3408605"],["-87.6546225","30.3347131"],["-87.6545644","30.3323418"],["-87.654483","30.3275458"],["-87.6545269","30.3272235"],["-87.6545567","30.3270417"],["-87.6546194","30.3269371"],["-87.6547359","30.3268367"],["-87.6550095","30.3267216"],["-87.6553251","30.3266957"],["-87.6556563","30.3266799"],["-87.6561529","30.3266733"],["-87.657101","30.3266725"],["-87.6599102","30.3266625"],["-87.6625804","30.3266595"],["-87.6650502","30.3265571"],["-87.6667015","30.3265238"],["-87.6704434","30.3265354"],["-87.6710517","30.3265351"],["-87.6733486","30.3265458"],["-87.6745115","30.3265424"],["-87.6754625","30.3265463"],["-87.6773972","30.3265369"],["-87.6795464","30.3265515"],["-87.681581","30.3265461"],["-87.6825865","30.3265462"],["-87.683025","30.3265243"],["-87.6832331","30.3264585"],["-87.6832021","30.3146736"],["-87.6831807","30.3083704"],["-87.6831583","30.2988641"],["-87.6831551","30.2977723"],["-87.6831541","30.297373"],["-87.6831603","30.2969048"],["-87.6831853","30.2960808"],["-87.6832319","30.2954716"],["-87.6832978","30.2949409"],["-87.6833465","30.2946187"],["-87.6834209","30.29421"],["-87.6835391","30.293661"],["-87.6837471","30.2928638"],["-87.6838422","30.2925583"],["-87.6859188","30.2869341"],["-87.6860825","30.2864386"],["-87.686205","30.2860041"],["-87.6862688","30.2857404"],["-87.6863688","30.2853054"],["-87.6864224","30.285043"],["-87.6864566","30.2848753"],["-87.6865106","30.28449"],["-87.6865709","30.284014"],["-87.6866316","30.2832722"],["-87.6868039","30.2803316"],["-87.686871","30.2787655"],["-87.6869964","30.2761153"],["-87.6870201","30.2755302"],["-87.6870868","30.2748018"],["-87.687256","30.2735969"],["-87.687288","30.273461"],["-87.6873396","30.2732805"],["-87.6873779","30.2731021"],["-87.6874239","30.2728492"],["-87.6875092","30.2724529"],["-87.68756","30.2721813"],["-87.687559","30.2720262"],["-87.6875897","30.2718651"],["-87.6878874","30.2706964"],["-87.6879278","30.2705284"],["-87.6879442","30.27046"],["-87.6879715","30.2703645"],["-87.6880091","30.2702063"],["-87.6881596","30.2696273"],["-87.6882219","30.2693542"],["-87.6882929","30.2689763"],["-87.6884387","30.2678816"],["-87.6884837","30.2673489"],["-87.6884998","30.2670518"],["-87.6885166","30.2658131"],["-87.6885121","30.2645227"],["-87.6884652","30.258981"],["-87.6884504","30.2578403"],["-87.6884595","30.2573032"],["-87.6885762","30.2562126"],["-87.6896157","30.2494417"],["-87.6897494","30.2485458"],["-87.6910426","30.2482755"],["-87.6916693","30.2481567"],["-87.7003037","30.246479"],["-87.7009014","30.2463623"],["-87.7020422","30.2461466"],["-87.7023136","30.2468863"],["-87.7023581","30.2470164"],["-87.7024479","30.247195"],["-87.7024737","30.2472888"],["-87.7024471","30.2471927"],["-87.7023595","30.2470186"],["-87.7023031","30.2468447"],["-87.7020378","30.2461471"],["-87.7008915","30.2463642"],["-87.7002937","30.2464809"],["-87.691655","30.2481596"],["-87.6910955","30.2482656"],["-87.6897471","30.2485105"],["-87.6857247","30.2489164"],["-87.6851126","30.2489783"],["-87.679331","30.2495744"],["-87.678336","30.2497082"],["-87.6779793","30.2497727"],["-87.6722878","30.250849"],["-87.6718425","30.2509352"],["-87.6714975","30.2510124"],["-87.6710432","30.2511243"],["-87.6706055","30.2512593"],["-87.6700459","30.2514588"],["-87.6696628","30.2516083"],["-87.6693913","30.251711"],["-87.6692152","30.251772"],["-87.6687123","30.2519236"],["-87.6681972","30.2520462"],["-87.6679135","30.252088"],["-87.6676609","30.2521152"],["-87.6674203","30.252132"],["-87.667035","30.2521502"],["-87.6664112","30.2521523"],["-87.6661666","30.2521361"],["-87.6660387","30.2521214"],["-87.6658532","30.2520391"],["-87.6653399","30.2519344"],["-87.6652336","30.2519619"],["-87.6650419","30.2519056"],["-87.6648386","30.2518366"],["-87.6646174","30.2517536"],["-87.6638816","30.2514513"],["-87.6636109","30.2513541"],["-87.66343","30.2513023"],["-87.6631903","30.2512457"],["-87.6629276","30.2511976"],["-87.6627553","30.2511723"],["-87.6625414","30.2511519"],["-87.66232","30.2511448"],["-87.6621064","30.2511499"],["-87.6611954","30.2512113"],["-87.6605777","30.2512668"],["-87.6601396","30.2513221"],["-87.6597059","30.2513904"],["-87.658872","30.2515604"],["-87.6573417","30.2518989"],["-87.6567763","30.2520435"],["-87.6562175","30.2521932"],["-87.6512695","30.2537291"],["-87.6460007","30.2551376"],["-87.6453477","30.2552827"],["-87.6445959","30.2554462"],["-87.6442924","30.2555031"],["-87.6437868","30.2555844"],["-87.6430785","30.255702"],["-87.6392527","30.2563077"],["-87.6380507","30.2564945"],["-87.6378729","30.2565226"],["-87.6375754","30.2565722"],["-87.6365813","30.2567565"],["-87.636264","30.2568251"],["-87.6361384","30.2568568"],["-87.63555","30.2570082"],["-87.6350516","30.2571496"],["-87.6345677","30.2573009"],["-87.6326331","30.257976"],["-87.6314048","30.2583967"],["-87.630578","30.2586739"],["-87.6301441","30.2588123"],["-87.6292403","30.2590657"],["-87.6289958","30.2591246"],["-87.628363","30.2592855"],["-87.6281756","30.2593339"],["-87.6266245","30.2596862"],["-87.6265313","30.2597074"],["-87.624458","30.2601923"],["-87.6242098","30.2602516"],["-87.6213213","30.2609231"],["-87.6209579","30.2610102"],["-87.6205156","30.2611116"],["-87.620325","30.2611553"],["-87.6202488","30.261172"],["-87.6143045","30.2625375"],["-87.6142062","30.262563"],["-87.6140068","30.2626107"],["-87.6129432","30.2629046"],["-87.6126294","30.263007"],["-87.6115184","30.2633739"],["-87.6085232","30.2643591"],["-87.6083462","30.2644202"],["-87.6080883","30.2645087"],["-87.6078519","30.2645836"],["-87.6074447","30.2646321"],["-87.6058293","30.2651582"],["-87.6056311","30.2652148"],["-87.6052734","30.2653059"],["-87.6037812","30.2656523"],["-87.6035016","30.2657154"],["-87.5925588","30.2681201"],["-87.5913829","30.2683961"],["-87.582086","30.2704174"],["-87.5810649","30.2706776"],["-87.5803074","30.2709132"],["-87.5796505","30.2710652"],["-87.5795082","30.2710985"],["-87.5783092","30.2713792"],["-87.5779541","30.2714592"],["-87.5766535","30.2717568"],["-87.5765028","30.2717928"],["-87.5700352","30.2732712"],["-87.5696069","30.2733648"],["-87.5693601","30.2734221"],["-87.5684468","30.2736291"],["-87.5662642","30.2741383"],["-87.5661461","30.2741653"],["-87.5657346","30.274259"],["-87.5652162","30.2743801"],["-87.5643747","30.2745885"],["-87.563899","30.2747167"],["-87.5632665","30.2749104"],["-87.5631279","30.2749533"],["-87.5624784","30.2751772"],["-87.5623683","30.2752118"],["-87.5615843","30.2755085"],["-87.5610878","30.2756941"],["-87.5600737","30.2760752"],["-87.5599649","30.2761171"],["-87.5583489","30.2767269"],["-87.5576454","30.2769876"],["-87.5571301","30.2771928"],["-87.5566699","30.2773387"],["-87.55613","30.2775349"],["-87.5556142","30.277707"],["-87.555109","30.2778429"],["-87.5547463","30.2779068"],["-87.5544425","30.2779455"],["-87.5541119","30.2779732"],["-87.5538067","30.2779909"],["-87.5535566","30.2779993"],["-87.5532765","30.2780005"],["-87.5530034","30.2779935"],["-87.5527157","30.2779725"],["-87.5524244","30.2779446"],["-87.5521324","30.2778973"],["-87.5518655","30.2778466"],["-87.5515567","30.2777777"],["-87.5511977","30.2776898"],["-87.5487353","30.2770318"],["-87.5482167","30.2769223"],["-87.5478295","30.2768546"],["-87.5474469","30.2767994"],["-87.5469765","30.27675"],["-87.5464892","30.2767044"],["-87.5458267","30.2766735"],["-87.5455737","30.2766682"],["-87.5445866","30.2766892"],["-87.5435872","30.2767368"],["-87.5425342","30.2768476"],["-87.5420618","30.2769113"],["-87.5406142","30.2771833"],["-87.533673","30.2785321"],["-87.5332599","30.2786084"],["-87.532697","30.2787102"],["-87.5324756","30.2787528"],["-87.5305365","30.2791326"],["-87.5304136","30.279157"],["-87.5279202","30.2796542"],["-87.5259855","30.2800427"],["-87.5211197","30.2810394"],["-87.5206836","30.2811271"],["-87.5187269","30.2815156"],["-87.5175436","30.2817841"],["-87.5162797","30.2820852"],["-87.5161523","30.2821114"],["-87.5159608","30.2821608"],["-87.5157941","30.2821966"],["-87.5150877","30.2823268"],["-87.5147625","30.2823886"],["-87.5084597","30.2835931"],["-87.502263","30.2847892"],["-87.4971622","30.2856331"],["-87.497047","30.2856512"],["-87.4935196","30.2862316"],["-87.4874915","30.2875276"],["-87.48731","30.2875676"],["-87.4608667","30.2928307"],["-87.4509784","30.2941857"],["-87.4507496","30.294217"],["-87.4345085","30.2964041"],["-87.4339775","30.2964782"],["-87.4336706","30.2965319"],["-87.4332669","30.2966183"],["-87.4327926","30.296739"],["-87.4325449","30.2968129"],["-87.4317692","30.2970963"],["-87.4310371","30.29739"],["-87.4306066","30.2975773"],["-87.4299103","30.2978944"],["-87.4291485","30.2981893"],["-87.428948","30.2982827"],["-87.4287642","30.2983866"],["-87.4285686","30.2985158"],["-87.4283438","30.2987074"],["-87.4281514","30.298911"],["-87.4279955","30.2990889"],["-87.4277878","30.29937"],["-87.427655","30.2995933"],["-87.4275529","30.2997936"],["-87.4274587","30.3000357"],["-87.4273492","30.3004475"],["-87.4273175","30.3006505"],["-87.4273042","30.3009825"],["-87.4273534","30.3025533"],["-87.4275344","30.3079717"],["-87.4275079","30.3088645"],["-87.4274909","30.3090035"],["-87.4274627","30.3091695"],["-87.4271671","30.3103238"],["-87.4252037","30.3163998"],["-87.4250074","30.3169814"],["-87.4249737","30.3170987"],["-87.4249349","30.3171937"],["-87.424868","30.3173736"],["-87.4248563","30.3174502"],["-87.4247636","30.3177425"],["-87.4246856","30.3179537"],["-87.4246199","30.3181063"],["-87.4245358","30.3182946"],["-87.4245041","30.3183601"],["-87.4241997","30.3188706"],["-87.4238789","30.3192855"],["-87.4236681","30.3195437"],["-87.4234866","30.3197653"],["-87.4234367","30.3198225"],["-87.4232413","30.320036"],["-87.4230581","30.3202199"],["-87.4228141","30.3204397"],["-87.4225968","30.3206118"],["-87.4224558","30.3207118"],["-87.4223057","30.3208091"],["-87.4221307","30.3209128"],["-87.4219122","30.3210284"],["-87.4216038","30.3211619"],["-87.4202284","30.3217164"],["-87.4197751","30.3218865"],["-87.4186844","30.3223176"],["-87.4180625","30.3226075"],["-87.4178541","30.3227325"],["-87.4176714","30.32286"],["-87.4174973","30.3230068"],["-87.4172821","30.3232066"],["-87.417124","30.3233743"],["-87.4169464","30.3235936"],["-87.4168288","30.3237708"],["-87.4167296","30.323947"],["-87.4166572","30.3240905"],["-87.4166045","30.3242115"],["-87.4165503","30.324358"],["-87.4164985","30.3245162"],["-87.4164563","30.3246656"],["-87.4164457","30.3247169"],["-87.4164168","30.324911"],["-87.4164092","30.3249711"],["-87.4163935","30.3252123"],["-87.416375","30.3255637"],["-87.4163521","30.3258663"],["-87.4163235","30.3261026"],["-87.4162849","30.3263254"],["-87.416249","30.3264979"],["-87.4161249","30.3269772"],["-87.4160326","30.3272719"],["-87.415915","30.327553"],["-87.4157784","30.3278185"],["-87.4143689","30.330313"],["-87.4114637","30.3354336"],["-87.4112377","30.3358198"],["-87.4111002","30.336023"],["-87.4108531","30.3363493"],["-87.4106354","30.3365993"],["-87.4104083","30.3368287"],["-87.4101784","30.3370375"],["-87.4099489","30.3372247"],["-87.4097165","30.3373948"],["-87.4095096","30.3375331"],["-87.4091506","30.3377422"],["-87.4086706","30.3380068"],["-87.3999405","30.342521"],["-87.3987228","30.3432387"],["-87.3982911","30.3435186"],["-87.3909889","30.348574"],["-87.3905767","30.3488526"],["-87.390271","30.3490464"],["-87.3898938","30.349271"],["-87.3894878","30.3494901"],["-87.3891144","30.3496785"],["-87.3887211","30.3498549"],["-87.3882973","30.3500307"],["-87.3878988","30.3501833"],["-87.369946","30.3560793"],["-87.3632408","30.3587528"],["-87.3626192","30.3589671"],["-87.3615662","30.3593381"],["-87.3606364","30.359709"],["-87.3604047","30.3598147"],["-87.360234","30.3599767"],["-87.3589214","30.3605077"],["-87.3587848","30.3605549"],["-87.3585468","30.3606303"],["-87.3584806","30.3606518"],["-87.3577964","30.3609228"],["-87.3574752","30.3610519"],["-87.3573569","30.3611143"],["-87.3554248","30.3618845"],["-87.3541342","30.3623916"],["-87.3532257","30.3627514"],["-87.351729","30.3633213"],["-87.3514225","30.3634104"],["-87.3510186","30.3635084"],["-87.3505837","30.3636114"],["-87.3501125","30.3637158"],["-87.3498084","30.3637641"],["-87.3494135","30.3638194"],["-87.3487492","30.3639"],["-87.3486464","30.3639124"],["-87.3485539","30.3639223"],["-87.347483","30.3640165"],["-87.3470895","30.3640638"],["-87.3465999","30.3641529"],["-87.3459787","30.3642945"],["-87.3455183","30.364419"],["-87.3449399","30.3646031"],["-87.3445095","30.3647619"],["-87.3439763","30.3649853"],["-87.3428886","30.3654754"],["-87.3427581","30.3655349"],["-87.3423326","30.365729"],["-87.3370436","30.3681315"],["-87.3363373","30.3684433"],["-87.3321494","30.3702705"],["-87.3182302","30.3763011"],["-87.3178452","30.3764874"],["-87.317621","30.3766146"],["-87.3173785","30.3767674"],["-87.3170944","30.3769876"],["-87.3168877","30.3771591"],["-87.3167556","30.3772654"],["-87.3166849","30.3773296"],["-87.316446","30.3775442"],["-87.3162687","30.3777159"],["-87.3159921","30.3779595"],["-87.3158409","30.3780874"],["-87.3155716","30.3782957"],["-87.3153621","30.3784501"],["-87.3152205","30.3785367"],["-87.3150201","30.3786456"],["-87.3148032","30.3787468"],["-87.3143481","30.3789005"],["-87.3128524","30.3793787"],["-87.3122843","30.3795572"],["-87.290114","30.3869289"],["-87.2898121","30.3870093"],["-87.2894472","30.3870896"],["-87.2892082","30.3871199"],["-87.2889435","30.3871407"],["-87.2793177","30.3876677"],["-87.2782576","30.3877217"],["-87.277925","30.3877446"],["-87.2768882","30.3878011"],["-87.2764006","30.3878236"],["-87.2760447","30.3878809"],["-87.2757258","30.3879682"],["-87.2754698","30.388049"],["-87.26591","30.3908701"],["-87.2609841","30.392324"],["-87.2556352","30.3939052"],["-87.2552926","30.3940046"],["-87.2540992","30.3943511"],["-87.2533556","30.3945388"],["-87.2529845","30.3946463"],["-87.2527682","30.3947314"],["-87.2525199","30.3948477"],["-87.2524046","30.3949105"],["-87.2522721","30.3949959"],["-87.2521003","30.395121"],["-87.2519132","30.3952683"],["-87.2517085","30.3954884"],["-87.2516111","30.3956198"],["-87.2515482","30.3957018"],["-87.2514014","30.3959297"],["-87.2512504","30.3962024"],["-87.2508898","30.3969561"],["-87.2506931","30.397379"],["-87.2503138","30.3982058"],["-87.2500797","30.3987177"],["-87.2498132","30.3992882"],["-87.2496048","30.3995964"],["-87.2493767","30.3998754"],["-87.2475356","30.4019668"],["-87.2471166","30.4023817"],["-87.2469155","30.4025876"],["-87.2467539","30.4027376"],["-87.246572","30.4028828"],["-87.2463956","30.4030065"],["-87.2462456","30.4030986"],["-87.2460954","30.4031821"],["-87.2458405","30.4033049"],["-87.2456733","30.403373"],["-87.2454998","30.4034321"],["-87.2452209","30.4035099"],["-87.2450767","30.4035402"],["-87.2449408","30.4035625"],["-87.2447168","30.4035881"],["-87.2446002","30.4035967"],["-87.2443234","30.4036006"],["-87.2440274","30.4035949"],["-87.2436851","30.40359"],["-87.2425505","30.4035551"],["-87.2423738","30.4035538"],["-87.2422148","30.403555"],["-87.2419946","30.4035682"],["-87.2418851","30.4035858"],["-87.2417062","30.4036291"],["-87.2415134","30.4036888"],["-87.2413479","30.4037558"],["-87.2411972","30.4038229"],["-87.2411159","30.4038717"],["-87.2410538","30.4039138"],["-87.2409803","30.4039625"],["-87.2408977","30.4040167"],["-87.2407424","30.4041593"],["-87.2406008","30.4042475"],["-87.2402338","30.4044834"],["-87.2399876","30.4046511"],["-87.2397117","30.404821"],["-87.2392832","30.4050868"],["-87.2381303","30.4058129"],["-87.2378113","30.4060128"],["-87.2376319","30.4061274"],["-87.2373089","30.4063412"],["-87.235443","30.4075442"],["-87.22948","30.4113185"],["-87.2261397","30.4111987"],["-87.2260925","30.4113961"],["-87.2257048","30.4180403"],["-87.225574","30.4199796"],["-87.2254262","30.419994"],["-87.2250394","30.4200225"],["-87.2246743","30.4200764"],["-87.2187271","30.4210899"],["-87.2174229","30.4212901"],["-87.2144543","30.421797"],["-87.2143742","30.4218115"],["-87.2142961","30.4218247"],["-87.2121039","30.4221462"],["-87.2111969","30.4177676"],["-87.2111619","30.417588"],["-87.2111523","30.4175445"],["-87.2109748","30.4168241"],["-87.2108913","30.4164278"],["-87.2107757","30.415699"],["-87.2107615","30.4156099"],["-87.210666","30.4151094"],["-87.2104681","30.4151378"],["-87.2088755","30.4154224"],["-87.2086616","30.4154528"],["-87.2081714","30.4155295"],["-87.2074991","30.4156375"],["-87.2069286","30.4157349"],["-87.206559","30.4158054"],["-87.2060902","30.4159093"],["-87.2055408","30.4160015"],["-87.2041406","30.4162309"],["-87.2002503","30.4168894"],["-87.200209","30.4168936"],["-87.2001332","30.4168873"],["-87.2000338","30.4168581"],["-87.1997749","30.4167681"],["-87.1995768","30.4167831"],["-87.1994378","30.4169109"],["-87.1992833","30.417037"],["-87.1989627","30.4172585"],["-87.1987487","30.4173934"],["-87.1985563","30.4174984"],["-87.1983888","30.4175774"],["-87.1978882","30.4177489"],["-87.1972901","30.4179306"],["-87.1970241","30.4180039"],["-87.1967401","30.4180421"],["-87.1964704","30.4180641"],["-87.1963324","30.4180736"],["-87.1957404","30.4180273"],["-87.1955496","30.4179868"],["-87.1953985","30.4179468"],["-87.1952543","30.4178878"],["-87.1950806","30.417806"],["-87.1949122","30.4177248"],["-87.1947808","30.4176452"],["-87.1946587","30.4175616"],["-87.1944655","30.4174061"],["-87.1943043","30.4172769"],["-87.1942281","30.4172103"],["-87.1940259","30.4170119"],["-87.1937739","30.4167155"],["-87.1936954","30.4166093"],["-87.1936166","30.4164956"],["-87.1935084","30.4163206"],["-87.1933902","30.4161079"],["-87.1932924","30.4158906"],["-87.1931366","30.4154894"],["-87.1929497","30.4150158"],["-87.1926479","30.4141865"],["-87.1900705","30.4067422"],["-87.1821795","30.385411"],["-87.1816894","30.3841062"],["-87.1793235","30.3781294"],["-87.1780254","30.3749011"],["-87.1775814","30.3738138"],["-87.1771436","30.3727357"],["-87.176682","30.3717443"],["-87.1765891","30.3715708"],["-87.1765397","30.371488"],["-87.176469","30.3713834"],["-87.1761971","30.3709921"],["-87.1753463","30.3698136"],["-87.1751295","30.3695257"],["-87.1750362","30.3694184"],["-87.1749022","30.3692718"],["-87.1747636","30.3691305"],["-87.1746068","30.3689824"],["-87.1744895","30.3688761"],["-87.1743949","30.3687944"],["-87.1742149","30.3686484"],["-87.1739707","30.3684659"],["-87.1738527","30.368382"],["-87.1737278","30.3682975"],["-87.1735798","30.3682049"],["-87.1734197","30.3681093"],["-87.1731378","30.3679566"],["-87.1729209","30.3678469"],["-87.172349","30.367566"],["-87.1720937","30.3674305"],["-87.1718838","30.367311"],["-87.1716943","30.3671914"],["-87.1715008","30.3670585"],["-87.1712882","30.3668923"],["-87.1712085","30.3668228"],["-87.1710479","30.3666763"],["-87.170886","30.3665158"],["-87.1708089","30.3664332"],["-87.170728","30.3663417"],["-87.1705974","30.3661817"],["-87.1705207","30.366083"],["-87.1703902","30.3658932"],["-87.1703484","30.3658261"],["-87.1703145","30.3657669"],["-87.1702766","30.3656944"],["-87.1702325","30.3656059"],["-87.1700687","30.3652422"],["-87.1698081","30.3646292"],["-87.1697028","30.3643942"],["-87.1682799","30.3610909"],["-87.1681572","30.3608311"],["-87.1680941","30.3607102"],["-87.1679946","30.3605335"],["-87.1679458","30.3604536"],["-87.1678054","30.3602383"],["-87.1676519","30.3600196"],["-87.1675543","30.3598906"],["-87.1674845","30.3598041"],["-87.167383","30.3596832"],["-87.1673099","30.3596012"],["-87.1670822","30.3593622"],["-87.1669641","30.3592475"],["-87.1666079","30.3589344"],["-87.1664351","30.3587961"],["-87.1662859","30.3586856"],["-87.165886","30.3584242"],["-87.1654009","30.3581496"],["-87.1649457","30.3579502"],["-87.1645188","30.3577839"],["-87.1638844","30.357596"],["-87.1633901","30.3574822"],["-87.1630274","30.3574279"],["-87.1628582","30.3574118"],["-87.1626675","30.3573984"],["-87.1623433","30.3573793"],["-87.161982","30.3573723"],["-87.1613115","30.3573962"],["-87.1607843","30.3574699"],["-87.1604743","30.3575216"],["-87.1601622","30.357598"],["-87.1535087","30.3593271"],["-87.1519276","30.3597083"],["-87.1309964","30.3652155"],["-87.1303478","30.3654157"],["-87.1296914","30.365639"],["-87.1289316","30.3659233"],["-87.1281661","30.3662579"],["-87.1271116","30.366775"],["-87.1265104","30.3671125"],["-87.1253901","30.3678164"],["-87.1245548","30.3684192"],["-87.1237194","30.3690989"],["-87.1165566","30.3757714"],["-87.1147785","30.3774338"],["-87.1120706","30.3799486"],["-87.11147","30.3804714"],["-87.1107133","30.3810461"],["-87.1102571","30.3813632"],["-87.110151","30.3814361"],["-87.1096165","30.3817812"],["-87.1091693","30.3820466"],["-87.1085816","30.3823687"],["-87.1080886","30.3826267"],["-87.1075514","30.3828898"],["-87.1069824","30.383134"],["-87.1058396","30.3835728"],["-87.1050891","30.3838162"],["-87.1041353","30.3840732"],["-87.1032157","30.3842808"],["-87.0924154","30.3859098"],["-87.0862728","30.3868228"],["-87.0789216","30.3879313"],["-87.0456118","30.3928902"],["-87.0317985","30.3949508"],["-87.0302344","30.3951835"],["-86.99698","30.400118"],["-86.9963956","30.4002042"],["-86.9727824","30.4036919"],["-86.972021","30.4037669"],["-86.9713567","30.4038224"],["-86.9700501","30.4038493"],["-86.9580622","30.4037039"],["-86.9572133","30.403651"],["-86.9569462","30.403628"],["-86.9560529","30.4035148"],["-86.9550606","30.4033476"],["-86.9525186","30.402803"],["-86.9519105","30.402687"],["-86.9506938","30.4024922"],["-86.9500034","30.40241"],["-86.9463803","30.4022443"],["-86.8711763","30.4014898"],["-86.8692319","30.4014765"],["-86.8627385","30.4014248"],["-86.8620806","30.4014406"],["-86.8609988","30.4015254"],["-86.8603935","30.4015907"],["-86.8594842","30.4017273"],["-86.8589046","30.401836"],["-86.8579118","30.4020712"],["-86.8574166","30.4022041"],["-86.8565448","30.4024767"],["-86.8557193","30.402766"],["-86.8554574","30.4028698"],["-86.8547168","30.4031796"],["-86.853643","30.4037135"],["-86.8507489","30.4052095"],["-86.8477462","30.406763"],["-86.8468296","30.4072172"],["-86.8462674","30.4074717"],["-86.8458961","30.4076252"],["-86.843726","30.4084131"],["-86.843236","30.4085877"],["-86.8423086","30.4088741"],["-86.8418399","30.4089988"],["-86.8412531","30.409139"],["-86.8407143","30.4092594"],["-86.8403121","30.4093393"],["-86.8397095","30.4094263"],["-86.8385925","30.4095649"],["-86.8382509","30.4095988"],["-86.8372229","30.4096455"],["-86.8355412","30.4096487"],["-86.8272083","30.4095918"],["-86.8161955","30.4095385"],["-86.8068293","30.4094862"],["-86.8055273","30.4095"],["-86.7823967","30.4102806"],["-86.7559877","30.4112144"],["-86.755283","30.411236"],["-86.7368925","30.4118789"],["-86.7354894","30.4119192"],["-86.7347951","30.4119371"],["-86.732702","30.4119862"],["-86.7318173","30.4119875"],["-86.7306731","30.4119804"],["-86.7303126","30.4119699"],["-86.7300237","30.4119704"],["-86.7296365","30.4119635"],["-86.7286432","30.4119335"],["-86.728284","30.4119217"],["-86.7000274","30.4108862"],["-86.6963359","30.410823"],["-86.6829102","30.4103096"],["-86.6651676","30.4096487"],["-86.6645505","30.4096242"],["-86.6562634","30.409335"],["-86.6511646","30.4091034"],["-86.6415943","30.4078261"],["-86.6413651","30.4077885"],["-86.6280572","30.4057756"],["-86.6211012","30.4047306"],["-86.6181355","30.4043844"],["-86.6174659","30.4043394"],["-86.6168904","30.4043391"],["-86.6052319","30.4036183"],["-86.6049173","30.4036001"],["-86.6046946","30.4035829"],["-86.6044983","30.4035622"],["-86.6043435","30.4035389"],["-86.6041762","30.4035108"],["-86.6040411","30.4034756"],["-86.6039167","30.4034035"],["-86.6037485","30.4033573"],["-86.6032679","30.4032001"],["-86.6028356","30.403031"],["-86.6026614","30.4029523"],["-86.602441","30.4028468"],["-86.6022228","30.4027264"],["-86.6020778","30.4026351"],["-86.6019252","30.4025318"],["-86.6017244","30.4023708"],["-86.6015571","30.4022203"],["-86.6014948","30.4021603"],["-86.6013108","30.4019542"],["-86.6007524","30.4012439"],["-86.5995923","30.3997502"],["-86.5990399","30.3990384"],["-86.598742","30.3986747"],["-86.5985134","30.3984191"],["-86.5982814","30.3981969"],["-86.5980004","30.3979578"],["-86.59771","30.3977246"],["-86.5973271","30.3974342"],["-86.5970413","30.3972529"],["-86.5966963","30.3970668"],["-86.5963468","30.396889"],["-86.5958893","30.3966832"],["-86.5956086","30.3965704"],["-86.5952293","30.3964318"],["-86.5948923","30.3963293"],["-86.5944248","30.3962099"],["-86.5937506","30.3960732"],["-86.5933989","30.3960089"],["-86.592965","30.3959388"],["-86.5923084","30.3958791"],["-86.5915875","30.3958338"],["-86.5910905","30.3958049"],["-86.5852567","30.3955385"],["-86.5829342","30.395433"],["-86.5820728","30.3953995"],["-86.5813989","30.3953741"],["-86.5780957","30.395221"],["-86.5770908","30.3951736"],["-86.5674601","30.3947126"],["-86.5589705","30.394313"],["-86.5579942","30.3942422"],["-86.5576597","30.3942227"],["-86.5574613","30.3942131"],["-86.5565012","30.3941146"],["-86.5551177","30.3939327"],["-86.554176","30.3937825"],["-86.5528395","30.3935242"],["-86.5519284","30.3933266"],["-86.5407077","30.3905817"],["-86.5400262","30.3904045"],["-86.5395454","30.3902785"],["-86.5387079","30.3900842"],["-86.5383268","30.3899999"],["-86.5379113","30.3899047"],["-86.5372599","30.3897374"],["-86.5366157","30.3895874"],["-86.5357118","30.389404"],["-86.5343778","30.3892153"],["-86.5332271","30.3891242"],["-86.5321376","30.3890943"],["-86.5314465","30.3891055"],["-86.5306178","30.3891474"],["-86.5300627","30.389195"],["-86.5290593","30.389315"],["-86.5284326","30.3894235"],["-86.5276482","30.3895804"],["-86.5266858","30.3898238"],["-86.5258532","30.390054"],["-86.5249431","30.3903738"],["-86.5241455","30.3906831"],["-86.5236973","30.39087"],["-86.5233009","30.3910472"],["-86.5195397","30.3927222"],["-86.5162779","30.394178"],["-86.5141676","30.3951039"],["-86.5140332","30.3951501"],["-86.5138751","30.3952021"],["-86.5137328","30.3952418"],["-86.5136133","30.395271"],["-86.5134944","30.3952973"],["-86.5133771","30.3953193"],["-86.5132381","30.3953401"],["-86.5130161","30.3953587"],["-86.5119893","30.3953998"],["-86.5118688","30.3953974"],["-86.5114858","30.3953769"],["-86.5113749","30.3953668"],["-86.5110225","30.3953224"],["-86.5107832","30.395277"],["-86.5104551","30.3952064"],["-86.5100968","30.3951307"],["-86.5085918","30.3948099"],["-86.5084378","30.3947782"],["-86.5081825","30.3947249"],["-86.5054505","30.3941475"],["-86.5053133","30.3941178"],["-86.5039016","30.3938193"],["-86.496013","30.392133"],["-86.4956273","30.3934433"],["-86.4955838","30.3935383"],["-86.4955538","30.3935859"],["-86.4955223","30.3935932"],["-86.4954931","30.3936044"],["-86.4954683","30.3936231"],["-86.4954515","30.3936462"],["-86.4954416","30.3936767"],["-86.4954427","30.3937075"],["-86.4954551","30.3937375"],["-86.4954731","30.3937597"],["-86.4954969","30.3937784"],["-86.4955001","30.3938426"],["-86.4954757","30.3939711"],["-86.4954352","30.3943238"]] } }; const coordinates_1_1 = geojson_1_1.geometry.coordinates; for (const coord of coordinates_1_1) { bounds_1.extend(coord); contentMap_1.fitBounds(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(bounds_1, {padding: {top: 60, bottom: 60, left: 60, right: 60}}); contentMap_1.fitBounds(bounds_1, {padding: {top: 60, bottom:60, left: 60, right: 60}}); var boundsSouthWest = bounds_1.getSouthWest(); var boundsNorthEast = bounds_1.getNorthEast(); initialMapBounds[1] = new mapboxgl.LngLatBounds(boundsSouthWest, boundsNorthEast); const visibleMapRoutes_1 = []; contentMaps[1].on('click', (e) => { if (!clickWasOnMarkerOrCard) { resetMarkersAndCards(1); } else { clickWasOnMarkerOrCard = false; } }); } 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"); } }); })();