if (typeof window.contentMaps === 'undefined') { window.contentMaps = {}; window.initialMapBounds = {}; } if (typeof window.markerData === 'undefined') { window.markerData = {}; } if (!markerData[1]) { markerData[1] = {}; } function initMapbox_1(){ mapboxgl.accessToken = 'pk.eyJ1IjoibGF6eXRyaXBzIiwiYSI6ImNsaTJ4anh2MTA5NDYzZW85ODJmMm45ZzcifQ.9u5pN47V7SsoFwF6_Pw5bQ'; const contentMap_1 = new mapboxgl.Map({ container: 'contentMap_1', style: 'mapbox://styles/mapbox/streets-v11', center: [-115.53300924538716, 33.361043959150244], zoom: 5, cooperativeGestures: true }); window.contentMaps[1] = contentMap_1; var bounds_1 = new mapboxgl.LngLatBounds(); if (typeof markerData[1][0] === 'undefined') { markerData[1][0] = {}; } markerData[1][0]['lonLat'] = [ -117.16624696904465, 32.71579409218823]; markerData[1][0]['geoson'] = { 'type': 'FeatureCollection', 'features': [{ 'type': 'Feature', 'geometry': { 'type': 'Point', 'coordinates': markerData[1][0]['lonLat'] }, 'properties': { 'title': 'start', 'description': 'start point' } }] }; for (const feature of markerData[1][0]['geoson'].features) { const el = document.createElement('div'); el.className = 'marker_start'; el.style.width = '58px'; el.style.height = '58px'; const marker = new mapboxgl.Marker(el, {offset: [0,-29]}) .setLngLat(feature.geometry.coordinates) .addTo(contentMap_1); marker.markerType = 'start'; markerData[1][0]['marker'] = marker; bounds_1.extend(markerData[1][0]['lonLat']); } markerData[1][0]['popup'] = false; markerData[1][0]['route'] = false; markerData[1][0]['card'] = false; if (typeof markerData[1][1] === 'undefined') { markerData[1][1] = {}; } markerData[1][1]['lonLat'] = [ -112.07449032593465, 33.448190610486556]; markerData[1][1]['geoson'] = { 'type': 'FeatureCollection', 'features': [{ 'type': 'Feature', 'geometry': { 'type': 'Point', 'coordinates': markerData[1][1]['lonLat'] }, 'properties': { 'title': 'finish', 'description': 'finish point' } }] }; for (const feature of markerData[1][1]['geoson'].features) { const el = document.createElement('div'); el.className = 'marker_finish'; el.style.width = '58px'; el.style.height = '58px'; const marker = new mapboxgl.Marker(el, {offset: [0,-29]}) .setLngLat(feature.geometry.coordinates) .addTo(contentMap_1); marker.markerType = 'finish'; markerData[1][1]['marker'] = marker; bounds_1.extend(markerData[1][1]['lonLat']); } markerData[1][1]['popup'] = false; markerData[1][1]['route'] = false; markerData[1][1]['card'] = false; if (typeof markerData[1][2] === 'undefined') { markerData[1][2] = {}; } markerData[1][2]['lonLat'] = [ -114.61988740379012, 32.71051944059195]; markerData[1][2]['geoson'] = { 'type': 'FeatureCollection', 'features': [{ 'type': 'Feature', 'geometry': { 'type': 'Point', 'coordinates': markerData[1][2]['lonLat'] }, 'properties': { 'title': 'star', 'description': 'star point' } }] }; for (const feature of markerData[1][2]['geoson'].features) { const el = document.createElement('div'); el.className = 'marker_star'; el.style.width = '58px'; el.style.height = '58px'; const marker = new mapboxgl.Marker(el, {offset: [0,-29]}) .setLngLat(feature.geometry.coordinates) .addTo(contentMap_1); marker.markerType = 'star'; markerData[1][2]['marker'] = marker; bounds_1.extend(markerData[1][2]['lonLat']); } var markerConfigJson = JSON.parse('{"finish":{"className":"marker_finish","size":[58,58],"offset":[0,-29],"span":false,"best":false,"text":false},"start":{"className":"marker_start","size":[58,58],"offset":[0,-29],"span":false,"best":false,"text":false},"star":{"className":"marker_star","size":[58,58],"offset":[0,-29],"span":false,"best":false,"text":false},"numbered":{"className":"mapMarkerNum","size":false,"offset":[0,0],"span":true,"best":true,"text":false},"star-plain":{"className":"mapMarkerNum markerSpanRed","size":false,"offset":[0,0],"span":true,"best":false,"text":"\u2606"}}'); function getNewLngLat(map, originalLngLat, offsets) { var pixel = map.project(new mapboxgl.LngLat(originalLngLat[0], originalLngLat[1])); pixel.x += offsets.x; pixel.y += offsets.y; return map.unproject(pixel); } Object.keys(contentMaps).forEach(function(mapNum) { contentMaps[mapNum].on('zoom', function() { Object.keys(markerData[mapNum]).forEach(function(iconNum) { var marker = markerData[mapNum][iconNum]; if (!isMobileDevice() && marker.cardInstance) { var offsets = { x: marker.cardOffsetX, y: marker.cardOffsetY }; var newLngLat = getNewLngLat(contentMaps[mapNum], marker.lonLat, offsets); marker.cardInstance.setLngLat([newLngLat.lng, newLngLat.lat]); } }); }); }); window.toggleMapIconClick = function(mapNum, iconNum) { clickWasOnMarkerOrCard = true; for (const [key, icon] of Object.entries(markerData[mapNum])) { if (parseInt(key) === iconNum) continue; if (icon['popupInstance']) { icon['popupInstance'].remove(); delete icon['popupInstance']; } if (icon['route'] === true && contentMaps[mapNum].getLayer('iconRoute_'+mapNum+'_'+key)) { contentMaps[mapNum].removeLayer('iconRoute_'+mapNum+'_'+key); contentMaps[mapNum].removeSource('iconRoute_'+mapNum+'_'+key); } if(icon['marker']) { icon['marker'].getElement().classList.remove('markerSpanSelect'); } if(icon['marker'] && icon['marker'].getElement().style.display === 'none') { icon['marker'].getElement().style.display = 'block'; } if (icon['cardInstance']) { icon['cardInstance'].remove(); delete icon['cardInstance']; } if (icon['cardOverlay']) { var overlayToRemove = icon['cardOverlay']; if (overlayToRemove && overlayToRemove.parentNode) { overlayToRemove.parentNode.removeChild(overlayToRemove); delete icon['cardOverlay']; } } icon['clicked'] = false; } if (markerData[mapNum][iconNum]['clicked'] === false) { markerData[mapNum][iconNum]['marker'].getElement().classList.add('markerSpanSelect'); if (markerData[mapNum][iconNum]['popup'] === true) { const popupTitle = markerData[mapNum][iconNum]['popupTitle']; const popupText = markerData[mapNum][iconNum]['popupText']; let popupHTML = '
'; if (popupTitle) {popupHTML += '

' + popupTitle + '

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

' + popupText + '

';} popupHTML += '
'; var popup = new mapboxgl.Popup({ anchor: 'bottom', closeButton: false, closeOnClick: false, className: 'pointer' }) .setLngLat(markerData[mapNum][iconNum]['lonLat']) .setHTML(popupHTML) .addTo(contentMaps[mapNum]); markerData[mapNum][iconNum]['popupInstance'] = popup; popup._content.addEventListener('click', function() { toggleMapIconClick(mapNum, iconNum); }); markerData[mapNum][iconNum]['marker'].getElement().style.display = 'none'; } if (markerData[mapNum][iconNum]['route'] === true) { markerData[mapNum][iconNum]['routeGeoson'] = { type: 'Feature', properties: {}, geometry: { type: 'LineString', coordinates: markerData[mapNum][iconNum]['routeJson'] } }; contentMaps[mapNum].addLayer({ id: 'iconRoute_'+mapNum+'_'+iconNum, type: 'line', source: { type: 'geojson', data: markerData[mapNum][iconNum]['routeGeoson'] }, layout: { 'line-join': 'round', 'line-cap': 'round' }, paint: { 'line-color': ''+markerData[mapNum][iconNum]['routeColor'], 'line-width': 5, 'line-opacity': 0.8 } }); } if (markerData[mapNum][iconNum]['card']) { var cardContent = { cardTitle: markerData[mapNum][iconNum]['cardTitle'], cardDistanceTime: markerData[mapNum][iconNum]['cardDistanceTime'], cardPhotoCode: markerData[mapNum][iconNum]['cardPhotoCode'], }; if (markerData[mapNum][iconNum].hasOwnProperty('cardLink')) { cardContent.cardLink = markerData[mapNum][iconNum]['cardLink']; } if (markerData[mapNum][iconNum].hasOwnProperty('cardLinkText')) { cardContent.cardLinkText = markerData[mapNum][iconNum]['cardLinkText']; } if (!isMobileDevice()) { var cardContentHtml = createCardContentHtml(cardContent,false); var offsets = { x: markerData[mapNum][iconNum].cardOffsetX, y: markerData[mapNum][iconNum].cardOffsetY }; var newLngLat = getNewLngLat(contentMaps[mapNum], markerData[mapNum][iconNum]['lonLat'], offsets); var cardPopup = new mapboxgl.Popup({ anchor: 'bottom', closeButton: false, closeOnClick: false, className: 'pointer mapPopupCard' }) .setHTML(cardContentHtml) .setLngLat([newLngLat.lng, newLngLat.lat]) .addTo(contentMaps[mapNum]); markerData[mapNum][iconNum]['cardInstance'] = cardPopup; } else { var cardMobile = document.createElement('div'); cardMobile.className = 'mapPopupCardMobile'; cardMobile.innerHTML = createCardContentHtml(cardContent,true); var mapContainer = contentMaps[mapNum].getContainer(); mapContainer.appendChild(cardMobile); markerData[mapNum][iconNum]['cardOverlay'] = cardMobile; } } markerData[mapNum][iconNum]['clicked'] = true; updateMapBounds(mapNum, iconNum); } else { resetMarkersAndCards(mapNum); } } let clickWasOnMarkerOrCard = false; function resetMarkersAndCards(mapNum) { Object.keys(markerData[mapNum]).forEach((iconNum) => { if (markerData[mapNum][iconNum]['marker']) { markerData[mapNum][iconNum]['marker'].getElement().classList.remove('markerSpanSelect'); } if (markerData[mapNum][iconNum]['popupInstance']) { markerData[mapNum][iconNum]['popupInstance'].remove(); delete markerData[mapNum][iconNum]['popupInstance']; } if (markerData[mapNum][iconNum]['route'] === true) { if (contentMaps[mapNum].getLayer('iconRoute_'+mapNum+'_'+iconNum)) { contentMaps[mapNum].removeLayer('iconRoute_'+mapNum+'_'+iconNum); contentMaps[mapNum].removeSource('iconRoute_'+mapNum+'_'+iconNum); } } if (markerData[mapNum][iconNum]['card']) { if (markerData[mapNum][iconNum]['cardInstance']) { markerData[mapNum][iconNum]['cardInstance'].remove(); delete markerData[mapNum][iconNum]['cardInstance']; } } if (markerData[mapNum][iconNum]['cardOverlay']) { var overlayToRemove = markerData[mapNum][iconNum]['cardOverlay']; if (overlayToRemove && overlayToRemove.parentNode) { overlayToRemove.parentNode.removeChild(overlayToRemove); delete markerData[mapNum][iconNum]['cardOverlay']; } } markerData[mapNum][iconNum]['marker'].getElement().style.display = 'block'; markerData[mapNum][iconNum]['clicked'] = false; updateMapBounds(mapNum, iconNum); }); } function createCardContentHtml(cardContent,isMobile) { let htmlContent = '
'; if (cardContent.cardPhotoCode) { htmlContent += '
' + cardContent.cardPhotoCode + '
'; } if (cardContent.cardTitle || cardContent.cardDistanceTime || cardContent.cardLink) { htmlContent += '
'; if (cardContent.cardTitle) { htmlContent += '
' + cardContent.cardTitle + '
'; } if (cardContent.cardDistanceTime) { if (isMobile) { const parts = cardContent.cardDistanceTime.split('⏱️'); htmlContent += '
' + parts[0].trim() + '
⏱️ ' + parts[1].trim() + '
'; } else { htmlContent += '
' + cardContent.cardDistanceTime + '
'; } } if (cardContent.cardLink) { var linkText = cardContent.cardLinkText || 'See full details'; htmlContent += '' + linkText + ''; } htmlContent += '
'; } htmlContent += '
'; return htmlContent; } function isMobileDevice() { return window.innerWidth <= 768 || window.innerHeight <= 600; } function updateMapBounds(mapNum, iconNum) { const oldBounds = contentMaps[mapNum].getBounds(); const newBounds = contentMaps[mapNum].getBounds(); const mapDimensions = contentMaps[mapNum].getContainer().getBoundingClientRect(); const clickedMarker = markerData[mapNum][iconNum]; const clickedMarkerLonLat = clickedMarker['lonLat']; const clickedMarkerRouteJson = clickedMarker['routeJson']; const lngDiff = oldBounds.getNorthEast().lng - oldBounds.getSouthWest().lng; const latDiff = oldBounds.getNorthEast().lat - oldBounds.getSouthWest().lat; const lngPerPx = lngDiff / mapDimensions.width; const latPerPx = latDiff / mapDimensions.height; if (clickedMarker['popup'] && clickedMarker['clicked']) { const pixelCoordinates = contentMaps[mapNum].project(clickedMarkerLonLat); const tooCloseX = 100; const tooCloseT = 80; const tooCloseB = 10; const extendAmountXPixels = 120; const extendAmountTPixels = 120; const extendAmountBPixels = 20; const extendNWSE = [0,0,0,0]; if (pixelCoordinates.x < tooCloseX) { extendNWSE[3] = extendAmountXPixels- pixelCoordinates.x; } else if (pixelCoordinates.x > mapDimensions.width - tooCloseX) { extendNWSE[1] = extendAmountXPixels - (mapDimensions.width - pixelCoordinates.x); } if (pixelCoordinates.y < tooCloseT) { extendNWSE[0] = extendAmountTPixels- pixelCoordinates.y; } else if (pixelCoordinates.y > mapDimensions.height - tooCloseB) { extendNWSE[2] = extendAmountBPixels- (mapDimensions.height - pixelCoordinates.y); } for (let i = 0; i < extendNWSE.length; i++) { if (extendNWSE[i] > 0) { switch (i) { case 0: const extendNorthLat = extendNWSE[i] * latPerPx; newBounds.extend(new mapboxgl.LngLat(clickedMarkerLonLat[0], oldBounds.getNorthEast().lat + extendNorthLat)); break; case 1: const extendEastLng = extendNWSE[i] * lngPerPx; newBounds.extend(new mapboxgl.LngLat(oldBounds.getNorthEast().lng + extendEastLng, clickedMarkerLonLat[1])); break; case 2: const extendSouthLat = extendNWSE[i] * latPerPx; newBounds.extend(new mapboxgl.LngLat(clickedMarkerLonLat[0], oldBounds.getSouthWest().lat - extendSouthLat)); break; case 3: const extendWestLng = extendNWSE[i] * lngPerPx; newBounds.extend(new mapboxgl.LngLat(oldBounds.getSouthWest().lng - extendWestLng, clickedMarkerLonLat[1])); break; } } } if (Math.abs(newBounds.getSouthWest().lng - oldBounds.getSouthWest().lng) > 1e-6 || Math.abs(newBounds.getSouthWest().lat - oldBounds.getSouthWest().lat) > 1e-6 || Math.abs(newBounds.getNorthEast().lng - oldBounds.getNorthEast().lng) > 1e-6 || Math.abs(newBounds.getNorthEast().lat - oldBounds.getNorthEast().lat) > 1e-6) { contentMaps[mapNum].fitBounds(newBounds, { padding: 0, duration: 600, easing: (t) => t * (2 - t) }); } } if (clickedMarker['route'] && clickedMarker['routeJson'] && clickedMarker['clicked']) { const paddingRoutePixels = 20; let extendWest = false, extendEast = false, extendNorth = false, extendSouth = false; clickedMarker['routeJson'].forEach(coord => { if (coord[0] < newBounds.getWest()) extendWest = true; if (coord[0] > newBounds.getEast()) extendEast = true; if (coord[1] > newBounds.getNorth()) extendNorth = true; if (coord[1] < newBounds.getSouth()) extendSouth = true; newBounds.extend(new mapboxgl.LngLat(coord[0], coord[1])); }); const mapContainer = contentMaps[mapNum].getContainer(); const lngDegreesPerPixel = (newBounds.getEast() - newBounds.getWest()) / mapContainer.offsetWidth; const latDegreesPerPixel = (newBounds.getNorth() - newBounds.getSouth()) / mapContainer.offsetHeight; const westBound = extendWest ? newBounds.getWest() - paddingRoutePixels * lngDegreesPerPixel : newBounds.getWest(); const eastBound = extendEast ? newBounds.getEast() + paddingRoutePixels * lngDegreesPerPixel : newBounds.getEast(); const northBound = extendNorth ? newBounds.getNorth() + paddingRoutePixels * latDegreesPerPixel : newBounds.getNorth(); const southBound = extendSouth ? newBounds.getSouth() - paddingRoutePixels * latDegreesPerPixel : newBounds.getSouth(); const paddedBounds = new mapboxgl.LngLatBounds( new mapboxgl.LngLat(westBound, southBound), new mapboxgl.LngLat(eastBound, northBound) ); contentMaps[mapNum].fitBounds(paddedBounds, { padding: 0, duration: 600, easing: (t) => t * (2 - t) }); } if (!isMobileDevice() && markerData[mapNum][iconNum]['card'] && markerData[mapNum][iconNum]['clicked']) { const cardWidth = 300; const cardHeight = 360; const cardPadding = 100; const pixelCoordinates = contentMaps[mapNum].project(clickedMarkerLonLat); const offsetX = markerData[mapNum][iconNum]['cardOffsetX']; const offsetY = markerData[mapNum][iconNum]['cardOffsetY']; const markerPixel = contentMaps[mapNum].project(clickedMarkerLonLat); const topLeftPixel = { x: markerPixel.x + offsetX - cardWidth/2 - cardPadding, y: markerPixel.y + offsetY - cardHeight - cardPadding }; const topRightPixel = { x: topLeftPixel.x + cardWidth + (2 * cardPadding), y: topLeftPixel.y }; const bottomLeftPixel = { x: topLeftPixel.x, y: topLeftPixel.y + cardHeight + (2 * cardPadding) }; const bottomRightPixel = { x: topRightPixel.x, y: bottomLeftPixel.y }; [topLeftPixel, topRightPixel, bottomLeftPixel, bottomRightPixel].forEach(pixel => { const lngLat = contentMaps[mapNum].unproject(pixel); newBounds.extend(lngLat); }); contentMaps[mapNum].fitBounds(newBounds, { padding: 0, duration: 600, easing: (t) => t * (2 - t) }); } } markerData[1][2]['clicked'] = false; markerData[1][2]['marker'].getElement().addEventListener('click', function() { toggleMapIconClick(1, 2); }); markerData[1][2]['popup'] = true; markerData[1][2]['popupTitle'] = `The Direct Route`; markerData[1][2]['popupText'] = `355 miles (5 hours 30 minutes*)`; markerData[1][2]['route'] = false; markerData[1][2]['card'] = false; if (typeof markerData[1][3] === 'undefined') { markerData[1][3] = {}; } markerData[1][3]['lonLat'] = [ -115.98603338712579, 33.68895257847088]; markerData[1][3]['geoson'] = { 'type': 'FeatureCollection', 'features': [{ 'type': 'Feature', 'geometry': { 'type': 'Point', 'coordinates': markerData[1][3]['lonLat'] }, 'properties': { 'title': 'star', 'description': 'star point' } }] }; for (const feature of markerData[1][3]['geoson'].features) { const el = document.createElement('div'); el.className = 'marker_star'; el.style.width = '58px'; el.style.height = '58px'; const marker = new mapboxgl.Marker(el, {offset: [0,-29]}) .setLngLat(feature.geometry.coordinates) .addTo(contentMap_1); marker.markerType = 'star'; markerData[1][3]['marker'] = marker; bounds_1.extend(markerData[1][3]['lonLat']); } markerData[1][3]['clicked'] = false; markerData[1][3]['marker'].getElement().addEventListener('click', function() { toggleMapIconClick(1, 3); }); markerData[1][3]['popup'] = true; markerData[1][3]['popupTitle'] = `The Joshua Tree Route`; markerData[1][3]['popupText'] = `420 miles (6 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.1610911","32.7156904"],["-117.1610838","32.7155913"],["-117.1610792","32.7154563"],["-117.1610463","32.7125702"],["-117.1565086","32.712582"],["-117.1537985","32.7126074"],["-117.1537465","32.7126076"],["-117.1485534","32.7126327"],["-117.1480812","32.712707"],["-117.1470506","32.7128934"],["-117.1463302","32.7129878"],["-117.1459464","32.7130084"],["-117.1329897","32.7131391"],["-117.1323978","32.7131868"],["-117.1317553","32.7132577"],["-117.1311549","32.713333"],["-117.1305577","32.7134077"],["-117.1298423","32.7135279"],["-117.1289568","32.7137202"],["-117.1282826","32.7138853"],["-117.1273171","32.7141817"],["-117.1261875","32.7145572"],["-117.1245806","32.7150614"],["-117.1236041","32.7153705"],["-117.1229241","32.7155188"],["-117.1215005","32.7157805"],["-117.1167264","32.7165658"],["-117.1159404","32.7167309"],["-117.1148676","32.7170126"],["-117.1137986","32.7173627"],["-117.1128387","32.7176762"],["-117.1120155","32.7179353"],["-117.1117152","32.7179961"],["-117.1114044","32.7180449"],["-117.1110197","32.7180847"],["-117.1106253","32.7181088"],["-117.1081965","32.7180927"],["-117.107792","32.7181004"],["-117.107438","32.7181253"],["-117.107118","32.7181602"],["-117.1067971","32.7182109"],["-117.1050812","32.7185651"],["-117.1038374","32.7188147"],["-117.1030555","32.7189199"],["-117.1025275","32.7189671"],["-117.1010443","32.7189957"],["-117.0986993","32.7190027"],["-117.0975092","32.7189846"],["-117.0969647","32.7189783"],["-117.0964496","32.7189748"],["-117.0961513","32.7189567"],["-117.0958977","32.7189246"],["-117.0956374","32.7188808"],["-117.0951829","32.7187622"],["-117.0943779","32.7184768"],["-117.0931635","32.7180524"],["-117.0928586","32.7179592"],["-117.0924562","32.717884"],["-117.0916893","32.7177878"],["-117.0864591","32.7177191"],["-117.0856827","32.717769"],["-117.0852612","32.717815"],["-117.0849304","32.7178794"],["-117.0843959","32.7180297"],["-117.083991","32.7181589"],["-117.0835178","32.7183308"],["-117.0825295","32.718882"],["-117.0805292","32.720374"],["-117.0736185","32.7254924"],["-117.0731111","32.7258631"],["-117.072699","32.7261771"],["-117.0722016","32.7265385"],["-117.0719474","32.7267173"],["-117.0713082","32.7271007"],["-117.0708995","32.7272872"],["-117.0689636","32.7279814"],["-117.0682039","32.7282607"],["-117.0653122","32.7293047"],["-117.064574","32.7296273"],["-117.0638066","32.7300026"],["-117.0632689","32.7302847"],["-117.0623695","32.7308718"],["-117.0613884","32.731538"],["-117.0599578","32.7325379"],["-117.0589014","32.7334197"],["-117.0571026","32.7353221"],["-117.0536194","32.7391543"],["-117.0527898","32.7400012"],["-117.0522331","32.740456"],["-117.049608","32.7425123"],["-117.0477667","32.7438871"],["-117.0473108","32.7441564"],["-117.0468599","32.7443647"],["-117.0464898","32.7444928"],["-117.0461647","32.7445876"],["-117.0455838","32.7447108"],["-117.0449716","32.7447636"],["-117.0391632","32.7447276"],["-117.0383955","32.7447545"],["-117.0375591","32.7448055"],["-117.0363588","32.7449656"],["-117.0353969","32.7451399"],["-117.0346854","32.7452893"],["-117.0297226","32.7466425"],["-117.0290751","32.746787"],["-117.0280276","32.7469396"],["-117.0273323","32.7470096"],["-117.0268188","32.7470372"],["-117.0262297","32.7470069"],["-117.0254381","32.7469439"],["-117.0226351","32.74672"],["-117.0220307","32.7467174"],["-117.0214867","32.7467557"],["-117.0208938","32.7468322"],["-117.0203334","32.7469364"],["-117.0197606","32.7470983"],["-117.0192799","32.7472632"],["-117.0187868","32.7474602"],["-117.0182382","32.7477789"],["-117.0175756","32.7482552"],["-117.0141307","32.7510299"],["-117.0068347","32.7574418"],["-117.0057041","32.7583703"],["-117.0044549","32.759327"],["-117.0039711","32.7597234"],["-117.0036505","32.7600204"],["-117.0032296","32.7604959"],["-117.0028354","32.7610361"],["-117.0025364","32.7615831"],["-117.0023059","32.7620889"],["-117.002186","32.7624632"],["-117.0020437","32.7630333"],["-117.0019439","32.7636065"],["-117.0019232","32.7639265"],["-117.0019852","32.765414"],["-117.002051","32.7665042"],["-117.0020613","32.7669512"],["-117.0020367","32.7673493"],["-117.0019773","32.7679831"],["-117.0019174","32.7686443"],["-117.0018087","32.7697369"],["-117.0017553","32.7705875"],["-117.0017454","32.7711379"],["-117.0017723","32.7716643"],["-117.0019768","32.7728976"],["-117.0019835","32.7731728"],["-117.002171","32.7738884"],["-117.0024146","32.7749089"],["-117.0025551","32.775582"],["-117.0025881","32.7760424"],["-117.0025358","32.7764827"],["-117.0024432","32.7769299"],["-117.0022733","32.7773202"],["-117.0021041","32.7775938"],["-117.0019304","32.7778141"],["-117.0016636","32.778084"],["-117.0013047","32.7783434"],["-117.0008844","32.7785659"],["-117.0006086","32.7787009"],["-117.0003707","32.7787982"],["-117.000125","32.7788863"],["-116.9998306","32.7789673"],["-116.999494","32.7790397"],["-116.9989118","32.7791085"],["-116.9977526","32.7792111"],["-116.9966311","32.7791734"],["-116.9947996","32.7790866"],["-116.9866013","32.7788607"],["-116.9858685","32.7788779"],["-116.9855827","32.7789233"],["-116.9852876","32.778976"],["-116.985015","32.7790384"],["-116.9847176","32.7791184"],["-116.9843589","32.7792365"],["-116.983721","32.7795462"],["-116.9832344","32.779824"],["-116.9826705","32.7802626"],["-116.9824789","32.780441"],["-116.9823011","32.7806306"],["-116.9820873","32.7808827"],["-116.9818649","32.7811906"],["-116.9816483","32.7815495"],["-116.9804456","32.7836877"],["-116.9801683","32.7841546"],["-116.9799657","32.7844604"],["-116.9797265","32.7847908"],["-116.9794122","32.7851946"],["-116.9789308","32.7857955"],["-116.9784837","32.7863877"],["-116.9781966","32.7869049"],["-116.9779689","32.787389"],["-116.977841","32.7877833"],["-116.9776874","32.7885539"],["-116.9776656","32.7893412"],["-116.9776617","32.7912537"],["-116.9776244","32.7916684"],["-116.9775382","32.7923289"],["-116.9767323","32.7973763"],["-116.976658","32.7977332"],["-116.9765404","32.7981543"],["-116.9762947","32.7987668"],["-116.9760756","32.7992275"],["-116.9758367","32.799609"],["-116.9755273","32.8000269"],["-116.9751854","32.80041"],["-116.97477","32.8008484"],["-116.9742541","32.8012825"],["-116.9737685","32.8016107"],["-116.9733664","32.8018571"],["-116.9728375","32.8021276"],["-116.9722365","32.8024037"],["-116.9717404","32.8025619"],["-116.9712029","32.8027212"],["-116.9708306","32.8028065"],["-116.9702729","32.8028704"],["-116.9694208","32.8029284"],["-116.9674064","32.802953"],["-116.9286823","32.8029691"],["-116.9273117","32.8029912"],["-116.9267371","32.8030495"],["-116.926186","32.8031291"],["-116.9258218","32.8031986"],["-116.9252805","32.8033256"],["-116.9250214","32.8033991"],["-116.9247167","32.8034968"],["-116.9243671","32.8036169"],["-116.9239935","32.8037622"],["-116.923623","32.8039259"],["-116.9232533","32.8041009"],["-116.9229124","32.8042935"],["-116.9225841","32.8044885"],["-116.9222744","32.8046896"],["-116.9219553","32.8049078"],["-116.9213633","32.8053907"],["-116.9210726","32.8056614"],["-116.9208042","32.8059414"],["-116.9205677","32.8062056"],["-116.9203296","32.806504"],["-116.9199392","32.8070468"],["-116.9196364","32.807518"],["-116.9192528","32.8081446"],["-116.9175235","32.8109746"],["-116.9164613","32.8126925"],["-116.9161739","32.8131107"],["-116.9158843","32.8134706"],["-116.9155034","32.8139058"],["-116.9148127","32.8145752"],["-116.9135716","32.8157557"],["-116.9122295","32.8170362"],["-116.911608","32.8176654"],["-116.9112908","32.8180312"],["-116.9109811","32.8184219"],["-116.9106305","32.8189588"],["-116.9098337","32.8204319"],["-116.9094041","32.8211624"],["-116.9090614","32.8216701"],["-116.908645","32.8222182"],["-116.9084415","32.8224473"],["-116.9080559","32.8228318"],["-116.9075352","32.8232928"],["-116.9068517","32.8238162"],["-116.9055853","32.8247341"],["-116.8986182","32.8299895"],["-116.8970708","32.8312239"],["-116.8954404","32.8326848"],["-116.8854165","32.8422116"],["-116.8841819","32.8431952"],["-116.8835844","32.8435789"],["-116.883001","32.8438863"],["-116.8824843","32.8441136"],["-116.8818766","32.8443349"],["-116.8812951","32.8445006"],["-116.8776707","32.8453001"],["-116.8771677","32.8454465"],["-116.8763482","32.8457293"],["-116.8756493","32.8460378"],["-116.8750392","32.846362"],["-116.8744725","32.8467292"],["-116.8740096","32.847059"],["-116.8732223","32.8477523"],["-116.8709806","32.8498997"],["-116.869995","32.8508015"],["-116.8693902","32.851238"],["-116.8687594","32.8516291"],["-116.8681178","32.8519667"],["-116.8669449","32.8524143"],["-116.864053","32.8533302"],["-116.8623561","32.8538344"],["-116.8613653","32.8539984"],["-116.8604996","32.8540715"],["-116.8596128","32.8540875"],["-116.8584765","32.8540063"],["-116.8516874","32.8531836"],["-116.8500677","32.8529931"],["-116.8491673","32.8529029"],["-116.8483081","32.852839"],["-116.8473917","32.8528049"],["-116.846363","32.8528054"],["-116.8452133","32.8528336"],["-116.8435003","32.8529482"],["-116.8413726","32.8531564"],["-116.8397183","32.8533969"],["-116.8390998","32.8535334"],["-116.8385055","32.8536963"],["-116.8373064","32.8541395"],["-116.8350121","32.8550361"],["-116.8336173","32.8555356"],["-116.8320393","32.8559778"],["-116.8313351","32.8561141"],["-116.8305834","32.8562354"],["-116.829883","32.8563302"],["-116.8281455","32.8564348"],["-116.8180167","32.8568495"],["-116.8177859","32.8568505"],["-116.8175493","32.8568448"],["-116.8173178","32.856834"],["-116.8170513","32.8568139"],["-116.8167711","32.8567844"],["-116.8165425","32.8567541"],["-116.8163247","32.8567183"],["-116.8160749","32.8566683"],["-116.8152763","32.8564532"],["-116.8148197","32.8562962"],["-116.814277","32.8560774"],["-116.8136172","32.8557431"],["-116.8130908","32.8554018"],["-116.8127138","32.8551516"],["-116.8123844","32.8549072"],["-116.8121118","32.8546771"],["-116.8116244","32.8541833"],["-116.8110721","32.8534536"],["-116.8085285","32.8499079"],["-116.8081622","32.8494643"],["-116.8078583","32.8491493"],["-116.8074379","32.848777"],["-116.806638","32.8481179"],["-116.8065412","32.8480413"],["-116.8064282","32.8479578"],["-116.8053324","32.8471586"],["-116.8033927","32.8457209"],["-116.8025813","32.8451503"],["-116.8019705","32.8447876"],["-116.8012819","32.844419"],["-116.8005183","32.8440967"],["-116.7909833","32.8406836"],["-116.7878621","32.839595"],["-116.7872995","32.8394527"],["-116.7867786","32.8393454"],["-116.7862912","32.8392732"],["-116.7856778","32.8392047"],["-116.7850772","32.8391596"],["-116.7845047","32.8391541"],["-116.7840565","32.83917"],["-116.7835367","32.839206"],["-116.7830769","32.8392504"],["-116.7778562","32.8401109"],["-116.7771989","32.8401927"],["-116.7767497","32.8402171"],["-116.7762917","32.8402127"],["-116.7759855","32.8401926"],["-116.7756473","32.8401578"],["-116.7751349","32.8400788"],["-116.7722136","32.8396318"],["-116.7628698","32.838201"],["-116.7607641","32.8378172"],["-116.7506358","32.8349988"],["-116.7497779","32.8348083"],["-116.7488736","32.8346395"],["-116.747932","32.8345223"],["-116.7469866","32.8344391"],["-116.7459226","32.8344123"],["-116.7449669","32.8344301"],["-116.7433389","32.8345465"],["-116.7415764","32.8346773"],["-116.7405066","32.8347502"],["-116.7400086","32.8347675"],["-116.7396393","32.8347713"],["-116.7389637","32.834746"],["-116.7385582","32.8347163"],["-116.7381841","32.8346809"],["-116.7374997","32.8345908"],["-116.7335774","32.8339719"],["-116.7322175","32.8337587"],["-116.731754","32.8337028"],["-116.7313277","32.8336679"],["-116.7308114","32.8336483"],["-116.7303123","32.8336376"],["-116.7298102","32.8336435"],["-116.7292626","32.8336665"],["-116.7275891","32.8337702"],["-116.7268896","32.8338038"],["-116.7263666","32.8338047"],["-116.7256499","32.8337661"],["-116.7230422","32.8335051"],["-116.7222921","32.8334757"],["-116.7217551","32.8334942"],["-116.7211428","32.8335398"],["-116.7206094","32.8336402"],["-116.7201216","32.8337444"],["-116.7197001","32.8338624"],["-116.7192256","32.8340299"],["-116.7185541","32.8343659"],["-116.7177199","32.8348359"],["-116.7170671","32.835209"],["-116.716445","32.8355437"],["-116.7158122","32.8358345"],["-116.7153034","32.8360375"],["-116.7148179","32.8362062"],["-116.7141791","32.8363924"],["-116.7109142","32.8370162"],["-116.7061737","32.8378911"],["-116.7025254","32.83848"],["-116.7020871","32.83851"],["-116.7013375","32.8385412"],["-116.6896461","32.8385849"],["-116.6861076","32.8385767"],["-116.6853867","32.8385389"],["-116.6818359","32.8381355"],["-116.6769491","32.8375623"],["-116.6759816","32.8375003"],["-116.6750546","32.8374778"],["-116.6733268","32.8376669"],["-116.6698724","32.8381591"],["-116.6690226","32.8382004"],["-116.6681813","32.8382275"],["-116.6666395","32.8381802"],["-116.666007","32.8381226"],["-116.6652356","32.8380213"],["-116.6640563","32.8378009"],["-116.662217","32.8374374"],["-116.6612593","32.8373369"],["-116.6606114","32.8373119"],["-116.6600797","32.8373138"],["-116.6594955","32.837338"],["-116.6587102","32.8374108"],["-116.6547596","32.8380061"],["-116.6533656","32.8381764"],["-116.6524632","32.8382054"],["-116.6516311","32.8381837"],["-116.6508659","32.838133"],["-116.6501598","32.8380631"],["-116.6487684","32.8377827"],["-116.6398907","32.8357939"],["-116.6391422","32.8355868"],["-116.6384684","32.8353826"],["-116.633729","32.8337629"],["-116.6318912","32.8331029"],["-116.6311655","32.832738"],["-116.6306696","32.8324614"],["-116.6301568","32.8321191"],["-116.6295293","32.8316686"],["-116.6289518","32.8311305"],["-116.6285453","32.8307325"],["-116.6282281","32.830397"],["-116.6278493","32.8299364"],["-116.6267666","32.8284796"],["-116.6261948","32.8277619"],["-116.6252953","32.8267536"],["-116.6249111","32.8263933"],["-116.6241845","32.8257776"],["-116.6235177","32.8253034"],["-116.6228544","32.8248764"],["-116.6223979","32.8246132"],["-116.6218941","32.824352"],["-116.6212566","32.8240537"],["-116.6205994","32.8237785"],["-116.619971","32.82355"],["-116.6192925","32.8233583"],["-116.6174819","32.8230373"],["-116.6168508","32.822952"],["-116.615968","32.8229394"],["-116.6150155","32.8229454"],["-116.6143037","32.8230025"],["-116.6133242","32.8231233"],["-116.6113197","32.8234323"],["-116.6100703","32.8235946"],["-116.6091501","32.8236863"],["-116.6081041","32.8237602"],["-116.6059085","32.8237693"],["-116.6046183","32.8237202"],["-116.6034318","32.8236069"],["-116.6024051","32.8234821"],["-116.6012329","32.8232976"],["-116.5998825","32.8230117"],["-116.5984369","32.8226441"],["-116.5971173","32.8222775"],["-116.5955201","32.821805"],["-116.5919602","32.8207725"],["-116.5859181","32.8190472"],["-116.5842874","32.8186372"],["-116.583626","32.8185144"],["-116.5822155","32.8183948"],["-116.5813484","32.8184205"],["-116.5799479","32.8185627"],["-116.578818","32.8187931"],["-116.5777703","32.8190343"],["-116.5751099","32.8196507"],["-116.5725674","32.8202411"],["-116.5712652","32.8205705"],["-116.5703704","32.8209067"],["-116.5686443","32.8216715"],["-116.566991","32.8224075"],["-116.5665763","32.8225489"],["-116.5658956","32.822714"],["-116.5645049","32.82296"],["-116.5639875","32.8230293"],["-116.5564354","32.823048"],["-116.5556639","32.8229798"],["-116.5548813","32.8228808"],["-116.5539863","32.8226974"],["-116.5530662","32.8224226"],["-116.5521667","32.8220348"],["-116.5508807","32.8213564"],["-116.5482406","32.8196945"],["-116.5471355","32.8190374"],["-116.5463131","32.8186728"],["-116.5455418","32.8184135"],["-116.5448258","32.8182265"],["-116.544033","32.8180849"],["-116.543307","32.8179888"],["-116.5425358","32.8179291"],["-116.5416555","32.8179173"],["-116.5408476","32.8179996"],["-116.5400733","32.8180575"],["-116.5385562","32.8181852"],["-116.5379445","32.8182206"],["-116.5372642","32.8182383"],["-116.5363371","32.8182382"],["-116.535415","32.8182032"],["-116.5344214","32.8181177"],["-116.5338894","32.8180547"],["-116.5334014","32.8179857"],["-116.5328949","32.8179008"],["-116.5324233","32.8178099"],["-116.5315324","32.8176149"],["-116.5306463","32.8173809"],["-116.5301482","32.8172322"],["-116.5292053","32.8169138"],["-116.5286297","32.816694"],["-116.5280868","32.8164729"],["-116.5275142","32.8162193"],["-116.5262903","32.8156039"],["-116.5246753","32.8147839"],["-116.5236944","32.8143275"],["-116.522856","32.8139901"],["-116.5220208","32.8136875"],["-116.5214123","32.8134916"],["-116.5200357","32.8131205"],["-116.5190767","32.8129304"],["-116.5152609","32.8122746"],["-116.5143513","32.8120966"],["-116.5132754","32.8118089"],["-116.5120159","32.8113754"],["-116.5114086","32.811135"],["-116.5104516","32.8107073"],["-116.5099584","32.810453"],["-116.5089493","32.8098534"],["-116.5084407","32.8095246"],["-116.5076881","32.8089758"],["-116.5071445","32.8085453"],["-116.5066139","32.8080633"],["-116.5060486","32.8075247"],["-116.5054422","32.806945"],["-116.5021424","32.8039131"],["-116.5005737","32.8024414"],["-116.4998061","32.8016195"],["-116.4995165","32.8012728"],["-116.4992346","32.8009153"],["-116.4989057","32.8004779"],["-116.4985038","32.7999085"],["-116.4980732","32.7992401"],["-116.4977444","32.7986771"],["-116.4974522","32.7981385"],["-116.4971727","32.797569"],["-116.4969597","32.7971129"],["-116.4966658","32.7964064"],["-116.4964107","32.795701"],["-116.4962921","32.7953374"],["-116.4961581","32.7948851"],["-116.496029","32.794399"],["-116.4957281","32.7929833"],["-116.4940435","32.7823952"],["-116.4931343","32.7767934"],["-116.4928776","32.7755981"],["-116.4925209","32.7745135"],["-116.4922589","32.7738289"],["-116.4919967","32.7732145"],["-116.4915392","32.7723106"],["-116.4911062","32.7715514"],["-116.4904518","32.7705051"],["-116.4887881","32.7679741"],["-116.4884262","32.76727"],["-116.487703","32.7656374"],["-116.4874175","32.7649422"],["-116.4869119","32.7635477"],["-116.4822032","32.7498091"],["-116.4813802","32.7474799"],["-116.4811385","32.7466433"],["-116.4809066","32.7455897"],["-116.4806648","32.7442249"],["-116.4804913","32.7420702"],["-116.4802614","32.7337498"],["-116.4801721","32.7313501"],["-116.4800872","32.7306911"],["-116.4799667","32.7300685"],["-116.4797907","32.7293632"],["-116.4795347","32.728594"],["-116.4792593","32.7278833"],["-116.4789389","32.7271674"],["-116.4783034","32.7260012"],["-116.4760177","32.7221975"],["-116.4757972","32.721882"],["-116.4755183","32.7215115"],["-116.4751694","32.7211014"],["-116.474866","32.7207886"],["-116.4744116","32.7203727"],["-116.4740964","32.7201202"],["-116.4737466","32.7198687"],["-116.4734038","32.7196357"],["-116.4730794","32.7194313"],["-116.4727272","32.7192308"],["-116.4723592","32.7190381"],["-116.4719983","32.718866"],["-116.4716144","32.7187003"],["-116.4712399","32.7185542"],["-116.4708223","32.7184077"],["-116.4705101","32.718311"],["-116.4701323","32.7182103"],["-116.4696637","32.7181005"],["-116.4691702","32.7180046"],["-116.4687706","32.7179469"],["-116.4684314","32.7179078"],["-116.4680811","32.717877"],["-116.4677422","32.7178555"],["-116.4674568","32.7178453"],["-116.4671909","32.7178433"],["-116.4659287","32.7179037"],["-116.4610006","32.7182129"],["-116.4600978","32.7183153"],["-116.4596365","32.7183854"],["-116.4590312","32.718501"],["-116.4580558","32.7187208"],["-116.4570466","32.7190054"],["-116.4563738","32.7192341"],["-116.4559055","32.7194149"],["-116.4554299","32.7196121"],["-116.4548761","32.7198597"],["-116.4542451","32.7201892"],["-116.4532478","32.7207562"],["-116.4524485","32.7210863"],["-116.4518321","32.7214686"],["-116.450621","32.722205"],["-116.4496805","32.7227059"],["-116.448883","32.72308"],["-116.4482099","32.723365"],["-116.4473789","32.723668"],["-116.44661","32.7239204"],["-116.4459399","32.7241084"],["-116.4451085","32.7243105"],["-116.4441397","32.7245021"],["-116.4404595","32.7248631"],["-116.4381418","32.7251058"],["-116.4328573","32.7255837"],["-116.4266554","32.7261662"],["-116.4235467","32.726447"],["-116.4220803","32.7265486"],["-116.4199412","32.7266034"],["-116.4179521","32.7265231"],["-116.416607","32.726424"],["-116.4154743","32.7263079"],["-116.4134146","32.7259921"],["-116.4118002","32.7256258"],["-116.4104372","32.7252833"],["-116.4035552","32.7231711"],["-116.3941077","32.7201277"],["-116.3911768","32.7191489"],["-116.3904551","32.7187591"],["-116.3897763","32.7183793"],["-116.3885357","32.7176153"],["-116.387382","32.7167311"],["-116.3844118","32.7142445"],["-116.3828054","32.7128872"],["-116.3821147","32.7123405"],["-116.3799767","32.7109901"],["-116.3793061","32.7106177"],["-116.3774665","32.709657"],["-116.3758499","32.7090219"],["-116.3733962","32.7082635"],["-116.3630344","32.7056541"],["-116.3613291","32.705264"],["-116.3596315","32.704992"],["-116.3284143","32.7008482"],["-116.3240948","32.7002169"],["-116.323312","32.7000421"],["-116.322627","32.6998567"],["-116.3217295","32.6995675"],["-116.3204719","32.6990635"],["-116.3195406","32.6986108"],["-116.3187441","32.6981625"],["-116.317928","32.6976313"],["-116.3171908","32.6970865"],["-116.3151939","32.6954847"],["-116.2979816","32.6817012"],["-116.2940281","32.678558"],["-116.2935007","32.6781873"],["-116.2929078","32.6778046"],["-116.2921872","32.677382"],["-116.2915497","32.6770476"],["-116.2909908","32.6767898"],["-116.290394","32.6765382"],["-116.2897355","32.6762788"],["-116.2891723","32.6760877"],["-116.2885216","32.6758826"],["-116.2373887","32.6613371"],["-116.2359091","32.6609718"],["-116.2352471","32.6608582"],["-116.2332246","32.6608083"],["-116.2308238","32.6607711"],["-116.2287962","32.6607573"],["-116.2281976","32.6608052"],["-116.2276343","32.6608847"],["-116.2271244","32.6609881"],["-116.2260585","32.6612078"],["-116.2244327","32.6615501"],["-116.2239539","32.6615898"],["-116.2234404","32.6616137"],["-116.2138911","32.6612932"],["-116.2121404","32.6611746"],["-116.2114128","32.6610626"],["-116.2107203","32.6609208"],["-116.2101725","32.6607915"],["-116.2096283","32.66065"],["-116.2090644","32.660476"],["-116.2082877","32.6601865"],["-116.2073496","32.6597465"],["-116.2065826","32.6593213"],["-116.2057718","32.6588339"],["-116.2050777","32.6584097"],["-116.204624","32.6580458"],["-116.2041615","32.6576152"],["-116.2017755","32.6553769"],["-116.1982046","32.6520221"],["-116.1968298","32.6507974"],["-116.196113","32.6502895"],["-116.1954308","32.6498728"],["-116.1946591","32.6494605"],["-116.1942036","32.6492523"],["-116.193309","32.6488877"],["-116.189167","32.6473249"],["-116.1876034","32.6467324"],["-116.1776328","32.6430038"],["-116.1761276","32.6423737"],["-116.1750831","32.6417068"],["-116.1718097","32.6394174"],["-116.1695446","32.6378435"],["-116.169072","32.6375609"],["-116.1686102","32.6373036"],["-116.1681188","32.6370582"],["-116.1675853","32.6368157"],["-116.1670376","32.6365906"],["-116.1661199","32.6362628"],["-116.1657714","32.636157"],["-116.1652305","32.6360218"],["-116.164657","32.6358936"],["-116.1640975","32.6357923"],["-116.1634464","32.6356974"],["-116.1505926","32.6340072"],["-116.1498363","32.6339307"],["-116.1489846","32.6338769"],["-116.14828","32.6338676"],["-116.1462542","32.6340056"],["-116.1339973","32.6351381"],["-116.1235653","32.636112"],["-116.1135727","32.6370481"],["-116.1130219","32.6371192"],["-116.1127439","32.6371705"],["-116.1125325","32.6372194"],["-116.112309","32.6372761"],["-116.1121375","32.637324"],["-116.1119371","32.6373855"],["-116.111411","32.6375764"],["-116.1109735","32.6377833"],["-116.1104264","32.6380877"],["-116.1100212","32.6383613"],["-116.1096422","32.6386542"],["-116.1091899","32.6390813"],["-116.1089705","32.6393319"],["-116.1087781","32.6395664"],["-116.108566","32.6398774"],["-116.1065814","32.6431939"],["-116.1044339","32.6468017"],["-116.1040471","32.6474352"],["-116.1037885","32.6478276"],["-116.1034772","32.6482447"],["-116.1021975","32.649817"],["-116.1017189","32.6504211"],["-116.1014706","32.6507117"],["-116.1012023","32.6509808"],["-116.0998858","32.6524391"],["-116.0985842","32.6539736"],["-116.09831","32.6543403"],["-116.0980927","32.6546467"],["-116.0978525","32.6549975"],["-116.0976318","32.6552949"],["-116.0973669","32.6556385"],["-116.0972109","32.6558874"],["-116.0971217","32.6561016"],["-116.0970607","32.6562973"],["-116.0970161","32.6564647"],["-116.0969865","32.6566059"],["-116.0969577","32.6568052"],["-116.096947","32.6569401"],["-116.0969421","32.6571075"],["-116.0969493","32.657298"],["-116.0969713","32.6575488"],["-116.0970124","32.6578113"],["-116.0970719","32.6580501"],["-116.0971487","32.6582664"],["-116.0972939","32.6585645"],["-116.0974521","32.6588395"],["-116.0976326","32.6590783"],["-116.0977788","32.6592532"],["-116.0979101","32.6593836"],["-116.0980585","32.6595081"],["-116.0982267","32.6596461"],["-116.0984513","32.6598243"],["-116.0987464","32.6600008"],["-116.1002882","32.660697"],["-116.1013426","32.661146"],["-116.1031979","32.6619229"],["-116.103615","32.6620987"],["-116.1038867","32.6622241"],["-116.104159","32.6623964"],["-116.1044232","32.6625849"],["-116.1046289","32.6627537"],["-116.1048457","32.6629444"],["-116.1050822","32.6631872"],["-116.1052666","32.66344"],["-116.1054209","32.6636826"],["-116.1055659","32.6639561"],["-116.1056843","32.6642986"],["-116.105782","32.6647778"],["-116.1060762","32.6669377"],["-116.1061041","32.6673493"],["-116.1060803","32.6678752"],["-116.1059916","32.6683352"],["-116.1058491","32.6688244"],["-116.1057134","32.6693291"],["-116.1056058","32.6697426"],["-116.1055482","32.6700866"],["-116.1055477","32.6704717"],["-116.1055701","32.6707834"],["-116.1056336","32.6710658"],["-116.105721","32.6713509"],["-116.1059147","32.6717399"],["-116.1066488","32.6730219"],["-116.1068069","32.6733762"],["-116.1069161","32.6736804"],["-116.1069922","32.6740469"],["-116.1070179","32.6743996"],["-116.1069939","32.6747339"],["-116.1069504","32.6750461"],["-116.1068454","32.6753858"],["-116.1066684","32.6758017"],["-116.1064632","32.6761478"],["-116.1062009","32.6764695"],["-116.1058704","32.6767795"],["-116.1054789","32.67706"],["-116.1049991","32.6773301"],["-116.1045524","32.6775103"],["-116.1040041","32.6776802"],["-116.1034689","32.6777623"],["-116.1029477","32.6777626"],["-116.1024779","32.6777236"],["-116.1020635","32.677637"],["-116.1017605","32.6775647"],["-116.1015375","32.6774885"],["-116.1012475","32.6773723"],["-116.1009582","32.6772351"],["-116.100696","32.6770807"],["-116.0975025","32.6749142"],["-116.0960638","32.6739388"],["-116.0951536","32.673361"],["-116.0948074","32.6731847"],["-116.0944659","32.6730274"],["-116.0940589","32.6728631"],["-116.0937047","32.6727365"],["-116.0933846","32.6726443"],["-116.0929742","32.6725683"],["-116.0925719","32.6725072"],["-116.0922175","32.6724684"],["-116.0893455","32.6722621"],["-116.0883176","32.6722296"],["-116.0877138","32.6722552"],["-116.0872712","32.6722931"],["-116.0868821","32.6723429"],["-116.0865383","32.6723965"],["-116.0862476","32.6724507"],["-116.0856766","32.6725687"],["-116.0818876","32.6733411"],["-116.0815243","32.6734064"],["-116.0811933","32.673453"],["-116.0806937","32.6735112"],["-116.0800457","32.6735286"],["-116.078629","32.6734908"],["-116.078051","32.6734673"],["-116.0777817","32.6734696"],["-116.0776031","32.6734796"],["-116.0774153","32.6734977"],["-116.0771671","32.673532"],["-116.0767221","32.673633"],["-116.0763799","32.673742"],["-116.0762082","32.6738134"],["-116.0760453","32.6738906"],["-116.0757266","32.6740532"],["-116.0755847","32.6741426"],["-116.0754606","32.6742354"],["-116.075342","32.6743255"],["-116.0750994","32.6745303"],["-116.0749658","32.6746598"],["-116.0748425","32.6747995"],["-116.0747361","32.6749294"],["-116.0745224","32.6752611"],["-116.074275","32.6756283"],["-116.0740017","32.6759921"],["-116.0737356","32.676332"],["-116.0734588","32.6766217"],["-116.0728603","32.6771222"],["-116.0726123","32.6773186"],["-116.0723057","32.6775544"],["-116.0721084","32.6776948"],["-116.0718751","32.6778427"],["-116.0713289","32.6781517"],["-116.0710538","32.6783016"],["-116.0707801","32.6784421"],["-116.0705599","32.67857"],["-116.070286","32.6787802"],["-116.069969","32.6790626"],["-116.068866","32.6803024"],["-116.0663834","32.6831951"],["-116.066067","32.683719"],["-116.0659582","32.6839893"],["-116.0658682","32.6842918"],["-116.0658017","32.6846062"],["-116.0657268","32.6849715"],["-116.0655922","32.6854918"],["-116.0654293","32.6860983"],["-116.0651314","32.687333"],["-116.0650484","32.6876444"],["-116.0649488","32.6879322"],["-116.0648475","32.6881991"],["-116.0646591","32.6885901"],["-116.064393","32.6890822"],["-116.0640524","32.6896905"],["-116.0638825","32.690039"],["-116.0637723","32.6903158"],["-116.063705","32.6905677"],["-116.0636646","32.6908111"],["-116.0636491","32.6910482"],["-116.0636554","32.6912636"],["-116.0636781","32.6915622"],["-116.0637776","32.6922519"],["-116.0638368","32.6926347"],["-116.0638746","32.6928733"],["-116.0638974","32.6930687"],["-116.0638946","32.6932057"],["-116.0638651","32.6933961"],["-116.0637964","32.6937262"],["-116.0637188","32.6939864"],["-116.0636338","32.6942101"],["-116.0635095","32.6944795"],["-116.0633579","32.6947175"],["-116.0631305","32.6950278"],["-116.0626914","32.6955703"],["-116.060602","32.6981806"],["-116.0603123","32.6985011"],["-116.0601283","32.6986759"],["-116.0599164","32.6988529"],["-116.0594483","32.699147"],["-116.0589859","32.6993771"],["-116.0582895","32.69968"],["-116.0576461","32.6999522"],["-116.0570311","32.7001825"],["-116.0565797","32.7004021"],["-116.0562761","32.7005881"],["-116.05602","32.7008072"],["-116.0557619","32.7010504"],["-116.0555196","32.7013402"],["-116.0552394","32.7017865"],["-116.0545298","32.703078"],["-116.0539018","32.7042573"],["-116.0538059","32.7044746"],["-116.0536788","32.7048513"],["-116.0535786","32.7052348"],["-116.0535188","32.7054941"],["-116.0534577","32.7059173"],["-116.0534193","32.7062248"],["-116.0533384","32.7068504"],["-116.0533006","32.7071816"],["-116.0532887","32.707414"],["-116.0532995","32.7076291"],["-116.0533339","32.7078191"],["-116.0533827","32.7080284"],["-116.0536527","32.7087411"],["-116.0541323","32.7100576"],["-116.0542104","32.7102941"],["-116.0542565","32.710495"],["-116.0542816","32.7106911"],["-116.0542935","32.710844"],["-116.0542797","32.7110226"],["-116.054254","32.7111783"],["-116.0542052","32.7113834"],["-116.0541364","32.7116122"],["-116.0540495","32.7118521"],["-116.0539464","32.712084"],["-116.0537721","32.7123917"],["-116.0532342","32.7132828"],["-116.0521138","32.7152246"],["-116.0516451","32.7160182"],["-116.0514511","32.71631"],["-116.0512607","32.7165527"],["-116.0503586","32.7174424"],["-116.0487779","32.7189045"],["-116.0479677","32.7196262"],["-116.0476041","32.7198644"],["-116.046736","32.7202762"],["-116.0463581","32.720411"],["-116.0431317","32.7212249"],["-116.0424101","32.7214537"],["-116.0419625","32.7216515"],["-116.0415474","32.721856"],["-116.0411109","32.7221301"],["-116.0401265","32.7228924"],["-116.039301","32.7235337"],["-116.038838","32.7238713"],["-116.0381804","32.7242507"],["-116.0378106","32.7244235"],["-116.0374129","32.7245798"],["-116.0370058","32.72471"],["-116.0365622","32.7248244"],["-116.0350023","32.7250942"],["-116.0265059","32.726483"],["-116.0205712","32.727325"],["-116.0193904","32.7276164"],["-116.0189253","32.7278048"],["-116.0180815","32.7282232"],["-116.0163506","32.7290993"],["-116.0156518","32.7294302"],["-116.0150166","32.7297127"],["-116.0143216","32.7299786"],["-116.0136535","32.7301932"],["-116.012803","32.7304358"],["-116.011791","32.7306732"],["-116.008292","32.7313322"],["-115.9950248","32.7339033"],["-115.9754489","32.73838"],["-115.9702005","32.7398463"],["-115.9640541","32.7421157"],["-115.9632529","32.7423712"],["-115.9625318","32.7425735"],["-115.9616299","32.7428086"],["-115.9597103","32.7431555"],["-115.8437237","32.7601042"],["-115.8328378","32.7621603"],["-115.7866275","32.771511"],["-115.7810336","32.7726203"],["-115.7800999","32.7727641"],["-115.7792416","32.7728677"],["-115.7783121","32.7729524"],["-115.7764245","32.7730315"],["-115.7495443","32.7730647"],["-115.7466427","32.7731143"],["-115.7455198","32.7732889"],["-115.7436414","32.7736413"],["-115.742556","32.7738189"],["-115.7419645","32.7738847"],["-115.7394669","32.7739271"],["-115.5758427","32.7738037"],["-115.5755495","32.7737626"],["-115.5741016","32.7736547"],["-115.5737561","32.7736183"],["-115.5735692","32.7735824"],["-115.5734037","32.7735413"],["-115.5732328","32.7734904"],["-115.5730716","32.7734341"],["-115.5729197","32.773374"],["-115.5726079","32.7732356"],["-115.5724108","32.7731459"],["-115.5719068","32.7729067"],["-115.5717167","32.7728228"],["-115.5715308","32.7727601"],["-115.5712525","32.7726891"],["-115.5709501","32.7726397"],["-115.5707558","32.7726216"],["-115.5705557","32.7726164"],["-115.5697472","32.7726203"],["-115.5694201","32.7726703"],["-115.5695301","32.7773473"],["-115.569532","32.7774201"],["-115.569554","32.7785693"],["-115.5695604","32.7789112"],["-115.5695708","32.77932"],["-115.5696085","32.7813108"],["-115.5696374","32.781381"],["-115.5696781","32.7814607"],["-115.5696829","32.7815503"],["-115.5696861","32.7816963"],["-115.5697735","32.785545"],["-115.5697785","32.7856955"],["-115.5697831","32.7858133"],["-115.5697889","32.7860129"],["-115.5698044","32.7870368"],["-115.5698201","32.7877681"],["-115.5698254","32.7880659"],["-115.5698342","32.7887407"],["-115.5698705","32.7916892"],["-115.5697873","32.7916967"],["-115.5696105","32.7917008"],["-115.5677099","32.791715"],["-115.5677649","32.790714"],["-115.5698518","32.7906467"],["-115.569835","32.7887904"],["-115.5698257","32.7880673"],["-115.5698207","32.7877857"],["-115.5698052","32.7870982"],["-115.5697894","32.7860176"],["-115.5697827","32.7858094"],["-115.5697787","32.7856985"],["-115.5697739","32.7855523"],["-115.5696864","32.781704"],["-115.5696827","32.7815533"],["-115.5696836","32.7814602"],["-115.5697209","32.7813715"],["-115.5697356","32.78133"],["-115.5697257","32.7803415"],["-115.5696913","32.7793254"],["-115.5696444","32.7772362"],["-115.5695854","32.7735268"],["-115.5696327","32.7730191"],["-115.5696543","32.7728897"],["-115.5696811","32.7728136"],["-115.5697136","32.7727807"],["-115.56977","32.7727487"],["-115.5698374","32.7727327"],["-115.5699025","32.7727257"],["-115.569991","32.772733"],["-115.5700809","32.772751"],["-115.5701674","32.7727804"],["-115.5702328","32.7728109"],["-115.5702961","32.7728578"],["-115.57035","32.7729109"],["-115.5703914","32.7729655"],["-115.5704311","32.7730283"],["-115.5704476","32.7730867"],["-115.5704511","32.7731525"],["-115.5704405","32.7732185"],["-115.5704215","32.7732713"],["-115.5703949","32.7733297"],["-115.570357","32.7733858"],["-115.5703135","32.7734365"],["-115.5702712","32.7734807"],["-115.5702205","32.773512"],["-115.5701632","32.7735396"],["-115.5700865","32.7735658"],["-115.5699998","32.7735855"],["-115.5698196","32.7736159"],["-115.569498","32.773659"],["-115.5687144","32.773717"],["-115.5684156","32.773735"],["-115.5681153","32.7737832"],["-115.5012597","32.7736566"],["-115.4961239","32.7736754"],["-115.4909253","32.7736508"],["-115.4842042","32.7735612"],["-115.2882734","32.7731485"],["-115.2871676","32.773105"],["-115.2862742","32.7730036"],["-115.2853077","32.772828"],["-115.2844794","32.772647"],["-115.2829721","32.7721756"],["-115.2822024","32.7718963"],["-115.2813393","32.7715254"],["-115.2804611","32.7710994"],["-115.2789907","32.7701285"],["-115.275382","32.7675569"],["-115.2736367","32.766358"],["-115.2728288","32.7659002"],["-115.2719059","32.7654423"],["-115.2708821","32.7650115"],["-115.2698744","32.7646655"],["-115.2691409","32.7644478"],["-115.2683749","32.7642488"],["-115.2655872","32.7637218"],["-115.2535907","32.7615614"],["-115.2505955","32.7607539"],["-115.2388729","32.7571826"],["-115.0830201","32.7084088"],["-115.0819633","32.7081289"],["-115.0810532","32.7079453"],["-115.0800589","32.7078117"],["-115.0789269","32.7077417"],["-115.0716574","32.707718"],["-115.0083546","32.7077614"],["-114.9441837","32.7084906"],["-114.9414642","32.7086245"],["-114.9401351","32.7087907"],["-114.9352376","32.7096385"],["-114.9323676","32.7101558"],["-114.9275543","32.7110586"],["-114.9260488","32.7115435"],["-114.9245605","32.7121523"],["-114.9232977","32.7128128"],["-114.9220385","32.7136058"],["-114.9207225","32.7146493"],["-114.9191584","32.7162797"],["-114.9107089","32.7270091"],["-114.9100664","32.7277745"],["-114.9093765","32.7283928"],["-114.9087123","32.728923"],["-114.9080487","32.7293597"],["-114.9056218","32.7305173"],["-114.8994198","32.733273"],["-114.8961431","32.7347016"],["-114.8932244","32.7357858"],["-114.8892053","32.7372437"],["-114.8884518","32.7375583"],["-114.8877981","32.7378945"],["-114.8871981","32.7382781"],["-114.8782145","32.7451662"],["-114.8772534","32.7458395"],["-114.876405","32.7463285"],["-114.8739423","32.7475453"],["-114.8548809","32.7569225"],["-114.854106","32.7572213"],["-114.8533168","32.7574537"],["-114.8457358","32.759427"],["-114.8429796","32.7601146"],["-114.841546","32.7603423"],["-114.8406256","32.7604543"],["-114.8396927","32.7604841"],["-114.8387339","32.7604764"],["-114.8378024","32.760407"],["-114.8356463","32.7601365"],["-114.7590365","32.7470255"],["-114.7580622","32.7468781"],["-114.7565802","32.746718"],["-114.7557562","32.7466902"],["-114.7449546","32.7467801"],["-114.7409062","32.7467921"],["-114.7402066","32.7467512"],["-114.7395445","32.7466787"],["-114.7389991","32.7466064"],["-114.7384223","32.7465182"],["-114.7378194","32.7464007"],["-114.7372482","32.7462715"],["-114.7359836","32.7459173"],["-114.7329017","32.7450167"],["-114.7320929","32.7448207"],["-114.7315613","32.7447196"],["-114.7308562","32.7446052"],["-114.7174301","32.7430306"],["-114.7162531","32.7429202"],["-114.7152318","32.7428581"],["-114.7145682","32.7428518"],["-114.7139712","32.7428696"],["-114.7132962","32.7429184"],["-114.7126739","32.7429894"],["-114.7121533","32.7430733"],["-114.7115882","32.7431754"],["-114.7108652","32.7433474"],["-114.7099239","32.7436312"],["-114.7093315","32.7438441"],["-114.7029753","32.7465137"],["-114.7023949","32.7467075"],["-114.7016192","32.7469205"],["-114.7008773","32.7470609"],["-114.7000897","32.747159"],["-114.6995578","32.7471905"],["-114.6991103","32.7471963"],["-114.6987038","32.7471913"],["-114.6977962","32.7471123"],["-114.6972613","32.7470393"],["-114.6966912","32.7469331"],["-114.6962255","32.7468193"],["-114.6958412","32.7467071"],["-114.6954687","32.7465859"],["-114.6950868","32.7464442"],["-114.6947009","32.7462859"],["-114.6942575","32.7460841"],["-114.6900734","32.7439005"],["-114.6872513","32.7424373"],["-114.6864887","32.7420963"],["-114.6857601","32.7418329"],["-114.6851209","32.7416387"],["-114.6845113","32.7414756"],["-114.6839354","32.7413538"],["-114.6615859","32.7372805"],["-114.660449","32.7371911"],["-114.6589267","32.737131"],["-114.6553395","32.7371146"],["-114.6526242","32.7371081"],["-114.6508933","32.7370755"],["-114.6501285","32.7370007"],["-114.6495253","32.7369036"],["-114.6489557","32.7367973"],["-114.6483052","32.7366454"],["-114.6455597","32.7358811"],["-114.6434659","32.7353016"],["-114.6412975","32.7347458"],["-114.64021","32.7345147"],["-114.6288976","32.7326372"],["-114.6274655","32.7323798"],["-114.6267027","32.7322393"],["-114.6260175","32.7320864"],["-114.6251439","32.7318588"],["-114.6243926","32.7316059"],["-114.6238199","32.7313892"],["-114.6233474","32.73118"],["-114.6224193","32.7307423"],["-114.6208969","32.7300298"],["-114.6187921","32.7290887"],["-114.6184601","32.7289321"],["-114.6182619","32.728823"],["-114.6180864","32.7287222"],["-114.6177832","32.7285248"],["-114.617546","32.7283494"],["-114.6173678","32.7282069"],["-114.6172917","32.7281423"],["-114.6171767","32.7280401"],["-114.6170758","32.7279437"],["-114.6169628","32.7278306"],["-114.616869","32.7277283"],["-114.6167508","32.727592"],["-114.6166209","32.7274331"],["-114.6164626","32.7272234"],["-114.6162606","32.7268968"],["-114.6161618","32.7267275"],["-114.6160307","32.7264573"],["-114.6155383","32.7254546"],["-114.615433","32.7252613"],["-114.6153681","32.7251484"],["-114.6153076","32.7250487"],["-114.6148934","32.7244042"],["-114.6145734","32.7239122"],["-114.6143607","32.7235532"],["-114.614046","32.7229824"],["-114.6138475","32.7225846"],["-114.6136443","32.7221466"],["-114.6134617","32.7217226"],["-114.6133104","32.7213336"],["-114.6128154","32.7198625"],["-114.6126136","32.7188028"],["-114.6102559","32.7038272"],["-114.6100677","32.7024947"],["-114.6098419","32.7014334"],["-114.6096863","32.7007827"],["-114.609389","32.700021"],["-114.60903","32.6991808"],["-114.6089709","32.6989084"],["-114.6089818","32.6987762"],["-114.6091586","32.6986606"],["-114.6122465","32.6986284"],["-114.6150012","32.6986347"],["-114.6160777","32.6986202"],["-114.6160874","32.696999"],["-114.6159839","32.6967781"],["-114.6159905","32.6949838"],["-114.616001","32.6940503"],["-114.6160073","32.6927298"],["-114.6159528","32.6912581"],["-114.6132347","32.6912766"],["-114.6131444","32.6917614"],["-114.6131449","32.6920143"],["-114.61315","32.6932156"],["-114.6131878","32.6940072"],["-114.6146179","32.6940435"],["-114.6159201","32.6940846"],["-114.6159906","32.6949903"],["-114.6159747","32.6967769"],["-114.6159102","32.6969302"],["-114.6158507","32.6984109"],["-114.6116875","32.6984774"],["-114.6109255","32.6984779"],["-114.6092206","32.6984689"],["-114.6089141","32.6983902"],["-114.6087671","32.6983288"],["-114.6086161","32.6981963"],["-114.6084964","32.6979533"],["-114.6083586","32.6977693"],["-114.6081753","32.6975776"],["-114.6079279","32.6973934"],["-114.6074791","32.6970815"],["-114.6072293","32.6968924"],["-114.6068912","32.6965946"],["-114.6058148","32.6955716"],["-114.605188","32.6951039"],["-114.6045521","32.6946257"],["-114.6039435","32.6942365"],["-114.6032076","32.6937957"],["-114.6023886","32.6933559"],["-114.6013993","32.6928942"],["-114.6005305","32.6925757"],["-114.5996183","32.6923015"],["-114.597291","32.6918274"],["-114.5885285","32.6902189"],["-114.5846334","32.6895637"],["-114.5726054","32.6871563"],["-114.5695298","32.6863782"],["-114.564646","32.6849222"],["-114.5622832","32.6840775"],["-114.5481612","32.6786261"],["-114.5444527","32.6772321"],["-114.5434564","32.6769479"],["-114.5423657","32.6766802"],["-114.5411137","32.6764257"],["-114.5400336","32.6762548"],["-114.539056","32.6761234"],["-114.5374326","32.6759965"],["-114.5358524","32.6759543"],["-114.5349214","32.6759685"],["-114.5337846","32.6760296"],["-114.5319998","32.6762134"],["-114.5114943","32.6786735"],["-114.5101371","32.6787658"],["-114.50908","32.6787719"],["-114.5084227","32.6787424"],["-114.5069929","32.678575"],["-114.506084","32.6783991"],["-114.5051561","32.678176"],["-114.5044016","32.6779124"],["-114.4870948","32.6722724"],["-114.4836075","32.6711521"],["-114.4824701","32.6708566"],["-114.4812117","32.6706185"],["-114.4803465","32.6704986"],["-114.4793342","32.6703921"],["-114.4778868","32.6703226"],["-114.416016","32.6704075"],["-114.4135549","32.6703246"],["-114.410547","32.6700586"],["-114.4071829","32.6695109"],["-114.3943269","32.6664215"],["-114.3930836","32.6660411"],["-114.392083","32.6656743"],["-114.389905","32.6648506"],["-114.388661","32.6644312"],["-114.3873992","32.664046"],["-114.3802833","32.6619006"],["-114.3784301","32.6614007"],["-114.3778359","32.6612655"],["-114.3772188","32.6611533"],["-114.3764816","32.6610415"],["-114.3753291","32.660901"],["-114.3710361","32.660432"],["-114.3663776","32.6597066"],["-114.3655946","32.65965"],["-114.364159","32.6596185"],["-114.362154","32.6596482"],["-114.3578002","32.6601143"],["-114.3553961","32.6604017"],["-114.3546129","32.6604592"],["-114.3539261","32.6604867"],["-114.3534594","32.6604776"],["-114.3529498","32.6604557"],["-114.3524944","32.66042"],["-114.3520967","32.6603751"],["-114.3514732","32.6602871"],["-114.3510085","32.6601988"],["-114.350494","32.6600835"],["-114.34992","32.6599324"],["-114.3495131","32.6598072"],["-114.3488697","32.6595824"],["-114.3484818","32.6594343"],["-114.3479948","32.6592313"],["-114.3467832","32.6586854"],["-114.3461073","32.6583925"],["-114.3454952","32.6581811"],["-114.3451892","32.6580998"],["-114.3448502","32.6580263"],["-114.3444875","32.6579685"],["-114.3441583","32.6579244"],["-114.343761","32.6578929"],["-114.3426581","32.6578909"],["-114.3364502","32.6586913"],["-114.3361014","32.6587524"],["-114.3358436","32.6588152"],["-114.3355581","32.658893"],["-114.3352911","32.6589765"],["-114.3349126","32.6591213"],["-114.334594","32.6592706"],["-114.3341106","32.6595162"],["-114.3331286","32.6599997"],["-114.3328311","32.6601202"],["-114.3322727","32.660301"],["-114.3316701","32.6604422"],["-114.3313412","32.6604971"],["-114.3307349","32.6605544"],["-114.3303275","32.6605694"],["-114.3296458","32.6605505"],["-114.3257895","32.6604035"],["-114.3249873","32.6603809"],["-114.324598","32.6603894"],["-114.3242628","32.6604092"],["-114.3239112","32.6604464"],["-114.3235501","32.6605031"],["-114.3232444","32.6605773"],["-114.3229437","32.6606653"],["-114.3226257","32.6607906"],["-114.3224156","32.6608941"],["-114.3222012","32.6610198"],["-114.3219829","32.6611733"],["-114.321762","32.6613556"],["-114.3215847","32.6615413"],["-114.321375","32.6618074"],["-114.3212417","32.6620336"],["-114.3211425","32.6622393"],["-114.3210726","32.662445"],["-114.3210164","32.6626878"],["-114.3209861","32.6629445"],["-114.3209806","32.6631923"],["-114.3210099","32.6634891"],["-114.3211532","32.6643165"],["-114.3211704","32.6645988"],["-114.321155","32.6648712"],["-114.3211087","32.6651181"],["-114.3210389","32.6653594"],["-114.3209267","32.6656388"],["-114.3208245","32.6658213"],["-114.3206631","32.6660338"],["-114.3205099","32.6662113"],["-114.3203443","32.6663828"],["-114.3201661","32.6665343"],["-114.3200125","32.6666525"],["-114.3198114","32.6667734"],["-114.319637","32.6668653"],["-114.3194664","32.6669483"],["-114.3191444","32.6670692"],["-114.3188641","32.6671479"],["-114.3185597","32.6672219"],["-114.3182671","32.6672921"],["-114.3177201","32.6674588"],["-114.3173936","32.6676032"],["-114.3156533","32.6684564"],["-114.3144318","32.6690939"],["-114.3135686","32.6696733"],["-114.311553","32.6710476"],["-114.3108035","32.671527"],["-114.3105169","32.6716838"],["-114.3101747","32.6718523"],["-114.309813","32.6719969"],["-114.3094407","32.6721234"],["-114.3090926","32.6722306"],["-114.3086543","32.672322"],["-114.3082317","32.6723871"],["-114.3078696","32.6724243"],["-114.3075331","32.6724504"],["-114.3071423","32.6724449"],["-114.3067929","32.6724329"],["-114.3064285","32.6724026"],["-114.3059476","32.6723241"],["-114.3052634","32.672183"],["-114.3028315","32.6715867"],["-114.3017416","32.6713256"],["-114.2240113","32.6522315"],["-114.2123592","32.6493797"],["-114.2112635","32.6491656"],["-114.2107298","32.6490735"],["-114.2095661","32.6489092"],["-114.2070507","32.6486123"],["-114.2056458","32.6485198"],["-114.2027916","32.6484505"],["-114.2012686","32.6485001"],["-114.1994473","32.6486282"],["-114.1977838","32.6488244"],["-114.1959797","32.6490729"],["-114.1945368","32.6493444"],["-114.1023976","32.6710797"],["-114.0991498","32.671728"],["-114.0962509","32.6722063"],["-114.0939559","32.672486"],["-114.0914872","32.6727456"],["-114.0525669","32.6759558"],["-114.0466651","32.6765215"],["-114.0445565","32.6768083"],["-114.0437554","32.6769322"],["-114.04294","32.6770733"],["-113.9593927","32.6924582"],["-113.855885","32.7081829"],["-113.8368978","32.7110572"],["-113.7629963","32.7222493"],["-113.7617579","32.7225183"],["-113.7603679","32.7228686"],["-113.7588072","32.723309"],["-113.7538547","32.7249302"],["-113.7529239","32.7251726"],["-113.7521959","32.7253363"],["-113.7512695","32.7254796"],["-113.7501108","32.7256275"],["-113.7491169","32.7257075"],["-113.7478994","32.7257035"],["-113.746893","32.7257036"],["-113.7453829","32.7256976"],["-113.7441932","32.7257398"],["-113.7431453","32.7258827"],["-113.7420476","32.7260698"],["-113.7409871","32.7263548"],["-113.7391566","32.727001"],["-113.7373445","32.727927"],["-113.7366641","32.7282074"],["-113.7352952","32.7286888"],["-113.7341055","32.7289488"],["-113.7333623","32.7290777"],["-113.7323881","32.7291887"],["-113.7171615","32.7305526"],["-113.7157418","32.730786"],["-113.7126773","32.7313787"],["-113.7114343","32.7316918"],["-113.7054","32.7338653"],["-113.6480057","32.7556351"],["-113.6424085","32.7577531"],["-113.6165159","32.7675748"],["-113.6127455","32.7692304"],["-113.6007941","32.7737667"],["-113.5636288","32.7878647"],["-113.560269","32.7891439"],["-113.5593691","32.7895253"],["-113.5585342","32.789971"],["-113.5567884","32.79101"],["-113.5540922","32.7929035"],["-113.5495401","32.7961232"],["-113.5481645","32.7970512"],["-113.5469948","32.7977986"],["-113.546262","32.7982075"],["-113.5450684","32.7987987"],["-113.5439205","32.7992783"],["-113.5011782","32.8154838"],["-113.4983281","32.8165005"],["-113.4971265","32.8168741"],["-113.4961037","32.8171534"],["-113.4950714","32.8174"],["-113.4937554","32.8176888"],["-113.4921199","32.817985"],["-113.445417","32.8241075"],["-113.3557422","32.8356352"],["-113.3540277","32.8358139"],["-113.3513166","32.8360133"],["-113.3422643","32.8372916"],["-113.2815747","32.8451528"],["-113.2784724","32.8457391"],["-113.2774468","32.8460207"],["-113.2742879","32.8469979"],["-113.2499278","32.8548652"],["-113.2488447","32.8551745"],["-113.2476249","32.8554501"],["-113.2465291","32.8556368"],["-113.2453139","32.8557801"],["-113.2332823","32.8564097"],["-113.2063049","32.8589828"],["-113.2013632","32.859368"],["-113.1704182","32.862491"],["-113.1688934","32.8627317"],["-113.1674861","32.8629939"],["-113.1662687","32.8632509"],["-113.0728609","32.8886623"],["-113.0721054","32.8888486"],["-113.0699465","32.8892897"],["-113.0690577","32.8894402"],["-113.0422522","32.8927731"],["-113.0412669","32.8929214"],["-113.0400803","32.8931241"],["-112.9696172","32.9097666"],["-112.9686273","32.9099706"],["-112.9677136","32.9101339"],["-112.9667751","32.9102834"],["-112.8951213","32.9198716"],["-112.8941188","32.9200553"],["-112.8932946","32.9202606"],["-112.891549","32.9207638"],["-112.8899099","32.9212219"],["-112.8888161","32.9214727"],["-112.8880881","32.9216165"],["-112.8804304","32.9226441"],["-112.877192","32.92308"],["-112.8453241","32.9272985"],["-112.8419782","32.9276669"],["-112.8401134","32.9277504"],["-112.8376118","32.9278436"],["-112.8362151","32.9279503"],["-112.8341166","32.9281693"],["-112.8004818","32.9326021"],["-112.7979661","32.9328623"],["-112.796902","32.9329444"],["-112.7934056","32.9332872"],["-112.7920816","32.9334433"],["-112.7906118","32.933626"],["-112.764579","32.9381368"],["-112.7617604","32.9386329"],["-112.7584229","32.9392278"],["-112.7574322","32.9394482"],["-112.7563237","32.9397627"],["-112.7560006","32.9398237"],["-112.7555946","32.9399414"],["-112.7551913","32.9400783"],["-112.7548974","32.9401905"],["-112.7545949","32.9402969"],["-112.7543378","32.9403877"],["-112.7541536","32.940443"],["-112.753774","32.9405263"],["-112.753605","32.9405496"],["-112.7533887","32.9405627"],["-112.7531607","32.9405661"],["-112.752662","32.940552"],["-112.7523564","32.940539"],["-112.7517316","32.9405113"],["-112.7515299","32.9405106"],["-112.7510391","32.9405355"],["-112.7505322","32.9406019"],["-112.7502669","32.9406407"],["-112.74943","32.9407922"],["-112.7418615","32.9421477"],["-112.7395857","32.9425205"],["-112.7384827","32.942714"],["-112.7371228","32.9429587"],["-112.7345514","32.9434141"],["-112.7338485","32.9435372"],["-112.7313583","32.9439931"],["-112.7306207","32.9441423"],["-112.7297708","32.9443423"],["-112.7289076","32.9445892"],["-112.7244966","32.9459138"],["-112.7239131","32.9460556"],["-112.7234189","32.9461642"],["-112.717628","32.947192"],["-112.7146074","32.9477219"],["-112.7096557","32.9485966"],["-112.7091296","32.9486865"],["-112.7066205","32.9491314"],["-112.704702","32.9494983"],["-112.7044186","32.9495537"],["-112.7031737","32.9498011"],["-112.7019782","32.9500414"],["-112.7008024","32.9502758"],["-112.7006193","32.9502626"],["-112.700434","32.9502951"],["-112.6998526","32.9504252"],["-112.6994277","32.9505301"],["-112.6990665","32.9506366"],["-112.6986218","32.9507921"],["-112.695961","32.9516823"],["-112.6940617","32.9522497"],["-112.6917238","32.9528129"],["-112.6909052","32.9529719"],["-112.6905821","32.9530304"],["-112.6871921","32.9536057"],["-112.6868451","32.9536455"],["-112.6865805","32.9536666"],["-112.6863232","32.9536734"],["-112.6859639","32.9536619"],["-112.6855653","32.953626"],["-112.6852984","32.9535766"],["-112.6852436","32.9536897"],["-112.6845055","32.9561439"],["-112.6843627","32.9565468"],["-112.6842039","32.9568215"],["-112.6839373","32.9570914"],["-112.683667","32.9573262"],["-112.6835481","32.9574811"],["-112.6833665","32.9576305"],["-112.6819722","32.9587334"],["-112.6816237","32.9590315"],["-112.6805943","32.9599725"],["-112.6791001","32.961421"],["-112.6788543","32.9616794"],["-112.6775292","32.9632038"],["-112.6768606","32.9640399"],["-112.6759739","32.9652573"],["-112.6752848","32.9662843"],["-112.6743897","32.9677941"],["-112.6737997","32.968919"],["-112.6735972","32.9693221"],["-112.6730876","32.9703938"],["-112.6729075","32.9707745"],["-112.672516","32.9715872"],["-112.6723533","32.971898"],["-112.6615934","32.994779"],["-112.6591581","32.9999519"],["-112.6590363","33.000228"],["-112.6586758","33.0010152"],["-112.6585715","33.0012218"],["-112.6561842","33.0062841"],["-112.6558532","33.0069637"],["-112.655029","33.0086872"],["-112.6545943","33.0096214"],["-112.6540856","33.0107044"],["-112.6534703","33.012006"],["-112.651191","33.0168963"],["-112.650602","33.0183462"],["-112.6502932","33.0192139"],["-112.6498177","33.0209038"],["-112.6441033","33.0441738"],["-112.6439481","33.0449826"],["-112.6437635","33.0460566"],["-112.6436518","33.0470566"],["-112.6435661","33.048059"],["-112.643518","33.0490865"],["-112.6435193","33.0502767"],["-112.6435579","33.0513407"],["-112.6436406","33.0523609"],["-112.6449866","33.0637906"],["-112.6462051","33.074075"],["-112.6484678","33.0932198"],["-112.6489946","33.0976017"],["-112.6493551","33.100837"],["-112.64948","33.1026182"],["-112.64967","33.1162285"],["-112.6500401","33.1230091"],["-112.6500384","33.1380345"],["-112.6499763","33.1447007"],["-112.6499671","33.1456243"],["-112.6498703","33.1669898"],["-112.6499108","33.1677171"],["-112.6501783","33.1699808"],["-112.6503258","33.1717163"],["-112.6503988","33.1748095"],["-112.6504908","33.180446"],["-112.6505479","33.1815027"],["-112.6507705","33.1828394"],["-112.6513701","33.1860278"],["-112.6515223","33.187128"],["-112.6515993","33.1882777"],["-112.6515969","33.1896239"],["-112.6515533","33.1905053"],["-112.6513777","33.1919124"],["-112.6512118","33.1927832"],["-112.6509898","33.1937146"],["-112.6506322","33.1948944"],["-112.6471714","33.2040235"],["-112.6468747","33.2049649"],["-112.6465551","33.206256"],["-112.6410079","33.2334907"],["-112.640905","33.2340023"],["-112.6397385","33.2397516"],["-112.6394895","33.2408262"],["-112.6392898","33.2415949"],["-112.6388057","33.2431834"],["-112.6384452","33.2442605"],["-112.6380382","33.2455029"],["-112.6377007","33.2467007"],["-112.6372979","33.2485494"],["-112.6279736","33.2944696"],["-112.6231782","33.316353"],["-112.6231257","33.31663"],["-112.6230396","33.3171152"],["-112.6229861","33.3174987"],["-112.6229204","33.3181415"],["-112.6228954","33.3184829"],["-112.6228879","33.3189679"],["-112.623687","33.3438502"],["-112.6237412","33.3447729"],["-112.6239726","33.3463034"],["-112.624117","33.3472109"],["-112.6244431","33.3493164"],["-112.6245853","33.3504787"],["-112.6250589","33.3544785"],["-112.6251281","33.3550473"],["-112.6251694","33.3557111"],["-112.6251842","33.3565861"],["-112.6251828","33.3584794"],["-112.6251726","33.3646824"],["-112.6251374","33.3655799"],["-112.6250066","33.3676275"],["-112.6249135","33.3697922"],["-112.624865","33.3729418"],["-112.6248544","33.3750884"],["-112.6249155","33.3764456"],["-112.6249724","33.3769402"],["-112.6252796","33.3795843"],["-112.6253433","33.3804591"],["-112.6255268","33.4069164"],["-112.6255743","33.4076287"],["-112.6256929","33.4084737"],["-112.6258056","33.4092095"],["-112.6259483","33.4101756"],["-112.6260134","33.4109781"],["-112.6260835","33.4122535"],["-112.6261623","33.4198871"],["-112.6261579","33.4213177"],["-112.6261176","33.4216282"],["-112.6260696","33.4218902"],["-112.6260117","33.422095"],["-112.625943","33.422298"],["-112.6257417","33.422753"],["-112.6255772","33.423027"],["-112.6252673","33.4234272"],["-112.6251188","33.4235481"],["-112.6248382","33.4238003"],["-112.6226068","33.4256511"],["-112.6222407","33.4259298"],["-112.6220567","33.4260374"],["-112.6218367","33.4261627"],["-112.6215667","33.4263048"],["-112.6212637","33.426418"],["-112.6211082","33.4264714"],["-112.6209161","33.4265288"],["-112.6204455","33.4266478"],["-112.6202918","33.4266786"],["-112.6201314","33.4267048"],["-112.6195417","33.4267529"],["-112.6173855","33.4267933"],["-112.6164838","33.4268429"],["-112.6114583","33.4274055"],["-112.609387","33.4277886"],["-112.6056216","33.4287292"],["-112.5912948","33.4333239"],["-112.5911414","33.4333733"],["-112.5907411","33.4335017"],["-112.5905978","33.4335473"],["-112.5905413","33.4335656"],["-112.5893908","33.4339405"],["-112.5052485","33.4610203"],["-112.5043386","33.4612746"],["-112.504319","33.46128"],["-112.504136","33.4613255"],["-112.5029159","33.4615637"],["-112.5019898","33.4617385"],["-112.5003654","33.4619774"],["-112.4987343","33.4621674"],["-112.4980853","33.4622325"],["-112.49769","33.4622617"],["-112.49717","33.4622939"],["-112.4960945","33.4623482"],["-112.4665622","33.4623199"],["-112.4656886","33.4623012"],["-112.4643122","33.4622238"],["-112.4629315","33.4620627"],["-112.4600621","33.4616449"],["-112.4590033","33.4615162"],["-112.4584545","33.461468"],["-112.4572495","33.4614045"],["-112.4311094","33.4614407"],["-112.420662","33.4618142"],["-112.4168058","33.4618529"],["-112.4144546","33.4617806"],["-112.4118123","33.4616569"],["-112.4104947","33.4615633"],["-112.4102536","33.4615461"],["-112.4055801","33.4612797"],["-112.396031","33.4611857"],["-112.3816169","33.4611086"],["-112.3811379","33.4610977"],["-112.3803614","33.4610568"],["-112.3791362","33.4609354"],["-112.3783503","33.4608215"],["-112.3774486","33.4606528"],["-112.3763963","33.46041"],["-112.375416","33.4601373"],["-112.3706781","33.4587013"],["-112.3698182","33.458472"],["-112.3693275","33.4583575"],["-112.3685502","33.4581991"],["-112.3681345","33.4581284"],["-112.3676187","33.4580504"],["-112.3666748","33.4579393"],["-112.3654077","33.4578469"],["-112.3479237","33.4577339"],["-112.3452969","33.4577147"],["-112.3182281","33.4575478"],["-112.3158881","33.457658"],["-112.3149504","33.4577604"],["-112.3139794","33.4578921"],["-112.3131914","33.458026"],["-112.2966371","33.4609107"],["-112.2897804","33.4611621"],["-112.2853702","33.4612421"],["-112.2713468","33.4614815"],["-112.2695201","33.4615427"],["-112.260516","33.4619798"],["-112.2582757","33.4620755"],["-112.252797","33.4621401"],["-112.2397404","33.4620897"],["-112.2383114","33.4621022"],["-112.2381146","33.4621058"],["-112.2266291","33.4622494"],["-112.2207129","33.4623987"],["-112.2204993","33.4624038"],["-112.1959835","33.4626255"],["-112.1925228","33.4626989"],["-112.1894693","33.4627164"],["-112.1865112","33.4627179"],["-112.1828622","33.4626541"],["-112.1668313","33.4625344"],["-112.1511567","33.4617268"],["-112.1460548","33.4615896"],["-112.1452241","33.461601"],["-112.1435914","33.4616431"],["-112.1431735","33.4616527"],["-112.14311","33.4616544"],["-112.1429812","33.4616574"],["-112.1423865","33.4616906"],["-112.1406763","33.461806"],["-112.1391483","33.4620412"],["-112.1372038","33.4623855"],["-112.1365121","33.4625021"],["-112.1360341","33.462569"],["-112.135568","33.4626187"],["-112.135102","33.4626567"],["-112.1348019","33.4626761"],["-112.134688","33.4626816"],["-112.1341507","33.4627034"],["-112.1337491","33.4627045"],["-112.1326718","33.4626583"],["-112.1317442","33.4625637"],["-112.1299425","33.4622925"],["-112.129343","33.4621952"],["-112.1289229","33.4621196"],["-112.1281477","33.4620226"],["-112.127169","33.4619171"],["-112.1262252","33.4618316"],["-112.1239323","33.4617998"],["-112.1201821","33.4617484"],["-112.1152728","33.4616923"],["-112.1122032","33.4616704"],["-112.0956228","33.4615624"],["-112.0933736","33.4615687"],["-112.0925415","33.4615628"],["-112.0916462","33.461533"],["-112.090261","33.4614245"],["-112.0847129","33.46085"],["-112.0839391","33.4608032"],["-112.083228","33.4607847"],["-112.0820123","33.4608519"],["-112.0811049","33.4609762"],["-112.0792824","33.4613091"],["-112.0786978","33.4613917"],["-112.0780388","33.4614521"],["-112.0762426","33.4614247"],["-112.0738287","33.4614462"],["-112.0726202","33.4615586"],["-112.0714156","33.4617786"],["-112.0699675","33.4620703"],["-112.0695681","33.4620391"],["-112.0692558","33.4620141"],["-112.0691484","33.4620035"],["-112.0684845","33.4619358"],["-112.06756","33.4617994"],["-112.0670943","33.4617184"],["-112.0667068","33.4616403"],["-112.0664907","33.4615839"],["-112.0657776","33.4614655"],["-112.0656351","33.4614377"],["-112.0655633","33.4614155"],["-112.0654842","33.4613899"],["-112.0654402","33.4613681"],["-112.0654162","33.4613507"],["-112.065396","33.4613336"],["-112.065381","33.4613081"],["-112.065364","33.461273"],["-112.0653467","33.4612162"],["-112.0653301","33.4611475"],["-112.0653143","33.461068"],["-112.0653026","33.460937"],["-112.0653186","33.4587692"],["-112.0652545","33.4586585"],["-112.0652487","33.4585054"],["-112.0652168","33.4554681"],["-112.0652412","33.4545022"],["-112.0652179","33.4538321"],["-112.065179","33.4531587"],["-112.065176","33.4525686"],["-112.0651512","33.4511544"],["-112.0651335","33.4507944"],["-112.0651334","33.4506632"],["-112.0651907","33.4505798"],["-112.0651855","33.4504362"],["-112.0651218","33.4503695"],["-112.0651153","33.4497985"],["-112.0651216","33.4495512"],["-112.0651184","33.4492043"],["-112.0651107","33.4488235"],["-112.065193","33.4487084"],["-112.0652116","33.4484889"],["-112.0652219","33.4482274"],["-112.0654095","33.4482129"],["-112.0673022","33.4482364"],["-112.0674411","33.448235"],["-112.0676634","33.4482369"],["-112.068736","33.4482352"],["-112.0711013","33.4482437"],["-112.0713691","33.4482383"],["-112.0714006","33.4482369"],["-112.0718952","33.4482151"],["-112.0721808","33.448203"],["-112.0727551","33.4481874"],["-112.0733041","33.4481911"],["-112.0739711","33.4482119"]] } }; const coordinates_1_0 = geojson_1_0.geometry.coordinates; for (const coord of coordinates_1_0) { bounds_1.extend(coord); contentMap_1.fitBounds(bounds_1, {padding: {top: 60, bottom:60, left: 60, right: 60}}); } contentMap_1.on('load', () => { contentMap_1.addLayer({ id: 'route1_0', type: 'line', source: { type: 'geojson', data: geojson_1_0 }, layout: { 'line-join': 'round', 'line-cap': 'round' }, paint: { 'line-color': '#0b7172', 'line-width': 5, 'line-opacity': 0.80 } }); }); contentMap_1.fitBounds(bounds_1, {padding: {top: 60, bottom: 60, left: 60, right: 60}}); const geojson_1_1 = { type: 'Feature', properties: {}, geometry: { type: 'LineString', coordinates: [["-117.1664036","32.7157692"],["-117.1664982","32.7157724"],["-117.1665051","32.7159129"],["-117.1665181","32.7162603"],["-117.1665307","32.7165941"],["-117.1665336","32.7167197"],["-117.1665331","32.7167543"],["-117.1665324","32.7167863"],["-117.1664926","32.7177692"],["-117.1664911","32.7180481"],["-117.1664902","32.718136"],["-117.1664856","32.7188118"],["-117.156897","32.7188601"],["-117.1567172","32.718859"],["-117.1557524","32.7188586"],["-117.1554131","32.7188698"],["-117.1552531","32.718897"],["-117.1551214","32.7189214"],["-117.1550639","32.7189456"],["-117.1550019","32.7189851"],["-117.1549381","32.7190485"],["-117.1548852","32.7191293"],["-117.1548603","32.7192295"],["-117.154858","32.7195343"],["-117.154855","32.7200932"],["-117.1548439","32.7207159"],["-117.1548179","32.7213537"],["-117.1547618","32.7218192"],["-117.1547738","32.7220757"],["-117.1548129","32.7223424"],["-117.1549042","32.7227114"],["-117.1551698","32.7235991"],["-117.1556601","32.7251071"],["-117.1557951","32.7256014"],["-117.1558496","32.7258883"],["-117.1558866","32.7261643"],["-117.1559039","32.7265159"],["-117.1559061","32.7267758"],["-117.1558918","32.7270091"],["-117.1558685","32.7271928"],["-117.1558155","32.7274074"],["-117.1557524","32.7275967"],["-117.1555995","32.7279269"],["-117.1550677","32.728881"],["-117.1547168","32.7295227"],["-117.1545788","32.7298149"],["-117.1545091","32.7300319"],["-117.1544504","32.7302335"],["-117.1544026","32.7304761"],["-117.1543808","32.7306764"],["-117.1543654","32.7309131"],["-117.1543728","32.7312065"],["-117.1544106","32.7315031"],["-117.1544603","32.7317151"],["-117.1545174","32.7319299"],["-117.1546051","32.7321706"],["-117.1547145","32.7324173"],["-117.1551905","32.7332474"],["-117.1553964","32.7336145"],["-117.1555157","32.7338801"],["-117.1556441","32.7342329"],["-117.1557032","32.734522"],["-117.1557476","32.7349043"],["-117.1557622","32.7351469"],["-117.1557555","32.7353913"],["-117.155736","32.7358494"],["-117.1557356","32.7362436"],["-117.1557404","32.7366149"],["-117.1558153","32.7374707"],["-117.1558802","32.737999"],["-117.1562331","32.7398703"],["-117.156324","32.7405755"],["-117.156359","32.7410262"],["-117.1563719","32.7413617"],["-117.1563383","32.7419837"],["-117.1562164","32.7433631"],["-117.1562133","32.7437863"],["-117.1562283","32.74415"],["-117.1564011","32.7455401"],["-117.1564627","32.7461181"],["-117.156466","32.7464069"],["-117.1564454","32.7466233"],["-117.1564","32.7468738"],["-117.1562172","32.7474281"],["-117.1558111","32.7485692"],["-117.1553025","32.7500655"],["-117.1552755","32.7502421"],["-117.1552697","32.7504123"],["-117.1552852","32.7506377"],["-117.1553454","32.7508916"],["-117.1554289","32.7511281"],["-117.1556217","32.7514596"],["-117.1558188","32.7516973"],["-117.1559703","32.7518479"],["-117.1563002","32.7521041"],["-117.1567591","32.7524123"],["-117.1571048","32.7526569"],["-117.1573601","32.7528585"],["-117.1575914","32.7530731"],["-117.1577933","32.7532941"],["-117.1579765","32.7535301"],["-117.1581648","32.7538132"],["-117.158324","32.7541093"],["-117.1584531","32.7544054"],["-117.1585484","32.7546857"],["-117.1587264","32.755378"],["-117.1588287","32.7557151"],["-117.1589303","32.7559982"],["-117.1590932","32.7563436"],["-117.1592597","32.7566538"],["-117.1594383","32.7569379"],["-117.1596835","32.7572789"],["-117.1599609","32.7575948"],["-117.1602547","32.7578903"],["-117.1615521","32.7590503"],["-117.1621345","32.7595806"],["-117.162436","32.7599225"],["-117.1627252","32.7603436"],["-117.1629198","32.7607465"],["-117.1630629","32.761158"],["-117.1631457","32.7615443"],["-117.1632881","32.7623542"],["-117.1633038","32.7626053"],["-117.1633124","32.7627931"],["-117.1632967","32.7633251"],["-117.1632604","32.7636188"],["-117.1632038","32.7639062"],["-117.1627962","32.7654154"],["-117.1615141","32.7703674"],["-117.1613809","32.7708614"],["-117.1610164","32.7722664"],["-117.1609469","32.7728295"],["-117.1609213","32.773431"],["-117.1610127","32.7741735"],["-117.1613071","32.7750334"],["-117.1617376","32.7758663"],["-117.1621436","32.7766529"],["-117.1623806","32.7772265"],["-117.1624923","32.7776089"],["-117.1625707","32.7778964"],["-117.1626355","32.7781562"],["-117.1626936","32.7784299"],["-117.1627439","32.7787158"],["-117.1627841","32.7790264"],["-117.1628069","32.7792864"],["-117.1628195","32.7795218"],["-117.1628227","32.7797829"],["-117.1628186","32.7800729"],["-117.1627962","32.7803841"],["-117.1627635","32.7806938"],["-117.1627183","32.7809749"],["-117.1626593","32.781265"],["-117.1625851","32.781571"],["-117.1624791","32.7819104"],["-117.1623503","32.7822837"],["-117.1596368","32.7896735"],["-117.1591801","32.7908828"],["-117.1589215","32.7916106"],["-117.158739","32.7921191"],["-117.1575192","32.7954947"],["-117.1512956","32.8125778"],["-117.1508957","32.8135883"],["-117.1501491","32.8151239"],["-117.1481986","32.818773"],["-117.1460924","32.8225558"],["-117.1444059","32.8256752"],["-117.1412518","32.8314872"],["-117.1403987","32.8329129"],["-117.1397715","32.8338049"],["-117.1395035","32.8341579"],["-117.1393099","32.8344233"],["-117.1387448","32.8350907"],["-117.1340405","32.8403965"],["-117.1326175","32.8419385"],["-117.1308151","32.8439368"],["-117.1265666","32.8486535"],["-117.125192","32.8501675"],["-117.1247824","32.8506181"],["-117.1229761","32.8525756"],["-117.1225829","32.852919"],["-117.1222163","32.853205"],["-117.121831","32.8534933"],["-117.1211626","32.8539156"],["-117.1207577","32.8541194"],["-117.1202854","32.8543389"],["-117.119765","32.8545501"],["-117.1178235","32.8552446"],["-117.1163913","32.8557339"],["-117.1159324","32.8559126"],["-117.1155505","32.8560962"],["-117.1151444","32.8563342"],["-117.1141443","32.8569952"],["-117.1138344","32.8572065"],["-117.1135184","32.8574278"],["-117.1132833","32.8576099"],["-117.113073","32.8578016"],["-117.112864","32.8580269"],["-117.1126925","32.8582566"],["-117.1123688","32.8587471"],["-117.1122653","32.8590425"],["-117.1121818","32.8594383"],["-117.1121836","32.8601519"],["-117.1121475","32.8604261"],["-117.1120718","32.8606455"],["-117.1119292","32.8609202"],["-117.1116784","32.861342"],["-117.1112905","32.8620178"],["-117.1109119","32.8626334"],["-117.1104925","32.8633624"],["-117.1098523","32.8645139"],["-117.1096145","32.8649393"],["-117.1093504","32.865416"],["-117.1090545","32.8659261"],["-117.1087889","32.866457"],["-117.1085451","32.8670003"],["-117.1080744","32.8682148"],["-117.1076468","32.8697021"],["-117.1074987","32.8705111"],["-117.1074131","32.8710939"],["-117.1073357","32.871786"],["-117.1073129","32.8725048"],["-117.107327","32.874119"],["-117.10738","32.875389"],["-117.1074185","32.8758025"],["-117.1075138","32.876452"],["-117.1076234","32.877098"],["-117.1079886","32.8786454"],["-117.1081764","32.8792844"],["-117.1087364","32.8807783"],["-117.1089028","32.8811772"],["-117.1091948","32.8817919"],["-117.109446","32.8822953"],["-117.1098133","32.8829841"],["-117.1134161","32.8892572"],["-117.1138539","32.8900988"],["-117.1142793","32.8909968"],["-117.1145179","32.8915412"],["-117.1147221","32.8920296"],["-117.1150806","32.8929807"],["-117.1152878","32.8935887"],["-117.1153894","32.8939037"],["-117.1154929","32.8942235"],["-117.1158663","32.8954449"],["-117.1160237","32.8960307"],["-117.1161096","32.896345"],["-117.1162538","32.8974243"],["-117.1163103","32.8982284"],["-117.1163332","32.8994454"],["-117.1163309","32.9005195"],["-117.1163508","32.9028021"],["-117.1163808","32.908484"],["-117.1163828","32.909519"],["-117.1163885","32.9113292"],["-117.1163705","32.9120378"],["-117.1163201","32.913608"],["-117.1162616","32.9144628"],["-117.1159021","32.9181375"],["-117.1156479","32.9200448"],["-117.1150872","32.9231177"],["-117.1145846","32.9254493"],["-117.1140906","32.9274067"],["-117.1134633","32.9295551"],["-117.1120473","32.9342823"],["-117.1101166","32.9404557"],["-117.1098309","32.9412922"],["-117.1095719","32.9419921"],["-117.1093394","32.9425651"],["-117.1087967","32.9437041"],["-117.1085007","32.9442772"],["-117.1082183","32.9447911"],["-117.1078296","32.9454206"],["-117.1030933","32.9524599"],["-117.1009106","32.9559029"],["-117.0993735","32.9586683"],["-117.099145","32.9590125"],["-117.0988423","32.9594133"],["-117.0982537","32.9601642"],["-117.0979568","32.9605483"],["-117.0965627","32.9626965"],["-117.0960994","32.9634389"],["-117.0952232","32.9648194"],["-117.0883856","32.9756111"],["-117.0877134","32.9766815"],["-117.086323","32.9788752"],["-117.0841049","32.9824184"],["-117.0837011","32.9831628"],["-117.083461","32.9836987"],["-117.0832646","32.9841773"],["-117.0831411","32.9845386"],["-117.0830026","32.9850883"],["-117.0828509","32.9857484"],["-117.0827779","32.9862641"],["-117.0827452","32.9866887"],["-117.0827214","32.9871249"],["-117.0827222","32.9875935"],["-117.0827468","32.9881481"],["-117.0827946","32.9886322"],["-117.0828624","32.989053"],["-117.0833314","32.9912537"],["-117.0834868","32.9920123"],["-117.0835768","32.9925772"],["-117.0836727","32.993396"],["-117.0836889","32.9939541"],["-117.083695","32.9945041"],["-117.08367","32.9950981"],["-117.0836104","32.9958468"],["-117.0834715","32.9967149"],["-117.0833039","32.9974448"],["-117.0831102","32.998143"],["-117.0818715","33.001688"],["-117.0816868","33.0022268"],["-117.0812656","33.0034686"],["-117.0810013","33.0043779"],["-117.0808739","33.0048589"],["-117.0807113","33.0055729"],["-117.0805672","33.0062654"],["-117.0804614","33.0069351"],["-117.0787971","33.0214931"],["-117.0787532","33.0221623"],["-117.0786927","33.0278298"],["-117.0786687","33.028826"],["-117.0786233","33.0293899"],["-117.0785713","33.0298109"],["-117.078481","33.0304109"],["-117.0783785","33.0309281"],["-117.0782751","33.031407"],["-117.0781746","33.0317948"],["-117.078084","33.0321255"],["-117.077976","33.0324565"],["-117.0779239","33.0326091"],["-117.0772972","33.0342001"],["-117.0733205","33.0437987"],["-117.0731251","33.0443969"],["-117.0729757","33.0450119"],["-117.0728349","33.0458366"],["-117.0727819","33.0464308"],["-117.0727583","33.0469279"],["-117.0727791","33.0480218"],["-117.0728138","33.0484726"],["-117.0728649","33.0493808"],["-117.0728615","33.0499127"],["-117.0728423","33.0504985"],["-117.0727872","33.0511885"],["-117.0726971","33.0518794"],["-117.0725734","33.0525393"],["-117.0724618","33.052993"],["-117.0721835","33.0539796"],["-117.0720396","33.054403"],["-117.071642","33.0553641"],["-117.0709892","33.0567313"],["-117.0703123","33.058078"],["-117.0698733","33.0591298"],["-117.0695712","33.0599588"],["-117.0694145","33.0604883"],["-117.0692967","33.0609377"],["-117.0692037","33.0613063"],["-117.0690185","33.0622925"],["-117.0689523","33.0627958"],["-117.0688999","33.0632899"],["-117.0688668","33.0643763"],["-117.0688625","33.0651426"],["-117.0688841","33.0657396"],["-117.0689301","33.0663264"],["-117.0692235","33.0683571"],["-117.0693916","33.0698403"],["-117.0694887","33.0706042"],["-117.0699391","33.0740155"],["-117.0700691","33.0747646"],["-117.0703546","33.0760909"],["-117.0704758","33.0765322"],["-117.0708139","33.0775543"],["-117.0709754","33.0780292"],["-117.0712732","33.0787987"],["-117.0714893","33.0793066"],["-117.0717414","33.079862"],["-117.0720061","33.080406"],["-117.072785","33.0819178"],["-117.0739941","33.0838626"],["-117.0745644","33.0846042"],["-117.0751303","33.0853027"],["-117.0763984","33.0866841"],["-117.0775888","33.08784"],["-117.0836398","33.0934158"],["-117.0858252","33.0954734"],["-117.0867076","33.0963474"],["-117.0879446","33.0976621"],["-117.0885513","33.0983763"],["-117.0892046","33.0991942"],["-117.0897662","33.0999781"],["-117.0909267","33.1017009"],["-117.0956782","33.1097488"],["-117.0977154","33.1132134"],["-117.0983063","33.1142532"],["-117.0987383","33.1150483"],["-117.0990952","33.115726"],["-117.1000079","33.1175644"],["-117.1002711","33.1180379"],["-117.1006891","33.1187442"],["-117.1011645","33.1195356"],["-117.1016744","33.1203846"],["-117.1020791","33.1210603"],["-117.1028233","33.1223766"],["-117.1032586","33.123206"],["-117.1035528","33.1238319"],["-117.103777","33.1243582"],["-117.1039396","33.1247684"],["-117.1042651","33.1256483"],["-117.1044026","33.1260525"],["-117.1045754","33.1266735"],["-117.1047351","33.1273322"],["-117.1047855","33.1275271"],["-117.1048316","33.1277652"],["-117.1048734","33.1280208"],["-117.1050569","33.1295293"],["-117.1051197","33.1302342"],["-117.105131","33.1306783"],["-117.1050984","33.1316797"],["-117.105033","33.1330442"],["-117.1049247","33.1353522"],["-117.104512","33.1433358"],["-117.1039432","33.1546311"],["-117.1039428","33.1556702"],["-117.1039834","33.1563247"],["-117.1040348","33.1569013"],["-117.1041662","33.1577882"],["-117.1042542","33.1582527"],["-117.104372","33.1588048"],["-117.1045081","33.1594027"],["-117.1047048","33.1601025"],["-117.1049355","33.1608587"],["-117.1051697","33.1614999"],["-117.1054312","33.1621213"],["-117.1057202","33.1627721"],["-117.1060686","33.1634371"],["-117.1140197","33.1773316"],["-117.1277026","33.2010722"],["-117.1306333","33.2054683"],["-117.1341535","33.2102607"],["-117.1390659","33.2169415"],["-117.1400413","33.2183368"],["-117.140699","33.2193444"],["-117.1416294","33.2209159"],["-117.1428076","33.2231647"],["-117.1435212","33.2247413"],["-117.1464316","33.2314957"],["-117.1479177","33.2349485"],["-117.1543295","33.2498609"],["-117.1552997","33.2521363"],["-117.1558784","33.2534147"],["-117.1564952","33.2547879"],["-117.1569387","33.2558601"],["-117.1572432","33.2567108"],["-117.1575385","33.2575933"],["-117.1578005","33.2585282"],["-117.1580029","33.2593524"],["-117.1582485","33.2605807"],["-117.1584056","33.2617738"],["-117.1584484","33.2625081"],["-117.1584648","33.2633935"],["-117.1584179","33.2645278"],["-117.1583581","33.2651491"],["-117.1582748","33.2657602"],["-117.1581728","33.2664031"],["-117.1580777","33.2669236"],["-117.1578535","33.26793"],["-117.157533","33.2690263"],["-117.1571532","33.2700704"],["-117.1568535","33.2707999"],["-117.1565851","33.2714198"],["-117.1548526","33.2745183"],["-117.1516694","33.2800114"],["-117.1513251","33.280603"],["-117.150718","33.2818161"],["-117.1501253","33.2832084"],["-117.1496559","33.2847774"],["-117.1494473","33.2858662"],["-117.1493375","33.2865475"],["-117.1492525","33.2872188"],["-117.1491932","33.2886249"],["-117.149275","33.2911562"],["-117.1502153","33.3069537"],["-117.1503185","33.3077733"],["-117.1505039","33.308794"],["-117.150752","33.3098946"],["-117.1510481","33.3109049"],["-117.1515554","33.3123105"],["-117.1518847","33.3130519"],["-117.1522343","33.3137704"],["-117.1525854","33.3143928"],["-117.156959","33.3214453"],["-117.1577026","33.3230432"],["-117.1579624","33.3237067"],["-117.1582986","33.3247036"],["-117.1584677","33.325252"],["-117.1587016","33.3261591"],["-117.1588633","33.3270883"],["-117.1589343","33.3275671"],["-117.159038","33.3284731"],["-117.1590964","33.3294693"],["-117.159107","33.330065"],["-117.1589682","33.3377984"],["-117.1589585","33.3387405"],["-117.1587432","33.3534776"],["-117.1587244","33.3566493"],["-117.1587696","33.3572608"],["-117.1588328","33.3578803"],["-117.1589308","33.3586051"],["-117.1590772","33.359406"],["-117.1592625","33.3602588"],["-117.1595283","33.3611835"],["-117.159889","33.362174"],["-117.1602222","33.3630235"],["-117.1605544","33.3637715"],["-117.1608171","33.3643272"],["-117.1610446","33.364779"],["-117.1613345","33.3652681"],["-117.1616778","33.3658293"],["-117.1620374","33.366412"],["-117.162463","33.3670597"],["-117.1630237","33.3678087"],["-117.1641515","33.3691449"],["-117.1646753","33.3697258"],["-117.1654094","33.370457"],["-117.1679798","33.3728087"],["-117.1684653","33.3733076"],["-117.1693717","33.3742797"],["-117.1698016","33.3747657"],["-117.1702595","33.3753278"],["-117.1708092","33.3760957"],["-117.1715054","33.3771251"],["-117.1717285","33.3774742"],["-117.1725223","33.3789881"],["-117.1729505","33.3798462"],["-117.1732492","33.3806291"],["-117.1735765","33.3815667"],["-117.1737932","33.3822724"],["-117.1739665","33.3829343"],["-117.1741529","33.3838925"],["-117.1743318","33.3850467"],["-117.174413","33.3858723"],["-117.1744639","33.386706"],["-117.1744703","33.3877579"],["-117.1744383","33.3885906"],["-117.1743167","33.3897713"],["-117.1741416","33.3908314"],["-117.1739044","33.3919226"],["-117.1737292","33.3925345"],["-117.1734248","33.3934373"],["-117.1729483","33.3945673"],["-117.1723959","33.3958053"],["-117.1720082","33.3965871"],["-117.1716487","33.3972424"],["-117.1708946","33.3985147"],["-117.17034","33.399379"],["-117.1696885","33.4003486"],["-117.1689315","33.4013963"],["-117.1682364","33.4023168"],["-117.1639938","33.4074348"],["-117.1629568","33.4088133"],["-117.1613009","33.4110777"],["-117.1595947","33.4133963"],["-117.1548178","33.41998"],["-117.1517448","33.4243237"],["-117.1513079","33.4249389"],["-117.1510134","33.4253153"],["-117.1506583","33.4257454"],["-117.1502824","33.4261742"],["-117.1497904","33.4267148"],["-117.1493949","33.4271035"],["-117.1482917","33.4280728"],["-117.1455983","33.430293"],["-117.1444226","33.4313196"],["-117.143081","33.4326505"],["-117.1421599","33.4336775"],["-117.1410504","33.4350901"],["-117.1401277","33.4364623"],["-117.139732","33.4371416"],["-117.1391962","33.4381"],["-117.1387832","33.438939"],["-117.1384327","33.439725"],["-117.1380921","33.4405353"],["-117.1377718","33.4414397"],["-117.1358869","33.44721"],["-117.1354491","33.4486767"],["-117.1353264","33.4492774"],["-117.1352371","33.4498245"],["-117.1351651","33.4503697"],["-117.135128","33.4509388"],["-117.1351301","33.4517912"],["-117.1353964","33.4547686"],["-117.1355291","33.4561556"],["-117.135698","33.4576907"],["-117.1361026","33.4614299"],["-117.1362073","33.4628932"],["-117.1362267","33.4635885"],["-117.1361897","33.4642709"],["-117.1361482","33.4649135"],["-117.1361134","33.4656315"],["-117.1361133","33.4663256"],["-117.1361584","33.4669598"],["-117.1363107","33.4682111"],["-117.1364196","33.4688206"],["-117.136531","33.4693045"],["-117.1366574","33.4697833"],["-117.1368527","33.4704354"],["-117.1374125","33.4719925"],["-117.1384087","33.474731"],["-117.1387373","33.4756739"],["-117.1392358","33.4769942"],["-117.1412225","33.4825658"],["-117.1426516","33.486548"],["-117.1432083","33.4880577"],["-117.144465","33.4915402"],["-117.1447445","33.4922863"],["-117.1449292","33.4926992"],["-117.1451277","33.4930847"],["-117.145333","33.4934538"],["-117.1455593","33.49382"],["-117.1457435","33.4940899"],["-117.1459633","33.4943908"],["-117.1461565","33.4946432"],["-117.1465024","33.4950484"],["-117.1467319","33.4952926"],["-117.1472923","33.4958606"],["-117.1487191","33.4973381"],["-117.1489809","33.4976432"],["-117.1492671","33.4980012"],["-117.1499682","33.4989102"],["-117.1505268","33.4997367"],["-117.1507961","33.5001595"],["-117.1510817","33.5006578"],["-117.1513366","33.5011423"],["-117.1516108","33.5016962"],["-117.1523169","33.5032391"],["-117.1528149","33.5043321"],["-117.1572944","33.5141153"],["-117.1576771","33.5148114"],["-117.1579635","33.515284"],["-117.1582161","33.5156749"],["-117.1602681","33.5187909"],["-117.1764087","33.5429871"],["-117.1771321","33.5442575"],["-117.1785373","33.5466913"],["-117.1791978","33.5478398"],["-117.1795716","33.5485695"],["-117.1798878","33.5493147"],["-117.1801796","33.5501194"],["-117.1803256","33.5506515"],["-117.180424","33.5510539"],["-117.1806519","33.5523733"],["-117.1807096","33.5531794"],["-117.1807243","33.5542853"],["-117.1807288","33.5575504"],["-117.1807344","33.5590741"],["-117.1807413","33.5604292"],["-117.1807797","33.5749791"],["-117.1807932","33.5786226"],["-117.180797","33.5856886"],["-117.1807339","33.5867146"],["-117.1806482","33.5874018"],["-117.1805348","33.5880646"],["-117.1803699","33.588788"],["-117.1801766","33.5894699"],["-117.1799767","33.590083"],["-117.1797661","33.5906411"],["-117.1794709","33.5913176"],["-117.178968","33.5923471"],["-117.1787612","33.5927119"],["-117.1784659","33.5931805"],["-117.1781068","33.5937185"],["-117.1737138","33.5993384"],["-117.1728605","33.6004725"],["-117.1726195","33.6008295"],["-117.1723898","33.60124"],["-117.1721789","33.6016478"],["-117.171982","33.6020945"],["-117.1718559","33.6024343"],["-117.1716656","33.6031359"],["-117.1714993","33.6039247"],["-117.1711072","33.6112941"],["-117.1710252","33.6132551"],["-117.1710234","33.6144201"],["-117.171098","33.6197691"],["-117.1711083","33.6457723"],["-117.1711066","33.6492877"],["-117.1710938","33.652047"],["-117.1710856","33.6568633"],["-117.1709363","33.6610089"],["-117.1708771","33.663827"],["-117.1708019","33.6801681"],["-117.1707045","33.6808633"],["-117.1705313","33.6826675"],["-117.1704548","33.683271"],["-117.1703517","33.6835289"],["-117.1702484","33.683713"],["-117.1700869","33.6839125"],["-117.1698699","33.6841749"],["-117.1697088","33.6844187"],["-117.1696462","33.6846888"],["-117.1695637","33.6849777"],["-117.1499613","33.684978"],["-117.1494932","33.6849935"],["-117.1491898","33.6850302"],["-117.1487004","33.6851008"],["-117.1479786","33.6852676"],["-117.1474864","33.6854242"],["-117.1468997","33.6856619"],["-117.1461334","33.6860751"],["-117.1456324","33.6864253"],["-117.1450791","33.6868867"],["-117.1446735","33.6873227"],["-117.144041","33.6880846"],["-117.1403999","33.6926014"],["-117.1399024","33.6931404"],["-117.139525","33.6934501"],["-117.1390771","33.6937715"],["-117.1385811","33.6940504"],["-117.1381327","33.6942651"],["-117.1376056","33.6944628"],["-117.1370678","33.6946295"],["-117.1364652","33.6947596"],["-117.1359034","33.6948309"],["-117.135225","33.6948741"],["-117.1344712","33.6948459"],["-117.1335236","33.6946993"],["-117.1329934","33.6945695"],["-117.1324978","33.6944018"],["-117.1319077","33.6941455"],["-117.1292901","33.6928811"],["-117.1288959","33.6927255"],["-117.1284282","33.6925772"],["-117.1280046","33.6924654"],["-117.1275369","33.6923744"],["-117.127099","33.6923134"],["-117.1264639","33.6922854"],["-117.1253264","33.6922811"],["-117.1201411","33.692303"],["-117.1195729","33.6923057"],["-117.0984857","33.6924171"],["-117.0977003","33.6924824"],["-117.0971624","33.6925811"],["-117.0966882","33.6926918"],["-117.0960403","33.6929016"],["-117.0949761","33.6933074"],["-117.092799","33.6941805"],["-117.0915257","33.6946988"],["-117.0891313","33.695646"],["-117.0886018","33.6958118"],["-117.0881652","33.6959214"],["-117.0876033","33.6960095"],["-117.0869552","33.6960725"],["-117.0857785","33.6960894"],["-117.0855107","33.6960924"],["-117.0848619","33.6961018"],["-117.0848596","33.6968679"],["-117.0848812","33.6981573"],["-117.0848802","33.6983302"],["-117.0848843","33.6989597"],["-117.0849254","33.703342"],["-117.0849153","33.7035691"],["-117.0849453","33.7086152"],["-117.084974","33.7101833"],["-117.0849797","33.7105522"],["-117.08498","33.7108939"],["-117.0849759","33.7109559"],["-117.0849635","33.7110872"],["-117.0849066","33.7114392"],["-117.0848463","33.7116383"],["-117.084786","33.7117907"],["-117.0847043","33.7119528"],["-117.0845654","33.7121789"],["-117.0844424","33.7123734"],["-117.0843675","33.7124751"],["-117.0842968","33.7125637"],["-117.0842127","33.7126468"],["-117.0841032","33.7127498"],["-117.083957","33.7128866"],["-117.0837832","33.7130211"],["-117.0837235","33.71306"],["-117.0835618","33.7131526"],["-117.0832202","33.7133195"],["-117.0829476","33.7134361"],["-117.082551","33.7135512"],["-117.079517","33.7143029"],["-117.0792213","33.7143837"],["-117.0789529","33.7144703"],["-117.0786054","33.7146201"],["-117.0784136","33.7147195"],["-117.0782691","33.7147983"],["-117.0780715","33.714916"],["-117.077968","33.7149846"],["-117.0778801","33.7150466"],["-117.0777718","33.7151297"],["-117.0776505","33.7152281"],["-117.0775275","33.7153377"],["-117.0773932","33.7154727"],["-117.0771795","33.7157129"],["-117.0769966","33.7159515"],["-117.0768905","33.7161075"],["-117.0767789","33.7163116"],["-117.0766942","33.7164906"],["-117.0765814","33.7167848"],["-117.0765172","33.7169963"],["-117.0764699","33.7172067"],["-117.0764477","33.7173438"],["-117.0764373","33.717487"],["-117.0764224","33.7183968"],["-117.0764069","33.7217605"],["-117.076422","33.7219947"],["-117.0764176","33.725618"],["-117.0763487","33.7357882"],["-117.0763444","33.7361241"],["-117.0763434","33.7364782"],["-117.0763573","33.7366839"],["-117.0763762","33.7368833"],["-117.0764362","33.7373017"],["-117.0764817","33.73764"],["-117.076501","33.7378802"],["-117.0765087","33.7380529"],["-117.0765013","33.7382802"],["-117.0764769","33.7386018"],["-117.0763323","33.7390137"],["-117.0735086","33.7391208"],["-117.0730799","33.7391537"],["-117.0725346","33.7392147"],["-117.0690915","33.7398476"],["-117.0687042","33.73993"],["-117.0684039","33.7400071"],["-117.0681583","33.7400827"],["-117.0675625","33.7402778"],["-117.0656784","33.740873"],["-117.065333","33.7410245"],["-117.065011","33.7411881"],["-117.0647034","33.7413692"],["-117.0644832","33.7415216"],["-117.0642583","33.7416909"],["-117.0640893","33.7418307"],["-117.0639253","33.7419652"],["-117.0635308","33.7422813"],["-117.0633719","33.74241"],["-117.0632626","33.742496"],["-117.0631644","33.7425835"],["-117.0628759","33.7427974"],["-117.0626647","33.7429322"],["-117.0624437","33.7430592"],["-117.0619932","33.7432802"],["-117.0617151","33.7433918"],["-117.0613923","33.7435079"],["-117.0611389","33.7435764"],["-117.0608491","33.743644"],["-117.0605172","33.7437046"],["-117.0602315","33.7437467"],["-117.0600103","33.7437659"],["-117.0327497","33.7438198"],["-117.0327975","33.7439225"],["-117.0327979","33.7443215"],["-117.0328388","33.7446082"],["-117.0328851","33.7448689"],["-117.032932","33.7450936"],["-117.0330116","33.7453672"],["-117.0331093","33.7456378"],["-117.0332589","33.7459558"],["-117.0333596","33.7461456"],["-117.0334698","33.7463346"],["-117.0336267","33.7465703"],["-117.03384","33.7468447"],["-117.0341412","33.747184"],["-117.0345395","33.7475859"],["-117.0348949","33.7479464"],["-117.0351453","33.7482286"],["-117.0352741","33.7483885"],["-117.0353688","33.7485189"],["-117.0354829","33.7486905"],["-117.0355953","33.7488774"],["-117.0357195","33.749119"],["-117.0357998","33.7492939"],["-117.0359375","33.749661"],["-117.0359984","33.7498531"],["-117.0361073","33.750351"],["-117.0361257","33.7504522"],["-117.0361333","33.7505285"],["-117.0361431","33.7506804"],["-117.0361794","33.7519736"],["-117.0361948","33.752802"],["-117.0362523","33.7547022"],["-117.0362456","33.7553259"],["-117.0362391","33.7555926"],["-117.0362808","33.7576898"],["-117.0362818","33.7580112"],["-117.036263","33.7582513"],["-117.0362467","33.7583683"],["-117.0362185","33.7585065"],["-117.0361658","33.7587101"],["-117.033577","33.7675955"],["-117.0334515","33.7680496"],["-117.0334096","33.7682573"],["-117.0333908","33.7684172"],["-117.0333729","33.768608"],["-117.0333613","33.7689522"],["-117.0333594","33.7695585"],["-117.0334099","33.77303"],["-117.0334646","33.7771006"],["-117.0335147","33.7808379"],["-117.0336056","33.7874103"],["-117.0335706","33.7876602"],["-117.0336719","33.7950497"],["-117.0336738","33.7977826"],["-117.033686","33.7979478"],["-117.0337128","33.7980118"],["-117.0337389","33.7980912"],["-117.0337228","33.7989108"],["-117.0333732","33.8234043"],["-117.0076347","33.8235622"],["-117.0062546","33.8235457"],["-117.0051679","33.8235218"],["-117.0042618","33.8235078"],["-117.0035182","33.8234757"],["-117.0035094","33.8236279"],["-117.0035632","33.8333893"],["-117.0035502","33.8351014"],["-117.0035199","33.842548"],["-117.0035723","33.8435244"],["-117.0036804","33.8441928"],["-117.0037979","33.8448095"],["-117.0039338","33.8453611"],["-117.0040905","33.8458912"],["-117.0042749","33.8463572"],["-117.004505","33.8469128"],["-117.0047501","33.8475037"],["-117.0049795","33.8479131"],["-117.0052207","33.8482962"],["-117.0054492","33.8486348"],["-117.0057739","33.8490555"],["-117.0060784","33.8494468"],["-117.0063407","33.8497936"],["-117.0068579","33.8504211"],["-117.0070524","33.8506863"],["-117.0071815","33.850891"],["-117.0072691","33.8510649"],["-117.0073613","33.8512577"],["-117.0074903","33.8515008"],["-117.0076588","33.8518731"],["-117.0079134","33.8525406"],["-117.0080128","33.8528589"],["-117.0080477","33.8530039"],["-117.008131","33.853263"],["-117.008198","33.8534934"],["-117.0083627","33.853953"],["-117.0085831","33.8546894"],["-117.0087624","33.8551916"],["-117.0089663","33.8557926"],["-117.0092846","33.8567136"],["-117.0093731","33.8569533"],["-117.0094477","33.8572327"],["-117.0094862","33.8575284"],["-117.0095033","33.8579761"],["-117.0094971","33.8583348"],["-117.0094638","33.8587059"],["-117.0093604","33.8592046"],["-117.009217","33.8596805"],["-117.0090716","33.8600497"],["-117.0089422","33.8602744"],["-117.0086688","33.8606491"],["-117.0085004","33.8609468"],["-117.008328","33.8612769"],["-117.0081469","33.8616671"],["-117.0079061","33.8622449"],["-117.0078382","33.8625263"],["-117.0078274","33.862759"],["-117.0078412","33.8630412"],["-117.0078965","33.8633383"],["-117.0080455","33.8638533"],["-117.0081909","33.864339"],["-117.0082429","33.8646113"],["-117.0082706","33.8649036"],["-117.0082644","33.8652592"],["-117.0082134","33.8656072"],["-117.0081311","33.8659305"],["-117.0079805","33.8662777"],["-117.0078218","33.8665177"],["-117.0076189","33.8667052"],["-117.0073693","33.8669026"],["-117.0069709","33.8671442"],["-117.0065083","33.8673649"],["-117.0049197","33.8680252"],["-117.0045506","33.8681602"],["-117.004243","33.868231"],["-117.0039323","33.8682834"],["-117.00358","33.8683043"],["-117.0021532","33.8682947"],["-117.0015709","33.8682978"],["-117.00124","33.8683367"],["-117.0009238","33.8684007"],["-117.0006188","33.8684906"],["-117.0001868","33.8686681"],["-116.9978753","33.8697884"],["-116.9975787","33.8699261"],["-116.9961742","33.8706116"],["-116.9955738","33.8709289"],["-116.9951758","33.8711869"],["-116.9948418","33.8714394"],["-116.9945159","33.8717302"],["-116.9942206","33.8720347"],["-116.993895","33.8724411"],["-116.9926252","33.8742402"],["-116.9923332","33.8747307"],["-116.9920872","33.8752139"],["-116.9919252","33.8756417"],["-116.9917943","33.8760503"],["-116.9917029","33.8764278"],["-116.9916328","33.8768361"],["-116.9911131","33.8805772"],["-116.9907718","33.8830756"],["-116.9906779","33.883734"],["-116.9902782","33.8867035"],["-116.990133","33.8874269"],["-116.9898969","33.888127"],["-116.9877433","33.893446"],["-116.9876","33.8938749"],["-116.9875112","33.8942836"],["-116.9874452","33.8948021"],["-116.9874347","33.8953393"],["-116.9874768","33.895791"],["-116.9876854","33.8969098"],["-116.9877316","33.8972202"],["-116.9877438","33.897492"],["-116.9877252","33.8977649"],["-116.9876754","33.8980362"],["-116.9875996","33.8982928"],["-116.9874995","33.8985494"],["-116.9873762","33.8987929"],["-116.987218","33.8990313"],["-116.9870339","33.8992595"],["-116.9868327","33.8994666"],["-116.9866149","33.899671"],["-116.9861829","33.9000817"],["-116.9859821","33.9003051"],["-116.9858041","33.9005448"],["-116.9856646","33.9007813"],["-116.9855377","33.901042"],["-116.9854464","33.9013054"],["-116.9853457","33.9017255"],["-116.9847763","33.9043622"],["-116.984596","33.9048432"],["-116.9843191","33.9053393"],["-116.9810857","33.9101519"],["-116.9796581","33.9122858"],["-116.9781122","33.9145839"],["-116.9777928","33.9151135"],["-116.9775452","33.9156359"],["-116.9773146","33.9162711"],["-116.977189","33.9167838"],["-116.9771055","33.9173216"],["-116.9770815","33.9177402"],["-116.9770984","33.9211414"],["-116.9771564","33.9217128"],["-116.9771552","33.9223707"],["-116.9771507","33.9235677"],["-116.9771617","33.9261292"],["-116.9771686","33.9263659"],["-116.9771601","33.9264732"],["-116.9768698","33.9265212"],["-116.9760281","33.9266587"],["-116.9744138","33.9268313"],["-116.9733034","33.9269447"],["-116.9709581","33.9270991"],["-116.9695617","33.9271958"],["-116.9684624","33.9272447"],["-116.9444965","33.9266971"],["-116.9257099","33.9259756"],["-116.9198685","33.9257145"],["-116.9186388","33.9255743"],["-116.9101582","33.9242561"],["-116.9088735","33.924202"],["-116.9050647","33.9241773"],["-116.9041856","33.9241773"],["-116.8621951","33.9242307"],["-116.8600965","33.924415"],["-116.8588432","33.9245833"],["-116.8576939","33.9247862"],["-116.8551599","33.9253376"],["-116.8540963","33.9256247"],["-116.8530956","33.9260004"],["-116.8508265","33.9269666"],["-116.850068","33.9271647"],["-116.8489198","33.927367"],["-116.8471841","33.9276406"],["-116.8462445","33.9278049"],["-116.8328428","33.9309424"],["-116.8319043","33.9311183"],["-116.8309775","33.9312623"],["-116.8303242","33.9313439"],["-116.8297946","33.9313921"],["-116.8293285","33.9314175"],["-116.8284347","33.9314333"],["-116.8278909","33.9314198"],["-116.8272575","33.9313925"],["-116.8262466","33.9313456"],["-116.8243311","33.9312431"],["-116.823332","33.9311643"],["-116.8227893","33.9310862"],["-116.8220947","33.9309486"],["-116.8214659","33.9307884"],["-116.8209128","33.9306142"],["-116.8203595","33.9304048"],["-116.8197733","33.9301478"],["-116.8192286","33.9298591"],["-116.8186039","33.929481"],["-116.8171306","33.9283725"],["-116.8114225","33.9239567"],["-116.8106598","33.9234022"],["-116.8099675","33.9229318"],["-116.8093442","33.9225583"],["-116.808694","33.9221967"],["-116.8080234","33.9218557"],["-116.8074137","33.9215723"],["-116.8025845","33.9196069"],["-116.8014069","33.9192241"],["-116.8005276","33.9190148"],["-116.7996649","33.9188487"],["-116.7989402","33.9187436"],["-116.7982939","33.9186804"],["-116.7975976","33.9186369"],["-116.7947809","33.9186212"],["-116.7729621","33.9186292"],["-116.7712344","33.9187004"],["-116.7688931","33.919032"],["-116.7603342","33.9203283"],["-116.7584327","33.9205215"],["-116.7512801","33.9210284"],["-116.7477657","33.9212773"],["-116.7471772","33.9213665"],["-116.7466735","33.9214633"],["-116.746188","33.9215755"],["-116.7456837","33.9217317"],["-116.7431853","33.9226719"],["-116.7398464","33.9239382"],["-116.7386655","33.9243595"],["-116.7383492","33.9244483"],["-116.7380934","33.9245084"],["-116.7377714","33.924566"],["-116.7373848","33.9246204"],["-116.7369108","33.9246698"],["-116.7362762","33.9246838"],["-116.7357078","33.9246559"],["-116.7348489","33.9245433"],["-116.7153126","33.9212771"],["-116.7137537","33.9210476"],["-116.7129016","33.92097"],["-116.7120074","33.9209284"],["-116.7111588","33.9209205"],["-116.7100942","33.9209505"],["-116.709125","33.9210297"],["-116.7078639","33.9211977"],["-116.7068572","33.9213838"],["-116.7057083","33.9216596"],["-116.6984096","33.9238097"],["-116.6966523","33.9243125"],["-116.6962263","33.924399"],["-116.6958473","33.9244539"],["-116.6955433","33.9244857"],["-116.6950625","33.9245038"],["-116.6947396","33.9245052"],["-116.6943296","33.9244861"],["-116.6939679","33.9244593"],["-116.6932189","33.9243374"],["-116.6813981","33.9223031"],["-116.6800725","33.922171"],["-116.6795086","33.9220909"],["-116.6790706","33.9219971"],["-116.6787206","33.9218947"],["-116.6783753","33.9217803"],["-116.6778912","33.9215661"],["-116.6774828","33.9213452"],["-116.6770059","33.9210351"],["-116.6766775","33.9207776"],["-116.6764041","33.9205334"],["-116.6754313","33.9194835"],["-116.6730365","33.9168917"],["-116.6725746","33.9164467"],["-116.6720932","33.9160522"],["-116.6715433","33.9156557"],["-116.6710225","33.9153293"],["-116.6704864","33.9150346"],["-116.6699271","33.9147712"],["-116.6693674","33.914549"],["-116.6687973","33.914354"],["-116.668257","33.9142034"],["-116.6674124","33.9140112"],["-116.6634332","33.9132749"],["-116.6625742","33.9131049"],["-116.6618798","33.9129268"],["-116.6612852","33.9127434"],["-116.6606613","33.9125268"],["-116.6599509","33.9122377"],["-116.6592776","33.9119224"],["-116.6586197","33.9115685"],["-116.6580068","33.9111918"],["-116.6565357","33.9101213"],["-116.65256","33.9071706"],["-116.6516356","33.9064926"],["-116.6512281","33.9062292"],["-116.6507369","33.9059344"],["-116.6501509","33.9056232"],["-116.6495242","33.9053203"],["-116.648646","33.9049598"],["-116.6363585","33.9005331"],["-116.634774","33.9000205"],["-116.633477","33.8996091"],["-116.630418","33.8986166"],["-116.6294672","33.8983212"],["-116.6288521","33.8981599"],["-116.628506","33.8981071"],["-116.6282125","33.8980904"],["-116.6278992","33.8980936"],["-116.6275919","33.8981203"],["-116.6272817","33.8981773"],["-116.6269786","33.8982553"],["-116.6260909","33.8985528"],["-116.6257035","33.8986691"],["-116.6254052","33.898742"],["-116.6250949","33.8987966"],["-116.6247935","33.8988315"],["-116.6244869","33.8988574"],["-116.6241672","33.8988664"],["-116.6238649","33.8988556"],["-116.6235397","33.898834"],["-116.6231905","33.8987873"],["-116.6227945","33.8987142"],["-116.6224652","33.8986271"],["-116.6221792","33.8985319"],["-116.6218959","33.8984149"],["-116.6216224","33.8982874"],["-116.6213662","33.8981517"],["-116.6211053","33.8979876"],["-116.6208442","33.8978058"],["-116.6198712","33.8969701"],["-116.6195187","33.8967079"],["-116.6191431","33.8964658"],["-116.5903697","33.8795691"],["-116.5899621","33.879284"],["-116.5893229","33.8787765"],["-116.5885156","33.8781577"],["-116.5765983","33.8693905"],["-116.5767386","33.8698064"],["-116.5891928","33.8789919"],["-116.5897817","33.8794063"],["-116.5901016","33.8796192"],["-116.590366","33.8797934"],["-116.590691","33.8800002"],["-116.6139857","33.893772"],["-116.620672","33.8980493"],["-116.6210809","33.898302"],["-116.6214432","33.8984755"],["-116.6219685","33.8986825"],["-116.6224696","33.898824"],["-116.6230629","33.8989488"],["-116.6236938","33.8990524"],["-116.6243228","33.8991157"],["-116.6249476","33.8991437"],["-116.6256986","33.8991248"],["-116.6264536","33.8990538"],["-116.6279989","33.8988998"],["-116.6285741","33.8988664"],["-116.6289096","33.8988698"],["-116.6292683","33.8988787"],["-116.6297072","33.898912"],["-116.6302229","33.8989689"],["-116.6306958","33.8990446"],["-116.631268","33.8991665"],["-116.6330972","33.8997085"],["-116.6348183","33.9002321"],["-116.6428417","33.9031246"],["-116.6428355","33.9041502"],["-116.6427771","33.9043877"],["-116.6427447","33.9045446"],["-116.6427368","33.9046173"],["-116.6427469","33.9046722"],["-116.6427705","33.9047224"],["-116.6428277","33.9047676"],["-116.6430485","33.9048177"],["-116.6455894","33.905279"],["-116.6463605","33.9054635"],["-116.6481209","33.9059398"],["-116.6485742","33.9060794"],["-116.6489155","33.9062318"],["-116.6494607","33.9065246"],["-116.6500033","33.9068378"],["-116.6504178","33.9070912"],["-116.6523903","33.9085465"],["-116.6583375","33.912976"],["-116.6584917","33.9131443"],["-116.6585625","33.9132854"],["-116.6585893","33.913409"],["-116.6585979","33.9136329"],["-116.6585898","33.9177591"],["-116.6586224","33.9180826"],["-116.6586226","33.920334"],["-116.6586006","33.9205695"],["-116.6585446","33.9207332"],["-116.6584435","33.9208779"],["-116.6583016","33.9210235"],["-116.6581237","33.9211732"],["-116.6579421","33.9212872"],["-116.6577613","33.9213781"],["-116.6575543","33.9214553"],["-116.6573445","33.9215017"],["-116.6570509","33.9215307"],["-116.6554962","33.9216033"],["-116.6546702","33.9216563"],["-116.6539399","33.9217224"],["-116.6532091","33.921821"],["-116.6524943","33.9219309"],["-116.6511641","33.9221424"],["-116.6508465","33.9221876"],["-116.6506581","33.9222045"],["-116.6504199","33.9222015"],["-116.6501619","33.9221751"],["-116.6499348","33.9221335"],["-116.6497179","33.9220645"],["-116.6495181","33.9219794"],["-116.6492837","33.9218654"],["-116.6485888","33.9215042"],["-116.6483095","33.9213857"],["-116.6481114","33.9213377"],["-116.6478934","33.9212938"],["-116.647709","33.9212766"],["-116.6474757","33.9212826"],["-116.6472239","33.9213239"],["-116.6473138","33.9217236"],["-116.6473299","33.9220046"],["-116.6473163","33.9221247"],["-116.6472839","33.9222537"],["-116.6472267","33.9223909"],["-116.6471603","33.9225036"],["-116.6470833","33.922604"],["-116.6469812","33.922708"],["-116.646865","33.9228016"],["-116.6467367","33.9228822"],["-116.6466012","33.9229434"],["-116.6464493","33.9229945"],["-116.6462091","33.9230538"],["-116.6457646","33.923146"],["-116.6453955","33.9232981"],["-116.6444867","33.9234177"],["-116.6436268","33.9234905"],["-116.6429114","33.9235299"],["-116.6421893","33.9235507"],["-116.6413928","33.9235429"],["-116.6404749","33.9234969"],["-116.6391654","33.9233779"],["-116.6379891","33.9232064"],["-116.6369593","33.9230104"],["-116.6361188","33.9228138"],["-116.6354058","33.9226161"],["-116.6346532","33.9223824"],["-116.6339918","33.9221467"],["-116.633184","33.9218244"],["-116.6315733","33.9210933"],["-116.6287452","33.9197858"],["-116.6274733","33.9192079"],["-116.6267181","33.9189304"],["-116.6258045","33.9186695"],["-116.6157455","33.9165985"],["-116.6134122","33.9160906"],["-116.6122165","33.9157665"],["-116.6118821","33.9156624"],["-116.6113123","33.915427"],["-116.6108137","33.915169"],["-116.6097909","33.9145194"],["-116.6091056","33.9141131"],["-116.6085335","33.9138522"],["-116.6081609","33.9137367"],["-116.6078225","33.9136521"],["-116.607199","33.9135538"],["-116.6065383","33.9135161"],["-116.6061945","33.9135385"],["-116.6057707","33.9135898"],["-116.6055833","33.9136196"],["-116.6053653","33.9136693"],["-116.6051532","33.9137244"],["-116.6049249","33.9137971"],["-116.604701","33.9138796"],["-116.604452","33.9139788"],["-116.6042576","33.9140779"],["-116.6040331","33.9142022"],["-116.6037782","33.914352"],["-116.6035568","33.9145068"],["-116.6031288","33.914877"],["-116.6028938","33.9151248"],["-116.602751","33.9152953"],["-116.6026195","33.9154633"],["-116.6024609","33.9157358"],["-116.6023151","33.9160016"],["-116.6021918","33.9162846"],["-116.6020589","33.91672"],["-116.6019629","33.9170923"],["-116.6018361","33.9176338"],["-116.6016522","33.9183614"],["-116.6010143","33.9209848"],["-116.5982433","33.9323214"],["-116.5977233","33.9343956"],["-116.5936679","33.9510006"],["-116.5924206","33.9551118"],["-116.5889242","33.9659334"],["-116.5832174","33.9834905"],["-116.5825048","33.9856593"],["-116.5767437","34.003482"],["-116.5754386","34.007514"],["-116.5749901","34.0089657"],["-116.5749104","34.0093865"],["-116.5748755","34.0097799"],["-116.5748963","34.0102327"],["-116.5749436","34.0106965"],["-116.5750316","34.0110823"],["-116.5751398","34.0114697"],["-116.5754484","34.0122347"],["-116.5758458","34.0131888"],["-116.5760589","34.0135794"],["-116.5762577","34.0138292"],["-116.576508","34.0140873"],["-116.5767799","34.0143027"],["-116.5770597","34.014484"],["-116.5773761","34.0146545"],["-116.5776955","34.0147784"],["-116.5789622","34.0151642"],["-116.5793984","34.0153412"],["-116.5797068","34.0155102"],["-116.5799521","34.0156924"],["-116.5801852","34.0158949"],["-116.5804231","34.0161309"],["-116.5806011","34.0163576"],["-116.580751","34.0166186"],["-116.5808826","34.0169539"],["-116.5811862","34.0179379"],["-116.5812999","34.0182349"],["-116.5813999","34.0184296"],["-116.5815232","34.0186183"],["-116.5816613","34.0188048"],["-116.5818218","34.0189899"],["-116.5820096","34.0191695"],["-116.5824539","34.0194986"],["-116.5831455","34.0200025"],["-116.583429","34.0202335"],["-116.5835981","34.0204073"],["-116.5837223","34.0205713"],["-116.5838543","34.0207448"],["-116.5839746","34.0209521"],["-116.5841905","34.0214572"],["-116.5851223","34.0237913"],["-116.585246","34.0241537"],["-116.585275","34.0243644"],["-116.5852972","34.0245692"],["-116.5852797","34.0250386"],["-116.5851554","34.0259246"],["-116.5851227","34.0262363"],["-116.5851269","34.0264472"],["-116.5851405","34.0266333"],["-116.5851702","34.0268092"],["-116.5852343","34.0270207"],["-116.5853002","34.0272114"],["-116.5854023","34.0274291"],["-116.5855287","34.0276327"],["-116.5856995","34.0278538"],["-116.5858989","34.0280714"],["-116.5861047","34.0282639"],["-116.5863299","34.028435"],["-116.5865738","34.0285823"],["-116.5868161","34.0287022"],["-116.5871788","34.0288612"],["-116.5888001","34.0295115"],["-116.5892425","34.029705"],["-116.5895196","34.0298619"],["-116.5897672","34.0300338"],["-116.5900054","34.0302395"],["-116.5902103","34.030457"],["-116.5903848","34.030701"],["-116.5905901","34.0310459"],["-116.5916299","34.0329993"],["-116.5917271","34.0332228"],["-116.5917804","34.0334038"],["-116.5918428","34.0336673"],["-116.5918776","34.0339332"],["-116.5918797","34.0342302"],["-116.5918602","34.0344056"],["-116.5918231","34.0345765"],["-116.5917635","34.034796"],["-116.5916471","34.0350783"],["-116.5914877","34.0353482"],["-116.5912256","34.0356896"],["-116.5909134","34.0359696"],["-116.589168","34.0372459"],["-116.588878","34.0375257"],["-116.5886653","34.03777"],["-116.5884795","34.0380744"],["-116.5874038","34.0401981"],["-116.5871011","34.040707"],["-116.5869074","34.0409598"],["-116.5865553","34.0413361"],["-116.585218","34.0426443"],["-116.5849344","34.0429435"],["-116.5845496","34.0432998"],["-116.5841459","34.0436699"],["-116.5836894","34.0440972"],["-116.5819578","34.0457355"],["-116.5815235","34.0461474"],["-116.5738419","34.0533126"],["-116.5722151","34.0547053"],["-116.5714761","34.0553246"],["-116.5712103","34.0554657"],["-116.5706369","34.0559326"],["-116.5700906","34.0563673"],["-116.5649996","34.0599721"],["-116.5648365","34.0601437"],["-116.5637484","34.060901"],["-116.562145","34.0619911"],["-116.5615191","34.0624377"],["-116.5613391","34.0625211"],["-116.5593977","34.0638724"],["-116.5587777","34.0643046"],["-116.5579707","34.0648764"],["-116.5578584","34.0650041"],["-116.5555322","34.0665996"],["-116.5553505","34.0666866"],["-116.5544536","34.0673039"],["-116.5519961","34.0690112"],["-116.5518545","34.0691832"],["-116.5514081","34.0694742"],["-116.5505903","34.0700341"],["-116.5504478","34.070151"],["-116.549025","34.0711222"],["-116.5447303","34.0740649"],["-116.5444724","34.0741596"],["-116.5433252","34.0749483"],["-116.5431647","34.0751188"],["-116.5418618","34.0760423"],["-116.5415256","34.0762837"],["-116.5410593","34.0766216"],["-116.5372328","34.0793648"],["-116.5367694","34.0796249"],["-116.5365321","34.0797099"],["-116.5304","34.0832237"],["-116.5302065","34.0833943"],["-116.5271146","34.0851537"],["-116.5269405","34.0851965"],["-116.5262531","34.0855893"],["-116.522195","34.0879147"],["-116.5218443","34.088119"],["-116.5217593","34.0882298"],["-116.5181099","34.090304"],["-116.5178129","34.0904183"],["-116.5127871","34.0932924"],["-116.5125604","34.0934814"],["-116.5108499","34.0944089"],["-116.5095542","34.0950671"],["-116.509309","34.095147"],["-116.5085135","34.0955497"],["-116.508304","34.0957151"],["-116.5058409","34.096933"],["-116.5056962","34.096969"],["-116.5021878","34.0987326"],["-116.5019482","34.0989072"],["-116.5012778","34.0992444"],["-116.4993064","34.1002283"],["-116.4987921","34.1004911"],["-116.4985745","34.1005618"],["-116.4945079","34.1026212"],["-116.4942467","34.1027969"],["-116.493135","34.1033456"],["-116.4924762","34.103672"],["-116.4922683","34.103732"],["-116.4819354","34.1087471"],["-116.4814745","34.1089558"],["-116.481053","34.109133"],["-116.4806888","34.1092679"],["-116.4802597","34.109409"],["-116.479377","34.1096669"],["-116.4790449","34.1097702"],["-116.4787991","34.1098533"],["-116.4786715","34.1099429"],["-116.4785084","34.1099996"],["-116.4783319","34.1100636"],["-116.4780707","34.110172"],["-116.4778474","34.110277"],["-116.4776659","34.1103663"],["-116.4767152","34.110875"],["-116.4760976","34.1111501"],["-116.4758572","34.1111975"],["-116.4750544","34.1114897"],["-116.4740713","34.1118332"],["-116.4721324","34.1124784"],["-116.4701613","34.113173"],["-116.4698685","34.113325"],["-116.4690916","34.1136057"],["-116.4684802","34.1137833"],["-116.4679486","34.1139093"],["-116.4668817","34.1141414"],["-116.466717","34.1141748"],["-116.4665347","34.1142144"],["-116.4653521","34.1144856"],["-116.4590273","34.1160972"],["-116.4578334","34.1164016"],["-116.4575921","34.1164065"],["-116.451049","34.1180856"],["-116.4496392","34.1184484"],["-116.4488418","34.1186542"],["-116.4467305","34.1191944"],["-116.4418692","34.1204258"],["-116.4413906","34.1205326"],["-116.4411644","34.1205665"],["-116.44093","34.1205861"],["-116.440712","34.1205909"],["-116.436885","34.1205773"],["-116.4363656","34.1205741"],["-116.4351667","34.1205703"],["-116.4329845","34.1205749"],["-116.4305582","34.1205873"],["-116.4303874","34.1206289"],["-116.4281717","34.1206219"],["-116.4280038","34.1205754"],["-116.4270511","34.1205785"],["-116.426871","34.1206221"],["-116.4248073","34.1206162"],["-116.4243821","34.1205701"],["-116.4237483","34.1205584"],["-116.4233566","34.1205779"],["-116.4230648","34.120636"],["-116.422592","34.1207714"],["-116.4224187","34.1208218"],["-116.4222975","34.120857"],["-116.4216442","34.1210595"],["-116.4211939","34.1212001"],["-116.4191027","34.1218524"],["-116.4185136","34.1220346"],["-116.4142561","34.1233426"],["-116.4141721","34.1233683"],["-116.4127307","34.1238196"],["-116.412424","34.1239582"],["-116.4077901","34.1254162"],["-116.4072533","34.1255365"],["-116.4051215","34.1261693"],["-116.4049955","34.1262298"],["-116.4048918","34.1262886"],["-116.4048233","34.1263083"],["-116.404728","34.1263318"],["-116.4041745","34.1264602"],["-116.3970511","34.1279913"],["-116.3965387","34.1281148"],["-116.3961513","34.1282474"],["-116.3958438","34.1283748"],["-116.3956178","34.1284901"],["-116.3952223","34.1287118"],["-116.3950183","34.1287494"],["-116.3939798","34.129336"],["-116.3937579","34.1295261"],["-116.3868621","34.1334611"],["-116.3866425","34.1335457"],["-116.3858923","34.1339384"],["-116.385402","34.1341855"],["-116.3850702","34.1343346"],["-116.3846025","34.1345002"],["-116.3842057","34.1346277"],["-116.3837142","34.1347378"],["-116.3830657","34.1348454"],["-116.3822333","34.134881"],["-116.3805611","34.1348848"],["-116.380294","34.1349491"],["-116.3796408","34.1349462"],["-116.3325909","34.1349484"],["-116.3325709","34.1367873"],["-116.3325803","34.1375359"],["-116.3325864","34.1381408"],["-116.3325621","34.1403444"],["-116.3325548","34.1403902"],["-116.3324169","34.1404453"],["-116.3321118","34.140461"],["-116.3319764","34.1404409"],["-116.3318596","34.1404724"],["-116.3312903","34.1405334"],["-116.3310637","34.1404916"],["-116.3308762","34.1404385"],["-116.3304203","34.1404317"],["-116.3304051","34.1389644"],["-116.3304205","34.135748"],["-116.3303979","34.1351629"],["-116.3303307","34.1349557"],["-116.3158722","34.1349564"],["-116.3153781","34.1349583"],["-116.3151761","34.1349534"],["-116.3148696","34.1349591"],["-116.3140191","34.1349752"],["-116.3092401","34.1349812"],["-116.1030834","34.1353334"],["-116.1018208","34.1353484"],["-116.093424","34.1354721"],["-116.0926863","34.1354713"],["-116.09207","34.1354683"],["-116.0905882","34.1354646"],["-116.0904613","34.1354628"],["-116.0551287","34.1356157"],["-116.0545843","34.1356289"],["-116.0522111","34.135652"],["-116.0367023","34.1358765"],["-115.9767792","34.1364204"],["-115.961867","34.1365207"],["-115.9158822","34.1366305"],["-115.9147182","34.1365988"],["-115.914304","34.1365318"],["-115.9138777","34.1364046"],["-115.9134554","34.1362385"],["-115.9128994","34.1359095"],["-115.8977167","34.1232687"],["-115.8968315","34.1225723"],["-115.8962862","34.1222799"],["-115.895752","34.1220876"],["-115.8951974","34.1219643"],["-115.8940092","34.1219258"],["-115.7765643","34.1223827"],["-115.7745942","34.1223655"],["-115.7739687","34.1223349"],["-115.7727631","34.1222028"],["-115.7715754","34.1220552"],["-115.6904834","34.1108416"],["-115.663891","34.1060264"],["-115.6373665","34.100244"],["-115.6276093","34.0981983"],["-115.6248811","34.0977466"],["-115.6228452","34.097427"],["-115.6218642","34.0973711"],["-115.6113869","34.0969399"],["-115.6107572","34.0968717"],["-115.6085936","34.096411"],["-115.5881206","34.0916865"],["-115.5861092","34.0911845"],["-115.5855602","34.0909632"],["-115.5850474","34.0907028"],["-115.5838954","34.0900253"],["-115.5834991","34.0896919"],["-115.5831703","34.0892783"],["-115.5816598","34.087014"],["-115.5805843","34.0856492"],["-115.5799367","34.0849102"],["-115.5786416","34.0836393"],["-115.5771896","34.0823458"],["-115.5762922","34.081689"],["-115.5750125","34.0808695"],["-115.5693291","34.0775907"],["-115.5684792","34.0771528"],["-115.5680677","34.0770024"],["-115.5592268","34.0745025"],["-115.5568645","34.0740183"],["-115.5544931","34.0735597"],["-115.5535611","34.0734142"],["-115.5529919","34.0733826"],["-115.5523117","34.0734099"],["-115.5516786","34.0734898"],["-115.5511052","34.0736213"],["-115.5505174","34.0738123"],["-115.5500015","34.0740068"],["-115.5494473","34.0743198"],["-115.5488996","34.0747093"],["-115.5484885","34.0750493"],["-115.548108","34.0754285"],["-115.5477169","34.075999"],["-115.5470793","34.0772041"],["-115.5358547","34.1005001"],["-115.5349097","34.1025118"],["-115.5334704","34.1052441"],["-115.5284735","34.114276"],["-115.5280983","34.1148467"],["-115.5278336","34.1151687"],["-115.5275538","34.1154542"],["-115.527268","34.1157244"],["-115.526986","34.1159562"],["-115.5265334","34.1162781"],["-115.5263194","34.1164094"],["-115.5260493","34.1165365"],["-115.525771","34.1166558"],["-115.5254782","34.1167662"],["-115.5251651","34.1168694"],["-115.5248481","34.1169491"],["-115.5245332","34.1170149"],["-115.5241636","34.1170779"],["-115.5237885","34.117111"],["-115.5234005","34.1171215"],["-115.52296","34.1171057"],["-115.5198939","34.1167448"],["-115.4852465","34.1122243"],["-115.479244","34.1113299"],["-115.4256968","34.0966759"],["-115.4181803","34.0945625"],["-115.4127141","34.0930318"],["-115.4112563","34.0926637"],["-115.4105923","34.0925481"],["-115.4084044","34.0923748"],["-115.3950849","34.0914705"],["-115.3921761","34.091169"],["-115.3909621","34.0910001"],["-115.3803999","34.0888647"],["-115.2734629","34.0611642"],["-115.2703552","34.0604985"],["-115.2690645","34.0601829"],["-115.2684808","34.0599969"],["-115.2678306","34.0597777"],["-115.2676166","34.0596944"],["-115.2672266","34.0595329"],["-115.2667407","34.05931"],["-115.2661777","34.0590458"],["-115.2658038","34.0588951"],["-115.2649945","34.0586987"],["-115.2633849","34.0583578"],["-115.2619024","34.0580357"],["-115.253917","34.0559877"],["-115.2291012","34.0496645"],["-115.2281921","34.0494051"],["-115.2275059","34.0491564"],["-115.2257777","34.0484905"],["-115.2251838","34.0482677"],["-115.2247028","34.0480781"],["-115.2236363","34.0475654"],["-115.2234258","34.0474783"],["-115.2232612","34.047418"],["-115.2230787","34.0473599"],["-115.2229077","34.0473133"],["-115.2227512","34.0472829"],["-115.2225943","34.0472562"],["-115.2224274","34.0472333"],["-115.2215141","34.0471633"],["-115.2197531","34.0470118"],["-115.2204707","34.0463947"],["-115.2319079","34.0368465"],["-115.2323882","34.0363504"],["-115.2327706","34.0358585"],["-115.2330604","34.035351"],["-115.2332857","34.0348641"],["-115.233458","34.0343355"],["-115.2337916","34.0316844"],["-115.255366","33.8419402"],["-115.2557531","33.8388096"],["-115.2558689","33.8383686"],["-115.2560397","33.8379176"],["-115.2562957","33.8374564"],["-115.2570532","33.8366147"],["-115.280461","33.8135576"],["-115.2866431","33.8078223"],["-115.3470931","33.7580986"],["-115.3497585","33.7559021"],["-115.3994271","33.715005"],["-115.3996227","33.7148073"],["-115.3998041","33.7145768"],["-115.3999123","33.7144035"],["-115.3999937","33.7142618"],["-115.400064","33.7141243"],["-115.4001415","33.7139473"],["-115.4002143","33.7137433"],["-115.4002689","33.7135487"],["-115.4003079","33.7133498"],["-115.4003213","33.7131787"],["-115.4003229","33.7127151"],["-115.4002719","33.7099499"],["-115.400203","33.7099192"],["-115.3999711","33.7099162"],["-115.3990657","33.7100715"],["-115.3985024","33.7101595"],["-115.3981517","33.7102021"],["-115.3978007","33.7102363"],["-115.3973613","33.7102639"],["-115.3968762","33.7102862"],["-115.3950858","33.7103486"],["-115.3816289","33.7104844"],["-115.3790229","33.7103702"],["-115.3104055","33.701533"],["-115.3080697","33.7011783"],["-115.305512","33.7004761"],["-115.2412321","33.6816263"],["-115.2379251","33.6805678"],["-115.1659281","33.6592673"],["-115.1506433","33.6547553"],["-115.1054616","33.6417846"],["-115.0855354","33.6366935"],["-115.0825116","33.6358087"],["-115.0818178","33.6355099"],["-115.0811559","33.6351916"],["-115.0803096","33.6347021"],["-115.0790205","33.6337851"],["-115.0778818","33.6327974"],["-115.0761858","33.6316086"],["-115.0742386","33.630578"],["-115.071268","33.6296882"],["-115.033048","33.61986"],["-114.995823","33.6088913"],["-114.9930186","33.6081614"],["-114.9867147","33.6066567"],["-114.9837155","33.6060938"],["-114.9809766","33.6058912"],["-114.9483617","33.6058217"],["-114.9247989","33.6058611"],["-114.9063544","33.6074598"],["-114.839109","33.609555"],["-114.780148","33.6097955"],["-114.7770776","33.609686"],["-114.7735905","33.6090576"],["-114.7711051","33.6086922"],["-114.7643251","33.6086605"],["-114.7273337","33.6091867"],["-114.7245626","33.6091737"],["-114.7230086","33.6090465"],["-114.7215782","33.6088178"],["-114.7201977","33.6085292"],["-114.7183375","33.6080258"],["-114.716163","33.6074185"],["-114.7145294","33.6070227"],["-114.7131312","33.6068108"],["-114.71155","33.606631"],["-114.6238092","33.6065295"],["-114.6082295","33.6069056"],["-114.6004467","33.6069822"],["-114.5823388","33.6071362"],["-114.5687278","33.6073576"],["-114.5493893","33.6077073"],["-114.545501","33.6077333"],["-114.5444982","33.6076529"],["-114.5434028","33.6075382"],["-114.5418178","33.60724"],["-114.538734","33.6065141"],["-114.524733","33.6031938"],["-114.5214179","33.6026633"],["-114.5202281","33.6025315"],["-114.5184637","33.6023652"],["-114.5176663","33.6023324"],["-114.5153969","33.6023458"],["-114.5128056","33.6024514"],["-114.5121518","33.6025039"],["-114.5106174","33.6026685"],["-114.508886","33.6029077"],["-114.5064991","33.6033624"],["-114.5055108","33.6035925"],["-114.5042566","33.6039185"],["-114.4593271","33.6168769"],["-114.4392647","33.6226655"],["-114.4387218","33.6228283"],["-114.4316366","33.6248708"],["-114.4272747","33.6261291"],["-114.4185618","33.6286043"],["-114.4149819","33.6294836"],["-114.396311","33.633334"],["-114.3955527","33.6335064"],["-114.3949042","33.6336722"],["-114.3937313","33.6340494"],["-114.3931267","33.6342615"],["-114.3925111","33.6345243"],["-114.3918838","33.6348107"],["-114.3912517","33.6351169"],["-114.3906861","33.6354055"],["-114.3903155","33.6356139"],["-114.3898292","33.6359066"],["-114.3893739","33.6361943"],["-114.3888962","33.636516"],["-114.387595","33.6375322"],["-114.3868549","33.6381825"],["-114.3861699","33.6388552"],["-114.3854732","33.6396715"],["-114.3847363","33.6406212"],["-114.384158","33.6413345"],["-114.383729","33.6418269"],["-114.3832692","33.6422981"],["-114.3826246","33.6428616"],["-114.3819942","33.6433424"],["-114.3813251","33.6437859"],["-114.3796823","33.6447075"],["-114.3758457","33.6466712"],["-114.3748841","33.647099"],["-114.3741507","33.6473525"],["-114.3733991","33.647566"],["-114.372671","33.6477342"],["-114.3721625","33.6478395"],["-114.3716952","33.6479263"],["-114.3711041","33.6479964"],["-114.3705219","33.6480392"],["-114.3697848","33.6480811"],["-114.3610345","33.648286"],["-114.3584569","33.648333"],["-114.3560957","33.6482842"],["-114.3541622","33.6481461"],["-114.3424722","33.6471014"],["-114.3374132","33.6466735"],["-114.3352856","33.6466049"],["-114.3341842","33.6466099"],["-114.3326405","33.6466609"],["-114.330775","33.6468113"],["-114.3291337","33.6469785"],["-114.2413535","33.6595472"],["-114.2041712","33.6648383"],["-114.2033289","33.6649558"],["-114.2014232","33.6652053"],["-114.1912594","33.6663419"],["-114.1712972","33.6685651"],["-114.1698525","33.6687272"],["-114.1636972","33.6694329"],["-114.1557401","33.6706861"],["-114.1009829","33.6786923"],["-114.0931925","33.6790336"],["-114.0898128","33.6791142"],["-114.0861214","33.6791088"],["-114.084814","33.679092"],["-114.0835449","33.6790627"],["-114.0825116","33.6790586"],["-114.0802545","33.6790032"],["-114.0797977","33.6789896"],["-114.076328","33.678824"],["-114.0731207","33.67862"],["-114.0722316","33.6785577"],["-114.0636973","33.6778618"],["-114.0627901","33.6777809"],["-114.0624678","33.6777608"],["-114.061847","33.6776844"],["-114.0603952","33.6774704"],["-114.0596685","33.6773421"],["-114.0588244","33.67716"],["-114.0579643","33.6769514"],["-114.0567002","33.6766127"],["-114.0552996","33.6761943"],["-114.0539498","33.6757321"],["-114.0529353","33.6753365"],["-114.0515397","33.6747247"],["-114.0501916","33.6740696"],["-114.048898","33.673362"],["-114.0414027","33.6688102"],["-114.0405333","33.6682999"],["-114.0394425","33.6676949"],["-114.0383207","33.6671295"],["-114.0368453","33.6664497"],["-114.0348895","33.6656389"],["-114.0335392","33.6651386"],["-114.0323342","33.6647439"],["-114.0313158","33.6644468"],["-114.0284909","33.6637338"],["-114.0278358","33.6636022"],["-114.0270812","33.6634652"],["-114.0255847","33.6632286"],["-114.0201823","33.6625693"],["-114.0198189","33.6625271"],["-114.011038","33.6614741"],["-113.9342737","33.6522474"],["-113.9308565","33.6518372"],["-113.8262024","33.639172"],["-113.8221778","33.6386968"],["-113.819155","33.6382902"],["-113.8180445","33.6381432"],["-113.8168949","33.6379765"],["-113.7724691","33.631419"],["-113.7708926","33.631185"],["-113.7624571","33.6299423"],["-113.760457","33.6296416"],["-113.7343926","33.6258012"],["-113.7330914","33.6256115"],["-113.7319438","33.6254482"],["-113.731235","33.6253435"],["-113.7296382","33.6251045"],["-113.7287902","33.6249658"],["-113.649671","33.6132319"],["-113.6388774","33.6116007"],["-113.6142785","33.6079471"],["-113.5009342","33.5909939"],["-113.4993129","33.5907537"],["-113.4970845","33.5904202"],["-113.3956045","33.5751428"],["-113.3876235","33.5739397"],["-113.3854327","33.5736039"],["-113.3754909","33.5721206"],["-113.374743","33.5720176"],["-113.3686599","33.5710842"],["-113.3650176","33.5705239"],["-113.3640272","33.5703807"],["-113.352763","33.5686705"],["-113.3522929","33.5686031"],["-113.3455874","33.5675786"],["-113.3184605","33.5634766"],["-113.317532","33.5633382"],["-113.2949396","33.5599172"],["-113.2768206","33.5571525"],["-113.2135085","33.5475133"],["-113.1757495","33.5417265"],["-113.1728392","33.5412202"],["-113.1702788","33.5407135"],["-113.162274","33.5389553"],["-113.1486845","33.5358524"],["-113.1484341","33.5357937"],["-113.1480602","33.5357123"],["-113.1476444","33.5356238"],["-113.1425625","33.534486"],["-113.1414915","33.5342414"],["-113.1408594","33.5340971"],["-113.1089064","33.5269746"],["-113.0844214","33.5227931"],["-113.0836645","33.5226681"],["-113.058293","33.5183796"],["-113.0503628","33.5170329"],["-113.0406857","33.5153945"],["-113.0397351","33.5152329"],["-113.0266895","33.5130244"],["-113.017344","33.5114397"],["-113.0161621","33.5112386"],["-113.0144781","33.5109542"],["-113.01171","33.5104835"],["-113.0001942","33.5085354"],["-112.9986267","33.5082698"],["-112.9935993","33.5074103"],["-112.9923506","33.5072006"],["-112.956745","33.5011633"],["-112.9562238","33.5010757"],["-112.9546237","33.5007966"],["-112.9531425","33.5005469"],["-112.9478188","33.4995845"],["-112.928555","33.4953322"],["-112.9183741","33.4930678"],["-112.9179375","33.4929716"],["-112.8904983","33.4868489"],["-112.8756031","33.4835238"],["-112.8728941","33.482925"],["-112.6572333","33.4345291"],["-112.6547305","33.43383"],["-112.648385","33.431921"],["-112.6470283","33.4315629"],["-112.6457287","33.4312878"],["-112.6443267","33.431026"],["-112.6376581","33.4300123"],["-112.6364107","33.429806"],["-112.6343055","33.4293652"],["-112.6271184","33.4277691"],["-112.62522","33.4274185"],["-112.6242581","33.4272727"],["-112.6216139","33.4269935"],["-112.6199382","33.426904"],["-112.6186277","33.4268707"],["-112.6179404","33.4268689"],["-112.6166342","33.4269013"],["-112.6148797","33.4270195"],["-112.6114574","33.4274055"],["-112.6094214","33.4277813"],["-112.6056072","33.4287334"],["-112.5912945","33.433324"],["-112.5911429","33.4333728"],["-112.5907496","33.433499"],["-112.5905975","33.4335474"],["-112.5905419","33.4335653"],["-112.5892804","33.4339766"],["-112.5052857","33.4610092"],["-112.50434","33.461274"],["-112.5043182","33.4612803"],["-112.5041346","33.4613258"],["-112.5028946","33.4615679"],["-112.5019897","33.4617386"],["-112.5003744","33.4619762"],["-112.4987246","33.4621684"],["-112.4981041","33.462231"],["-112.4976877","33.462262"],["-112.497184","33.4622929"],["-112.4960845","33.4623484"],["-112.4665529","33.4623197"],["-112.4657005","33.4623017"],["-112.4643332","33.4622255"],["-112.4629444","33.4620644"],["-112.4600529","33.4616436"],["-112.4590358","33.4615195"],["-112.4584553","33.4614682"],["-112.4572425","33.4614044"],["-112.4311485","33.4614401"],["-112.4206393","33.4618151"],["-112.4168559","33.4618539"],["-112.4143843","33.4617781"],["-112.4116953","33.4616493"],["-112.4105203","33.4615651"],["-112.4102545","33.4615461"],["-112.4055858","33.46128"],["-112.3960523","33.461186"],["-112.3816066","33.4611085"],["-112.3811139","33.461097"],["-112.3803628","33.4610569"],["-112.3791772","33.4609403"],["-112.3783575","33.4608228"],["-112.3774754","33.460658"],["-112.376399","33.4604106"],["-112.3754131","33.4601365"],["-112.3706612","33.4586964"],["-112.3697997","33.4584675"],["-112.3693649","33.4583657"],["-112.3685495","33.4581992"],["-112.3681319","33.458128"],["-112.3676067","33.4580488"],["-112.366693","33.457941"],["-112.3654152","33.4578471"],["-112.3479551","33.4577342"],["-112.3455025","33.4577163"],["-112.3182248","33.4575479"],["-112.3158979","33.4576572"],["-112.314959","33.4577594"],["-112.3139968","33.4578895"],["-112.3131872","33.4580267"],["-112.2966387","33.4609106"],["-112.2897915","33.461162"],["-112.2854106","33.4612415"],["-112.2712515","33.4614845"],["-112.2695138","33.4615432"],["-112.2604425","33.4619832"],["-112.2582365","33.4620765"],["-112.2526989","33.4621397"],["-112.2397063","33.4620899"],["-112.238323","33.4621018"],["-112.2381083","33.4621059"],["-112.2268039","33.4622466"],["-112.2207088","33.4623989"],["-112.2204995","33.4624039"],["-112.1960123","33.4626247"],["-112.1925513","33.4626987"],["-112.189536","33.4627162"],["-112.1865234","33.4627179"],["-112.1828323","33.4626539"],["-112.166757","33.4625334"],["-112.1511904","33.4617286"],["-112.1461038","33.4615896"],["-112.1452896","33.4615996"],["-112.1436615","33.4616411"],["-112.1431775","33.4616526"],["-112.1431097","33.4616542"],["-112.1429903","33.461657"],["-112.1423808","33.4616909"],["-112.1406922","33.4618044"],["-112.1392084","33.4620307"],["-112.13717","33.4623913"],["-112.136551","33.4624959"],["-112.1360212","33.4625705"],["-112.1355388","33.4626215"],["-112.135128","33.4626548"],["-112.1348083","33.4626758"],["-112.1346955","33.4626812"],["-112.1341615","33.4627031"],["-112.133713","33.4627045"],["-112.1326431","33.4626562"],["-112.1317442","33.4625637"],["-112.1299827","33.4622988"],["-112.1293412","33.4621949"],["-112.128924","33.4621198"],["-112.1281451","33.4620223"],["-112.1272076","33.4619206"],["-112.1262444","33.4618328"],["-112.1238788","33.4617993"],["-112.1203934","33.4617506"],["-112.1151932","33.4616924"],["-112.1123198","33.4616716"],["-112.0956982","33.4615624"],["-112.0932848","33.4615691"],["-112.0925397","33.4615629"],["-112.0916882","33.4615351"],["-112.0902699","33.4614254"],["-112.0846904","33.4608484"],["-112.0839568","33.4608038"],["-112.0832245","33.4607848"],["-112.0820099","33.4608522"],["-112.0810762","33.4609809"],["-112.0792611","33.4613128"],["-112.0786957","33.461392"],["-112.0780343","33.4614525"],["-112.0761441","33.4614246"],["-112.0738304","33.4614458"],["-112.0725963","33.4615622"],["-112.0714119","33.4617793"],["-112.0699686","33.4620703"],["-112.0696259","33.4620435"],["-112.0692528","33.4620139"],["-112.069148","33.4620034"],["-112.0684961","33.4619371"],["-112.0675343","33.4617954"],["-112.0670574","33.4617115"],["-112.0667034","33.4616397"],["-112.0664861","33.4615831"],["-112.0657721","33.4614646"],["-112.0656358","33.4614379"],["-112.0655535","33.4614128"],["-112.0654838","33.46139"],["-112.0654405","33.4613682"],["-112.0654159","33.4613504"],["-112.0653964","33.4613336"],["-112.065381","33.4613083"],["-112.065364","33.4612732"],["-112.0653473","33.4612188"],["-112.0653307","33.4611507"],["-112.0653147","33.4610682"],["-112.0653025","33.4609358"],["-112.0653183","33.4587668"],["-112.0652541","33.4586577"],["-112.0652485","33.4584967"],["-112.0652168","33.4554704"],["-112.0652409","33.4545059"],["-112.0652173","33.453819"],["-112.0651791","33.4531604"],["-112.065176","33.4525983"],["-112.0651507","33.4511476"],["-112.0651335","33.4507983"],["-112.0651335","33.4506637"],["-112.0651909","33.4505794"],["-112.0651855","33.4504361"],["-112.0651222","33.45037"],["-112.0651155","33.4497856"],["-112.0651215","33.4495494"],["-112.0651181","33.4491979"],["-112.0651112","33.4488221"],["-112.0651928","33.4487082"],["-112.0652115","33.4484886"],["-112.0652228","33.4482268"],["-112.0654051","33.4482129"],["-112.0673003","33.4482364"],["-112.067441","33.448235"],["-112.0676577","33.4482368"],["-112.0687341","33.4482352"],["-112.0711042","33.4482438"],["-112.0713683","33.4482381"],["-112.0713994","33.448237"],["-112.0718925","33.4482152"],["-112.072172","33.4482033"],["-112.0727508","33.4481872"],["-112.0733078","33.4481912"],["-112.0740201","33.4482127"]] } }; const coordinates_1_1 = geojson_1_1.geometry.coordinates; for (const coord of coordinates_1_1) { bounds_1.extend(coord); contentMap_1.fitBounds(bounds_1, {padding: {top: 60, bottom:60, left: 60, right: 60}}); } contentMap_1.on('load', () => { contentMap_1.addLayer({ id: 'route1_1', type: 'line', source: { type: 'geojson', data: geojson_1_1 }, layout: { 'line-join': 'round', 'line-cap': 'round' }, paint: { 'line-color': '#522A7A', 'line-width': 5, 'line-opacity': 0.80 } }); }); contentMap_1.fitBounds(bounds_1, {padding: {top: 60, bottom: 60, left: 60, right: 60}}); contentMap_1.fitBounds(bounds_1, {padding: {top: 60, bottom:60, left: 60, right: 60}}); var boundsSouthWest = bounds_1.getSouthWest(); var boundsNorthEast = bounds_1.getNorthEast(); initialMapBounds[1] = new mapboxgl.LngLatBounds(boundsSouthWest, boundsNorthEast); const visibleMapRoutes_1 = []; contentMaps[1].on('click', (e) => { if (!clickWasOnMarkerOrCard) { resetMarkersAndCards(1); } else { clickWasOnMarkerOrCard = false; } }); } var mapScriptCreated = 0; var mapCssCreated = 0; var mapScriptLoaded = 0; var mapCssLoaded = 0; var mapLoadList = []; function showLazyMap(fname) { if (mapScriptLoaded == 1 && mapCssLoaded == 1) { if (!mapLoadList.includes(fname)) { window[fname](); mapLoadList.push(fname); } } } (function fn() { var pics = document.querySelectorAll('.no-js-hide'); pics.forEach(function(pic) { pic.classList.toggle('no-js-hide'); }); var lazyImages = [].slice.call(document.querySelectorAll(".lazeeload")); if ("IntersectionObserver" in window) { const config = { root: null, rootMargin: '1000px', threshold: 0 }; let lazyImageObserver = new IntersectionObserver(function(entries, observer) { entries.forEach(function(entry) { if (entry.isIntersecting) { let lazyImage = entry.target; if (lazyImage.dataset.src) {lazyImage.src = lazyImage.dataset.src;} if (lazyImage.dataset.srcset) {lazyImage.srcset = lazyImage.dataset.srcset;} if (lazyImage.dataset.map) { const fname = "initMapbox_"+lazyImage.dataset.map; if (mapScriptLoaded == 0) { let script = document.createElement('script'); script.async=true; script.defer=true; script.src = "https://api.mapbox.com/mapbox-gl-js/v3.0.0/mapbox-gl.js"; script.onload = function(){ mapScriptLoaded = 1; showLazyMap(fname); } document.head.appendChild(script); mapScriptCreated = 1; let css = document.createElement('link'); css.rel = "stylesheet"; css.href = "https://api.mapbox.com/mapbox-gl-js/v3.0.0/mapbox-gl.css"; css.onload = function(){ mapCssLoaded = 1; showLazyMap(fname); } document.head.appendChild(css); mapCssCreated = 1; } else { if (typeof window[fname] === 'function') { window[fname](); } showLazyMap(fname); } } lazyImage.classList.remove("no-js-hide"); lazyImage.classList.remove("lazeeload"); lazyImageObserver.unobserve(lazyImage); } }); }, config); lazyImages.forEach(function(lazyImage) { lazyImageObserver.observe(lazyImage); lazyImage.classList.add("lazeeload-activated"); }); } else { let active = false; const lazyLoad = function() { if (active === false) { active = true; setTimeout(function() { lazyImages.forEach(function(lazyImage) { if ((lazyImage.getBoundingClientRect().top <= window.innerHeight+1000 && lazyImage.getBoundingClientRect().bottom >= 0) && getComputedStyle(lazyImage).display !== "none") { if (lazyImage.dataset.src) lazyImage.src = lazyImage.dataset.src; if (lazyImage.dataset.srcset) lazyImage.srcset = lazyImage.dataset.srcset; if (lazyImage.dataset.onload) lazyImage.onload = lazyImage.dataset.onload; lazyImage.classList.remove("lazeeload"); lazyImages = lazyImages.filter(function(image) { return image !== lazyImage; }); if (lazyImages.length === 0) { document.removeEventListener("scroll", lazyLoad); window.removeEventListener("resize", lazyLoad); window.removeEventListener("orientationchange", lazyLoad); } } }); active = false; }, 200); } }; document.addEventListener("scroll", lazyLoad); window.addEventListener("resize", lazyLoad); window.addEventListener("orientationchange", lazyLoad); } var lazyImages = [].slice.call(document.querySelectorAll(".lazeeload")); i=1; lazyImages.forEach(function(lazyImage) { if (!(lazyImage.classList.contains("lazeeload-activated"))) { if (lazyImage.dataset.src) lazyImage.src = lazyImage.dataset.src; if (lazyImage.dataset.srcset) lazyImage.srcset = lazyImage.dataset.srcset; lazyImage.classList.remove("lazeeload"); } }); })();