if (typeof window.contentMaps === 'undefined') { window.contentMaps = {}; window.initialMapBounds = {}; } if (typeof window.bounds === 'undefined') {window.bounds = {};} if (typeof window.markerData === 'undefined') {window.markerData = {};} if (!markerData[1]) {markerData[1] = {};} function initMapbox_1(){ mapboxgl.accessToken = 'pk.eyJ1IjoibGF6eXRyaXBzIiwiYSI6ImNsaTJ4anh2MTA5NDYzZW85ODJmMm45ZzcifQ.9u5pN47V7SsoFwF6_Pw5bQ'; const contentMap_1 = new mapboxgl.Map({ container: 'contentMap_1', style: 'mapbox://styles/mapbox/streets-v11', center: [-114.23878277934121, 33.57141966423033], zoom: 5, cooperativeGestures: true }); window.contentMaps[1] = contentMap_1; if (typeof window.bounds[1] === 'undefined') {window.bounds[1] = new mapboxgl.LngLatBounds();} if (typeof markerData[1][0] === 'undefined') { markerData[1][0] = {}; } markerData[1][0]['lonLat'] = [ -117.15684565624873, 32.71713207828051];markerData[1][0]['type'] = 'start'; 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'] = [ -111.75706538443121, 34.87384114797234];markerData[1][1]['type'] = 'finish'; 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'] = [ -113.83089455945141, 32.69990054632471];markerData[1][2]['type'] = 'star'; 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]); } }); }); }); async function fetchRoute(routeId, mapNum, iconNum, routeColor) { try { const payload = {routeId: routeId}; const response = await fetch('/api/request-route', { method: 'POST', headers: {'Content-Type': 'application/json'}, body: JSON.stringify(payload) }); if (!response.ok) { console.log('Received non-OK HTTP status: ' + response.status + '. Proceeding without route data.'); return; } const data = await response.json(); if (data.response && data.response.route) { const routeData = JSON.parse(data.response.route); markerData[mapNum][iconNum]['routeJson'] = routeData; updateMapWithRoute(mapNum, iconNum, routeData, routeColor); } else { console.log('No route data found'); } } catch (error) { console.error('Error fetching route:', error); } } function updateMapWithRoute(mapNum, iconNum, routeData, routeColor) { const layerId = 'iconRoute_' + mapNum + '_' + iconNum; const routeGeojson = { type: 'Feature', properties: {}, geometry: { type: 'LineString', coordinates: routeData } }; if (contentMaps[mapNum].getLayer(layerId)) { contentMaps[mapNum].setLayoutProperty(layerId, 'visibility', 'visible'); contentMaps[mapNum].getSource(layerId).setData(routeGeojson); } else { contentMaps[mapNum].addLayer({ id: layerId, type: 'line', source: { type: 'geojson', data: routeGeojson }, layout: { 'line-join': 'round', 'line-cap': 'round' }, paint: { 'line-color': routeColor, 'line-width': 5, 'line-opacity': 0.8 } }); } } function hideRouteLayer(mapNum, iconNum) { const layerId = 'iconRoute_' + mapNum + '_' + iconNum; if (contentMaps[mapNum].getLayer(layerId)) { contentMaps[mapNum].setLayoutProperty(layerId, 'visibility', 'none'); } } 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)) { hideRouteLayer(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) { const layerId = 'iconRoute_' + mapNum + '_' + iconNum; if (contentMaps[mapNum].getLayer(layerId)) { contentMaps[mapNum].setLayoutProperty(layerId, 'visibility', 'visible'); } else { fetchRoute(markerData[mapNum][iconNum]['routeId'], mapNum, iconNum, markerData[mapNum][iconNum]['routeColor']); } } 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)) { hideRouteLayer(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]['onClick'] = true; markerData[1][2]['popup'] = true; markerData[1][2]['popupTitle'] = `Phoenix Route`; markerData[1][2]['popupText'] = `550 miles (9 hours 10 minutes)`; markerData[1][2]['route'] = false; markerData[1][2]['card'] = false; if (typeof markerData[1][3] === 'undefined') { markerData[1][3] = {}; } markerData[1][3]['lonLat'] = [ -114.33372043152264, 33.64491171889089];markerData[1][3]['type'] = 'star'; markerData[1][3]['clicked'] = false; markerData[1][3]['onClick'] = true; markerData[1][3]['popup'] = true; markerData[1][3]['popupTitle'] = `Palm Springs Route`; markerData[1][3]['popupText'] = `510 miles (9 hours 30 minutes)`; markerData[1][3]['route'] = false; markerData[1][3]['card'] = false; const geojson_1_0 = { type: 'Feature', properties: {}, geometry: { type: 'LineString', coordinates: [["-117.15655","32.7178302"],["-117.1565616","32.7184439"],["-117.1565639","32.7185457"],["-117.1565187","32.7188489"],["-117.1557417","32.7188588"],["-117.15541","32.7188704"],["-117.1552661","32.7188946"],["-117.1551207","32.7189217"],["-117.1550643","32.7189454"],["-117.155002","32.7189851"],["-117.1549389","32.7190472"],["-117.1548853","32.7191286"],["-117.1548605","32.7192291"],["-117.1548584","32.7195014"],["-117.1548546","32.720122"],["-117.1548438","32.7207155"],["-117.1548178","32.7213516"],["-117.1547621","32.7218171"],["-117.1547743","32.7220782"],["-117.1548113","32.7223327"],["-117.1549009","32.7226992"],["-117.155171","32.7236028"],["-117.1556629","32.7251169"],["-117.1557962","32.7256052"],["-117.1558521","32.725903"],["-117.155887","32.7261662"],["-117.1559033","32.726508"],["-117.1559059","32.7267742"],["-117.1558917","32.7270108"],["-117.1558682","32.7271939"],["-117.1558154","32.7274079"],["-117.1557516","32.7275991"],["-117.1556018","32.7279222"],["-117.1550369","32.7289369"],["-117.1547159","32.7295246"],["-117.154578","32.7298165"],["-117.1545077","32.7300364"],["-117.1544516","32.7302284"],["-117.1544025","32.7304762"],["-117.154381","32.7306756"],["-117.1543655","32.7309117"],["-117.1543725","32.7312049"],["-117.1544103","32.7314998"],["-117.1544619","32.7317215"],["-117.1545161","32.7319255"],["-117.1546072","32.7321755"],["-117.154714","32.7324163"],["-117.155196","32.7332565"],["-117.1553974","32.7336161"],["-117.1555146","32.7338776"],["-117.1556449","32.7342345"],["-117.155704","32.734527"],["-117.1557473","32.7349017"],["-117.1557622","32.7351408"],["-117.155755","32.7354063"],["-117.1557362","32.7358438"],["-117.1557352","32.7362048"],["-117.1557403","32.7366092"],["-117.1558148","32.7374656"],["-117.1558786","32.7379867"],["-117.1562347","32.7398798"],["-117.1563251","32.7405869"],["-117.1563588","32.7410245"],["-117.1563719","32.7413572"],["-117.1563375","32.7419895"],["-117.1562161","32.7433688"],["-117.1562134","32.7437815"],["-117.1562287","32.7441539"],["-117.1564089","32.7456059"],["-117.1564624","32.7461121"],["-117.156466","32.746403"],["-117.1564461","32.746619"],["-117.1563983","32.7468802"],["-117.156232","32.7473861"],["-117.1558491","32.7484619"],["-117.1553025","32.7500653"],["-117.1552755","32.7502431"],["-117.1552696","32.7504093"],["-117.1552857","32.7506391"],["-117.1553455","32.750893"],["-117.1554283","32.7511274"],["-117.1556223","32.7514606"],["-117.1558181","32.7516965"],["-117.1559731","32.75185"],["-117.1562923","32.7520983"],["-117.1567726","32.7524217"],["-117.1571062","32.7526579"],["-117.1573589","32.7528573"],["-117.1575881","32.7530697"],["-117.1577902","32.7532904"],["-117.1579788","32.753534"],["-117.1581648","32.7538134"],["-117.1583239","32.7541091"],["-117.1584526","32.7544049"],["-117.1585465","32.754678"],["-117.1587259","32.7553755"],["-117.1588243","32.755701"],["-117.1589331","32.756005"],["-117.1590957","32.7563479"],["-117.159257","32.7566488"],["-117.1594442","32.7569466"],["-117.1596828","32.7572784"],["-117.1599537","32.7575866"],["-117.1602564","32.7578915"],["-117.1615828","32.7590778"],["-117.1621413","32.7595877"],["-117.1624391","32.7599266"],["-117.1627256","32.7603444"],["-117.1629156","32.7607486"],["-117.1629551","32.7612158"],["-117.1629369","32.7614415"],["-117.1628438","32.7616539"],["-117.1626895","32.7618497"],["-117.1623537","32.7621436"],["-117.1612949","32.7628486"],["-117.1607635","32.7631975"],["-117.1601337","32.7635291"],["-117.1597041","32.7636802"],["-117.159368","32.7637774"],["-117.1579107","32.7641519"],["-117.1549209","32.764943"],["-117.1540901","32.76523"],["-117.1503383","32.7661731"],["-117.1491704","32.7664727"],["-117.1476201","32.7668727"],["-117.1468441","32.7671059"],["-117.1464208","32.7672531"],["-117.146023","32.7674018"],["-117.1456811","32.7675418"],["-117.143325","32.7685825"],["-117.1427004","32.7688431"],["-117.1420244","32.7690999"],["-117.1404666","32.7696416"],["-117.1394369","32.7699516"],["-117.1383052","32.7702443"],["-117.1321565","32.7716349"],["-117.1313808","32.7718217"],["-117.1305381","32.7720417"],["-117.1300103","32.7721991"],["-117.1294639","32.7723879"],["-117.1286887","32.7727107"],["-117.1265067","32.7737771"],["-117.1221226","32.7761346"],["-117.1198258","32.7773815"],["-117.1186611","32.7778603"],["-117.117581","32.7781606"],["-117.1169267","32.7783"],["-117.1164035","32.7783788"],["-117.1160386","32.7784166"],["-117.1155185","32.7784585"],["-117.1151066","32.7784873"],["-117.1059048","32.7786448"],["-117.1032533","32.7787944"],["-117.1024522","32.7788548"],["-117.1014899","32.7789337"],["-117.0988108","32.7793795"],["-117.0975035","32.7796085"],["-117.0946009","32.7801255"],["-117.0933045","32.7803089"],["-117.0910147","32.780502"],["-117.0901405","32.7805486"],["-117.0869673","32.7806538"],["-117.0858262","32.7806177"],["-117.0830001","32.780251"],["-117.0816178","32.7800639"],["-117.0788271","32.7797061"],["-117.0757012","32.7793024"],["-117.0749502","32.7792396"],["-117.0738008","32.7791749"],["-117.0729878","32.7791736"],["-117.0687337","32.7792433"],["-117.0678752","32.7792644"],["-117.0648097","32.7793746"],["-117.0644344","32.7793512"],["-117.0636856","32.7792683"],["-117.0630591","32.7791623"],["-117.0618575","32.7788005"],["-117.0599619","32.7782478"],["-117.0584295","32.7778745"],["-117.0532385","32.7769196"],["-117.0520947","32.7766701"],["-117.0506989","32.7762692"],["-117.049985","32.7760137"],["-117.0494774","32.7758041"],["-117.0477542","32.7749893"],["-117.0462428","32.7741974"],["-117.0443997","32.7732929"],["-117.0439116","32.7730741"],["-117.0434757","32.7729202"],["-117.042944","32.7727569"],["-117.0423639","32.7726428"],["-117.0417569","32.7725405"],["-117.0409459","32.7724995"],["-117.040161","32.7725359"],["-117.0393307","32.7726854"],["-117.0378143","32.7730492"],["-117.0362116","32.7734389"],["-117.0352902","32.7736608"],["-117.0345492","32.7738287"],["-117.0342048","32.7738873"],["-117.0338352","32.7739283"],["-117.0335193","32.7739468"],["-117.0334151","32.7739502"],["-117.0333063","32.7739502"],["-117.0330981","32.7739462"],["-117.0327877","32.7739371"],["-117.0324751","32.7739147"],["-117.0320571","32.7738566"],["-117.0316348","32.773778"],["-117.0311917","32.7736773"],["-117.0307434","32.7735313"],["-117.0300746","32.7732673"],["-117.0266893","32.7717614"],["-117.0261286","32.7715013"],["-117.0256836","32.7713254"],["-117.0252112","32.7711618"],["-117.024677","32.7710243"],["-117.0238796","32.7708952"],["-117.0233186","32.770844"],["-117.0222441","32.7708111"],["-117.0210877","32.7709232"],["-117.0204883","32.7710356"],["-117.0197479","32.7712181"],["-117.0191424","32.7714212"],["-117.0185933","32.7716415"],["-117.0156946","32.7730982"],["-117.0152814","32.7732769"],["-117.0145847","32.7735402"],["-117.0128816","32.7741758"],["-117.0114773","32.7746946"],["-117.0090651","32.7755528"],["-117.0043314","32.7772539"],["-117.0038243","32.7774524"],["-117.0032984","32.7776957"],["-117.0023117","32.7782319"],["-117.0012721","32.7787012"],["-117.0009039","32.7788332"],["-117.0004427","32.7789615"],["-116.9999359","32.7790831"],["-116.9993861","32.7791786"],["-116.9987163","32.7792331"],["-116.9966471","32.7791741"],["-116.9948638","32.7790896"],["-116.9866406","32.7788614"],["-116.9858615","32.7788789"],["-116.9855586","32.7789275"],["-116.9852888","32.7789757"],["-116.9850232","32.7790362"],["-116.9847043","32.7791224"],["-116.9843558","32.7792378"],["-116.9837129","32.7795503"],["-116.9832367","32.7798222"],["-116.9826603","32.780271"],["-116.9824832","32.7804365"],["-116.9823022","32.7806293"],["-116.98208","32.7808924"],["-116.9818709","32.7811815"],["-116.9816344","32.7815734"],["-116.9804717","32.783642"],["-116.9801719","32.7841487"],["-116.9799646","32.7844622"],["-116.9797333","32.7847816"],["-116.9794089","32.7851985"],["-116.9789387","32.7857855"],["-116.9784878","32.7863811"],["-116.9782002","32.7868979"],["-116.9779684","32.7873899"],["-116.9778442","32.7877715"],["-116.9776881","32.7885468"],["-116.9776654","32.7893698"],["-116.9776619","32.7912514"],["-116.9776249","32.7916636"],["-116.9775396","32.7923185"],["-116.9767325","32.7973753"],["-116.9766556","32.797744"],["-116.9765376","32.7981621"],["-116.9762992","32.7987559"],["-116.9760765","32.799226"],["-116.9758348","32.7996117"],["-116.9755276","32.8000267"],["-116.9752074","32.800386"],["-116.9747821","32.8008367"],["-116.9742656","32.8012736"],["-116.9737672","32.8016116"],["-116.9733776","32.8018507"],["-116.9728627","32.8021152"],["-116.9722364","32.8024037"],["-116.9717215","32.8025677"],["-116.9712043","32.8027209"],["-116.9708308","32.8028064"],["-116.9702702","32.8028707"],["-116.9693857","32.8029303"],["-116.967388","32.8029532"],["-116.9285832","32.8029696"],["-116.9273241","32.8029902"],["-116.9267475","32.8030482"],["-116.9262077","32.8031253"],["-116.9258139","32.8032003"],["-116.9252688","32.8033288"],["-116.9250354","32.8033947"],["-116.9246996","32.8035025"],["-116.9243674","32.8036168"],["-116.923992","32.8037628"],["-116.9236139","32.8039301"],["-116.9232451","32.8041052"],["-116.9229054","32.8042976"],["-116.9225817","32.80449"],["-116.9222696","32.8046928"],["-116.9219536","32.8049092"],["-116.921376","32.8053794"],["-116.9210879","32.805646"],["-116.9208154","32.8059291"],["-116.9205719","32.8062008"],["-116.920319","32.8065185"],["-116.9199357","32.8070518"],["-116.9196396","32.8075125"],["-116.9192696","32.8081168"],["-116.9174944","32.8110219"],["-116.9164595","32.8126953"],["-116.9161683","32.8131183"],["-116.9158804","32.8134753"],["-116.9154972","32.8139123"],["-116.9147782","32.8146078"],["-116.9136405","32.8156904"],["-116.912259","32.8170077"],["-116.9116112","32.8176619"],["-116.9112788","32.8180459"],["-116.9109823","32.8184202"],["-116.9106277","32.8189638"],["-116.9098232","32.820451"],["-116.9093881","32.8211874"],["-116.9090585","32.8216743"],["-116.9086523","32.8222089"],["-116.9084376","32.8224516"],["-116.9080468","32.8228406"],["-116.9075506","32.8232801"],["-116.9068164","32.823842"],["-116.905584","32.8247351"],["-116.8986021","32.8300019"],["-116.897015","32.8312709"],["-116.8953938","32.8327284"],["-116.8854192","32.8422092"],["-116.8841809","32.8431959"],["-116.8835845","32.8435788"],["-116.8829877","32.843893"],["-116.8825113","32.8441028"],["-116.8818608","32.8443402"],["-116.8812985","32.8444997"],["-116.8776877","32.845296"],["-116.8771528","32.8454515"],["-116.8763284","32.8457371"],["-116.8756448","32.84604"],["-116.8750296","32.8463678"],["-116.8744861","32.8467199"],["-116.8740001","32.8470663"],["-116.8732263","32.8477486"],["-116.8709024","32.8499741"],["-116.8699994","32.850798"],["-116.8693868","32.8512402"],["-116.8687536","32.8516325"],["-116.8681009","32.8519746"],["-116.8669558","32.8524107"],["-116.8639252","32.8533698"],["-116.8623448","32.8538369"],["-116.8613617","32.853999"],["-116.8604715","32.8540731"],["-116.859625","32.8540877"],["-116.8584358","32.8540017"],["-116.8517306","32.8531888"],["-116.8499882","32.8529838"],["-116.8491123","32.8528984"],["-116.8482884","32.852838"],["-116.847382","32.8528047"],["-116.8463398","32.8528058"],["-116.8451905","32.8528347"],["-116.8434923","32.8529489"],["-116.8412927","32.8531655"],["-116.8397174","32.8533971"],["-116.8391064","32.8535318"],["-116.8385231","32.8536906"],["-116.8372143","32.8541754"],["-116.8348842","32.8550856"],["-116.8336339","32.8555304"],["-116.8320162","32.8559832"],["-116.8313553","32.8561105"],["-116.8306443","32.8562264"],["-116.8298579","32.8563331"],["-116.8283063","32.8564272"],["-116.8180273","32.8568492"],["-116.8177696","32.8568504"],["-116.8175582","32.8568453"],["-116.81731","32.8568335"],["-116.8170355","32.8568126"],["-116.8167711","32.8567845"],["-116.8165482","32.8567551"],["-116.8163233","32.8567182"],["-116.8160632","32.8566656"],["-116.815274","32.8564526"],["-116.814817","32.8562951"],["-116.8142681","32.8560734"],["-116.8136085","32.8557379"],["-116.8130699","32.8553881"],["-116.8127216","32.8551568"],["-116.8123991","32.8549182"],["-116.8121186","32.8546835"],["-116.8116192","32.8541776"],["-116.811058","32.8534342"],["-116.8085257","32.8499041"],["-116.8081603","32.8494619"],["-116.8078507","32.8491422"],["-116.8074456","32.8487832"],["-116.8066401","32.8481194"],["-116.8065326","32.8480347"],["-116.8064265","32.8479569"],["-116.8053618","32.8471805"],["-116.8033809","32.8457124"],["-116.8025771","32.8451476"],["-116.8019414","32.8447711"],["-116.8012556","32.8444069"],["-116.8005005","32.84409"],["-116.7908927","32.8406513"],["-116.7878614","32.839595"],["-116.7872865","32.8394495"],["-116.786758","32.8393421"],["-116.7862831","32.8392723"],["-116.7856664","32.8392037"],["-116.7850641","32.8391592"],["-116.7845147","32.8391539"],["-116.7840521","32.8391703"],["-116.7835362","32.8392062"],["-116.7830622","32.8392523"],["-116.7778066","32.8401188"],["-116.7771759","32.8401947"],["-116.7767373","32.8402174"],["-116.7762956","32.8402126"],["-116.7759882","32.840193"],["-116.775644","32.8401575"],["-116.7750763","32.8400693"],["-116.7721642","32.8396242"],["-116.7628908","32.8382045"],["-116.7607309","32.8378093"],["-116.7506582","32.8350042"],["-116.7497915","32.8348111"],["-116.7488841","32.834641"],["-116.7479639","32.8345255"],["-116.7469792","32.8344388"],["-116.7459232","32.8344122"],["-116.7449771","32.8344297"],["-116.7431684","32.8345598"],["-116.7415289","32.834681"],["-116.7404986","32.8347506"],["-116.7400094","32.8347676"],["-116.7396449","32.8347713"],["-116.7389663","32.8347462"],["-116.7385831","32.8347182"],["-116.7381629","32.8346787"],["-116.7375195","32.8345936"],["-116.7336735","32.8339871"],["-116.7322169","32.8337586"],["-116.731718","32.8336994"],["-116.731344","32.8336686"],["-116.7308373","32.8336492"],["-116.7303004","32.8336377"],["-116.729825","32.8336431"],["-116.7292461","32.8336674"],["-116.7275413","32.8337733"],["-116.7268918","32.8338038"],["-116.7263599","32.8338047"],["-116.7256852","32.833769"],["-116.7230462","32.8335056"],["-116.7222963","32.8334757"],["-116.7217432","32.8334949"],["-116.7211553","32.833538"],["-116.7206531","32.8336313"],["-116.7201302","32.8337422"],["-116.7196928","32.8338648"],["-116.7192197","32.8340325"],["-116.7185296","32.8343794"],["-116.7176371","32.8348833"],["-116.7170039","32.8352441"],["-116.7164305","32.8355507"],["-116.7158159","32.8358329"],["-116.7153268","32.8360286"],["-116.7148155","32.836207"],["-116.7141754","32.8363934"],["-116.710862","32.837026"],["-116.7058647","32.8379472"],["-116.7025102","32.8384816"],["-116.7021187","32.8385082"],["-116.701304","32.838542"],["-116.6901563","32.8385839"],["-116.6860795","32.8385756"],["-116.6854157","32.838541"],["-116.6818236","32.8381342"],["-116.6769035","32.8375581"],["-116.6759334","32.8374985"],["-116.6750683","32.8374771"],["-116.6733794","32.8376599"],["-116.6698755","32.8381587"],["-116.6690032","32.8382012"],["-116.6681801","32.8382275"],["-116.6666469","32.8381807"],["-116.6659497","32.8381163"],["-116.6652865","32.8380284"],["-116.6641756","32.8378244"],["-116.6621798","32.837431"],["-116.661216","32.8373344"],["-116.6606031","32.8373119"],["-116.6600829","32.8373137"],["-116.6595093","32.8373371"],["-116.6586879","32.8374136"],["-116.654746","32.838008"],["-116.6533557","32.8381771"],["-116.6524574","32.8382054"],["-116.6516365","32.838184"],["-116.6508725","32.8381338"],["-116.6501761","32.8380651"],["-116.6488631","32.8378034"],["-116.6398823","32.8357916"],["-116.6391357","32.8355849"],["-116.6384592","32.8353796"],["-116.6336388","32.8337317"],["-116.6318819","32.833099"],["-116.6311452","32.8327271"],["-116.63067","32.8324614"],["-116.6301741","32.8321308"],["-116.6295225","32.8316631"],["-116.6289931","32.8311702"],["-116.6285455","32.8307332"],["-116.6282273","32.8303959"],["-116.6278431","32.8299283"],["-116.6267806","32.8284976"],["-116.6261946","32.8277617"],["-116.6253","32.8267584"],["-116.6248945","32.8263787"],["-116.6242011","32.8257911"],["-116.6235248","32.8253079"],["-116.6228829","32.8248936"],["-116.6224043","32.8246169"],["-116.6218628","32.8243369"],["-116.6212515","32.8240514"],["-116.6205688","32.8237667"],["-116.619943","32.8235409"],["-116.6192847","32.8233563"],["-116.6174926","32.823039"],["-116.6168416","32.8229516"],["-116.6158824","32.8229389"],["-116.6150379","32.8229443"],["-116.6142683","32.8230058"],["-116.613316","32.8231246"],["-116.6113692","32.8234248"],["-116.610071","32.8235945"],["-116.6091183","32.823689"],["-116.6081576","32.823758"],["-116.6059712","32.8237703"],["-116.6046624","32.8237228"],["-116.6034168","32.8236052"],["-116.6023236","32.8234707"],["-116.6012224","32.8232955"],["-116.5999318","32.8230228"],["-116.5983213","32.8226125"],["-116.59705","32.8222584"],["-116.5954977","32.8217981"],["-116.5920076","32.8207862"],["-116.5858887","32.8190393"],["-116.5842563","32.8186301"],["-116.5836412","32.8185162"],["-116.5822036","32.8183948"],["-116.5813203","32.8184222"],["-116.5799546","32.8185617"],["-116.5787804","32.8188015"],["-116.5776922","32.819053"],["-116.5750194","32.8196717"],["-116.5724761","32.8202625"],["-116.5712565","32.8205732"],["-116.5703379","32.8209207"],["-116.5685981","32.8216923"],["-116.5669902","32.8224079"],["-116.5665688","32.8225511"],["-116.565904","32.8227122"],["-116.5645115","32.8229588"],["-116.5639823","32.8230298"],["-116.5564407","32.8230482"],["-116.5556764","32.8229814"],["-116.554864","32.8228782"],["-116.55401","32.8227033"],["-116.5530479","32.8224162"],["-116.5521947","32.8220483"],["-116.550869","32.8213494"],["-116.5483583","32.819768"],["-116.5471283","32.8190338"],["-116.5463061","32.81867"],["-116.5455505","32.8184162"],["-116.5448271","32.8182266"],["-116.5440312","32.8180846"],["-116.5432877","32.817987"],["-116.542558","32.8179299"],["-116.5416721","32.8179161"],["-116.5408218","32.8180019"],["-116.5400304","32.818061"],["-116.5385419","32.8181863"],["-116.5379754","32.8182191"],["-116.5372574","32.8182385"],["-116.5362911","32.8182375"],["-116.5354576","32.8182054"],["-116.5344033","32.8181157"],["-116.5338633","32.8180513"],["-116.5333912","32.8179842"],["-116.5328558","32.8178938"],["-116.5323732","32.8177996"],["-116.5315343","32.8176153"],["-116.530625","32.8173746"],["-116.5301407","32.8172297"],["-116.5292072","32.8169142"],["-116.5286021","32.8166834"],["-116.528096","32.8164769"],["-116.5275116","32.8162182"],["-116.5263689","32.815644"],["-116.5246871","32.8147896"],["-116.5236687","32.8143168"],["-116.5228676","32.8139944"],["-116.5220296","32.8136903"],["-116.5213606","32.8134766"],["-116.5200591","32.8131256"],["-116.5190943","32.8129334"],["-116.5152793","32.812278"],["-116.514365","32.8120996"],["-116.5132496","32.8118011"],["-116.5120437","32.8113857"],["-116.5113812","32.8111238"],["-116.5104582","32.8107104"],["-116.5099652","32.8104566"],["-116.5089808","32.8098723"],["-116.5084455","32.8095278"],["-116.5076775","32.8089676"],["-116.5071285","32.808532"],["-116.5066185","32.8080678"],["-116.5060224","32.8074996"],["-116.5054702","32.8069718"],["-116.502036","32.803814"],["-116.5005531","32.8024213"],["-116.4998187","32.8016343"],["-116.4995065","32.8012606"],["-116.4991857","32.8008518"],["-116.498885","32.800449"],["-116.4984914","32.7998907"],["-116.4980695","32.7992343"],["-116.4977557","32.7986971"],["-116.4974558","32.7981459"],["-116.4971807","32.797586"],["-116.4969571","32.797107"],["-116.4966717","32.7964205"],["-116.496423","32.7957361"],["-116.4962863","32.7953189"],["-116.496163","32.7949021"],["-116.4960277","32.794394"],["-116.4957271","32.7929791"],["-116.4939716","32.7819493"],["-116.4931337","32.7767898"],["-116.4928786","32.7756021"],["-116.4925185","32.7745066"],["-116.4922644","32.7738424"],["-116.4919916","32.7732036"],["-116.4915432","32.7723177"],["-116.4911313","32.7715937"],["-116.4904696","32.7705326"],["-116.4887935","32.7679833"],["-116.4884169","32.76725"],["-116.4877108","32.7656547"],["-116.4873813","32.7648519"],["-116.4869162","32.76356"],["-116.4821961","32.7497881"],["-116.4813737","32.7474621"],["-116.481136","32.7466324"],["-116.480904","32.7455756"],["-116.4806722","32.7442747"],["-116.480489","32.7420175"],["-116.4802619","32.7337756"],["-116.4801708","32.7313345"],["-116.4800869","32.7306916"],["-116.4799633","32.7300541"],["-116.4797876","32.7293516"],["-116.4795505","32.7286381"],["-116.4792452","32.7278496"],["-116.4789499","32.72719"],["-116.4783008","32.7259968"],["-116.47602","32.7222011"],["-116.4758107","32.7219008"],["-116.4755102","32.7215013"],["-116.4751747","32.7211066"],["-116.4748609","32.720784"],["-116.4744126","32.7203733"],["-116.474088","32.720114"],["-116.4737664","32.7198824"],["-116.4734057","32.7196371"],["-116.4730627","32.7194217"],["-116.4727182","32.7192256"],["-116.4723683","32.7190424"],["-116.4720009","32.718867"],["-116.4716406","32.7187113"],["-116.4712229","32.7185482"],["-116.4708474","32.7184157"],["-116.4704915","32.7183057"],["-116.4701229","32.7182082"],["-116.4696748","32.7181029"],["-116.4691574","32.7180025"],["-116.4687772","32.7179477"],["-116.4684364","32.7179084"],["-116.4680818","32.7178772"],["-116.4677763","32.7178569"],["-116.4674517","32.7178451"],["-116.4672053","32.7178431"],["-116.4657784","32.7179127"],["-116.4609747","32.7182154"],["-116.4600733","32.7183188"],["-116.4596508","32.7183828"],["-116.4590207","32.7185032"],["-116.4580767","32.7187154"],["-116.4570122","32.7190161"],["-116.4563783","32.7192324"],["-116.4558765","32.7194265"],["-116.4554213","32.7196158"],["-116.4548444","32.7198751"],["-116.4542589","32.7201815"],["-116.4532502","32.720755"],["-116.4524483","32.7210864"],["-116.4518262","32.7214722"],["-116.4506736","32.7221742"],["-116.4496679","32.7227121"],["-116.4488995","32.7230725"],["-116.4481826","32.7233757"],["-116.4473895","32.7236643"],["-116.446607","32.7239213"],["-116.4458712","32.7241262"],["-116.4450933","32.7243141"],["-116.4441447","32.7245014"],["-116.4405341","32.724856"],["-116.4381285","32.7251071"],["-116.4329376","32.7255758"],["-116.4265521","32.7261759"],["-116.4234919","32.7264519"],["-116.4221195","32.7265467"],["-116.419969","32.7266034"],["-116.4178576","32.7265175"],["-116.4166417","32.7264269"],["-116.415491","32.7263101"],["-116.4133861","32.7259866"],["-116.4117864","32.7256222"],["-116.4102143","32.7252244"],["-116.4035366","32.7231652"],["-116.394429","32.7202319"],["-116.3911732","32.7191474"],["-116.3904879","32.7187772"],["-116.3898199","32.7184045"],["-116.38854","32.7176179"],["-116.3873212","32.7166814"],["-116.3846806","32.7144713"],["-116.3827927","32.7128766"],["-116.3821268","32.7123493"],["-116.3799727","32.7109881"],["-116.3792544","32.7105899"],["-116.3774526","32.709651"],["-116.3758765","32.7090316"],["-116.3732471","32.708224"],["-116.3630196","32.7056505"],["-116.3613957","32.7052778"],["-116.3595958","32.7049872"],["-116.3284283","32.70085"],["-116.3240719","32.7002122"],["-116.3232754","32.7000333"],["-116.3226392","32.6998604"],["-116.3216917","32.6995537"],["-116.3204962","32.6990738"],["-116.3195265","32.6986034"],["-116.3187417","32.6981609"],["-116.317924","32.6976285"],["-116.317192","32.6970877"],["-116.3153186","32.6955847"],["-116.2980092","32.6817231"],["-116.2957525","32.6799213"],["-116.294546","32.6787577"],["-116.2941066","32.6783019"],["-116.2931854","32.6772268"],["-116.2929501","32.6769717"],["-116.2927513","32.6767999"],["-116.292534","32.6766478"],["-116.2923019","32.6765126"],["-116.2920271","32.6763893"],["-116.2917797","32.6762969"],["-116.2915007","32.6762153"],["-116.2912358","32.6761679"],["-116.2910055","32.6760893"],["-116.290846","32.6752248"],["-116.2903628","32.6724396"],["-116.2901969","32.6713649"],["-116.2901017","32.6701798"],["-116.2900944","32.6695798"],["-116.2900735","32.6691448"],["-116.2895952","32.6690436"],["-116.2891574","32.6689301"],["-116.2873762","32.6683676"],["-116.2868455","32.6681714"],["-116.2866108","32.6680573"],["-116.2861588","32.6677922"],["-116.285208","32.6671524"],["-116.2846668","32.6668311"],["-116.2838683","32.6664375"],["-116.283265","32.6661952"],["-116.2825972","32.6659695"],["-116.2818956","32.6657884"],["-116.2811386","32.6656477"],["-116.2788626","32.6653986"],["-116.2783201","32.6653107"],["-116.2778348","32.6651958"],["-116.2771308","32.6649497"],["-116.2720534","32.6630898"],["-116.2716023","32.6629352"],["-116.2712106","32.6628271"],["-116.2707244","32.662743"],["-116.2702205","32.6627081"],["-116.269854","32.6627141"],["-116.2692818","32.6627811"],["-116.2689411","32.6628527"],["-116.2685474","32.662969"],["-116.2650619","32.6641214"],["-116.2637326","32.6645369"],["-116.2633046","32.6645959"],["-116.2630864","32.6645972"],["-116.2626144","32.6645448"],["-116.2624025","32.6644897"],["-116.2621404","32.6644032"],["-116.2617548","32.6642598"],["-116.2613215","32.6640912"],["-116.2609339","32.6639228"],["-116.2605811","32.6637341"],["-116.2600153","32.6633632"],["-116.2583647","32.6622617"],["-116.2579181","32.6619905"],["-116.2575581","32.661803"],["-116.2572113","32.6616529"],["-116.2566864","32.6614674"],["-116.2558899","32.661278"],["-116.2537139","32.6608164"],["-116.2524795","32.6605351"],["-116.2520629","32.6604015"],["-116.2516576","32.6602415"],["-116.2511569","32.6600036"],["-116.2508821","32.6598439"],["-116.2501352","32.6593168"],["-116.2495288","32.6587319"],["-116.2461889","32.654431"],["-116.2451971","32.6530673"],["-116.2447344","32.6523055"],["-116.2445901","32.6517703"],["-116.2444044","32.6512697"],["-116.2439859","32.6505799"],["-116.2437504","32.6502968"],["-116.2428732","32.6492975"],["-116.2423738","32.6487382"],["-116.2419348","32.6483411"],["-116.2416296","32.6481413"],["-116.2406719","32.6475792"],["-116.2387136","32.6464617"],["-116.2367483","32.6453582"],["-116.2341154","32.6439384"],["-116.2337227","32.6437539"],["-116.2331128","32.643521"],["-116.2323904","32.6432908"],["-116.2318307","32.6430669"],["-116.2315468","32.6429181"],["-116.2312928","32.642771"],["-116.2306659","32.6423238"],["-116.2302617","32.6419324"],["-116.2299203","32.6415194"],["-116.2293107","32.6406689"],["-116.2286758","32.6397748"],["-116.2283385","32.6392362"],["-116.2278549","32.6383195"],["-116.2265387","32.6356193"],["-116.2250089","32.6325253"],["-116.2241938","32.6308633"],["-116.2214831","32.6252611"],["-116.2212033","32.6247661"],["-116.2209845","32.6244679"],["-116.2206285","32.6240645"],["-116.2201725","32.6236477"],["-116.2189578","32.6227948"],["-116.2186045","32.6225133"],["-116.2183715","32.6222937"],["-116.2180017","32.6218409"],["-116.2169342","32.6204654"],["-116.2160349","32.6192904"],["-116.2152871","32.6184009"],["-116.2133568","32.6165528"],["-116.2124182","32.615707"],["-116.2121007","32.6154536"],["-116.2118797","32.6152967"],["-116.2115979","32.6151202"],["-116.2111297","32.6148703"],["-116.2096198","32.6141342"],["-116.2092167","32.6139657"],["-116.2081367","32.6136263"],["-116.2045778","32.612606"],["-116.2036304","32.6123836"],["-116.2026636","32.6122884"],["-116.2008408","32.6121376"],["-116.1997276","32.6120556"],["-116.1994626","32.6120803"],["-116.1991394","32.6121228"],["-116.1989148","32.6121705"],["-116.1986921","32.6122307"],["-116.1983792","32.6123465"],["-116.1981136","32.6124645"],["-116.1978109","32.6126544"],["-116.1938181","32.6153064"],["-116.1930065","32.6157706"],["-116.1924931","32.6160543"],["-116.1902503","32.6172928"],["-116.1899185","32.6174433"],["-116.1896955","32.6175198"],["-116.1894793","32.6175873"],["-116.1891174","32.6176562"],["-116.1888672","32.617687"],["-116.1884243","32.6176974"],["-116.1675533","32.6175863"],["-116.166634","32.6176239"],["-116.1662602","32.617674"],["-116.1659559","32.6177233"],["-116.1653717","32.6178487"],["-116.1645352","32.6181205"],["-116.1636096","32.6185279"],["-116.1503548","32.6247701"],["-116.1498093","32.6250263"],["-116.1494016","32.6251998"],["-116.1492175","32.6252668"],["-116.1490176","32.6253328"],["-116.1488106","32.6253921"],["-116.1484423","32.6254819"],["-116.1482728","32.625516"],["-116.1480801","32.6255428"],["-116.1478832","32.6255635"],["-116.1476809","32.6255751"],["-116.1474783","32.6255808"],["-116.1472848","32.6255819"],["-116.1456232","32.6255363"],["-116.1423405","32.6253923"],["-116.1421054","32.6253758"],["-116.1419381","32.6253592"],["-116.1417813","32.6253395"],["-116.1416614","32.6253213"],["-116.1415079","32.6252928"],["-116.1413483","32.6252561"],["-116.1411728","32.6252036"],["-116.1409263","32.6251121"],["-116.1407183","32.6250302"],["-116.1404849","32.6249317"],["-116.1397375","32.6245796"],["-116.1394347","32.6244637"],["-116.1392945","32.6244246"],["-116.1391356","32.6243873"],["-116.1389179","32.6243506"],["-116.1386814","32.6243211"],["-116.1384882","32.624302"],["-116.1382752","32.6242875"],["-116.1380646","32.624281"],["-116.1378196","32.624284"],["-116.137564","32.624304"],["-116.137278","32.6243406"],["-116.1370314","32.6243894"],["-116.1368151","32.6244441"],["-116.1366051","32.6245082"],["-116.1364099","32.6245793"],["-116.1361936","32.6246744"],["-116.136016","32.6247673"],["-116.1355335","32.6250502"],["-116.1306512","32.6280204"],["-116.1199497","32.6345207"],["-116.1174604","32.6360191"],["-116.1168651","32.6362632"],["-116.1162404","32.6364125"],["-116.1156201","32.6365028"],["-116.1150943","32.6365504"],["-116.1136032","32.6366767"],["-116.1132061","32.636747"],["-116.112628","32.6369017"],["-116.1122195","32.6370522"],["-116.1098738","32.6380384"],["-116.109378","32.6382623"],["-116.1090816","32.6384231"],["-116.1086365","32.6386969"],["-116.1083441","32.6389186"],["-116.1080992","32.6391226"],["-116.1078856","32.6393126"],["-116.107653","32.6395371"],["-116.1074424","32.6397603"],["-116.1072642","32.6399619"],["-116.107095","32.6401746"],["-116.1069267","32.6404034"],["-116.1067755","32.6406442"],["-116.1066461","32.6408874"],["-116.1064657","32.6412829"],["-116.1063306","32.6416447"],["-116.1062331","32.6419894"],["-116.1061443","32.6423625"],["-116.1060571","32.6427503"],["-116.1059034","32.6435362"],["-116.1058384","32.6438349"],["-116.1057699","32.6441081"],["-116.1055668","32.6446457"],["-116.1049906","32.6458437"],["-116.1044382","32.6467946"],["-116.1040231","32.6474725"],["-116.1037824","32.6478367"],["-116.1034788","32.6482426"],["-116.1021946","32.6498205"],["-116.1017079","32.6504349"],["-116.1014762","32.6507058"],["-116.1012051","32.6509781"],["-116.0998845","32.6524406"],["-116.098583","32.6539752"],["-116.0983046","32.6543476"],["-116.0980872","32.6546547"],["-116.0978635","32.6549819"],["-116.0976104","32.6553227"],["-116.0973676","32.6556377"],["-116.097211","32.6558869"],["-116.0971203","32.6561056"],["-116.0970617","32.6562941"],["-116.0970154","32.6564677"],["-116.0969861","32.6566077"],["-116.0969577","32.6568066"],["-116.0969477","32.6569331"],["-116.0969423","32.6571084"],["-116.0969494","32.6573019"],["-116.0969713","32.6575472"],["-116.0970118","32.6578078"],["-116.0970724","32.6580534"],["-116.0971502","32.6582698"],["-116.0972969","32.6585709"],["-116.0974494","32.6588357"],["-116.0976346","32.6590802"],["-116.0977789","32.6592532"],["-116.0979116","32.6593847"],["-116.0980506","32.6595014"],["-116.0982258","32.6596454"],["-116.0984542","32.6598269"],["-116.098754","32.6600047"],["-116.1002859","32.6606961"],["-116.1013282","32.6611399"],["-116.1031875","32.6619185"],["-116.1036152","32.662099"],["-116.1038843","32.6622227"],["-116.1041647","32.6624001"],["-116.1044209","32.662583"],["-116.1046249","32.6627502"],["-116.1048459","32.6629442"],["-116.1050821","32.6631871"],["-116.105264","32.6634362"],["-116.1054216","32.6636839"],["-116.1055686","32.6639629"],["-116.1056837","32.6642969"],["-116.1057789","32.6647597"],["-116.1060754","32.6669268"],["-116.1061042","32.6673413"],["-116.1060808","32.6678706"],["-116.1059901","32.6683418"],["-116.1058463","32.6688345"],["-116.1057223","32.669296"],["-116.105606","32.6697412"],["-116.1055479","32.6700904"],["-116.1055475","32.6704664"],["-116.1055696","32.6707814"],["-116.1056337","32.6710658"],["-116.1057212","32.6713503"],["-116.1059183","32.6717463"],["-116.1066472","32.6730191"],["-116.1068077","32.6733784"],["-116.1069182","32.6736872"],["-116.1069928","32.6740483"],["-116.1070178","32.6743995"],["-116.1069938","32.6747339"],["-116.1069495","32.6750501"],["-116.106845","32.6753867"],["-116.1066696","32.6757993"],["-116.1064618","32.6761499"],["-116.1061949","32.676476"],["-116.1058644","32.6767846"],["-116.1054852","32.677056"],["-116.1049959","32.6773317"],["-116.1045587","32.677508"],["-116.1040116","32.6776783"],["-116.1034705","32.6777622"],["-116.1029613","32.677763"],["-116.1024774","32.6777237"],["-116.1020596","32.6776364"],["-116.1017609","32.6775648"],["-116.101523","32.6774834"],["-116.1012444","32.677371"],["-116.1009579","32.677235"],["-116.1007063","32.6770871"],["-116.0974455","32.6748752"],["-116.0960995","32.6739616"],["-116.0951493","32.6733584"],["-116.0948316","32.6731961"],["-116.0944708","32.6730292"],["-116.0940821","32.6728718"],["-116.0936999","32.6727349"],["-116.09339","32.6726454"],["-116.0929559","32.6725652"],["-116.0925781","32.6725079"],["-116.092219","32.6724685"],["-116.0893209","32.6722611"],["-116.0883363","32.6722291"],["-116.0876878","32.6722569"],["-116.0872608","32.6722944"],["-116.0868895","32.6723418"],["-116.0865314","32.6723978"],["-116.0862287","32.6724547"],["-116.0857385","32.6725555"],["-116.0819225","32.6733341"],["-116.0814984","32.6734106"],["-116.0811839","32.6734541"],["-116.0806897","32.6735115"],["-116.0800434","32.6735285"],["-116.0786318","32.6734909"],["-116.0780523","32.6734673"],["-116.0777879","32.6734693"],["-116.0775933","32.6734805"],["-116.0774031","32.6734993"],["-116.0771579","32.6735337"],["-116.0767202","32.6736336"],["-116.076382","32.6737412"],["-116.0762062","32.6738142"],["-116.0760517","32.6738874"],["-116.0757274","32.6740528"],["-116.0755858","32.6741418"],["-116.0754633","32.6742333"],["-116.075346","32.6743222"],["-116.0751015","32.6745282"],["-116.0749666","32.674659"],["-116.0748439","32.6747976"],["-116.0747338","32.6749326"],["-116.0745243","32.6752581"],["-116.0742756","32.6756276"],["-116.0739872","32.6760111"],["-116.0737279","32.676341"],["-116.0734602","32.6766205"],["-116.0729045","32.6770865"],["-116.0725803","32.6773437"],["-116.0722949","32.6775624"],["-116.0720988","32.6777014"],["-116.0718872","32.6778354"],["-116.0713514","32.6781389"],["-116.0710696","32.6782932"],["-116.0707702","32.6784475"],["-116.0705558","32.6785729"],["-116.0702825","32.6787831"],["-116.0699611","32.6790708"],["-116.0688734","32.6802939"],["-116.0663796","32.6832001"],["-116.0660672","32.6837187"],["-116.0659601","32.6839837"],["-116.0658687","32.6842907"],["-116.0657995","32.6846175"],["-116.0657267","32.6849726"],["-116.0655933","32.6854871"],["-116.0654324","32.6860866"],["-116.065137","32.6873109"],["-116.0650467","32.6876498"],["-116.0649532","32.6879192"],["-116.0648444","32.6882064"],["-116.0646516","32.6886046"],["-116.0643914","32.689085"],["-116.0640524","32.6896907"],["-116.0638851","32.6900327"],["-116.063772","32.6903168"],["-116.0637059","32.6905641"],["-116.0636642","32.6908169"],["-116.0636491","32.6910448"],["-116.063656","32.6912757"],["-116.0636772","32.6915538"],["-116.0637811","32.6922727"],["-116.0638325","32.6926097"],["-116.0638752","32.6928803"],["-116.0638973","32.6930652"],["-116.0638948","32.6932022"],["-116.0638671","32.6933853"],["-116.0637975","32.6937219"],["-116.0637213","32.6939795"],["-116.0636359","32.6942049"],["-116.0635102","32.6944779"],["-116.063352","32.6947263"],["-116.0631368","32.6950199"],["-116.0626549","32.6956152"],["-116.0605984","32.6981847"],["-116.0603156","32.6984977"],["-116.0601271","32.698677"],["-116.0599118","32.6988562"],["-116.0594501","32.6991459"],["-116.0589724","32.6993834"],["-116.0583009","32.6996751"],["-116.0576229","32.6999617"],["-116.0570406","32.7001786"],["-116.0565793","32.7004023"],["-116.0562782","32.7005864"],["-116.0560271","32.7008008"],["-116.0557553","32.7010575"],["-116.0555162","32.7013447"],["-116.055241","32.7017839"],["-116.0545037","32.7031262"],["-116.0539018","32.7042574"],["-116.0538035","32.7044807"],["-116.0536799","32.7048477"],["-116.0535854","32.7052064"],["-116.0535175","32.7055021"],["-116.0534579","32.7059143"],["-116.0534189","32.7062289"],["-116.0533377","32.7068577"],["-116.0532996","32.7071931"],["-116.0532889","32.7074118"],["-116.0532995","32.7076255"],["-116.0533341","32.7078186"],["-116.0533833","32.7080306"],["-116.0536634","32.7087698"],["-116.0541322","32.7100575"],["-116.05421","32.710292"],["-116.0542565","32.7104953"],["-116.054281","32.7106857"],["-116.0542935","32.7108445"],["-116.0542796","32.7110238"],["-116.0542535","32.7111815"],["-116.0542054","32.7113836"],["-116.0541325","32.7116247"],["-116.0540496","32.7118514"],["-116.0539447","32.7120873"],["-116.0537752","32.7123866"],["-116.0532339","32.713283"],["-116.0521055","32.7152386"],["-116.0516397","32.7160267"],["-116.0514515","32.7163094"],["-116.051265","32.7165477"],["-116.0503719","32.7174297"],["-116.0487435","32.718936"],["-116.0479682","32.7196258"],["-116.0475957","32.7198692"],["-116.0467361","32.7202762"],["-116.0463572","32.7204112"],["-116.0431289","32.7212257"],["-116.0423955","32.7214596"],["-116.0419389","32.7216627"],["-116.0415472","32.7218561"],["-116.0411101","32.7221307"],["-116.0402402","32.7228035"],["-116.0392725","32.723556"],["-116.0388414","32.7238691"],["-116.0381726","32.7242549"],["-116.0378116","32.7244231"],["-116.0374087","32.7245814"],["-116.0370162","32.7247069"],["-116.036562","32.7248243"],["-116.0349762","32.7250986"],["-116.0265081","32.7264828"],["-116.0205755","32.7273241"],["-116.0193979","32.7276141"],["-116.01893","32.7278026"],["-116.0181809","32.7281731"],["-116.0163611","32.729094"],["-116.015674","32.72942"],["-116.0149868","32.7297251"],["-116.0143133","32.7299816"],["-116.0136009","32.7302094"],["-116.0128447","32.7304248"],["-116.0118055","32.7306699"],["-116.008406","32.7313114"],["-115.9950357","32.7339009"],["-115.9752562","32.7384254"],["-115.9701724","32.7398562"],["-115.9641149","32.7420941"],["-115.9632535","32.7423711"],["-115.9624373","32.7425993"],["-115.9616227","32.7428102"],["-115.9598207","32.7431386"],["-115.8437823","32.7600947"],["-115.8325787","32.7622125"],["-115.7866773","32.7715011"],["-115.780973","32.7726306"],["-115.7801622","32.7727553"],["-115.7792664","32.7728651"],["-115.7783678","32.7729479"],["-115.7764167","32.7730316"],["-115.7495488","32.7730647"],["-115.7466396","32.7731146"],["-115.7455354","32.773286"],["-115.7436183","32.7736455"],["-115.7425683","32.7738174"],["-115.7419456","32.7738864"],["-115.7394548","32.773927"],["-115.5012151","32.7736563"],["-115.4965358","32.7736726"],["-115.4906494","32.7736474"],["-115.4838437","32.7735549"],["-115.2882971","32.7731488"],["-115.2871772","32.7731056"],["-115.2862783","32.7730043"],["-115.2852756","32.7728217"],["-115.2844773","32.7726465"],["-115.2829696","32.7721746"],["-115.2821855","32.7718899"],["-115.2813071","32.7715106"],["-115.2804597","32.7710986"],["-115.2790376","32.7701615"],["-115.275381","32.7675562"],["-115.2736698","32.766378"],["-115.2728121","32.7658917"],["-115.2718874","32.7654341"],["-115.2708856","32.7650127"],["-115.2698606","32.7646612"],["-115.2691593","32.7644527"],["-115.2684133","32.7642581"],["-115.2655473","32.7637147"],["-115.2535203","32.761546"],["-115.2509035","32.7608394"],["-115.2395957","32.7574037"],["-115.0829613","32.7083916"],["-115.0819834","32.7081332"],["-115.0810671","32.7079474"],["-115.0800675","32.7078126"],["-115.078963","32.7077431"],["-115.0713578","32.7077175"],["-115.0042854","32.7077777"],["-114.9440828","32.7084913"],["-114.9414564","32.7086253"],["-114.9400823","32.7087982"],["-114.9353986","32.7096099"],["-114.9321126","32.7102024"],["-114.9275655","32.7110557"],["-114.9260719","32.711535"],["-114.9245683","32.7121486"],["-114.9232929","32.7128156"],["-114.9220256","32.7136152"],["-114.9207462","32.7146294"],["-114.9190947","32.7163597"],["-114.9107461","32.7269637"],["-114.9100704","32.7277702"],["-114.9094061","32.7283677"],["-114.9087187","32.7289183"],["-114.908036","32.7293673"],["-114.9058092","32.7304334"],["-114.8993768","32.7332921"],["-114.8961433","32.7347016"],["-114.8933774","32.7357303"],["-114.8892193","32.7372381"],["-114.8884625","32.7375534"],["-114.8878179","32.737883"],["-114.8871941","32.7382811"],["-114.8781988","32.7451779"],["-114.8772476","32.7458432"],["-114.87643","32.7463154"],["-114.8739306","32.7475511"],["-114.8548665","32.7569289"],["-114.8541151","32.7572182"],["-114.8532842","32.7574628"],["-114.845741","32.7594256"],["-114.8429813","32.7601144"],["-114.8415812","32.7603374"],["-114.8406237","32.7604545"],["-114.8396848","32.7604842"],["-114.8387362","32.7604766"],["-114.8377834","32.7604054"],["-114.835767","32.7601555"],["-114.7590313","32.7470246"],["-114.7580595","32.746878"],["-114.7565881","32.7467184"],["-114.7558048","32.7466904"],["-114.7450999","32.7467795"],["-114.7408653","32.7467906"],["-114.7401914","32.7467499"],["-114.7395635","32.746681"],["-114.7390504","32.7466135"],["-114.7384249","32.7465187"],["-114.7378355","32.746404"],["-114.737246","32.7462712"],["-114.7359282","32.7459013"],["-114.7328843","32.7450117"],["-114.732064","32.744815"],["-114.7315515","32.7447179"],["-114.7308806","32.7446087"],["-114.7175748","32.7430467"],["-114.7162123","32.7429176"],["-114.7152423","32.7428584"],["-114.7146081","32.7428513"],["-114.7139288","32.7428719"],["-114.7132953","32.7429184"],["-114.7126475","32.7429932"],["-114.7121031","32.743082"],["-114.7115791","32.7431774"],["-114.7108619","32.7433483"],["-114.7099099","32.7436358"],["-114.7093289","32.7438452"],["-114.702976","32.7465134"],["-114.7023743","32.7467138"],["-114.7016312","32.7469177"],["-114.7008522","32.7470649"],["-114.7000965","32.7471584"],["-114.6995746","32.7471899"],["-114.6991097","32.7471963"],["-114.6987068","32.7471914"],["-114.6977789","32.7471107"],["-114.6972685","32.7470405"],["-114.6966773","32.74693"],["-114.6962063","32.7468143"],["-114.6958464","32.7467086"],["-114.6954693","32.746586"],["-114.6951089","32.7464527"],["-114.6946986","32.7462849"],["-114.6942448","32.7460778"],["-114.6902897","32.7440137"],["-114.6872644","32.7424434"],["-114.6864792","32.7420925"],["-114.6857508","32.7418299"],["-114.6850981","32.7416321"],["-114.6845137","32.7414761"],["-114.6838609","32.741339"],["-114.6615651","32.7372777"],["-114.660413","32.7371888"],["-114.6589443","32.7371311"],["-114.6557937","32.737115"],["-114.65291","32.7371126"],["-114.6509175","32.7370763"],["-114.6501401","32.7370021"],["-114.6495527","32.7369082"],["-114.6489236","32.7367909"],["-114.6482897","32.736641"],["-114.645789","32.7359451"],["-114.6432646","32.7352478"],["-114.6412947","32.7347451"],["-114.6402792","32.7345272"],["-114.6288994","32.7326376"],["-114.627442","32.7323755"],["-114.626719","32.7322425"],["-114.6260094","32.7320844"],["-114.6251403","32.7318579"],["-114.6243948","32.7316068"],["-114.623816","32.7313877"],["-114.6233344","32.7311742"],["-114.6224226","32.7307437"],["-114.6208844","32.7300239"],["-114.6187925","32.7290887"],["-114.6184656","32.7289349"],["-114.6182759","32.7288307"],["-114.6180764","32.7287162"],["-114.6177859","32.7285263"],["-114.6175517","32.7283534"],["-114.6173626","32.7282025"],["-114.6172822","32.7281339"],["-114.6171761","32.7280396"],["-114.6170725","32.7279409"],["-114.6169643","32.7278322"],["-114.6168762","32.7277364"],["-114.6167496","32.7275908"],["-114.6166204","32.7274325"],["-114.6164601","32.7272201"],["-114.6162544","32.7268862"],["-114.6161639","32.726731"],["-114.6160307","32.7264577"],["-114.6155406","32.7254592"],["-114.6154366","32.7252679"],["-114.6153643","32.7251418"],["-114.6153058","32.7250461"],["-114.614893","32.7244034"],["-114.6145702","32.7239064"],["-114.61436","32.7235519"],["-114.6140588","32.7230063"],["-114.613848","32.7225858"],["-114.6136517","32.7221641"],["-114.6134613","32.7217216"],["-114.6133073","32.721326"],["-114.6131495","32.7208418"],["-114.6128662","32.7198897"],["-114.6126972","32.719113"],["-114.6106635","32.7063186"],["-114.610214","32.7036645"],["-114.609836","32.7019538"],["-114.609498","32.7010236"],["-114.6091037","32.7001577"],["-114.6085097","32.6991551"],["-114.6074577","32.6975316"],["-114.6067326","32.6966524"],["-114.6059418","32.6958147"],["-114.6051738","32.6951125"],["-114.6045382","32.6946158"],["-114.6039078","32.6942144"],["-114.6031886","32.6937849"],["-114.6023925","32.6933579"],["-114.6013858","32.6928887"],["-114.6005193","32.692572"],["-114.5996189","32.6923015"],["-114.5973138","32.6918316"],["-114.5886891","32.6902465"],["-114.5846628","32.6895683"],["-114.5726137","32.6871582"],["-114.5696152","32.6864011"],["-114.5646798","32.6849334"],["-114.5624276","32.6841302"],["-114.5478461","32.6785045"],["-114.5444663","32.6772363"],["-114.5435052","32.6769608"],["-114.5423258","32.6766713"],["-114.5411546","32.6764328"],["-114.5400002","32.6762499"],["-114.5390896","32.6761268"],["-114.5374594","32.6759978"],["-114.5358805","32.6759543"],["-114.5349258","32.6759683"],["-114.5338276","32.6760265"],["-114.5317692","32.6762404"],["-114.5116017","32.6786622"],["-114.5101178","32.6787664"],["-114.5090879","32.6787719"],["-114.5084499","32.6787445"],["-114.5069801","32.6785728"],["-114.5060329","32.678388"],["-114.5051454","32.6781728"],["-114.5043346","32.6778895"],["-114.4872872","32.6723346"],["-114.4836099","32.6711528"],["-114.4824859","32.6708601"],["-114.4812508","32.670625"],["-114.4803853","32.6705033"],["-114.4793447","32.6703928"],["-114.4778646","32.6703222"],["-114.4161386","32.670408"],["-114.4135884","32.6703269"],["-114.4104724","32.6700517"],["-114.4070545","32.6694845"],["-114.3943575","32.6664296"],["-114.3930601","32.6660334"],["-114.3920301","32.665654"],["-114.3899463","32.6648651"],["-114.3886082","32.664414"],["-114.387224","32.6639926"],["-114.3802598","32.6618937"],["-114.3784259","32.6613998"],["-114.3778493","32.6612679"],["-114.3772044","32.6611508"],["-114.3765389","32.6610492"],["-114.3753251","32.6609007"],["-114.3710799","32.6604384"],["-114.3663836","32.6597076"],["-114.3656198","32.659651"],["-114.3642325","32.6596192"],["-114.3621397","32.6596494"],["-114.3578046","32.6601138"],["-114.3553975","32.6604016"],["-114.3546124","32.6604592"],["-114.3539229","32.6604866"],["-114.3534547","32.6604775"],["-114.3529544","32.6604561"],["-114.3524984","32.6604203"],["-114.3520896","32.6603744"],["-114.3514576","32.6602845"],["-114.3510521","32.6602075"],["-114.3504728","32.6600785"],["-114.3499041","32.6599279"],["-114.3495031","32.659804"],["-114.3488512","32.659576"],["-114.3484758","32.659432"],["-114.347994","32.6592308"],["-114.3468227","32.658703"],["-114.3461249","32.6583997"],["-114.3454927","32.6581803"],["-114.3451856","32.6580988"],["-114.3448384","32.6580242"],["-114.3445158","32.6579725"],["-114.3441448","32.6579231"],["-114.3437526","32.6578925"],["-114.3426489","32.6578919"],["-114.3364555","32.6586905"],["-114.3360973","32.6587533"],["-114.3358283","32.6588191"],["-114.3355601","32.6588924"],["-114.3352877","32.6589777"],["-114.3349125","32.6591213"],["-114.3345841","32.6592756"],["-114.3340803","32.6595316"],["-114.3331316","32.6599983"],["-114.3328352","32.6601186"],["-114.3322751","32.6603003"],["-114.3316599","32.6604444"],["-114.3313444","32.6604967"],["-114.3307155","32.6605557"],["-114.3303459","32.6605692"],["-114.3296021","32.6605492"],["-114.3257253","32.6604015"],["-114.3250086","32.6603808"],["-114.3245986","32.6603894"],["-114.3242582","32.6604095"],["-114.3239131","32.6604462"],["-114.3235504","32.660503"],["-114.3232359","32.6605797"],["-114.3229503","32.6606629"],["-114.3226308","32.6607883"],["-114.3224146","32.6608946"],["-114.3222037","32.6610182"],["-114.3219861","32.6611708"],["-114.3217619","32.6613556"],["-114.3215847","32.6615412"],["-114.3213737","32.6618094"],["-114.3212445","32.6620282"],["-114.3211432","32.6622369"],["-114.3210723","32.662446"],["-114.3210162","32.6626893"],["-114.3209858","32.6629453"],["-114.3209805","32.6631955"],["-114.3210088","32.6634814"],["-114.3211528","32.6643158"],["-114.3211706","32.6645969"],["-114.3211544","32.6648738"],["-114.3211074","32.6651237"],["-114.321038","32.6653618"],["-114.3209282","32.6656347"],["-114.3208251","32.6658205"],["-114.3206627","32.6660342"],["-114.320509","32.6662122"],["-114.3203422","32.6663848"],["-114.3201745","32.6665272"],["-114.3200114","32.6666532"],["-114.3198126","32.6667727"],["-114.3196536","32.6668568"],["-114.3194641","32.6669493"],["-114.3191438","32.6670694"],["-114.3188786","32.667144"],["-114.3185625","32.6672212"],["-114.3182606","32.6672939"],["-114.3177151","32.6674608"],["-114.3173898","32.667605"],["-114.315687","32.6684395"],["-114.3144272","32.6690966"],["-114.3134842","32.6697313"],["-114.3115729","32.6710344"],["-114.3108021","32.6715279"],["-114.3105182","32.6716831"],["-114.3101651","32.6718567"],["-114.3098069","32.6719991"],["-114.309442","32.672123"],["-114.3090839","32.672233"],["-114.3086475","32.6723233"],["-114.3082236","32.6723881"],["-114.30788","32.6724234"],["-114.3075276","32.6724505"],["-114.307173","32.6724457"],["-114.3067964","32.672433"],["-114.3064201","32.6724017"],["-114.3059598","32.6723262"],["-114.3053113","32.6721937"],["-114.3029079","32.6716058"],["-114.3017906","32.6713375"],["-114.2227233","32.6519156"],["-114.2123274","32.6493728"],["-114.2113499","32.6491807"],["-114.2107154","32.6490711"],["-114.2096864","32.6489244"],["-114.2070684","32.6486139"],["-114.2056149","32.6485185"],["-114.2028005","32.6484505"],["-114.2011937","32.648504"],["-114.1994351","32.6486294"],["-114.197585","32.6488503"],["-114.1960624","32.6490594"],["-114.1945113","32.6493497"],["-114.1023524","32.6710895"],["-114.099083","32.6717405"],["-114.0962113","32.6722119"],["-114.0938896","32.6724937"],["-114.0913565","32.6727577"],["-114.0527698","32.6759375"],["-114.0467132","32.6765158"],["-114.0445645","32.6768071"],["-114.0437287","32.6769367"],["-114.0430542","32.677054"],["-113.9593931","32.692458"],["-113.856498","32.7080894"],["-113.8356783","32.7112412"],["-113.7630412","32.7222407"],["-113.7617977","32.722509"],["-113.7603315","32.7228783"],["-113.7588094","32.7233083"],["-113.7538709","32.7249254"],["-113.7528959","32.7251795"],["-113.7521766","32.72534"],["-113.7511947","32.7254904"],["-113.7501252","32.7256258"],["-113.7491096","32.7257079"],["-113.7478999","32.7257035"],["-113.7468179","32.7257029"],["-113.7453742","32.7256979"],["-113.7441707","32.725742"],["-113.7431423","32.7258832"],["-113.7420279","32.7260742"],["-113.7409817","32.7263566"],["-113.7391609","32.726999"],["-113.7373541","32.7279225"],["-113.7366759","32.7282028"],["-113.7352822","32.7286923"],["-113.7341056","32.7289489"],["-113.7333453","32.7290801"],["-113.7323999","32.7291874"],["-113.7171423","32.7305552"],["-113.7157171","32.7307904"],["-113.7126744","32.7313794"],["-113.7114192","32.7316961"],["-113.7058647","32.7336915"],["-113.6481451","32.7555821"],["-113.6426878","32.7576448"],["-113.616537","32.7675659"],["-113.6127388","32.7692332"],["-113.6011798","32.7736211"],["-113.5638504","32.7877808"],["-113.5603067","32.7891284"],["-113.5593637","32.7895279"],["-113.5585592","32.7899569"],["-113.5567663","32.7910245"],["-113.5541259","32.7928798"],["-113.5496851","32.7960218"],["-113.5482223","32.7970135"],["-113.546982","32.7978063"],["-113.5462483","32.7982147"],["-113.5450572","32.7988038"],["-113.5438936","32.7992887"],["-113.5011372","32.8154992"],["-113.4983561","32.8164915"],["-113.4970735","32.8168897"],["-113.4961787","32.8171342"],["-113.4949913","32.8174186"],["-113.4936953","32.817701"],["-113.4921041","32.8179875"],["-113.4454812","32.8240995"],["-113.3556915","32.8356412"],["-113.3538925","32.8358259"],["-113.3513451","32.8360103"],["-113.3419525","32.8373348"],["-113.2815219","32.8451601"],["-113.2784855","32.8457358"],["-113.2774571","32.8460177"],["-113.2739308","32.8471104"],["-113.2498957","32.8548748"],["-113.2487997","32.8551861"],["-113.2476343","32.8554482"],["-113.2465354","32.8556358"],["-113.2453237","32.8557793"],["-113.233298","32.8564088"],["-113.2063797","32.8589757"],["-113.2014609","32.8593597"],["-113.1704035","32.862493"],["-113.1688242","32.8627439"],["-113.1675744","32.8629761"],["-113.166252","32.8632548"],["-113.0729974","32.8886274"],["-113.0721246","32.8888441"],["-113.0699463","32.8892897"],["-113.0689613","32.8894556"],["-113.0421802","32.8927832"],["-113.0411711","32.8929373"],["-113.0401128","32.8931177"],["-112.9695718","32.9097767"],["-112.9686779","32.9099607"],["-112.9675938","32.9101541"],["-112.966822","32.9102764"],["-112.8951574","32.9198657"],["-112.8941236","32.9200544"],["-112.8933019","32.9202584"],["-112.8916642","32.9207305"],["-112.8899089","32.9212221"],["-112.8887843","32.9214795"],["-112.8880694","32.9216198"],["-112.8805646","32.9226259"],["-112.8771684","32.9230831"],["-112.8457241","32.9272476"],["-112.8419743","32.9276671"],["-112.8399686","32.9277558"],["-112.8376305","32.9278426"],["-112.8362569","32.9279468"],["-112.8341418","32.9281661"],["-112.800496","32.9326004"],["-112.7979689","32.9328622"],["-112.7969228","32.9329426"],["-112.793461","32.9332804"],["-112.7921034","32.9334407"],["-112.7906093","32.9336264"],["-112.7645683","32.9381387"],["-112.7617155","32.9386408"],["-112.7584087","32.9392304"],["-112.7574614","32.9394403"],["-112.7563253","32.9397622"],["-112.7559927","32.9398258"],["-112.7556065","32.9399376"],["-112.7552082","32.9400719"],["-112.7549025","32.9401885"],["-112.7546039","32.9402937"],["-112.7543375","32.9403878"],["-112.7541505","32.9404439"],["-112.7537773","32.9405256"],["-112.7535982","32.9405503"],["-112.7533854","32.9405628"],["-112.7531594","32.9405662"],["-112.7526522","32.9405517"],["-112.7523841","32.94054"],["-112.7517416","32.9405114"],["-112.7515351","32.9405104"],["-112.7510385","32.9405355"],["-112.7505554","32.9405988"],["-112.7502659","32.940641"],["-112.7494107","32.9407957"],["-112.7418747","32.9421453"],["-112.7394378","32.9425461"],["-112.738474","32.9427155"],["-112.7371585","32.9429519"],["-112.7345448","32.9434153"],["-112.73375","32.9435553"],["-112.7313734","32.9439903"],["-112.7306126","32.9441442"],["-112.7298185","32.9443302"],["-112.7289228","32.9445845"],["-112.7245038","32.9459119"],["-112.7239465","32.9460478"],["-112.7234415","32.9461595"],["-112.7176265","32.9471923"],["-112.7146627","32.9477123"],["-112.7097001","32.9485887"],["-112.7091487","32.9486832"],["-112.7066069","32.949134"],["-112.7046902","32.9495006"],["-112.7044168","32.949554"],["-112.7031888","32.9497981"],["-112.702071","32.9500224"],["-112.7008027","32.9502758"],["-112.7006188","32.9502627"],["-112.7004365","32.9502946"],["-112.6998493","32.950426"],["-112.6994516","32.9505235"],["-112.699068","32.950636"],["-112.6986058","32.9507978"],["-112.6959644","32.9516812"],["-112.6941113","32.9522355"],["-112.6917524","32.9528069"],["-112.690924","32.9529682"],["-112.6905813","32.9530305"],["-112.6871967","32.9536051"],["-112.6868468","32.9536453"],["-112.6865783","32.9536667"],["-112.686315","32.9536733"],["-112.685946","32.9536611"],["-112.6855702","32.9536266"],["-112.6852967","32.9535771"],["-112.6852422","32.9536944"],["-112.6845046","32.9561471"],["-112.6843634","32.9565448"],["-112.6842022","32.9568235"],["-112.6839361","32.9570926"],["-112.6836672","32.9573259"],["-112.6835496","32.9574793"],["-112.6833656","32.9576311"],["-112.6819657","32.9587389"],["-112.6816242","32.959031"],["-112.6805681","32.9599971"],["-112.6791074","32.9614136"],["-112.6788594","32.9616738"],["-112.6775333","32.9631987"],["-112.6768969","32.9639927"],["-112.6759526","32.9652887"],["-112.6752792","32.9662933"],["-112.6744","32.9677756"],["-112.6738323","32.9688541"],["-112.6736004","32.9693159"],["-112.6731341","32.9702954"],["-112.6729519","32.9706809"],["-112.6725177","32.971584"],["-112.6723599","32.9718846"],["-112.6615857","32.9947956"],["-112.6591619","32.9999436"],["-112.6590416","33.000216"],["-112.6586771","33.001013"],["-112.6585759","33.0012124"],["-112.6561823","33.0062879"],["-112.65583","33.0070118"],["-112.6550242","33.008698"],["-112.6546448","33.0095136"],["-112.6541379","33.0105941"],["-112.6534333","33.0120858"],["-112.651191","33.0168962"],["-112.6505945","33.0183661"],["-112.6502816","33.0192504"],["-112.6498602","33.0207425"],["-112.6441103","33.0441408"],["-112.6439363","33.0450465"],["-112.6437647","33.0460476"],["-112.6436497","33.0470795"],["-112.6435671","33.0480468"],["-112.6435176","33.0490944"],["-112.6435179","33.0502029"],["-112.6435551","33.0512933"],["-112.6436441","33.0523975"],["-112.6450214","33.064088"],["-112.6461892","33.0739397"],["-112.6484388","33.0929727"],["-112.6489856","33.097524"],["-112.6493432","33.1007288"],["-112.6494812","33.1026581"],["-112.6496712","33.1162592"],["-112.6500476","33.1231621"],["-112.6500387","33.1380367"],["-112.6499771","33.1446245"],["-112.6499672","33.1456106"],["-112.6498697","33.1669449"],["-112.6499086","33.1676916"],["-112.650189","33.1700766"],["-112.65032","33.1716156"],["-112.6503941","33.1745301"],["-112.6504909","33.1804475"],["-112.6505491","33.1815169"],["-112.6507551","33.1827549"],["-112.651367","33.1860084"],["-112.6515216","33.1871199"],["-112.6516006","33.1883261"],["-112.6515966","33.1896237"],["-112.6515526","33.1905181"],["-112.6513817","33.1918862"],["-112.6512145","33.1927708"],["-112.650983","33.193741"],["-112.6506357","33.1948842"],["-112.6471581","33.2040621"],["-112.6468691","33.2049852"],["-112.6465461","33.2062965"],["-112.6409992","33.2335338"],["-112.6409048","33.2340039"],["-112.63975","33.2396976"],["-112.6394823","33.2408546"],["-112.6392843","33.2416137"],["-112.6388076","33.2431774"],["-112.6384557","33.2442295"],["-112.6380199","33.2455637"],["-112.6377054","33.2466829"],["-112.6373418","33.2483416"],["-112.6279938","33.2943657"],["-112.6231778","33.3163549"],["-112.6231281","33.3166158"],["-112.6230422","33.3171011"],["-112.6229893","33.3174714"],["-112.6229227","33.318115"],["-112.6228947","33.3184992"],["-112.622888","33.3189836"],["-112.6236857","33.3438177"],["-112.6237411","33.3447738"],["-112.6239745","33.3463156"],["-112.6241175","33.3472124"],["-112.624445","33.3493305"],["-112.6245861","33.3504862"],["-112.6250593","33.354481"],["-112.6251269","33.3550373"],["-112.6251683","33.3556793"],["-112.6251841","33.3566045"],["-112.6251827","33.3585424"],["-112.6251737","33.364636"],["-112.6251386","33.3655569"],["-112.6250102","33.3675723"],["-112.6249149","33.3697587"],["-112.6248649","33.3729339"],["-112.6248561","33.375149"],["-112.6249156","33.3764444"],["-112.6249684","33.3769073"],["-112.62528","33.379589"],["-112.6253432","33.3804555"],["-112.6255273","33.4069274"],["-112.6255758","33.4076445"],["-112.6256789","33.4083862"],["-112.6258191","33.409295"],["-112.6259466","33.4101576"],["-112.6260176","33.4110334"],["-112.6260832","33.4122525"],["-112.6261623","33.4199707"],["-112.6261577","33.4213228"],["-112.626118","33.421624"],["-112.6260703","33.4218881"],["-112.6260114","33.4220962"],["-112.6259404","33.4223043"],["-112.6257414","33.4227537"],["-112.6255784","33.4230256"],["-112.625271","33.423423"],["-112.6251211","33.4235461"],["-112.624839","33.4237998"],["-112.6225979","33.4256583"],["-112.6222436","33.4259278"],["-112.6220637","33.4260333"],["-112.6218436","33.4261588"],["-112.6215695","33.4263034"],["-112.6212646","33.4264177"],["-112.6211052","33.4264724"],["-112.6209085","33.4265309"],["-112.6204384","33.4266495"],["-112.6202872","33.4266794"],["-112.6201247","33.4267059"],["-112.6195398","33.426753"],["-112.6173259","33.4267955"],["-112.6164388","33.426847"],["-112.6114646","33.4274044"],["-112.6094229","33.4277809"],["-112.6056288","33.4287271"],["-112.5912949","33.4333238"],["-112.5911311","33.4333767"],["-112.5907479","33.4334995"],["-112.5905955","33.4335481"],["-112.5905427","33.433565"],["-112.5892836","33.4339756"],["-112.5053045","33.4610035"],["-112.5043392","33.4612743"],["-112.5043174","33.4612806"],["-112.5041263","33.4613278"],["-112.5029256","33.4615618"],["-112.5019773","33.4617407"],["-112.5003285","33.4619824"],["-112.4987286","33.462168"],["-112.4981208","33.4622296"],["-112.4977112","33.4622603"],["-112.4972021","33.4622918"],["-112.4960951","33.4623482"],["-112.4664637","33.4623189"],["-112.4657465","33.4623034"],["-112.4643068","33.4622235"],["-112.4629101","33.46206"],["-112.4600727","33.4616465"],["-112.4590439","33.4615203"],["-112.4584076","33.4614646"],["-112.4572387","33.4614044"],["-112.4311302","33.4614405"],["-112.4207959","33.4618097"],["-112.416832","33.4618535"],["-112.4144473","33.4617803"],["-112.4117954","33.4616559"],["-112.4104982","33.4615637"],["-112.4102627","33.4615464"],["-112.4055001","33.4612759"],["-112.3960295","33.4611856"],["-112.381585","33.4611081"],["-112.3811614","33.4610985"],["-112.3803561","33.4610564"],["-112.3791668","33.4609392"],["-112.3783192","33.4608163"],["-112.3774396","33.4606509"],["-112.3763631","33.4604017"],["-112.3753882","33.4601289"],["-112.3706792","33.4587016"],["-112.3698009","33.4584677"],["-112.3693283","33.4583577"],["-112.3685598","33.4582009"],["-112.3681382","33.458129"],["-112.3676302","33.4580519"],["-112.3666886","33.4579407"],["-112.3653858","33.4578461"],["-112.3479565","33.4577341"],["-112.3453759","33.4577154"],["-112.3182454","33.4575478"],["-112.3158962","33.4576573"],["-112.3149435","33.4577612"],["-112.3139479","33.457897"],["-112.3131977","33.4580249"],["-112.2966095","33.460914"],["-112.2898188","33.4611614"],["-112.2888081","33.4611806"],["-112.2713028","33.4614829"],["-112.2695141","33.4615433"],["-112.2603567","33.4619872"],["-112.258312","33.4620744"],["-112.2528409","33.4621404"],["-112.2396733","33.4620902"],["-112.2383122","33.4621021"],["-112.2381142","33.4621058"],["-112.2266723","33.4622487"],["-112.220695","33.4623994"],["-112.2204901","33.4624041"],["-112.1959878","33.4626254"],["-112.1926592","33.4626975"],["-112.189675","33.4627159"],["-112.1865107","33.4627178"],["-112.1828664","33.4626542"],["-112.1668205","33.4625343"],["-112.1511243","33.4617255"],["-112.1460239","33.4615897"],["-112.1451883","33.4616019"],["-112.1436287","33.461642"],["-112.1431642","33.461653"],["-112.1431162","33.461654"],["-112.1429872","33.461657"],["-112.1423241","33.4616941"],["-112.1407335","33.4618"],["-112.1391967","33.4620327"],["-112.1371625","33.4623926"],["-112.1365276","33.4624996"],["-112.1360005","33.4625731"],["-112.1355547","33.4626199"],["-112.1351129","33.4626559"],["-112.1348074","33.4626758"],["-112.1346911","33.4626814"],["-112.1341585","33.4627032"],["-112.1337444","33.4627045"],["-112.1326525","33.4626569"],["-112.1317268","33.4625615"],["-112.1299396","33.4622921"],["-112.1293479","33.4621961"],["-112.1289196","33.4621191"],["-112.1281668","33.462025"],["-112.1271482","33.4619151"],["-112.1262317","33.4618319"],["-112.1237472","33.4617984"],["-112.1201605","33.4617481"],["-112.115221","33.4616923"],["-112.1121123","33.4616697"],["-112.095702","33.4615622"],["-112.0933514","33.4615687"],["-112.0924662","33.4615614"],["-112.0917008","33.4615357"],["-112.0901667","33.4614299"],["-112.0890322","33.4613635"],["-112.0853397","33.4610455"],["-112.0841971","33.4609644"],["-112.0836042","33.460946"],["-112.0829815","33.4609552"],["-112.0817662","33.4610413"],["-112.0815596","33.4610958"],["-112.0801431","33.4613355"],["-112.079895","33.4613742"],["-112.079916","33.4611401"],["-112.0799267","33.4610659"],["-112.079943","33.4609884"],["-112.0799895","33.4608172"],["-112.0801136","33.460416"],["-112.0801733","33.4601947"],["-112.0801943","33.46006"],["-112.0802072","33.4599299"],["-112.0802097","33.4598505"],["-112.0802101","33.4597589"],["-112.0801974","33.4587877"],["-112.0801895","33.4586687"],["-112.0789437","33.4586629"],["-112.0786151","33.4586618"],["-112.0781099","33.458657"],["-112.0758089","33.4586519"],["-112.0755152","33.4586473"],["-112.0751418","33.4586326"],["-112.0750134","33.4586274"],["-112.0746795","33.4586117"],["-112.0747184","33.4585481"],["-112.0747241","33.4584789"],["-112.0747365","33.4584263"],["-112.0748814","33.4582164"],["-112.0749834","33.4580365"],["-112.0750516","33.4578697"],["-112.075068","33.4576937"],["-112.0750653","33.4576329"],["-112.0750605","33.4575304"],["-112.0750556","33.4573907"],["-112.075054","33.4571282"],["-112.0750526","33.4568757"],["-112.0750523","33.4566812"],["-112.0750516","33.456611"],["-112.0750571","33.4553823"],["-112.075054","33.4547061"],["-112.0750509","33.4539922"],["-112.075049","33.453778"],["-112.0750449","33.4530528"],["-112.0750529","33.4529484"],["-112.0750981","33.452875"],["-112.0751878","33.4527732"],["-112.0751891","33.451936"],["-112.0751891","33.4512846"],["-112.0751902","33.450347"],["-112.0751896","33.450291"],["-112.0751868","33.4502144"],["-112.0751704","33.4500732"],["-112.0751399","33.449877"],["-112.0751176","33.4497615"],["-112.0751059","33.4496986"],["-112.0751118","33.4494787"],["-112.0751531","33.4494166"],["-112.0751626","33.4493776"],["-112.0752176","33.4493087"],["-112.075243","33.4492178"],["-112.0752476","33.4490265"],["-112.0752926","33.4490169"],["-112.0753228","33.449016"],["-112.075317","33.4490161"],["-112.0752892","33.4490168"],["-112.0752481","33.4490142"],["-112.0752533","33.4489649"],["-112.0752551","33.4489397"],["-112.0752559","33.4488825"],["-112.0752548","33.4485781"],["-112.0752545","33.4483727"],["-112.0752593","33.4483063"],["-112.0752594","33.4482662"],["-112.075262","33.4482304"],["-112.0772365","33.4482429"],["-112.0775886","33.4482421"],["-112.0777103","33.4482427"],["-112.0779624","33.4482391"],["-112.0788327","33.4482322"],["-112.0790813","33.4482366"],["-112.0801573","33.4482312"],["-112.0815795","33.4482318"],["-112.0825627","33.4482299"],["-112.0825595","33.4483689"],["-112.0825852","33.4512926"],["-112.0825863","33.4514817"],["-112.082584","33.4520462"],["-112.0825816","33.4521307"],["-112.0825803","33.4521548"],["-112.0825896","33.4546075"],["-112.0825916","33.4547458"],["-112.0825936","33.4548064"],["-112.0826017","33.4573152"],["-112.0825964","33.4576877"],["-112.082591","33.457899"],["-112.0825822","33.4586827"],["-112.0825269","33.4587908"],["-112.0825412","33.4597875"],["-112.0825105","33.4598983"],["-112.0825076","33.4602049"],["-112.0825013","33.4602469"],["-112.0824856","33.4602819"],["-112.0824653","33.46032"],["-112.0824295","33.4603596"],["-112.0823808","33.4603924"],["-112.082326","33.4604154"],["-112.082245","33.4604348"],["-112.0817398","33.4605475"],["-112.0815056","33.4606229"],["-112.0789963","33.4611725"],["-112.0779839","33.4613561"],["-112.077897","33.4613652"],["-112.0738301","33.4614459"],["-112.0726056","33.4615607"],["-112.071289","33.4618036"],["-112.0698611","33.4620905"],["-112.0692553","33.4621877"],["-112.0691515","33.4621986"],["-112.0688063","33.4622183"],["-112.0684062","33.4622271"],["-112.0675908","33.4622076"],["-112.0617223","33.4617722"],["-112.0600161","33.4617092"],["-112.0592744","33.4617023"],["-112.0550975","33.4617161"],["-112.0542679","33.4617492"],["-112.0530889","33.4618193"],["-112.0521699","33.4618685"],["-112.0515393","33.4618819"],["-112.0503214","33.461874"],["-112.0471908","33.4618485"],["-112.0465449","33.4618272"],["-112.0456326","33.4618005"],["-112.0440166","33.4617398"],["-112.0437503","33.4617168"],["-112.0435653","33.4616934"],["-112.0418815","33.4613829"],["-112.0414624","33.4613075"],["-112.0411052","33.4612509"],["-112.0408057","33.4612181"],["-112.0405483","33.4611972"],["-112.0403307","33.461189"],["-112.0397465","33.4611879"],["-112.0391762","33.461234"],["-112.0388408","33.461283"],["-112.0372983","33.4615688"],["-112.0363932","33.4617113"],["-112.0358104","33.4618089"],["-112.0352792","33.4618737"],["-112.0347719","33.4619191"],["-112.0341258","33.4619526"],["-112.0328683","33.4619808"],["-112.0315193","33.4619834"],["-112.0310753","33.461974"],["-112.0304912","33.4619565"],["-112.0216947","33.4619063"],["-112.0200975","33.4618608"],["-112.0190003","33.4617832"],["-112.0172273","33.4615767"],["-112.0162965","33.4614192"],["-112.0153727","33.4612336"],["-112.0140486","33.4609281"],["-112.009008","33.4595029"],["-112.0078422","33.4592516"],["-112.0073104","33.459158"],["-112.0067661","33.4590825"],["-112.0060217","33.4589836"],["-112.0055171","33.4589356"],["-112.0028663","33.4588816"],["-111.9984046","33.4591734"],["-111.997656","33.4591867"],["-111.9932221","33.4588895"],["-111.9918281","33.4587842"],["-111.9867821","33.4583898"],["-111.9866284","33.4583777"],["-111.9733278","33.4555383"],["-111.9728191","33.4553576"],["-111.9723459","33.4551318"],["-111.971932","33.4549058"],["-111.9714701","33.4546112"],["-111.9712124","33.4544188"],["-111.9709726","33.454225"],["-111.9705308","33.4538104"],["-111.9703107","33.4535577"],["-111.9700919","33.4533082"],["-111.9699353","33.4530678"],["-111.9697689","33.4527783"],["-111.9696452","33.452559"],["-111.9695391","33.4523569"],["-111.9694187","33.4520439"],["-111.9693079","33.451724"],["-111.969218","33.4514192"],["-111.9691242","33.4509584"],["-111.9690989","33.4507919"],["-111.9690875","33.450599"],["-111.9690816","33.4500509"],["-111.9690782","33.4459084"],["-111.9690824","33.445809"],["-111.9690953","33.4451325"],["-111.9690819","33.4433735"],["-111.9690668","33.4431559"],["-111.9690358","33.4429337"],["-111.9689968","33.4427195"],["-111.9689741","33.4426093"],["-111.9689468","33.4424982"],["-111.9688476","33.4421725"],["-111.9688105","33.4420677"],["-111.9687698","33.4419622"],["-111.9687261","33.441857"],["-111.9686815","33.441755"],["-111.9685858","33.4415518"],["-111.968536","33.4414583"],["-111.9684272","33.4412625"],["-111.9683532","33.4411417"],["-111.9681647","33.4408634"],["-111.9680152","33.4406662"],["-111.967872","33.4404922"],["-111.9677136","33.4403165"],["-111.9676241","33.4402225"],["-111.9675382","33.4401377"],["-111.967257","33.4398799"],["-111.9671008","33.4397548"],["-111.9667096","33.4394821"],["-111.9664534","33.4393123"],["-111.9660278","33.4390785"],["-111.9658014","33.4389663"],["-111.9655706","33.4388634"],["-111.9653388","33.4387691"],["-111.9650857","33.4386777"],["-111.9648455","33.4385998"],["-111.9645814","33.4385246"],["-111.96108","33.4376676"],["-111.9600331","33.437395"],["-111.9555569","33.436402"],["-111.9502227","33.4359939"],["-111.9501171","33.4359875"],["-111.9497675","33.4359667"],["-111.949654","33.4359601"],["-111.9495049","33.4359517"],["-111.949408","33.4359463"],["-111.9491234","33.4359291"],["-111.9480701","33.4358657"],["-111.9443339","33.4356418"],["-111.9441652","33.4356288"],["-111.9392564","33.4351447"],["-111.9373617","33.4349263"],["-111.9368451","33.4348872"],["-111.9365727","33.4348743"],["-111.9363248","33.4348693"],["-111.9360435","33.4348695"],["-111.9358125","33.4348745"],["-111.9355257","33.4348863"],["-111.9352607","33.4349056"],["-111.9350112","33.4349286"],["-111.9347533","33.434957"],["-111.9341893","33.4350456"],["-111.9324927","33.4353378"],["-111.9320123","33.435418"],["-111.9306443","33.435645"],["-111.9304034","33.4356844"],["-111.9303791","33.4356882"],["-111.9303177","33.4356978"],["-111.9197846","33.4359318"],["-111.9165971","33.4359067"],["-111.9008576","33.4358224"],["-111.9000601","33.4358091"],["-111.8996487","33.4357874"],["-111.8988341","33.4357035"],["-111.8984608","33.4356402"],["-111.8981851","33.435623"],["-111.8979105","33.4355725"],["-111.8974258","33.4354688"],["-111.891651","33.4340694"],["-111.8899002","33.4336502"],["-111.8892965","33.433518"],["-111.8890858","33.4334807"],["-111.8888076","33.4334391"],["-111.888511","33.4334055"],["-111.8882766","33.433385"],["-111.8879947","33.4333689"],["-111.8877509","33.4333623"],["-111.8874925","33.4333601"],["-111.887213","33.4333678"],["-111.8869603","33.4333817"],["-111.8866953","33.4334044"],["-111.8864449","33.4334323"],["-111.8861955","33.4334682"],["-111.8859421","33.4335119"],["-111.8856776","33.4335643"],["-111.8820819","33.4344166"],["-111.8808889","33.43469"],["-111.8758662","33.4358892"],["-111.8753117","33.4360428"],["-111.8734066","33.436489"],["-111.8725893","33.4366911"],["-111.8706093","33.4371935"],["-111.8702051","33.4373229"],["-111.8698451","33.4374483"],["-111.8695399","33.4375749"],["-111.8691227","33.4377806"],["-111.8685214","33.4380935"],["-111.8678038","33.4386163"],["-111.8673227","33.4390475"],["-111.86664","33.4397515"],["-111.8652998","33.4411727"],["-111.8645983","33.4419042"],["-111.8641682","33.442321"],["-111.8637827","33.4426544"],["-111.8634315","33.4429344"],["-111.8630068","33.4432153"],["-111.8624442","33.4435467"],["-111.8619024","33.4438384"],["-111.8613394","33.4440817"],["-111.8610639","33.4441875"],["-111.8607636","33.4442984"],["-111.8605296","33.4443731"],["-111.8602586","33.44445"],["-111.8598878","33.4445476"],["-111.8587596","33.4447648"],["-111.8582227","33.4448476"],["-111.8572315","33.4450135"],["-111.8569572","33.4450686"],["-111.8565141","33.4451933"],["-111.8561456","33.4453181"],["-111.8559061","33.445411"],["-111.8557084","33.4455031"],["-111.8554829","33.445617"],["-111.855105","33.4458328"],["-111.8547039","33.4460754"],["-111.8543902","33.4462965"],["-111.85404","33.446569"],["-111.8515846","33.4485763"],["-111.8511821","33.4488928"],["-111.8501295","33.4497487"],["-111.8488379","33.4507493"],["-111.8476281","33.4515875"],["-111.8469604","33.4520001"],["-111.8463779","33.4523356"],["-111.8453937","33.4528767"],["-111.844937","33.4530047"],["-111.8446422","33.4531317"],["-111.8440477","33.4533774"],["-111.8437588","33.4534881"],["-111.8434504","33.4535997"],["-111.8430987","33.4537223"],["-111.8425827","33.4538851"],["-111.8398022","33.4547005"],["-111.8395721","33.4547706"],["-111.8395229","33.4557009"],["-111.8395439","33.4566534"],["-111.839625","33.4568607"],["-111.8396461","33.4571214"],["-111.8396791","33.4573505"],["-111.8397324","33.4575589"],["-111.8398098","33.4577398"],["-111.8399607","33.458021"],["-111.8426111","33.4618934"],["-111.8426488","33.4620429"],["-111.8428061","33.4623081"],["-111.8429804","33.4626303"],["-111.8431217","33.4629488"],["-111.8432101","33.4631744"],["-111.8432796","33.4634089"],["-111.8433636","33.4635418"],["-111.8433929","33.4637226"],["-111.8434147","33.4639328"],["-111.8434215","33.4641315"],["-111.8434065","33.4644004"],["-111.8432997","33.4658722"],["-111.8432149","33.4661351"],["-111.8431181","33.4671325"],["-111.8430655","33.4674644"],["-111.8429835","33.4677269"],["-111.8428929","33.4679547"],["-111.8427736","33.4681741"],["-111.8425866","33.4684171"],["-111.8422666","33.4687562"],["-111.8371982","33.4730591"],["-111.8359358","33.4740948"],["-111.8347042","33.4750597"],["-111.833198","33.4761465"],["-111.8203841","33.4850132"],["-111.8199913","33.4852864"],["-111.8051101","33.4955907"],["-111.8042286","33.4962011"],["-111.8002011","33.4989395"],["-111.7988768","33.4997626"],["-111.7981004","33.500208"],["-111.7962728","33.50117"],["-111.7953987","33.5015857"],["-111.7939381","33.5022301"],["-111.7919183","33.5030113"],["-111.7912618","33.5032345"],["-111.788731","33.5039835"],["-111.7663279","33.5092409"],["-111.7654376","33.5095126"],["-111.7646881","33.5097553"],["-111.7635027","33.5101673"],["-111.7620362","33.5107396"],["-111.7603657","33.5114875"],["-111.7457809","33.5185273"],["-111.744496","33.51923"],["-111.7437092","33.5197097"],["-111.7432184","33.5200215"],["-111.7427805","33.5203144"],["-111.7420051","33.5208665"],["-111.7413303","33.5213759"],["-111.7405525","33.5220097"],["-111.7290667","33.5325174"],["-111.7285288","33.5330351"],["-111.727925","33.5336726"],["-111.7276907","33.5339388"],["-111.727076","33.5347032"],["-111.7267365","33.5351786"],["-111.7263613","33.5357499"],["-111.7261962","33.5360236"],["-111.7257154","33.5368867"],["-111.7253928","33.5375567"],["-111.7251793","33.5380655"],["-111.7250422","33.5384183"],["-111.7247869","33.5391712"],["-111.7243696","33.5406162"],["-111.7239695","33.5421449"],["-111.7233416","33.5449251"],["-111.723055","33.5463249"],["-111.7228682","33.5472077"],["-111.7226982","33.5478475"],["-111.7226086","33.5481488"],["-111.7224891","33.5485118"],["-111.72233","33.5489451"],["-111.7182392","33.5584108"],["-111.7180651","33.5587739"],["-111.7179239","33.5590528"],["-111.7177745","33.5593199"],["-111.7173992","33.5599326"],["-111.7171084","33.5603596"],["-111.7168411","33.5607207"],["-111.7165591","33.5610706"],["-111.7162056","33.5614773"],["-111.7156624","33.5620519"],["-111.7154244","33.5622776"],["-111.7151518","33.5625261"],["-111.7148904","33.5627512"],["-111.7145872","33.5630003"],["-111.7142231","33.5632773"],["-111.7138318","33.5635631"],["-111.7134404","33.5638233"],["-111.7130914","33.5640443"],["-111.7126838","33.5642848"],["-111.7122618","33.5645179"],["-111.7117953","33.5647536"],["-111.7114043","33.5649367"],["-111.7109772","33.565122"],["-111.7105167","33.5653065"],["-111.7057609","33.5671376"],["-111.7053879","33.5673035"],["-111.7043577","33.5678071"],["-111.7038397","33.5680916"],["-111.7033886","33.5683512"],["-111.7023446","33.5690196"],["-111.6954769","33.5735103"],["-111.6942077","33.5742412"],["-111.6927097","33.5750308"],["-111.6918124","33.5754778"],["-111.6908875","33.5759197"],["-111.689215","33.5766538"],["-111.6859686","33.5778844"],["-111.6827502","33.5788618"],["-111.6805585","33.579404"],["-111.6782595","33.5798747"],["-111.6773005","33.5800393"],["-111.6624153","33.5822183"],["-111.6615283","33.5822923"],["-111.6588578","33.5824083"],["-111.6576961","33.5824126"],["-111.6563722","33.5823689"],["-111.6556868","33.5823385"],["-111.6523477","33.58202"],["-111.648444","33.581438"],["-111.6476334","33.5813309"],["-111.6459121","33.5811533"],["-111.6451102","33.5810965"],["-111.6243115","33.5808741"],["-111.621119","33.5811511"],["-111.6192863","33.5814057"],["-111.6167204","33.5818632"],["-111.6128674","33.5828066"],["-111.61199","33.5830719"],["-111.610205","33.5836471"],["-111.6074263","33.5847034"],["-111.605418","33.5855931"],["-111.6047624","33.5859072"],["-111.6033618","33.5866167"],["-111.601911","33.5874194"],["-111.6006002","33.5882036"],["-111.5974594","33.59034"],["-111.5959431","33.5915272"],["-111.5952231","33.5921289"],["-111.5944729","33.592786"],["-111.5925825","33.5945929"],["-111.5919487","33.595258"],["-111.5907854","33.5965579"],["-111.5864707","33.6015616"],["-111.5859722","33.6020989"],["-111.5855309","33.6025486"],["-111.5850827","33.602981"],["-111.5847057","33.6033219"],["-111.5842107","33.6037459"],["-111.5837813","33.6040999"],["-111.5833747","33.6044212"],["-111.5828372","33.6048173"],["-111.5823911","33.6051358"],["-111.5815286","33.6057069"],["-111.5805528","33.6062979"],["-111.5783179","33.6075389"],["-111.5777314","33.6078851"],["-111.5771922","33.6082257"],["-111.5766966","33.6085609"],["-111.5761224","33.6089776"],["-111.5756068","33.6093883"],["-111.5751106","33.6098136"],["-111.5746097","33.6102758"],["-111.5740782","33.6108052"],["-111.5736128","33.6113216"],["-111.5732081","33.611795"],["-111.5728492","33.6122574"],["-111.5724553","33.612817"],["-111.5721391","33.6132895"],["-111.5718586","33.6137574"],["-111.5715511","33.6143213"],["-111.5705224","33.6164197"],["-111.5702402","33.6169375"],["-111.5699932","33.6173683"],["-111.5697151","33.6178058"],["-111.569432","33.6182152"],["-111.5691325","33.6186238"],["-111.568774","33.6190773"],["-111.5684669","33.6194389"],["-111.568114","33.6198352"],["-111.5677314","33.6202285"],["-111.567356","33.6205952"],["-111.5669002","33.621008"],["-111.5663764","33.6214537"],["-111.5641279","33.6233002"],["-111.5631992","33.6240597"],["-111.5574737","33.6287403"],["-111.5569793","33.6291179"],["-111.5557091","33.630002"],["-111.547056","33.6356827"],["-111.5322268","33.6469484"],["-111.5304115","33.6483424"],["-111.5292173","33.6493117"],["-111.5281664","33.6502473"],["-111.5250173","33.6535565"],["-111.513395","33.6664296"],["-111.5030352","33.6779648"],["-111.502743","33.6782899"],["-111.5020875","33.6790309"],["-111.5016089","33.6795833"],["-111.5012507","33.6800658"],["-111.5009774","33.6804856"],["-111.5007097","33.6809422"],["-111.5004713","33.6814025"],["-111.5002507","33.6818905"],["-111.5000775","33.6823395"],["-111.4999294","33.6828842"],["-111.4997985","33.683402"],["-111.4997131","33.6838325"],["-111.4996527","33.6842319"],["-111.4996118","33.6846193"],["-111.4995891","33.6850535"],["-111.499595","33.6855355"],["-111.4996187","33.6859644"],["-111.4996733","33.686451"],["-111.4997528","33.6869318"],["-111.4998566","33.6873954"],["-111.499979","33.6878374"],["-111.5001356","33.6883068"],["-111.5002847","33.6886858"],["-111.5004443","33.6890458"],["-111.5006104","33.6893813"],["-111.5008093","33.6897331"],["-111.5010226","33.6900862"],["-111.5012855","33.6904852"],["-111.5020461","33.6915774"],["-111.5022309","33.6918687"],["-111.5023342","33.692091"],["-111.5024247","33.6923489"],["-111.5024875","33.6925927"],["-111.5025348","33.6929091"],["-111.5025442","33.6932118"],["-111.5025211","33.6935075"],["-111.5024706","33.6937846"],["-111.5023861","33.6941043"],["-111.5022075","33.694589"],["-111.5019266","33.6953252"],["-111.5017696","33.6957799"],["-111.5016731","33.6961251"],["-111.5016035","33.6964675"],["-111.5015576","33.6968516"],["-111.5015378","33.6972823"],["-111.5015514","33.6976968"],["-111.5015937","33.6980435"],["-111.5016485","33.6983778"],["-111.5017284","33.698705"],["-111.5018288","33.6990372"],["-111.5019353","33.6993174"],["-111.5020719","33.6996281"],["-111.502225","33.6999335"],["-111.5024074","33.7002343"],["-111.5025969","33.7005228"],["-111.5028758","33.7008854"],["-111.5038629","33.7020847"],["-111.5041363","33.7024293"],["-111.5043692","33.7027535"],["-111.5045961","33.7030827"],["-111.5048179","33.7034398"],["-111.5050359","33.7038271"],["-111.5054953","33.7047284"],["-111.5056482","33.7050822"],["-111.505753","33.7054193"],["-111.5058161","33.7057186"],["-111.5058545","33.7060266"],["-111.5058632","33.7063236"],["-111.505846","33.7066481"],["-111.5057675","33.7074465"],["-111.5057593","33.7077243"],["-111.5057664","33.7079586"],["-111.5057904","33.7081821"],["-111.505833","33.7084018"],["-111.505912","33.7086635"],["-111.5060185","33.7089368"],["-111.5061475","33.7091898"],["-111.5063191","33.7094625"],["-111.5064986","33.7097018"],["-111.506702","33.7099139"],["-111.5069344","33.7101282"],["-111.5072393","33.7103536"],["-111.5077892","33.7107274"],["-111.5084759","33.7111904"],["-111.508844","33.7114727"],["-111.5090799","33.7116899"],["-111.5093204","33.7119519"],["-111.5095263","33.7122177"],["-111.5097174","33.7125025"],["-111.5098699","33.7127682"],["-111.5100128","33.7130958"],["-111.5101138","33.7134043"],["-111.5101832","33.7137153"],["-111.5102391","33.7140553"],["-111.5111862","33.7228771"],["-111.5113241","33.7242258"],["-111.5113294","33.7245975"],["-111.5113212","33.7249675"],["-111.5113006","33.7253987"],["-111.5112467","33.7258569"],["-111.5111805","33.7262977"],["-111.5110941","33.7267025"],["-111.5109849","33.7271051"],["-111.5107736","33.7277762"],["-111.5106747","33.7280347"],["-111.5105742","33.7282706"],["-111.5104216","33.728591"],["-111.5102057","33.7290119"],["-111.5099951","33.7293876"],["-111.5050972","33.7370235"],["-111.5046564","33.7377568"],["-111.5044554","33.7381383"],["-111.5042651","33.7385443"],["-111.5040891","33.738972"],["-111.5039423","33.7393951"],["-111.5038311","33.7397806"],["-111.5037346","33.7401477"],["-111.5036675","33.7404696"],["-111.5036074","33.7408153"],["-111.5035561","33.7412254"],["-111.5035237","33.7416465"],["-111.5035101","33.7424146"],["-111.5035094","33.7462711"],["-111.5035019","33.7466228"],["-111.5034762","33.7469333"],["-111.5034179","33.7472748"],["-111.5033462","33.7475887"],["-111.5032431","33.7479116"],["-111.5030947","33.748269"],["-111.5029255","33.7486173"],["-111.5026958","33.7489932"],["-111.5024686","33.7493034"],["-111.5021173","33.7497074"],["-111.5017587","33.7500424"],["-111.5013713","33.7503543"],["-111.5008965","33.7506747"],["-111.5002883","33.7510591"],["-111.4999103","33.7513208"],["-111.4996352","33.7515387"],["-111.4993485","33.7517902"],["-111.4990503","33.7521031"],["-111.4987807","33.752428"],["-111.4985253","33.7527891"],["-111.4983065","33.7531706"],["-111.4981076","33.7535878"],["-111.4959465","33.7583929"],["-111.4953349","33.7599153"],["-111.4949681","33.7610248"],["-111.4946834","33.7619962"],["-111.4944628","33.7628463"],["-111.4943071","33.7634981"],["-111.4937219","33.7666972"],["-111.4931817","33.7699715"],["-111.4931117","33.7705009"],["-111.4930243","33.7712449"],["-111.4929732","33.7717043"],["-111.4928868","33.7728962"],["-111.4928608","33.7841821"],["-111.4928786","33.7847857"],["-111.4929112","33.7851349"],["-111.4929755","33.7855629"],["-111.4930413","33.7858807"],["-111.4930895","33.7860845"],["-111.4931759","33.7864165"],["-111.4932622","33.7866952"],["-111.4941471","33.7890339"],["-111.4943697","33.7896274"],["-111.4944479","33.7898622"],["-111.4944867","33.7900101"],["-111.4945222","33.7901643"],["-111.494555","33.7903251"],["-111.4945772","33.7904754"],["-111.4945925","33.7905987"],["-111.4946158","33.7908857"],["-111.4946174","33.7912091"],["-111.4946099","33.7913781"],["-111.4945949","33.7915683"],["-111.494566","33.791764"],["-111.494525","33.7919902"],["-111.4944779","33.7922016"],["-111.4944292","33.792375"],["-111.4943233","33.7926839"],["-111.4942637","33.7928265"],["-111.4941193","33.7931382"],["-111.4940493","33.793278"],["-111.4939147","33.7935211"],["-111.4914882","33.7978034"],["-111.4909977","33.7985836"],["-111.4904284","33.7994086"],["-111.4902763","33.7996164"],["-111.4898661","33.8001491"],["-111.4889613","33.801232"],["-111.4871845","33.8031628"],["-111.4869817","33.8033954"],["-111.4868763","33.803531"],["-111.4867955","33.8036476"],["-111.4867172","33.8037744"],["-111.4866466","33.8039002"],["-111.4865853","33.8040229"],["-111.4865308","33.8041513"],["-111.4864784","33.8042907"],["-111.4864446","33.8044035"],["-111.4864184","33.8045126"],["-111.4863789","33.8047308"],["-111.486369","33.80484"],["-111.486363","33.8049468"],["-111.4863628","33.8050524"],["-111.486365","33.8051658"],["-111.4863744","33.8052844"],["-111.486387","33.8053922"],["-111.4864094","33.8055083"],["-111.4864322","33.805612"],["-111.4864638","33.8057297"],["-111.4864959","33.8058384"],["-111.4865365","33.805944"],["-111.4866407","33.8061744"],["-111.4866911","33.8062724"],["-111.4867541","33.8063763"],["-111.4868208","33.8064752"],["-111.4869005","33.8065854"],["-111.4869894","33.8066953"],["-111.4870888","33.8068093"],["-111.4872199","33.8069488"],["-111.4876383","33.8073735"],["-111.4878255","33.8075683"],["-111.4879664","33.8077353"],["-111.4880763","33.8078892"],["-111.4881682","33.8080368"],["-111.4882459","33.8081815"],["-111.4883059","33.8083295"],["-111.4883584","33.8084726"],["-111.4884011","33.808617"],["-111.4884307","33.808754"],["-111.488457","33.8089071"],["-111.4884675","33.809054"],["-111.4884708","33.8091845"],["-111.4884671","33.8093308"],["-111.4884569","33.8094635"],["-111.4884308","33.8096071"],["-111.4883971","33.8097479"],["-111.4883473","33.8098889"],["-111.4882916","33.8100383"],["-111.4882373","33.8101566"],["-111.4881744","33.81028"],["-111.4881066","33.810397"],["-111.4880203","33.8105158"],["-111.4879309","33.8106348"],["-111.48785","33.8107271"],["-111.4877497","33.810835"],["-111.4876575","33.8109278"],["-111.4875547","33.8110246"],["-111.4869036","33.8115958"],["-111.4868095","33.811686"],["-111.4867285","33.8117675"],["-111.4866474","33.8118532"],["-111.4865756","33.8119371"],["-111.4865058","33.8120266"],["-111.4864411","33.8121142"],["-111.486382","33.8122061"],["-111.4863265","33.8122998"],["-111.4862763","33.8123952"],["-111.48623","33.8124984"],["-111.4861893","33.8126055"],["-111.4861543","33.8127112"],["-111.4861036","33.8129197"],["-111.4860821","33.8130339"],["-111.4860672","33.8131433"],["-111.486056","33.8132551"],["-111.486053","33.8133621"],["-111.4860591","33.8135854"],["-111.4861203","33.8141347"],["-111.4861448","33.8143715"],["-111.4861531","33.8145099"],["-111.486153","33.8146289"],["-111.4861478","33.8147443"],["-111.4861314","33.8148695"],["-111.4861005","33.8150048"],["-111.4860631","33.8151267"],["-111.4860182","33.8152428"],["-111.4859724","33.8153422"],["-111.4859095","33.8154668"],["-111.4858417","33.8155835"],["-111.4857682","33.8156973"],["-111.4856931","33.8157982"],["-111.4856151","33.8158924"],["-111.4855337","33.815975"],["-111.4854494","33.8160539"],["-111.4853542","33.816136"],["-111.4852636","33.8162113"],["-111.4851598","33.8162851"],["-111.4850549","33.8163544"],["-111.4849434","33.8164201"],["-111.4848381","33.8164758"],["-111.4847229","33.8165311"],["-111.4845954","33.8165855"],["-111.4844686","33.816631"],["-111.4843512","33.8166674"],["-111.48411","33.8167235"],["-111.4839853","33.8167457"],["-111.4838587","33.8167626"],["-111.4837167","33.816777"],["-111.4835881","33.8167843"],["-111.4834602","33.8167871"],["-111.4833426","33.8167858"],["-111.4832122","33.8167767"],["-111.4830796","33.8167642"],["-111.4829564","33.816746"],["-111.4823309","33.8166229"],["-111.4820443","33.8165692"],["-111.4818713","33.816547"],["-111.4816991","33.8165302"],["-111.4815223","33.8165193"],["-111.4813674","33.8165174"],["-111.4812246","33.8165209"],["-111.4810799","33.8165314"],["-111.4809353","33.8165485"],["-111.4808023","33.8165704"],["-111.4806655","33.8165993"],["-111.4805322","33.8166319"],["-111.4803929","33.8166723"],["-111.4802505","33.816722"],["-111.4800887","33.8167858"],["-111.4799317","33.8168568"],["-111.4797767","33.816942"],["-111.479643","33.817022"],["-111.4795067","33.8171176"],["-111.4793542","33.8172335"],["-111.479226","33.817348"],["-111.4791066","33.8174718"],["-111.4789996","33.8175942"],["-111.4789016","33.8177192"],["-111.4788031","33.8178643"],["-111.4785119","33.8183707"],["-111.4784094","33.8185577"],["-111.4782947","33.8187937"],["-111.4782356","33.818936"],["-111.4781716","33.819107"],["-111.4781008","33.8193186"],["-111.4780389","33.8195238"],["-111.4779989","33.8196821"],["-111.4779644","33.8198486"],["-111.4779377","33.8200237"],["-111.4779138","33.8202526"],["-111.4778989","33.8204628"],["-111.4778938","33.8206826"],["-111.4779108","33.8211163"],["-111.4779092","33.8215647"],["-111.4778863","33.8217624"],["-111.477859","33.8219315"],["-111.4778112","33.8221014"],["-111.4777402","33.8222957"],["-111.4776598","33.8224814"],["-111.4775676","33.8226519"],["-111.4774674","33.8228077"],["-111.4773579","33.8229575"],["-111.4772371","33.8231015"],["-111.4771239","33.8232247"],["-111.476827","33.8235048"],["-111.4766267","33.8236927"],["-111.4764378","33.8238722"],["-111.4762597","33.8240575"],["-111.4761103","33.8242195"],["-111.475973","33.824391"],["-111.475859","33.8245593"],["-111.4757595","33.8247137"],["-111.4756478","33.8249001"],["-111.4755562","33.8250689"],["-111.4754841","33.8252314"],["-111.4754191","33.8253912"],["-111.4753525","33.825579"],["-111.4752962","33.8257521"],["-111.4752482","33.8259109"],["-111.4752136","33.8260599"],["-111.4751894","33.8262283"],["-111.4750736","33.8274452"],["-111.4750411","33.8277223"],["-111.4750161","33.8278652"],["-111.4749336","33.8282442"],["-111.4748836","33.8284382"],["-111.4748162","33.828646"],["-111.4747426","33.8288487"],["-111.4746559","33.8290497"],["-111.474558","33.8292629"],["-111.474457","33.829457"],["-111.4743413","33.8296631"],["-111.4742235","33.8298565"],["-111.4741051","33.8300368"],["-111.4739735","33.8302267"],["-111.4738294","33.8304161"],["-111.4734473","33.8309"],["-111.4732877","33.8311143"],["-111.473181","33.8312736"],["-111.4730927","33.8314213"],["-111.473021","33.8315588"],["-111.4729563","33.8317103"],["-111.472908","33.8318517"],["-111.4728639","33.8319922"],["-111.4728295","33.8321569"],["-111.4728062","33.8323094"],["-111.4727971","33.8324513"],["-111.4727953","33.8325967"],["-111.4728051","33.8327293"],["-111.4728282","33.8328646"],["-111.4728627","33.8330267"],["-111.4729037","33.8331917"],["-111.4729562","33.8333465"],["-111.4732285","33.8340432"],["-111.4732838","33.8342137"],["-111.4733274","33.8343942"],["-111.4733574","33.8345885"],["-111.4733651","33.8347699"],["-111.4733571","33.8349776"],["-111.4733319","33.8351584"],["-111.4732946","33.8353305"],["-111.4732379","33.8355176"],["-111.4731661","33.8357064"],["-111.4730739","33.8358914"],["-111.4729847","33.8360456"],["-111.4728774","33.8361986"],["-111.4727543","33.8363506"],["-111.4726164","33.8365002"],["-111.4724763","33.8366272"],["-111.4723231","33.836753"],["-111.472161","33.8368661"],["-111.4719681","33.8369741"],["-111.471768","33.8370762"],["-111.4715594","33.8371668"],["-111.4713284","33.8372489"],["-111.4710596","33.8373237"],["-111.4707503","33.8374047"],["-111.4704273","33.8374937"],["-111.470195","33.8375656"],["-111.4699685","33.8376518"],["-111.4697513","33.8377482"],["-111.4695366","33.8378626"],["-111.4693614","33.8379751"],["-111.4692045","33.8380912"],["-111.4690532","33.8382214"],["-111.4689082","33.8383602"],["-111.4687903","33.8384907"],["-111.4686919","33.8386142"],["-111.4685928","33.838751"],["-111.4685098","33.8388854"],["-111.4684458","33.8390103"],["-111.4683901","33.8391338"],["-111.4683309","33.8392827"],["-111.4682858","33.8394386"],["-111.4682415","33.8396233"],["-111.4682113","33.8398009"],["-111.4679718","33.8421708"],["-111.4679474","33.8425433"],["-111.4679441","33.8427741"],["-111.4679496","33.8429827"],["-111.4679611","33.8431716"],["-111.4679778","33.8433742"],["-111.4680004","33.8435977"],["-111.4680293","33.8438116"],["-111.4680615","33.8440143"],["-111.4681003","33.8442188"],["-111.4681878","33.8446027"],["-111.4682568","33.8449063"],["-111.4683301","33.8452592"],["-111.4683844","33.8456574"],["-111.4684376","33.8461043"],["-111.468494","33.8466291"],["-111.4686265","33.8476111"],["-111.4686783","33.8478995"],["-111.468802","33.848477"],["-111.4688777","33.8488071"],["-111.4689969","33.8492611"],["-111.4691204","33.8496849"],["-111.4693627","33.8504036"],["-111.4695192","33.850809"],["-111.469635","33.8511041"],["-111.4698193","33.8515405"],["-111.4704818","33.8528689"],["-111.4706178","33.8531093"],["-111.4707631","33.8533543"],["-111.4713926","33.8543454"],["-111.4730957","33.8569262"],["-111.4733668","33.8573452"],["-111.4734722","33.85752"],["-111.4735797","33.8577225"],["-111.4736696","33.8579094"],["-111.4738101","33.8582542"],["-111.4738783","33.8584623"],["-111.4739376","33.8586834"],["-111.4739876","33.8588977"],["-111.4740204","33.8591004"],["-111.4740525","33.8593295"],["-111.4740665","33.8595497"],["-111.4740722","33.8597591"],["-111.4740658","33.8599863"],["-111.474051","33.8601981"],["-111.4740233","33.8604064"],["-111.4739811","33.8606418"],["-111.4739328","33.860863"],["-111.4738744","33.8610672"],["-111.4738104","33.8612543"],["-111.4737495","33.8614177"],["-111.4736782","33.861588"],["-111.4736034","33.861752"],["-111.4734153","33.8620981"],["-111.4733248","33.8622426"],["-111.473213","33.8624083"],["-111.4730834","33.8625852"],["-111.4729448","33.8627572"],["-111.4728369","33.8628832"],["-111.4725514","33.8631777"],["-111.4723182","33.8633961"],["-111.4722104","33.8635027"],["-111.4725276","33.8637749"],["-111.4726586","33.8638894"],["-111.472714","33.863948"],["-111.472739","33.8639773"],["-111.4727621","33.8640051"],["-111.4728075","33.8640705"],["-111.4728463","33.8641445"],["-111.47287","33.8642301"],["-111.4728712","33.8643"],["-111.4728561","33.8643707"],["-111.4728234","33.8644454"],["-111.4727649","33.8645186"],["-111.4726708","33.8645965"],["-111.4724978","33.8646846"],["-111.471784","33.865026"],["-111.4715467","33.86516"],["-111.4710426","33.8655134"],["-111.4692613","33.866855"],["-111.4690202","33.8670527"],["-111.4688692","33.8671992"],["-111.468729","33.8673483"],["-111.468592","33.8675194"],["-111.4684714","33.8676823"],["-111.4683829","33.8678259"],["-111.4683061","33.867961"],["-111.4682376","33.86811"],["-111.4681694","33.8682709"],["-111.4681033","33.8684491"],["-111.4680506","33.8686331"],["-111.468018","33.8687963"],["-111.4679875","33.8690142"],["-111.467975","33.8691605"],["-111.4679692","33.8693926"],["-111.4679671","33.8696147"],["-111.4679832","33.8698706"],["-111.4680174","33.8701378"],["-111.4680749","33.8704524"],["-111.4681687","33.8707695"],["-111.4682778","33.8711129"],["-111.4683918","33.8713976"],["-111.4685119","33.8716587"],["-111.4686528","33.8719295"],["-111.4688518","33.8722352"],["-111.4691147","33.8725937"],["-111.4693397","33.8728581"],["-111.4700415","33.8736722"],["-111.4696758","33.8738979"],["-111.4695948","33.8739233"],["-111.4694926","33.8738848"],["-111.4692614","33.8737282"],["-111.4691657","33.8736998"],["-111.4689921","33.8737297"],["-111.4687839","33.8737853"],["-111.4683574","33.8738255"],["-111.4679861","33.8738545"],["-111.4676889","33.8738219"],["-111.4676802","33.8738206"],["-111.4679875","33.8738544"],["-111.4683182","33.8738289"],["-111.4687839","33.8737852"],["-111.4689917","33.8737298"],["-111.4691657","33.8736998"],["-111.4692617","33.8737284"],["-111.4694908","33.8738837"],["-111.4695937","33.8739231"],["-111.4696741","33.8738986"],["-111.4700416","33.8736726"],["-111.4693445","33.8728637"],["-111.4691214","33.8726023"],["-111.4688546","33.8722394"],["-111.4686548","33.8719323"],["-111.4685161","33.8716676"],["-111.4683904","33.8713944"],["-111.4682801","33.8711199"],["-111.4681818","33.8708123"],["-111.4680736","33.8704462"],["-111.4680158","33.8701268"],["-111.4679826","33.869866"],["-111.4679672","33.8696136"],["-111.4679697","33.869365"],["-111.4679756","33.8691538"],["-111.4679879","33.8690099"],["-111.468018","33.8687963"],["-111.468051","33.8686314"],["-111.4681049","33.8684436"],["-111.4681702","33.8682686"],["-111.4682378","33.8681094"],["-111.4683049","33.8679633"],["-111.4683857","33.8678212"],["-111.4684748","33.8676773"],["-111.4685991","33.8675101"],["-111.4687305","33.8673464"],["-111.468862","33.8672064"],["-111.4690128","33.8670595"],["-111.4692568","33.8668584"],["-111.4710316","33.8655216"],["-111.4715433","33.865162"],["-111.4717882","33.8650239"],["-111.4724798","33.8646933"],["-111.4726726","33.8645953"],["-111.4727635","33.8645198"],["-111.4728238","33.864445"],["-111.4728561","33.8643707"],["-111.4728711","33.8642998"],["-111.47287","33.8642299"],["-111.4728461","33.8641441"],["-111.4728069","33.8640695"],["-111.4727618","33.8640051"],["-111.47274","33.8639785"],["-111.4727147","33.8639488"],["-111.4726591","33.8638896"],["-111.4725268","33.8637739"],["-111.4721986","33.8635126"],["-111.4699175","33.8652837"],["-111.4691417","33.8659341"],["-111.4628679","33.8721985"],["-111.4625251","33.8725683"],["-111.462386","33.8727275"],["-111.4622242","33.8729281"],["-111.4621042","33.8730847"],["-111.4619638","33.873276"],["-111.4607683","33.8750314"],["-111.4595023","33.8768957"],["-111.4592932","33.8771899"],["-111.459159","33.8773646"],["-111.4590294","33.877511"],["-111.4588904","33.8776582"],["-111.4587485","33.8777878"],["-111.4585772","33.8779313"],["-111.4583888","33.8780715"],["-111.4547905","33.8804741"],["-111.4545144","33.8806719"],["-111.4543305","33.880813"],["-111.4541553","33.8809666"],["-111.4539928","33.8811336"],["-111.4538323","33.8813155"],["-111.4536888","33.8815035"],["-111.4535648","33.8816973"],["-111.4534517","33.8818937"],["-111.4533595","33.8820968"],["-111.4532876","33.8822968"],["-111.4532251","33.8825061"],["-111.4531634","33.8827771"],["-111.4524369","33.8864192"],["-111.4523703","33.8868065"],["-111.4523481","33.8870241"],["-111.4523407","33.8872298"],["-111.4523431","33.8874877"],["-111.4523537","33.8876847"],["-111.4523848","33.8879049"],["-111.4524265","33.888118"],["-111.4524772","33.8883312"],["-111.4525382","33.8885368"],["-111.4526135","33.8887497"],["-111.4527639","33.8890832"],["-111.453693","33.891042"],["-111.4538291","33.8913047"],["-111.4541555","33.8918719"],["-111.454375","33.8922078"],["-111.4546457","33.8925885"],["-111.454826","33.8928179"],["-111.4550368","33.8930751"],["-111.4552575","33.8933253"],["-111.4554728","33.8935596"],["-111.4556662","33.8937588"],["-111.4558744","33.8939607"],["-111.4561409","33.8942022"],["-111.4566728","33.8946623"],["-111.4569986","33.8949426"],["-111.4571623","33.8951038"],["-111.4573201","33.8952782"],["-111.4574632","33.8954571"],["-111.4575876","33.8956387"],["-111.4577122","33.8958433"],["-111.4578127","33.8960482"],["-111.4578914","33.8962491"],["-111.4579604","33.8964683"],["-111.4580068","33.8966731"],["-111.4580379","33.896885"],["-111.4580542","33.8971037"],["-111.4580489","33.8973265"],["-111.4580312","33.8975395"],["-111.4579902","33.8977648"],["-111.4579375","33.8979715"],["-111.4578643","33.898187"],["-111.4577743","33.898389"],["-111.4576674","33.8985894"],["-111.4575506","33.8987808"],["-111.4574186","33.8989661"],["-111.4572459","33.8991718"],["-111.4558816","33.9007136"],["-111.4553958","33.9012532"],["-111.4552369","33.901419"],["-111.455058","33.9015989"],["-111.4548837","33.9017587"],["-111.4546951","33.9019096"],["-111.4544731","33.9020811"],["-111.45424","33.9022431"],["-111.4525905","33.9033241"],["-111.4522567","33.9035553"],["-111.4520623","33.9037077"],["-111.4518729","33.9038721"],["-111.4517022","33.9040297"],["-111.4515509","33.9041791"],["-111.4513633","33.9043801"],["-111.4512561","33.9045101"],["-111.4511275","33.9046757"],["-111.450999","33.9048516"],["-111.4508773","33.9050382"],["-111.4507579","33.9052386"],["-111.4506509","33.9054309"],["-111.4505558","33.9056374"],["-111.450495","33.9057766"],["-111.4503956","33.9060327"],["-111.4503353","33.9062208"],["-111.450281","33.9064295"],["-111.4502349","33.9066422"],["-111.4501998","33.9068469"],["-111.4501747","33.9070608"],["-111.4501601","33.9072794"],["-111.4501527","33.9074954"],["-111.450156","33.9077167"],["-111.4501704","33.9079208"],["-111.4502002","33.9081503"],["-111.4502719","33.9085554"],["-111.4509178","33.9120268"],["-111.4509951","33.9123613"],["-111.4510736","33.9126626"],["-111.4511676","33.9129801"],["-111.4512906","33.9133246"],["-111.4513974","33.9136077"],["-111.4515066","33.913866"],["-111.4516241","33.9141284"],["-111.4518403","33.9145511"],["-111.4519833","33.9148057"],["-111.4521666","33.9151093"],["-111.4523549","33.9153969"],["-111.452706","33.91589"],["-111.4544396","33.9182343"],["-111.4545796","33.918442"],["-111.4546996","33.9186455"],["-111.4548069","33.9188715"],["-111.4548898","33.919076"],["-111.4549611","33.9192895"],["-111.4550163","33.919505"],["-111.4550551","33.9196991"],["-111.4550782","33.9198833"],["-111.455088","33.9200557"],["-111.45509","33.9202404"],["-111.455074","33.9204972"],["-111.4550483","33.9207042"],["-111.4550137","33.9208798"],["-111.4549586","33.9210767"],["-111.4549017","33.9212474"],["-111.4548236","33.9214416"],["-111.4547598","33.9215794"],["-111.4546562","33.921767"],["-111.4545336","33.9219706"],["-111.4544021","33.9221547"],["-111.4542529","33.9223388"],["-111.4540914","33.9225178"],["-111.4539223","33.9226818"],["-111.4537394","33.9228376"],["-111.4535464","33.922988"],["-111.4533259","33.923133"],["-111.4531283","33.9232547"],["-111.4528973","33.9233764"],["-111.4526448","33.9234936"],["-111.4520698","33.9237128"],["-111.4509585","33.924131"],["-111.4505173","33.9243032"],["-111.4501818","33.9244438"],["-111.4494636","33.9247798"],["-111.4492063","33.924916"],["-111.4485806","33.9252712"],["-111.4464748","33.9265318"],["-111.4460895","33.9267702"],["-111.4456524","33.9270712"],["-111.4454495","33.9272192"],["-111.4452614","33.9273663"],["-111.4447271","33.9278223"],["-111.4445452","33.927991"],["-111.4443244","33.9282141"],["-111.4441256","33.9284233"],["-111.4439186","33.9286603"],["-111.4437178","33.928903"],["-111.4435279","33.9291499"],["-111.4433259","33.9294357"],["-111.4431485","33.9297017"],["-111.4430246","33.9299051"],["-111.4429067","33.9301124"],["-111.442784","33.9303435"],["-111.4426564","33.9306002"],["-111.4425107","33.9309253"],["-111.4405201","33.9358333"],["-111.4404445","33.9360384"],["-111.4403731","33.9362438"],["-111.4403132","33.9364542"],["-111.4402606","33.9366763"],["-111.4402189","33.9368871"],["-111.4401891","33.9371037"],["-111.4401718","33.9373303"],["-111.4401709","33.9375388"],["-111.4401766","33.937764"],["-111.4401993","33.9379941"],["-111.4402281","33.9382005"],["-111.4402721","33.9384263"],["-111.4403263","33.9386354"],["-111.4403954","33.9388512"],["-111.4404713","33.9390548"],["-111.4405448","33.9392301"],["-111.4418658","33.9419103"],["-111.4420608","33.9423235"],["-111.4421375","33.9425228"],["-111.4422093","33.9427595"],["-111.4422534","33.9429802"],["-111.4422848","33.9431852"],["-111.4422958","33.9434062"],["-111.4422941","33.9436298"],["-111.4422692","33.9438616"],["-111.4422241","33.9440982"],["-111.4421624","33.9443217"],["-111.4420957","33.9445028"],["-111.4420069","33.9446929"],["-111.4418992","33.9448903"],["-111.4417736","33.9450892"],["-111.4416304","33.9452849"],["-111.4414752","33.945458"],["-111.441297","33.9456336"],["-111.4411142","33.9457921"],["-111.4409041","33.9459477"],["-111.4407027","33.9460809"],["-111.4404814","33.9462043"],["-111.4402657","33.9463108"],["-111.4400466","33.946404"],["-111.4398097","33.9464895"],["-111.4395682","33.9465601"],["-111.4393184","33.9466175"],["-111.4390587","33.9466617"],["-111.4387893","33.9466928"],["-111.4385268","33.9467095"],["-111.4382635","33.9467118"],["-111.4379989","33.946697"],["-111.4377304","33.946667"],["-111.4374751","33.9466286"],["-111.4340792","33.9459499"],["-111.4337959","33.945906"],["-111.4332684","33.9458377"],["-111.4327729","33.945787"],["-111.4322412","33.9457515"],["-111.4317256","33.9457315"],["-111.4311876","33.9457286"],["-111.4303816","33.9457543"],["-111.4298528","33.9457899"],["-111.4290812","33.9458699"],["-111.4267724","33.9462722"],["-111.4260046","33.946461"],["-111.4256349","33.9465669"],["-111.4252581","33.9466865"],["-111.4245128","33.9469487"],["-111.4241842","33.9470811"],["-111.4234544","33.9474004"],["-111.4231275","33.9475593"],["-111.4228386","33.9477074"],["-111.4223802","33.947958"],["-111.4221391","33.9481003"],["-111.4218224","33.9482956"],["-111.4215203","33.9484943"],["-111.4207903","33.9489992"],["-111.4204951","33.9492014"],["-111.4202762","33.949332"],["-111.4200585","33.9494505"],["-111.4198187","33.9495696"],["-111.4195898","33.9496711"],["-111.4190792","33.94987"],["-111.4183725","33.9501235"],["-111.4180408","33.9502486"],["-111.4175136","33.9504706"],["-111.4116991","33.9531646"],["-111.4111938","33.9534107"],["-111.4109838","33.9535294"],["-111.410775","33.9536621"],["-111.4105813","33.9538056"],["-111.4103969","33.9539602"],["-111.4102229","33.9541261"],["-111.4100605","33.9543071"],["-111.4099205","33.9544897"],["-111.4097947","33.954682"],["-111.4096818","33.9548778"],["-111.4095856","33.9550748"],["-111.4092294","33.9559445"],["-111.4091392","33.9561421"],["-111.4090294","33.9563398"],["-111.4089038","33.9565378"],["-111.4087476","33.9567423"],["-111.4085596","33.9569531"],["-111.4083826","33.95712"],["-111.4081993","33.9572716"],["-111.4080179","33.9574081"],["-111.4078075","33.9575422"],["-111.4075974","33.9576572"],["-111.4073601","33.9577704"],["-111.4071151","33.9578705"],["-111.4066355","33.9580278"],["-111.404821","33.9585645"],["-111.4044877","33.9586438"],["-111.404113","33.9587111"],["-111.4036832","33.9587586"],["-111.4025492","33.9588594"],["-111.4020897","33.9589117"],["-111.4017326","33.9589771"],["-111.4014443","33.9590471"],["-111.4011265","33.9591524"],["-111.4008551","33.9592653"],["-111.4004661","33.9594638"],["-111.3994373","33.9599982"],["-111.3990829","33.9601507"],["-111.3987025","33.9602774"],["-111.3983225","33.9603676"],["-111.397941","33.9604261"],["-111.3975852","33.96045"],["-111.3963203","33.9604436"],["-111.3952533","33.9604398"],["-111.3943547","33.960443"],["-111.3939847","33.960468"],["-111.3936744","33.9605199"],["-111.3933287","33.9606072"],["-111.3930524","33.9607089"],["-111.3927304","33.9608544"],["-111.3924504","33.9610258"],["-111.3922067","33.9612105"],["-111.3919603","33.9614358"],["-111.3917234","33.961702"],["-111.3914331","33.9621271"],["-111.3910698","33.9626693"],["-111.3907863","33.9630621"],["-111.3905595","33.9633261"],["-111.3903157","33.9635591"],["-111.3900782","33.9637547"],["-111.3892491","33.9643879"],["-111.3889404","33.9646581"],["-111.3887166","33.9648869"],["-111.3885342","33.9651011"],["-111.3883798","33.9653343"],["-111.3882474","33.9655752"],["-111.3881451","33.9658239"],["-111.3880622","33.9660777"],["-111.3880054","33.9663487"],["-111.3879545","33.9666947"],["-111.3879116","33.9670785"],["-111.3878615","33.9674837"],["-111.387803","33.9678549"],["-111.3877365","33.9681414"],["-111.3876508","33.9684327"],["-111.3875651","33.968688"],["-111.3873907","33.9691104"],["-111.3872146","33.969453"],["-111.3870296","33.9697658"],["-111.3868255","33.9700681"],["-111.3865683","33.9703968"],["-111.3863076","33.9706974"],["-111.3860121","33.9709943"],["-111.3850404","33.9719231"],["-111.3848261","33.9721752"],["-111.3846153","33.9724696"],["-111.3844367","33.9727612"],["-111.3843041","33.9730525"],["-111.3842159","33.9732749"],["-111.3841441","33.9735133"],["-111.3840939","33.97374"],["-111.3840559","33.9740397"],["-111.3840429","33.9743718"],["-111.384058","33.9746938"],["-111.3841087","33.9750135"],["-111.3841965","33.9753421"],["-111.384274","33.9755688"],["-111.3851931","33.9776184"],["-111.3855214","33.9783426"],["-111.3856376","33.9786606"],["-111.3857185","33.9789673"],["-111.3857732","33.9792879"],["-111.3857948","33.9795398"],["-111.3857952","33.9797631"],["-111.3857812","33.979984"],["-111.3857549","33.9802188"],["-111.3857063","33.9804573"],["-111.3856311","33.9807037"],["-111.3855343","33.9809738"],["-111.3854153","33.981221"],["-111.3852392","33.9815258"],["-111.3850449","33.9818016"],["-111.3848255","33.9820599"],["-111.3845474","33.9823355"],["-111.3835892","33.983211"],["-111.3833784","33.9834452"],["-111.3831964","33.9836803"],["-111.3830185","33.9839684"],["-111.3828774","33.9842703"],["-111.3827751","33.9845728"],["-111.3827145","33.9848944"],["-111.382688","33.9851381"],["-111.3826905","33.9853775"],["-111.3827171","33.9856633"],["-111.3827625","33.985924"],["-111.3830404","33.987227"],["-111.3831014","33.9875702"],["-111.3831323","33.9878948"],["-111.3831257","33.9881884"],["-111.3830956","33.9884972"],["-111.3830392","33.9887659"],["-111.3829599","33.9890287"],["-111.3828845","33.9892445"],["-111.3827774","33.9894722"],["-111.3826396","33.989727"],["-111.3824833","33.98996"],["-111.3822825","33.9902081"],["-111.3820447","33.9904658"],["-111.381771","33.990705"],["-111.3814762","33.9909249"],["-111.3811553","33.9911268"],["-111.3808325","33.9912955"],["-111.3804856","33.9914408"],["-111.3801296","33.9915605"],["-111.3797663","33.9916503"],["-111.3793576","33.9917282"],["-111.378971","33.9917688"],["-111.378566","33.9917817"],["-111.3781708","33.9917649"],["-111.3777793","33.9917214"],["-111.3773183","33.9916402"],["-111.3767074","33.9915169"],["-111.3761539","33.9914102"],["-111.3758152","33.9913659"],["-111.3754814","33.9913523"],["-111.3751865","33.9913495"],["-111.3732741","33.9914567"],["-111.3722088","33.9915234"],["-111.3718753","33.9915708"],["-111.3715455","33.9916386"],["-111.3712483","33.991725"],["-111.3709102","33.9918552"],["-111.3706105","33.9919961"],["-111.3703371","33.9921614"],["-111.3700852","33.9923335"],["-111.369837","33.992546"],["-111.3695987","33.9927896"],["-111.3693802","33.9930671"],["-111.3692024","33.9933519"],["-111.3690547","33.993657"],["-111.3686809","33.9945147"],["-111.368509","33.9948516"],["-111.3683499","33.9950971"],["-111.3681944","33.9952947"],["-111.3680283","33.9954822"],["-111.36779","33.9956908"],["-111.3675119","33.9959091"],["-111.3672009","33.9961003"],["-111.3668646","33.9962666"],["-111.3665061","33.9964058"],["-111.3661514","33.996509"],["-111.365002","33.9967919"],["-111.3646471","33.9968942"],["-111.3643686","33.9969931"],["-111.3640543","33.9971357"],["-111.3637812","33.9972834"],["-111.3609024","33.9991409"],["-111.360567","33.9994061"],["-111.3602404","33.9997041"],["-111.3599442","34.0000165"],["-111.3596771","34.0003606"],["-111.3589901","34.0013008"],["-111.35867","34.0017204"],["-111.3583769","34.0020796"],["-111.3580531","34.0024443"],["-111.3571679","34.0034069"],["-111.35693","34.0036941"],["-111.3567616","34.0039469"],["-111.3565971","34.0042213"],["-111.3564459","34.0045102"],["-111.3563541","34.0047298"],["-111.3562532","34.0050109"],["-111.3561682","34.0053164"],["-111.3561065","34.0056205"],["-111.3560683","34.0059325"],["-111.3560619","34.0062783"],["-111.356069","34.0065785"],["-111.3561134","34.0068893"],["-111.356167","34.0071811"],["-111.3562265","34.0074119"],["-111.3563079","34.0076517"],["-111.3564358","34.0079698"],["-111.356625","34.0083344"],["-111.3568163","34.0086387"],["-111.3570297","34.0089302"],["-111.3572422","34.0091878"],["-111.3574469","34.0093891"],["-111.3577162","34.0096383"],["-111.3581161","34.009987"],["-111.3584806","34.0103132"],["-111.3587325","34.0105686"],["-111.358912","34.0107848"],["-111.3591023","34.0110468"],["-111.3592706","34.0113345"],["-111.3594077","34.0116325"],["-111.3595257","34.0119578"],["-111.3596073","34.0122795"],["-111.3596481","34.0125988"],["-111.3596711","34.0129167"],["-111.3596537","34.0132358"],["-111.3596128","34.0135179"],["-111.3595607","34.013754"],["-111.3594864","34.0140012"],["-111.3593519","34.0143287"],["-111.3589795","34.0151737"],["-111.3587155","34.015801"],["-111.3585682","34.0162166"],["-111.3584654","34.0165897"],["-111.3583862","34.0169551"],["-111.3583288","34.0172863"],["-111.3582919","34.0176669"],["-111.3582943","34.018014"],["-111.3583297","34.0183551"],["-111.3583956","34.0186975"],["-111.3585187","34.0190943"],["-111.3586538","34.0194569"],["-111.3588739","34.0199026"],["-111.3592445","34.0205758"],["-111.3598098","34.0216237"],["-111.3610772","34.0236716"],["-111.3615871","34.0245572"],["-111.3620105","34.0253255"],["-111.3626579","34.0265839"],["-111.3652163","34.0317682"],["-111.3696164","34.0406176"],["-111.3697788","34.040967"],["-111.3698979","34.0412789"],["-111.3699958","34.041564"],["-111.3700793","34.0418602"],["-111.3701522","34.0421823"],["-111.3702062","34.0425051"],["-111.3702408","34.042807"],["-111.3702731","34.0431554"],["-111.3702851","34.0435166"],["-111.370279","34.0438492"],["-111.370251","34.0441642"],["-111.3702013","34.0445019"],["-111.3701377","34.0448331"],["-111.3700584","34.0451695"],["-111.3699539","34.0454864"],["-111.3698387","34.0457995"],["-111.3697","34.0461114"],["-111.3695412","34.0464167"],["-111.36315","34.0572089"],["-111.3622885","34.0587276"],["-111.3620625","34.0591634"],["-111.3617254","34.0598614"],["-111.3613898","34.0605921"],["-111.3609355","34.0616492"],["-111.3605991","34.062542"],["-111.3604228","34.0630498"],["-111.3601027","34.0640969"],["-111.3538488","34.0888033"],["-111.3537541","34.0892075"],["-111.353691","34.0895169"],["-111.3536304","34.0898568"],["-111.3535329","34.0904864"],["-111.3534943","34.0908118"],["-111.3534475","34.0915103"],["-111.353437","34.0919386"],["-111.3534388","34.0925231"],["-111.3534447","34.0935787"],["-111.3534474","34.094233"],["-111.3534474","34.0947339"],["-111.3534638","34.0958854"],["-111.3535274","34.1097133"],["-111.353526","34.1101774"],["-111.3535099","34.1106156"],["-111.3534805","34.110961"],["-111.353431","34.1112392"],["-111.3533695","34.1115003"],["-111.3532708","34.1118263"],["-111.3531632","34.1121316"],["-111.3530369","34.1124369"],["-111.3528883","34.1127356"],["-111.3527108","34.1130239"],["-111.3525131","34.1133112"],["-111.3523009","34.11358"],["-111.3520734","34.1138527"],["-111.3518093","34.1141398"],["-111.3513044","34.1146735"],["-111.3452174","34.1211326"],["-111.3444732","34.1218934"],["-111.344058","34.1222898"],["-111.3437546","34.122533"],["-111.3434469","34.1227395"],["-111.3431417","34.1229362"],["-111.3428217","34.1231123"],["-111.3411697","34.1239534"],["-111.340141","34.124495"],["-111.3388473","34.1252296"],["-111.338111","34.1256849"],["-111.3369523","34.1265084"],["-111.3363988","34.1269784"],["-111.335564","34.1277611"],["-111.3349204","34.128386"],["-111.3339507","34.1295099"],["-111.3335967","34.1299724"],["-111.3332974","34.130422"],["-111.3324048","34.1319927"],["-111.3319889","34.1327639"],["-111.3315954","34.1336004"],["-111.3310455","34.134686"],["-111.3291599","34.1383381"],["-111.3288675","34.1388422"],["-111.3286276","34.1391615"],["-111.3283451","34.1394697"],["-111.3280596","34.1397394"],["-111.3277627","34.1400022"],["-111.3274082","34.1402787"],["-111.327003","34.14056"],["-111.3265143","34.1408763"],["-111.3260787","34.1411621"],["-111.325761","34.1414008"],["-111.3247749","34.1422032"],["-111.3240908","34.1426871"],["-111.3233694","34.1431803"],["-111.322568","34.1437263"],["-111.3211622","34.1447155"],["-111.3197692","34.1457157"],["-111.3186791","34.1464746"],["-111.3178211","34.1470626"],["-111.3176211","34.1472363"],["-111.3174322","34.1474282"],["-111.3170202","34.147911"],["-111.316701","34.1483012"],["-111.3164461","34.1486523"],["-111.3162634","34.1489793"],["-111.316046","34.1494258"],["-111.3159039","34.1497726"],["-111.3158235","34.1500827"],["-111.3157495","34.1505341"],["-111.3156648","34.1511109"],["-111.3156279","34.1514917"],["-111.315629","34.1517257"],["-111.315762","34.1527723"],["-111.31581","34.1530115"],["-111.3158817","34.1532548"],["-111.3159653","34.1534811"],["-111.3160622","34.1537036"],["-111.3162023","34.1539537"],["-111.3165074","34.1544145"],["-111.3168209","34.1548781"],["-111.3172938","34.1554771"],["-111.3211031","34.1595411"],["-111.3222105","34.1607148"],["-111.3230643","34.1615883"],["-111.3235406","34.1620306"],["-111.3239242","34.1623306"],["-111.3242431","34.1625494"],["-111.3245838","34.1627628"],["-111.3249932","34.1629863"],["-111.3253451","34.1631704"],["-111.32566","34.1633194"],["-111.3260164","34.1634786"],["-111.3263826","34.1636148"],["-111.3267446","34.1637409"],["-111.3271383","34.1638593"],["-111.3274721","34.1639486"],["-111.3279191","34.1640497"],["-111.3282033","34.1641012"],["-111.3284544","34.1641428"],["-111.3294785","34.1642902"],["-111.3298627","34.1643507"],["-111.3302671","34.1644278"],["-111.3306444","34.1645232"],["-111.3310488","34.1646529"],["-111.3314021","34.1647778"],["-111.3317687","34.16494"],["-111.3321063","34.1651112"],["-111.3324119","34.1652964"],["-111.332715","34.1654979"],["-111.3330083","34.1657173"],["-111.333299","34.1659557"],["-111.3335554","34.1661938"],["-111.3337763","34.1664495"],["-111.3339906","34.1667446"],["-111.3342354","34.1671286"],["-111.3355771","34.1694633"],["-111.3370943","34.1721359"],["-111.3374399","34.1727554"],["-111.337587","34.1730499"],["-111.3377264","34.1733674"],["-111.3378429","34.1736867"],["-111.3379287","34.1740065"],["-111.3379883","34.1743286"],["-111.3380229","34.1746481"],["-111.3380359","34.1749654"],["-111.3380338","34.1752523"],["-111.3380214","34.1754257"],["-111.3380006","34.1756156"],["-111.3379721","34.1757729"],["-111.3378665","34.1762855"],["-111.3377718","34.176595"],["-111.337638","34.1769298"],["-111.3374392","34.1773443"],["-111.3372126","34.1777834"],["-111.3369407","34.1782911"],["-111.336595","34.1789197"],["-111.3361941","34.1796696"],["-111.3356713","34.18064"],["-111.3342776","34.1831872"],["-111.334012","34.1836883"],["-111.330663","34.1898898"],["-111.3299924","34.1910955"],["-111.3294789","34.1920175"],["-111.3292688","34.1924369"],["-111.3290408","34.1929086"],["-111.3288971","34.1932312"],["-111.3287812","34.1935526"],["-111.328693","34.193873"],["-111.3286421","34.1942091"],["-111.3285943","34.1946128"],["-111.328567","34.1949497"],["-111.3285767","34.1952845"],["-111.3286095","34.195608"],["-111.3286578","34.1959496"],["-111.3287282","34.1962613"],["-111.3288194","34.1965828"],["-111.3289484","34.1969102"],["-111.329142","34.1973292"],["-111.3294282","34.1978825"],["-111.3296924","34.1984222"],["-111.3301985","34.1995461"],["-111.3303736","34.1999604"],["-111.3304934","34.2002722"],["-111.3306035","34.2005904"],["-111.3307139","34.2010396"],["-111.330812","34.2015061"],["-111.3309114","34.2020217"],["-111.3309796","34.2024118"],["-111.3310367","34.2027851"],["-111.3310773","34.2031168"],["-111.3311026","34.2034315"],["-111.3311296","34.2039334"],["-111.3314787","34.2098122"],["-111.3315168","34.2107695"],["-111.3315653","34.2117338"],["-111.3319805","34.2194111"],["-111.3321555","34.2225393"],["-111.3321762","34.2231443"],["-111.3321739","34.2234605"],["-111.3321524","34.2236944"],["-111.3321211","34.2238811"],["-111.3320935","34.2240245"],["-111.3320644","34.2241417"],["-111.3320297","34.2242532"],["-111.3319811","34.2243791"],["-111.3319603","34.2244532"],["-111.33196","34.2245247"],["-111.3318865","34.2246762"],["-111.3317502","34.2249107"],["-111.3315727","34.2251872"],["-111.33136","34.2254534"],["-111.3311863","34.2256371"],["-111.3308998","34.2259165"],["-111.3307121","34.2260853"],["-111.3304339","34.2263148"],["-111.330151","34.2265456"],["-111.3293526","34.227175"],["-111.3275084","34.228663"],["-111.327213","34.2289008"],["-111.3263829","34.2295893"],["-111.3260796","34.2298424"],["-111.325821","34.2300596"],["-111.325603","34.230266"],["-111.3252072","34.230679"],["-111.3245801","34.2314049"],["-111.3242678","34.2318826"],["-111.3241256","34.2321416"],["-111.3239107","34.2325342"],["-111.3237428","34.2329043"],["-111.3235934","34.2332616"],["-111.3234487","34.2336973"],["-111.3233794","34.2339606"],["-111.3232609","34.2344856"],["-111.3232322","34.2346551"],["-111.3231789","34.2352052"],["-111.3230428","34.2395805"],["-111.3229629","34.2397256"],["-111.3229015","34.2416931"],["-111.3229588","34.2418676"],["-111.322891","34.2432869"],["-111.3228628","34.2433957"],["-111.3228359","34.2435323"],["-111.3228008","34.2442373"],["-111.3227372","34.2457158"],["-111.3228018","34.2459753"],["-111.3227897","34.2463286"],["-111.3227423","34.2476431"],["-111.3224496","34.2562345"],["-111.3224431","34.2566517"],["-111.3224467","34.2567786"],["-111.3224027","34.2568582"],["-111.3224361","34.2571157"],["-111.3224361","34.2571982"],["-111.3224195","34.257271"],["-111.3223924","34.2573219"],["-111.3223404","34.2574014"],["-111.3223125","34.2574209"],["-111.322288","34.2574395"],["-111.3222672","34.2574593"],["-111.3222493","34.2574821"],["-111.3222351","34.2575061"],["-111.3222252","34.2575321"],["-111.3222183","34.2575581"],["-111.3222161","34.2575846"],["-111.3222171","34.2576118"],["-111.3222235","34.2576382"],["-111.3222335","34.257664"],["-111.3222465","34.2576891"],["-111.3222622","34.2577095"],["-111.3222724","34.2577235"],["-111.322308","34.2578044"],["-111.3223265","34.257869"],["-111.3223345","34.25794"],["-111.3223332","34.2580443"],["-111.3223149","34.2585517"],["-111.3223535","34.258858"],["-111.3222663","34.2620875"],["-111.3226395","34.2622142"],["-111.3229414","34.262268"],["-111.3235166","34.262482"],["-111.3241827","34.2627415"],["-111.3246613","34.262939"],["-111.3248946","34.2630556"],["-111.3249946","34.2631339"],["-111.3250114","34.2630257"],["-111.3251231","34.2628244"],["-111.325158","34.2627174"],["-111.3251649","34.2625434"],["-111.3251416","34.2622733"],["-111.3251491","34.2622222"],["-111.3251846","34.2621816"],["-111.3252449","34.2621556"],["-111.3253293","34.2621432"],["-111.3254071","34.262158"],["-111.3257081","34.2622696"],["-111.3263646","34.262545"],["-111.3262047","34.2629093"],["-111.3261062","34.2630109"],["-111.3261061","34.2630113"],["-111.3262033","34.2629112"],["-111.326365","34.2625459"],["-111.3257438","34.2622832"],["-111.3254061","34.2621579"],["-111.3253297","34.2621432"],["-111.3252437","34.2621559"],["-111.3251841","34.2621819"],["-111.3251493","34.2622221"],["-111.3251417","34.2622739"],["-111.3251649","34.2625429"],["-111.325158","34.2627183"],["-111.3251233","34.2628239"],["-111.3250117","34.2630256"],["-111.3249941","34.263134"],["-111.3248933","34.2630547"],["-111.3246517","34.2629346"],["-111.3241278","34.2627194"],["-111.3235571","34.2624972"],["-111.3229356","34.2622662"],["-111.3226408","34.2622142"],["-111.3222577","34.2622526"],["-111.3221544","34.2647353"],["-111.3221369","34.2654285"],["-111.3221445","34.2656556"],["-111.3220968","34.2657986"],["-111.3220895","34.2658621"],["-111.3220806","34.2659081"],["-111.3220678","34.2659485"],["-111.32205","34.2659788"],["-111.3220251","34.2660154"],["-111.3219701","34.2660914"],["-111.3219475","34.2661116"],["-111.3219245","34.2661323"],["-111.3219032","34.2661662"],["-111.3218875","34.266203"],["-111.3218777","34.2662455"],["-111.3218818","34.266286"],["-111.3219012","34.266333"],["-111.3219304","34.2663733"],["-111.3219344","34.2664376"],["-111.3219637","34.2665519"],["-111.3219919","34.2666755"],["-111.3220105","34.2667995"],["-111.3220218","34.2669177"],["-111.3220223","34.267081"],["-111.3220141","34.2675267"],["-111.3220524","34.2677054"],["-111.3220233","34.2686172"],["-111.3219468","34.2705429"],["-111.3218232","34.2732755"],["-111.3217999","34.2741841"],["-111.3217887","34.2749568"],["-111.321797","34.2753493"],["-111.3218255","34.2756121"],["-111.3218768","34.2759018"],["-111.3219478","34.2761907"],["-111.3220498","34.276487"],["-111.3221751","34.2767621"],["-111.3223393","34.2770488"],["-111.3224771","34.2772699"],["-111.32263","34.2774953"],["-111.3228177","34.2777297"],["-111.3232945","34.2782494"],["-111.3235914","34.2785036"],["-111.3238511","34.2787081"],["-111.3240848","34.2788604"],["-111.3243629","34.2790324"],["-111.324672","34.2791922"],["-111.3250138","34.2793568"],["-111.3253767","34.2794998"],["-111.3259114","34.2796643"],["-111.3265493","34.2798564"],["-111.3271153","34.2800268"],["-111.3277163","34.2802217"],["-111.3281676","34.2803973"],["-111.3285969","34.280587"],["-111.3290973","34.2808538"],["-111.3295933","34.281149"],["-111.3299938","34.2814028"],["-111.3306605","34.2819162"],["-111.3312201","34.2823909"],["-111.3327098","34.2836017"],["-111.3331031","34.2838779"],["-111.3334078","34.2840721"],["-111.3340625","34.2844455"],["-111.3346596","34.2847308"],["-111.335177","34.2849448"],["-111.3382376","34.2858905"],["-111.3388547","34.286132"],["-111.3394946","34.2864111"],["-111.3425399","34.2883163"],["-111.3433121","34.2888308"],["-111.3444427","34.289623"],["-111.3474641","34.2919535"],["-111.348091","34.2924463"],["-111.3499059","34.2938677"],["-111.3505649","34.2942986"],["-111.3511391","34.2946132"],["-111.3516964","34.2948515"],["-111.3523635","34.295126"],["-111.3541801","34.2958567"],["-111.3552982","34.2963162"],["-111.3556655","34.2965027"],["-111.3558867","34.2966361"],["-111.356145","34.2968214"],["-111.356374","34.2970069"],["-111.3565731","34.2972061"],["-111.356709","34.2973688"],["-111.3568187","34.297544"],["-111.3569218","34.2977298"],["-111.356999","34.2979654"],["-111.3571079","34.2983672"],["-111.357206","34.2990595"],["-111.3572937","34.2995727"],["-111.3573596","34.2998559"],["-111.3574328","34.3001095"],["-111.357606","34.300567"],["-111.3578186","34.3010216"],["-111.3584766","34.3022859"],["-111.3586386","34.3026328"],["-111.3587578","34.3029296"],["-111.3589181","34.3034188"],["-111.3590756","34.3040151"],["-111.3591853","34.3042798"],["-111.3593157","34.3045625"],["-111.3594454","34.304809"],["-111.3595997","34.3050266"],["-111.3598201","34.3052791"],["-111.3601518","34.3056272"],["-111.360564","34.3060394"],["-111.3607573","34.3062566"],["-111.3608652","34.3064132"],["-111.3609873","34.3066178"],["-111.3611002","34.3068279"],["-111.3611999","34.3071553"],["-111.3613974","34.3078633"],["-111.3615103","34.3081049"],["-111.3616242","34.3083265"],["-111.3617769","34.3085421"],["-111.3619293","34.3087251"],["-111.3621399","34.3089394"],["-111.3623597","34.3091155"],["-111.3625902","34.3092821"],["-111.3628827","34.3094356"],["-111.363319","34.3096105"],["-111.3643892","34.3100179"],["-111.3648448","34.3102098"],["-111.3650805","34.3103313"],["-111.3653423","34.3104749"],["-111.3665569","34.3112963"],["-111.3670462","34.3116367"],["-111.3677553","34.3121409"],["-111.36796","34.3122934"],["-111.3681177","34.3124484"],["-111.3682885","34.3126443"],["-111.3684242","34.3128374"],["-111.3686194","34.3131646"],["-111.3687579","34.3134027"],["-111.3688734","34.3135963"],["-111.3689761","34.3137339"],["-111.3690813","34.3138591"],["-111.3691882","34.313976"],["-111.3693454","34.3141224"],["-111.3695069","34.3142615"],["-111.3697666","34.3144333"],["-111.3700443","34.3145899"],["-111.3703569","34.3147368"],["-111.3706547","34.3148358"],["-111.3712545","34.3149864"],["-111.3718101","34.315129"],["-111.3723628","34.3152797"],["-111.3727423","34.3154069"],["-111.3729571","34.3155189"],["-111.3731557","34.3156373"],["-111.3734071","34.315799"],["-111.3736047","34.3159586"],["-111.3737708","34.3161474"],["-111.3739635","34.3163859"],["-111.3741733","34.3166906"],["-111.3743475","34.3169847"],["-111.374533","34.3172984"],["-111.3746741","34.317488"],["-111.3749616","34.31777"],["-111.3751379","34.3179008"],["-111.3752936","34.3180081"],["-111.3756954","34.3182208"],["-111.3760023","34.3183275"],["-111.3763167","34.3184206"],["-111.3766181","34.3184752"],["-111.3769434","34.3185203"],["-111.3776157","34.3185529"],["-111.3798751","34.3186475"],["-111.3801491","34.3186342"],["-111.380405","34.3186082"],["-111.3806312","34.3185757"],["-111.3808462","34.3185264"],["-111.3813796","34.31836"],["-111.381601","34.3182473"],["-111.3817956","34.3181414"],["-111.3821974","34.3178897"],["-111.3825695","34.3175352"],["-111.3832314","34.3169259"],["-111.3836296","34.3166394"],["-111.3838306","34.3165354"],["-111.384034","34.3164356"],["-111.3842219","34.316364"],["-111.3844077","34.3162976"],["-111.3846079","34.3162427"],["-111.3851795","34.3161461"],["-111.3853945","34.316128"],["-111.3871241","34.3161743"],["-111.3883374","34.3162364"],["-111.3886069","34.3162582"],["-111.3889004","34.3163078"],["-111.3891889","34.3163712"],["-111.3894838","34.3164517"],["-111.390263","34.3166954"],["-111.3905443","34.3167774"],["-111.3907044","34.3168186"],["-111.3908613","34.3168517"],["-111.391143","34.3168832"],["-111.3914782","34.3169067"],["-111.3917652","34.3169014"],["-111.3920352","34.3168885"],["-111.392299","34.3168639"],["-111.3932008","34.3166998"],["-111.394642","34.3164665"],["-111.3960525","34.3163754"],["-111.3993978","34.3161938"],["-111.3999973","34.3161698"],["-111.4004819","34.3161895"],["-111.4008581","34.3162157"],["-111.4012526","34.3162586"],["-111.4016311","34.3163176"],["-111.4020458","34.3164117"],["-111.4025278","34.3165376"],["-111.4031262","34.3167487"],["-111.403652","34.3169826"],["-111.4041402","34.3172329"],["-111.4049481","34.3177304"],["-111.4058888","34.3183194"],["-111.4063679","34.3185717"],["-111.4069997","34.3188514"],["-111.4074177","34.3190057"],["-111.4077711","34.3190998"],["-111.4081595","34.3191909"],["-111.4084587","34.3192455"],["-111.4090073","34.3192977"],["-111.4092535","34.3193099"],["-111.4095139","34.3193119"],["-111.4097624","34.319308"],["-111.4101094","34.3192871"],["-111.4104602","34.3192454"],["-111.4108183","34.3191884"],["-111.4117682","34.3189759"],["-111.4120387","34.3189446"],["-111.4122687","34.3189328"],["-111.4128783","34.318944"],["-111.4131743","34.3189908"],["-111.4134408","34.3190393"],["-111.4136854","34.3191128"],["-111.4139319","34.3191896"],["-111.4142071","34.3193108"],["-111.414395","34.3194021"],["-111.4146296","34.3195438"],["-111.4148444","34.3196815"],["-111.4150411","34.3198358"],["-111.4152143","34.3200082"],["-111.4153638","34.3201766"],["-111.4154845","34.3203382"],["-111.4156111","34.3205269"],["-111.4158559","34.3209299"],["-111.4168919","34.3226909"],["-111.417065","34.32303"],["-111.4171672","34.3232846"],["-111.4172753","34.3235915"],["-111.4174212","34.3240674"],["-111.4175247","34.3244823"],["-111.4176448","34.3250173"],["-111.4181509","34.3275169"],["-111.4182746","34.3280906"],["-111.4184686","34.328838"],["-111.4187221","34.3296918"],["-111.4193358","34.3314068"],["-111.4194776","34.3318307"],["-111.4196421","34.3323007"],["-111.4206734","34.335074"],["-111.4211791","34.3363983"],["-111.4218369","34.3381514"],["-111.4221098","34.338838"],["-111.4223043","34.3392155"],["-111.4225371","34.3395621"],["-111.4227669","34.33987"],["-111.4229376","34.3400709"],["-111.4231424","34.3402791"],["-111.4234158","34.3405347"],["-111.4237997","34.3408378"],["-111.4242332","34.3411828"],["-111.4247436","34.3416207"],["-111.4252758","34.3422569"],["-111.4256492","34.3428897"],["-111.4258645","34.3433323"],["-111.425994","34.343718"],["-111.4260787","34.3441312"],["-111.4261166","34.3444972"],["-111.4261349","34.3453907"],["-111.4261427","34.3464497"],["-111.4261098","34.3469218"],["-111.4260009","34.3474114"],["-111.4258647","34.3478147"],["-111.4257008","34.3481481"],["-111.4252968","34.3487842"],["-111.4251378","34.3492261"],["-111.4250226","34.3497167"],["-111.4249375","34.350117"],["-111.4249034","34.3505643"],["-111.4249077","34.3510795"],["-111.4251537","34.3535552"],["-111.4252843","34.3547326"],["-111.4252775","34.3553061"],["-111.4252338","34.3557454"],["-111.4248719","34.3570568"],["-111.4246702","34.3577958"],["-111.4245938","34.3582446"],["-111.4245675","34.3587405"],["-111.424585","34.3592063"],["-111.4246561","34.3596248"],["-111.4247897","34.3601655"],["-111.4250458","34.3606931"],["-111.4253082","34.3611559"],["-111.4257011","34.3616584"],["-111.426285","34.3622514"],["-111.4271218","34.3628634"],["-111.4277812","34.3632062"],["-111.4282695","34.3633981"],["-111.4289061","34.3635914"],["-111.4299595","34.3638735"],["-111.4305816","34.3640732"],["-111.4310804","34.364281"],["-111.4315897","34.3645754"],["-111.4322278","34.3650448"],["-111.4330858","34.3657882"],["-111.4336719","34.3662579"],["-111.4342735","34.3666832"],["-111.4348736","34.3670731"],["-111.435928","34.3676179"],["-111.4371929","34.3681881"],["-111.4419976","34.3702917"],["-111.4430915","34.3707933"],["-111.4440898","34.3712784"],["-111.4446699","34.3717074"],["-111.4450738","34.3720509"],["-111.4454838","34.372508"],["-111.4463002","34.3735396"],["-111.4468358","34.374182"],["-111.447486","34.3750416"],["-111.4478671","34.3755124"],["-111.4490735","34.377033"],["-111.4503205","34.3785909"],["-111.4507098","34.3790794"],["-111.4509951","34.3794653"],["-111.4512297","34.3798115"],["-111.4513507","34.3800213"],["-111.4514849","34.380277"],["-111.4516289","34.3806007"],["-111.4519932","34.3814293"],["-111.452101","34.3816419"],["-111.4524167","34.3821225"],["-111.4526213","34.3823777"],["-111.4528262","34.3825928"],["-111.4529886","34.3827482"],["-111.4531766","34.3829061"],["-111.4533496","34.3830465"],["-111.4535088","34.3831737"],["-111.4538076","34.3834373"],["-111.4538833","34.3835073"],["-111.4541595","34.3837726"],["-111.4543617","34.3839993"],["-111.4545296","34.384273"],["-111.4546896","34.3846139"],["-111.4547478","34.3848005"],["-111.4547912","34.3850158"],["-111.454819","34.3852479"],["-111.4548325","34.3855429"],["-111.4548247","34.386806"],["-111.4548244","34.3874601"],["-111.4548232","34.3898153"],["-111.4548349","34.3899661"],["-111.4548532","34.3901091"],["-111.4548739","34.3902212"],["-111.4548956","34.3903162"],["-111.454992","34.3905443"],["-111.4550342","34.3906263"],["-111.4550996","34.3907401"],["-111.4551803","34.3908572"],["-111.4552716","34.3909742"],["-111.4553598","34.3910714"],["-111.4554494","34.3911541"],["-111.4555572","34.3912479"],["-111.4556905","34.3913486"],["-111.4558571","34.3914611"],["-111.4561011","34.3915852"],["-111.4562721","34.3916599"],["-111.4564119","34.3917088"],["-111.4565577","34.3917532"],["-111.4567126","34.3917921"],["-111.4572586","34.3919115"],["-111.4579997","34.3920824"],["-111.4585518","34.3922646"],["-111.4590527","34.3924967"],["-111.4598589","34.3929732"],["-111.4608395","34.3934886"],["-111.4612232","34.3936683"],["-111.4614944","34.3937669"],["-111.4617325","34.3938319"],["-111.4619919","34.3938897"],["-111.4622627","34.393935"],["-111.4624911","34.3939631"],["-111.4627136","34.3939801"],["-111.4632224","34.3939793"],["-111.4638304","34.393975"],["-111.4651622","34.39397"],["-111.4656594","34.3940184"],["-111.4658823","34.3940654"],["-111.4664023","34.3942175"],["-111.466721","34.3943473"],["-111.4669565","34.3944664"],["-111.4672304","34.3946554"],["-111.4673921","34.3947946"],["-111.4675346","34.394927"],["-111.4677221","34.3951219"],["-111.4679581","34.395407"],["-111.4680937","34.3955965"],["-111.4682187","34.3958025"],["-111.4683556","34.3960483"],["-111.4684593","34.3962799"],["-111.4685497","34.3964981"],["-111.4686783","34.3969609"],["-111.4688908","34.3975269"],["-111.4689735","34.3977109"],["-111.4691212","34.3979405"],["-111.469311","34.3981608"],["-111.4696959","34.3985022"],["-111.4700676","34.3987498"],["-111.4702526","34.3988471"],["-111.4706237","34.3990081"],["-111.4713548","34.3993082"],["-111.4717527","34.3995022"],["-111.4721032","34.3997304"],["-111.4723384","34.3999225"],["-111.4725266","34.4001084"],["-111.4728436","34.4004299"],["-111.473011","34.4005746"],["-111.4731592","34.4006921"],["-111.4734188","34.4008699"],["-111.4738409","34.4011432"],["-111.4741083","34.4013299"],["-111.4743342","34.4015122"],["-111.4747252","34.4018686"],["-111.4751369","34.4022509"],["-111.4753705","34.4024547"],["-111.475552","34.4025971"],["-111.4757257","34.4027172"],["-111.4759698","34.4028727"],["-111.4762226","34.4030135"],["-111.4764415","34.4031274"],["-111.4768933","34.4033153"],["-111.4776692","34.4035911"],["-111.4778739","34.4036724"],["-111.4781196","34.4037957"],["-111.4782878","34.4038958"],["-111.478432","34.4039999"],["-111.4786546","34.4041775"],["-111.479392","34.404831"],["-111.4797006","34.4050802"],["-111.4799307","34.4052405"],["-111.4802039","34.40541"],["-111.4808439","34.4057281"],["-111.4814003","34.405949"],["-111.4817432","34.4060545"],["-111.4820576","34.406127"],["-111.4825586","34.4062191"],["-111.4829575","34.406267"],["-111.4835346","34.4062912"],["-111.4909411","34.4064616"],["-111.4915988","34.4064736"],["-111.4918119","34.4064918"],["-111.4919653","34.4065202"],["-111.4921186","34.4065581"],["-111.4922883","34.4066149"],["-111.4924168","34.4066713"],["-111.492539","34.4067331"],["-111.492676","34.4068398"],["-111.492819","34.4069382"],["-111.492898","34.4070155"],["-111.492976","34.4071081"],["-111.4930468","34.4072022"],["-111.4931252","34.4073507"],["-111.4931717","34.4074791"],["-111.493208","34.4076131"],["-111.4932302","34.4077113"],["-111.4932328","34.4078039"],["-111.4932365","34.4078796"],["-111.4932316","34.4079434"],["-111.4932343","34.4080168"],["-111.493204","34.4081217"],["-111.4931747","34.40821"],["-111.4931398","34.4082969"],["-111.4930992","34.40838"],["-111.4930182","34.4085123"],["-111.4928784","34.408722"],["-111.4926315","34.4090635"],["-111.492366","34.409425"],["-111.492074","34.4097998"],["-111.491695","34.410285"],["-111.4916333","34.4103645"],["-111.4909942","34.4111887"],["-111.4908101","34.4113968"],["-111.4906356","34.4115834"],["-111.4903849","34.4118296"],["-111.4901058","34.4120948"],["-111.489933","34.4122481"],["-111.4898389","34.4123441"],["-111.4897276","34.4124844"],["-111.4896607","34.4125978"],["-111.489612","34.4127224"],["-111.4895714","34.4128644"],["-111.4895613","34.4129961"],["-111.4895643","34.4131286"],["-111.4895906","34.413275"],["-111.4897356","34.4135598"],["-111.4898346","34.4136837"],["-111.4899697","34.4138056"],["-111.4901174","34.4138996"],["-111.4903056","34.4139846"],["-111.4904902","34.4140437"],["-111.4906679","34.4140856"],["-111.490856","34.4140941"],["-111.4914323","34.4140409"],["-111.4930521","34.4138816"],["-111.4933422","34.4138647"],["-111.4936448","34.4138606"],["-111.4939399","34.4138754"],["-111.494277","34.4139063"],["-111.4945587","34.4139403"],["-111.4948388","34.4139934"],["-111.4950988","34.4140555"],["-111.4953738","34.4141383"],["-111.4956259","34.4142278"],["-111.4958758","34.41433"],["-111.4961045","34.4144354"],["-111.4963223","34.4145534"],["-111.4965214","34.4146749"],["-111.4967058","34.4148013"],["-111.4968701","34.414928"],["-111.4970141","34.4150513"],["-111.4971514","34.4151799"],["-111.497295","34.4153416"],["-111.4974148","34.4154946"],["-111.497506","34.4156275"],["-111.4975839","34.415758"],["-111.4976508","34.4158929"],["-111.4977486","34.4161199"],["-111.4978595","34.4163833"],["-111.4979415","34.4165629"],["-111.4980124","34.4166821"],["-111.498098","34.4167863"],["-111.4981826","34.4168754"],["-111.4982879","34.4169557"],["-111.4984526","34.4170614"],["-111.4986602","34.417163"],["-111.4991823","34.4173538"],["-111.4996517","34.4175253"],["-111.5002369","34.417738"],["-111.5004353","34.4178243"],["-111.5005834","34.4178975"],["-111.5007054","34.4179704"],["-111.5008214","34.4180552"],["-111.5009289","34.4181547"],["-111.5010229","34.4182529"],["-111.5011169","34.418363"],["-111.5012183","34.4185548"],["-111.5012687","34.4187288"],["-111.5012858","34.4188745"],["-111.5012777","34.4190478"],["-111.5011967","34.4194138"],["-111.5010449","34.4200465"],["-111.5008166","34.421001"],["-111.5007909","34.4211338"],["-111.5007742","34.4212864"],["-111.5007751","34.4213885"],["-111.5007942","34.4214756"],["-111.5008426","34.4215513"],["-111.5009223","34.4216391"],["-111.5009975","34.4216835"],["-111.5010967","34.4217296"],["-111.5012052","34.4217563"],["-111.5013308","34.4217652"],["-111.5014348","34.4217583"],["-111.5015581","34.4217173"],["-111.5016446","34.4216688"],["-111.5017258","34.4216138"],["-111.5018649","34.4214658"],["-111.5021065","34.4211317"],["-111.5022712","34.4209175"],["-111.5024368","34.420745"],["-111.502601","34.4206057"],["-111.5028105","34.4204684"],["-111.5030045","34.420351"],["-111.503188","34.42026"],["-111.503364","34.4201816"],["-111.5035667","34.4201082"],["-111.5038003","34.4200301"],["-111.5041045","34.4199415"],["-111.5045133","34.4198389"],["-111.5048678","34.4197536"],["-111.5051707","34.4196948"],["-111.5053635","34.4196733"],["-111.5055743","34.4196782"],["-111.5057647","34.4196875"],["-111.5059558","34.4197142"],["-111.5061634","34.4197593"],["-111.5063609","34.4198214"],["-111.5065256","34.4198882"],["-111.5067083","34.4199785"],["-111.5068869","34.4200885"],["-111.5070699","34.4202233"],["-111.5072536","34.4203784"],["-111.5076407","34.4207323"],["-111.5079085","34.42098"],["-111.5081919","34.421244"],["-111.5082975","34.4213309"],["-111.5084136","34.42141"],["-111.5085388","34.4214753"],["-111.5086662","34.421525"],["-111.5088211","34.4215684"],["-111.508958","34.4215769"],["-111.509155","34.421566"],["-111.5094561","34.4215085"],["-111.5097881","34.4214153"],["-111.5100741","34.4213378"],["-111.510244","34.4213036"],["-111.5103779","34.4212817"],["-111.5105022","34.4212737"],["-111.5106819","34.4212804"],["-111.5108576","34.4213033"],["-111.5110359","34.4213392"],["-111.5111956","34.4213857"],["-111.5113248","34.4214406"],["-111.511463","34.4215057"],["-111.5116241","34.4215998"],["-111.51175","34.4216981"],["-111.5118611","34.4218088"],["-111.5119851","34.4219604"],["-111.5120738","34.4221016"],["-111.512141","34.4222215"],["-111.5121746","34.4223471"],["-111.5122135","34.4225138"],["-111.5122165","34.4226805"],["-111.5121905","34.4228702"],["-111.5120711","34.4232411"],["-111.5112255","34.4249304"],["-111.5101489","34.4270099"],["-111.5099191","34.4275067"],["-111.5097729","34.427959"],["-111.5095434","34.4288116"],["-111.5093103","34.4296104"],["-111.5090311","34.4301848"],["-111.5087676","34.430608"],["-111.5083614","34.4310882"],["-111.5079296","34.4314955"],["-111.5066585","34.4324954"],["-111.5059666","34.4330293"],["-111.5048132","34.4338541"],["-111.4926451","34.4407213"],["-111.492026","34.4410256"],["-111.49146","34.4412335"],["-111.4908278","34.4414182"],["-111.4903203","34.4415213"],["-111.4897038","34.4416104"],["-111.4891454","34.4416299"],["-111.4885028","34.4416243"],["-111.4878897","34.4415622"],["-111.4868849","34.4413804"],["-111.4851404","34.4409846"],["-111.4837277","34.4407141"],["-111.4831476","34.4406339"],["-111.4823771","34.4405466"],["-111.4814719","34.440475"],["-111.4805952","34.4404366"],["-111.479744","34.4404253"],["-111.478865","34.4404443"],["-111.4781714","34.4404794"],["-111.4776563","34.4405155"],["-111.4771153","34.4405569"],["-111.4692386","34.4412003"],["-111.4688127","34.4412733"],["-111.46845","34.4413642"],["-111.4681711","34.4414474"],["-111.4676192","34.441688"],["-111.4670442","34.4420319"],["-111.4658951","34.4429676"],["-111.465425","34.4432778"],["-111.4649691","34.4435004"],["-111.4644873","34.4436582"],["-111.4640521","34.4437347"],["-111.463536","34.4437536"],["-111.4630435","34.4437228"],["-111.4625349","34.4436148"],["-111.4619499","34.4434162"],["-111.4578283","34.4417055"],["-111.4571735","34.441491"],["-111.4567707","34.4414211"],["-111.4563384","34.4413867"],["-111.4559393","34.4413978"],["-111.4554829","34.4414584"],["-111.4551806","34.4415254"],["-111.4548731","34.441624"],["-111.454549","34.441761"],["-111.4542307","34.4419362"],["-111.4538628","34.4421918"],["-111.4534376","34.4425808"],["-111.4527156","34.4432863"],["-111.4515341","34.4444782"],["-111.4511744","34.4448891"],["-111.450787","34.4453692"],["-111.450313","34.4459849"],["-111.4482857","34.4493048"],["-111.4479719","34.4497965"],["-111.4475751","34.4504212"],["-111.4472647","34.4508652"],["-111.4466938","34.4516149"],["-111.4463486","34.4520039"],["-111.4460126","34.452356"],["-111.4456687","34.4526983"],["-111.4452288","34.4531309"],["-111.444805","34.4534512"],["-111.444379","34.4537177"],["-111.4438833","34.4539596"],["-111.4433803","34.4541507"],["-111.4430456","34.4542425"],["-111.4427163","34.4543147"],["-111.4423973","34.4543746"],["-111.4419931","34.4544274"],["-111.4416039","34.4544602"],["-111.4411572","34.4544697"],["-111.4406797","34.4544585"],["-111.4388129","34.4542189"],["-111.4385445","34.4551647"],["-111.4381831","34.456528"],["-111.438048","34.4570966"],["-111.4380164","34.4573913"],["-111.4380098","34.4576548"],["-111.4380339","34.4578818"],["-111.4381067","34.4581226"],["-111.4382931","34.4585047"],["-111.4384699","34.4587946"],["-111.4388876","34.4591761"],["-111.4394232","34.459531"],["-111.4399304","34.4597624"],["-111.440541","34.4600612"],["-111.4410669","34.4603849"],["-111.4418235","34.4611001"],["-111.4423726","34.4618048"],["-111.4425593","34.462328"],["-111.4427469","34.4629422"],["-111.4428719","34.4635388"],["-111.4431171","34.4640872"],["-111.4435411","34.4645854"],["-111.4439031","34.4648889"],["-111.4445035","34.4651764"],["-111.4455256","34.4656135"],["-111.446327","34.466094"],["-111.4468337","34.4665739"],["-111.447302","34.4671117"],["-111.4475973","34.4676453"],["-111.4478491","34.4682201"],["-111.4481719","34.4689764"],["-111.4592345","34.495499"],["-111.4604679","34.498462"],["-111.4611496","34.4993524"],["-111.4623133","34.5003245"],["-111.462743","34.5005316"],["-111.4632542","34.500935"],["-111.4640547","34.5014135"],["-111.4650834","34.5020129"],["-111.4660771","34.502582"],["-111.4672158","34.5032839"],["-111.4732386","34.5069259"],["-111.4739161","34.5073458"],["-111.4752158","34.5080617"],["-111.4767734","34.5087531"],["-111.4773591","34.5089728"],["-111.4787256","34.5095627"],["-111.4795737","34.5099686"],["-111.4803055","34.5104779"],["-111.4815055","34.5116969"],["-111.482164","34.5123097"],["-111.4828623","34.5127112"],["-111.4839797","34.5131029"],["-111.4866941","34.5134519"],["-111.4874592","34.5136285"],["-111.4880252","34.5139253"],["-111.4891802","34.5147524"],["-111.489938","34.515105"],["-111.4906228","34.5152477"],["-111.4913131","34.5152332"],["-111.4924226","34.5150049"],["-111.4934559","34.5147648"],["-111.4940413","34.5147123"],["-111.494925","34.5147827"],["-111.4958417","34.5151088"],["-111.4974206","34.5162167"],["-111.4983672","34.51671"],["-111.4992721","34.5169851"],["-111.4998101","34.5170679"],["-111.5003022","34.5171205"],["-111.5010482","34.5171135"],["-111.5036754","34.5169044"],["-111.5044056","34.5169994"],["-111.504989","34.5171938"],["-111.5054575","34.5174458"],["-111.5060371","34.5180252"],["-111.5071382","34.5197362"],["-111.5075765","34.5202201"],["-111.5081646","34.5206901"],["-111.5088651","34.5211116"],["-111.5099469","34.5214161"],["-111.510817","34.5215231"],["-111.5113152","34.5215324"],["-111.5118153","34.5214921"],["-111.5128603","34.5212804"],["-111.513831","34.5210905"],["-111.5149258","34.5208796"],["-111.5191062","34.5200717"],["-111.5210495","34.5196028"],["-111.5249451","34.518374"],["-111.5361519","34.5147057"],["-111.5376718","34.5142104"],["-111.5383721","34.5139441"],["-111.539025","34.5136347"],["-111.5397115","34.5132665"],["-111.5407234","34.5125504"],["-111.5418138","34.5117703"],["-111.5424866","34.5113872"],["-111.5431637","34.5111751"],["-111.5439021","34.5110774"],["-111.5453381","34.5110684"],["-111.5463331","34.5110995"],["-111.5468319","34.5110938"],["-111.5473423","34.5110768"],["-111.5478192","34.511017"],["-111.5483204","34.5109365"],["-111.548867","34.5108397"],["-111.5496726","34.5105834"],["-111.5518082","34.5098382"],["-111.5527699","34.509558"],["-111.553545","34.5094358"],["-111.5574717","34.5091393"],["-111.5591972","34.5088139"],["-111.5707796","34.5057876"],["-111.5721435","34.5054458"],["-111.5733389","34.5050838"],["-111.5744478","34.5046952"],["-111.5753465","34.5042911"],["-111.5760155","34.5038968"],["-111.5769509","34.5032567"],["-111.5774808","34.5029018"],["-111.5781833","34.5024347"],["-111.5790485","34.5018192"],["-111.597","34.4894468"],["-111.598","34.4887855"],["-111.598407","34.488562"],["-111.5989381","34.4883179"],["-111.5995275","34.4880958"],["-111.6002274","34.4878891"],["-111.600961","34.4877343"],["-111.6016058","34.4876476"],["-111.602092","34.4876092"],["-111.6024913","34.4875983"],["-111.6030662","34.4876133"],["-111.6057098","34.4877211"],["-111.6065945","34.4876831"],["-111.6072281","34.487611"],["-111.608077","34.4874495"],["-111.6094232","34.4870698"],["-111.6117724","34.4864038"],["-111.6124368","34.4862625"],["-111.6129488","34.4861964"],["-111.6133489","34.4861628"],["-111.6182222","34.4858993"],["-111.6190839","34.485864"],["-111.6198729","34.4859105"],["-111.6205769","34.486039"],["-111.6213059","34.4862269"],["-111.6222655","34.4865846"],["-111.6231024","34.4870617"],["-111.6238154","34.4876117"],["-111.6242052","34.4879945"],["-111.6274215","34.4919701"],["-111.6279181","34.4924629"],["-111.6286529","34.4930109"],["-111.6293263","34.4934352"],["-111.6299906","34.4937727"],["-111.6306538","34.4940325"],["-111.6314501","34.49428"],["-111.6325502","34.4945532"],["-111.6331077","34.4947328"],["-111.63354","34.4949409"],["-111.6340631","34.49538"],["-111.6342652","34.4956263"],["-111.6344689","34.4959782"],["-111.6345961","34.4963126"],["-111.6349303","34.4976239"],["-111.6351236","34.4980933"],["-111.6354791","34.4985229"],["-111.6357969","34.4987765"],["-111.6361175","34.4989819"],["-111.6369904","34.4993869"],["-111.6383176","34.4999223"],["-111.639511","34.5006081"],["-111.6407481","34.5014877"],["-111.6429034","34.5032107"],["-111.6435525","34.5037972"],["-111.6443974","34.5046669"],["-111.6448146","34.5050181"],["-111.6451414","34.5052206"],["-111.645459","34.5053917"],["-111.6464935","34.5058003"],["-111.6480228","34.5063017"],["-111.6486819","34.5064702"],["-111.6496937","34.5065834"],["-111.6519902","34.5067045"],["-111.6528639","34.5066842"],["-111.6537501","34.5066013"],["-111.6561627","34.5062465"],["-111.6567731","34.5062216"],["-111.6579994","34.5062937"],["-111.6602818","34.5064388"],["-111.6611925","34.5064812"],["-111.6618563","34.5064614"],["-111.6625935","34.5063997"],["-111.6636891","34.5062753"],["-111.6645249","34.5062347"],["-111.6660192","34.5062438"],["-111.6668867","34.5062006"],["-111.6679595","34.5061124"],["-111.6684915","34.5060363"],["-111.6689148","34.5059329"],["-111.6693131","34.505807"],["-111.6696536","34.5056543"],["-111.6698742","34.5055402"],["-111.6702594","34.505285"],["-111.6710484","34.5046143"],["-111.6719443","34.5037993"],["-111.6730711","34.502767"],["-111.6742661","34.5016874"],["-111.675077","34.5010034"],["-111.6757934","34.5006363"],["-111.6769783","34.5002786"],["-111.6774859","34.5001196"],["-111.6778633","34.4999427"],["-111.6781871","34.4997039"],["-111.6785256","34.4994136"],["-111.6790295","34.4988624"],["-111.6794729","34.4984999"],["-111.6797196","34.4983486"],["-111.6800389","34.4981915"],["-111.6808592","34.497886"],["-111.6812894","34.497688"],["-111.681675","34.4974082"],["-111.6818802","34.4972161"],["-111.6820738","34.4969596"],["-111.6823246","34.4965805"],["-111.6826088","34.4961749"],["-111.6828366","34.4959142"],["-111.6832248","34.4956085"],["-111.6843847","34.4949296"],["-111.6861229","34.4939428"],["-111.6876083","34.493089"],["-111.6896037","34.4919982"],["-111.690193","34.4917459"],["-111.6950265","34.4899692"],["-111.6956447","34.4896612"],["-111.6959633","34.4893673"],["-111.6962552","34.4890318"],["-111.6964838","34.4886199"],["-111.6966478","34.4880928"],["-111.6967298","34.4877322"],["-111.6969317","34.4873481"],["-111.6972643","34.4869252"],["-111.6977039","34.4865432"],["-111.6982163","34.4862863"],["-111.6988168","34.4861201"],["-111.6994477","34.4860567"],["-111.6999581","34.4860882"],["-111.7004655","34.4862045"],["-111.7009737","34.4864236"],["-111.7014433","34.486727"],["-111.7028913","34.4878655"],["-111.7033042","34.4882617"],["-111.7035417","34.4885988"],["-111.703733","34.4890812"],["-111.7039487","34.4898691"],["-111.704109","34.4903613"],["-111.7042762","34.4906938"],["-111.7045852","34.491105"],["-111.7048713","34.491363"],["-111.7054126","34.4916707"],["-111.7073924","34.4924977"],["-111.7079699","34.4926445"],["-111.7088206","34.4927619"],["-111.7098089","34.4928182"],["-111.7104","34.4928342"],["-111.7109908","34.4929451"],["-111.7116336","34.4931664"],["-111.7134826","34.493935"],["-111.7140342","34.4942148"],["-111.714504","34.4945986"],["-111.7159795","34.4962946"],["-111.716561","34.4967238"],["-111.7175991","34.4972283"],["-111.7181609","34.497559"],["-111.7186453","34.4980184"],["-111.7188698","34.498384"],["-111.7191431","34.4989649"],["-111.719444","34.4996705"],["-111.7196635","34.5000504"],["-111.7201739","34.5004955"],["-111.7211014","34.501088"],["-111.721547","34.5013524"],["-111.7218104","34.5015589"],["-111.7220609","34.501784"],["-111.7224953","34.5023465"],["-111.7229238","34.5028989"],["-111.723318","34.5032931"],["-111.7239158","34.5036408"],["-111.7246137","34.5039509"],["-111.7251121","34.5040779"],["-111.7262671","34.5042756"],["-111.7268533","34.5043986"],["-111.72727","34.5045714"],["-111.727829","34.5049379"],["-111.728898","34.5059127"],["-111.7295637","34.506409"],["-111.7302125","34.5067362"],["-111.7321637","34.5071696"],["-111.7396557","34.5087026"],["-111.7403503","34.5089391"],["-111.7408082","34.509238"],["-111.7412665","34.509697"],["-111.7423676","34.5109947"],["-111.7429622","34.511529"],["-111.7434934","34.5118697"],["-111.7442485","34.5122329"],["-111.7446822","34.5123835"],["-111.7451287","34.5125052"],["-111.7456362","34.5125937"],["-111.7463631","34.5126502"],["-111.7471597","34.5126124"],["-111.7478017","34.5125139"],["-111.7482657","34.5124025"],["-111.7488209","34.5122116"],["-111.7501916","34.5114493"],["-111.7578779","34.5066475"],["-111.7589072","34.5061004"],["-111.7593924","34.5059401"],["-111.7598349","34.5058608"],["-111.7603595","34.5057893"],["-111.7610871","34.5057607"],["-111.7617632","34.5058406"],["-111.7630043","34.5062289"],["-111.7702483","34.5090227"],["-111.7708817","34.5093895"],["-111.771412","34.5097776"],["-111.7718639","34.5102106"],["-111.7722943","34.5107133"],["-111.7725636","34.5111156"],["-111.7739523","34.513701"],["-111.7743627","34.5145643"],["-111.7746034","34.5151702"],["-111.7748556","34.5159352"],["-111.7750003","34.5165877"],["-111.7750612","34.5170347"],["-111.7751365","34.5176442"],["-111.7751065","34.5184475"],["-111.774985","34.5197221"],["-111.7749866","34.5201101"],["-111.774996","34.5202527"],["-111.7750096","34.5203793"],["-111.775053","34.5205374"],["-111.7753653","34.5212208"],["-111.7771139","34.5243732"],["-111.7775766","34.5252292"],["-111.7780003","34.5259526"],["-111.7783697","34.5263893"],["-111.7785014","34.5265272"],["-111.778596","34.5266172"],["-111.7786863","34.5266974"],["-111.778873","34.5268415"],["-111.7790961","34.5269919"],["-111.7793162","34.5271181"],["-111.7838173","34.5294853"],["-111.7840589","34.5296144"],["-111.7850739","34.5301225"],["-111.7855609","34.5303038"],["-111.7860201","34.5304118"],["-111.7863481","34.5304646"],["-111.7865773","34.5304847"],["-111.7868054","34.5304925"],["-111.7870589","34.5304854"],["-111.7872671","34.5304697"],["-111.7875847","34.5304297"],["-111.787805","34.5303888"],["-111.7881379","34.5303207"],["-111.8017031","34.5272646"],["-111.8023658","34.5271215"],["-111.8026205","34.5270854"],["-111.8028898","34.5270549"],["-111.8031398","34.5270484"],["-111.8033508","34.5270543"],["-111.8035908","34.5270702"],["-111.8037799","34.5270884"],["-111.803986","34.5271167"],["-111.8042011","34.527164"],["-111.8044364","34.5272302"],["-111.8046696","34.5273003"],["-111.8048917","34.5273844"],["-111.8050865","34.5274742"],["-111.8052811","34.5275703"],["-111.8054784","34.5276859"],["-111.8058352","34.5279352"],["-111.8119597","34.5331441"],["-111.8122067","34.5333279"],["-111.8124336","34.5334723"],["-111.8127289","34.5336409"],["-111.8130658","34.5338104"],["-111.8157564","34.5350965"],["-111.8162849","34.5353698"],["-111.8166838","34.5355868"],["-111.8170275","34.5357817"],["-111.8179352","34.536362"],["-111.8184259","34.5367089"],["-111.8191261","34.5372411"],["-111.8232352","34.5404679"],["-111.8275314","34.5438296"],["-111.8316723","34.5470507"],["-111.8330077","34.5477743"],["-111.8340262","34.5480044"],["-111.8350559","34.5480712"],["-111.836896","34.5480798"],["-111.8387988","34.5480467"],["-111.8462912","34.5480909"],["-111.8467317","34.548137"],["-111.8472452","34.5482345"],["-111.8476649","34.5483487"],["-111.8480326","34.5484624"],["-111.8487157","34.5487874"],["-111.8490406","34.5489754"],["-111.8493604","34.5491747"],["-111.8497527","34.5495015"],["-111.8528073","34.5522165"],["-111.8531518","34.5525348"],["-111.853407","34.5528643"],["-111.8535944","34.5531891"],["-111.8537204","34.5534937"],["-111.8538282","34.553833"],["-111.8539851","34.5547975"],["-111.8540643","34.5551352"],["-111.8541666","34.5554335"],["-111.8542356","34.5555988"],["-111.8543298","34.555793"],["-111.8544442","34.5559951"],["-111.8546314","34.556273"],["-111.8547511","34.5564326"],["-111.8548947","34.5565912"],["-111.8550539","34.5567457"],["-111.8552733","34.5569419"],["-111.8557364","34.5572645"],["-111.8561253","34.557477"],["-111.8566425","34.5577053"],["-111.8571686","34.5578936"],["-111.857721","34.5580197"],["-111.8583087","34.5580859"],["-111.8588185","34.5580912"],["-111.8599327","34.5580147"],["-111.865295","34.5575899"],["-111.8662809","34.5574596"],["-111.8669538","34.5572869"],["-111.8676624","34.5570693"],["-111.8698037","34.5562754"],["-111.8704359","34.5560879"],["-111.8710247","34.5559765"],["-111.8715529","34.5559172"],["-111.8720832","34.5559067"],["-111.8723786","34.5559136"],["-111.8726572","34.5559379"],["-111.8729387","34.5559716"],["-111.8732567","34.5560259"],["-111.8735681","34.5561012"],["-111.8738556","34.5561825"],["-111.8741292","34.5562764"],["-111.874402","34.5563793"],["-111.8748437","34.5565842"],["-111.87511","34.5567351"],["-111.8754116","34.5569298"],["-111.8756981","34.5571456"],["-111.8759981","34.5573841"],["-111.8760777","34.557532"],["-111.8762513","34.5577278"],["-111.8764319","34.5579369"],["-111.8765983","34.5581533"],["-111.8767674","34.5584173"],["-111.8769206","34.558697"],["-111.8770407","34.558964"],["-111.8771372","34.5592127"],["-111.8772084","34.5594681"],["-111.8772662","34.5597329"],["-111.8789123","34.5688527"],["-111.8789921","34.5692415"],["-111.8790834","34.5695555"],["-111.8791762","34.5698392"],["-111.8792874","34.5701309"],["-111.8794322","34.5704538"],["-111.8795867","34.5707671"],["-111.8797944","34.5711274"],["-111.8811497","34.573262"],["-111.8815055","34.5738278"],["-111.8817195","34.5741394"],["-111.8818617","34.5743284"],["-111.8819912","34.5744414"],["-111.8820784","34.5745482"],["-111.8820963","34.5746412"],["-111.8821096","34.5747107"],["-111.882083","34.5748071"],["-111.8820513","34.5748597"],["-111.8820453","34.5749137"],["-111.8820498","34.5749532"],["-111.882054","34.5749657"],["-111.8820812","34.5750243"],["-111.8821461","34.5750747"],["-111.8822504","34.5751712"],["-111.8823399","34.575273"],["-111.8824848","34.5754786"],["-111.8830763","34.5764733"],["-111.883097","34.5766911"],["-111.883079","34.5767933"],["-111.8829769","34.5769385"],["-111.8828582","34.577036"],["-111.8827072","34.5771761"],["-111.8825865","34.5773193"],["-111.8825141","34.5774532"],["-111.8824659","34.5775571"],["-111.8824086","34.5777207"],["-111.8823784","34.5778209"],["-111.8823611","34.5779246"],["-111.8823656","34.5782508"],["-111.8824816","34.5793875"],["-111.8824801","34.5798503"],["-111.8824404","34.5802259"],["-111.8823056","34.5806877"],["-111.8816451","34.5820411"],["-111.8812544","34.582835"],["-111.881086","34.5832778"],["-111.8740601","34.5964314"],["-111.8732889","34.5978586"],["-111.8715756","34.6010506"],["-111.8709962","34.6022567"],["-111.8706452","34.6030634"],["-111.8702567","34.6039972"],["-111.8698709","34.6048978"],["-111.8695487","34.6055734"],["-111.8692351","34.6061738"],["-111.8689321","34.6066519"],["-111.8686603","34.6070032"],["-111.8683222","34.6074125"],["-111.8679243","34.6078293"],["-111.8675729","34.6081797"],["-111.8672343","34.6084552"],["-111.8668245","34.608762"],["-111.8656762","34.6095257"],["-111.8641442","34.6102047"],["-111.8524259","34.6137088"],["-111.8514961","34.6140696"],["-111.8505686","34.6145358"],["-111.8496909","34.6150128"],["-111.8489613","34.6154874"],["-111.8484012","34.6159249"],["-111.8479138","34.6163271"],["-111.8463689","34.6179748"],["-111.844935","34.6196001"],["-111.8425383","34.6222406"],["-111.8417639","34.6230307"],["-111.8413237","34.6234256"],["-111.8408682","34.6237644"],["-111.8401984","34.6242094"],["-111.8392891","34.6246919"],["-111.8383155","34.6251903"],["-111.8374681","34.6256399"],["-111.8368602","34.6260262"],["-111.8364288","34.6263419"],["-111.8359294","34.6267553"],["-111.8354499","34.6272151"],["-111.8351223","34.6275913"],["-111.8348201","34.6279971"],["-111.8344009","34.6286269"],["-111.8335796","34.630126"],["-111.8328794","34.6312483"],["-111.8318328","34.6324736"],["-111.8304016","34.6337687"],["-111.8297607","34.6342425"],["-111.8291755","34.6345811"],["-111.8286531","34.6348521"],["-111.8280628","34.6350683"],["-111.826974","34.6353838"],["-111.8247141","34.6359709"],["-111.8237619","34.6362984"],["-111.8230568","34.6366131"],["-111.8224879","34.6368949"],["-111.8220521","34.6371071"],["-111.8216823","34.6372771"],["-111.8213425","34.637448"],["-111.8209407","34.6376296"],["-111.8202826","34.6378796"],["-111.8195681","34.6381252"],["-111.818745","34.638328"],["-111.8179065","34.6385172"],["-111.815311","34.6389642"],["-111.8141885","34.6392144"],["-111.8135448","34.6394295"],["-111.8117415","34.640235"],["-111.8106204","34.6408988"],["-111.8072916","34.6436289"],["-111.7971783","34.6521126"],["-111.794251","34.6546251"],["-111.7935627","34.6554819"],["-111.791996","34.6578268"],["-111.7911983","34.6586764"],["-111.7901743","34.6594859"],["-111.7890313","34.6602"],["-111.787764","34.6609328"],["-111.7867948","34.6616169"],["-111.7856894","34.6626855"],["-111.7836467","34.665224"],["-111.7826682","34.6662234"],["-111.7808283","34.6677435"],["-111.7800339","34.6684926"],["-111.7788485","34.6697686"],["-111.7779602","34.6706324"],["-111.77722","34.6712126"],["-111.7762368","34.671803"],["-111.7750937","34.6723185"],["-111.7737885","34.6727705"],["-111.7609253","34.6759423"],["-111.7591356","34.6764221"],["-111.7574055","34.67718"],["-111.7559087","34.6782007"],["-111.7521465","34.6812459"],["-111.7509334","34.6821152"],["-111.749778","34.6828178"],["-111.7478919","34.6838823"],["-111.7463505","34.6848269"],["-111.7449791","34.6861271"],["-111.7441839","34.6872213"],["-111.7438404","34.6878452"],["-111.7436326","34.6881397"],["-111.7427419","34.6899148"],["-111.7437403","34.6903157"],["-111.7439832","34.6903847"],["-111.7449963","34.6906126"],["-111.7485675","34.6912762"],["-111.7498025","34.691625"],["-111.7506537","34.6920561"],["-111.7514322","34.6926119"],["-111.7530004","34.6941617"],["-111.7535781","34.6945919"],["-111.7547085","34.6952174"],["-111.7615398","34.6984726"],["-111.7627881","34.6991236"],["-111.7637604","34.6996615"],["-111.7654302","34.7006921"],["-111.7660616","34.7011153"],["-111.7670974","34.7018661"],["-111.7686339","34.7030405"],["-111.7702364","34.7043964"],["-111.7717379","34.7058297"],["-111.7767742","34.7116664"],["-111.7774611","34.7124944"],["-111.7778139","34.7130928"],["-111.7780837","34.7137158"],["-111.7782023","34.7142649"],["-111.7782484","34.7148121"],["-111.7782013","34.7153285"],["-111.7780936","34.7158522"],["-111.7779451","34.7163423"],["-111.7775912","34.7170606"],["-111.7755815","34.7208755"],["-111.7751964","34.7218436"],["-111.7750159","34.7226731"],["-111.774954","34.7236057"],["-111.7750459","34.7245559"],["-111.7753211","34.7253942"],["-111.7754335","34.7256684"],["-111.7756125","34.7261359"],["-111.7760348","34.7268463"],["-111.7763894","34.7274639"],["-111.7766366","34.727915"],["-111.7771176","34.7289296"],["-111.7774023","34.7299101"],["-111.7774951","34.7306468"],["-111.7774957","34.7313565"],["-111.7774147","34.7320512"],["-111.7772533","34.7326881"],["-111.7770833","34.733184"],["-111.776785","34.7338031"],["-111.7766313","34.7340592"],["-111.7741697","34.7376312"],["-111.7732264","34.7388701"],["-111.7710472","34.7411555"],["-111.7701467","34.7421365"],["-111.7694143","34.7430331"],["-111.7687774","34.7439087"],["-111.7685392","34.7442575"],["-111.768381","34.7445051"],["-111.7681117","34.7449352"],["-111.7678046","34.7454297"],["-111.7673153","34.7463391"],["-111.7669412","34.7471468"],["-111.7665163","34.7481665"],["-111.7661587","34.749103"],["-111.765879","34.7500667"],["-111.765445","34.7519073"],["-111.7653448","34.7524792"],["-111.7649968","34.7549575"],["-111.7648976","34.7555732"],["-111.7648631","34.7560139"],["-111.7648771","34.7562937"],["-111.7649089","34.7566289"],["-111.7649839","34.7569859"],["-111.7651029","34.7574154"],["-111.7652972","34.7578555"],["-111.7655118","34.7582482"],["-111.7663241","34.7594129"],["-111.7666811","34.760019"],["-111.7668188","34.7603935"],["-111.7668833","34.7606985"],["-111.7669116","34.7610531"],["-111.7669178","34.7613418"],["-111.7668892","34.7616129"],["-111.7667701","34.7621141"],["-111.7664625","34.7632373"],["-111.7663877","34.7635396"],["-111.7663433","34.7637574"],["-111.7662831","34.7640207"],["-111.7658661","34.7655793"],["-111.7655217","34.7668657"],["-111.7650805","34.768548"],["-111.7648503","34.7694588"],["-111.7640716","34.7723876"],["-111.7640047","34.7726751"],["-111.7639862","34.7727973"],["-111.7639618","34.7728908"],["-111.7639261","34.7729551"],["-111.7638753","34.773013"],["-111.7637974","34.7730519"],["-111.7637455","34.7731197"],["-111.7637438","34.7731383"],["-111.7637486","34.7731991"],["-111.763787","34.77326"],["-111.7638036","34.773344"],["-111.7637815","34.7734782"],["-111.7633749","34.7750174"],["-111.7632598","34.7754755"],["-111.7631285","34.776045"],["-111.7630366","34.7765561"],["-111.7629977","34.7768568"],["-111.7629948","34.777004"],["-111.7630082","34.7771093"],["-111.7630073","34.7772094"],["-111.7629715","34.7773172"],["-111.762911","34.7773597"],["-111.7628759","34.7774197"],["-111.7628796","34.777477"],["-111.7628947","34.7775008"],["-111.7629171","34.7775345"],["-111.7629512","34.7776257"],["-111.7629587","34.7778461"],["-111.7629764","34.7782774"],["-111.7629773","34.7783257"],["-111.7629801","34.7783945"],["-111.7629841","34.778501"],["-111.7629946","34.7789382"],["-111.7630073","34.7796564"],["-111.7630321","34.779852"],["-111.7630239","34.7799542"],["-111.7629714","34.7800505"],["-111.7629254","34.7800799"],["-111.7629052","34.7801052"],["-111.7628859","34.7801316"],["-111.7628776","34.7801613"],["-111.7628831","34.7802097"],["-111.7628959","34.7802315"],["-111.7629205","34.7802653"],["-111.7629552","34.7802942"],["-111.7629769","34.7804158"],["-111.7629885","34.7805992"],["-111.7629834","34.7854046"],["-111.762983","34.7861325"],["-111.7629826","34.7864694"],["-111.7629784","34.7865606"],["-111.7629869","34.7884238"],["-111.7630053","34.7885852"],["-111.7629953","34.7887105"],["-111.7629525","34.7887999"],["-111.7628968","34.7888367"],["-111.7628677","34.7888727"],["-111.7628545","34.7889248"],["-111.7628718","34.7889845"],["-111.762898","34.7890114"],["-111.7629237","34.7890396"],["-111.7629645","34.7892679"],["-111.7629771","34.7903301"],["-111.763012","34.7906214"],["-111.7630644","34.790912"],["-111.7631486","34.7912458"],["-111.7632601","34.7915804"],["-111.7648548","34.7953456"],["-111.7651823","34.7960083"],["-111.7655156","34.7965493"],["-111.7662993","34.7975321"],["-111.767498","34.7989358"],["-111.7679235","34.7995507"],["-111.7681745","34.8001018"],["-111.7683562","34.8007395"],["-111.7683866","34.8013863"],["-111.7682791","34.8019862"],["-111.7680886","34.8025613"],["-111.7677242","34.8034122"],["-111.767606","34.8038547"],["-111.7675525","34.8041966"],["-111.7675403","34.8045314"],["-111.7675739","34.8050618"],["-111.7676719","34.805716"],["-111.7677115","34.8061972"],["-111.7677403","34.8066558"],["-111.7677326","34.8069572"],["-111.7676401","34.8073266"],["-111.7675275","34.8076202"],["-111.7672343","34.8080781"],["-111.7650918","34.810382"],["-111.7649046","34.8106444"],["-111.7648032","34.810895"],["-111.7647577","34.8110794"],["-111.7647497","34.8112181"],["-111.764774","34.8114479"],["-111.764839","34.8116757"],["-111.7649863","34.8119561"],["-111.7653551","34.8124491"],["-111.7655301","34.8127737"],["-111.7663204","34.8147471"],["-111.7667513","34.8158271"],["-111.7669248","34.8161271"],["-111.7671032","34.8163695"],["-111.7673557","34.816612"],["-111.7676878","34.8168691"],["-111.7680491","34.8170922"],["-111.768658","34.8173326"],["-111.7711211","34.8180694"],["-111.7716936","34.8183058"],["-111.7720562","34.8186125"],["-111.7722858","34.8189329"],["-111.7724099","34.8192536"],["-111.77244","34.8194524"],["-111.772453","34.8199747"],["-111.7724747","34.8204484"],["-111.7725735","34.8208683"],["-111.772706","34.8211451"],["-111.7728509","34.8213841"],["-111.7731625","34.8217097"],["-111.7742777","34.8227406"],["-111.7746394","34.82302"],["-111.7750144","34.8232419"],["-111.7761826","34.8237042"],["-111.7766639","34.8239018"],["-111.77722","34.8242047"],["-111.7776531","34.8245419"],["-111.7779885","34.8248783"],["-111.7782003","34.8251415"],["-111.7783795","34.8254749"],["-111.7785442","34.825882"],["-111.7786084","34.826154"],["-111.77858","34.8262882"],["-111.7785361","34.8263367"],["-111.778516","34.8264038"],["-111.7785367","34.8264655"],["-111.7785855","34.8265142"],["-111.7786014","34.8266037"],["-111.778587","34.8267816"],["-111.7785561","34.8269693"],["-111.778483","34.8271815"],["-111.7784004","34.8273612"],["-111.7782549","34.8276129"],["-111.7781217","34.8278463"],["-111.7780147","34.8281318"],["-111.7779422","34.8284587"],["-111.7779226","34.8288881"],["-111.7779049","34.8293386"],["-111.7778773","34.8296636"],["-111.7778199","34.82993"],["-111.7777255","34.8302596"],["-111.7775173","34.8308525"],["-111.7772827","34.8315142"],["-111.7770216","34.8322154"],["-111.7769572","34.832456"],["-111.7769219","34.8325945"],["-111.7768765","34.8326831"],["-111.7767669","34.8327858"],["-111.7767085","34.8328353"],["-111.7766989","34.8328578"],["-111.7766865","34.832899"],["-111.7766941","34.8329321"],["-111.7767014","34.8329615"],["-111.776698","34.8330719"],["-111.7766589","34.8332108"],["-111.7765223","34.8336135"],["-111.776464","34.8338685"],["-111.7764518","34.8340893"],["-111.7764601","34.8342854"],["-111.7764954","34.8344987"],["-111.7765407","34.834697"],["-111.7766218","34.8349166"],["-111.7768126","34.8352823"],["-111.7770749","34.8357595"],["-111.7771662","34.8359587"],["-111.777237","34.8361623"],["-111.7772765","34.8364231"],["-111.7772776","34.8365525"],["-111.7772663","34.8367065"],["-111.777217","34.8369513"],["-111.7770499","34.8374613"],["-111.7761342","34.840095"],["-111.776022","34.8404774"],["-111.775989","34.8406891"],["-111.7759906","34.8409668"],["-111.7760433","34.8413076"],["-111.7760979","34.8416215"],["-111.7761031","34.8418033"],["-111.7760535","34.842081"],["-111.7759908","34.8422316"],["-111.7758844","34.8423865"],["-111.7757433","34.8425245"],["-111.7755857","34.842637"],["-111.7752485","34.8428226"],["-111.773654","34.8436489"],["-111.7733612","34.8437478"],["-111.7731243","34.8437961"],["-111.7728233","34.843823"],["-111.7721945","34.8438073"],["-111.7717096","34.8438013"],["-111.7714695","34.8438008"],["-111.7710763","34.8437956"],["-111.7707309","34.843831"],["-111.7703206","34.8439197"],["-111.7698226","34.8441062"],["-111.7690218","34.8443889"],["-111.7681083","34.8446637"],["-111.7678302","34.8447831"],["-111.7675256","34.8449514"],["-111.7673178","34.8451275"],["-111.7671246","34.8453402"],["-111.7669814","34.8455895"],["-111.766843","34.8459203"],["-111.7666169","34.8465241"],["-111.7664094","34.8471558"],["-111.7662892","34.8475467"],["-111.7662557","34.8476773"],["-111.7662376","34.8477488"],["-111.7661783","34.8477966"],["-111.7661064","34.8478509"],["-111.7660732","34.8478695"],["-111.7660511","34.8478834"],["-111.7660288","34.8479281"],["-111.7660193","34.8479669"],["-111.7660205","34.8479961"],["-111.766032","34.8480318"],["-111.7660371","34.8481981"],["-111.7659265","34.848451"],["-111.7657682","34.8487508"],["-111.7655575","34.8491146"],["-111.7654205","34.8493605"],["-111.7653397","34.8495631"],["-111.7653009","34.8497901"],["-111.7652974","34.8498587"],["-111.7652939","34.8500293"],["-111.7653347","34.8502579"],["-111.7655368","34.8509978"],["-111.7655645","34.8511977"],["-111.7655578","34.85133"],["-111.7654722","34.8515914"],["-111.7653957","34.8517143"],["-111.7652435","34.8519074"],["-111.7650372","34.8521331"],["-111.7647172","34.8524734"],["-111.764465","34.8527486"],["-111.7643487","34.8529353"],["-111.7642895","34.8530526"],["-111.7642601","34.8531682"],["-111.7642425","34.8534047"],["-111.7642998","34.8546067"],["-111.7642799","34.8548919"],["-111.7641975","34.8551168"],["-111.7641273","34.8552935"],["-111.7641089","34.855397"],["-111.7640524","34.8555649"],["-111.7639906","34.8555964"],["-111.7639717","34.8556169"],["-111.7639574","34.8556382"],["-111.7639526","34.855724"],["-111.7639766","34.8557638"],["-111.7640137","34.8557952"],["-111.7640233","34.8558703"],["-111.7640234","34.8559725"],["-111.763973","34.8564776"],["-111.7637974","34.8581739"],["-111.7637592","34.8583535"],["-111.7636634","34.8585596"],["-111.7635706","34.8587016"],["-111.7634734","34.8588236"],["-111.7632763","34.8590185"],["-111.7629593","34.8593029"],["-111.7626108","34.8596111"],["-111.762418","34.8598113"],["-111.762284","34.8599865"],["-111.7621511","34.8601955"],["-111.7620621","34.8603766"],["-111.7618449","34.8609368"],["-111.7616493","34.8614512"],["-111.7616222","34.8616129"],["-111.7616202","34.8617256"],["-111.7615869","34.8618066"],["-111.7615421","34.8618609"],["-111.7614946","34.8619072"],["-111.7614704","34.8619661"],["-111.7614756","34.8620184"],["-111.7615109","34.8620747"],["-111.7615751","34.8621133"],["-111.761656","34.8621324"],["-111.7617657","34.86221"],["-111.7618301","34.8622682"],["-111.762037","34.8624601"],["-111.7622679","34.8626059"],["-111.762544","34.8627059"],["-111.7632134","34.8629173"],["-111.7634606","34.8630382"],["-111.7636319","34.8631664"],["-111.7637203","34.8632739"],["-111.7638357","34.863616"],["-111.7638735","34.863835"],["-111.7638289","34.8642317"],["-111.7634086","34.8653681"],["-111.7634034","34.865522"],["-111.7634216","34.8656207"],["-111.7634266","34.8656595"],["-111.7634278","34.8656801"],["-111.7634278","34.8657008"],["-111.7634265","34.8657243"],["-111.7634155","34.8657975"],["-111.7633953","34.8658873"],["-111.7633924","34.8659374"],["-111.7633562","34.8659802"],["-111.7632016","34.8660768"],["-111.7631518","34.866115"],["-111.7628419","34.8662804"],["-111.7626177","34.8664276"],["-111.7623191","34.8666649"],["-111.7621033","34.866987"],["-111.7618632","34.8674029"],["-111.7613827","34.8687873"],["-111.7613389","34.8688614"],["-111.7612635","34.8689092"],["-111.761114","34.8692447"],["-111.7609821","34.8695669"],["-111.7609499","34.869616"],["-111.7608912","34.8696603"],["-111.7608511","34.8696755"],["-111.7608185","34.8696964"],["-111.7607956","34.869725"],["-111.7607838","34.8697584"],["-111.7607847","34.869793"],["-111.7607987","34.8698258"],["-111.7608233","34.8698538"],["-111.7608535","34.8698719"],["-111.7608864","34.8698827"],["-111.7609058","34.8698847"],["-111.7609244","34.8698857"],["-111.7609583","34.8698836"],["-111.7609754","34.8699254"],["-111.7610076","34.8699613"],["-111.7610974","34.8700927"],["-111.7611188","34.871971"],["-111.7610971","34.8725347"],["-111.7605859","34.8725899"],["-111.7600495","34.8725903"],["-111.7591735","34.872594"],["-111.7590977","34.872666"],["-111.7590788","34.8728005"],["-111.759093","34.8730191"],["-111.7591149","34.8733008"],["-111.7591208","34.8735182"],["-111.7589847","34.8734883"],["-111.7588418","34.8734564"],["-111.7586998","34.8734485"],["-111.7583729","34.8734195"],["-111.7580629","34.8734164"],["-111.7578851","34.8734939"],["-111.7576345","34.8736428"],["-111.7574194","34.8737832"]] } }; const coordinates_1_0 = geojson_1_0.geometry.coordinates; for (const coord of coordinates_1_0) { window.bounds[1].extend(coord); contentMap_1.fitBounds(window.bounds[1], {padding: {top: 60, bottom:60, left: 60, right: 60}}); } contentMap_1.on('load', () => { contentMap_1.addLayer({ id: 'route1_0', type: 'line', source: { type: 'geojson', data: geojson_1_0 }, layout: { 'line-join': 'round', 'line-cap': 'round' }, paint: { 'line-color': '#0b7172', 'line-width': 5, 'line-opacity': 0.80 } }); }); contentMap_1.fitBounds(window.bounds[1], {padding: {top: 60, bottom: 60, left: 60, right: 60}}); const geojson_1_1 = { type: 'Feature', properties: {}, geometry: { type: 'LineString', coordinates: [["-117.1565502","32.7178183"],["-117.1565616","32.7184453"],["-117.1565635","32.7185352"],["-117.1565226","32.718848"],["-117.1557202","32.7188592"],["-117.1554116","32.7188701"],["-117.1552594","32.7188959"],["-117.1551211","32.7189215"],["-117.1550632","32.7189462"],["-117.1550016","32.7189855"],["-117.1549378","32.7190487"],["-117.1548851","32.719129"],["-117.1548604","32.7192299"],["-117.1548581","32.7195134"],["-117.1548542","32.7201679"],["-117.1548453","32.7206539"],["-117.1548187","32.7213399"],["-117.1547618","32.7218225"],["-117.1547742","32.7220797"],["-117.1548125","32.7223395"],["-117.1549048","32.7227138"],["-117.1551821","32.7236382"],["-117.1556628","32.7251164"],["-117.1557964","32.725606"],["-117.1558507","32.7258943"],["-117.1558869","32.7261653"],["-117.1559035","32.726514"],["-117.1559061","32.7267726"],["-117.1558927","32.7270002"],["-117.1558689","32.7271894"],["-117.1558149","32.7274103"],["-117.155751","32.7276003"],["-117.1556021","32.7279214"],["-117.1550581","32.7288987"],["-117.154716","32.7295245"],["-117.1545787","32.7298147"],["-117.1545086","32.7300334"],["-117.1544501","32.7302345"],["-117.1544034","32.7304711"],["-117.1543804","32.7306817"],["-117.1543652","32.7309187"],["-117.1543733","32.7312125"],["-117.1544107","32.7315018"],["-117.1544585","32.7317081"],["-117.1545187","32.731934"],["-117.1546073","32.7321755"],["-117.1547132","32.7324144"],["-117.1552194","32.7332978"],["-117.1554004","32.733622"],["-117.1555133","32.733874"],["-117.1556441","32.7342316"],["-117.1557043","32.7345304"],["-117.1557479","32.7349108"],["-117.1557623","32.7351454"],["-117.1557551","32.7354024"],["-117.1557366","32.7358318"],["-117.1557352","32.7362351"],["-117.1557409","32.7366188"],["-117.1558141","32.737461"],["-117.1558784","32.7379859"],["-117.1562363","32.7398911"],["-117.1563247","32.7405832"],["-117.156358","32.7410117"],["-117.1563719","32.7413721"],["-117.1563385","32.7419771"],["-117.1562161","32.7433709"],["-117.1562133","32.7437864"],["-117.1562293","32.7441575"],["-117.1564017","32.7455474"],["-117.1564627","32.7461186"],["-117.1564659","32.7464077"],["-117.1564455","32.7466228"],["-117.1563996","32.7468758"],["-117.1562338","32.7473813"],["-117.1558137","32.7485619"],["-117.1553029","32.7500639"],["-117.155275","32.7502474"],["-117.15527","32.7504158"],["-117.1552849","32.7506363"],["-117.1553443","32.750889"],["-117.1554278","32.7511251"],["-117.155622","32.7514603"],["-117.1558143","32.751692"],["-117.155974","32.7518508"],["-117.1562966","32.7521012"],["-117.156783","32.7524284"],["-117.1571116","32.7526621"],["-117.1573565","32.752855"],["-117.1575936","32.7530757"],["-117.1577893","32.7532897"],["-117.157978","32.7535327"],["-117.1581691","32.7538208"],["-117.1583263","32.754114"],["-117.1584519","32.7544029"],["-117.1585489","32.754687"],["-117.1587261","32.7553774"],["-117.1588245","32.7557017"],["-117.1589316","32.7560007"],["-117.1590921","32.7563411"],["-117.1592614","32.7566569"],["-117.1594422","32.7569437"],["-117.1596823","32.7572776"],["-117.1599534","32.7575865"],["-117.1602521","32.7578873"],["-117.1615677","32.7590638"],["-117.1621357","32.7595817"],["-117.1624333","32.7599187"],["-117.1627289","32.7603497"],["-117.1629223","32.7607533"],["-117.1630625","32.7611567"],["-117.1631452","32.761541"],["-117.163288","32.762352"],["-117.1633041","32.7626114"],["-117.1633124","32.7627916"],["-117.1632975","32.7633192"],["-117.1632597","32.7636225"],["-117.1632045","32.7639036"],["-117.1628208","32.7653252"],["-117.1614991","32.7704226"],["-117.1613671","32.770912"],["-117.1610166","32.7722664"],["-117.1609472","32.7728271"],["-117.1609209","32.7734269"],["-117.1610137","32.7741776"],["-117.1613036","32.7750251"],["-117.1617239","32.7758401"],["-117.1621473","32.77666"],["-117.1623819","32.7772304"],["-117.1624908","32.7776039"],["-117.1625715","32.7778981"],["-117.1626322","32.778141"],["-117.1626939","32.7784311"],["-117.1627438","32.7787147"],["-117.1627826","32.7790136"],["-117.1628067","32.7792845"],["-117.1628195","32.7795262"],["-117.1628227","32.7798001"],["-117.1628191","32.7800652"],["-117.1627955","32.7803946"],["-117.1627648","32.7806841"],["-117.1627205","32.7809633"],["-117.162665","32.7812394"],["-117.1625852","32.781571"],["-117.1624808","32.7819054"],["-117.1623448","32.7822997"],["-117.1595926","32.7897898"],["-117.1591792","32.7908856"],["-117.1589178","32.7916207"],["-117.158743","32.7921084"],["-117.1575143","32.795508"],["-117.1513073","32.8125467"],["-117.1508982","32.8135829"],["-117.1501568","32.8151091"],["-117.1481614","32.8188414"],["-117.1460449","32.8226414"],["-117.1444976","32.8255014"],["-117.1412679","32.8314593"],["-117.1404111","32.8328938"],["-117.139771","32.8338057"],["-117.1394994","32.8341634"],["-117.1393041","32.834431"],["-117.1387849","32.8350448"],["-117.1339826","32.8404621"],["-117.1325879","32.8419718"],["-117.13078","32.8439756"],["-117.1266733","32.8485363"],["-117.1251725","32.8501892"],["-117.1248198","32.8505764"],["-117.1229809","32.8525707"],["-117.1225675","32.8529317"],["-117.1221965","32.8532201"],["-117.1218209","32.8535003"],["-117.1211617","32.8539161"],["-117.1207481","32.8541241"],["-117.1202988","32.854333"],["-117.1197773","32.8545453"],["-117.117704","32.8552861"],["-117.1163713","32.8557413"],["-117.1159425","32.8559082"],["-117.1155452","32.8560991"],["-117.1151204","32.8563494"],["-117.1141575","32.8569863"],["-117.113838","32.857204"],["-117.1135095","32.8574344"],["-117.1132884","32.8576054"],["-117.1130731","32.8578015"],["-117.1128643","32.8580267"],["-117.1126976","32.8582492"],["-117.1123685","32.8587472"],["-117.1122647","32.8590448"],["-117.1121817","32.8594433"],["-117.1121837","32.8601471"],["-117.1121485","32.8604225"],["-117.1120713","32.8606471"],["-117.1119289","32.8609209"],["-117.1116669","32.8613621"],["-117.1112837","32.8620292"],["-117.1109074","32.862641"],["-117.1105166","32.8633193"],["-117.109866","32.8644891"],["-117.1096236","32.864923"],["-117.1093629","32.8653938"],["-117.1090605","32.865915"],["-117.1088001","32.8664334"],["-117.1085391","32.8670143"],["-117.1080791","32.8682007"],["-117.1076465","32.8697031"],["-117.1074993","32.8705077"],["-117.1074097","32.8711194"],["-117.1073363","32.8717777"],["-117.1073135","32.8724606"],["-117.1073272","32.8741336"],["-117.1073789","32.8753723"],["-117.1074223","32.8758337"],["-117.1075085","32.8764171"],["-117.107628","32.8771203"],["-117.1079855","32.8786343"],["-117.1081835","32.8793054"],["-117.1087371","32.88078"],["-117.1089127","32.881199"],["-117.1091632","32.8817268"],["-117.1094737","32.8823497"],["-117.1098308","32.8830158"],["-117.1134145","32.8892549"],["-117.113854","32.8900988"],["-117.1142876","32.8910164"],["-117.1145173","32.89154"],["-117.1147211","32.892027"],["-117.1150805","32.8929813"],["-117.1152796","32.8935639"],["-117.1153959","32.8939238"],["-117.1154972","32.894236"],["-117.115869","32.8954553"],["-117.1160225","32.8960265"],["-117.1161098","32.8963461"],["-117.1162548","32.8974323"],["-117.1163113","32.8982547"],["-117.116333","32.8994526"],["-117.1163311","32.9005082"],["-117.1163504","32.9027969"],["-117.1163797","32.9083641"],["-117.1163832","32.909561"],["-117.1163881","32.9113486"],["-117.1163722","32.9119949"],["-117.1163201","32.9136092"],["-117.11626","32.9144803"],["-117.1158978","32.9181732"],["-117.115655","32.919995"],["-117.1150554","32.9232816"],["-117.1145686","32.9255143"],["-117.1140789","32.9274512"],["-117.1134425","32.9296236"],["-117.1120461","32.9342871"],["-117.110112","32.9404704"],["-117.1098489","32.9412416"],["-117.1095816","32.9419668"],["-117.1093368","32.9425712"],["-117.1087976","32.9437019"],["-117.1085151","32.9442495"],["-117.1082324","32.9447666"],["-117.1078206","32.9454344"],["-117.1031116","32.9524319"],["-117.1008642","32.9559807"],["-117.099377","32.9586622"],["-117.0991349","32.9590269"],["-117.0988746","32.9593713"],["-117.0982636","32.9601518"],["-117.0979498","32.9605585"],["-117.0965545","32.9627094"],["-117.0961351","32.9633807"],["-117.0952104","32.9648391"],["-117.0883341","32.9756924"],["-117.0876982","32.9767053"],["-117.0863921","32.9787652"],["-117.084113","32.9824047"],["-117.0837081","32.9831481"],["-117.0834437","32.9837396"],["-117.0832702","32.9841626"],["-117.0831361","32.9845554"],["-117.0830005","32.9850977"],["-117.0828522","32.9857425"],["-117.0827794","32.986251"],["-117.0827434","32.986717"],["-117.0827211","32.9871384"],["-117.0827223","32.9876053"],["-117.0827469","32.9881515"],["-117.0827945","32.9886334"],["-117.0828604","32.9890448"],["-117.0833315","32.9912547"],["-117.0834946","32.9920547"],["-117.0835747","32.9925642"],["-117.0836729","32.9933967"],["-117.0836885","32.9939253"],["-117.0836944","32.9945317"],["-117.0836682","32.9951276"],["-117.0836075","32.9958719"],["-117.0834699","32.9967231"],["-117.0833039","32.9974452"],["-117.0831081","32.9981493"],["-117.0819085","33.001582"],["-117.0816639","33.0022914"],["-117.081279","33.0034271"],["-117.0809925","33.0044103"],["-117.080883","33.0048227"],["-117.0807161","33.0055516"],["-117.0805747","33.0062261"],["-117.0804634","33.0069217"],["-117.0787951","33.0215161"],["-117.0787524","33.0221747"],["-117.0786937","33.027781"],["-117.0786687","33.0288287"],["-117.078623","33.0293905"],["-117.0785685","33.0298335"],["-117.0784844","33.0303909"],["-117.0783697","33.0309703"],["-117.0782765","33.0314015"],["-117.0781746","33.0317953"],["-117.0780817","33.0321328"],["-117.077975","33.0324599"],["-117.077923","33.0326118"],["-117.0773605","33.0340443"],["-117.073321","33.0437976"],["-117.0731285","33.044384"],["-117.0729771","33.0450038"],["-117.0728333","33.0458517"],["-117.0727821","33.0464299"],["-117.072758","33.0469463"],["-117.0727796","33.0480345"],["-117.072812","33.0484487"],["-117.0728647","33.0493699"],["-117.0728617","33.0499112"],["-117.072843","33.0504913"],["-117.0727872","33.0511872"],["-117.0726996","33.0518622"],["-117.0725746","33.0525343"],["-117.0724542","33.0530214"],["-117.0721833","33.053981"],["-117.0720387","33.0544051"],["-117.0716491","33.0553479"],["-117.0710048","33.0566993"],["-117.0703048","33.0580939"],["-117.0698839","33.0591021"],["-117.0695762","33.0599444"],["-117.069407","33.0605169"],["-117.0692882","33.0609712"],["-117.0692046","33.061303"],["-117.069022","33.0622696"],["-117.0689506","33.0628094"],["-117.0688995","33.0632944"],["-117.0688666","33.0643783"],["-117.0688621","33.065104"],["-117.0688848","33.0657517"],["-117.0689298","33.0663229"],["-117.069221","33.0683361"],["-117.0693934","33.0698567"],["-117.0694876","33.0705945"],["-117.0699346","33.0739874"],["-117.0700806","33.0748267"],["-117.0703585","33.0761058"],["-117.0704805","33.0765473"],["-117.0708121","33.0775489"],["-117.0709714","33.0780188"],["-117.0712779","33.0788096"],["-117.0715081","33.0793498"],["-117.0717595","33.0799005"],["-117.0720004","33.080394"],["-117.0727962","33.0819376"],["-117.0739921","33.08386"],["-117.0745804","33.0846244"],["-117.0751558","33.0853324"],["-117.076388","33.0866733"],["-117.0774799","33.0877365"],["-117.0836819","33.093455"],["-117.0858015","33.0954505"],["-117.0866461","33.0962842"],["-117.087919","33.0976326"],["-117.0885905","33.0984241"],["-117.0891861","33.09917"],["-117.0897684","33.0999811"],["-117.090935","33.1017138"],["-117.0957443","33.1098624"],["-117.0976954","33.1131788"],["-117.0982873","33.1142186"],["-117.098725","33.115023"],["-117.0990882","33.1157122"],["-117.100019","33.1175856"],["-117.1002721","33.1180403"],["-117.1007061","33.1187727"],["-117.1011536","33.1195171"],["-117.1016858","33.1204033"],["-117.1020678","33.1210407"],["-117.1028255","33.1223806"],["-117.103259","33.1232064"],["-117.1035605","33.123849"],["-117.1037776","33.12436"],["-117.1039293","33.1247418"],["-117.1042634","33.1256429"],["-117.104405","33.1260613"],["-117.1045697","33.1266512"],["-117.1047368","33.1273383"],["-117.1047862","33.1275295"],["-117.104833","33.127772"],["-117.1048727","33.128017"],["-117.1050572","33.1295346"],["-117.1051198","33.1302341"],["-117.1051308","33.130691"],["-117.1050994","33.1316505"],["-117.1050336","33.1330261"],["-117.1049235","33.1353794"],["-117.1045144","33.1432992"],["-117.1039416","33.1546915"],["-117.1039433","33.1556785"],["-117.1039805","33.1562869"],["-117.104035","33.1569018"],["-117.1041664","33.1577888"],["-117.1042546","33.1582541"],["-117.1043671","33.1587825"],["-117.1045058","33.1593929"],["-117.1046919","33.160059"],["-117.1049263","33.160831"],["-117.1051735","33.1615095"],["-117.1054183","33.1620903"],["-117.1057205","33.1627734"],["-117.1060835","33.1634654"],["-117.113859","33.1770506"],["-117.1276686","33.201014"],["-117.1306826","33.2055383"],["-117.1341266","33.2102244"],["-117.1391257","33.217025"],["-117.140116","33.2184488"],["-117.1407322","33.2193976"],["-117.1416472","33.2209479"],["-117.1428332","33.2232175"],["-117.1435163","33.22473"],["-117.1463981","33.2314179"],["-117.1480155","33.2351737"],["-117.1542862","33.2497601"],["-117.1553068","33.252153"],["-117.1559303","33.2535276"],["-117.1564939","33.2547857"],["-117.1569551","33.255903"],["-117.1572736","33.2567992"],["-117.1575479","33.2576252"],["-117.1578001","33.2585266"],["-117.1579992","33.2593375"],["-117.1582455","33.260562"],["-117.1584067","33.2617846"],["-117.158448","33.2624988"],["-117.1584647","33.2633977"],["-117.1584156","33.2645572"],["-117.1583529","33.2651957"],["-117.1582782","33.2657383"],["-117.1581827","33.2663452"],["-117.1580708","33.266958"],["-117.1578555","33.2679217"],["-117.157533","33.2690259"],["-117.1571648","33.2700408"],["-117.1568737","33.2707513"],["-117.1565802","33.2714296"],["-117.1549729","33.2743089"],["-117.1516616","33.2800242"],["-117.1513106","33.2806303"],["-117.1507319","33.2817854"],["-117.1501259","33.283207"],["-117.1496567","33.284775"],["-117.1494549","33.285822"],["-117.1493318","33.2865867"],["-117.1492514","33.287232"],["-117.1491926","33.2886485"],["-117.1492664","33.2909964"],["-117.1502116","33.3069145"],["-117.1503225","33.3077963"],["-117.1504996","33.308772"],["-117.1507556","33.3099083"],["-117.1510418","33.310886"],["-117.1515472","33.312291"],["-117.1518973","33.3130796"],["-117.1522314","33.3137651"],["-117.1525814","33.3143862"],["-117.1569791","33.3214819"],["-117.157707","33.3230534"],["-117.1579699","33.3237279"],["-117.158288","33.3246709"],["-117.158467","33.3252493"],["-117.1587","33.32615"],["-117.1588732","33.3271523"],["-117.1589345","33.3275666"],["-117.1590407","33.3285025"],["-117.159096","33.3294585"],["-117.1591064","33.330092"],["-117.158969","33.3377333"],["-117.158959","33.338685"],["-117.1587439","33.3534299"],["-117.1587248","33.3566528"],["-117.158769","33.3572563"],["-117.1588332","33.3578833"],["-117.1589327","33.3586189"],["-117.1590762","33.3593995"],["-117.1592622","33.3602577"],["-117.1595207","33.3611591"],["-117.1598706","33.3621263"],["-117.160241","33.3630678"],["-117.1605526","33.3637673"],["-117.1608126","33.3643181"],["-117.1610392","33.3647691"],["-117.1613148","33.365236"],["-117.1616457","33.3657774"],["-117.1620554","33.3664406"],["-117.1624394","33.3670266"],["-117.1630088","33.3677899"],["-117.1641733","33.3691704"],["-117.1647046","33.3697573"],["-117.1653972","33.3704454"],["-117.167959","33.3727885"],["-117.168414","33.3732534"],["-117.1693311","33.374235"],["-117.1697906","33.3747532"],["-117.1702819","33.3753575"],["-117.1708125","33.3761005"],["-117.1714783","33.3770833"],["-117.1717304","33.3774776"],["-117.172552","33.379045"],["-117.1729552","33.379857"],["-117.1732544","33.3806436"],["-117.1735878","33.3816015"],["-117.1737987","33.3822919"],["-117.1739657","33.3829316"],["-117.1741543","33.383899"],["-117.1743309","33.3850366"],["-117.1744133","33.3858787"],["-117.1744637","33.386693"],["-117.1744708","33.3877067"],["-117.1744382","33.3885884"],["-117.1743218","33.3897312"],["-117.1741426","33.3908269"],["-117.1739126","33.3918907"],["-117.1737313","33.3925277"],["-117.1734136","33.3934672"],["-117.172926","33.394619"],["-117.1723961","33.3958049"],["-117.1719856","33.3966301"],["-117.1716458","33.3972473"],["-117.1708687","33.3985573"],["-117.1703254","33.3994014"],["-117.169718","33.4003054"],["-117.1689215","33.4014095"],["-117.1682705","33.4022726"],["-117.1639975","33.4074301"],["-117.1628888","33.4089062"],["-117.1612991","33.41108"],["-117.1595734","33.4134253"],["-117.1547764","33.4200382"],["-117.1517883","33.4242613"],["-117.1513046","33.4249433"],["-117.1510265","33.4252988"],["-117.1506621","33.4257411"],["-117.1502094","33.4262562"],["-117.1497921","33.4267131"],["-117.1493967","33.4271016"],["-117.1483017","33.4280645"],["-117.1455942","33.4302965"],["-117.144422","33.4313202"],["-117.1430644","33.4326679"],["-117.1421133","33.4337337"],["-117.1410558","33.4350828"],["-117.1401411","33.4364407"],["-117.1396697","33.4372512"],["-117.1391998","33.4380929"],["-117.1387693","33.4389697"],["-117.138455","33.439674"],["-117.1380916","33.4405363"],["-117.1377649","33.4414603"],["-117.1358865","33.4472116"],["-117.1354519","33.4486672"],["-117.1353278","33.4492684"],["-117.1352411","33.4497979"],["-117.1351646","33.4503732"],["-117.1351277","33.4509401"],["-117.1351302","33.451791"],["-117.135416","33.4549631"],["-117.135513","33.456004"],["-117.1356995","33.4577048"],["-117.1361003","33.461408"],["-117.1362085","33.4629203"],["-117.1362266","33.4635779"],["-117.1361879","33.4642993"],["-117.1361482","33.4649152"],["-117.136113","33.4656566"],["-117.1361132","33.466319"],["-117.1361608","33.4669858"],["-117.1363108","33.468212"],["-117.1364249","33.4688481"],["-117.1365332","33.4693137"],["-117.1366662","33.4698135"],["-117.1368492","33.4704242"],["-117.1374162","33.4720026"],["-117.138425","33.4747783"],["-117.1387211","33.4757162"],["-117.138991","33.4767752"],["-117.1393511","33.4782427"],["-117.1394644","33.4787472"],["-117.1395044","33.4789148"],["-117.1396474","33.4796806"],["-117.1397225","33.4800837"],["-117.1398261","33.4803124"],["-117.141545","33.4811229"],["-117.142221","33.481382"],["-117.1424321","33.4814276"],["-117.1426475","33.4814676"],["-117.1427584","33.4814494"],["-117.1427609","33.4816092"],["-117.1427522","33.481751"],["-117.1427559","33.481861"],["-117.1427738","33.4819735"],["-117.1428015","33.4820659"],["-117.1428452","33.482171"],["-117.1429071","33.4822749"],["-117.1429711","33.4823796"],["-117.1430246","33.4824796"],["-117.143079","33.4825955"],["-117.14314","33.4827514"],["-117.1437547","33.484489"],["-117.1445672","33.4868404"],["-117.1453152","33.4889964"],["-117.1456491","33.4900011"],["-117.1458935","33.4907246"],["-117.1459918","33.4908424"],["-117.1458727","33.4908652"],["-117.1457715","33.4908753"],["-117.1456514","33.4908739"],["-117.1455318","33.490867"],["-117.1454287","33.490851"],["-117.145301","33.4908038"],["-117.1451868","33.4907455"],["-117.143619","33.4899073"],["-117.1424452","33.4892795"],["-117.1416652","33.4888374"],["-117.1413156","33.488672"],["-117.1411906","33.4886363"],["-117.1409605","33.4886013"],["-117.1393432","33.4886321"],["-117.1391","33.4886432"],["-117.1387487","33.4886814"],["-117.1380389","33.4887995"],["-117.1377873","33.4888426"],["-117.1368686","33.4867247"],["-117.1363138","33.485594"],["-117.135796","33.4848088"],["-117.1349561","33.4837833"],["-117.1343861","33.4831945"],["-117.1341132","33.4829182"],["-117.1336605","33.4824376"],["-117.1329978","33.4818265"],["-117.132733","33.4816044"],["-117.1326402","33.4814903"],["-117.132578","33.4813988"],["-117.1325657","33.4813499"],["-117.1325655","33.4813166"],["-117.1325664","33.4812899"],["-117.1325745","33.4812492"],["-117.1325773","33.4812076"],["-117.1325662","33.481172"],["-117.1325448","33.4811415"],["-117.1325123","33.4811174"],["-117.1324743","33.4811016"],["-117.1324387","33.4810964"],["-117.1324032","33.4810983"],["-117.1323683","33.4811066"],["-117.1323246","33.4811068"],["-117.1322834","33.4811002"],["-117.1322383","33.4810908"],["-117.1321886","33.4810764"],["-117.1321241","33.4810562"],["-117.1318358","33.480905"],["-117.1315259","33.480722"],["-117.1314562","33.4806888"],["-117.1313382","33.480663"],["-117.1309604","33.4804583"],["-117.1303543","33.480209"],["-117.1298472","33.4800094"],["-117.1282376","33.4795627"],["-117.1276345","33.4793905"],["-117.1263965","33.4790463"],["-117.1251583","33.4787367"],["-117.1248595","33.4786777"],["-117.1248163","33.4786698"],["-117.1242307","33.478589"],["-117.1238595","33.4785753"],["-117.1234483","33.4785743"],["-117.1227329","33.4785563"],["-117.1227626","33.4781484"],["-117.1227821","33.4779749"],["-117.1227852","33.4779377"],["-117.1227837","33.4777695"],["-117.1227525","33.4773345"],["-117.1226804","33.4763745"],["-117.1226542","33.476036"],["-117.1226324","33.4760267"],["-117.1209","33.4758867"],["-117.1199481","33.4758235"],["-117.1196715","33.475815"],["-117.1193981","33.4758168"],["-117.1189046","33.475847"],["-117.1183315","33.4759283"],["-117.117667","33.476069"],["-117.1172479","33.4761776"],["-117.1072639","33.4787475"],["-117.1063049","33.4789949"],["-117.1017442","33.4801512"],["-117.1016657","33.4801708"],["-117.0993947","33.4807654"],["-117.0950099","33.4818861"],["-117.0948093","33.481937"],["-117.0937231","33.482213"],["-117.0936001","33.4822458"],["-117.0825072","33.4851152"],["-117.0816128","33.4853423"],["-117.0784812","33.4861429"],["-117.078063","33.486247"],["-117.0773347","33.486441"],["-117.076811","33.48658"],["-117.075835","33.4868341"],["-117.0724395","33.4877129"],["-117.0715899","33.4879329"],["-117.0646117","33.4897877"],["-117.063749","33.4900626"],["-117.0600432","33.4910564"],["-117.0595363","33.4911775"],["-117.059238","33.4912134"],["-117.0589749","33.4912193"],["-117.0586508","33.4912044"],["-117.0583143","33.4911674"],["-117.0579646","33.4911017"],["-117.0576567","33.4910144"],["-117.0573798","33.4909104"],["-117.0571279","33.4907868"],["-117.0569157","33.4906533"],["-117.0566835","33.4904921"],["-117.0552859","33.4895462"],["-117.0547821","33.4891892"],["-117.0545393","33.4889911"],["-117.053929","33.4885686"],["-117.0532494","33.4880996"],["-117.0531159","33.4880188"],["-117.0529562","33.4879272"],["-117.0528324","33.4878693"],["-117.0526971","33.4878123"],["-117.0525048","33.4877414"],["-117.052031","33.4876075"],["-117.0494455","33.4870633"],["-117.0489289","33.4869542"],["-117.047654","33.4866508"],["-117.0471494","33.4864922"],["-117.0465882","33.4862873"],["-117.0460595","33.4860618"],["-117.0456972","33.485883"],["-117.0452405","33.485627"],["-117.0446144","33.485247"],["-117.039269","33.4815587"],["-117.0387628","33.4812356"],["-117.038293","33.4809706"],["-117.0378362","33.4807392"],["-117.0372982","33.4805081"],["-117.0359819","33.4800352"],["-117.0337366","33.4792471"],["-117.0331543","33.4790275"],["-117.0325296","33.4787618"],["-117.0319335","33.4784703"],["-117.0310839","33.4780168"],["-117.0279722","33.476352"],["-117.0274728","33.4761009"],["-117.0269827","33.4758763"],["-117.026456","33.4756579"],["-117.0258288","33.475423"],["-117.0251476","33.475186"],["-117.0237033","33.4747109"],["-117.0232618","33.4745449"],["-117.0227979","33.4743212"],["-117.0222091","33.4739906"],["-117.0190124","33.4719989"],["-117.0184429","33.4716472"],["-117.0181412","33.4714937"],["-117.017788","33.4713446"],["-117.0174233","33.4712063"],["-117.0168733","33.4710277"],["-117.0165489","33.4709392"],["-117.0162626","33.4708847"],["-117.0159626","33.470835"],["-117.0155081","33.4707828"],["-117.0149593","33.4707224"],["-117.014378","33.4706414"],["-117.0137212","33.4705254"],["-117.0129695","33.4703677"],["-117.0122058","33.4701789"],["-117.0115996","33.4700046"],["-117.0110456","33.4698147"],["-117.0098524","33.469381"],["-117.0092769","33.4691948"],["-117.0086003","33.4690168"],["-117.0079454","33.4688786"],["-117.0073027","33.468799"],["-117.0068415","33.4687516"],["-116.9958202","33.4680028"],["-116.994302","33.4679004"],["-116.9934093","33.4678533"],["-116.9926717","33.4678391"],["-116.9921172","33.4678394"],["-116.9917841","33.4678464"],["-116.9900661","33.4679632"],["-116.9895743","33.4679882"],["-116.9892218","33.4679773"],["-116.9888657","33.4679563"],["-116.9884864","33.4679155"],["-116.9880981","33.4678513"],["-116.9876268","33.4677505"],["-116.9766094","33.4650517"],["-116.976028","33.4649404"],["-116.9756522","33.4648975"],["-116.975303","33.4648738"],["-116.9749757","33.464868"],["-116.9745885","33.4648778"],["-116.9740036","33.4649322"],["-116.9731491","33.4650358"],["-116.9716085","33.465233"],["-116.9712821","33.4652704"],["-116.9707429","33.4653151"],["-116.9699707","33.4653511"],["-116.9690552","33.4653633"],["-116.9678519","33.4653649"],["-116.9670391","33.4653831"],["-116.9663754","33.4654476"],["-116.9632157","33.4659684"],["-116.962506","33.4661121"],["-116.9618967","33.4662644"],["-116.961202","33.4664693"],["-116.9606158","33.4666651"],["-116.9602384","33.4668089"],["-116.9598529","33.4669779"],["-116.9594273","33.4671781"],["-116.9589492","33.4674147"],["-116.9561226","33.4689243"],["-116.9549623","33.4695332"],["-116.954588","33.4696913"],["-116.9542793","33.4698018"],["-116.9538861","33.4699226"],["-116.9534731","33.4700372"],["-116.9531559","33.470102"],["-116.9528123","33.4701549"],["-116.9524296","33.4701885"],["-116.9520729","33.4702112"],["-116.9516414","33.4702099"],["-116.951145","33.470188"],["-116.9506963","33.4701321"],["-116.9500685","33.4700125"],["-116.9471303","33.4693295"],["-116.9465553","33.4692219"],["-116.9459907","33.4691488"],["-116.9448297","33.4690827"],["-116.943482","33.4691116"],["-116.9393504","33.4692154"],["-116.9388326","33.4692092"],["-116.9384766","33.4691844"],["-116.9381317","33.4691452"],["-116.9377919","33.4690834"],["-116.9372093","33.4689391"],["-116.9368318","33.4688232"],["-116.936436","33.4686755"],["-116.935788","33.4683939"],["-116.9351308","33.4681001"],["-116.9345788","33.4678636"],["-116.9341692","33.4677232"],["-116.9338366","33.467627"],["-116.9334937","33.4675487"],["-116.9331863","33.4674947"],["-116.93274","33.467436"],["-116.9324959","33.4674156"],["-116.9319617","33.4673954"],["-116.9290994","33.4675052"],["-116.9288522","33.4675063"],["-116.928652","33.4674971"],["-116.9284535","33.4674718"],["-116.9282528","33.4674307"],["-116.9279837","33.4673508"],["-116.9277821","33.4672748"],["-116.9275865","33.4671905"],["-116.9273785","33.4670738"],["-116.9272029","33.4669486"],["-116.9269583","33.4667353"],["-116.9267689","33.46652"],["-116.9265724","33.466257"],["-116.9264462","33.4659754"],["-116.9263782","33.4657213"],["-116.9261325","33.4645004"],["-116.9260709","33.4642625"],["-116.9259578","33.4640063"],["-116.9258083","33.4637837"],["-116.9256618","33.4636182"],["-116.9255006","33.4634619"],["-116.9253063","33.4633139"],["-116.9251134","33.4631994"],["-116.9248865","33.4631036"],["-116.9245639","33.4629991"],["-116.9242765","33.4629448"],["-116.9240002","33.4629231"],["-116.9237681","33.4629279"],["-116.9235553","33.462952"],["-116.9230997","33.4630522"],["-116.9189598","33.4641244"],["-116.9183933","33.4642478"],["-116.9179868","33.4643031"],["-116.9174875","33.464338"],["-116.9170084","33.4643443"],["-116.9164555","33.4643193"],["-116.9159148","33.4642552"],["-116.9154092","33.464162"],["-116.9153199","33.4641414"],["-116.9151434","33.4640943"],["-116.9148904","33.4640138"],["-116.9145089","33.4638767"],["-116.9140878","33.4637128"],["-116.9136855","33.4635226"],["-116.9132325","33.4632651"],["-116.9127359","33.4629689"],["-116.908933","33.460394"],["-116.9083561","33.4600941"],["-116.9078256","33.4598955"],["-116.9064927","33.4597298"],["-116.9055198","33.4596899"],["-116.9047075","33.4596069"],["-116.9039265","33.4594829"],["-116.9031559","33.4592479"],["-116.9026724","33.4590421"],["-116.9021832","33.4587747"],["-116.9019641","33.458631"],["-116.9001872","33.4574331"],["-116.8990129","33.456556"],["-116.8986835","33.4561863"],["-116.8984481","33.455781"],["-116.8979803","33.4548627"],["-116.8971903","33.4531885"],["-116.8964072","33.4515692"],["-116.8959344","33.4506449"],["-116.8955044","33.4500674"],["-116.895097","33.4496633"],["-116.894692","33.4493766"],["-116.8944779","33.4492167"],["-116.8845081","33.4445612"],["-116.8830752","33.4440494"],["-116.8812488","33.4436362"],["-116.8807666","33.4435528"],["-116.8799921","33.4434577"],["-116.8786801","33.4434065"],["-116.8766297","33.4435449"],["-116.875577","33.4437271"],["-116.8724803","33.444272"],["-116.8707114","33.4443281"],["-116.8695507","33.4441826"],["-116.8685571","33.4438892"],["-116.8640202","33.4423722"],["-116.8618361","33.4416776"],["-116.8615888","33.4419556"],["-116.8613842","33.4422753"],["-116.8611801","33.4425527"],["-116.8608531","33.4428466"],["-116.8588529","33.4444593"],["-116.8583952","33.4448261"],["-116.8580753","33.4451137"],["-116.8578237","33.4453872"],["-116.857586","33.4456811"],["-116.857422","33.4459545"],["-116.857266","33.4462611"],["-116.8571197","33.4466586"],["-116.8570248","33.447066"],["-116.8569743","33.4474335"],["-116.8569736","33.4478321"],["-116.8570006","33.4481589"],["-116.8571557","33.4487323"],["-116.8573174","33.4492502"],["-116.857426","33.4495877"],["-116.8579726","33.4512769"],["-116.8580144","33.4514043"],["-116.8593977","33.4557012"],["-116.8596756","33.4566305"],["-116.8598004","33.4570645"],["-116.8598394","33.4573492"],["-116.8598474","33.4576612"],["-116.8598405","33.4581015"],["-116.859747","33.4586309"],["-116.8596236","33.4592316"],["-116.8595651","33.4595633"],["-116.8595526","33.459988"],["-116.8595484","33.4604397"],["-116.8595052","33.460828"],["-116.8594224","33.4611409"],["-116.8593278","33.461367"],["-116.8592043","33.461613"],["-116.8589998","33.4619075"],["-116.8588875","33.462032"],["-116.8588041","33.4621282"],["-116.8582859","33.4625982"],["-116.8569288","33.4638012"],["-116.8563243","33.4643438"],["-116.8561482","33.4645312"],["-116.8560059","33.4646963"],["-116.855799","33.4649931"],["-116.8556946","33.4651774"],["-116.8556295","33.4653275"],["-116.8555564","33.4655054"],["-116.8554286","33.4659814"],["-116.8553863","33.4662544"],["-116.855323","33.4671187"],["-116.8552452","33.4679982"],["-116.8551556","33.4686374"],["-116.8548093","33.4699234"],["-116.8543931","33.4709258"],["-116.8534301","33.4728573"],["-116.8531214","33.473328"],["-116.8528273","33.4736972"],["-116.852242","33.4743351"],["-116.851982","33.4746844"],["-116.8517154","33.4751474"],["-116.8514686","33.4755848"],["-116.8511719","33.4760295"],["-116.8509433","33.476325"],["-116.8506777","33.4766366"],["-116.8502471","33.4770812"],["-116.8486416","33.4784969"],["-116.8460747","33.4805871"],["-116.8448382","33.4815859"],["-116.844448","33.4818741"],["-116.84409","33.4821519"],["-116.8436956","33.4823581"],["-116.8432715","33.4825633"],["-116.8428143","33.4827252"],["-116.8422465","33.4828788"],["-116.8416996","33.4829925"],["-116.8363092","33.4841312"],["-116.8353647","33.4843472"],["-116.8348666","33.4845104"],["-116.8337901","33.4850468"],["-116.8316019","33.4862125"],["-116.831117","33.4864984"],["-116.8306745","33.4868368"],["-116.8277671","33.4893059"],["-116.8270664","33.4898179"],["-116.8265359","33.4901621"],["-116.8259407","33.4904578"],["-116.8248117","33.4910029"],["-116.8244114","33.4912194"],["-116.8238555","33.4916008"],["-116.8225145","33.4927195"],["-116.8214024","33.4936516"],["-116.8206655","33.4941837"],["-116.8203866","33.494328"],["-116.8197099","33.4946592"],["-116.8187496","33.4949999"],["-116.8178577","33.4952817"],["-116.8154348","33.4959898"],["-116.8137625","33.4964821"],["-116.8130063","33.4967675"],["-116.8122645","33.497113"],["-116.8115192","33.4974794"],["-116.8108148","33.4978982"],["-116.8095593","33.4987652"],["-116.8091299","33.4990314"],["-116.8086785","33.4991973"],["-116.8082199","33.4992955"],["-116.8075838","33.4993486"],["-116.8066161","33.499403"],["-116.8055692","33.499452"],["-116.8045635","33.4994945"],["-116.8041603","33.4995156"],["-116.8034646","33.4995474"],["-116.8027553","33.4995737"],["-116.8019264","33.499632"],["-116.8015323","33.4996846"],["-116.8011154","33.4997688"],["-116.8005563","33.4999478"],["-116.8000925","33.5001128"],["-116.799732","33.5002784"],["-116.799373","33.5004529"],["-116.7990122","33.5006759"],["-116.7986014","33.500959"],["-116.7981669","33.5013561"],["-116.7976442","33.5019226"],["-116.7969981","33.502977"],["-116.7958634","33.5054394"],["-116.7951634","33.5068592"],["-116.7946827","33.5075403"],["-116.7931345","33.5093463"],["-116.7911529","33.5116736"],["-116.7890153","33.5142"],["-116.7877549","33.5156575"],["-116.7872705","33.5163221"],["-116.7864195","33.5177784"],["-116.7859298","33.5185519"],["-116.7852639","33.5194747"],["-116.7845424","33.5202672"],["-116.7836247","33.5209868"],["-116.7824346","33.5216362"],["-116.7790759","33.5229383"],["-116.7773895","33.523669"],["-116.7765255","33.5241179"],["-116.7733433","33.5258966"],["-116.7721384","33.5267764"],["-116.7714591","33.5273821"],["-116.7703835","33.5285427"],["-116.765642","33.5337759"],["-116.7648226","33.534499"],["-116.7639925","33.5349828"],["-116.7630785","33.5353505"],["-116.7608215","33.5359086"],["-116.7598058","33.536167"],["-116.7595433","33.5362727"],["-116.758687","33.5367277"],["-116.758251","33.5370201"],["-116.7578761","33.5373624"],["-116.757492","33.5377989"],["-116.7569244","33.5385612"],["-116.7566878","33.5388448"],["-116.7563325","33.5391629"],["-116.7559744","33.5394074"],["-116.7555869","33.539628"],["-116.75515","33.5398173"],["-116.7548031","33.5399371"],["-116.7541967","33.540071"],["-116.7487691","33.5410679"],["-116.7478906","33.5411708"],["-116.7471524","33.5412154"],["-116.7462987","33.5411949"],["-116.7443975","33.541099"],["-116.7438859","33.5411064"],["-116.7435517","33.5411412"],["-116.7431184","33.5412065"],["-116.742287","33.5414083"],["-116.7379399","33.5427142"],["-116.7212784","33.5477254"],["-116.715169","33.5495622"],["-116.7137928","33.5499909"],["-116.7077133","33.5517828"],["-116.7064499","33.5521041"],["-116.7000058","33.5533398"],["-116.6992454","33.5534859"],["-116.6911188","33.5550124"],["-116.6903663","33.5551199"],["-116.6898473","33.5551723"],["-116.6894383","33.5551901"],["-116.6451781","33.5550392"],["-116.6446355","33.5550573"],["-116.6443054","33.5550831"],["-116.6440776","33.5551149"],["-116.6438394","33.5551638"],["-116.643236","33.5553087"],["-116.6429229","33.5553963"],["-116.6426049","33.5555105"],["-116.6421901","33.5556762"],["-116.6414229","33.5560611"],["-116.6295437","33.5627579"],["-116.6284345","33.5632488"],["-116.6278131","33.5633515"],["-116.627248","33.5633502"],["-116.6264279","33.5632613"],["-116.6256678","33.5629677"],["-116.6248483","33.5625028"],["-116.6241324","33.56208"],["-116.6237203","33.5617695"],["-116.6232309","33.5614998"],["-116.6214097","33.5606951"],["-116.6209051","33.5604368"],["-116.6204116","33.5600981"],["-116.6196282","33.5595093"],["-116.6190771","33.5592076"],["-116.6185818","33.5589716"],["-116.6180524","33.5586396"],["-116.6167184","33.5575953"],["-116.6158573","33.5572014"],["-116.615288","33.5570275"],["-116.6147273","33.5569302"],["-116.6141579","33.5569506"],["-116.6134815","33.5570477"],["-116.6128171","33.5572286"],["-116.6121257","33.5574385"],["-116.6114367","33.5577875"],["-116.6106687","33.558359"],["-116.6103419","33.5585725"],["-116.6099813","33.5586762"],["-116.6095669","33.5587808"],["-116.6087432","33.5588724"],["-116.6082837","33.558968"],["-116.6072036","33.5594047"],["-116.6068416","33.5594943"],["-116.6064742","33.5595345"],["-116.6060597","33.5595076"],["-116.605606","33.5594256"],["-116.6051832","33.5594083"],["-116.604842","33.5593861"],["-116.6045278","33.5594507"],["-116.6042678","33.5595361"],["-116.6040299","33.5596566"],["-116.6037328","33.5598702"],["-116.6025644","33.5610644"],["-116.6022031","33.5614593"],["-116.6021143","33.5616255"],["-116.6020457","33.5618179"],["-116.6020135","33.5621043"],["-116.6020676","33.5623402"],["-116.6021459","33.5625217"],["-116.6022638","33.5626852"],["-116.6024071","33.5628245"],["-116.6026703","33.5630407"],["-116.6028782","33.563256"],["-116.6030126","33.5634833"],["-116.6030635","33.5637075"],["-116.6030884","33.5639456"],["-116.6031005","33.5643871"],["-116.6031503","33.5646405"],["-116.6032435","33.5648391"],["-116.6034625","33.5650907"],["-116.6040801","33.565642"],["-116.6042421","33.56588"],["-116.6043191","33.5661189"],["-116.6043317","33.5663774"],["-116.6042779","33.5666823"],["-116.60417","33.5669648"],["-116.6040466","33.567169"],["-116.6038585","33.5673808"],["-116.6036348","33.567577"],["-116.60338","33.5677263"],["-116.6030603","33.5678593"],["-116.6026863","33.5679365"],["-116.6024097","33.5679616"],["-116.6020484","33.5679402"],["-116.6010807","33.5678363"],["-116.6001737","33.5677319"],["-116.5996285","33.5676431"],["-116.59925","33.5675148"],["-116.5989024","33.5673829"],["-116.5986506","33.5672955"],["-116.5984363","33.5672549"],["-116.5981843","33.5672399"],["-116.5977784","33.567264"],["-116.5974416","33.5672755"],["-116.5971556","33.5672515"],["-116.5965494","33.567153"],["-116.5962912","33.567129"],["-116.5961425","33.5671329"],["-116.5959615","33.5671573"],["-116.5957523","33.5671994"],["-116.5955136","33.5672788"],["-116.5952413","33.5674069"],["-116.5927287","33.5686801"],["-116.5923236","33.5689046"],["-116.5921329","33.5690184"],["-116.5918235","33.5692385"],["-116.591624","33.5693872"],["-116.5915041","33.569476"],["-116.5914764","33.5695769"],["-116.5923381","33.5703105"],["-116.5929409","33.5708652"],["-116.5934255","33.5713463"],["-116.5938373","33.5717947"],["-116.5942294","33.5722386"],["-116.5947102","33.5728556"],["-116.5949948","33.5732343"],["-116.5954333","33.5738928"],["-116.5957614","33.5744255"],["-116.6013723","33.5845571"],["-116.6028031","33.5873609"],["-116.6034803","33.5885952"],["-116.6039714","33.5894467"],["-116.6041982","33.589766"],["-116.6045424","33.5901846"],["-116.605335","33.5910521"],["-116.6152367","33.600886"],["-116.6235432","33.6102303"],["-116.6344551","33.6223562"],["-116.6349503","33.6229456"],["-116.6352236","33.6233084"],["-116.6356939","33.624021"],["-116.6379578","33.6275806"],["-116.6387271","33.6287292"],["-116.6391036","33.6292291"],["-116.6419564","33.6328399"],["-116.6472909","33.6395945"],["-116.6480501","33.6405482"],["-116.6482453","33.6407554"],["-116.6484472","33.6409473"],["-116.6486779","33.641154"],["-116.6558122","33.6471632"],["-116.6565562","33.6478478"],["-116.6570192","33.6483362"],["-116.6574683","33.6488343"],["-116.6646421","33.6570362"],["-116.6654415","33.6579687"],["-116.6656378","33.658234"],["-116.6658196","33.6585179"],["-116.6660013","33.6588373"],["-116.6661664","33.659218"],["-116.6664291","33.6599319"],["-116.6666336","33.6605025"],["-116.6668208","33.6610343"],["-116.6681182","33.6646802"],["-116.6683607","33.6653456"],["-116.6684763","33.6656272"],["-116.6685841","33.6658433"],["-116.6687137","33.6660692"],["-116.6688548","33.666296"],["-116.6690102","33.6665261"],["-116.6691633","33.6667226"],["-116.6694821","33.6670927"],["-116.6696956","33.6673043"],["-116.6698788","33.6674735"],["-116.6700918","33.667648"],["-116.6703092","33.6678173"],["-116.6706215","33.6680341"],["-116.6709166","33.6682132"],["-116.6711725","33.668357"],["-116.6769584","33.671349"],["-116.6774254","33.6716116"],["-116.6782544","33.6721098"],["-116.6792802","33.6727502"],["-116.6797697","33.6730591"],["-116.680897","33.6737948"],["-116.6810352","33.6739088"],["-116.6811734","33.6740366"],["-116.6812918","33.6741603"],["-116.6814623","33.67438"],["-116.6816322","33.674611"],["-116.6818285","33.6748819"],["-116.6819855","33.6750834"],["-116.6820616","33.6751703"],["-116.682142","33.6752485"],["-116.6823102","33.6753881"],["-116.6825581","33.6755829"],["-116.6832391","33.6760242"],["-116.6835701","33.6762632"],["-116.6837618","33.6764515"],["-116.6839158","33.6766188"],["-116.6840624","33.6767978"],["-116.6841795","33.6769921"],["-116.6843101","33.6772551"],["-116.6844224","33.6774543"],["-116.6845271","33.6775966"],["-116.6846388","33.6777369"],["-116.6848462","33.677958"],["-116.6853452","33.6784657"],["-116.6854968","33.6786376"],["-116.6856917","33.6789382"],["-116.6858683","33.6792108"],["-116.6860423","33.679454"],["-116.6862913","33.679741"],["-116.6865658","33.6800454"],["-116.6868068","33.6802898"],["-116.68702","33.6804773"],["-116.6876761","33.6809841"],["-116.6879443","33.6811713"],["-116.6882213","33.6813331"],["-116.6887773","33.6816032"],["-116.690653","33.6824757"],["-116.6910203","33.6826333"],["-116.691287","33.6827297"],["-116.6939453","33.6835615"],["-116.6942476","33.6836411"],["-116.6945123","33.6836971"],["-116.6961643","33.6839107"],["-116.6970138","33.6840543"],["-116.6979331","33.6842379"],["-116.6987211","33.6844011"],["-116.698974","33.6844979"],["-116.6992566","33.6846514"],["-116.6994531","33.6848214"],["-116.6996318","33.6850335"],["-116.6997632","33.6852496"],["-116.6998722","33.6853931"],["-116.6999697","33.6855038"],["-116.7000865","33.685595"],["-116.7002149","33.6856763"],["-116.7003655","33.6857501"],["-116.7005251","33.6858065"],["-116.7007006","33.6858464"],["-116.7010353","33.6859132"],["-116.7015063","33.6860144"],["-116.7019133","33.6861316"],["-116.7023694","33.6863196"],["-116.7036198","33.6868897"],["-116.7039003","33.6870376"],["-116.7040813","33.6871582"],["-116.7042145","33.6872616"],["-116.7044001","33.6874279"],["-116.705096","33.6881019"],["-116.705589","33.6886068"],["-116.7066236","33.6897431"],["-116.706806","33.6899229"],["-116.7069533","33.6900315"],["-116.7071849","33.6901584"],["-116.7087302","33.6908848"],["-116.7091888","33.6911057"],["-116.7093897","33.6912309"],["-116.7096079","33.6914191"],["-116.7110524","33.6927545"],["-116.7113475","33.6930722"],["-116.7153941","33.6983235"],["-116.7161812","33.6994905"],["-116.7166355","33.7001056"],["-116.7168579","33.7002956"],["-116.7171602","33.7004838"],["-116.7179595","33.7009016"],["-116.7182357","33.701079"],["-116.7186376","33.7012314"],["-116.7190651","33.7013319"],["-116.7194775","33.7013762"],["-116.7198425","33.701426"],["-116.7200594","33.7014833"],["-116.720239","33.7015891"],["-116.7204221","33.7018103"],["-116.720578","33.702053"],["-116.7206173","33.7021337"],["-116.7207953","33.7023009"],["-116.7209894","33.7023787"],["-116.7211689","33.7024336"],["-116.7213098","33.702448"],["-116.7215037","33.7024413"],["-116.7215786","33.7024383"],["-116.7216419","33.7024328"],["-116.7218584","33.7023734"],["-116.7220314","33.7023326"],["-116.722123","33.702306"],["-116.7223408","33.7022809"],["-116.7225492","33.7022799"],["-116.7227581","33.702379"],["-116.723045","33.7025953"],["-116.7233292","33.7027398"],["-116.7236045","33.7028691"],["-116.724066","33.7030221"],["-116.7242201","33.7030668"],["-116.7243463","33.7031498"],["-116.7244634","33.7032717"],["-116.7245306","33.7034459"],["-116.7245841","33.7036437"],["-116.7247064","33.7039268"],["-116.7248347","33.704181"],["-116.7249755","33.7043973"],["-116.7249896","33.7045335"],["-116.7250002","33.7047012"],["-116.7250004","33.7048469"],["-116.7249788","33.704913"],["-116.7249605","33.7050767"],["-116.7249342","33.7052162"],["-116.7249056","33.7053412"],["-116.7248877","33.7054269"],["-116.7248746","33.7055466"],["-116.7248918","33.7057047"],["-116.7249417","33.70585"],["-116.7250084","33.7060069"],["-116.7251193","33.7061742"],["-116.7251925","33.7062614"],["-116.7252554","33.7063322"],["-116.7259869","33.7070098"],["-116.7260899","33.7071398"],["-116.7261642","33.7072504"],["-116.7262431","33.7074816"],["-116.7262559","33.7075962"],["-116.7262479","33.7077022"],["-116.7262424","33.7078167"],["-116.7262078","33.7079314"],["-116.7261579","33.7080357"],["-116.7260965","33.7081074"],["-116.7260297","33.7081736"],["-116.725927","33.7082389"],["-116.7257558","33.7082978"],["-116.7255936","33.7083364"],["-116.7253173","33.7083569"],["-116.7252042","33.7083523"],["-116.725111","33.7083379"],["-116.7250176","33.7083105"],["-116.7249112","33.7082684"],["-116.7247608","33.7081563"],["-116.7245823","33.708022"],["-116.7244536","33.7079434"],["-116.7243055","33.7078848"],["-116.7241537","33.7078594"],["-116.724007","33.7078527"],["-116.7238564","33.7078257"],["-116.7236853","33.7078534"],["-116.7230625","33.708022"],["-116.7229265","33.7080522"],["-116.7227999","33.7080619"],["-116.7226571","33.7080598"],["-116.7225342","33.708041"],["-116.7224345","33.7079978"],["-116.7223487","33.7079458"],["-116.7222562","33.7078747"],["-116.7221447","33.7077565"],["-116.721989","33.7075447"],["-116.7219008","33.7074417"],["-116.7217828","33.707363"],["-116.7216342","33.7072911"],["-116.7214914","33.7072713"],["-116.7213393","33.7072805"],["-116.7211669","33.7073158"],["-116.7210264","33.7073984"],["-116.7202395","33.7081162"],["-116.7197951","33.7085189"],["-116.7194339","33.7088916"],["-116.7191586","33.7092257"],["-116.7185783","33.7099654"],["-116.7184435","33.7101029"],["-116.7182835","33.7102125"],["-116.7179087","33.7104154"],["-116.7176636","33.7106196"],["-116.7175884","33.7107479"],["-116.7175299","33.7108948"],["-116.7174659","33.7110491"],["-116.717387","33.7111797"],["-116.7172436","33.7113575"],["-116.7169908","33.7116145"],["-116.7166361","33.71196"],["-116.7165575","33.7120588"],["-116.7165118","33.7121499"],["-116.7164867","33.7122538"],["-116.7164955","33.712378"],["-116.7165268","33.7125773"],["-116.7165398","33.7127162"],["-116.7165295","33.7128223"],["-116.7165109","33.7128951"],["-116.7164847","33.7129677"],["-116.7164049","33.7130834"],["-116.7161305","33.7133703"],["-116.7160587","33.7134705"],["-116.7160125","33.7135578"],["-116.7160119","33.713676"],["-116.7160488","33.7137945"],["-116.7161109","33.713875"],["-116.7162218","33.7139477"],["-116.7163704","33.7139843"],["-116.7166898","33.7140475"],["-116.7168186","33.7140819"],["-116.7169226","33.7141294"],["-116.7170078","33.7141941"],["-116.7170841","33.7142668"],["-116.7171371","33.7143544"],["-116.7171849","33.7144571"],["-116.7172073","33.7145648"],["-116.717219","33.7147429"],["-116.7172303","33.7148301"],["-116.717247","33.7148929"],["-116.7173021","33.7150096"],["-116.7173878","33.7151083"],["-116.7175003","33.7151774"],["-116.7176374","33.7152404"],["-116.717792","33.7152774"],["-116.7179675","33.7152817"],["-116.7181133","33.7152599"],["-116.7184589","33.7151784"],["-116.7186313","33.7151475"],["-116.7187919","33.7151397"],["-116.7189764","33.7151632"],["-116.7199427","33.7153349"],["-116.7201534","33.7154203"],["-116.720281","33.715511"],["-116.7203523","33.7155849"],["-116.7204395","33.715698"],["-116.7204877","33.7158273"],["-116.7204915","33.7159774"],["-116.7204465","33.7161164"],["-116.7202718","33.7163811"],["-116.7201096","33.7165971"],["-116.7200012","33.7168649"],["-116.7198907","33.7172684"],["-116.7197839","33.7176251"],["-116.7197007","33.7178771"],["-116.7196819","33.7180204"],["-116.7197023","33.7181021"],["-116.719721","33.7181543"],["-116.7197811","33.7182535"],["-116.7198494","33.7183405"],["-116.7199462","33.7184122"],["-116.7201161","33.7185076"],["-116.7203664","33.7185851"],["-116.7205746","33.7186553"],["-116.7207494","33.7187238"],["-116.7210162","33.7189572"],["-116.7212534","33.7190778"],["-116.7216881","33.7192159"],["-116.7217959","33.7192234"],["-116.7218919","33.7191952"],["-116.7221029","33.7191124"],["-116.7223244","33.7190216"],["-116.7225702","33.7189189"],["-116.7227654","33.7188775"],["-116.7229151","33.7188885"],["-116.7231159","33.7189587"],["-116.7235043","33.7191728"],["-116.7236636","33.7192435"],["-116.7238292","33.7192792"],["-116.7239819","33.719278"],["-116.7241816","33.7192304"],["-116.7244835","33.7191474"],["-116.7246521","33.7191102"],["-116.7247596","33.7190975"],["-116.7248655","33.7190985"],["-116.7250154","33.7191273"],["-116.7251335","33.7191819"],["-116.7252371","33.719271"],["-116.7253105","33.7193674"],["-116.7253567","33.7195004"],["-116.7253689","33.7196043"],["-116.7253534","33.7196887"],["-116.7252597","33.719974"],["-116.7250741","33.7204695"],["-116.7249739","33.7207608"],["-116.7249215","33.720959"],["-116.7249203","33.7211711"],["-116.7249223","33.7214559"],["-116.7249071","33.7216139"],["-116.7248778","33.7217502"],["-116.7248483","33.7218761"],["-116.7248346","33.7219133"],["-116.7247718","33.7220784"],["-116.7247121","33.7221948"],["-116.7246159","33.7223167"],["-116.7244762","33.7224318"],["-116.7242247","33.7226166"],["-116.7241368","33.7227091"],["-116.7240827","33.7228056"],["-116.7240614","33.7228919"],["-116.7240682","33.7229914"],["-116.7241161","33.7230935"],["-116.7242003","33.7231995"],["-116.7243198","33.7233113"],["-116.724412","33.7234231"],["-116.7244548","33.7235353"],["-116.7244538","33.7236944"],["-116.7244263","33.7237764"],["-116.7243566","33.7238851"],["-116.7243223","33.7239122"],["-116.724234","33.7240011"],["-116.7241759","33.7240494"],["-116.7240631","33.7241294"],["-116.7239188","33.7242496"],["-116.7238198","33.7243703"],["-116.7237278","33.7245371"],["-116.7236524","33.7247363"],["-116.7235957","33.7248557"],["-116.7235137","33.7249441"],["-116.7233219","33.7250728"],["-116.7230193","33.7252452"],["-116.7225547","33.7256623"],["-116.7223306","33.7258923"],["-116.7221756","33.7261339"],["-116.7220745","33.7263094"],["-116.7220204","33.72643"],["-116.7219707","33.7265617"],["-116.7219403","33.7268071"],["-116.721951","33.7271597"],["-116.7219531","33.7274067"],["-116.7219503","33.7276445"],["-116.7218678","33.7279668"],["-116.721829","33.728053"],["-116.7217612","33.7281415"],["-116.7216902","33.7282066"],["-116.7216055","33.7282655"],["-116.7215075","33.72832"],["-116.7214016","33.7283531"],["-116.7212909","33.7283693"],["-116.7211747","33.7283719"],["-116.7210486","33.7283658"],["-116.7208956","33.7283345"],["-116.7206514","33.7282732"],["-116.7205149","33.728246"],["-116.7203902","33.7282453"],["-116.7202478","33.7282567"],["-116.7201579","33.7282859"],["-116.7200914","33.7283199"],["-116.7200276","33.7283591"],["-116.7199766","33.7284183"],["-116.7199369","33.7284877"],["-116.7199255","33.7285251"],["-116.7199211","33.728561"],["-116.7199192","33.7286668"],["-116.7199555","33.728758"],["-116.720046","33.7288652"],["-116.7201889","33.7290019"],["-116.7202525","33.7290943"],["-116.7202874","33.7291875"],["-116.7202922","33.7292751"],["-116.7202751","33.7294064"],["-116.7201305","33.7300664"],["-116.7199406","33.7307654"],["-116.7198526","33.7311343"],["-116.7198102","33.7314496"],["-116.7198095","33.7316203"],["-116.7198147","33.7317526"],["-116.7198311","33.7318683"],["-116.7198516","33.7319701"],["-116.7199065","33.732072"],["-116.7200039","33.7322103"],["-116.7202659","33.7325262"],["-116.7204114","33.732695"],["-116.7214352","33.7336524"],["-116.7216274","33.7338548"],["-116.7219665","33.7342888"],["-116.7220826","33.7344139"],["-116.7222056","33.7345119"],["-116.7223526","33.7345911"],["-116.7225302","33.7346412"],["-116.722711","33.7346702"],["-116.7229334","33.7346792"],["-116.7231261","33.7346665"],["-116.7232855","33.7346346"],["-116.7234598","33.7345881"],["-116.7235768","33.7345701"],["-116.7237082","33.7345751"],["-116.7238239","33.7346013"],["-116.7239311","33.7346579"],["-116.7240079","33.7347195"],["-116.7240511","33.7347833"],["-116.7240928","33.7348629"],["-116.7241093","33.7349387"],["-116.7241079","33.7350185"],["-116.7240694","33.7351428"],["-116.7239521","33.7353511"],["-116.7231989","33.7362727"],["-116.72293","33.7365726"],["-116.7216817","33.737852"],["-116.7214082","33.738125"],["-116.7212036","33.7383412"],["-116.7206319","33.7389008"],["-116.720516","33.7390162"],["-116.7203044","33.7392407"],["-116.7200862","33.7394439"],["-116.7198962","33.7395957"],["-116.7197176","33.7397228"],["-116.7195496","33.7398406"],["-116.7193533","33.7400041"],["-116.7192332","33.7401136"],["-116.7191482","33.7402221"],["-116.7190991","33.7403074"],["-116.7190634","33.7403918"],["-116.7190217","33.7405156"],["-116.7190095","33.7406053"],["-116.719004","33.7408031"],["-116.7190226","33.7409266"],["-116.719133","33.7415051"],["-116.7191747","33.7417434"],["-116.7191913","33.7419483"],["-116.7191953","33.742123"],["-116.7191879","33.7422032"],["-116.7191783","33.7422775"],["-116.7191603","33.7423729"],["-116.7191346","33.7424584"],["-116.7190707","33.7425674"],["-116.7190032","33.7426485"],["-116.7188924","33.7427566"],["-116.7187058","33.7428994"],["-116.7181438","33.7432984"],["-116.7179978","33.7433886"],["-116.7178686","33.7434528"],["-116.7177087","33.7435081"],["-116.7171344","33.7436707"],["-116.716754","33.7437904"],["-116.7165065","33.7438854"],["-116.7163296","33.7439584"],["-116.716164","33.7440326"],["-116.7160247","33.7441026"],["-116.7158988","33.7441777"],["-116.7157469","33.7442761"],["-116.7155949","33.7443964"],["-116.7153737","33.7445813"],["-116.7151808","33.7447475"],["-116.7149765","33.7449289"],["-116.7147914","33.7451037"],["-116.7146965","33.7452218"],["-116.7146291","33.7453435"],["-116.7145976","33.745477"],["-116.7145799","33.7455983"],["-116.714579","33.7457124"],["-116.7145986","33.7458138"],["-116.7146659","33.7459821"],["-116.7148081","33.7462827"],["-116.7148505","33.746416"],["-116.7140585","33.7468283"],["-116.7133777","33.7472678"],["-116.7122167","33.7483441"],["-116.7112511","33.749008"],["-116.7109928","33.7491507"],["-116.7081473","33.7505681"],["-116.7079083","33.7507245"],["-116.7077414","33.7509194"],["-116.7075811","33.7512846"],["-116.707368","33.7516974"],["-116.7069755","33.7523198"],["-116.7067236","33.7525672"],["-116.7065211","33.752755"],["-116.7065346","33.7540765"],["-116.7070024","33.7538965"],["-116.7072268","33.7537649"],["-116.7075325","33.7535983"],["-116.70768","33.7531278"],["-116.7078009","33.7528994"],["-116.7076816","33.7531231"],["-116.7075334","33.7535973"],["-116.7072239","33.7537665"],["-116.7069686","33.7539124"],["-116.7065377","33.7540788"],["-116.7065215","33.7527546"],["-116.7067267","33.7525644"],["-116.7069733","33.752322"],["-116.7073623","33.7517203"],["-116.7075937","33.7516319"],["-116.7077129","33.7515601"],["-116.7079079","33.7514173"],["-116.7082225","33.7512045"],["-116.7084127","33.7511227"],["-116.7085239","33.751101"],["-116.7086847","33.7511039"],["-116.709569","33.7511486"],["-116.7096653","33.7511507"],["-116.7105864","33.7511385"],["-116.7107637","33.751173"],["-116.7109037","33.751254"],["-116.7110266","33.7513665"],["-116.7111241","33.7514133"],["-116.7112314","33.7514302"],["-116.7112999","33.7514132"],["-116.7113601","33.7513816"],["-116.7121541","33.7506166"],["-116.7123619","33.7504819"],["-116.7125225","33.7504057"],["-116.7127103","33.7503746"],["-116.7128748","33.7503911"],["-116.713034","33.7504705"],["-116.7132378","33.7506382"],["-116.7133157","33.7506639"],["-116.713445","33.7506627"],["-116.7135829","33.7506507"],["-116.7137367","33.7506905"],["-116.7139233","33.7507505"],["-116.7140235","33.7507451"],["-116.7142918","33.7506205"],["-116.7143892","33.750593"],["-116.7144773","33.7505541"],["-116.7145238","33.7504903"],["-116.7145805","33.7503324"],["-116.7147532","33.749983"],["-116.7149272","33.7499823"],["-116.715515","33.7500187"],["-116.7157349","33.7500525"],["-116.7159064","33.7501015"],["-116.7160872","33.7501669"],["-116.716298","33.7502713"],["-116.7164698","33.750389"],["-116.7165705","33.7504759"],["-116.7166147","33.750517"],["-116.7167318","33.7506625"],["-116.7170483","33.7510795"],["-116.717177","33.7511948"],["-116.7172936","33.7512639"],["-116.7174897","33.7513446"],["-116.7177411","33.7514253"],["-116.7179309","33.7514875"],["-116.7180684","33.7515446"],["-116.7181853","33.7516128"],["-116.7183593","33.7517376"],["-116.7185439","33.7519252"],["-116.7186576","33.7521058"],["-116.7187881","33.7522605"],["-116.718971","33.7524064"],["-116.7191862","33.752557"],["-116.7194194","33.7526718"],["-116.7195784","33.7527299"],["-116.719738","33.7527706"],["-116.7199392","33.7527954"],["-116.7201644","33.7528026"],["-116.7202173","33.7528008"],["-116.7202807","33.7527982"],["-116.7203719","33.7527916"],["-116.7209442","33.7526793"],["-116.721242","33.752631"],["-116.7215166","33.7526135"],["-116.7219071","33.7526605"],["-116.722324","33.7527709"],["-116.722589","33.7528767"],["-116.7233448","33.753245"],["-116.7236572","33.7533731"],["-116.7239325","33.7534485"],["-116.7241623","33.75347"],["-116.7243978","33.7534683"],["-116.7245869","33.7534348"],["-116.7248231","33.7533625"],["-116.7252262","33.7531924"],["-116.7255954","33.7529539"],["-116.7259333","33.752691"],["-116.7264362","33.7522148"],["-116.7269405","33.7517802"],["-116.7273506","33.751421"],["-116.7277","33.7511276"],["-116.7279466","33.7509471"],["-116.7281707","33.7508263"],["-116.7283944","33.7507467"],["-116.7286127","33.7506964"],["-116.7288089","33.7506786"],["-116.7290263","33.7506754"],["-116.7292623","33.750707"],["-116.7295272","33.7507625"],["-116.7307346","33.7511415"],["-116.7310509","33.7512467"],["-116.731297","33.7513243"],["-116.7315837","33.751366"],["-116.7318549","33.751371"],["-116.7320845","33.751337"],["-116.7323014","33.751288"],["-116.7325229","33.7512076"],["-116.7327118","33.7511047"],["-116.7328898","33.750985"],["-116.7331166","33.7507619"],["-116.7332334","33.7506031"],["-116.7333151","33.7504431"],["-116.7335035","33.7499642"],["-116.7336163","33.7497352"],["-116.7337657","33.7495426"],["-116.7339255","33.7493686"],["-116.7341117","33.7491827"],["-116.7343414","33.74902"],["-116.7362708","33.7478975"],["-116.7364533","33.7478093"],["-116.7366135","33.7477435"],["-116.7368017","33.747706"],["-116.7369453","33.7476998"],["-116.7370596","33.7477096"],["-116.7372272","33.7477487"],["-116.7373651","33.7478085"],["-116.7374863","33.7478903"],["-116.7375712","33.7479787"],["-116.7376402","33.7480854"],["-116.737677","33.7481695"],["-116.7377113","33.7483174"],["-116.7377091","33.7484328"],["-116.7376959","33.7485384"],["-116.7376559","33.7486317"],["-116.7376161","33.7487141"],["-116.7375324","33.7488099"],["-116.7374295","33.748899"],["-116.7372439","33.7490025"],["-116.7370898","33.74904"],["-116.7369213","33.7490564"],["-116.73662","33.7490733"],["-116.736313","33.7490944"],["-116.7359926","33.7491475"],["-116.7357679","33.7492178"],["-116.7355459","33.7493288"],["-116.7354125","33.7494224"],["-116.7352406","33.7495546"],["-116.7350807","33.7497379"],["-116.7349456","33.7499853"],["-116.7348634","33.7502263"],["-116.7348497","33.7504132"],["-116.7348504","33.7505557"],["-116.7348779","33.7507308"],["-116.7349371","33.7509166"],["-116.7350486","33.7511188"],["-116.7352471","33.7513438"],["-116.735571","33.7516801"],["-116.7356874","33.7517992"],["-116.7358116","33.7519749"],["-116.7359158","33.7521645"],["-116.7359804","33.7523541"],["-116.7360002","33.7525789"],["-116.7359836","33.7527938"],["-116.7358989","33.7530656"],["-116.7351967","33.7543975"],["-116.7351338","33.7545706"],["-116.7351222","33.7547023"],["-116.7351294","33.7548371"],["-116.7351797","33.7549762"],["-116.73526","33.7551207"],["-116.7353783","33.755254"],["-116.7355349","33.7553621"],["-116.7357446","33.755454"],["-116.7360124","33.7555237"],["-116.7362586","33.7555568"],["-116.7365013","33.7555853"],["-116.7367325","33.7556286"],["-116.7369183","33.7556932"],["-116.7370818","33.7557784"],["-116.7372308","33.7558964"],["-116.7373372","33.7560175"],["-116.7373817","33.7560807"],["-116.7374418","33.7562023"],["-116.7375843","33.7564821"],["-116.7377344","33.7568051"],["-116.7378252","33.7569755"],["-116.7380212","33.7572765"],["-116.7382883","33.757644"],["-116.7385706","33.7579966"],["-116.7386898","33.7581595"],["-116.7387639","33.7582663"],["-116.7388144","33.7583808"],["-116.7388675","33.7585116"],["-116.7388661","33.7586438"],["-116.7388479","33.7587461"],["-116.7388076","33.7588512"],["-116.7387182","33.7590207"],["-116.7386241","33.7592107"],["-116.7384745","33.7594063"],["-116.7383056","33.7596215"],["-116.7382089","33.7597786"],["-116.7381497","33.759894"],["-116.7379835","33.7605344"],["-116.7379336","33.7606973"],["-116.7377876","33.7609822"],["-116.7377587","33.7610827"],["-116.7377341","33.761234"],["-116.737729","33.7614982"],["-116.7377476","33.7620186"],["-116.7377551","33.7626283"],["-116.7377426","33.763426"],["-116.7377212","33.7639482"],["-116.7377262","33.7641551"],["-116.7377631","33.7643209"],["-116.7377936","33.7644523"],["-116.7378587","33.7646148"],["-116.7379421","33.7647334"],["-116.7380461","33.764848"],["-116.7381953","33.7649635"],["-116.7383404","33.7650588"],["-116.7385772","33.765109"],["-116.7388041","33.765191"],["-116.7390515","33.7652836"],["-116.7393175","33.7653923"],["-116.7395582","33.7655113"],["-116.7397659","33.7656318"],["-116.7399117","33.7657265"],["-116.740034","33.7658163"],["-116.7401288","33.7658993"],["-116.7402082","33.7659883"],["-116.7402754","33.7660814"],["-116.7403625","33.7662249"],["-116.740436","33.7663691"],["-116.7404937","33.766523"],["-116.7405364","33.7666864"],["-116.7405499","33.7668363"],["-116.7405521","33.7669918"],["-116.7405379","33.767173"],["-116.7405349","33.7672716"],["-116.7405422","33.7673952"],["-116.7405819","33.767538"],["-116.7407647","33.7679623"],["-116.7408506","33.7681764"],["-116.7408868","33.7682999"],["-116.7409072","33.7684263"],["-116.7409098","33.768561"],["-116.7408971","33.7686881"],["-116.7408788","33.7687846"],["-116.740848","33.7689001"],["-116.7407869","33.7690926"],["-116.740767","33.7692198"],["-116.7407659","33.7693352"],["-116.740772","33.7694409"],["-116.7407992","33.769569"],["-116.7408448","33.7697529"],["-116.7408922","33.7699511"],["-116.7409126","33.7700835"],["-116.7409142","33.7702169"],["-116.74089","33.7704294"],["-116.7408809","33.7704516"],["-116.7408381","33.7706157"],["-116.7405668","33.7715039"],["-116.740482","33.7717449"],["-116.7403941","33.7719212"],["-116.7402814","33.7720875"],["-116.740176","33.7722138"],["-116.7400346","33.7724458"],["-116.7398413","33.7726915"],["-116.7397826","33.7728089"],["-116.7397504","33.7729287"],["-116.739634","33.7736601"],["-116.7395754","33.7739158"],["-116.7395092","33.7740921"],["-116.7394172","33.7742469"],["-116.7392711","33.7744367"],["-116.7390874","33.774618"],["-116.7388775","33.7747804"],["-116.7380948","33.775206"],["-116.7378577","33.7753414"],["-116.7376397","33.7754838"],["-116.7374304","33.7756031"],["-116.7372035","33.7756971"],["-116.736465","33.7759561"],["-116.736272","33.7760673"],["-116.736181","33.7761404"],["-116.7361225","33.7762323"],["-116.7361281","33.7763467"],["-116.7360858","33.7764374"],["-116.7360624","33.7764966"],["-116.7360451","33.7765676"],["-116.736051","33.7766237"],["-116.7360669","33.7766905"],["-116.7360971","33.7767505"],["-116.7361635","33.7768944"],["-116.7364101","33.777072"],["-116.7366307","33.7771748"],["-116.737706","33.7774429"],["-116.7379462","33.7775185"],["-116.7382382","33.7776227"],["-116.7387689","33.7778789"],["-116.7389637","33.7779961"],["-116.7391256","33.7781067"],["-116.7392734","33.7782333"],["-116.739383","33.7783539"],["-116.7395859","33.7785905"],["-116.7397953","33.7788048"],["-116.7400138","33.778965"],["-116.7402498","33.7790821"],["-116.74049","33.7791944"],["-116.7407762","33.7792638"],["-116.7410482","33.7792993"],["-116.7412572","33.7793111"],["-116.7414651","33.7792834"],["-116.7418616","33.7792053"],["-116.7421246","33.7791053"],["-116.7423874","33.778979"],["-116.7426586","33.77884"],["-116.7430051","33.7787151"],["-116.7432098","33.7786905"],["-116.7433812","33.7786822"],["-116.7435339","33.7786954"],["-116.7436919","33.7787273"],["-116.7438329","33.7787802"],["-116.7466789","33.7803384"],["-116.7468577","33.7804464"],["-116.7469587","33.7805099"],["-116.7471174","33.7806488"],["-116.7475123","33.7810775"],["-116.7477603","33.7813322"],["-116.7479823","33.7815233"],["-116.7482483","33.7817796"],["-116.74853","33.7820942"],["-116.7486669","33.7822313"],["-116.7488142","33.7823597"],["-116.749018","33.7825141"],["-116.7491649","33.7825934"],["-116.7493859","33.7826727"],["-116.7496423","33.7827419"],["-116.7499588","33.7828067"],["-116.7504777","33.7828433"],["-116.7506791","33.7828764"],["-116.7508613","33.7829231"],["-116.7509854","33.7829715"],["-116.7510861","33.7830228"],["-116.7511999","33.7831163"],["-116.7512968","33.7832057"],["-116.7513632","33.7832954"],["-116.7514207","33.7833712"],["-116.7514703","33.7834758"],["-116.7515173","33.7836243"],["-116.7515333","33.7837686"],["-116.7514767","33.7841207"],["-116.7513986","33.784301"],["-116.7512582","33.784452"],["-116.7511272","33.7845949"],["-116.7509883","33.784754"],["-116.7509158","33.7848685"],["-116.7508537","33.7850136"],["-116.7508396","33.7851287"],["-116.7508346","33.7852735"],["-116.7508753","33.7854033"],["-116.7509069","33.7854967"],["-116.7509656","33.7855864"],["-116.7511222","33.7857562"],["-116.751362","33.7859306"],["-116.7515977","33.7860942"],["-116.751712","33.7861826"],["-116.7518036","33.7862855"],["-116.751872","33.7863751"],["-116.7520024","33.7866982"],["-116.7520195","33.7868775"],["-116.7520236","33.7870623"],["-116.7519772","33.787267"],["-116.7519042","33.7875118"],["-116.751802","33.7877386"],["-116.751693","33.7879113"],["-116.7516079","33.7880333"],["-116.7515156","33.7881271"],["-116.7514043","33.7882381"],["-116.7512149","33.7883976"],["-116.7508039","33.7886731"],["-116.7505004","33.7888836"],["-116.7503859","33.7890109"],["-116.7503132","33.7891179"],["-116.7502732","33.7892382"],["-116.7502516","33.7893628"],["-116.7502777","33.7896088"],["-116.7503286","33.7898112"],["-116.7503669","33.7899891"],["-116.750362","33.790096"],["-116.7503342","33.7901927"],["-116.7502985","33.7902696"],["-116.7501982","33.7904088"],["-116.7500966","33.7905264"],["-116.749929","33.7906508"],["-116.7497621","33.7907486"],["-116.7496082","33.7908171"],["-116.7494003","33.7908805"],["-116.7491583","33.7909439"],["-116.7489707","33.7910045"],["-116.7487662","33.7911102"],["-116.7483996","33.7913602"],["-116.7482141","33.79146"],["-116.7480288","33.7915365"],["-116.7478349","33.7915868"],["-116.7475479","33.791619"],["-116.74709","33.791623"],["-116.7466493","33.7916346"],["-116.7464297","33.7916332"],["-116.7462271","33.791616"],["-116.7460458","33.7915726"],["-116.7456688","33.7914351"],["-116.7454988","33.791392"],["-116.7453242","33.7913982"],["-116.7451491","33.7914335"],["-116.744997","33.7915044"],["-116.7448816","33.7915912"],["-116.744557","33.791902"],["-116.7444113","33.7920264"],["-116.7441981","33.7921611"],["-116.7438108","33.7923808"],["-116.7436738","33.7924964"],["-116.743589","33.79261"],["-116.7435292","33.7927299"],["-116.743493","33.7928498"],["-116.7434247","33.7933716"],["-116.7433775","33.7936839"],["-116.743311","33.7939018"],["-116.743245","33.7940307"],["-116.7431431","33.7942"],["-116.7430487","33.7943113"],["-116.742936","33.7944134"],["-116.742622","33.7946352"],["-116.742396","33.7948151"],["-116.7422679","33.7949547"],["-116.7421437","33.7951273"],["-116.7420484","33.7952798"],["-116.7419583","33.7953878"],["-116.7418695","33.7954762"],["-116.741782","33.795547"],["-116.7415786","33.7956751"],["-116.7412944","33.7958488"],["-116.7411557","33.795952"],["-116.7410743","33.7960387"],["-116.7409927","33.79615"],["-116.7409582","33.7962417"],["-116.7409341","33.7963963"],["-116.740963","33.7965429"],["-116.7410354","33.7967026"],["-116.7411135","33.796817"],["-116.7412471","33.7969212"],["-116.7413838","33.7969864"],["-116.7415287","33.79702"],["-116.7417127","33.7970285"],["-116.7418798","33.7970051"],["-116.7420882","33.7969238"],["-116.7422629","33.7968002"],["-116.7424062","33.7966601"],["-116.7425475","33.796477"],["-116.7427227","33.7962193"],["-116.7428448","33.7960763"],["-116.7429808","33.7959656"],["-116.7435181","33.7956503"],["-116.7437063","33.7955203"],["-116.7438577","33.7953949"],["-116.7439699","33.7952694"],["-116.7441368","33.7950606"],["-116.7442643","33.7949343"],["-116.7444026","33.7948277"],["-116.744568","33.7947551"],["-116.7447426","33.7946897"],["-116.7451229","33.7946029"],["-116.7452606","33.794598"],["-116.7454537","33.7946321"],["-116.7456742","33.7947128"],["-116.7458503","33.7948333"],["-116.7459732","33.7949495"],["-116.7460728","33.7951049"],["-116.7461304","33.795253"],["-116.746172","33.7954236"],["-116.7461913","33.7957601"],["-116.7462091","33.7959589"],["-116.7462647","33.7961239"],["-116.7463467","33.7962496"],["-116.746514","33.7964112"],["-116.7468887","33.7966815"],["-116.7469923","33.7967868"],["-116.7470587","33.7968834"],["-116.747128","33.7970438"],["-116.7472017","33.7972736"],["-116.7473018","33.7975121"],["-116.7475602","33.797924"],["-116.7478017","33.7983016"],["-116.7479821","33.7985505"],["-116.7480919","33.7986584"],["-116.7482536","33.7987721"],["-116.7485344","33.7988672"],["-116.7488473","33.7989359"],["-116.7490849","33.7989472"],["-116.7492963","33.7989179"],["-116.7495551","33.7988208"],["-116.7496843","33.798752"],["-116.7498232","33.7986416"],["-116.7499855","33.7984486"],["-116.750091","33.7982829"],["-116.7501967","33.798056"],["-116.750374","33.7973927"],["-116.7504495","33.7971753"],["-116.750531","33.7970172"],["-116.7505828","33.7969491"],["-116.7506367","33.7968907"],["-116.7506785","33.7968444"],["-116.7507727","33.7967604"],["-116.7508854","33.7966772"],["-116.7510499","33.796582"],["-116.7512441","33.7964851"],["-116.7513985","33.7964399"],["-116.7516064","33.7964173"],["-116.7521333","33.7964414"],["-116.7523558","33.7964415"],["-116.7525287","33.7964496"],["-116.7527743","33.7964123"],["-116.7531334","33.7963256"],["-116.7536294","33.7961893"],["-116.7539247","33.7961649"],["-116.7541041","33.7961667"],["-116.7543058","33.7961882"],["-116.7545748","33.7962526"],["-116.7551718","33.7964232"],["-116.7554699","33.7964855"],["-116.7556996","33.7965183"],["-116.7559629","33.7965508"],["-116.7562606","33.7965694"],["-116.7570558","33.7965984"],["-116.7573191","33.7966207"],["-116.7575374","33.796655"],["-116.7577351","33.796695"],["-116.7580452","33.7968168"],["-116.7589332","33.7972989"],["-116.7602707","33.7980408"],["-116.7604691","33.7981218"],["-116.760693","33.7981859"],["-116.7610312","33.7982183"],["-116.7615185","33.7982363"],["-116.7617962","33.7982641"],["-116.7620525","33.798316"],["-116.7622023","33.7983746"],["-116.7624999","33.798525"],["-116.7627203","33.7986534"],["-116.7628923","33.798782"],["-116.763033","33.7989197"],["-116.7631601","33.7990906"],["-116.7632725","33.7992648"],["-116.7634173","33.7994692"],["-116.763554","33.7996296"],["-116.7636706","33.7997197"],["-116.7638249","33.7997989"],["-116.7639885","33.7998488"],["-116.7641509","33.7998765"],["-116.7643019","33.7998773"],["-116.7644459","33.7998634"],["-116.7646025","33.7998278"],["-116.7647456","33.7997718"],["-116.7650348","33.7996206"],["-116.7652335","33.7995337"],["-116.765425","33.7994728"],["-116.7655957","33.7994444"],["-116.7658096","33.7994389"],["-116.766003","33.7994497"],["-116.7661732","33.7994842"],["-116.7663436","33.7995356"],["-116.7666256","33.7996573"],["-116.7668696","33.799774"],["-116.7670878","33.7998588"],["-116.7672517","33.7998968"],["-116.7674294","33.7999184"],["-116.7676058","33.7999216"],["-116.767752","33.7999113"],["-116.7679171","33.7998832"],["-116.7680653","33.7998387"],["-116.7682085","33.7997875"],["-116.7684921","33.7996286"],["-116.7698881","33.7987736"],["-116.7703389","33.7985121"],["-116.7708439","33.7981992"],["-116.7713061","33.7979162"],["-116.7731495","33.7968414"],["-116.7734196","33.7967205"],["-116.773576","33.7966614"],["-116.773684","33.7966379"],["-116.7738409","33.796618"],["-116.7739551","33.7966194"],["-116.7741252","33.7966329"],["-116.7743666","33.7966669"],["-116.7746213","33.7967234"],["-116.7748817","33.7968067"],["-116.7750362","33.7968943"],["-116.7753404","33.7970951"],["-116.7755088","33.7971827"],["-116.7757135","33.7972593"],["-116.7758789","33.7972979"],["-116.7760229","33.7973159"],["-116.7762007","33.7973158"],["-116.7763908","33.7972931"],["-116.7766088","33.7972512"],["-116.776848","33.7972002"],["-116.7770989","33.7971744"],["-116.7773073","33.7971921"],["-116.7775004","33.7972249"],["-116.7776933","33.7972855"],["-116.7777832","33.7973307"],["-116.7779172","33.7974133"],["-116.7780709","33.7975263"],["-116.778218","33.7976898"],["-116.7782791","33.7977852"],["-116.7785033","33.7982386"],["-116.7786181","33.7984373"],["-116.7787812","33.7986176"],["-116.779237","33.7990439"],["-116.779428","33.7992675"],["-116.7795696","33.7995192"],["-116.7798069","33.8000882"],["-116.7803524","33.80131"],["-116.7805707","33.8018501"],["-116.7806465","33.8020892"],["-116.7806587","33.8021957"],["-116.7806646","33.8022445"],["-116.7806631","33.8023524"],["-116.7806426","33.8024692"],["-116.7805314","33.8027854"],["-116.7804092","33.8031286"],["-116.7803847","33.8033044"],["-116.7803951","33.8034661"],["-116.7804262","33.8035821"],["-116.7804599","33.8036871"],["-116.780514","33.803791"],["-116.7806341","33.8039404"],["-116.7807786","33.804063"],["-116.7809401","33.804165"],["-116.7811374","33.8042639"],["-116.7812824","33.8042975"],["-116.7814458","33.8043041"],["-116.7818672","33.8042768"],["-116.7821932","33.80424"],["-116.7825788","33.8041989"],["-116.7841389","33.8040646"],["-116.7844397","33.8040851"],["-116.7847902","33.8041334"],["-116.7851585","33.8042176"],["-116.7855163","33.804337"],["-116.7857903","33.8044523"],["-116.7860332","33.8045755"],["-116.7862172","33.8046923"],["-116.7864348","33.8048698"],["-116.7866476","33.8050715"],["-116.7867952","33.8052255"],["-116.7869509","33.805412"],["-116.7871967","33.8057945"],["-116.7873409","33.8061269"],["-116.7880527","33.808161"],["-116.7882014","33.8085478"],["-116.7884677","33.8093063"],["-116.7885415","33.8094913"],["-116.7885755","33.8096453"],["-116.7886143","33.8099064"],["-116.7886229","33.8101385"],["-116.7885852","33.8103318"],["-116.7885365","33.8105072"],["-116.7884378","33.8107088"],["-116.7880475","33.8113053"],["-116.7879548","33.8114616"],["-116.7879053","33.8115949"],["-116.7878836","33.8117242"],["-116.7878731","33.8118367"],["-116.7879007","33.8119613"],["-116.7879311","33.8121007"],["-116.7879781","33.812213"],["-116.7881433","33.8124149"],["-116.7889315","33.8132783"],["-116.789088","33.8134622"],["-116.789159","33.8135745"],["-116.7892238","33.8136811"],["-116.789288","33.8138343"],["-116.7893196","33.8140874"],["-116.789314","33.8146531"],["-116.7893445","33.8149814"],["-116.7893672","33.8150841"],["-116.7894245","33.8151936"],["-116.7895234","33.8153443"],["-116.7896805","33.8155036"],["-116.7898871","33.8156803"],["-116.7900037","33.8157842"],["-116.7900883","33.8158958"],["-116.7901733","33.8160313"],["-116.7902393","33.816191"],["-116.7902807","33.816365"],["-116.7902843","33.8164769"],["-116.7902456","33.8167637"],["-116.7901693","33.8169299"],["-116.7900552","33.8170903"],["-116.7896462","33.8174701"],["-116.7894145","33.8176781"],["-116.7891503","33.8179518"],["-116.7890626","33.818071"],["-116.789013","33.818172"],["-116.788969","33.8182737"],["-116.7889429","33.8184191"],["-116.7889254","33.8185622"],["-116.7889373","33.8187295"],["-116.7889754","33.8188632"],["-116.7890637","33.8190755"],["-116.7891908","33.819256"],["-116.7893162","33.819416"],["-116.7894712","33.8195348"],["-116.7896974","33.819662"],["-116.7901702","33.8198903"],["-116.7903729","33.820007"],["-116.7908472","33.8204063"],["-116.7910824","33.820571"],["-116.7913789","33.8207176"],["-116.7915934","33.8207966"],["-116.7918346","33.8208352"],["-116.7920667","33.8208512"],["-116.7923269","33.820851"],["-116.7924998","33.8208668"],["-116.7926522","33.8208836"],["-116.7927577","33.8209119"],["-116.7930074","33.8210105"],["-116.7935096","33.8212188"],["-116.7936475","33.8213086"],["-116.7937658","33.8213816"],["-116.7938507","33.8214711"],["-116.7939288","33.8215725"],["-116.7939844","33.8216843"],["-116.7940234","33.8217781"],["-116.7940475","33.8218936"],["-116.7940287","33.8220196"],["-116.793968","33.82217"],["-116.7936947","33.822692"],["-116.7936443","33.8228415"],["-116.7936319","33.8229702"],["-116.7936357","33.823039"],["-116.7936633","33.8231344"],["-116.7937113","33.8232832"],["-116.7938424","33.8235419"],["-116.7945154","33.8247673"],["-116.7946964","33.8251252"],["-116.795177","33.8259992"],["-116.7956825","33.8269439"],["-116.7961341","33.8279528"],["-116.7962283","33.8282131"],["-116.7962673","33.8284234"],["-116.7963029","33.8286176"],["-116.7963007","33.8288427"],["-116.7962594","33.8291378"],["-116.7961473","33.8296924"],["-116.796108","33.8299738"],["-116.7961171","33.8302038"],["-116.7961503","33.8304076"],["-116.7961659","33.8305556"],["-116.7962712","33.8308406"],["-116.7963945","33.8310341"],["-116.7965081","33.8311682"],["-116.7966602","33.8313046"],["-116.7971126","33.8316363"],["-116.7978608","33.8321591"],["-116.7990902","33.8330148"],["-116.7992472","33.8331314"],["-116.799651","33.8333859"],["-116.8012776","33.8343947"],["-116.8016829","33.8346098"],["-116.8020811","33.8348004"],["-116.8024467","33.8349475"],["-116.8028152","33.8350677"],["-116.8033089","33.8351963"],["-116.8071024","33.8360677"],["-116.8075583","33.8361816"],["-116.8078223","33.836271"],["-116.8080317","33.8363735"],["-116.8081554","33.8364477"],["-116.8082811","33.8365376"],["-116.8084084","33.8366355"],["-116.8085362","33.8367414"],["-116.8086685","33.8369013"],["-116.8087568","33.8370378"],["-116.8088209","33.8371726"],["-116.8088912","33.8373381"],["-116.8089955","33.8376871"],["-116.8090752","33.83787"],["-116.8091726","33.8380069"],["-116.8092691","33.8381094"],["-116.8093836","33.8382099"],["-116.8095008","33.8382862"],["-116.8096603","33.8383768"],["-116.8098977","33.838476"],["-116.8102554","33.8386183"],["-116.8104729","33.8387546"],["-116.8105709","33.8388548"],["-116.810653","33.8389572"],["-116.8107179","33.8390843"],["-116.8107494","33.8391999"],["-116.8107621","33.8393205"],["-116.8107579","33.8394179"],["-116.8107421","33.8395129"],["-116.8106887","33.8396541"],["-116.8106151","33.8397705"],["-116.8104765","33.8399211"],["-116.8103407","33.840066"],["-116.8102508","33.8401969"],["-116.8101985","33.8403179"],["-116.8101643","33.8404431"],["-116.8101603","33.8405748"],["-116.8101719","33.8407042"],["-116.8102046","33.8408044"],["-116.8102533","33.8409059"],["-116.8103604","33.8410497"],["-116.8104796","33.8411585"],["-116.8106266","33.8412525"],["-116.8107461","33.8413053"],["-116.8108685","33.8413406"],["-116.8110682","33.8413692"],["-116.8112682","33.8413617"],["-116.8114306","33.8413285"],["-116.8115812","33.841274"],["-116.8118985","33.8411315"],["-116.8121046","33.8410601"],["-116.8122833","33.8410344"],["-116.8124302","33.8410394"],["-116.8125711","33.841063"],["-116.8127141","33.8411004"],["-116.812871","33.8411641"],["-116.8130183","33.8412515"],["-116.81311","33.8413255"],["-116.8132076","33.8414439"],["-116.81328","33.8415824"],["-116.81334","33.8417821"],["-116.8134032","33.8419963"],["-116.8134753","33.8421542"],["-116.8135584","33.8422783"],["-116.8136574","33.8423883"],["-116.8137792","33.8424962"],["-116.8139132","33.8425737"],["-116.8140606","33.8426434"],["-116.8142522","33.8426902"],["-116.8146498","33.842753"],["-116.8148963","33.8428018"],["-116.8151119","33.842881"],["-116.8153046","33.842983"],["-116.8154864","33.843117"],["-116.8156137","33.8432429"],["-116.8157153","33.8433786"],["-116.8157984","33.8435218"],["-116.8159428","33.8438252"],["-116.8161895","33.8443601"],["-116.8162895","33.8445493"],["-116.816376","33.8446691"],["-116.8164813","33.8447851"],["-116.8166252","33.8449075"],["-116.8167865","33.8450107"],["-116.8169569","33.845099"],["-116.8171429","33.8451686"],["-116.817344","33.8452248"],["-116.8177028","33.8453003"],["-116.8187454","33.8455066"],["-116.8189774","33.8455655"],["-116.8191336","33.8456174"],["-116.8192776","33.8456859"],["-116.8194007","33.8457741"],["-116.8195203","33.84588"],["-116.819614","33.8460022"],["-116.8196751","33.8461379"],["-116.8196975","33.8462775"],["-116.8196829","33.8464361"],["-116.8196354","33.8467976"],["-116.8196244","33.8469673"],["-116.8196453","33.8471376"],["-116.8196941","33.847289"],["-116.8197937","33.8474645"],["-116.8199317","33.84762"],["-116.8200756","33.8477425"],["-116.8202233","33.8478293"],["-116.820503","33.8479505"],["-116.8213209","33.8482498"],["-116.821786","33.8484285"],["-116.8219652","33.8485387"],["-116.8221164","33.8486911"],["-116.8222004","33.848814"],["-116.8222629","33.8489958"],["-116.8223018","33.8491952"],["-116.8223365","33.8493716"],["-116.8223887","33.8495273"],["-116.8224596","33.8496506"],["-116.8225359","33.849768"],["-116.8226448","33.849878"],["-116.822751","33.849954"],["-116.8228924","33.850026"],["-116.8231131","33.8501051"],["-116.8233155","33.8501395"],["-116.8235358","33.8501454"],["-116.8239185","33.8501105"],["-116.8247287","33.8500048"],["-116.8249386","33.8500019"],["-116.8251488","33.8500182"],["-116.8253617","33.850073"],["-116.8255468","33.8501545"],["-116.8257083","33.850259"],["-116.8258543","33.8503909"],["-116.8259754","33.8505489"],["-116.826083","33.8507388"],["-116.8263065","33.8511541"],["-116.826399","33.851269"],["-116.8265068","33.8513703"],["-116.8266601","33.8514758"],["-116.8268453","33.8515847"],["-116.8270311","33.8516616"],["-116.8271968","33.8517101"],["-116.8273661","33.8517436"],["-116.8275955","33.8517673"],["-116.8278318","33.8517557"],["-116.8280692","33.8517308"],["-116.8283009","33.8517201"],["-116.8284862","33.8517293"],["-116.8287031","33.8517572"],["-116.828887","33.8517996"],["-116.8290364","33.8518562"],["-116.8292053","33.8519443"],["-116.8293253","33.8520243"],["-116.8294368","33.8521171"],["-116.8296193","33.8522962"],["-116.829792","33.8525054"],["-116.8299553","33.8527085"],["-116.8300542","33.8528098"],["-116.8301881","33.8529168"],["-116.8307464","33.8532796"],["-116.8311157","33.8535354"],["-116.8313968","33.8537536"],["-116.8315781","33.8539197"],["-116.8317141","33.8540939"],["-116.8318448","33.854349"],["-116.8319428","33.8545272"],["-116.8320601","33.8546804"],["-116.8322027","33.8548186"],["-116.8323838","33.8549589"],["-116.8326188","33.8550885"],["-116.8329932","33.8552484"],["-116.8332864","33.8553712"],["-116.8335324","33.8554905"],["-116.8339357","33.855756"],["-116.834241","33.8559969"],["-116.8344946","33.8562322"],["-116.836452","33.8580236"],["-116.8368638","33.8583536"],["-116.8378826","33.8590315"],["-116.8380376","33.8591583"],["-116.8381594","33.8592762"],["-116.8382598","33.8593902"],["-116.8383717","33.8595221"],["-116.838453","33.8596697"],["-116.8384975","33.8597946"],["-116.8385253","33.8598961"],["-116.8385425","33.8600141"],["-116.8385576","33.8601968"],["-116.8385553","33.8602729"],["-116.8385444","33.8603385"],["-116.8385111","33.8604474"],["-116.8384471","33.8606025"],["-116.8382717","33.8608944"],["-116.8379029","33.8614503"],["-116.8372663","33.8623744"],["-116.8370957","33.862659"],["-116.8370111","33.8628489"],["-116.8369486","33.863014"],["-116.8369046","33.8631856"],["-116.8368703","33.8633876"],["-116.8368406","33.8636698"],["-116.8368459","33.8638782"],["-116.8368721","33.8641589"],["-116.8368961","33.8643222"],["-116.8369358","33.8644937"],["-116.8370461","33.8647684"],["-116.8371771","33.86503"],["-116.8373637","33.8653065"],["-116.8375422","33.8655046"],["-116.83779","33.8657267"],["-116.8381631","33.8660439"],["-116.8382727","33.8661494"],["-116.8386255","33.8664023"],["-116.8388446","33.8665842"],["-116.8390114","33.86675"],["-116.8391735","33.8669219"],["-116.8392914","33.8670573"],["-116.8393685","33.867192"],["-116.839436","33.8673305"],["-116.8394963","33.8674873"],["-116.8395753","33.8677572"],["-116.839631","33.8680499"],["-116.839674","33.868376"],["-116.8397286","33.8686509"],["-116.8398015","33.8689128"],["-116.8398871","33.869123"],["-116.8399656","33.8692581"],["-116.8400608","33.869401"],["-116.8402572","33.8696643"],["-116.8403511","33.8698093"],["-116.8404083","33.869934"],["-116.8404343","33.8700235"],["-116.8404546","33.870103"],["-116.8404683","33.870258"],["-116.8404526","33.8704109"],["-116.8404125","33.8705748"],["-116.840348","33.8707237"],["-116.8402611","33.8708619"],["-116.8401213","33.8710131"],["-116.839915","33.8712165"],["-116.8397832","33.87137"],["-116.8396999","33.8715024"],["-116.8396336","33.8716543"],["-116.839599","33.8718312"],["-116.8396031","33.8720395"],["-116.8396435","33.872218"],["-116.8397113","33.8723667"],["-116.8398048","33.8725051"],["-116.840014","33.8727449"],["-116.84135","33.8741534"],["-116.841601","33.8744437"],["-116.8417391","33.8746485"],["-116.8418281","33.8748019"],["-116.8418933","33.8749349"],["-116.8419347","33.8750499"],["-116.8419683","33.8751694"],["-116.8420034","33.8754076"],["-116.8422022","33.8772924"],["-116.8422593","33.8776896"],["-116.8423043","33.8779006"],["-116.8423999","33.8781322"],["-116.8425427","33.8783547"],["-116.842673","33.8784967"],["-116.842832","33.8786256"],["-116.8430756","33.8787922"],["-116.8443934","33.8795925"],["-116.8447193","33.8797707"],["-116.845113","33.8799577"],["-116.8456776","33.8801792"],["-116.8466924","33.8805428"],["-116.8470085","33.8806134"],["-116.8472432","33.8805975"],["-116.8474252","33.8805467"],["-116.8476385","33.880459"],["-116.8479838","33.8803769"],["-116.848221","33.8803609"],["-116.8484806","33.8803859"],["-116.848987","33.8805261"],["-116.8492302","33.88055"],["-116.8494051","33.8805523"],["-116.8499081","33.8805112"],["-116.8501702","33.8805068"],["-116.850409","33.880539"],["-116.8506088","33.8805979"],["-116.8507784","33.8806739"],["-116.8509422","33.8807752"],["-116.8511136","33.8809431"],["-116.8513698","33.8813175"],["-116.8515921","33.8816333"],["-116.8518018","33.8818931"],["-116.8521937","33.8822909"],["-116.852442","33.8825588"],["-116.8526237","33.882784"],["-116.8528962","33.8831783"],["-116.8530969","33.883498"],["-116.8532886","33.8838175"],["-116.8534136","33.8840002"],["-116.8535391","33.8841503"],["-116.8537068","33.8843092"],["-116.853915","33.8844603"],["-116.8541428","33.8845691"],["-116.8544089","33.8846715"],["-116.85469","33.8847363"],["-116.8549747","33.8847682"],["-116.8552766","33.8847614"],["-116.8555556","33.884735"],["-116.8557831","33.884721"],["-116.855998","33.8847338"],["-116.8562071","33.8847851"],["-116.8563971","33.884869"],["-116.8565592","33.884987"],["-116.8567077","33.8851192"],["-116.8568226","33.8852445"],["-116.8569055","33.8853979"],["-116.8569547","33.8856124"],["-116.8570226","33.8860721"],["-116.857111","33.8863463"],["-116.8572282","33.8866023"],["-116.8574588","33.8869563"],["-116.8575261","33.8870819"],["-116.8575679","33.8871901"],["-116.8575968","33.8873459"],["-116.8575856","33.8874962"],["-116.8575432","33.8876283"],["-116.8574808","33.8877573"],["-116.8574009","33.8878624"],["-116.8572884","33.887972"],["-116.8571013","33.8880895"],["-116.8569606","33.8881448"],["-116.8568101","33.8881926"],["-116.8565752","33.8882239"],["-116.8563158","33.8882196"],["-116.8560601","33.8881821"],["-116.8557767","33.8881133"],["-116.8552749","33.8879444"],["-116.8549864","33.887877"],["-116.8548007","33.8878719"],["-116.8546158","33.8879081"],["-116.8544727","33.8879616"],["-116.854348","33.8880316"],["-116.8542291","33.8881298"],["-116.8541374","33.8882352"],["-116.854084","33.8883617"],["-116.8540706","33.888452"],["-116.8540761","33.8885626"],["-116.8541608","33.8889098"],["-116.8541911","33.8890991"],["-116.8542064","33.8893507"],["-116.8542742","33.8896028"],["-116.8543873","33.8897968"],["-116.8545461","33.8899562"],["-116.8547501","33.8900674"],["-116.8549378","33.8901257"],["-116.8551394","33.8901472"],["-116.8553911","33.8901296"],["-116.8558306","33.8900438"],["-116.856134","33.890015"],["-116.8564113","33.890031"],["-116.8566943","33.8900881"],["-116.8570567","33.8902096"],["-116.8573411","33.8902976"],["-116.8575617","33.8903138"],["-116.8577219","33.8902879"],["-116.8578695","33.8902326"],["-116.858025","33.8901434"],["-116.8581135","33.8900488"],["-116.8582","33.8899189"],["-116.8583422","33.8896789"],["-116.8584682","33.8895434"],["-116.8586479","33.8893959"],["-116.8588299","33.8893197"],["-116.8590244","33.8892913"],["-116.8592098","33.8893075"],["-116.8594632","33.8893834"],["-116.8597306","33.8895114"],["-116.8602063","33.8898239"],["-116.8605568","33.8900134"],["-116.8609281","33.8901601"],["-116.8612411","33.8902445"],["-116.8614949","33.890309"],["-116.8617053","33.8903778"],["-116.8619876","33.8905263"],["-116.8622046","33.8906695"],["-116.8623555","33.8907908"],["-116.862479","33.8909325"],["-116.8625752","33.8911157"],["-116.8626303","33.8913049"],["-116.862667","33.891536"],["-116.8626691","33.8917826"],["-116.8626298","33.8920248"],["-116.8625549","33.8922081"],["-116.8624329","33.8923852"],["-116.8622131","33.892604"],["-116.8619769","33.8927682"],["-116.86176","33.8928742"],["-116.8614452","33.8929572"],["-116.8610392","33.8930291"],["-116.8607867","33.8930856"],["-116.8606038","33.8931701"],["-116.8604594","33.8932804"],["-116.8603638","33.8934219"],["-116.8602817","33.8936121"],["-116.8602605","33.8937542"],["-116.8602686","33.894045"],["-116.8602663","33.8942395"],["-116.8602236","33.8944211"],["-116.860066","33.8948218"],["-116.8600044","33.8950423"],["-116.8599848","33.8952298"],["-116.8600026","33.8954695"],["-116.860063","33.8957032"],["-116.8602852","33.8961302"],["-116.8603587","33.8963421"],["-116.8603809","33.896563"],["-116.8603901","33.8968419"],["-116.8604155","33.8970729"],["-116.8604978","33.8973217"],["-116.8606415","33.8975634"],["-116.8608399","33.8978757"],["-116.8609206","33.8980488"],["-116.8609763","33.8982197"],["-116.8610167","33.8983965"],["-116.8610603","33.8985734"],["-116.8611259","33.8987447"],["-116.8612251","33.8989106"],["-116.8613352","33.8990603"],["-116.8614448","33.8991788"],["-116.8615988","33.8992978"],["-116.8618426","33.8994248"],["-116.8620901","33.8995159"],["-116.8622893","33.8995553"],["-116.8625347","33.8995672"],["-116.8628989","33.8995455"],["-116.8633772","33.8994848"],["-116.8636518","33.8994601"],["-116.8638821","33.8994762"],["-116.8641037","33.8995284"],["-116.864317","33.899613"],["-116.8645339","33.8997364"],["-116.8646449","33.8998243"],["-116.864749","33.8999391"],["-116.8648907","33.9001461"],["-116.8650407","33.9003233"],["-116.8652644","33.9005194"],["-116.8655386","33.9006821"],["-116.8660072","33.9008775"],["-116.8663191","33.9010411"],["-116.8667238","33.9013165"],["-116.8669262","33.9014296"],["-116.8671099","33.9014937"],["-116.8672946","33.9015291"],["-116.8674786","33.9015262"],["-116.8676557","33.9014877"],["-116.8678175","33.9014141"],["-116.8679483","33.9013042"],["-116.8680509","33.9011734"],["-116.8681254","33.9010324"],["-116.868162","33.9008887"],["-116.8681564","33.9007371"],["-116.8681259","33.9004801"],["-116.8681451","33.9003205"],["-116.8681876","33.9001769"],["-116.8682658","33.9000416"],["-116.8683806","33.8999236"],["-116.8685488","33.8998767"],["-116.8689562","33.8997377"],["-116.8691985","33.8997528"],["-116.8694153","33.899781"],["-116.8697073","33.899864"],["-116.8699713","33.8999656"],["-116.8701712","33.9000604"],["-116.8703463","33.9001679"],["-116.8704931","33.9002991"],["-116.8705934","33.9004616"],["-116.8706574","33.9006116"],["-116.8706676","33.9007556"],["-116.8706608","33.9009112"],["-116.8706079","33.9010706"],["-116.8705008","33.9012247"],["-116.870349","33.9013573"],["-116.870178","33.9014488"],["-116.8699674","33.9015196"],["-116.8695308","33.9015807"],["-116.8692842","33.901608"],["-116.8690863","33.9016617"],["-116.8689219","33.9017326"],["-116.8687645","33.9018536"],["-116.8686606","33.90198"],["-116.86859","33.9020856"],["-116.8685253","33.9022116"],["-116.8684424","33.9023659"],["-116.8683443","33.9025266"],["-116.8682111","33.9026288"],["-116.8680215","33.9027232"],["-116.8678215","33.9027751"],["-116.8676925","33.9027829"],["-116.8675666","33.9027644"],["-116.8673138","33.9026978"],["-116.8669251","33.9025792"],["-116.8661769","33.9023339"],["-116.8658871","33.9022271"],["-116.8656589","33.9021701"],["-116.8654602","33.9021428"],["-116.8648802","33.9021565"],["-116.8646023","33.9021234"],["-116.8643235","33.9020422"],["-116.8641204","33.9019509"],["-116.8639232","33.9018482"],["-116.8636939","33.9017338"],["-116.8634768","33.9016661"],["-116.8632349","33.9016343"],["-116.8629462","33.9016444"],["-116.8623332","33.901712"],["-116.8615636","33.9017506"],["-116.8612085","33.9017738"],["-116.8610067","33.9017709"],["-116.8607712","33.9017241"],["-116.8605415","33.9016556"],["-116.860318","33.9015393"],["-116.8599246","33.9012692"],["-116.8596333","33.901093"],["-116.8593485","33.9009751"],["-116.8590593","33.9008685"],["-116.8587631","33.9008026"],["-116.8583617","33.9007294"],["-116.8580575","33.900649"],["-116.8577892","33.9005282"],["-116.8575815","33.9003859"],["-116.8574101","33.9002067"],["-116.8572356","33.8999484"],["-116.8571485","33.8996714"],["-116.8571103","33.8993617"],["-116.857081","33.89916"],["-116.8570186","33.8990035"],["-116.8569158","33.8988596"],["-116.8567407","33.8987004"],["-116.8565525","33.8985964"],["-116.856315","33.8985204"],["-116.8560255","33.8984804"],["-116.8557662","33.8984812"],["-116.8554845","33.8985262"],["-116.855287","33.8986024"],["-116.8551509","33.8986761"],["-116.8550236","33.8987845"],["-116.8549171","33.8989086"],["-116.8548653","33.8989972"],["-116.8548301","33.8990949"],["-116.8548024","33.8992453"],["-116.8547945","33.8994145"],["-116.8548132","33.8995221"],["-116.854853","33.8996365"],["-116.8549149","33.8997353"],["-116.8550252","33.8998605"],["-116.8551605","33.8999647"],["-116.8553156","33.9000463"],["-116.8556048","33.9001458"],["-116.855819","33.900228"],["-116.8559841","33.9003202"],["-116.8560993","33.9004061"],["-116.8563547","33.9006371"],["-116.8565507","33.9007931"],["-116.8567735","33.9009665"],["-116.8568936","33.9010443"],["-116.8570828","33.9011439"],["-116.8572585","33.9012547"],["-116.8574298","33.9014037"],["-116.8575996","33.9016151"],["-116.8577235","33.9017595"],["-116.8578662","33.9018911"],["-116.8580858","33.9020201"],["-116.85829","33.9021212"],["-116.8584158","33.9021922"],["-116.8585084","33.9022756"],["-116.8585878","33.9023684"],["-116.8586514","33.9025024"],["-116.8586819","33.902638"],["-116.8586732","33.9028053"],["-116.8586299","33.9029634"],["-116.8585237","33.9031836"],["-116.8584376","33.9033623"],["-116.8583825","33.9035044"],["-116.8583596","33.9036435"],["-116.8583682","33.9037749"],["-116.8584154","33.9038811"],["-116.8585259","33.9040157"],["-116.8586944","33.9041317"],["-116.8588529","33.9041979"],["-116.859105","33.9042539"],["-116.8594359","33.9043104"],["-116.8597058","33.9043904"],["-116.8601075","33.9045601"],["-116.8606378","33.904808"],["-116.8608515","33.9049397"],["-116.8610149","33.9050916"],["-116.8611509","33.9052615"],["-116.8612585","33.905436"],["-116.8613516","33.9055968"],["-116.8614802","33.9057447"],["-116.8616167","33.9058558"],["-116.8617514","33.9059382"],["-116.8618833","33.9059901"],["-116.8620453","33.9060232"],["-116.8622002","33.9060318"],["-116.8623979","33.9060135"],["-116.8627356","33.9059738"],["-116.8629949","33.9059809"],["-116.8631935","33.9060167"],["-116.8633843","33.9060742"],["-116.8636495","33.9061812"],["-116.8639064","33.9062653"],["-116.8641813","33.9063024"],["-116.8644306","33.9063335"],["-116.8646454","33.9063836"],["-116.8650617","33.9065544"],["-116.8652506","33.9066111"],["-116.8654291","33.9066455"],["-116.8655987","33.9066631"],["-116.8657551","33.9066594"],["-116.8659321","33.9066358"],["-116.8660643","33.9066058"],["-116.8661856","33.9065616"],["-116.8663539","33.9064897"],["-116.8665945","33.9063743"],["-116.8667833","33.9062885"],["-116.8669502","33.9062313"],["-116.8671046","33.9061994"],["-116.8672608","33.9061942"],["-116.8674235","33.9062176"],["-116.8675782","33.9062554"],["-116.8677197","33.9063164"],["-116.8679041","33.9064331"],["-116.8680896","33.9065694"],["-116.8682265","33.9066517"],["-116.8683448","33.9067103"],["-116.8685341","33.9067853"],["-116.8694042","33.9071119"],["-116.8695745","33.9071436"],["-116.8697283","33.9071512"],["-116.8698736","33.9071428"],["-116.8700161","33.9071237"],["-116.8702088","33.9070795"],["-116.8704114","33.9070153"],["-116.8707869","33.9069368"],["-116.8716226","33.906521"],["-116.8718654","33.9064364"],["-116.8720317","33.9064115"],["-116.8722029","33.9064159"],["-116.8724343","33.9064611"],["-116.872597","33.9065189"],["-116.8727912","33.9066384"],["-116.8729401","33.9067751"],["-116.8730845","33.906909"],["-116.8732667","33.9070383"],["-116.8736423","33.907286"],["-116.87379","33.9074033"],["-116.873922","33.9075343"],["-116.8740236","33.9076566"],["-116.8741158","33.9078046"],["-116.8741902","33.9079739"],["-116.8742726","33.9082044"],["-116.8743377","33.9083494"],["-116.8744179","33.9084787"],["-116.874745","33.9089318"],["-116.8760807","33.9107349"],["-116.8763139","33.9110679"],["-116.8764479","33.9112883"],["-116.8765505","33.9115196"],["-116.8766262","33.9117667"],["-116.876666","33.911977"],["-116.8766721","33.9122524"],["-116.8766814","33.9127499"],["-116.8767195","33.9145365"],["-116.8767146","33.9177049"],["-116.8767306","33.9185844"],["-116.8767283","33.919761"],["-116.87671","33.9199419"],["-116.8766943","33.9200831"],["-116.876681","33.9216909"],["-116.8680483","33.9217555"],["-116.8679887","33.9231333"],["-116.8679799","33.923398"],["-116.8679703","33.9235636"],["-116.8679575","33.9238447"],["-116.867859","33.9239024"],["-116.8658138","33.9239878"],["-116.8631073","33.9241641"],["-116.8600884","33.9244159"],["-116.8588733","33.9245786"],["-116.8576116","33.9248026"],["-116.8551569","33.9253383"],["-116.8541028","33.9256226"],["-116.8530469","33.9260204"],["-116.850836","33.9269632"],["-116.8500629","33.9271658"],["-116.8489174","33.9273673"],["-116.8472902","33.9276236"],["-116.8462321","33.9278077"],["-116.8328666","33.9309375"],["-116.831909","33.9311174"],["-116.8309976","33.9312594"],["-116.830292","33.9313472"],["-116.8297792","33.9313934"],["-116.8293196","33.9314178"],["-116.8284617","33.9314331"],["-116.8279368","33.9314216"],["-116.8272769","33.9313932"],["-116.8263113","33.9313485"],["-116.8242634","33.9312392"],["-116.823322","33.931163"],["-116.8227872","33.931086"],["-116.8221033","33.9309504"],["-116.821478","33.9307917"],["-116.8209236","33.9306178"],["-116.8203452","33.9303988"],["-116.8197796","33.9301506"],["-116.8192014","33.9298438"],["-116.8186027","33.9294807"],["-116.8170229","33.9282895"],["-116.8113699","33.9239179"],["-116.8106303","33.9233812"],["-116.8099529","33.9229224"],["-116.8093086","33.922538"],["-116.8086762","33.9221872"],["-116.8080524","33.9218696"],["-116.8074107","33.921571"],["-116.8025955","33.9196111"],["-116.8014256","33.9192291"],["-116.800522","33.9190136"],["-116.7996914","33.9188532"],["-116.7989235","33.9187416"],["-116.798268","33.9186784"],["-116.7976399","33.9186386"],["-116.7947604","33.9186212"],["-116.7728228","33.9186314"],["-116.7712167","33.918702"],["-116.7689766","33.9190194"],["-116.7602547","33.920338"],["-116.7585378","33.9205124"],["-116.7518472","33.9209893"],["-116.7477488","33.9212794"],["-116.7472053","33.9213616"],["-116.7466581","33.9214666"],["-116.7461976","33.9215729"],["-116.7456669","33.9217373"],["-116.7433045","33.9226266"],["-116.7398343","33.9239428"],["-116.7386872","33.924353"],["-116.7383266","33.9244544"],["-116.7380909","33.924509"],["-116.7377737","33.9245656"],["-116.7374192","33.9246159"],["-116.7369093","33.92467"],["-116.7363018","33.9246837"],["-116.7357029","33.9246555"],["-116.7348788","33.924548"],["-116.7153598","33.9212849"],["-116.7137369","33.9210456"],["-116.7129511","33.9209734"],["-116.7120115","33.9209285"],["-116.7110894","33.9209214"],["-116.7101486","33.9209477"],["-116.7091161","33.9210308"],["-116.7078739","33.9211961"],["-116.7067906","33.9213976"],["-116.7056387","33.9216792"],["-116.6985962","33.9237547"],["-116.6966655","33.9243094"],["-116.6962121","33.9244016"],["-116.695846","33.9244541"],["-116.6955489","33.924485"],["-116.6950641","33.9245038"],["-116.6947499","33.9245052"],["-116.694338","33.9244867"],["-116.6939623","33.9244587"],["-116.6931742","33.9243294"],["-116.681405","33.922304"],["-116.6800618","33.9221695"],["-116.6795132","33.9220917"],["-116.6790691","33.9219968"],["-116.6787359","33.9218994"],["-116.6783648","33.9217762"],["-116.6778945","33.9215676"],["-116.6774815","33.9213442"],["-116.6770113","33.921039"],["-116.6766698","33.9207715"],["-116.676401","33.9205301"],["-116.6754799","33.9195366"],["-116.673012","33.9168669"],["-116.6725715","33.9164438"],["-116.6721029","33.9160594"],["-116.6715254","33.9156437"],["-116.6710255","33.9153314"],["-116.6705029","33.9150431"],["-116.6699359","33.9147751"],["-116.6693602","33.9145464"],["-116.668797","33.914354"],["-116.6682733","33.9142076"],["-116.6673896","33.9140069"],["-116.6635739","33.9133013"],["-116.6625437","33.9130979"],["-116.6618565","33.9129201"],["-116.6612432","33.9127297"],["-116.6606653","33.9125284"],["-116.6599578","33.9122408"],["-116.659271","33.9119193"],["-116.6586213","33.9115691"],["-116.6580181","33.9111996"],["-116.6565493","33.9101313"],["-116.6526829","33.9072619"],["-116.651609","33.9064748"],["-116.6512137","33.9062206"],["-116.6507396","33.9059359"],["-116.6501502","33.9056229"],["-116.6495366","33.9053262"],["-116.6486802","33.9049726"],["-116.6364175","33.9005535"],["-116.6345601","33.8999541"],["-116.6337107","33.8996812"],["-116.6304154","33.898616"],["-116.6294855","33.8983266"],["-116.6288471","33.8981591"],["-116.6285101","33.8981075"],["-116.6282075","33.8980904"],["-116.6278951","33.8980938"],["-116.6275966","33.8981196"],["-116.6272807","33.8981775"],["-116.6269742","33.8982566"],["-116.6260854","33.8985546"],["-116.6257142","33.8986662"],["-116.6254125","33.8987403"],["-116.6250999","33.8987957"],["-116.6247831","33.8988327"],["-116.6244697","33.8988587"],["-116.6241661","33.8988664"],["-116.623864","33.8988553"],["-116.6235487","33.898835"],["-116.6231953","33.8987878"],["-116.6227815","33.8987115"],["-116.6224643","33.8986268"],["-116.6221762","33.8985309"],["-116.6218882","33.8984117"],["-116.6216355","33.8982936"],["-116.621364","33.8981502"],["-116.6210994","33.8979839"],["-116.6208434","33.8978052"],["-116.6198748","33.8969725"],["-116.6195339","33.8967185"],["-116.6191605","33.8964767"],["-116.5903756","33.8795728"],["-116.5899648","33.879286"],["-116.5893603","33.8788063"],["-116.5886018","33.8782219"],["-116.5759396","33.8689069"],["-116.5752709","33.8684605"],["-116.5744662","33.8679922"],["-116.5602059","33.8606862"],["-116.5597064","33.8603949"],["-116.5593429","33.8601434"],["-116.5589949","33.8598653"],["-116.5586122","33.8595063"],["-116.557429","33.8582548"],["-116.5573865","33.8582184"],["-116.5572912","33.8582127"],["-116.5572226","33.858147"],["-116.5568548","33.8577617"],["-116.5562585","33.8571322"],["-116.5541979","33.854947"],["-116.5528871","33.8535714"],["-116.5475251","33.8479211"],["-116.5472935","33.8475991"],["-116.5471726","33.8473901"],["-116.5470797","33.8472117"],["-116.5470241","33.8470568"],["-116.546996","33.8469922"],["-116.5469393","33.8468205"],["-116.5468581","33.8465428"],["-116.5468211","33.8463719"],["-116.5467982","33.8462519"],["-116.5467766","33.8460079"],["-116.5467647","33.8454394"],["-116.5467527","33.8448676"],["-116.5461185","33.8448616"],["-116.5459402","33.8448704"],["-116.5368889","33.8448449"],["-116.5369018","33.8377287"],["-116.5368993","33.8362988"],["-116.536925","33.8340082"],["-116.5368786","33.8339616"],["-116.5368303","33.8339574"],["-116.5359688","33.8339568"],["-116.5325522","33.8339547"],["-116.5282155","33.8339991"],["-116.528182","33.8428522"],["-116.5281622","33.8429226"],["-116.5281142","33.8430327"],["-116.5281081","33.8431582"],["-116.5281083","33.843399"],["-116.528111","33.8447682"],["-116.5239106","33.8447891"],["-116.5237713","33.8448571"],["-116.5232146","33.8448564"],["-116.5219889","33.8448511"],["-116.5206858","33.8448491"],["-116.5201849","33.8448457"],["-116.5192587","33.844842"],["-116.5096985","33.8449158"],["-116.5061312","33.8449154"],["-116.5058718","33.8449164"],["-116.5057149","33.844915"],["-116.5055248","33.8448593"],["-116.5023024","33.844869"],["-116.502164","33.8449123"],["-116.4774137","33.8448637"],["-116.4671063","33.8449817"],["-116.4670452","33.8449804"],["-116.4628116","33.8449698"],["-116.460566","33.8449558"],["-116.4604637","33.8449002"],["-116.4583572","33.8449087"],["-116.45834","33.8451867"],["-116.4583273","33.8458271"],["-116.4583133","33.8460678"],["-116.4582823","33.8462653"],["-116.4582858","33.8466372"],["-116.4582821","33.8470717"],["-116.4581626","33.8473905"],["-116.4581648","33.8480382"],["-116.4581594","33.8481255"],["-116.4581421","33.8481651"],["-116.4581304","33.848179"],["-116.4581167","33.8481938"],["-116.4580861","33.8482139"],["-116.4580456","33.8482277"],["-116.4579968","33.8482395"],["-116.4579386","33.8482477"],["-116.4578809","33.8482526"],["-116.4578126","33.8482556"],["-116.4577348","33.8482552"],["-116.4576422","33.8482531"],["-116.4574753","33.8482435"],["-116.4574092","33.8482349"],["-116.4573562","33.8482229"],["-116.4572958","33.8482026"],["-116.4572276","33.8481757"],["-116.4571014","33.8481148"],["-116.4560406","33.8475772"],["-116.4553503","33.8472419"],["-116.4545673","33.8468308"],["-116.4539324","33.8465634"],["-116.409793","33.820411"],["-116.4087281","33.8196964"],["-116.4071766","33.8185669"],["-116.397836","33.81158"],["-116.3962318","33.8105733"],["-116.3918789","33.8079574"],["-116.3916558","33.8078331"],["-116.3909702","33.8074707"],["-116.3905327","33.8072575"],["-116.388066","33.8061893"],["-116.3869095","33.8056332"],["-116.3864025","33.8053578"],["-116.3857644","33.8049712"],["-116.3854044","33.8047328"],["-116.3850345","33.8044765"],["-116.3847325","33.8042569"],["-116.3842705","33.8039001"],["-116.3826595","33.8026057"],["-116.3820572","33.8021553"],["-116.3640785","33.7914488"],["-116.3611897","33.7897426"],["-116.3510466","33.7837221"],["-116.3483561","33.7821184"],["-116.3227809","33.7669827"],["-116.321059","33.7660932"],["-116.3194484","33.7653485"],["-116.3177881","33.7647184"],["-116.3101246","33.7623921"],["-116.3069116","33.7614634"],["-116.3029248","33.7607279"],["-116.3011619","33.7602424"],["-116.2999118","33.7597838"],["-116.2970987","33.7585392"],["-116.2951772","33.757878"],["-116.2909345","33.7565739"],["-116.2866182","33.7552255"],["-116.2830098","33.7538297"],["-116.2750667","33.7506737"],["-116.2742203","33.7504114"],["-116.2736351","33.7502858"],["-116.2731785","33.7501987"],["-116.2709389","33.7498757"],["-116.2702478","33.7497448"],["-116.2696418","33.7495915"],["-116.2691496","33.7494371"],["-116.2686657","33.7492661"],["-116.2682372","33.749084"],["-116.2676414","33.7487986"],["-116.266959","33.7483952"],["-116.2661012","33.7477915"],["-116.2642575","33.7462623"],["-116.2631734","33.7454165"],["-116.2624006","33.7449217"],["-116.2603866","33.7438708"],["-116.2525385","33.7399814"],["-116.2500365","33.7390856"],["-116.2487175","33.7387334"],["-116.2473842","33.7384709"],["-116.2456606","33.7382049"],["-116.2435167","33.7380821"],["-116.2415067","33.7381414"],["-116.2400915","33.7382865"],["-116.2382002","33.7385975"],["-116.2349255","33.739213"],["-116.2336751","33.739291"],["-116.2223269","33.7384344"],["-116.218061","33.7380197"],["-116.2166951","33.7377637"],["-116.2153282","33.7373027"],["-116.2139323","33.7365727"],["-116.2126595","33.7355848"],["-116.2083673","33.7312112"],["-116.2068826","33.7298453"],["-116.2060519","33.7291653"],["-116.204811","33.7282464"],["-116.2021908","33.7263657"],["-116.2015569","33.7258752"],["-116.2011488","33.7255286"],["-116.2008661","33.7252725"],["-116.2006087","33.7250296"],["-116.1942113","33.7185574"],["-116.1936008","33.7180497"],["-116.1929809","33.7175762"],["-116.1926387","33.7173437"],["-116.1923294","33.7171495"],["-116.1917615","33.7168107"],["-116.1908388","33.7163428"],["-116.1903086","33.7161129"],["-116.1897682","33.7158953"],["-116.1893402","33.7157455"],["-116.1888983","33.7156073"],["-116.1883816","33.7154613"],["-116.1878489","33.7153325"],["-116.1873646","33.7152325"],["-116.1868326","33.7151415"],["-116.1863788","33.7150783"],["-116.1859027","33.7150281"],["-116.1854461","33.7149924"],["-116.18505","33.7149717"],["-116.1844429","33.7149601"],["-116.1694913","33.714933"],["-116.1688174","33.7148855"],["-116.1684682","33.7148498"],["-116.1680456","33.7147996"],["-116.1676772","33.7147441"],["-116.1673471","33.7146855"],["-116.1669778","33.7146131"],["-116.1665976","33.7145255"],["-116.1288261","33.7029597"],["-116.128339","33.7028137"],["-116.1278699","33.7026879"],["-116.1273873","33.7025749"],["-116.1039735","33.6981344"],["-116.1032169","33.6980182"],["-116.1028053","33.6979724"],["-116.102301","33.697932"],["-116.1018358","33.6979087"],["-116.1013677","33.6978991"],["-116.1009224","33.6979066"],["-116.1004355","33.6979251"],["-116.0999585","33.6979561"],["-116.0995067","33.6980023"],["-116.082214","33.7001567"],["-116.0784702","33.7001318"],["-116.067721","33.6993641"],["-116.067239","33.6993074"],["-116.0667848","33.6992435"],["-116.0658885","33.6990781"],["-116.0651056","33.6989007"],["-116.0646007","33.698764"],["-116.0640977","33.6986172"],["-116.063578","33.6984442"],["-116.0631064","33.698272"],["-116.0626327","33.6980865"],["-116.0621711","33.6978924"],["-116.0617623","33.6977069"],["-116.0523221","33.6929604"],["-116.0511972","33.6924044"],["-116.0501728","33.6919845"],["-116.0496318","33.6918034"],["-116.0487035","33.6915398"],["-116.029758","33.6866855"],["-116.0253505","33.6855603"],["-116.0243979","33.6853331"],["-115.9974675","33.679391"],["-115.9969738","33.6792914"],["-115.9965155","33.6792096"],["-115.9961245","33.6791531"],["-115.995816","33.6791136"],["-115.9952239","33.6790561"],["-115.9948778","33.679036"],["-115.9944014","33.6790174"],["-115.994022","33.6790157"],["-115.9934243","33.6790276"],["-115.9766729","33.679814"],["-115.9751452","33.6798529"],["-115.9746141","33.6798427"],["-115.9740754","33.6798144"],["-115.9733936","33.6797558"],["-115.9726191","33.6796688"],["-115.8911149","33.6656681"],["-115.8893533","33.6653805"],["-115.8885184","33.665268"],["-115.8877641","33.6651841"],["-115.8106121","33.6600628"],["-115.8098551","33.660041"],["-115.8063737","33.6600122"],["-115.8039438","33.6598365"],["-115.8037335","33.6598171"],["-115.8036224","33.6597991"],["-115.8034942","33.6597757"],["-115.8033486","33.659745"],["-115.8032175","33.6597141"],["-115.8031003","33.6596817"],["-115.8028946","33.6596109"],["-115.8025","33.6594634"],["-115.8022492","33.6593736"],["-115.8021785","33.6593927"],["-115.8021743","33.6609569"],["-115.8021815","33.6616485"],["-115.8020968","33.6668305"],["-115.8017837","33.6743842"],["-115.8017543","33.6748142"],["-115.8016756","33.6753179"],["-115.8015524","33.6762017"],["-115.8018993","33.6800778"],["-115.8020218","33.6822884"],["-115.8021099","33.6835943"],["-115.8022411","33.6859572"],["-115.8022591","33.6896106"],["-115.8023021","33.6910507"],["-115.8028042","33.6969017"],["-115.802786","33.6981192"],["-115.8025828","33.701541"],["-115.8026301","33.7022015"],["-115.8027269","33.7025931"],["-115.8029369","33.703072"],["-115.8032775","33.7035913"],["-115.8035415","33.7040106"],["-115.8037462","33.7044776"],["-115.8040415","33.7054859"],["-115.8045991","33.7076494"],["-115.8056119","33.7109517"],["-115.8057954","33.7116653"],["-115.805901","33.7128864"],["-115.8060833","33.7134085"],["-115.8063366","33.7137558"],["-115.8067844","33.7141008"],["-115.8078254","33.7147803"],["-115.8081325","33.7150675"],["-115.8083438","33.7153758"],["-115.8084306","33.7157133"],["-115.8084276","33.7162258"],["-115.808445","33.7167332"],["-115.808549","33.7170286"],["-115.8087026","33.7172949"],["-115.8090207","33.7176486"],["-115.8095904","33.7181454"],["-115.8106571","33.7191283"],["-115.8138513","33.7223641"],["-115.8141839","33.7228834"],["-115.8144313","33.7235379"],["-115.8146036","33.7240553"],["-115.8147605","33.7243348"],["-115.8150174","33.7245714"],["-115.8152752","33.7246968"],["-115.8156395","33.7248217"],["-115.8162546","33.7249809"],["-115.8165855","33.725105"],["-115.8168555","33.7252544"],["-115.8172724","33.7255991"],["-115.8176497","33.7258455"],["-115.8180371","33.7259841"],["-115.818586","33.7260816"],["-115.8202758","33.7262181"],["-115.8206495","33.7262819"],["-115.8210501","33.7264307"],["-115.8213123","33.7266673"],["-115.8214795","33.7269815"],["-115.8217212","33.7274869"],["-115.8224753","33.7290508"],["-115.8225332","33.7293611"],["-115.8224954","33.7296636"],["-115.8222971","33.7300457"],["-115.820889","33.7318186"],["-115.8205604","33.7323185"],["-115.8204077","33.7327713"],["-115.820314","33.7332224"],["-115.8202786","33.7335382"],["-115.8203042","33.7337887"],["-115.8204918","33.7340723"],["-115.8208033","33.7342901"],["-115.8212469","33.7344331"],["-115.8219086","33.7346288"],["-115.8226554","33.7349494"],["-115.8231578","33.7353007"],["-115.8235287","33.7356895"],["-115.8237715","33.736085"],["-115.823975","33.7366444"],["-115.8240927","33.7376303"],["-115.8242475","33.7382722"],["-115.8245505","33.7392128"],["-115.8248908","33.7402399"],["-115.8253729","33.7412413"],["-115.8259987","33.7423833"],["-115.8267228","33.7436519"],["-115.8269982","33.7442453"],["-115.8272021","33.7447635"],["-115.827425","33.7453913"],["-115.8276377","33.7463641"],["-115.8276457","33.7465431"],["-115.827636","33.7467175"],["-115.8276047","33.7469021"],["-115.8275425","33.7470655"],["-115.8274477","33.7472228"],["-115.827307","33.7473639"],["-115.8271739","33.7474535"],["-115.8270283","33.7475406"],["-115.8268797","33.7475867"],["-115.8267593","33.7476028"],["-115.8266327","33.7475966"],["-115.8264216","33.7475653"],["-115.8260476","33.7474889"],["-115.8258631","33.7474616"],["-115.8257014","33.7474727"],["-115.8255615","33.7475182"],["-115.8254043","33.7475915"],["-115.8250274","33.7478314"],["-115.8247022","33.7481219"],["-115.8245013","33.74807"],["-115.8247017","33.7481221"],["-115.8250278","33.7478309"],["-115.8254062","33.7475905"],["-115.8255599","33.7475189"],["-115.8257008","33.7474728"],["-115.8258632","33.7474616"],["-115.8260522","33.7474896"],["-115.8264147","33.7475643"],["-115.8266356","33.7475968"],["-115.8267579","33.7476029"],["-115.8268793","33.7475867"],["-115.8270297","33.74754"],["-115.8271787","33.7474504"],["-115.8273088","33.7473624"],["-115.8274477","33.7472229"],["-115.8275438","33.7470628"],["-115.8276042","33.7469039"],["-115.8276363","33.7467161"],["-115.8276454","33.7465466"],["-115.8276381","33.7463669"],["-115.827423","33.7453853"],["-115.8272068","33.7447767"],["-115.8270041","33.7442597"],["-115.8267171","33.7436417"],["-115.8259978","33.7423817"],["-115.8253755","33.7412466"],["-115.8248918","33.7402414"],["-115.8245702","33.7392732"],["-115.8242518","33.7382857"],["-115.8240939","33.7376361"],["-115.8239773","33.7366556"],["-115.8237716","33.7360848"],["-115.8235297","33.7356907"],["-115.8231624","33.7353046"],["-115.8226561","33.7349496"],["-115.8219104","33.7346295"],["-115.8212372","33.7344302"],["-115.8208021","33.7342896"],["-115.8204925","33.7340726"],["-115.8203033","33.7337858"],["-115.8202789","33.7335343"],["-115.8203138","33.7332228"],["-115.8204047","33.7327824"],["-115.8205606","33.7323186"],["-115.8208746","33.7318372"],["-115.8223029","33.730038"],["-115.8224951","33.7296641"],["-115.8225334","33.7293596"],["-115.8224773","33.7290554"],["-115.8217088","33.7274612"],["-115.8214852","33.7269935"],["-115.8213127","33.7266681"],["-115.8210452","33.7264278"],["-115.8206479","33.7262814"],["-115.8202716","33.7262175"],["-115.8185808","33.7260811"],["-115.8180406","33.7259849"],["-115.8176479","33.7258447"],["-115.8172678","33.7255956"],["-115.8168552","33.7252546"],["-115.8165871","33.7251054"],["-115.8162589","33.7249823"],["-115.8156403","33.7248221"],["-115.8152812","33.7246992"],["-115.815018","33.7245717"],["-115.8147606","33.7243349"],["-115.8146025","33.7240529"],["-115.8144301","33.723534"],["-115.8141883","33.7228923"],["-115.81386","33.7223744"],["-115.8106714","33.7191419"],["-115.8096515","33.7181996"],["-115.8090184","33.7176469"],["-115.8087023","33.7172946"],["-115.8085484","33.7170273"],["-115.8084457","33.7167382"],["-115.8084274","33.7162196"],["-115.8084311","33.7157186"],["-115.8083432","33.7153748"],["-115.8081344","33.7150694"],["-115.8078165","33.7147739"],["-115.8067718","33.7140921"],["-115.80634","33.7137594"],["-115.8060811","33.713404"],["-115.8059011","33.7128871"],["-115.8057945","33.7116589"],["-115.8055973","33.710905"],["-115.8045825","33.7075874"],["-115.8040303","33.705444"],["-115.8037433","33.7044695"],["-115.8035407","33.7040092"],["-115.8032667","33.7035746"],["-115.802938","33.7030741"],["-115.8027294","33.7025999"],["-115.8026301","33.7022017"],["-115.8025844","33.7015055"],["-115.8027844","33.6981457"],["-115.8028025","33.6968784"],["-115.8023022","33.6910542"],["-115.8022577","33.6895153"],["-115.8022299","33.6858036"],["-115.802132","33.6839475"],["-115.8020219","33.6822927"],["-115.8018974","33.6800528"],["-115.8015526","33.676204"],["-115.801677","33.67531"],["-115.8017545","33.6748113"],["-115.8017851","33.6743564"],["-115.8021044","33.6666304"],["-115.8021819","33.6617078"],["-115.8021741","33.6609536"],["-115.8021717","33.6593931"],["-115.8021101","33.6593738"],["-115.8019319","33.6594176"],["-115.8011014","33.6596977"],["-115.8009577","33.6597451"],["-115.8008222","33.6597843"],["-115.8007055","33.6598127"],["-115.8005901","33.6598361"],["-115.8004734","33.6598557"],["-115.8002449","33.6598854"],["-115.8001127","33.6598966"],["-115.7994515","33.6599293"],["-115.7989152","33.6599458"],["-115.7979399","33.6599865"],["-115.7832473","33.6599502"],["-115.7782832","33.659909"],["-115.7566737","33.6598401"],["-115.7519716","33.659816"],["-115.7424524","33.6597952"],["-115.7257819","33.6598183"],["-115.7217555","33.6600402"],["-115.7201426","33.6601834"],["-115.7170772","33.6605814"],["-115.6853394","33.6656236"],["-115.6722507","33.6666844"],["-115.5842246","33.6731894"],["-115.580253","33.673693"],["-115.5667519","33.6766728"],["-115.5629635","33.6775177"],["-115.4802004","33.6961798"],["-115.4776066","33.6967643"],["-115.4650696","33.6995802"],["-115.463563","33.6999068"],["-115.4631301","33.699979"],["-115.4621987","33.7001013"],["-115.4598083","33.7003183"],["-115.4593795","33.7003693"],["-115.4588859","33.7004415"],["-115.4584736","33.7005104"],["-115.457552","33.7006991"],["-115.4568082","33.7008626"],["-115.4164724","33.7098867"],["-115.4144624","33.7101192"],["-115.3816135","33.7104843"],["-115.3790098","33.7103689"],["-115.3103164","33.7015211"],["-115.3081224","33.7011887"],["-115.3058013","33.7005601"],["-115.2412817","33.6816422"],["-115.2375979","33.6804677"],["-115.1660821","33.659313"],["-115.1504923","33.6547108"],["-115.1051324","33.6417002"],["-115.0858039","33.6367627"],["-115.0825183","33.6358112"],["-115.0817695","33.6354883"],["-115.0811703","33.6351989"],["-115.0803076","33.6347007"],["-115.0790087","33.633776"],["-115.0778634","33.6327829"],["-115.0761741","33.6316017"],["-115.0742198","33.6305701"],["-115.0711211","33.629649"],["-115.0325313","33.6197126"],["-114.9957771","33.6088781"],["-114.992833","33.6081154"],["-114.9867045","33.6066544"],["-114.9837097","33.6060932"],["-114.9809657","33.6058908"],["-114.946404","33.6058207"],["-114.9247255","33.6058664"],["-114.9062284","33.6074664"],["-114.8397296","33.6095488"],["-114.7800476","33.609795"],["-114.7770553","33.6096825"],["-114.7734722","33.6090377"],["-114.771076","33.608689"],["-114.7647419","33.608655"],["-114.7271841","33.6091882"],["-114.7245059","33.6091712"],["-114.7229643","33.6090412"],["-114.7215898","33.6088199"],["-114.7201691","33.6085223"],["-114.7182354","33.607997"],["-114.7161113","33.6074042"],["-114.7145499","33.6070265"],["-114.7130015","33.6067939"],["-114.7115213","33.6066294"],["-114.6242117","33.6065267"],["-114.6085528","33.606897"],["-114.6006062","33.6069812"],["-114.582049","33.6071409"],["-114.5687836","33.6073563"],["-114.5499062","33.6076992"],["-114.5455005","33.6077333"],["-114.5444477","33.6076485"],["-114.5433726","33.6075338"],["-114.5418259","33.6072418"],["-114.5387407","33.6065158"],["-114.5247651","33.6031998"],["-114.5214426","33.6026662"],["-114.5201377","33.6025224"],["-114.5184467","33.6023642"],["-114.5176907","33.6023327"],["-114.5155341","33.6023434"],["-114.5127985","33.6024519"],["-114.5121082","33.602508"],["-114.5105477","33.6026768"],["-114.5089388","33.6028992"],["-114.5064723","33.6033683"],["-114.5054488","33.6036077"],["-114.5043288","33.6038987"],["-114.4593847","33.6168606"],["-114.4392591","33.6226672"],["-114.4387214","33.6228283"],["-114.4316894","33.624856"],["-114.4269035","33.626236"],["-114.4187513","33.6285538"],["-114.4148675","33.6295081"],["-114.3963857","33.6333175"],["-114.3955462","33.633508"],["-114.3949142","33.6336693"],["-114.3936861","33.6340648"],["-114.393098","33.6342729"],["-114.3925152","33.6345225"],["-114.3918337","33.6348345"],["-114.3912388","33.6351234"],["-114.3906945","33.6354009"],["-114.390314","33.6356148"],["-114.3898084","33.6359194"],["-114.3893538","33.6362076"],["-114.388895","33.636517"],["-114.3876297","33.6375032"],["-114.3868336","33.6382023"],["-114.3861721","33.6388528"],["-114.3854889","33.6396519"],["-114.3847296","33.6406299"],["-114.3841668","33.641324"],["-114.3837271","33.6418292"],["-114.3832768","33.642291"],["-114.3826268","33.6428597"],["-114.3820181","33.6433252"],["-114.3813367","33.6437785"],["-114.3797165","33.64469"],["-114.375876","33.6466562"],["-114.3748798","33.6471007"],["-114.374121","33.647362"],["-114.3734387","33.6475557"],["-114.372699","33.647728"],["-114.3721559","33.6478408"],["-114.3717012","33.6479253"],["-114.3711054","33.6479964"],["-114.3705225","33.6480393"],["-114.3697849","33.6480811"],["-114.3611063","33.6482846"],["-114.3583888","33.6483331"],["-114.3561808","33.6482876"],["-114.3541659","33.6481465"],["-114.3422875","33.647085"],["-114.3374275","33.6466744"],["-114.3352965","33.6466051"],["-114.3342632","33.6466086"],["-114.3326146","33.6466624"],["-114.3307701","33.6468118"],["-114.3291309","33.6469789"],["-114.2414775","33.6595295"],["-114.2042026","33.6648336"],["-114.2033567","33.6649519"],["-114.201436","33.6652038"],["-114.1913115","33.6663362"],["-114.1712483","33.6685706"],["-114.169773","33.6687368"],["-114.1636643","33.6694372"],["-114.1556065","33.6707088"],["-114.1011056","33.6786846"],["-114.0935384","33.6790234"],["-114.0898294","33.679114"],["-114.0859781","33.6791079"],["-114.0848097","33.679092"],["-114.0835999","33.6790634"],["-114.0825139","33.6790585"],["-114.0802363","33.6790028"],["-114.0798097","33.6789898"],["-114.0764294","33.67883"],["-114.0730694","33.6786165"],["-114.0722047","33.6785554"],["-114.063598","33.6778527"],["-114.0627798","33.6777799"],["-114.062465","33.6777605"],["-114.0618424","33.677684"],["-114.060375","33.6774671"],["-114.0596682","33.6773421"],["-114.0588894","33.6771747"],["-114.0578717","33.6769283"],["-114.056563","33.6765737"],["-114.0552113","33.6761662"],["-114.0539906","33.6757468"],["-114.0528432","33.6752981"],["-114.0515734","33.6747401"],["-114.0501923","33.6740699"],["-114.0489735","33.6734048"],["-114.0413565","33.6687827"],["-114.0405403","33.6683039"],["-114.0394659","33.6677071"],["-114.0383473","33.6671425"],["-114.0368447","33.6664493"],["-114.0349569","33.6656654"],["-114.0334704","33.6651145"],["-114.0323322","33.6647433"],["-114.0312317","33.6644233"],["-114.0285107","33.663738"],["-114.0278387","33.6636025"],["-114.0271601","33.6634789"],["-114.0256698","33.6632405"],["-114.0210344","33.66267"],["-114.0196661","33.6624208"],["-114.0190971","33.6623145"],["-114.0185295","33.6622055"],["-114.018241","33.6621313"],["-114.0179825","33.6620525"],["-114.0176856","33.661946"],["-114.0173463","33.6617882"],["-114.0169806","33.6615834"],["-114.0165185","33.6612604"],["-114.0158778","33.6607401"],["-114.0155881","33.6605273"],["-114.0154151","33.6604208"],["-114.0150874","33.6602638"],["-114.0149436","33.6602043"],["-114.014598","33.6600853"],["-114.0142859","33.6600139"],["-114.0139938","33.6599682"],["-114.0137046","33.6599455"],["-114.0133598","33.65995"],["-114.013047","33.6599778"],["-114.0127338","33.660037"],["-114.0124613","33.6601142"],["-114.0121785","33.6602195"],["-114.0119174","33.6603446"],["-114.0116995","33.6604635"],["-114.0115117","33.660609"],["-114.0112782","33.6608056"],["-114.0110488","33.6610334"],["-114.00971","33.6627239"],["-114.0093984","33.6630994"],["-114.0091121","33.663377"],["-114.0088005","33.6636251"],["-114.0084536","33.6638529"],["-114.0081318","33.6640296"],["-114.0078452","33.6641657"],["-114.0075522","33.6642788"],["-114.0072362","33.6643785"],["-114.006944","33.6644619"],["-113.959669","33.6759575"],["-113.9581896","33.6763173"],["-113.95661","33.6766978"],["-113.9562261","33.6767919"],["-113.9454482","33.679403"],["-113.9339506","33.6827271"],["-113.9311345","33.6834196"],["-113.8927521","33.692209"],["-113.8901056","33.6928062"],["-113.8886744","33.6931353"],["-113.8873401","33.6934352"],["-113.8865057","33.6936292"],["-113.8787512","33.6953926"],["-113.8777252","33.6956253"],["-113.8021782","33.7119893"],["-113.8016501","33.7121027"],["-113.7773642","33.7173299"],["-113.7757149","33.7176632"],["-113.7753044","33.7177264"],["-113.7746052","33.7178241"],["-113.769557","33.7182403"],["-113.7693124","33.7182304"],["-113.7689539","33.7182483"],["-113.7686221","33.7182552"],["-113.7683998","33.7182627"],["-113.7682177","33.7182792"],["-113.7680289","33.7183065"],["-113.7678764","33.7183371"],["-113.7677594","33.7183603"],["-113.7676733","33.7183625"],["-113.7676263","33.7183575"],["-113.7675774","33.7183443"],["-113.7675233","33.7183191"],["-113.7674735","33.7182908"],["-113.7674542","33.7182776"],["-113.7674415","33.7182691"],["-113.7673868","33.7182458"],["-113.7673236","33.7182367"],["-113.7672599","33.7182435"],["-113.767202","33.7182655"],["-113.767187","33.718275"],["-113.7671253","33.7183152"],["-113.7670733","33.7183414"],["-113.7668814","33.7184032"],["-113.7667241","33.7184388"],["-113.7664721","33.7184604"],["-113.7662775","33.7184764"],["-113.765831","33.718511"],["-113.7655735","33.7185372"],["-113.7652623","33.7185798"],["-113.7645649","33.7186376"],["-113.7500113","33.7197751"],["-113.7491916","33.7198405"],["-113.7479628","33.7199364"],["-113.6909915","33.7243951"],["-113.6902256","33.7244661"],["-113.6897877","33.7245292"],["-113.689295","33.7246163"],["-113.6886464","33.7247589"],["-113.6883423","33.7248339"],["-113.687523","33.7250735"],["-113.686943","33.7252727"],["-113.6863971","33.7254981"],["-113.6857048","33.725823"],["-113.6851091","33.7261263"],["-113.6848103","33.7263007"],["-113.684539","33.7264697"],["-113.6840101","33.7268186"],["-113.6835623","33.7271451"],["-113.6830265","33.7275924"],["-113.6826472","33.7279376"],["-113.6821937","33.7284064"],["-113.6816798","33.7289885"],["-113.6812869","33.7295237"],["-113.6808846","33.7301228"],["-113.6766448","33.7373075"],["-113.6760239","33.7385219"],["-113.6756273","33.7393922"],["-113.6751992","33.7403917"],["-113.6723289","33.7485342"],["-113.6721245","33.7490859"],["-113.6719207","33.7495534"],["-113.6717185","33.7499512"],["-113.671537","33.750283"],["-113.6713733","33.7505504"],["-113.6711502","33.7508892"],["-113.6708891","33.7512697"],["-113.6706307","33.7515957"],["-113.6703505","33.7519355"],["-113.6697535","33.7525563"],["-113.6694666","33.7528256"],["-113.6691743","33.7530808"],["-113.6688227","33.753358"],["-113.6685156","33.7535891"],["-113.6681503","33.753845"],["-113.667737","33.7541143"],["-113.667239","33.7544054"],["-113.6667519","33.7546646"],["-113.6663223","33.7548736"],["-113.6658847","33.7550678"],["-113.6654526","33.7552426"],["-113.6644938","33.7555845"],["-113.6613457","33.7566427"],["-113.6603083","33.7570378"],["-113.6592486","33.757477"],["-113.657629","33.758184"],["-113.6563689","33.7587741"],["-113.6556697","33.7591119"],["-113.6544517","33.7597105"],["-113.6527474","33.7606315"],["-113.6490068","33.7627155"],["-113.6487296","33.7628731"],["-113.646398","33.7641663"],["-113.6458758","33.7644725"],["-113.6454491","33.7646983"],["-113.6451294","33.7648751"],["-113.6448917","33.7650118"],["-113.6310981","33.772658"],["-113.6303293","33.7730765"],["-113.6275006","33.7746501"],["-113.6237358","33.7767417"],["-113.6234788","33.77687"],["-113.623228","33.7769885"],["-113.6226838","33.7772194"],["-113.6223483","33.7773485"],["-113.622115","33.777433"],["-113.6205306","33.777935"],["-113.6199305","33.7781436"],["-113.6196532","33.7782531"],["-113.6190345","33.7785213"],["-113.618752","33.7786538"],["-113.6185023","33.7787765"],["-113.6181326","33.7789776"],["-113.6176814","33.7792393"],["-113.6151766","33.7807841"],["-113.6147393","33.7810704"],["-113.6141888","33.7814481"],["-113.6131874","33.7822209"],["-113.6125592","33.7827521"],["-113.6122291","33.7830142"],["-113.6121193","33.7830931"],["-113.6120023","33.7831617"],["-113.6118591","33.783253"],["-113.611542","33.7834684"],["-113.6112651","33.7836398"],["-113.609884","33.7844214"],["-113.6095156","33.7846181"],["-113.5842808","33.798602"],["-113.5837436","33.798888"],["-113.5830021","33.799302"],["-113.5613883","33.8112866"],["-113.5609","33.8115546"],["-113.5593945","33.8124011"],["-113.5577949","33.8132977"],["-113.5572884","33.8135688"],["-113.54719","33.8191798"],["-113.5463282","33.8196993"],["-113.5452421","33.8203551"],["-113.5417399","33.8223078"],["-113.5413199","33.8225377"],["-113.5412316","33.8225861"],["-113.5411665","33.8226211"],["-113.5410869","33.8226647"],["-113.5386562","33.824014"],["-113.5382717","33.8242195"],["-113.5380453","33.8243212"],["-113.5378205","33.8244141"],["-113.5376119","33.8244824"],["-113.5372486","33.8245833"],["-113.537019","33.824633"],["-113.5366556","33.8246914"],["-113.5363331","33.8247258"],["-113.5360698","33.8247394"],["-113.5357784","33.8247436"],["-113.5354939","33.8247305"],["-113.5352056","33.8247019"],["-113.5348771","33.8246465"],["-113.5345785","33.8245793"],["-113.5343205","33.8245112"],["-113.5340777","33.8244348"],["-113.5337973","33.8243455"],["-113.5314827","33.8235591"],["-113.5311638","33.8234578"],["-113.5308856","33.8233838"],["-113.5305971","33.823326"],["-113.530237","33.8232775"],["-113.5299567","33.8232572"],["-113.5296626","33.8232477"],["-113.5293215","33.823252"],["-113.5290165","33.8232706"],["-113.5285519","33.823341"],["-113.5283084","33.8233979"],["-113.5278572","33.823524"],["-113.5270525","33.823784"],["-113.5261736","33.8240845"],["-113.5251683","33.8244323"],["-113.5241544","33.8247916"],["-113.5155396","33.8277808"],["-113.5111082","33.8293314"],["-113.5106471","33.8294806"],["-113.5003007","33.8330752"],["-113.4999322","33.8332003"],["-113.4953804","33.8347842"],["-113.4950917","33.8348872"],["-113.4514057","33.8500581"],["-113.4498381","33.8506021"],["-113.3901245","33.8713217"],["-113.3874827","33.8722367"],["-113.2640246","33.9148674"],["-113.2404077","33.9230037"],["-113.2381248","33.9237883"],["-113.2374576","33.9240189"],["-113.235932","33.9245417"],["-113.1985945","33.9373833"],["-113.1958867","33.9383024"],["-113.195276","33.9384846"],["-113.1947431","33.93862"],["-113.1757378","33.9428193"],["-113.1752089","33.9429121"],["-113.1746779","33.9429701"],["-113.1739176","33.9429921"],["-113.1668466","33.9429853"],["-113.1665234","33.94298"],["-113.1621874","33.9429626"],["-113.0949233","33.9429427"],["-113.0031079","33.9429484"],["-113.0015613","33.9429544"],["-112.9460431","33.9429859"],["-112.9454605","33.9429855"],["-112.9337044","33.942997"],["-112.9329794","33.9429976"],["-112.9309287","33.9429978"],["-112.922207","33.942987"],["-112.9091762","33.9423365"],["-112.9085252","33.9423128"],["-112.9070356","33.9423048"],["-112.905987","33.9423483"],["-112.9054054","33.9423914"],["-112.9045847","33.9424675"],["-112.9037729","33.9425565"],["-112.9024252","33.942755"],["-112.9008583","33.9430984"],["-112.8945728","33.944722"],["-112.8936218","33.9449411"],["-112.8873883","33.9460202"],["-112.8844829","33.9466432"],["-112.8829975","33.9470367"],["-112.8819267","33.9473263"],["-112.8776885","33.9484958"],["-112.8756674","33.9489881"],["-112.8749164","33.949144"],["-112.8741452","33.949286"],["-112.8630891","33.9509708"],["-112.8619066","33.9512294"],["-112.8614512","33.9513436"],["-112.8607095","33.9515345"],["-112.8464011","33.9552994"],["-112.8458746","33.9554349"],["-112.8422615","33.9563937"],["-112.8412397","33.9567046"],["-112.8402506","33.9570345"],["-112.8393077","33.9573974"],["-112.837694","33.958111"],["-112.8368819","33.9585177"],["-112.8331516","33.9606064"],["-112.8321708","33.961091"],["-112.8313636","33.9614703"],["-112.8302157","33.9619814"],["-112.8291842","33.9624045"],["-112.8283676","33.9627197"],["-112.8260423","33.9634887"],["-112.8241674","33.9640076"],["-112.8217167","33.9645691"],["-112.8203056","33.9648069"],["-112.8190065","33.9650023"],["-112.8173962","33.9651807"],["-112.8162271","33.9652741"],["-112.815023","33.9653443"],["-112.8127797","33.9653827"],["-112.8103202","33.9652959"],["-112.8088934","33.9651715"],["-112.8072704","33.964997"],["-112.8047749","33.9646052"],["-112.7994384","33.9636287"],["-112.7974397","33.963255"],["-112.7959171","33.9629745"],["-112.7942397","33.9627112"],["-112.7934365","33.9626097"],["-112.7918287","33.9624445"],["-112.790986","33.9623853"],["-112.7902265","33.9623513"],["-112.7719399","33.9622199"],["-112.7706089","33.9622145"],["-112.7661059","33.9621866"],["-112.7638953","33.9621812"],["-112.7624266","33.9622671"],["-112.7614188","33.9623902"],["-112.7596886","33.9627075"],["-112.7584625","33.9629894"],["-112.7557047","33.9637681"],["-112.7544272","33.9641126"],["-112.7539881","33.9642364"],["-112.7522536","33.96471"],["-112.7509847","33.9649975"],["-112.7500655","33.9651671"],["-112.746517","33.9656979"],["-112.7462074","33.9657483"],["-112.7458303","33.9658029"],["-112.7456349","33.9658299"],["-112.7456214","33.965832"],["-112.7410123","33.9664726"],["-112.740409","33.966515"],["-112.7401956","33.9665226"],["-112.7398824","33.9665178"],["-112.7395143","33.9665011"],["-112.7390991","33.9664599"],["-112.7389265","33.9664362"],["-112.7388032","33.966417"],["-112.7386263","33.9663863"],["-112.7358199","33.9656817"],["-112.7356058","33.9656428"],["-112.735304","33.9656061"],["-112.7351638","33.9655937"],["-112.7349473","33.9655888"],["-112.7347428","33.9655961"],["-112.7343197","33.9656581"],["-112.7338957","33.9657628"],["-112.73373","33.9658191"],["-112.733467","33.9659356"],["-112.7329948","33.9661759"],["-112.7327399","33.9663629"],["-112.7320792","33.9669647"],["-112.7318681","33.9671468"],["-112.7316957","33.967229"],["-112.7312238","33.9676869"],["-112.7309667","33.9679395"],["-112.7308543","33.968049"],["-112.7307142","33.9681906"],["-112.7302673","33.9686191"],["-112.7302302","33.9687096"],["-112.730169","33.9687743"],["-112.7301165","33.9688235"],["-112.730058","33.9688768"],["-112.7299595","33.9689431"],["-112.7296957","33.9690752"],["-112.7294785","33.9691834"],["-112.7293927","33.9692239"],["-112.7291379","33.9693471"],["-112.7285018","33.9696577"],["-112.7280382","33.96989"],["-112.7278746","33.9699751"],["-112.7278319","33.9700144"],["-112.7278078","33.9700425"],["-112.727776","33.9700834"],["-112.7277627","33.9701119"],["-112.7277184","33.9701693"],["-112.7276863","33.9702432"],["-112.7276805","33.9703198"],["-112.7276898","33.9704028"],["-112.7277119","33.9704854"],["-112.7277341","33.9705721"],["-112.7277459","33.9706571"],["-112.7277391","33.9708088"],["-112.7277302","33.9708292"],["-112.7277008","33.970871"],["-112.7276844","33.9709294"],["-112.7276915","33.9709923"],["-112.7277202","33.9710488"],["-112.7277697","33.9710951"],["-112.7278342","33.9711259"],["-112.7279132","33.9711439"],["-112.728038","33.9712235"],["-112.7281545","33.9713035"],["-112.728278","33.971406"],["-112.7284081","33.9715316"],["-112.7285981","33.971726"],["-112.7317983","33.9749989"],["-112.732221","33.9755006"],["-112.7324456","33.9758829"],["-112.7326563","33.9762823"],["-112.7329634","33.9770655"],["-112.733974","33.9798581"],["-112.7340503","33.9800538"],["-112.7341667","33.9802839"],["-112.7344826","33.9808256"],["-112.7349135","33.981371"],["-112.7357097","33.9820879"],["-112.7375956","33.9836968"],["-112.7381353","33.9841477"],["-112.738604","33.984539"],["-112.7388983","33.9847386"],["-112.739027","33.9848331"],["-112.7390869","33.9849213"],["-112.7391053","33.9849751"],["-112.7391263","33.9851504"],["-112.7391284","33.9851664"],["-112.7391339","33.9851942"],["-112.7391556","33.9852364"],["-112.7392144","33.9853095"],["-112.7392825","33.9853591"],["-112.7393476","33.9853799"],["-112.7394166","33.9853946"],["-112.7397298","33.9855701"],["-112.740063","33.9858125"],["-112.7402885","33.9860001"],["-112.7404185","33.9861278"],["-112.7406046","33.9863461"],["-112.7411402","33.9870484"],["-112.7413055","33.9872221"],["-112.7416617","33.9877214"],["-112.7419016","33.9880278"],["-112.7422307","33.9884085"],["-112.7425327","33.9886878"],["-112.7428549","33.9889708"],["-112.7431841","33.9892156"],["-112.743476","33.9894147"],["-112.7437667","33.9895931"],["-112.744043","33.9897416"],["-112.7442911","33.9898634"],["-112.7448815","33.9901058"],["-112.7455167","33.9903368"],["-112.7475302","33.9910166"],["-112.7483593","33.9913008"],["-112.7495279","33.9917735"],["-112.7502585","33.9920902"],["-112.7508274","33.9923773"],["-112.7512727","33.9926177"],["-112.7525648","33.9933993"],["-112.7533676","33.9939657"],["-112.7539471","33.9944088"],["-112.754333","33.9947325"],["-112.7555071","33.9957653"],["-112.7564073","33.9964513"],["-112.7574232","33.9971595"],["-112.7580124","33.9975435"],["-112.758942","33.9980672"],["-112.7594682","33.9983166"],["-112.7608519","33.9989316"],["-112.761377","33.9991301"],["-112.7620733","33.9993842"],["-112.7629823","33.9996613"],["-112.7644709","34.000099"],["-112.7647425","34.0001806"],["-112.7651908","34.000321"],["-112.7659799","34.0006122"],["-112.7673715","34.0011676"],["-112.7681054","34.001488"],["-112.7727461","34.0037304"],["-112.7728635","34.0037824"],["-112.7734596","34.0040588"],["-112.7871847","34.0106303"],["-112.788542","34.0112985"],["-112.7902218","34.0121798"],["-112.7954093","34.015262"],["-112.7955896","34.0154204"],["-112.7966249","34.0162246"],["-112.7968039","34.0163459"],["-112.7970106","34.016471"],["-112.7971667","34.0165478"],["-112.7973447","34.0166275"],["-112.7974965","34.0166975"],["-112.7975725","34.0167406"],["-112.7976217","34.016786"],["-112.7976634","34.0168498"],["-112.7977056","34.0169494"],["-112.7977396","34.0170555"],["-112.7977348","34.0171004"],["-112.7977599","34.0171604"],["-112.7977911","34.0172047"],["-112.7978276","34.017243"],["-112.7978662","34.0172749"],["-112.7978891","34.0172897"],["-112.7979191","34.0173027"],["-112.7979467","34.0173094"],["-112.7980011","34.0173201"],["-112.798203","34.0174291"],["-112.7984249","34.017553"],["-112.7987622","34.0177523"],["-112.7991212","34.0179798"],["-112.7997262","34.0183968"],["-112.8003803","34.0188565"],["-112.8008665","34.019187"],["-112.8034764","34.0211491"],["-112.8039823","34.0215445"],["-112.8048552","34.0221875"],["-112.8055084","34.0226934"],["-112.8060438","34.0231694"],["-112.8069256","34.0240544"],["-112.8074256","34.0245717"],["-112.809507","34.0267301"],["-112.8098502","34.0271303"],["-112.8101328","34.0274983"],["-112.8103144","34.0277573"],["-112.8104548","34.0279553"],["-112.8105747","34.0281595"],["-112.8107227","34.0284443"],["-112.8109362","34.0288979"],["-112.8110419","34.0291724"],["-112.8111484","34.029475"],["-112.8112472","34.0298055"],["-112.8173129","34.0560907"],["-112.8212389","34.0696113"],["-112.8403755","34.1353337"],["-112.8405731","34.1361236"],["-112.840745","34.1369821"],["-112.8435437","34.1520218"],["-112.8435958","34.1523927"],["-112.8436463","34.1532922"],["-112.8436552","34.1536567"],["-112.8436918","34.1544017"],["-112.8437198","34.1547477"],["-112.8437855","34.1551612"],["-112.8447238","34.1601645"],["-112.8447691","34.1605305"],["-112.844787","34.1609339"],["-112.8447682","34.1614556"],["-112.844729","34.1616537"],["-112.8446446","34.1620122"],["-112.8445543","34.1623008"],["-112.8444101","34.1626243"],["-112.8442755","34.162883"],["-112.8440443","34.1632908"],["-112.8437393","34.1636829"],["-112.8435155","34.1639264"],["-112.8430855","34.1642878"],["-112.8425057","34.1646904"],["-112.8418577","34.1650355"],["-112.8413105","34.1652543"],["-112.8406786","34.1654487"],["-112.8397705","34.1656988"],["-112.8388714","34.1659142"],["-112.8380827","34.1661199"],["-112.837659","34.166263"],["-112.8373082","34.1664081"],["-112.8370568","34.1665241"],["-112.8367451","34.1666913"],["-112.8364508","34.1668632"],["-112.8360949","34.1671059"],["-112.8357156","34.1674173"],["-112.8353491","34.1677635"],["-112.8351246","34.1680091"],["-112.8349012","34.1682878"],["-112.8346145","34.1687264"],["-112.8343982","34.1691364"],["-112.8341946","34.1696438"],["-112.8328269","34.1739277"],["-112.8326796","34.1743265"],["-112.8324546","34.1748234"],["-112.8321443","34.1754432"],["-112.8317952","34.1760066"],["-112.8313976","34.1766047"],["-112.8309327","34.1772206"],["-112.8297304","34.1785404"],["-112.8072111","34.2010338"],["-112.8023073","34.2063332"],["-112.8013427","34.2072105"],["-112.801024","34.20743"],["-112.8006913","34.2075643"],["-112.800371","34.2076106"],["-112.8000161","34.2076103"],["-112.7996519","34.2075309"],["-112.7993533","34.2074198"],["-112.7990832","34.2072386"],["-112.7988005","34.20693"],["-112.798403","34.2062685"],["-112.7981692","34.2059331"],["-112.7979678","34.2057157"],["-112.7977406","34.2055308"],["-112.7974115","34.2053433"],["-112.7970494","34.2052144"],["-112.7966174","34.2051135"],["-112.7955716","34.2050334"],["-112.7951501","34.2049486"],["-112.7943221","34.2046248"],["-112.7937139","34.2044186"],["-112.7930664","34.2043721"],["-112.792175","34.2043842"],["-112.7914343","34.2042453"],["-112.7897619","34.2037682"],["-112.7886816","34.2034775"],["-112.7883868","34.2034264"],["-112.7881617","34.2034182"],["-112.7879006","34.2034341"],["-112.7876286","34.2034932"],["-112.7873919","34.2035988"],["-112.7872053","34.2036918"],["-112.786987","34.2038846"],["-112.7867896","34.204111"],["-112.7866114","34.204398"],["-112.7864171","34.2046809"],["-112.7862491","34.2048678"],["-112.7860628","34.2050251"],["-112.7858405","34.2051626"],["-112.7855396","34.2053112"],["-112.7850228","34.2055289"],["-112.7845828","34.2057046"],["-112.784286","34.2058121"],["-112.7840388","34.2058462"],["-112.7837945","34.205851"],["-112.7835578","34.2058263"],["-112.7833279","34.2057802"],["-112.783111","34.2056951"],["-112.7829067","34.2055917"],["-112.7827101","34.2054208"],["-112.7825613","34.2052384"],["-112.7824279","34.2050151"],["-112.7823252","34.2048141"],["-112.7822887","34.2046319"],["-112.7822812","34.2044372"],["-112.7823114","34.2041854"],["-112.7824728","34.2036258"],["-112.7825366","34.2031986"],["-112.7824705","34.202712"],["-112.782354","34.2021768"],["-112.7821722","34.2018071"],["-112.7817879","34.2013727"],["-112.7812906","34.2009265"],["-112.7808454","34.2007146"],["-112.7806295","34.2006708"],["-112.7804131","34.2006618"],["-112.7801901","34.2006821"],["-112.7797494","34.200782"],["-112.778771","34.2010223"],["-112.7778658","34.2011158"],["-112.7772173","34.2012141"],["-112.7768339","34.2014015"],["-112.7764094","34.2018179"],["-112.7760768","34.202065"],["-112.7757208","34.2021856"],["-112.7750546","34.202284"],["-112.7745135","34.2024521"],["-112.773","34.2032416"],["-112.772549","34.2033362"],["-112.7718182","34.2032773"],["-112.7689163","34.2029532"],["-112.7684012","34.2028806"],["-112.7681308","34.2027984"],["-112.7679018","34.2026587"],["-112.7677281","34.2025174"],["-112.7675558","34.2022929"],["-112.7674389","34.2020697"],["-112.7672364","34.20164"],["-112.7670843","34.2014379"],["-112.7668969","34.2012818"],["-112.7666804","34.2011876"],["-112.7664834","34.2011298"],["-112.7661788","34.2010795"],["-112.7659177","34.2010353"],["-112.7657077","34.2009922"],["-112.7654488","34.2009029"],["-112.7651923","34.200761"],["-112.7648951","34.2005776"],["-112.7646591","34.2004502"],["-112.7643615","34.2003682"],["-112.7621411","34.1999476"],["-112.7619103","34.1999136"],["-112.7617092","34.199915"],["-112.7615581","34.1999333"],["-112.7614273","34.1999605"],["-112.7612426","34.200026"],["-112.7611185","34.2000933"],["-112.7609644","34.2002062"],["-112.7608499","34.2003155"],["-112.7607668","34.2004171"],["-112.7606938","34.2005466"],["-112.7606434","34.2006859"],["-112.7606239","34.2007946"],["-112.7606199","34.2009499"],["-112.760654","34.2011478"],["-112.7607361","34.201365"],["-112.7608667","34.2016753"],["-112.7609984","34.2019964"],["-112.7610819","34.2022304"],["-112.7611532","34.2025165"],["-112.7612687","34.2030481"],["-112.7613078","34.2032949"],["-112.7613061","34.2035164"],["-112.7612412","34.2037195"],["-112.7611153","34.2038892"],["-112.7609524","34.2040083"],["-112.7607174","34.2040923"],["-112.7604625","34.204118"],["-112.760215","34.2040663"],["-112.7599909","34.2039455"],["-112.7597537","34.2037326"],["-112.7588041","34.20266"],["-112.7585599","34.2024223"],["-112.7584208","34.2023336"],["-112.7582503","34.2022663"],["-112.7580571","34.2022213"],["-112.7578335","34.2022212"],["-112.757607","34.2022556"],["-112.7573669","34.2023578"],["-112.7571578","34.2025128"],["-112.7570257","34.2027172"],["-112.7569584","34.2028965"],["-112.7569729","34.2031178"],["-112.7570423","34.2033224"],["-112.7571082","34.2034368"],["-112.7571953","34.2035578"],["-112.7573852","34.2037565"],["-112.757572","34.2039636"],["-112.7576913","34.2041236"],["-112.7577233","34.2041896"],["-112.757752","34.2042684"],["-112.7577779","34.2043468"],["-112.7577973","34.2044416"],["-112.7578051","34.2045273"],["-112.7577888","34.2046735"],["-112.7577493","34.2049933"],["-112.7577648","34.2051085"],["-112.7577415","34.2052061"],["-112.7576855","34.2053887"],["-112.7576364","34.2055018"],["-112.7575777","34.2055847"],["-112.7575122","34.2056566"],["-112.7574294","34.205733"],["-112.7573276","34.2058063"],["-112.7572095","34.2058692"],["-112.7570527","34.2059322"],["-112.7569347","34.2059591"],["-112.7567538","34.2059795"],["-112.7565751","34.2059716"],["-112.7563363","34.2059364"],["-112.7561528","34.2058841"],["-112.7557797","34.2057843"],["-112.7555861","34.205782"],["-112.7553709","34.2058027"],["-112.75518","34.2058709"],["-112.7550743","34.2059335"],["-112.7549605","34.2060111"],["-112.754538","34.2064488"],["-112.7543605","34.2066223"],["-112.7542114","34.2067648"],["-112.7541213","34.2068544"],["-112.7540089","34.2069666"],["-112.7539155","34.2070614"],["-112.753824","34.2071592"],["-112.7536866","34.2073417"],["-112.7536169","34.2075222"],["-112.7535999","34.2076181"],["-112.7535969","34.2077104"],["-112.7536057","34.2077901"],["-112.7536214","34.2078621"],["-112.7536455","34.207932"],["-112.7536819","34.2080076"],["-112.7537199","34.208078"],["-112.753788","34.2081526"],["-112.7538669","34.2082352"],["-112.7539798","34.2083255"],["-112.7541789","34.2084489"],["-112.7543552","34.2085511"],["-112.7545546","34.2086636"],["-112.7547041","34.2087551"],["-112.7548296","34.2088472"],["-112.7549536","34.2089519"],["-112.7550584","34.2090582"],["-112.7551435","34.2091608"],["-112.7552243","34.2092727"],["-112.7553124","34.2094439"],["-112.7553568","34.2095643"],["-112.7553897","34.2096877"],["-112.755421","34.2098435"],["-112.7554302","34.2099498"],["-112.7554315","34.2100932"],["-112.7554281","34.2102777"],["-112.7554192","34.2104534"],["-112.7554086","34.2105908"],["-112.7553905","34.2108492"],["-112.755382","34.2111113"],["-112.7553757","34.2114852"],["-112.7553731","34.211773"],["-112.7554022","34.2121662"],["-112.7554579","34.2127642"],["-112.7554817","34.2130152"],["-112.7555101","34.2133737"],["-112.755516","34.2135584"],["-112.7554873","34.2138512"],["-112.755459","34.2140066"],["-112.7554222","34.2141666"],["-112.7553775","34.2143254"],["-112.7553035","34.2144998"],["-112.7552233","34.2146728"],["-112.7551366","34.2148476"],["-112.7550343","34.2150165"],["-112.7549331","34.2151632"],["-112.7548118","34.2153268"],["-112.7546508","34.215505"],["-112.7545257","34.2156355"],["-112.754403","34.2157507"],["-112.754186","34.2159318"],["-112.7539937","34.2160668"],["-112.7537555","34.2162163"],["-112.7535272","34.2163362"],["-112.7533063","34.2164349"],["-112.7530122","34.2165471"],["-112.7526095","34.2166608"],["-112.7520941","34.2167843"],["-112.7517673","34.2168851"],["-112.7514671","34.2170046"],["-112.7513024","34.217082"],["-112.7511556","34.2171605"],["-112.7508976","34.2173157"],["-112.750659","34.2174841"],["-112.7505269","34.2175875"],["-112.7504333","34.2176694"],["-112.7503536","34.2177447"],["-112.7503078","34.217791"],["-112.7502725","34.2178278"],["-112.7499828","34.2181472"],["-112.7496819","34.218493"],["-112.749297","34.2189607"],["-112.7488888","34.2195015"],["-112.7484897","34.2200789"],["-112.7483157","34.2203303"],["-112.7482204","34.2204702"],["-112.748147","34.2205734"],["-112.7480718","34.2206787"],["-112.7474154","34.2216324"],["-112.7471977","34.2219492"],["-112.7468419","34.2224639"],["-112.7464736","34.2229804"],["-112.7463153","34.2231773"],["-112.7459822","34.223551"],["-112.7455596","34.2239983"],["-112.7453812","34.2241865"],["-112.7451683","34.2244116"],["-112.7448296","34.2247697"],["-112.7446603","34.2249464"],["-112.7441824","34.2254503"],["-112.7438344","34.225815"],["-112.7432394","34.2264425"],["-112.7415834","34.2281866"],["-112.7411797","34.2286378"],["-112.740776","34.2291028"],["-112.7403531","34.2296462"],["-112.7400275","34.2300993"],["-112.7395285","34.2308866"],["-112.7393208","34.231229"],["-112.7390406","34.2317603"],["-112.7383779","34.2331425"],["-112.738217","34.233513"],["-112.7380386","34.2339227"],["-112.7376421","34.2348031"],["-112.7374495","34.2352368"],["-112.7373199","34.2355858"],["-112.7372496","34.2358906"],["-112.7371858","34.2362576"],["-112.7371565","34.2365081"],["-112.7369224","34.238827"],["-112.7368771","34.2393056"],["-112.73684","34.2396742"],["-112.7366171","34.2421207"],["-112.7365953","34.2425881"],["-112.7365785","34.2436274"],["-112.7365634","34.2447838"],["-112.7365612","34.2452048"],["-112.7365396","34.2455987"],["-112.7364657","34.2460168"],["-112.7349633","34.2521676"],["-112.7348643","34.2524106"],["-112.7347074","34.2527337"],["-112.7344509","34.2531473"],["-112.7281593","34.261988"],["-112.7277317","34.2626646"],["-112.7275612","34.2630772"],["-112.7274093","34.2635161"],["-112.7273254","34.2639297"],["-112.7272859","34.2643954"],["-112.7272688","34.2649707"],["-112.727263","34.2660853"],["-112.7272536","34.2670747"],["-112.7272495","34.2716193"],["-112.7272403","34.2740736"],["-112.7272186","34.2747724"],["-112.7271662","34.2751535"],["-112.7270198","34.2755527"],["-112.7267175","34.2759769"],["-112.7263712","34.2763862"],["-112.7237942","34.2786529"],["-112.7233586","34.279081"],["-112.7230892","34.2794139"],["-112.7229346","34.2796795"],["-112.722886","34.279797"],["-112.7227808","34.2800852"],["-112.7227491","34.2802687"],["-112.7227171","34.2804727"],["-112.722711","34.2806751"],["-112.7231384","34.2960701"],["-112.7231216","34.296732"],["-112.7230786","34.2971715"],["-112.7229748","34.2977319"],["-112.7229146","34.2979705"],["-112.7228539","34.2981954"],["-112.7227266","34.2985674"],["-112.7224876","34.2991223"],["-112.722382","34.2993465"],["-112.7220869","34.2998509"],["-112.7219507","34.3000712"],["-112.7216022","34.300532"],["-112.7213128","34.3008914"],["-112.7210379","34.3011953"],["-112.7205432","34.3016564"],["-112.7110493","34.3096092"],["-112.7105097","34.3101457"],["-112.7101051","34.3106001"],["-112.7095373","34.3113483"],["-112.7086658","34.3127636"],["-112.7079714","34.3139292"],["-112.7075263","34.3145554"],["-112.7069393","34.3151991"],["-112.7064116","34.3156507"],["-112.7057796","34.3161392"],["-112.7042789","34.317118"],["-112.7036892","34.3175955"],["-112.7032711","34.318055"],["-112.7029262","34.3185149"],["-112.7015754","34.320402"],["-112.7011646","34.3208771"],["-112.7008876","34.3211231"],["-112.7006139","34.3213439"],["-112.700048","34.3216862"],["-112.6995539","34.3219844"],["-112.6991081","34.3222758"],["-112.6988087","34.3225009"],["-112.6985746","34.3227473"],["-112.6982745","34.323147"],["-112.6980711","34.3234854"],["-112.6979223","34.3238714"],["-112.6974307","34.3257283"],["-112.6973034","34.3261182"],["-112.6971303","34.3264857"],["-112.6968681","34.3269075"],["-112.6966096","34.3272061"],["-112.696342","34.3274771"],["-112.6960577","34.3276979"],["-112.6957699","34.3278873"],["-112.6953858","34.3280922"],["-112.6949054","34.3282882"],["-112.6944596","34.3284164"],["-112.6938227","34.3285579"],["-112.6905556","34.3292249"],["-112.6897374","34.3294263"],["-112.6890296","34.3296426"],["-112.6885403","34.3298338"],["-112.6881037","34.3300562"],["-112.6876694","34.3303697"],["-112.6873584","34.3306913"],["-112.6871051","34.3310798"],["-112.6869558","34.3314166"],["-112.6868819","34.3316619"],["-112.6868265","34.33204"],["-112.6868378","34.3324325"],["-112.6869379","34.3329837"],["-112.6869923","34.3333923"],["-112.6870159","34.3337749"],["-112.6870032","34.3341214"],["-112.6869192","34.3347037"],["-112.6861157","34.3387746"],["-112.6859772","34.3393167"],["-112.6857802","34.3398641"],["-112.6851332","34.3413577"],["-112.6843765","34.3430795"],["-112.6839675","34.3441563"],["-112.6823483","34.3491176"],["-112.6821232","34.3496951"],["-112.6819152","34.3501236"],["-112.6816683","34.3505377"],["-112.6815072","34.3507843"],["-112.6810029","34.3514747"],["-112.6803281","34.3523694"],["-112.6796303","34.3532691"],["-112.6755221","34.3586225"],["-112.6750964","34.3590762"],["-112.6746831","34.3594717"],["-112.6741464","34.3599139"],["-112.6718075","34.3617449"],["-112.6709034","34.3625133"],["-112.6702965","34.3630963"],["-112.6697057","34.3637304"],["-112.6692386","34.3642843"],["-112.6685261","34.3652675"],["-112.6660233","34.3688788"],["-112.6623852","34.374142"],["-112.661787","34.3749252"],["-112.6594744","34.3778052"],["-112.6581761","34.3792748"],["-112.6571902","34.3802653"],["-112.6561463","34.3812233"],["-112.6548518","34.3823101"],["-112.6538354","34.3830979"],["-112.6501799","34.3857509"],["-112.6491903","34.3864165"],["-112.6481642","34.3870064"],["-112.6465536","34.387781"],["-112.6399788","34.3905913"],["-112.6387438","34.3912417"],["-112.6335201","34.3942636"],["-112.6314588","34.3955015"],["-112.6256849","34.3996705"],["-112.6238836","34.4010182"],["-112.6231109","34.4018267"],["-112.6216992","34.403347"],["-112.6209365","34.4041307"],["-112.6203326","34.4046419"],["-112.6194286","34.4052644"],["-112.613161","34.4094216"],["-112.6121035","34.410001"],["-112.6057988","34.4130782"],["-112.6040316","34.4140415"],["-112.6011213","34.4161533"],["-112.5951902","34.419609"],["-112.5941176","34.4202566"],["-112.5930918","34.4210039"],["-112.5901414","34.4235434"],["-112.5890777","34.424385"],["-112.5884741","34.4247536"],["-112.5865446","34.4258852"],["-112.5845176","34.4270519"],["-112.5836497","34.4275404"],["-112.5831527","34.4277123"],["-112.5827266","34.4277444"],["-112.5822825","34.4277525"],["-112.5817324","34.4277185"],["-112.5813255","34.4276209"],["-112.5807476","34.4273447"],["-112.5802549","34.4269464"],["-112.57992","34.4265337"],["-112.5797135","34.4261221"],["-112.5795675","34.4253177"],["-112.5794067","34.4244482"],["-112.5792961","34.4239266"],["-112.5791652","34.4236996"],["-112.5788982","34.423477"],["-112.578583","34.4233419"],["-112.5782122","34.4232838"],["-112.577821","34.4233436"],["-112.5774315","34.4235482"],["-112.5771117","34.4237392"],["-112.5767353","34.4238313"],["-112.5762556","34.4238528"],["-112.5758756","34.4237896"],["-112.5755261","34.4236406"],["-112.5751898","34.4234"],["-112.5750377","34.423278"],["-112.5747799","34.423141"],["-112.5745175","34.4231025"],["-112.5742658","34.423118"],["-112.5739675","34.4232312"],["-112.5735072","34.4235949"],["-112.5727109","34.4242715"],["-112.5723627","34.4245317"],["-112.5721341","34.4246301"],["-112.5718632","34.4246819"],["-112.5715402","34.4246668"],["-112.5711514","34.4245725"],["-112.5706311","34.424395"],["-112.5701216","34.4241554"],["-112.5694928","34.4238406"],["-112.5690086","34.4235155"],["-112.5685561","34.4232674"],["-112.568159","34.4231438"],["-112.5677128","34.4230793"],["-112.5673491","34.4230968"],["-112.5669672","34.4231614"],["-112.5665394","34.4233036"],["-112.5658853","34.4235706"],["-112.5652424","34.4238186"],["-112.5645155","34.4239913"],["-112.5637279","34.4241527"],["-112.5632919","34.4241857"],["-112.5628164","34.4241255"],["-112.5608343","34.4236324"],["-112.5591537","34.4234008"],["-112.5586056","34.4234231"],["-112.5580171","34.4235185"],["-112.5574834","34.4236805"],["-112.5570209","34.4239032"],["-112.5566354","34.4241714"],["-112.5556232","34.4249875"],["-112.5551026","34.4252239"],["-112.554571","34.4255545"],["-112.5542687","34.4258206"],["-112.5541839","34.4260254"],["-112.5542399","34.4262456"],["-112.5544027","34.4264637"],["-112.554558","34.4265957"],["-112.5546759","34.4267688"],["-112.5547421","34.42699"],["-112.5546901","34.4271407"],["-112.5545381","34.4272596"],["-112.5543222","34.4272967"],["-112.5538394","34.4272592"],["-112.5533873","34.4272703"],["-112.5531122","34.4273755"],["-112.5529411","34.4275489"],["-112.5528722","34.4277772"],["-112.5529048","34.4280105"],["-112.5529742","34.4283584"],["-112.5529414","34.428535"],["-112.5528811","34.4286735"],["-112.552716","34.4288754"],["-112.5524584","34.4290252"],["-112.5521978","34.4290906"],["-112.55186","34.4290356"],["-112.5508729","34.4285817"],["-112.5496378","34.4279314"],["-112.549051","34.4276765"],["-112.5487797","34.4276297"],["-112.5484552","34.4276639"],["-112.5481391","34.4278237"],["-112.5468755","34.4287824"],["-112.5455454","34.4297348"],["-112.5452824","34.4300523"],["-112.545156","34.4303299"],["-112.5451182","34.430588"],["-112.5451485","34.4309249"],["-112.545253","34.4312417"],["-112.5455155","34.4318332"],["-112.5458257","34.4322603"],["-112.546196","34.4326794"],["-112.5463135","34.4329223"],["-112.5463156","34.4331538"],["-112.546192","34.4333954"],["-112.5459682","34.4335629"],["-112.5456943","34.4336298"],["-112.5453867","34.4336379"],["-112.5450211","34.4336005"],["-112.5447903","34.4335971"],["-112.5446264","34.433642"],["-112.5444861","34.4337206"],["-112.5443937","34.4338204"],["-112.5442694","34.4340453"],["-112.5441684","34.4344103"],["-112.5440759","34.4348029"],["-112.5440775","34.4350572"],["-112.5441558","34.4352766"],["-112.5443232","34.4354642"],["-112.5446261","34.4357346"],["-112.544965","34.4360773"],["-112.5453319","34.4365562"],["-112.5455595","34.4367618"],["-112.5457648","34.4369454"],["-112.5458665","34.4371678"],["-112.5462591","34.4383082"],["-112.5463644","34.4384612"],["-112.5465364","34.438586"],["-112.546809","34.4386875"],["-112.5473117","34.4387503"],["-112.5475179","34.4388667"],["-112.5476019","34.4390404"],["-112.5475984","34.4392417"],["-112.5474853","34.4394098"],["-112.5473038","34.4396148"],["-112.547207","34.43981"],["-112.5472084","34.4399946"],["-112.5473436","34.4403854"],["-112.5473995","34.4406133"],["-112.5474244","34.4408656"],["-112.5474931","34.4410466"],["-112.5477875","34.4415637"],["-112.548083","34.442044"],["-112.5483505","34.4424832"],["-112.5484286","34.4426815"],["-112.5484533","34.4428635"],["-112.5484056","34.4431915"],["-112.5482749","34.4434685"],["-112.5480338","34.4437122"],["-112.5477227","34.4438992"],["-112.5471968","34.444104"],["-112.5468592","34.444278"],["-112.5466469","34.4444682"],["-112.5464258","34.4447144"],["-112.5461973","34.4448739"],["-112.5456174","34.445195"],["-112.5448258","34.4456185"],["-112.5444518","34.4458675"],["-112.5441571","34.4461374"],["-112.5439405","34.4464326"],["-112.543734","34.4469486"],["-112.5436173","34.4471387"],["-112.5434896","34.4472683"],["-112.5433339","34.447347"],["-112.5431535","34.4473958"],["-112.5429581","34.4474042"],["-112.5427473","34.447368"],["-112.5422767","34.4472421"],["-112.5419961","34.4472184"],["-112.5414749","34.4473228"],["-112.5410791","34.4473947"],["-112.5409419","34.4474654"],["-112.5407982","34.4475943"],["-112.540719","34.4477581"],["-112.5405789","34.4481044"],["-112.5404175","34.4486808"],["-112.540325","34.4488405"],["-112.540221","34.4489198"],["-112.539905","34.4490423"],["-112.5396647","34.4491168"],["-112.5395154","34.4491999"],["-112.539395","34.4493129"],["-112.5391426","34.4497431"],["-112.5390087","34.4499342"],["-112.5388521","34.4500607"],["-112.5387055","34.4501275"],["-112.5385239","34.45018"],["-112.5383696","34.4502247"],["-112.5382144","34.4502999"],["-112.5380785","34.4504086"],["-112.5379617","34.4505087"],["-112.5378881","34.450918"],["-112.5378973","34.4511033"],["-112.5379311","34.451232"],["-112.5379918","34.4513325"],["-112.5380624","34.4514015"],["-112.5381446","34.4514631"],["-112.538278","34.4515152"],["-112.5384451","34.4515586"],["-112.5386336","34.4515915"],["-112.5387683","34.4516479"],["-112.5388739","34.4517565"],["-112.5389109","34.4518503"],["-112.5389075","34.4519748"],["-112.5388523","34.4520833"],["-112.5387438","34.4521961"],["-112.5385231","34.4523361"],["-112.5382762","34.4524963"],["-112.5381603","34.4526055"],["-112.5380805","34.4527161"],["-112.5380511","34.4528107"],["-112.5380365","34.452903"],["-112.5380512","34.4530295"],["-112.538065","34.4531365"],["-112.5381058","34.4532198"],["-112.538179","34.4532954"],["-112.5383826","34.453441"],["-112.5390897","34.4538466"],["-112.5395318","34.4540005"],["-112.5396769","34.4541355"],["-112.5397325","34.454273"],["-112.5397512","34.4543879"],["-112.5397221","34.4544872"],["-112.539686","34.4545623"],["-112.5396238","34.4546331"],["-112.539536","34.45469"],["-112.5394689","34.4547178"],["-112.5393797","34.4547341"],["-112.5392881","34.4547342"],["-112.5391891","34.454723"],["-112.5389994","34.4546389"],["-112.5386687","34.4545431"],["-112.5385402","34.4545188"],["-112.5383968","34.4545098"],["-112.5382022","34.4545408"],["-112.5376413","34.4547414"],["-112.5374994","34.4547716"],["-112.5373702","34.4547777"],["-112.5371962","34.4547418"],["-112.5370677","34.454698"],["-112.5370097","34.4546457"],["-112.5369179","34.4545914"],["-112.536826","34.4545169"],["-112.5367217","34.4543718"],["-112.5366607","34.4542618"],["-112.5365421","34.4539677"],["-112.5364691","34.4538311"],["-112.5363762","34.4537231"],["-112.5362758","34.4536489"],["-112.5361474","34.4535873"],["-112.5358026","34.4534582"],["-112.5355499","34.4533426"],["-112.5354531","34.4532792"],["-112.535353","34.4531951"],["-112.5352646","34.4531073"],["-112.5351547","34.4530114"],["-112.5350223","34.4529395"],["-112.534923","34.4529058"],["-112.5348089","34.4528884"],["-112.534698","34.452897"],["-112.5345955","34.4529234"],["-112.5344865","34.4529629"],["-112.5343742","34.4530174"],["-112.5342608","34.4531031"],["-112.5341437","34.4532228"],["-112.5339618","34.4534853"],["-112.5337919","34.4537233"],["-112.5336972","34.4538333"],["-112.5335976","34.4539183"],["-112.5334592","34.4540074"],["-112.5332994","34.4540721"],["-112.5329089","34.4541571"],["-112.5325173","34.4542287"],["-112.5322533","34.4542559"],["-112.5320733","34.4542504"],["-112.5318905","34.454228"],["-112.5316643","34.4541575"],["-112.5314553","34.4540926"],["-112.5312373","34.4540371"],["-112.5310068","34.4539986"],["-112.5306145","34.4539618"],["-112.5302874","34.4539526"],["-112.5296765","34.454128"],["-112.5293865","34.4541696"],["-112.5290808","34.4541425"],["-112.5287349","34.4540556"],["-112.52828","34.4539357"],["-112.5280159","34.4539327"],["-112.5276875","34.4539951"],["-112.5273982","34.4540164"],["-112.5271758","34.4539265"],["-112.5269744","34.4537599"],["-112.5267424","34.4536295"],["-112.52651","34.453587"],["-112.5262817","34.453609"],["-112.5259639","34.453721"],["-112.5256991","34.4537656"],["-112.5254423","34.4537185"],["-112.5250731","34.4535912"],["-112.5248272","34.4535856"],["-112.5245692","34.4537163"],["-112.524257","34.4538666"],["-112.5240298","34.4540424"],["-112.523836","34.4543"],["-112.5235258","34.4550013"],["-112.5232814","34.4555726"],["-112.5232277","34.4557396"],["-112.5232122","34.4558844"],["-112.5232138","34.4561885"],["-112.5231807","34.4567029"],["-112.5232023","34.4568405"],["-112.5232393","34.4569821"],["-112.523288","34.4570905"],["-112.5234832","34.4574335"],["-112.5236212","34.4577181"],["-112.5237807","34.4581391"],["-112.5239573","34.4585092"],["-112.5240932","34.4586889"],["-112.5241322","34.4587835"],["-112.5241484","34.4588738"],["-112.5241304","34.4589708"],["-112.5240693","34.4590785"],["-112.5239512","34.4591607"],["-112.5238529","34.4591812"],["-112.5237453","34.459182"],["-112.5236502","34.4591595"],["-112.5235144","34.4590843"],["-112.5219876","34.4577935"],["-112.5217902","34.4575455"],["-112.5216631","34.4572999"],["-112.5214805","34.4571823"],["-112.5212158","34.4571676"],["-112.5209778","34.4572285"],["-112.5206708","34.457429"],["-112.5199812","34.4580681"],["-112.5196746","34.4583875"],["-112.519466","34.4585694"],["-112.519271","34.4586977"],["-112.5188268","34.4589348"],["-112.5185227","34.4590768"],["-112.5182912","34.4590984"],["-112.5179189","34.4590397"],["-112.5177113","34.4590668"],["-112.5174384","34.4592081"],["-112.5173273","34.4593396"],["-112.5172731","34.4594775"],["-112.517226","34.4596321"],["-112.5172482","34.4599632"],["-112.5172734","34.4601777"],["-112.5172675","34.4603235"],["-112.5171953","34.460447"],["-112.516956","34.4608096"],["-112.5169463","34.4610822"],["-112.5169404","34.4613556"],["-112.5168964","34.4615865"],["-112.5168981","34.4617442"],["-112.5169971","34.4619789"],["-112.5174304","34.4622816"],["-112.5175117","34.4624319"],["-112.5174881","34.4626455"],["-112.5174851","34.4627915"],["-112.517507","34.4628771"],["-112.5175678","34.4629616"],["-112.5176709","34.4631049"],["-112.5178719","34.4632282"],["-112.5186634","34.4635194"],["-112.5187671","34.4635907"],["-112.5188259","34.4636425"],["-112.5189553","34.4638813"],["-112.5189909","34.4640159"],["-112.5190498","34.4641118"],["-112.5191034","34.4642033"],["-112.5191757","34.4642812"],["-112.5193289","34.4643704"],["-112.5195613","34.4644094"],["-112.5196901","34.4644521"],["-112.5197732","34.4645737"],["-112.5198304","34.4647066"],["-112.5198143","34.4648968"],["-112.5198425","34.4651201"],["-112.5199689","34.465292"],["-112.5204677","34.4656543"],["-112.5206322","34.4658564"],["-112.5206476","34.466083"],["-112.5206641","34.4662142"],["-112.5207092","34.4663059"],["-112.5208203","34.4664455"],["-112.5210597","34.4666542"],["-112.5211963","34.4667545"],["-112.5212771","34.4669092"],["-112.5212168","34.4670616"],["-112.5208578","34.4673681"],["-112.5206453","34.4674631"],["-112.5204491","34.4674844"],["-112.5202584","34.4674773"],["-112.5200868","34.4674008"],["-112.519985","34.4672577"],["-112.5199315","34.4671023"],["-112.5198282","34.4669435"],["-112.5196316","34.4667785"],["-112.5194242","34.4666671"],["-112.5192811","34.4666234"],["-112.5190735","34.4666295"],["-112.518841","34.4666666"],["-112.5187068","34.4666751"],["-112.518573","34.4666422"],["-112.5184361","34.4665289"],["-112.5183108","34.4664083"],["-112.5181506","34.4663342"],["-112.5179996","34.4663123"],["-112.5177125","34.4663303"],["-112.5175231","34.4662817"],["-112.5174027","34.4662214"],["-112.517299","34.4661146"],["-112.5172229","34.4659781"],["-112.5171312","34.4658597"],["-112.5169814","34.4657436"],["-112.516518","34.4655172"],["-112.5163476","34.4654557"],["-112.51619","34.4654222"],["-112.5160325","34.4654285"],["-112.5158411","34.4654354"],["-112.5156637","34.4654254"],["-112.5154902","34.4654387"],["-112.51532","34.4654586"],["-112.515168","34.465491"],["-112.5150318","34.4655537"],["-112.5149392","34.4656388"],["-112.5148472","34.4657752"],["-112.5147717","34.4659113"],["-112.5146932","34.4662958"],["-112.514692","34.4665824"],["-112.5147843","34.4668094"],["-112.5149535","34.4669973"],["-112.5151789","34.4673072"],["-112.5152793","34.4674733"],["-112.5152587","34.4676238"],["-112.5151621","34.4677306"],["-112.5149978","34.4678245"],["-112.5148612","34.4678844"],["-112.5147189","34.4679693"],["-112.514594","34.4681002"],["-112.5145328","34.4682447"],["-112.5145126","34.4683912"],["-112.5145499","34.4685864"],["-112.5145961","34.4688179"],["-112.5146315","34.469009"],["-112.514662","34.4692376"],["-112.5148349","34.469503"],["-112.5152293","34.4700308"],["-112.5153183","34.4701743"],["-112.5154328","34.4702844"],["-112.5155702","34.4703715"],["-112.5157834","34.4704215"],["-112.5159783","34.4704863"],["-112.5160995","34.4705698"],["-112.5161666","34.470689"],["-112.5161921","34.4708523"],["-112.5161307","34.4710115"],["-112.5160211","34.4711837"],["-112.5159543","34.4713404"],["-112.5159528","34.4715165"],["-112.516044","34.47169"],["-112.5162454","34.4718206"],["-112.5165016","34.4719485"],["-112.5167031","34.4720507"],["-112.5168296","34.4721377"],["-112.5168943","34.4722515"],["-112.5169162","34.4724041"],["-112.5168912","34.4726004"],["-112.5168681","34.4727963"],["-112.5169112","34.4729739"],["-112.5170155","34.473148"],["-112.5171824","34.4733739"],["-112.5173172","34.4735634"],["-112.5174006","34.4737329"],["-112.5174042","34.4739139"],["-112.5173498","34.4741032"],["-112.5173316","34.4742708"],["-112.5173552","34.4744397"],["-112.5175242","34.4746378"],["-112.5177462","34.4747482"],["-112.5179624","34.4748745"],["-112.5180654","34.4750924"],["-112.5179796","34.4753498"],["-112.5176772","34.4755158"],["-112.5174434","34.4755193"],["-112.5169691","34.4754601"],["-112.5161894","34.4753865"],["-112.515645","34.4753831"],["-112.5154269","34.4753537"],["-112.515207","34.475306"],["-112.5151006","34.4752224"],["-112.5149826","34.4750554"],["-112.5149585","34.4748924"],["-112.5149709","34.474712"],["-112.515009","34.4745404"],["-112.5149992","34.4743203"],["-112.5149445","34.4741167"],["-112.514849","34.473939"],["-112.5146693","34.4737366"],["-112.5144403","34.4735887"],["-112.5142312","34.473481"],["-112.5139773","34.4733912"],["-112.513698","34.4733796"],["-112.5134149","34.4734104"],["-112.5131094","34.473485"],["-112.5126538","34.4736251"],["-112.5123676","34.4736752"],["-112.512164","34.4736533"],["-112.5119523","34.4735991"],["-112.5117024","34.4735351"],["-112.5114682","34.473502"],["-112.5112824","34.4735306"],["-112.5110834","34.4736069"],["-112.5109114","34.4736998"],["-112.5108023","34.4738185"],["-112.5105767","34.4742088"],["-112.51023","34.4747939"],["-112.5101646","34.4749992"],["-112.5100286","34.4751394"],["-112.5098099","34.475278"],["-112.5095648","34.4753697"],["-112.5091846","34.4754828"],["-112.5084173","34.4756826"],["-112.5079995","34.4758332"],["-112.5077599","34.4759575"],["-112.5075828","34.4761028"],["-112.5073823","34.4762821"],["-112.5071116","34.4766194"],["-112.5062678","34.4779385"],["-112.5059832","34.4783402"],["-112.5053616","34.4789053"],["-112.5048949","34.479313"],["-112.5045629","34.4796164"],["-112.5043985","34.479868"],["-112.5042929","34.4802786"],["-112.5042275","34.4804185"],["-112.5040931","34.4805376"],["-112.503886","34.480609"],["-112.5034875","34.4806431"],["-112.5032396","34.4807019"],["-112.5029798","34.4808293"],["-112.5025894","34.4810599"],["-112.5023707","34.4812596"],["-112.5022695","34.4814494"],["-112.502233","34.4817036"],["-112.5023101","34.4819252"],["-112.5024331","34.4820895"],["-112.5025955","34.4822386"],["-112.5027757","34.4823506"],["-112.5029981","34.4824428"],["-112.503283","34.4825422"],["-112.503533","34.4826607"],["-112.5037355","34.4828129"],["-112.5038452","34.4829706"],["-112.504031","34.4833089"],["-112.5041005","34.4835471"],["-112.504117","34.4838111"],["-112.5041174","34.4840311"],["-112.5040585","34.4842394"],["-112.5039553","34.4844817"],["-112.5038267","34.484673"],["-112.5035908","34.4849075"],["-112.5033754","34.48504"],["-112.5031496","34.4851682"],["-112.5028958","34.4852628"],["-112.5025688","34.4853253"],["-112.502221","34.4853662"],["-112.5018327","34.4853747"],["-112.5015487","34.4854586"],["-112.5013323","34.4855741"],["-112.5011786","34.4857215"],["-112.501069","34.4859323"],["-112.5010375","34.4861068"],["-112.5010803","34.4863346"],["-112.5013498","34.487098"],["-112.5014476","34.4874191"],["-112.5015021","34.4877042"],["-112.5015283","34.4880012"],["-112.5014972","34.4883227"],["-112.5014409","34.4886737"],["-112.5013141","34.4890444"],["-112.5010994","34.4894772"],["-112.500815","34.4899654"],["-112.5006313","34.4904111"],["-112.5005603","34.4907232"],["-112.5005313","34.4910492"],["-112.50056","34.4915151"],["-112.5005458","34.4917301"],["-112.5004943","34.4919795"],["-112.5002501","34.492629"],["-112.5000686","34.4930876"],["-112.4999005","34.4933671"],["-112.4997393","34.493539"],["-112.4995688","34.4936773"],["-112.4993866","34.4937914"],["-112.4991829","34.493882"],["-112.4990038","34.4939312"],["-112.4988265","34.4939558"],["-112.4986173","34.4939357"],["-112.4982164","34.4938303"],["-112.4975461","34.4936415"],["-112.4971759","34.4935746"],["-112.4964622","34.4935499"],["-112.4952531","34.493553"],["-112.4946465","34.4935778"],["-112.4942795","34.4936193"],["-112.49386","34.4937247"],["-112.4933179","34.4939279"],["-112.4927171","34.4941725"],["-112.4917109","34.4947033"],["-112.4914764","34.4948037"],["-112.4912658","34.4948484"],["-112.4910132","34.4948585"],["-112.4905868","34.4948116"],["-112.4902157","34.494776"],["-112.4898968","34.4947893"],["-112.4896083","34.4948743"],["-112.489277","34.4950468"],["-112.4885176","34.4954272"],["-112.4861673","34.4959693"],["-112.4857317","34.4961137"],["-112.4854154","34.4962474"],["-112.485387","34.4962631"],["-112.4851068","34.4964617"],["-112.484835","34.4966592"],["-112.4845939","34.4969071"],["-112.4843077","34.4972626"],["-112.4840525","34.4974711"],["-112.4837312","34.4976236"],["-112.4832384","34.4978334"],["-112.4828714","34.4980305"],["-112.4826388","34.498233"],["-112.4823118","34.4986926"],["-112.4820407","34.4992688"],["-112.4817647","34.4999074"],["-112.4815512","34.5007388"],["-112.4812991","34.5017897"],["-112.4811738","34.5021221"],["-112.4810038","34.5023346"],["-112.480404","34.5028339"],["-112.4793241","34.5037104"],["-112.4790566","34.5040474"],["-112.4789745","34.504299"],["-112.478951","34.5047167"],["-112.4789353","34.5056453"],["-112.4789902","34.5060163"],["-112.4788994","34.5063262"],["-112.4787301","34.5067491"],["-112.4785971","34.5072116"],["-112.4784873","34.5076478"],["-112.4784589","34.5079455"],["-112.4784902","34.5082175"],["-112.4786128","34.5086537"],["-112.4787543","34.5091333"],["-112.4788266","34.5094418"],["-112.4788372","34.5096987"],["-112.4787536","34.5099165"],["-112.4786368","34.5101082"],["-112.4785377","34.5101967"],["-112.4782638","34.5105062"],["-112.4778754","34.5110378"],["-112.4775609","34.5115145"],["-112.4773563","34.5119534"],["-112.4772693","34.5122191"],["-112.4772949","34.5127161"],["-112.4776465","34.5136756"],["-112.4776942","34.5140056"],["-112.4776994","34.5142361"],["-112.4776387","34.514456"],["-112.4774289","34.5149697"],["-112.4773678","34.5152314"],["-112.4773759","34.5154542"],["-112.477484","34.5160352"],["-112.4775068","34.5163242"],["-112.4774871","34.5166216"],["-112.4774696","34.5170213"],["-112.4775231","34.5172602"],["-112.4775881","34.5174824"],["-112.4777379","34.5178"],["-112.4778915","34.518024"],["-112.4781348","34.5182622"],["-112.4783515","34.518442"],["-112.4786498","34.5186969"],["-112.4788312","34.5189125"],["-112.4789451","34.5191036"],["-112.4790277","34.5192746"],["-112.4790931","34.5194915"],["-112.4791906","34.5200417"],["-112.4792493","34.520294"],["-112.4796444","34.5214176"],["-112.4797972","34.5218423"],["-112.479915","34.5221804"],["-112.4802267","34.5230894"],["-112.4803076","34.5233754"],["-112.4803307","34.5235114"],["-112.4803347","34.523645"],["-112.4803295","34.5237756"],["-112.4802945","34.5239242"],["-112.4802378","34.5240641"],["-112.4801419","34.5242158"],["-112.479934","34.5244939"],["-112.4798382","34.5246297"],["-112.4797232","34.5248196"],["-112.4796549","34.5250393"],["-112.4796504","34.5252713"],["-112.4796564","34.5254294"],["-112.4796366","34.5254751"],["-112.4795865","34.5256067"],["-112.4794817","34.5257852"],["-112.4793042","34.5260157"],["-112.4791766","34.5262158"],["-112.4790911","34.5264618"],["-112.4790833","34.526611"],["-112.4790834","34.526702"],["-112.4791572","34.5269935"],["-112.4791213","34.5272609"],["-112.479032","34.5275269"],["-112.4788681","34.527753"],["-112.478703","34.5279077"],["-112.4785301","34.5280239"],["-112.4783109","34.5281401"],["-112.4779565","34.5282535"],["-112.4775686","34.528378"],["-112.4771564","34.5285324"],["-112.4768467","34.5287143"],["-112.4765988","34.528915"],["-112.47643","34.5290746"],["-112.4759063","34.5295812"],["-112.4757973","34.5296542"],["-112.4756702","34.5297233"],["-112.4754567","34.5298297"],["-112.475216","34.5299314"],["-112.4749625","34.5300385"],["-112.4746528","34.5301655"],["-112.474295","34.5303059"],["-112.4731269","34.5306739"],["-112.4722866","34.5309268"],["-112.4718679","34.5310506"],["-112.4714214","34.5311816"],["-112.4709289","34.5313172"],["-112.4707275","34.5314"],["-112.4705598","34.5315107"],["-112.4704766","34.5316555"],["-112.4704175","34.531831"],["-112.4703496","34.5324743"],["-112.4703446","34.5329089"],["-112.4703242","34.5347192"],["-112.4701698","34.5414383"],["-112.4701444","34.541807"],["-112.4701362","34.5419041"],["-112.4700204","34.541908"],["-112.4694269","34.5418875"],["-112.467306","34.5418648"],["-112.4667028","34.5418541"],["-112.4652542","34.5418392"],["-112.4650497","34.5418358"],["-112.4607541","34.541826"],["-112.4603595","34.5418251"],["-112.4594413","34.5418225"],["-112.4588196","34.5418273"],["-112.4585949","34.5418396"],["-112.4583853","34.5418611"],["-112.4581362","34.5419042"],["-112.4578015","34.5419863"],["-112.4575298","34.542076"],["-112.4572444","34.5421987"],["-112.4570261","34.5423131"],["-112.4566497","34.5425385"],["-112.4546897","34.5437912"],["-112.4543871","34.5439831"],["-112.4540768","34.5441815"],["-112.4536353","34.5444525"],["-112.4514963","34.5457929"],["-112.4513702","34.5458273"],["-112.4512625","34.5458774"],["-112.4509544","34.5460924"],["-112.4506265","34.5463807"],["-112.4501602","34.5469142"],["-112.4495649","34.5476341"],["-112.449263","34.5478739"],["-112.4490204","34.5480062"],["-112.448674","34.5480925"],["-112.4482929","34.548162"],["-112.4474112","34.5482463"],["-112.4460601","34.5482658"],["-112.4452999","34.5482923"],["-112.4444477","34.5483704"],["-112.4431403","34.5486245"],["-112.4384307","34.549602"],["-112.4377902","34.5497289"],["-112.4364906","34.5500009"],["-112.4357829","34.5501801"],["-112.4352112","34.5503602"],["-112.4346208","34.5505945"],["-112.4335861","34.5510814"],["-112.4325104","34.5515802"],["-112.432315","34.551671"],["-112.4320821","34.5517611"],["-112.4313159","34.5519954"],["-112.4309881","34.5520854"],["-112.4305699","34.5521904"],["-112.4301921","34.5522614"],["-112.4297509","34.5523333"],["-112.4292839","34.5523981"],["-112.4271341","34.55269"],["-112.426835","34.5527308"],["-112.42397","34.5531001"],["-112.4235954","34.5531318"],["-112.4233801","34.553145"],["-112.4228972","34.5531471"],["-112.4226485","34.5531378"],["-112.4223437","34.5531136"],["-112.4222051","34.553098"],["-112.4220047","34.5530694"],["-112.4218102","34.5530351"],["-112.42066","34.5527763"],["-112.4195052","34.5525386"],["-112.4189164","34.552447"],["-112.4180502","34.5523524"],["-112.4149229","34.5521326"],["-112.4117051","34.551914"],["-112.4108245","34.5518316"],["-112.410653","34.5518145"],["-112.4103371","34.5517557"],["-112.4099489","34.5516751"],["-112.409312","34.5514836"],["-112.4086012","34.5512098"],["-112.4080318","34.5509213"],["-112.4074985","34.5506176"],["-112.4070331","34.5503357"],["-112.4059876","34.5497715"],["-112.4052151","34.5494484"],["-112.4045586","34.5492015"],["-112.4040942","34.5490686"],["-112.4019087","34.548568"],["-112.4011432","34.5484307"],["-112.4005187","34.5483986"],["-112.3999462","34.5484186"],["-112.3976742","34.5487117"],["-112.3968649","34.5488209"],["-112.3959411","34.5489403"],["-112.3951156","34.5490263"],["-112.3941738","34.5490753"],["-112.3918435","34.5490728"],["-112.3909565","34.5490915"],["-112.3904315","34.5491492"],["-112.3897231","34.54925"],["-112.3892084","34.5493537"],["-112.3886757","34.5494925"],["-112.387956","34.5497168"],["-112.3872293","34.5500067"],["-112.3865661","34.5503419"],["-112.3859487","34.5506892"],["-112.3854156","34.5510561"],["-112.384912","34.5514641"],["-112.3845474","34.5517923"],["-112.3842139","34.5521453"],["-112.3840877","34.5523012"],["-112.3834287","34.5530463"],["-112.3831499","34.5533049"],["-112.382907","34.55343"],["-112.3821768","34.5540808"],["-112.3817629","34.5544874"],["-112.3815365","34.5547464"],["-112.38132","34.5550245"],["-112.3811171","34.5553168"],["-112.380885","34.555735"],["-112.3807446","34.5560482"],["-112.3806345","34.5563412"],["-112.3805337","34.5567202"],["-112.3804142","34.5572168"],["-112.3802762","34.5578526"],["-112.3802143","34.5580821"],["-112.3801329","34.5583624"],["-112.3800474","34.5586099"],["-112.379961","34.5588189"],["-112.379836","34.5590896"],["-112.3796672","34.5593931"],["-112.3795027","34.5596482"],["-112.3793251","34.5598944"],["-112.3791548","34.560102"],["-112.3789663","34.5603041"],["-112.3787538","34.5605106"],["-112.3785323","34.5607077"],["-112.3782937","34.5609037"],["-112.3778576","34.5612423"],["-112.3773966","34.561606"],["-112.3769208","34.5619969"],["-112.3765022","34.5623794"],["-112.3761451","34.5627499"],["-112.3748897","34.564138"],["-112.374696","34.5643566"],["-112.3738853","34.5652721"],["-112.3734161","34.5658671"],["-112.3732167","34.5661736"],["-112.3730651","34.5664554"],["-112.3729262","34.5667443"],["-112.3723755","34.5680541"],["-112.372094","34.5685701"],["-112.3719438","34.5688"],["-112.3717603","34.569039"],["-112.3715797","34.5692491"],["-112.37137","34.5694705"],["-112.3710376","34.5697831"],["-112.3706496","34.5701175"],["-112.3699968","34.5706654"],["-112.3697078","34.5709361"],["-112.3695336","34.5711506"],["-112.3694175","34.5712932"],["-112.369268","34.5714759"],["-112.3689496","34.5718639"],["-112.3685735","34.5723047"],["-112.3683086","34.5726155"],["-112.3680373","34.5729466"],["-112.3677148","34.5733328"],["-112.3674391","34.5736889"],["-112.3671716","34.5740333"],["-112.3668402","34.5744514"],["-112.3665611","34.5747964"],["-112.3661911","34.5752502"],["-112.3659497","34.5755659"],["-112.3654604","34.5761673"],["-112.3653585","34.5762893"],["-112.365091","34.5766047"],["-112.3649143","34.5768079"],["-112.3646545","34.5770761"],["-112.3643032","34.5774133"],["-112.3639922","34.5776776"],["-112.3635996","34.5779804"],["-112.363183","34.5782776"],["-112.3628137","34.5785163"],["-112.3624004","34.5787388"],["-112.361868","34.5789929"],["-112.3613564","34.5792015"],["-112.3608935","34.5793698"],["-112.360492","34.5795043"],["-112.3600564","34.5796275"],["-112.3595944","34.579725"],["-112.3590377","34.5798352"],["-112.3561301","34.5803829"],["-112.3441432","34.5827223"],["-112.3426044","34.5830206"],["-112.3423083","34.5830735"],["-112.3361366","34.5842744"],["-112.3341166","34.5846631"],["-112.3325741","34.5849605"],["-112.3302888","34.5853919"],["-112.3292203","34.585565"],["-112.3284138","34.5856785"],["-112.3254251","34.5859251"],["-112.3237318","34.5859643"],["-112.3228597","34.5859545"],["-112.3207018","34.5858478"],["-112.3198459","34.5857661"],["-112.3190528","34.5856749"],["-112.3179995","34.5855353"],["-112.3173483","34.5854242"],["-112.3163647","34.5852401"],["-112.3151324","34.5849709"],["-112.3139758","34.5846842"],["-112.3131098","34.5844385"],["-112.3115634","34.5839426"],["-112.2806676","34.5737319"],["-112.2794033","34.5732022"],["-112.277897","34.5725487"],["-112.2769333","34.572129"],["-112.2746224","34.57104"],["-112.2718171","34.5695522"],["-112.2701677","34.5686036"],["-112.2616827","34.5632916"],["-112.2607885","34.5626607"],["-112.2596753","34.561811"],["-112.2596093","34.5617555"],["-112.2594461","34.5616131"],["-112.2583189","34.5605987"],["-112.2574817","34.5597688"],["-112.2566341","34.5588635"],["-112.2560148","34.5581372"],["-112.255564","34.5575825"],["-112.2550836","34.5569465"],["-112.2546018","34.5562495"],["-112.2541342","34.5555203"],["-112.2539035","34.555143"],["-112.2533614","34.5541099"],["-112.2527324","34.5528079"],["-112.2506254","34.5483086"],["-112.2503584","34.5477123"],["-112.2470858","34.5405515"],["-112.2469345","34.5402262"],["-112.2467393","34.5397925"],["-112.2422118","34.5298569"],["-112.2420755","34.529819"],["-112.2419159","34.5298127"],["-112.2406884","34.5298295"],["-112.2371347","34.5297862"],["-112.2317394","34.5295662"],["-112.2276894","34.5293177"],["-112.2272302","34.5293134"],["-112.226668","34.5293326"],["-112.226044","34.5293891"],["-112.2253774","34.529486"],["-112.2247626","34.5296148"],["-112.2242294","34.5297522"],["-112.2238368","34.5298697"],["-112.2234329","34.530014"],["-112.2225289","34.5304145"],["-112.2178191","34.5326784"],["-112.2168883","34.5331407"],["-112.2163715","34.533388"],["-112.208289","34.5372992"],["-112.2069691","34.5378281"],["-112.2057976","34.5382059"],["-112.1920687","34.5419876"],["-112.1730124","34.5472062"],["-112.1720552","34.5474068"],["-112.1712262","34.5475357"],["-112.1705308","34.5476264"],["-112.1697382","34.5477028"],["-112.1689155","34.5477474"],["-112.1681745","34.5477658"],["-112.1673496","34.547772"],["-112.1665612","34.5477382"],["-112.1654858","34.5476409"],["-112.1645835","34.5475327"],["-112.1633522","34.5473176"],["-112.1628242","34.5472049"],["-112.1618384","34.5469522"],["-112.1612496","34.5467728"],["-112.1606971","34.5465938"],["-112.1598651","34.5462905"],["-112.1594834","34.5461327"],["-112.1589131","34.545885"],["-112.158241","34.54557"],["-112.1573146","34.5450802"],["-112.1488245","34.5399106"],["-112.1453205","34.5377622"],["-112.1446835","34.537397"],["-112.1440777","34.5370805"],["-112.1433561","34.5367342"],["-112.1427692","34.5364767"],["-112.1420849","34.5362132"],["-112.141186","34.535893"],["-112.1398343","34.5354843"],["-112.1392722","34.5353249"],["-112.1387827","34.5352112"],["-112.137094","34.5349296"],["-112.1362374","34.5347845"],["-112.1353604","34.5346323"],["-112.1346354","34.5344936"],["-112.1334408","34.5342514"],["-112.1325852","34.5340796"],["-112.1306827","34.5337482"],["-112.1267169","34.5330659"],["-112.1208933","34.531965"],["-112.119475","34.531676"],["-112.1187063","34.5315478"],["-112.1181008","34.5314557"],["-112.1172284","34.5313024"],["-112.1155296","34.5309862"],["-112.1153147","34.530949"],["-112.1149958","34.5308945"],["-112.1131826","34.530557"],["-112.1119054","34.5303135"],["-112.1106635","34.5300933"],["-112.1076151","34.5295781"],["-112.1067554","34.5294201"],["-112.1037006","34.5288349"],["-112.1023702","34.5285712"],["-112.1010764","34.5283175"],["-112.0985137","34.527916"],["-112.0974109","34.5277107"],["-112.0963472","34.5275135"],["-112.094803","34.5271882"],["-112.0937579","34.5269873"],["-112.0923625","34.5267699"],["-112.0891934","34.5262104"],["-112.0873994","34.5258698"],["-112.0833695","34.5250927"],["-112.0831278","34.5250584"],["-112.0829456","34.5250347"],["-112.0761598","34.5235154"],["-112.0753074","34.5233198"],["-112.0689343","34.5218878"],["-112.0679554","34.5216622"],["-112.0674565","34.5215268"],["-112.0606784","34.5193272"],["-112.060318","34.5192353"],["-112.0599659","34.5191532"],["-112.0593862","34.5190701"],["-112.0589713","34.5190424"],["-112.0584895","34.5190389"],["-112.0581063","34.5190574"],["-112.0576755","34.5190976"],["-112.057208","34.5191814"],["-112.0568691","34.5192578"],["-112.0564933","34.5193603"],["-112.0559674","34.519522"],["-112.0555541","34.5196793"],["-112.0552183","34.5198345"],["-112.0548485","34.5200379"],["-112.0543539","34.5203587"],["-112.0537238","34.5207926"],["-112.0529846","34.5212998"],["-112.0517516","34.52216"],["-112.0512553","34.5224866"],["-112.0509103","34.5226886"],["-112.0506029","34.5228481"],["-112.0502103","34.5230292"],["-112.049856","34.5231656"],["-112.0496281","34.5232418"],["-112.0492859","34.5233422"],["-112.0491147","34.5233873"],["-112.0489379","34.5234281"],["-112.0486491","34.5234813"],["-112.0482853","34.5235336"],["-112.047951","34.5235677"],["-112.0475639","34.5235969"],["-112.0471611","34.5235967"],["-112.0467288","34.5235739"],["-112.0463696","34.5235291"],["-112.0460297","34.5234742"],["-112.0456175","34.5233894"],["-112.0451885","34.5232645"],["-112.0439287","34.5228298"],["-112.0424516","34.5223391"],["-112.0381717","34.5209423"],["-112.0356278","34.5201014"],["-112.0306275","34.5184919"],["-112.0286669","34.517871"],["-112.0265141","34.5171625"],["-112.0225034","34.5158542"],["-112.0213418","34.5154826"],["-112.020542","34.5152507"],["-112.0199608","34.5151096"],["-112.0192764","34.5149649"],["-112.0186897","34.5148581"],["-112.0180785","34.5147646"],["-112.0173088","34.5146826"],["-112.0161258","34.5146168"],["-112.0145645","34.5145986"],["-111.9963742","34.5147819"],["-111.9957808","34.5147684"],["-111.9953268","34.5147422"],["-111.994846","34.5146912"],["-111.993194","34.5144508"],["-111.9919624","34.5142458"],["-111.9914702","34.5142007"],["-111.9913318","34.5145518"],["-111.9911384","34.5150608"],["-111.9909378","34.5155551"],["-111.990698","34.5160231"],["-111.9903494","34.5165937"],["-111.9901191","34.5169448"],["-111.9892533","34.518214"],["-111.9888412","34.5188574"],["-111.9826157","34.5272309"],["-111.982137","34.5278508"],["-111.9815335","34.5287214"],["-111.9803866","34.5302865"],["-111.9801061","34.5306236"],["-111.9797359","34.531027"],["-111.9792125","34.5315047"],["-111.9788503","34.5318011"],["-111.9784304","34.5321024"],["-111.9779382","34.5324177"],["-111.977427","34.5326975"],["-111.9769399","34.5329276"],["-111.9762583","34.5331965"],["-111.9755477","34.5334206"],["-111.9749069","34.5335821"],["-111.9741476","34.5337099"],["-111.9735749","34.5337933"],["-111.9730989","34.5338197"],["-111.9725818","34.5338372"],["-111.9720963","34.5338251"],["-111.9712031","34.5337605"],["-111.9705846","34.5336792"],["-111.966535","34.5329732"],["-111.965696","34.5328806"],["-111.9646739","34.5328895"],["-111.9639825","34.5329509"],["-111.9634916","34.5330175"],["-111.9611387","34.5334692"],["-111.9602853","34.5335652"],["-111.9595704","34.5335509"],["-111.9589782","34.5334997"],["-111.9584866","34.5334143"],["-111.9577851","34.5332202"],["-111.9570094","34.5328796"],["-111.9558935","34.5321825"],["-111.9533252","34.5305463"],["-111.9526143","34.5301156"],["-111.952188","34.529918"],["-111.9515835","34.5297049"],["-111.951086","34.5295834"],["-111.9504443","34.529481"],["-111.9496582","34.5294477"],["-111.9490801","34.5294827"],["-111.9485256","34.529574"],["-111.9480669","34.5296741"],["-111.9476405","34.5298079"],["-111.9469779","34.5300531"],["-111.9462514","34.5302934"],["-111.9453795","34.5305518"],["-111.9436249","34.5310026"],["-111.9431152","34.5311626"],["-111.9424046","34.5314827"],["-111.941827","34.5318106"],["-111.9409124","34.5324875"],["-111.9401677","34.5330527"],["-111.9394372","34.5335957"],["-111.9389336","34.5339001"],["-111.9384163","34.5341764"],["-111.9378547","34.5343785"],["-111.9372366","34.5345513"],["-111.9364768","34.5346845"],["-111.9324118","34.5351974"],["-111.931008","34.5354255"],["-111.9292826","34.5358967"],["-111.928081","34.5363413"],["-111.9270674","34.5367847"],["-111.9258988","34.5372945"],["-111.9254685","34.5374129"],["-111.9251616","34.5374741"],["-111.9247276","34.5375371"],["-111.924292","34.5375888"],["-111.9238494","34.5376034"],["-111.9234444","34.5375939"],["-111.9229604","34.5375601"],["-111.9225261","34.5374812"],["-111.9219703","34.5373527"],["-111.9211534","34.537112"],["-111.9200744","34.5368197"],["-111.9194734","34.5367474"],["-111.9189099","34.5367145"],["-111.9182766","34.5367562"],["-111.9176493","34.5368174"],["-111.9165416","34.53702"],["-111.915599","34.5371931"],["-111.9144566","34.5374128"],["-111.9137555","34.537575"],["-111.9133375","34.5376643"],["-111.9128684","34.5377712"],["-111.9123348","34.537897"],["-111.9118109","34.5380215"],["-111.9114252","34.5381642"],["-111.9111312","34.5383149"],["-111.9108744","34.5384402"],["-111.910113","34.5387121"],["-111.9096963","34.538917"],["-111.9089146","34.5394709"],["-111.9087682","34.539593"],["-111.9086127","34.5397468"],["-111.907831","34.5404415"],["-111.9074696","34.5408001"],["-111.907308","34.5410172"],["-111.9068069","34.5416886"],["-111.9065134","34.5421776"],["-111.9062666","34.5426151"],["-111.9059781","34.5432352"],["-111.9058857","34.5435437"],["-111.9058209","34.5440593"],["-111.9056981","34.5446173"],["-111.9056664","34.5449526"],["-111.9056842","34.5455969"],["-111.9056653","34.5466856"],["-111.9056511","34.5502274"],["-111.9056491","34.5508148"],["-111.9056465","34.5513275"],["-111.9056497","34.5517696"],["-111.905642","34.5537692"],["-111.9056071","34.554604"],["-111.9055332","34.5556026"],["-111.9054497","34.5559826"],["-111.9050034","34.5575903"],["-111.9047666","34.558273"],["-111.9045175","34.5588992"],["-111.9042711","34.5594797"],["-111.9038603","34.5602361"],["-111.9034415","34.5609384"],["-111.903105","34.5614592"],["-111.9022441","34.5625775"],["-111.9017381","34.5631468"],["-111.901215","34.5636869"],["-111.9006892","34.564165"],["-111.9003234","34.5645069"],["-111.899952","34.5647938"],["-111.8992287","34.5653592"],["-111.8984636","34.5658827"],["-111.8977072","34.5664063"],["-111.8956942","34.5678037"],["-111.8926919","34.5698387"],["-111.8917641","34.5704741"],["-111.8910049","34.5709951"],["-111.8898616","34.5717795"],["-111.8891573","34.5722727"],["-111.8882799","34.5729237"],["-111.8875215","34.5735568"],["-111.886924","34.5741003"],["-111.8864661","34.5745496"],["-111.8859338","34.5751146"],["-111.885351","34.5758037"],["-111.8848274","34.5764787"],["-111.8843842","34.5771266"],["-111.8840262","34.5777576"],["-111.8839803","34.5778402"],["-111.8837261","34.5783078"],["-111.8815135","34.582493"],["-111.8809891","34.5834843"],["-111.8740017","34.5965398"],["-111.8732567","34.5979173"],["-111.8715841","34.6010341"],["-111.8710161","34.6022119"],["-111.8706462","34.6030614"],["-111.8702791","34.6039439"],["-111.8698665","34.6049083"],["-111.869528","34.6056145"],["-111.8692365","34.6061715"],["-111.8689368","34.6066449"],["-111.8686529","34.6070125"],["-111.8683317","34.6074017"],["-111.8679321","34.6078214"],["-111.8675676","34.6081846"],["-111.8672338","34.6084555"],["-111.8668349","34.6087547"],["-111.865676","34.6095258"],["-111.8641721","34.6101944"],["-111.8523968","34.6137189"],["-111.8514965","34.6140694"],["-111.8506128","34.6145126"],["-111.849682","34.6150181"],["-111.8489478","34.6154971"],["-111.8483872","34.6159362"],["-111.8479117","34.616329"],["-111.8463465","34.6179996"],["-111.8449664","34.6195649"],["-111.8425567","34.6222208"],["-111.8417826","34.6230127"],["-111.8413251","34.6234245"],["-111.8408628","34.6237683"],["-111.8401958","34.624211"],["-111.8392335","34.6247205"],["-111.8382463","34.6252257"],["-111.8374703","34.6256386"],["-111.8368469","34.6260354"],["-111.8364193","34.6263495"],["-111.8359433","34.6267427"],["-111.8354558","34.6272089"],["-111.8351196","34.6275947"],["-111.8348299","34.6279833"],["-111.8344034","34.6286231"],["-111.8335551","34.6301692"],["-111.8328853","34.6312405"],["-111.8318109","34.632496"],["-111.830384","34.6337838"],["-111.8297562","34.6342454"],["-111.8291914","34.6345723"],["-111.8286539","34.6348517"],["-111.8280624","34.6350685"],["-111.8269939","34.6353784"],["-111.8247168","34.6359701"],["-111.8237546","34.6363014"],["-111.8230446","34.636619"],["-111.8225364","34.6368704"],["-111.8220767","34.6370956"],["-111.8216969","34.6372699"],["-111.8213369","34.6374508"],["-111.8209672","34.6376185"],["-111.8203196","34.6378659"],["-111.8195609","34.6381273"],["-111.8187578","34.638325"],["-111.8178958","34.6385194"],["-111.8153199","34.6389626"],["-111.8141852","34.6392153"],["-111.8135464","34.6394288"],["-111.8117357","34.640238"],["-111.810624","34.6408963"],["-111.8073995","34.6435393"],["-111.7971459","34.6521399"],["-111.7942482","34.6546277"],["-111.7935636","34.6554808"],["-111.7919966","34.6578259"],["-111.7911973","34.6586775"],["-111.7901809","34.6594812"],["-111.7890174","34.6602083"],["-111.7877581","34.6609365"],["-111.7867743","34.661634"],["-111.7857151","34.6626553"],["-111.7836373","34.6652352"],["-111.7826687","34.666223"],["-111.7808075","34.6677616"],["-111.7800158","34.6685117"],["-111.7788191","34.6697995"],["-111.7779705","34.6706234"],["-111.7772273","34.6712077"],["-111.7762392","34.6718018"],["-111.7750892","34.6723204"],["-111.7737931","34.6727692"],["-111.760893","34.6759505"],["-111.75912","34.6764276"],["-111.7574041","34.6771807"],["-111.7559544","34.6781649"],["-111.7521837","34.6812164"],["-111.7509384","34.6821119"],["-111.7498085","34.6828003"],["-111.7479019","34.6838766"],["-111.7463472","34.6848296"],["-111.7449772","34.686129"],["-111.7441781","34.6872305"],["-111.7438374","34.6878506"],["-111.74364","34.6881259"],["-111.7427404","34.6899202"],["-111.743733","34.6903133"],["-111.7440023","34.69039"],["-111.7449919","34.6906117"],["-111.7486054","34.6912842"],["-111.7498112","34.6916289"],["-111.7506601","34.69206"],["-111.7514245","34.692605"],["-111.753002","34.6941633"],["-111.7535821","34.6945944"],["-111.7547264","34.6952263"],["-111.7614138","34.6984092"],["-111.762863","34.6991642"],["-111.7637661","34.6996646"],["-111.765412","34.700681"],["-111.7660042","34.7010752"],["-111.767011","34.7018023"],["-111.7686466","34.7030506"],["-111.7702781","34.7044332"],["-111.7717094","34.7057984"],["-111.7767448","34.711632"],["-111.7774588","34.7124907"],["-111.7778172","34.7130984"],["-111.7780845","34.7137193"],["-111.7782023","34.7142639"],["-111.7782484","34.7148121"],["-111.7782009","34.7153295"],["-111.7780964","34.7158402"],["-111.7779475","34.7163356"],["-111.7775938","34.7170556"],["-111.7755805","34.7208777"],["-111.7751997","34.7218328"],["-111.7750174","34.7226637"],["-111.7749543","34.7236078"],["-111.7750485","34.7245697"],["-111.7753206","34.7253941"],["-111.7754336","34.7256697"],["-111.7756147","34.7261414"],["-111.7760319","34.7268415"],["-111.7763776","34.7274437"],["-111.7766362","34.7279147"],["-111.7771201","34.7289382"],["-111.7774026","34.729911"],["-111.7774955","34.7306531"],["-111.7774954","34.7313551"],["-111.777416","34.7320452"],["-111.7772525","34.7326909"],["-111.7770818","34.7331886"],["-111.7767905","34.733792"],["-111.7766294","34.7340622"],["-111.7741442","34.7376669"],["-111.7732408","34.738853"],["-111.7710282","34.7411758"],["-111.7701324","34.7421533"],["-111.7694199","34.7430258"],["-111.7687614","34.7439317"],["-111.7685394","34.7442573"],["-111.7683588","34.74454"],["-111.7681331","34.7449012"],["-111.7678068","34.7454259"],["-111.767306","34.746358"],["-111.7669484","34.7471306"],["-111.7665159","34.7481678"],["-111.7661582","34.7491045"],["-111.7658842","34.7500472"],["-111.7654422","34.7519225"],["-111.7653439","34.7524842"],["-111.7650051","34.7549047"],["-111.7648991","34.7555618"],["-111.7648631","34.7560139"],["-111.7648778","34.7563058"],["-111.7649086","34.7566292"],["-111.7649834","34.7569834"],["-111.7651003","34.7574078"],["-111.7653031","34.7578669"],["-111.7655055","34.7582379"],["-111.7663123","34.759395"],["-111.7666789","34.7600144"],["-111.7668191","34.7603948"],["-111.766884","34.7607061"],["-111.7669112","34.7610473"],["-111.7669175","34.7613411"],["-111.7668889","34.7616155"],["-111.7667572","34.7621616"],["-111.766462","34.7632387"],["-111.7663859","34.7635484"],["-111.7663438","34.7637539"],["-111.7662812","34.7640284"],["-111.7658632","34.7655907"],["-111.765527","34.7668468"],["-111.7650628","34.7686209"],["-111.7648498","34.7694609"],["-111.7640746","34.7723757"],["-111.7640042","34.7726777"],["-111.7639862","34.7727965"],["-111.7639611","34.7728922"],["-111.7639261","34.7729552"],["-111.7638759","34.7730124"],["-111.763798","34.7730513"],["-111.7637457","34.7731193"],["-111.7637436","34.7731383"],["-111.7637489","34.7731988"],["-111.7637866","34.7732587"],["-111.7638038","34.7733434"],["-111.7637818","34.7734769"],["-111.7633857","34.7749758"],["-111.7632487","34.7755202"],["-111.763126","34.7760563"],["-111.7630374","34.7765498"],["-111.7629974","34.7768595"],["-111.7629948","34.7770029"],["-111.7630079","34.7771116"],["-111.7630073","34.7772088"],["-111.7629719","34.7773167"],["-111.7629116","34.777359"],["-111.7628761","34.7774198"],["-111.7628794","34.7774763"],["-111.7628947","34.7775002"],["-111.7629174","34.7775344"],["-111.7629513","34.7776247"],["-111.7629585","34.7778447"],["-111.7629765","34.7782765"],["-111.7629774","34.7783251"],["-111.7629803","34.7783947"],["-111.7629849","34.778515"],["-111.762994","34.7789023"],["-111.7630073","34.7796559"],["-111.7630321","34.7798498"],["-111.7630234","34.7799557"],["-111.7629719","34.7800498"],["-111.7629258","34.7800796"],["-111.7629063","34.7801038"],["-111.7628858","34.7801322"],["-111.7628777","34.7801616"],["-111.762883","34.78021"],["-111.762896","34.7802311"],["-111.7629204","34.780265"],["-111.7629556","34.7802945"],["-111.7629773","34.7804185"],["-111.7629886","34.780598"],["-111.7629832","34.7854251"],["-111.7629829","34.7861345"],["-111.7629826","34.7864721"],["-111.7629782","34.7865648"],["-111.7629869","34.7884241"],["-111.7630056","34.7885862"],["-111.7629953","34.7887115"],["-111.7629525","34.7888"],["-111.7628972","34.7888363"],["-111.7628679","34.7888724"],["-111.7628547","34.7889244"],["-111.7628713","34.7889841"],["-111.7628978","34.7890114"],["-111.7629242","34.7890402"],["-111.7629646","34.789266"],["-111.7629775","34.7903362"],["-111.7630112","34.7906146"],["-111.7630658","34.7909191"],["-111.7631463","34.7912384"],["-111.7632651","34.7915933"],["-111.7648539","34.795343"],["-111.7651768","34.7959981"],["-111.7655222","34.7965593"],["-111.7663202","34.7975564"],["-111.76751","34.798951"],["-111.7679257","34.7995547"],["-111.7681751","34.8001036"],["-111.7683562","34.8007388"],["-111.7683868","34.8013865"],["-111.7682806","34.8019803"],["-111.7680879","34.8025633"],["-111.7677267","34.8034054"],["-111.7676078","34.8038457"],["-111.7675527","34.8041973"],["-111.7675403","34.8045357"],["-111.7675738","34.8050588"],["-111.7676727","34.8057251"],["-111.7677105","34.8061802"],["-111.7677403","34.8066571"],["-111.7677329","34.8069556"],["-111.767642","34.8073201"],["-111.7675274","34.8076204"],["-111.7672238","34.8080904"],["-111.7650838","34.8103913"],["-111.7649025","34.8106486"],["-111.7648026","34.8108963"],["-111.7647578","34.8110792"],["-111.7647495","34.8112173"],["-111.7647744","34.8114485"],["-111.7648377","34.8116724"],["-111.7649847","34.8119536"],["-111.7653539","34.8124469"],["-111.7655324","34.8127791"],["-111.7663787","34.8148942"],["-111.7667503","34.8158258"],["-111.7669234","34.8161253"],["-111.7671005","34.8163664"],["-111.7673544","34.816611"],["-111.7676828","34.8168656"],["-111.7680548","34.8170949"],["-111.7686988","34.8173457"],["-111.7710954","34.8180611"],["-111.7716997","34.8183095"],["-111.7720575","34.8186139"],["-111.772285","34.8189315"],["-111.7724106","34.8192553"],["-111.7724397","34.8194506"],["-111.7724522","34.8199541"],["-111.7724743","34.8204473"],["-111.7725735","34.8208688"],["-111.7727045","34.8211426"],["-111.7728504","34.8213834"],["-111.773164","34.8217115"],["-111.7742725","34.8227359"],["-111.7746497","34.8230271"],["-111.7750148","34.823242"],["-111.7761995","34.8237108"],["-111.776665","34.823902"],["-111.7772184","34.8242041"],["-111.7776546","34.8245433"],["-111.7779839","34.824873"],["-111.7782007","34.8251419"],["-111.7783783","34.8254714"],["-111.7785445","34.8258838"],["-111.7786081","34.8261515"],["-111.7785804","34.8262873"],["-111.7785367","34.8263357"],["-111.7785162","34.8264038"],["-111.7785365","34.8264648"],["-111.7785855","34.8265147"],["-111.7786015","34.8266028"],["-111.7785872","34.8267787"],["-111.7785561","34.8269686"],["-111.7784829","34.8271816"],["-111.778401","34.8273601"],["-111.7782551","34.8276123"],["-111.7781213","34.8278473"],["-111.7780159","34.8281272"],["-111.7779418","34.8284616"],["-111.7779235","34.8288565"],["-111.7779045","34.8293501"],["-111.7778773","34.8296626"],["-111.777819","34.8299336"],["-111.7777255","34.8302593"],["-111.7775398","34.8307884"],["-111.7772864","34.8315039"],["-111.7770215","34.8322157"],["-111.7769593","34.8324475"],["-111.7769211","34.8325964"],["-111.7768771","34.8326822"],["-111.7767702","34.8327828"],["-111.7767084","34.8328356"],["-111.776699","34.8328575"],["-111.7766865","34.8328993"],["-111.7766938","34.8329318"],["-111.7767016","34.8329617"],["-111.7766979","34.8330717"],["-111.7766579","34.8332138"],["-111.7765239","34.8336084"],["-111.7764642","34.8338693"],["-111.776452","34.8340921"],["-111.7764604","34.8342856"],["-111.7764961","34.8345025"],["-111.7765405","34.8346952"],["-111.7766228","34.834918"],["-111.7768103","34.8352778"],["-111.7770719","34.8357534"],["-111.7771643","34.8359535"],["-111.7772373","34.8361634"],["-111.7772767","34.8364243"],["-111.7772779","34.8365519"],["-111.7772663","34.8367058"],["-111.7772182","34.8369463"],["-111.7770642","34.8374202"],["-111.7761313","34.8401045"],["-111.776023","34.8404742"],["-111.7759889","34.8406903"],["-111.7759906","34.8409669"],["-111.7760431","34.8413051"],["-111.7760986","34.8416252"],["-111.7761032","34.8418039"],["-111.7760537","34.8420802"],["-111.7759903","34.8422326"],["-111.775883","34.8423883"],["-111.7757429","34.8425247"],["-111.7755897","34.8426343"],["-111.7752325","34.8428311"],["-111.7736575","34.8436472"],["-111.773361","34.8437478"],["-111.7731272","34.8437956"],["-111.7728213","34.843823"],["-111.772172","34.8438069"],["-111.7717121","34.8438013"],["-111.7714739","34.8438007"],["-111.7710709","34.843796"],["-111.7707363","34.84383"],["-111.7703208","34.8439195"],["-111.7697876","34.8441192"],["-111.7690445","34.8443812"],["-111.7681151","34.8446611"],["-111.7678354","34.8447804"],["-111.7675275","34.8449501"],["-111.7673149","34.8451305"],["-111.7671247","34.8453401"],["-111.7669793","34.8455938"],["-111.7668377","34.8459331"],["-111.766626","34.8464982"],["-111.766401","34.8471831"],["-111.7662896","34.8475455"],["-111.7662553","34.8476793"],["-111.7662377","34.8477488"],["-111.7661759","34.8477983"],["-111.7661074","34.84785"],["-111.7660734","34.8478694"],["-111.7660512","34.8478834"],["-111.766029","34.847928"],["-111.7660196","34.8479662"],["-111.7660205","34.8479959"],["-111.7660321","34.8480323"],["-111.7660373","34.848197"],["-111.7659311","34.8484408"],["-111.7657649","34.8487569"],["-111.765563","34.8491049"],["-111.7654211","34.8493589"],["-111.7653403","34.8495611"],["-111.7653012","34.8497896"],["-111.7652972","34.8498613"],["-111.7652937","34.8500291"],["-111.7653338","34.8502535"],["-111.7655368","34.8509977"],["-111.7655645","34.8511966"],["-111.7655578","34.8513294"],["-111.7654729","34.8515898"],["-111.7653968","34.8517127"],["-111.7652475","34.8519026"],["-111.7650447","34.8521252"],["-111.7647042","34.8524872"],["-111.7644658","34.8527472"],["-111.7643493","34.8529343"],["-111.7642891","34.8530535"],["-111.7642603","34.8531681"],["-111.7642427","34.8534066"],["-111.7643","34.8546015"],["-111.7642805","34.8548899"],["-111.7641992","34.8551125"],["-111.7641274","34.8552931"],["-111.7641092","34.8553952"],["-111.7640528","34.8555642"],["-111.7639902","34.8555967"],["-111.763972","34.8556168"],["-111.7639576","34.8556377"],["-111.7639526","34.8557242"],["-111.7639766","34.8557633"],["-111.7640138","34.855796"],["-111.7640233","34.8558713"],["-111.7640231","34.8559757"],["-111.7639673","34.8565342"],["-111.7637973","34.8581741"],["-111.7637591","34.8583539"],["-111.7636638","34.8585592"],["-111.7635703","34.8587019"],["-111.7634733","34.8588236"],["-111.7632817","34.8590133"],["-111.7629471","34.8593137"],["-111.762612","34.8596098"],["-111.762416","34.8598135"],["-111.7622855","34.8599841"],["-111.7621532","34.8601921"],["-111.7620597","34.8603821"],["-111.7618768","34.8608536"],["-111.7616485","34.8614534"],["-111.7616221","34.8616106"],["-111.7616202","34.8617257"],["-111.7615878","34.8618051"],["-111.7615419","34.8618612"],["-111.7614941","34.8619078"],["-111.7614704","34.8619657"],["-111.7614756","34.8620186"],["-111.7615105","34.8620742"],["-111.7615755","34.8621137"],["-111.7616551","34.8621319"],["-111.761765","34.8622093"],["-111.7618248","34.8622629"],["-111.7620361","34.8624597"],["-111.7622696","34.8626068"],["-111.7625508","34.8627083"],["-111.763215","34.862918"],["-111.7634602","34.8630383"],["-111.7636315","34.863166"],["-111.7637199","34.8632731"],["-111.7638359","34.8636164"],["-111.7638736","34.8638354"],["-111.7638293","34.8642298"],["-111.7634094","34.8653647"],["-111.7634032","34.8655211"],["-111.7634215","34.8656191"],["-111.7634265","34.8656584"],["-111.7634279","34.8656797"],["-111.7634278","34.8657004"],["-111.7634267","34.8657242"],["-111.7634152","34.8657977"],["-111.7633953","34.8658872"],["-111.7633924","34.8659374"],["-111.7633559","34.8659804"],["-111.763202","34.8660764"],["-111.7631503","34.8661159"],["-111.7628441","34.8662792"],["-111.7626185","34.8664271"],["-111.7623207","34.8666627"],["-111.7620963","34.8669984"],["-111.7618652","34.8673987"],["-111.7613829","34.8687864"],["-111.7613388","34.8688614"],["-111.7612629","34.8689103"],["-111.7611231","34.8692231"],["-111.7609826","34.8695658"],["-111.7609503","34.8696155"],["-111.7608915","34.86966"],["-111.7608516","34.8696752"],["-111.7608183","34.8696966"],["-111.7607955","34.8697252"],["-111.7607837","34.8697583"],["-111.7607847","34.8697933"],["-111.7607986","34.8698261"],["-111.7608232","34.8698534"],["-111.7608531","34.8698717"],["-111.7608863","34.8698826"],["-111.7609067","34.8698849"],["-111.7609241","34.8698857"],["-111.7609577","34.8698835"],["-111.7609756","34.8699262"],["-111.7610089","34.8699628"],["-111.761097","34.8700917"],["-111.7611191","34.8720126"],["-111.7610968","34.872535"],["-111.7605854","34.87259"],["-111.7600382","34.8725904"],["-111.7591749","34.8725935"],["-111.7590974","34.8726661"],["-111.7590788","34.8727998"],["-111.759092","34.8730045"],["-111.7591152","34.8733021"],["-111.7591211","34.873518"],["-111.7589874","34.8734888"],["-111.7588408","34.8734564"],["-111.7586966","34.8734484"],["-111.7583802","34.8734196"],["-111.7580638","34.8734163"],["-111.7578848","34.8734941"],["-111.7576397","34.8736395"],["-111.7574151","34.8737861"]] } }; const coordinates_1_1 = geojson_1_1.geometry.coordinates; for (const coord of coordinates_1_1) { window.bounds[1].extend(coord); contentMap_1.fitBounds(window.bounds[1], {padding: {top: 60, bottom:60, left: 60, right: 60}}); } contentMap_1.on('load', () => { contentMap_1.addLayer({ id: 'route1_1', type: 'line', source: { type: 'geojson', data: geojson_1_1 }, layout: { 'line-join': 'round', 'line-cap': 'round' }, paint: { 'line-color': '#522A7A', 'line-width': 5, 'line-opacity': 0.80 } }); }); contentMap_1.fitBounds(window.bounds[1], {padding: {top: 60, bottom: 60, left: 60, right: 60}}); initialMapBounds[1] = new mapboxgl.LngLatBounds(window.bounds[1].getSouthWest(), window.bounds[1].getNorthEast()); const visibleMapRoutes_1 = []; contentMaps[1].on('click', (e) => { if (!clickWasOnMarkerOrCard) { resetMarkersAndCards(1); } else { clickWasOnMarkerOrCard = false; } }); const markerConfig = { 'finish': { className: 'marker_finish', size: [58, 58], offset: [0, -29], span: false, best: false, text: false, }, 'start': { className: 'marker_start', size: [58, 58], offset: [0, -29], span: false, best: false, text: false, }, 'star': { className: 'marker_star', size: [58, 58], offset: [0, -29], span: false, best: false, text: false, }, 'numbered': { className: 'mapMarkerNum', size: false, offset: [0, 0], span: true, best: true, text: false, }, 'star-plain': { className: 'mapMarkerNum markerSpanRed', size: false, offset: [0, 0], span: true, best: false, text: '☆', }, }; function addMarkersToMap(mapNum) { Object.values(markerData[mapNum]).forEach((iconData, mapIconNum) => { var el = document.createElement('div'); var mC = markerConfig[iconData.type] || markerConfig.star; el.className = mC.className; if (mC.span) { var t = ''; if (mC.best) { t = iconData.best; } else if (mC.text) { t = mC.text; } el.innerHTML = '
' + t + '
'; } if (mC.width && mC.height) { el.style.width = mC.width + 'px'; el.style.height = mC.height + 'px'; } var marker = new mapboxgl.Marker(el, {offset: mC.offset}) .setLngLat(iconData.lonLat) .addTo(window.contentMaps[mapNum]); marker.markerType = iconData.iconType; iconData.marker = marker; window.bounds[mapNum].extend(iconData.lonLat); if (iconData.onClick) { marker.getElement().addEventListener('click', function() { toggleMapIconClick(mapNum, mapIconNum); }); } }); } addMarkersToMap(1); contentMap_1.fitBounds(window.bounds[1], {padding: {top: 60, bottom:60, left: 60, right: 60}}); } var mapScriptCreated = 0; var mapCssCreated = 0; var mapScriptLoaded = 0; var mapCssLoaded = 0; var mapLoadList = []; function showLazyMap(fname) { if (mapScriptLoaded == 1 && mapCssLoaded == 1) { if (!mapLoadList.includes(fname)) { window[fname](); mapLoadList.push(fname); } } } (function fn() { var pics = document.querySelectorAll('.no-js-hide'); pics.forEach(function(pic) { pic.classList.toggle('no-js-hide'); }); var lazyImages = [].slice.call(document.querySelectorAll(".lazeeload")); if ("IntersectionObserver" in window) { const config = { root: null, rootMargin: '1000px', threshold: 0 }; let lazyImageObserver = new IntersectionObserver(function(entries, observer) { entries.forEach(function(entry) { if (entry.isIntersecting) { let lazyImage = entry.target; if (lazyImage.dataset.src) {lazyImage.src = lazyImage.dataset.src;} if (lazyImage.dataset.srcset) {lazyImage.srcset = lazyImage.dataset.srcset;} if (lazyImage.dataset.map) { const fname = "initMapbox_"+lazyImage.dataset.map; if (mapScriptLoaded == 0) { let script = document.createElement('script'); script.async=true; script.defer=true; script.src = "https://api.mapbox.com/mapbox-gl-js/v3.0.0/mapbox-gl.js"; script.onload = function(){ mapScriptLoaded = 1; showLazyMap(fname); } document.head.appendChild(script); mapScriptCreated = 1; let css = document.createElement('link'); css.rel = "stylesheet"; css.href = "https://api.mapbox.com/mapbox-gl-js/v3.0.0/mapbox-gl.css"; css.onload = function(){ mapCssLoaded = 1; showLazyMap(fname); } document.head.appendChild(css); mapCssCreated = 1; } else { if (typeof window[fname] === 'function') { window[fname](); } showLazyMap(fname); } } lazyImage.classList.remove("no-js-hide"); lazyImage.classList.remove("lazeeload"); lazyImageObserver.unobserve(lazyImage); } }); }, config); lazyImages.forEach(function(lazyImage) { lazyImageObserver.observe(lazyImage); lazyImage.classList.add("lazeeload-activated"); }); } else { let active = false; const lazyLoad = function() { if (active === false) { active = true; setTimeout(function() { lazyImages.forEach(function(lazyImage) { if ((lazyImage.getBoundingClientRect().top <= window.innerHeight+1000 && lazyImage.getBoundingClientRect().bottom >= 0) && getComputedStyle(lazyImage).display !== "none") { if (lazyImage.dataset.src) lazyImage.src = lazyImage.dataset.src; if (lazyImage.dataset.srcset) lazyImage.srcset = lazyImage.dataset.srcset; if (lazyImage.dataset.onload) lazyImage.onload = lazyImage.dataset.onload; lazyImage.classList.remove("lazeeload"); lazyImages = lazyImages.filter(function(image) { return image !== lazyImage; }); if (lazyImages.length === 0) { document.removeEventListener("scroll", lazyLoad); window.removeEventListener("resize", lazyLoad); window.removeEventListener("orientationchange", lazyLoad); } } }); active = false; }, 200); } }; document.addEventListener("scroll", lazyLoad); window.addEventListener("resize", lazyLoad); window.addEventListener("orientationchange", lazyLoad); } var lazyImages = [].slice.call(document.querySelectorAll(".lazeeload")); i=1; lazyImages.forEach(function(lazyImage) { if (!(lazyImage.classList.contains("lazeeload-activated"))) { if (lazyImage.dataset.src) lazyImage.src = lazyImage.dataset.src; if (lazyImage.dataset.srcset) lazyImage.srcset = lazyImage.dataset.srcset; lazyImage.classList.remove("lazeeload"); } }); })();