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: [-121.35165130211732, 35.79025000915822], 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'] = [-122.41432760664115, 37.7674969300369]; 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'] = [-118.241943, 34.053223]; 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'] = [ -121.58660707257648, 36.04671075431376]; 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'] = `Pacific Coast Route`; markerData[1][2]['popupText'] = `460 miles (10 hours*)`; markerData[1][2]['route'] = false; markerData[1][2]['card'] = false; if (typeof markerData[1][3] === 'undefined') { markerData[1][3] = {}; } markerData[1][3]['lonLat'] = [ -119.39441027504087, 36.34774823546546]; 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'] = `Yosemite National Park Route`; markerData[1][3]['popupText'] = `580 miles (10 hours 10 minutes*)`; markerData[1][3]['route'] = false; markerData[1][3]['card'] = false; const geojson_1_0 = { type: 'Feature', properties: {}, geometry: { type: 'LineString', coordinates: [["-122.4136488","37.7675734"],["-122.41362","37.7676977"],["-122.4133588","37.7677188"],["-122.4134138","37.7683341"],["-122.4134528","37.7686747"],["-122.4134721","37.768768"],["-122.4134763","37.7688298"],["-122.4134784","37.7688965"],["-122.4134774","37.769028"],["-122.4134725","37.7690952"],["-122.4134558","37.7692216"],["-122.4134367","37.7693371"],["-122.4134149","37.7694309"],["-122.4133471","37.769471"],["-122.4120021","37.7694307"],["-122.4111351","37.7693665"],["-122.4108891","37.76934"],["-122.4108701","37.7694314"],["-122.4107664","37.7695478"],["-122.4105915","37.7696937"],["-122.4097438","37.770349"],["-122.4096189","37.7703335"],["-122.4093939","37.770298"],["-122.4092921","37.7702806"],["-122.4091812","37.7702564"],["-122.4090609","37.7702216"],["-122.4089551","37.7701818"],["-122.4088465","37.7701367"],["-122.4087466","37.7700866"],["-122.4086437","37.7700309"],["-122.4076125","37.7693763"],["-122.4074584","37.7692724"],["-122.4062169","37.7683596"],["-122.4059766","37.7681723"],["-122.4058898","37.7680985"],["-122.4058206","37.7680315"],["-122.4057589","37.7679648"],["-122.4057014","37.7678913"],["-122.4056478","37.7678133"],["-122.4056024","37.7677343"],["-122.4055659","37.7676547"],["-122.405536","37.7675731"],["-122.4055127","37.7674913"],["-122.4054978","37.7674041"],["-122.405491","37.7673241"],["-122.4054824","37.7672773"],["-122.4054667","37.7671838"],["-122.4054252","37.7668272"],["-122.4054135","37.7667414"],["-122.4053573","37.7664298"],["-122.4053253","37.7662954"],["-122.4052544","37.7660058"],["-122.4051192","37.7645517"],["-122.4051123","37.7643725"],["-122.4051135","37.7642775"],["-122.4051196","37.7641224"],["-122.4051315","37.7639797"],["-122.4051468","37.7638568"],["-122.4051681","37.7637255"],["-122.4051933","37.7636003"],["-122.4052272","37.763467"],["-122.4052664","37.7633352"],["-122.4053059","37.7632168"],["-122.4053541","37.7630936"],["-122.4054089","37.7629627"],["-122.4054649","37.7628448"],["-122.4055319","37.7627161"],["-122.4055925","37.762608"],["-122.4056686","37.7624788"],["-122.4060395","37.7618894"],["-122.4061034","37.7617799"],["-122.4061716","37.7616561"],["-122.4062352","37.7615327"],["-122.4062967","37.7614037"],["-122.4063448","37.7612841"],["-122.406389","37.7611557"],["-122.4064262","37.7610247"],["-122.4064553","37.7608897"],["-122.4064761","37.7607555"],["-122.4064877","37.7606235"],["-122.406493","37.7604909"],["-122.4064888","37.7603608"],["-122.4064781","37.7602306"],["-122.4064601","37.7600956"],["-122.4064314","37.7599548"],["-122.4063961","37.7598282"],["-122.4063517","37.7596937"],["-122.4063038","37.7595722"],["-122.4062476","37.7594518"],["-122.4061812","37.7593248"],["-122.4061076","37.759203"],["-122.406032","37.7590896"],["-122.4059393","37.7589678"],["-122.4058481","37.7588588"],["-122.4057486","37.7587523"],["-122.4056406","37.7586477"],["-122.40553","37.7585478"],["-122.4053103","37.7583694"],["-122.40518","37.7582694"],["-122.4044473","37.7577399"],["-122.4043207","37.7576382"],["-122.4042163","37.7575493"],["-122.4041041","37.7574485"],["-122.4040019","37.7573494"],["-122.4039022","37.7572412"],["-122.4038159","37.7571365"],["-122.4037321","37.7570229"],["-122.4036519","37.7569031"],["-122.403585","37.7567863"],["-122.4035203","37.7566593"],["-122.4034692","37.7565426"],["-122.4034235","37.7564233"],["-122.4033841","37.7562957"],["-122.4033511","37.7561637"],["-122.403326","37.7560338"],["-122.4033049","37.7559089"],["-122.403285","37.755775"],["-122.4030261","37.7530169"],["-122.4030211","37.7528805"],["-122.4030212","37.7526172"],["-122.4030248","37.7525178"],["-122.4030366","37.7523421"],["-122.4030404","37.7522867"],["-122.4030487","37.7522016"],["-122.4030613","37.7520954"],["-122.4030785","37.7519648"],["-122.4030973","37.7518471"],["-122.4031512","37.7515746"],["-122.4031808","37.7514491"],["-122.4042333","37.7480962"],["-122.4043874","37.7475868"],["-122.4050654","37.7453872"],["-122.405151","37.7451393"],["-122.4052011","37.7450132"],["-122.4052596","37.7448807"],["-122.4053729","37.7446427"],["-122.4054358","37.7445262"],["-122.405578","37.7442835"],["-122.4057359","37.7440481"],["-122.405812","37.7439414"],["-122.4059043","37.7438204"],["-122.4070221","37.7424788"],["-122.4070932","37.7423861"],["-122.4071744","37.742273"],["-122.4073301","37.7420428"],["-122.4074114","37.7419102"],["-122.4074751","37.7418017"],["-122.4075381","37.7416866"],["-122.4076018","37.7415646"],["-122.4076619","37.7414396"],["-122.4077207","37.7413122"],["-122.4077872","37.7411978"],["-122.4078549","37.7410782"],["-122.4079218","37.7409536"],["-122.4079829","37.7408297"],["-122.4080324","37.7407084"],["-122.4080768","37.7405804"],["-122.4081084","37.7404558"],["-122.4081658","37.7401944"],["-122.4081918","37.74006"],["-122.4082269","37.7398493"],["-122.4082492","37.7396561"],["-122.4082645","37.7394845"],["-122.4082656","37.739467"],["-122.4082761","37.7392547"],["-122.408284","37.7390003"],["-122.4082819","37.7387297"],["-122.408234","37.737551"],["-122.4082341","37.7374174"],["-122.408241","37.7372878"],["-122.4082537","37.7371575"],["-122.4082783","37.7370065"],["-122.4083042","37.7368824"],["-122.4083355","37.7367614"],["-122.4083775","37.7366289"],["-122.4084284","37.7364947"],["-122.4084838","37.7363657"],["-122.4085411","37.7362524"],["-122.4086084","37.7361299"],["-122.4086786","37.736015"],["-122.4087292","37.7359375"],["-122.4088034","37.7358311"],["-122.4088312","37.7357927"],["-122.4089755","37.7355929"],["-122.4091188","37.7354202"],["-122.4092953","37.7352429"],["-122.4095117","37.7350534"],["-122.4097309","37.7348996"],["-122.4097959","37.734852"],["-122.4099068","37.7347741"],["-122.4100229","37.7346981"],["-122.4101559","37.7346156"],["-122.4102923","37.7345367"],["-122.4109816","37.7341788"],["-122.4115358","37.7338677"],["-122.4119843","37.7336142"],["-122.4137516","37.7327139"],["-122.4138963","37.7326517"],["-122.4142029","37.7325308"],["-122.414507","37.7324248"],["-122.4148141","37.7323318"],["-122.4151389","37.7322478"],["-122.4152999","37.7322115"],["-122.4154564","37.7321799"],["-122.4157939","37.7321224"],["-122.4159498","37.7321007"],["-122.4162894","37.7320646"],["-122.4164461","37.7320525"],["-122.4167789","37.7320365"],["-122.4169457","37.7320322"],["-122.4192739","37.732056"],["-122.4194295","37.7320536"],["-122.4199377","37.7320319"],["-122.4207466","37.7319507"],["-122.4231763","37.7316019"],["-122.4234989","37.7315764"],["-122.4238369","37.731557"],["-122.4243251","37.7315442"],["-122.4249738","37.7315561"],["-122.4253087","37.7315745"],["-122.4259726","37.7316362"],["-122.4291751","37.7322378"],["-122.4294817","37.7322856"],["-122.4299707","37.7323396"],["-122.4304783","37.7323661"],["-122.4306418","37.7323689"],["-122.4307902","37.7323698"],["-122.4312867","37.7323488"],["-122.431806","37.7322995"],["-122.432139","37.7322499"],["-122.4322936","37.7322225"],["-122.4326165","37.7321551"],["-122.4359013","37.7312992"],["-122.4417251","37.7292547"],["-122.4431672","37.7285899"],["-122.4435621","37.7283765"],["-122.4438227","37.7282213"],["-122.4440843","37.7280542"],["-122.4443259","37.7278873"],["-122.4444494","37.7277968"],["-122.4449169","37.7274255"],["-122.4451385","37.7272337"],["-122.4453553","37.7270332"],["-122.4459537","37.7264115"],["-122.4464093","37.7258638"],["-122.4465712","37.7256474"],["-122.4467309","37.7254217"],["-122.4473668","37.7243447"],["-122.4475346","37.7239897"],["-122.4477375","37.7234945"],["-122.4478691","37.7231123"],["-122.447983","37.7227296"],["-122.4481013","37.7222198"],["-122.44815","37.7219528"],["-122.4486509","37.7179147"],["-122.4486693","37.7177952"],["-122.4486944","37.7176676"],["-122.4487244","37.7175389"],["-122.4487561","37.7174154"],["-122.4487935","37.7172862"],["-122.4488372","37.7171549"],["-122.4488835","37.7170326"],["-122.4489333","37.7169109"],["-122.4489936","37.7167754"],["-122.4490468","37.7166641"],["-122.4491084","37.7165447"],["-122.4491816","37.7164158"],["-122.4492492","37.7163028"],["-122.4493287","37.7161798"],["-122.4494075","37.7160655"],["-122.4494812","37.7159645"],["-122.4495739","37.7158437"],["-122.4496689","37.7157304"],["-122.4497608","37.7156271"],["-122.4498638","37.7155168"],["-122.4499596","37.7154191"],["-122.4500662","37.7153167"],["-122.4501779","37.7152146"],["-122.4537847","37.7121545"],["-122.4540244","37.7119632"],["-122.454262","37.7117881"],["-122.4543763","37.711711"],["-122.4545206","37.7116217"],["-122.4546479","37.7115468"],["-122.4549174","37.7114024"],["-122.4550629","37.7113301"],["-122.4551985","37.7112674"],["-122.4557429","37.7110498"],["-122.4558811","37.7110022"],["-122.4560489","37.7109478"],["-122.4562532","37.7108878"],["-122.4563456","37.7108626"],["-122.4565562","37.7108115"],["-122.4568638","37.710748"],["-122.4570216","37.7107207"],["-122.4571865","37.7106958"],["-122.4573604","37.7106735"],["-122.4575333","37.7106549"],["-122.4576839","37.7106416"],["-122.4580122","37.7106257"],["-122.458182","37.7106215"],["-122.4609996","37.7105983"],["-122.4610777","37.7105979"],["-122.4638952","37.7105677"],["-122.464219","37.7105479"],["-122.464552","37.7105125"],["-122.4647263","37.7104886"],["-122.4648817","37.710464"],["-122.4650307","37.7104365"],["-122.4653476","37.7103689"],["-122.4656677","37.7102855"],["-122.4658111","37.7102434"],["-122.4659546","37.7101989"],["-122.4662699","37.7100847"],["-122.4664175","37.7100269"],["-122.4665598","37.7099672"],["-122.4666988","37.709905"],["-122.4668611","37.7098276"],["-122.4669944","37.7097603"],["-122.467119","37.7096933"],["-122.467253","37.7096178"],["-122.4673854","37.7095391"],["-122.4675178","37.7094559"],["-122.4676478","37.7093688"],["-122.4677657","37.7092853"],["-122.4678825","37.7091995"],["-122.468012","37.7090978"],["-122.4682254","37.7089184"],["-122.4705765","37.7067178"],["-122.4706777","37.7066165"],["-122.4707811","37.7065082"],["-122.470882","37.7063944"],["-122.4711154","37.7061144"],["-122.4712828","37.7058878"],["-122.4714369","37.7056482"],["-122.4715557","37.7054296"],["-122.4716787","37.7051906"],["-122.4717907","37.7049521"],["-122.47189","37.7047134"],["-122.4719668","37.7044885"],["-122.4720539","37.7041203"],["-122.4720791","37.7039899"],["-122.4721017","37.7038511"],["-122.4721189","37.7037194"],["-122.4721323","37.7035948"],["-122.4721415","37.7034718"],["-122.4721469","37.7033415"],["-122.472149","37.7032089"],["-122.472141","37.7029494"],["-122.4721315","37.7028111"],["-122.4717091","37.698644"],["-122.471693","37.6985229"],["-122.4715591","37.6977291"],["-122.4715331","37.6975977"],["-122.471507","37.6974817"],["-122.4714754","37.6973543"],["-122.4714369","37.6972168"],["-122.4713937","37.697083"],["-122.4713184","37.6968711"],["-122.4708504","37.6955725"],["-122.4708047","37.6954204"],["-122.4707646","37.6952672"],["-122.4707319","37.6951264"],["-122.4707065","37.694998"],["-122.4706874","37.6948805"],["-122.4706682","37.6947372"],["-122.4706538","37.6946073"],["-122.4706453","37.6944851"],["-122.470639","37.6943405"],["-122.4705881","37.6900862"],["-122.4705938","37.6899624"],["-122.4706028","37.6898295"],["-122.4706168","37.6896983"],["-122.4706349","37.6895712"],["-122.4706575","37.689436"],["-122.4706842","37.6893104"],["-122.4707139","37.6891829"],["-122.4707495","37.6890486"],["-122.4707902","37.6889109"],["-122.4713603","37.6871574"],["-122.4713929","37.6870416"],["-122.4714591","37.6867733"],["-122.4715082","37.6865199"],["-122.471544","37.6862606"],["-122.4715684","37.6859978"],["-122.4717598","37.6826241"],["-122.4723351","37.6775282"],["-122.4723741","37.6772685"],["-122.472398","37.6771428"],["-122.4724234","37.6770228"],["-122.4724551","37.6768899"],["-122.4724871","37.6767707"],["-122.4725265","37.6766407"],["-122.4725677","37.6765192"],["-122.4726127","37.6763949"],["-122.4726634","37.6762767"],["-122.4727163","37.6761682"],["-122.4727682","37.6760675"],["-122.4728789","37.6758527"],["-122.4732276","37.6752755"],["-122.4745787","37.6731189"],["-122.4746525","37.6730087"],["-122.4747304","37.6729011"],["-122.474816","37.6727881"],["-122.4749048","37.6726791"],["-122.47499","37.672581"],["-122.4750909","37.6724707"],["-122.4751882","37.6723706"],["-122.4752878","37.672273"],["-122.4753919","37.6721771"],["-122.4755032","37.6720802"],["-122.4756043","37.6719964"],["-122.4757178","37.6719057"],["-122.4758177","37.6718303"],["-122.4759291","37.6717512"],["-122.4761711","37.6715922"],["-122.4765979","37.6713505"],["-122.4768706","37.6712171"],["-122.4771506","37.671097"],["-122.4772925","37.6710419"],["-122.47744","37.6709881"],["-122.4776016","37.6709343"],["-122.4777562","37.6708862"],["-122.4781968","37.6707645"],["-122.4783549","37.6707262"],["-122.4785105","37.6706919"],["-122.4786742","37.6706626"],["-122.47882","37.6706409"],["-122.4789723","37.6706216"],["-122.4791358","37.6706051"],["-122.4793008","37.6705918"],["-122.4817299","37.6704912"],["-122.4818749","37.6704793"],["-122.4820365","37.6704614"],["-122.4822022","37.6704383"],["-122.4823649","37.6704096"],["-122.4825122","37.670377"],["-122.4826695","37.6703392"],["-122.4828189","37.6702972"],["-122.482981","37.670247"],["-122.4831225","37.6701985"],["-122.4832507","37.6701492"],["-122.4833623","37.6701034"],["-122.4835651","37.6700046"],["-122.483694","37.6699363"],["-122.4838208","37.6698632"],["-122.483952","37.6697836"],["-122.4840679","37.6697063"],["-122.4841905","37.6696182"],["-122.4843136","37.6695213"],["-122.4844212","37.66943"],["-122.4845273","37.6693329"],["-122.4846271","37.6692313"],["-122.4847259","37.6691251"],["-122.4848139","37.6690206"],["-122.4848955","37.6689137"],["-122.4849834","37.6687912"],["-122.4850546","37.6686798"],["-122.4851254","37.6685609"],["-122.4851846","37.6684474"],["-122.4852381","37.6683315"],["-122.4852895","37.6682015"],["-122.4853373","37.6680668"],["-122.4853727","37.6679419"],["-122.4854016","37.6678199"],["-122.4854285","37.6676829"],["-122.4854472","37.6675494"],["-122.4855379","37.6666429"],["-122.4856739","37.6654988"],["-122.485682","37.6652928"],["-122.4856744","37.6650934"],["-122.4856505","37.6648902"],["-122.4856159","37.6646964"],["-122.4855614","37.6645061"],["-122.4854917","37.6643215"],["-122.4853957","37.6641209"],["-122.4852863","37.6639343"],["-122.4849078","37.6633808"],["-122.4846686","37.6630295"],["-122.4843327","37.6625353"],["-122.4842301","37.662355"],["-122.4841456","37.6621857"],["-122.4840576","37.6619895"],["-122.4839875","37.6618107"],["-122.4839239","37.6616151"],["-122.4838801","37.6614238"],["-122.4838441","37.6612265"],["-122.4838197","37.6610269"],["-122.4838096","37.6608376"],["-122.4838084","37.6607336"],["-122.48381","37.660637"],["-122.4838138","37.6605632"],["-122.4838243","37.6604483"],["-122.4838401","37.6603183"],["-122.4838609","37.6601879"],["-122.4838853","37.660058"],["-122.4839169","37.6599253"],["-122.483953","37.6597975"],["-122.4839919","37.6596711"],["-122.4840887","37.6594196"],["-122.4841452","37.6592974"],["-122.4842122","37.6591686"],["-122.4842758","37.6590549"],["-122.4843532","37.6589294"],["-122.4844243","37.6588233"],["-122.4845137","37.6587123"],["-122.4846157","37.6586002"],["-122.4847228","37.6584971"],["-122.4848309","37.6584052"],["-122.4849532","37.6583142"],["-122.4850799","37.6582304"],["-122.4852101","37.6581544"],["-122.4853641","37.6580807"],["-122.4855054","37.6580212"],["-122.4856453","37.6579726"],["-122.4858017","37.6579256"],["-122.4859586","37.6578861"],["-122.4861095","37.6578575"],["-122.4862876","37.6578361"],["-122.486455","37.6578224"],["-122.4866152","37.6578192"],["-122.4867764","37.6578243"],["-122.4869389","37.6578365"],["-122.4871133","37.6578595"],["-122.4875196","37.6579269"],["-122.4882418","37.6580474"],["-122.4883942","37.6580684"],["-122.4885689","37.6580805"],["-122.4887338","37.6580848"],["-122.4889036","37.6580815"],["-122.4890713","37.6580688"],["-122.4892323","37.658049"],["-122.4893857","37.6580244"],["-122.4895499","37.6579858"],["-122.4897104","37.6579377"],["-122.4898624","37.6578847"],["-122.4900046","37.6578259"],["-122.4901562","37.6577554"],["-122.490288","37.6576827"],["-122.4904216","37.6576014"],["-122.4905465","37.6575167"],["-122.490665","37.6574226"],["-122.4907806","37.6573187"],["-122.4908802","37.657218"],["-122.490975","37.6571061"],["-122.4910534","37.6569984"],["-122.4911285","37.6568804"],["-122.4911919","37.6567642"],["-122.4912528","37.656634"],["-122.4912997","37.6565067"],["-122.4913365","37.6563828"],["-122.4913641","37.6562499"],["-122.4913787","37.6561204"],["-122.4913807","37.6559826"],["-122.4913769","37.655847"],["-122.4913598","37.6557183"],["-122.4913359","37.6555932"],["-122.4912995","37.6554648"],["-122.4912514","37.6553332"],["-122.4911984","37.6552135"],["-122.4911006","37.6550239"],["-122.4908485","37.6545615"],["-122.4907896","37.6544435"],["-122.4906804","37.6542101"],["-122.4905997","37.6540226"],["-122.4905352","37.6538517"],["-122.4904798","37.6536872"],["-122.4904366","37.653541"],["-122.4904007","37.6533972"],["-122.4903668","37.6532387"],["-122.4903431","37.6530871"],["-122.4903239","37.6529238"],["-122.4903118","37.6527569"],["-122.4903074","37.6525792"],["-122.4903115","37.6523995"],["-122.4903222","37.6522354"],["-122.4903403","37.6520589"],["-122.4903674","37.6518828"],["-122.4904048","37.6516938"],["-122.490494","37.6513291"],["-122.4911915","37.6483189"],["-122.4919432","37.6455639"],["-122.4920567","37.6450909"],["-122.4921082","37.644815"],["-122.4921505","37.6445274"],["-122.4921573","37.6441537"],["-122.4921331","37.6437517"],["-122.4920717","37.6434669"],["-122.4919751","37.643148"],["-122.4915827","37.6422983"],["-122.490881","37.6408021"],["-122.4906752","37.6403393"],["-122.4904654","37.63978"],["-122.4902103","37.6388512"],["-122.4901142","37.6383542"],["-122.4900483","37.6378058"],["-122.4900397","37.6376053"],["-122.4895211","37.6295157"],["-122.4894677","37.6288935"],["-122.4894159","37.6284701"],["-122.4893383","37.6281259"],["-122.4892288","37.6277922"],["-122.4890938","37.6274755"],["-122.4889476","37.6272015"],["-122.4887753","37.6269292"],["-122.4885824","37.626669"],["-122.4883591","37.6263976"],["-122.48615","37.6240868"],["-122.4859623","37.6238848"],["-122.4858028","37.6236857"],["-122.485665","37.623476"],["-122.4855441","37.6232783"],["-122.4854357","37.6230559"],["-122.4853385","37.622826"],["-122.485282","37.6226456"],["-122.4852333","37.6224528"],["-122.4851895","37.6222324"],["-122.4851637","37.6220073"],["-122.4851524","37.6217743"],["-122.4851632","37.6214621"],["-122.4851741","37.6210981"],["-122.4851924","37.6201301"],["-122.4851887","37.6197603"],["-122.4852017","37.6194875"],["-122.4852268","37.6191998"],["-122.4852903","37.6186684"],["-122.4853292","37.6182465"],["-122.4853389","37.6180991"],["-122.4853574","37.6172462"],["-122.4853766","37.6168103"],["-122.4854014","37.6165804"],["-122.4854384","37.616377"],["-122.4854799","37.6161951"],["-122.4855397","37.6160065"],["-122.4856081","37.615817"],["-122.485685","37.6156408"],["-122.4857781","37.6154583"],["-122.4858799","37.6152834"],["-122.4859908","37.6151005"],["-122.4860836","37.6149577"],["-122.486228","37.6147593"],["-122.4863583","37.6146019"],["-122.4865186","37.6144373"],["-122.4867195","37.6142576"],["-122.4871875","37.6138773"],["-122.4878789","37.6133829"],["-122.4891047","37.612561"],["-122.4901583","37.6118864"],["-122.4906673","37.6115954"],["-122.4909703","37.6114286"],["-122.491564","37.6111027"],["-122.4919311","37.6108921"],["-122.4944446","37.6093606"],["-122.4968036","37.6078514"],["-122.4969163","37.6077709"],["-122.4970343","37.6076818"],["-122.4971568","37.607583"],["-122.4972653","37.6074917"],["-122.4973634","37.6074044"],["-122.4974716","37.6073037"],["-122.4975655","37.607208"],["-122.4976688","37.6070949"],["-122.4977592","37.6069895"],["-122.4978416","37.6068858"],["-122.4979211","37.6067809"],["-122.4980062","37.6066606"],["-122.4980783","37.6065504"],["-122.4981489","37.6064319"],["-122.4982084","37.6063214"],["-122.4982703","37.6061985"],["-122.4983275","37.6060758"],["-122.4983805","37.6059494"],["-122.4984242","37.6058304"],["-122.4984657","37.6057071"],["-122.4985","37.6055849"],["-122.4985353","37.6054498"],["-122.4985621","37.6053221"],["-122.4985831","37.6051912"],["-122.4985998","37.6050672"],["-122.4986099","37.604938"],["-122.4986159","37.6048051"],["-122.4986161","37.6046824"],["-122.4986037","37.6044227"],["-122.4985896","37.6042943"],["-122.4985681","37.6041566"],["-122.4983571","37.6031373"],["-122.4983326","37.6030078"],["-122.4983124","37.6028845"],["-122.498299","37.6027502"],["-122.498292","37.6026232"],["-122.4982911","37.6024881"],["-122.4982965","37.60236"],["-122.4983075","37.6022312"],["-122.4983244","37.6021106"],["-122.4983488","37.6019789"],["-122.4983785","37.6018529"],["-122.4984168","37.6017225"],["-122.4984604","37.6016008"],["-122.4985088","37.6014781"],["-122.4985653","37.6013499"],["-122.4986217","37.601236"],["-122.4986916","37.6011111"],["-122.4987604","37.6009982"],["-122.4988383","37.600884"],["-122.4989215","37.6007729"],["-122.4990155","37.600657"],["-122.4991088","37.6005517"],["-122.4992097","37.600445"],["-122.4993071","37.6003477"],["-122.4996583","37.600013"],["-122.500123","37.5995507"],["-122.5007713","37.5989057"],["-122.5008754","37.5987863"],["-122.5010317","37.5985981"],["-122.5022699","37.5974377"],["-122.5045145","37.5952815"],["-122.5051335","37.5947188"],["-122.5055525","37.5943179"],["-122.505581","37.5942857"],["-122.5056405","37.5942145"],["-122.5056766","37.5941638"],["-122.5057146","37.5941065"],["-122.5057372","37.5940692"],["-122.5057567","37.5940355"],["-122.5057915","37.5939705"],["-122.505806","37.5939383"],["-122.5058217","37.5939017"],["-122.5058352","37.5938669"],["-122.5058457","37.5938334"],["-122.5058548","37.5937977"],["-122.5058653","37.5937557"],["-122.5058739","37.5937125"],["-122.5058886","37.5936141"],["-122.5058924","37.5935618"],["-122.5058943","37.5935091"],["-122.5058944","37.5934558"],["-122.5058917","37.5934035"],["-122.5058866","37.5933512"],["-122.5058799","37.5933039"],["-122.5058709","37.5932551"],["-122.5058583","37.5932056"],["-122.5058454","37.5931611"],["-122.5058301","37.5931143"],["-122.505814","37.5930712"],["-122.5057979","37.5930319"],["-122.5057795","37.5929919"],["-122.5057616","37.5929561"],["-122.5057394","37.5929178"],["-122.5057174","37.5928834"],["-122.5056962","37.5928526"],["-122.5056687","37.5928137"],["-122.5056387","37.5927735"],["-122.5056002","37.5927249"],["-122.5041547","37.5910411"],["-122.5041255","37.5910028"],["-122.5040693","37.5909216"],["-122.5040469","37.590885"],["-122.5040028","37.5908041"],["-122.5039839","37.5907595"],["-122.5039608","37.5907029"],["-122.5039418","37.5906517"],["-122.5039254","37.5906022"],["-122.5039129","37.5905539"],["-122.5039026","37.5905066"],["-122.5038956","37.5904581"],["-122.5038915","37.5904135"],["-122.5038924","37.5903727"],["-122.5038942","37.590331"],["-122.5038974","37.5902897"],["-122.5039037","37.5902511"],["-122.5039115","37.590212"],["-122.5039205","37.5901739"],["-122.5039287","37.5901411"],["-122.5039394","37.590105"],["-122.5039518","37.5900724"],["-122.5039657","37.5900407"],["-122.5039807","37.5900083"],["-122.5039971","37.5899755"],["-122.5040315","37.5899142"],["-122.5040517","37.5898814"],["-122.5040764","37.589845"],["-122.5041262","37.5897784"],["-122.5041557","37.5897419"],["-122.5041845","37.5897109"],["-122.5042301","37.589666"],["-122.5042712","37.5896268"],["-122.5050413","37.5889308"],["-122.5050878","37.5888845"],["-122.5051221","37.5888475"],["-122.5051793","37.5887782"],["-122.505206","37.5887412"],["-122.5052323","37.588703"],["-122.5052548","37.5886645"],["-122.5052775","37.5886234"],["-122.5052984","37.5885778"],["-122.5053218","37.5885166"],["-122.5053425","37.5884514"],["-122.5053581","37.5883819"],["-122.5053678","37.5883179"],["-122.5053715","37.5882568"],["-122.5053694","37.5881758"],["-122.5053595","37.5881036"],["-122.5053444","37.5880293"],["-122.5053258","37.5879669"],["-122.505301","37.5879084"],["-122.5052712","37.5878466"],["-122.5052398","37.5877887"],["-122.5052066","37.5877348"],["-122.5051701","37.587684"],["-122.5051313","37.5876342"],["-122.5050899","37.5875875"],["-122.5045738","37.5870491"],["-122.5045113","37.5869825"],["-122.5044648","37.5869302"],["-122.5044219","37.5868787"],["-122.5043806","37.5868238"],["-122.504348","37.5867764"],["-122.504315","37.5867233"],["-122.504289","37.5866726"],["-122.5042657","37.5866187"],["-122.5042474","37.5865622"],["-122.5042338","37.5865078"],["-122.5042225","37.5864513"],["-122.5042156","37.5863954"],["-122.5042137","37.586341"],["-122.5042174","37.5862796"],["-122.5042236","37.5862243"],["-122.5042369","37.5861673"],["-122.5042518","37.5861156"],["-122.5042712","37.586062"],["-122.5042952","37.5860067"],["-122.5043252","37.5859531"],["-122.5043611","37.5858979"],["-122.5044002","37.5858486"],["-122.5044503","37.5857936"],["-122.5045021","37.585744"],["-122.5045514","37.5856997"],["-122.5046063","37.5856595"],["-122.504668","37.5856198"],["-122.5047287","37.5855838"],["-122.5047923","37.5855535"],["-122.5049212","37.5855035"],["-122.5049856","37.5854822"],["-122.50505","37.5854638"],["-122.5052473","37.585415"],["-122.5069795","37.5850546"],["-122.5070965","37.5850396"],["-122.5072104","37.5850223"],["-122.5073338","37.5849985"],["-122.5074351","37.5849762"],["-122.5075097","37.584958"],["-122.507588","37.5849357"],["-122.5076596","37.5849137"],["-122.507736","37.5848884"],["-122.5078635","37.584842"],["-122.5079375","37.5848119"],["-122.5080022","37.5847845"],["-122.5081477","37.5847162"],["-122.5082318","37.5846737"],["-122.5083051","37.5846336"],["-122.5083756","37.5845917"],["-122.5084483","37.5845458"],["-122.508587","37.5844501"],["-122.5086574","37.5843971"],["-122.5087184","37.5843482"],["-122.5087833","37.5842937"],["-122.5088375","37.5842431"],["-122.5089015","37.5841815"],["-122.5089588","37.5841221"],["-122.5090111","37.5840642"],["-122.5090607","37.5840056"],["-122.5091117","37.5839401"],["-122.5091563","37.5838803"],["-122.5092","37.5838168"],["-122.5092821","37.5836826"],["-122.5157502","37.5718225"],["-122.5157753","37.5717725"],["-122.5157994","37.571718"],["-122.5158186","37.5716711"],["-122.5158622","37.5715566"],["-122.5158814","37.5714971"],["-122.5158983","37.571435"],["-122.5159168","37.5713596"],["-122.5159316","37.5712868"],["-122.5159441","37.57121"],["-122.5159546","37.5711321"],["-122.5159603","37.5710568"],["-122.5159635","37.5709858"],["-122.5159631","37.5709095"],["-122.5159607","37.5708381"],["-122.5159466","37.5706833"],["-122.5159329","37.5705927"],["-122.5159016","37.5704563"],["-122.5158876","37.5704065"],["-122.515868","37.5703442"],["-122.5158424","37.5702722"],["-122.5158152","37.5702012"],["-122.515788","37.5701379"],["-122.5157272","37.5700143"],["-122.5156913","37.5699491"],["-122.5156089","37.5698202"],["-122.5155603","37.5697514"],["-122.5155088","37.5696832"],["-122.5154626","37.5696313"],["-122.5154156","37.5695855"],["-122.5153543","37.5695301"],["-122.5144848","37.5685262"],["-122.5143304","37.5683389"],["-122.51426","37.5682469"],["-122.5141862","37.5681449"],["-122.5140508","37.5679399"],["-122.5139732","37.5678126"],["-122.5138944","37.5676743"],["-122.5138271","37.567533"],["-122.5136575","37.5671387"],["-122.5129858","37.5655543"],["-122.5126854","37.5648135"],["-122.5126402","37.564691"],["-122.5126025","37.5645557"],["-122.5125819","37.5644179"],["-122.512571","37.5642804"],["-122.5125711","37.564149"],["-122.5125767","37.5640155"],["-122.5125906","37.5638918"],["-122.5126173","37.5637563"],["-122.512658","37.5636328"],["-122.5127184","37.5635063"],["-122.5127975","37.5633731"],["-122.5128861","37.5632418"],["-122.5129826","37.5631086"],["-122.5130876","37.5629795"],["-122.513202","37.5628513"],["-122.5133225","37.562713"],["-122.5134209","37.5625842"],["-122.5135034","37.5624495"],["-122.5135646","37.5623086"],["-122.5135997","37.562183"],["-122.5136321","37.5620446"],["-122.513631","37.5619223"],["-122.5136059","37.5617846"],["-122.5135523","37.5616366"],["-122.5134366","37.5613867"],["-122.5132212","37.5609401"],["-122.5131132","37.5607022"],["-122.5130883","37.5605649"],["-122.5130859","37.5604387"],["-122.5130944","37.5603107"],["-122.5131275","37.5601764"],["-122.5131896","37.5600306"],["-122.5132828","37.5598876"],["-122.5133959","37.5597733"],["-122.5135383","37.5596583"],["-122.5139592","37.5593857"],["-122.5141893","37.5592335"],["-122.514347","37.5591097"],["-122.5144588","37.5589852"],["-122.5145406","37.5588438"],["-122.5145979","37.5587091"],["-122.5146275","37.5585804"],["-122.5146258","37.558457"],["-122.514613","37.5583327"],["-122.5145699","37.5581774"],["-122.5145204","37.5580658"],["-122.5144622","37.5579514"],["-122.514392","37.5578506"],["-122.5143262","37.5577706"],["-122.5142477","37.5576912"],["-122.5141142","37.5575853"],["-122.5135674","37.557194"],["-122.513444","37.557092"],["-122.5133367","37.5569763"],["-122.5132389","37.5568489"],["-122.5131585","37.5567199"],["-122.5130925","37.5566015"],["-122.5130358","37.5564907"],["-122.5129825","37.5563574"],["-122.5129184","37.5561468"],["-122.512834","37.5557451"],["-122.5125468","37.5541601"],["-122.5124006","37.5533413"],["-122.5120654","37.5514409"],["-122.5120124","37.5511129"],["-122.5119372","37.5506046"],["-122.5119081","37.5502797"],["-122.5118964","37.5499949"],["-122.51191","37.5497022"],["-122.5119403","37.5494291"],["-122.5119669","37.5492821"],["-122.5120175","37.5490602"],["-122.5120934","37.5487608"],["-122.512195","37.5484592"],["-122.5123175","37.5481503"],["-122.5124824","37.5478387"],["-122.5126515","37.5475541"],["-122.5129489","37.5471117"],["-122.5135946","37.5461864"],["-122.5145086","37.5448398"],["-122.5149579","37.5441637"],["-122.5155353","37.5433276"],["-122.515728","37.5430338"],["-122.5158479","37.5428242"],["-122.5159579","37.5425879"],["-122.5160529","37.5423541"],["-122.5164247","37.5411046"],["-122.5167767","37.5399316"],["-122.5175132","37.5373121"],["-122.5175844","37.5370646"],["-122.5177014","37.5366038"],["-122.5177884","37.5362194"],["-122.5178564","37.5357871"],["-122.517881","37.5356016"],["-122.5179057","37.5352733"],["-122.5179097","37.5349223"],["-122.5178951","37.5345485"],["-122.5178551","37.5341406"],["-122.5177919","37.5337135"],["-122.5176943","37.5332631"],["-122.5175698","37.5328403"],["-122.5174135","37.5324107"],["-122.5172118","37.5319569"],["-122.5170102","37.531566"],["-122.5167956","37.5312021"],["-122.5165672","37.5308556"],["-122.5163131","37.5305182"],["-122.5160148","37.5301656"],["-122.5155893","37.5297112"],["-122.514644","37.5287504"],["-122.5144934","37.5285976"],["-122.5089862","37.5230347"],["-122.5087103","37.5227716"],["-122.5083688","37.5224611"],["-122.5080511","37.5221889"],["-122.5077107","37.5219128"],["-122.5073819","37.5216589"],["-122.5070488","37.5214138"],["-122.5067263","37.5211948"],["-122.5059716","37.5207163"],["-122.5054708","37.520423"],["-122.4947181","37.5146399"],["-122.4944813","37.5144943"],["-122.494351","37.5144135"],["-122.4942463","37.514346"],["-122.4939399","37.5141431"],["-122.4882174","37.5099604"],["-122.4842528","37.5069911"],["-122.4839309","37.5067649"],["-122.4835901","37.5065372"],["-122.4829541","37.5061346"],["-122.4826639","37.5059602"],["-122.4823213","37.5057705"],["-122.4820444","37.5056232"],["-122.4812913","37.5052585"],["-122.4774203","37.5036428"],["-122.4681701","37.5000591"],["-122.4569529","37.4957194"],["-122.4564905","37.4955628"],["-122.4561193","37.4954299"],["-122.4556712","37.4952443"],["-122.4554583","37.495111"],["-122.4552677","37.4950149"],["-122.4550622","37.494907"],["-122.4548263","37.4947685"],["-122.4547155","37.4946966"],["-122.4545534","37.4945875"],["-122.4544092","37.4944839"],["-122.4540933","37.4942387"],["-122.4539358","37.4941086"],["-122.453787","37.4939702"],["-122.4536718","37.4938594"],["-122.453488","37.4936675"],["-122.4533331","37.493486"],["-122.453192","37.4933078"],["-122.4530446","37.4931027"],["-122.4459435","37.4828326"],["-122.4455942","37.4823381"],["-122.4454677","37.4821708"],["-122.4453491","37.4820236"],["-122.4452033","37.4818611"],["-122.4448623","37.4815068"],["-122.4362497","37.4732602"],["-122.4358078","37.4727577"],["-122.4352581","37.4721345"],["-122.4351854","37.4720565"],["-122.4348101","37.4716086"],["-122.4345136","37.4712431"],["-122.4344217","37.471116"],["-122.4343434","37.4710009"],["-122.4342491","37.4708484"],["-122.4341935","37.4707497"],["-122.4341183","37.4706122"],["-122.434055","37.4704904"],["-122.4339953","37.4703648"],["-122.433927","37.4702097"],["-122.4338904","37.4701153"],["-122.4338381","37.4699713"],["-122.4337972","37.4698422"],["-122.4337633","37.4697206"],["-122.4336866","37.4694193"],["-122.4336588","37.4692823"],["-122.4336333","37.4691408"],["-122.4336028","37.4688887"],["-122.4335958","37.4687961"],["-122.4335878","37.4686075"],["-122.4335875","37.468469"],["-122.4335928","37.4683105"],["-122.433603","37.4681555"],["-122.4336182","37.468031"],["-122.4336294","37.4679262"],["-122.4343655","37.4631525"],["-122.4343825","37.4629168"],["-122.4344082","37.462196"],["-122.434419","37.4617957"],["-122.4344474","37.4614199"],["-122.4345163","37.4608724"],["-122.4345506","37.4605968"],["-122.434567","37.4603074"],["-122.4345661","37.4601787"],["-122.4345611","37.4600393"],["-122.4345528","37.4598868"],["-122.434541","37.4597371"],["-122.4345248","37.4595884"],["-122.4345022","37.4594335"],["-122.4344762","37.4593035"],["-122.4344564","37.4592154"],["-122.4344335","37.4591227"],["-122.4344005","37.458999"],["-122.4343532","37.4588348"],["-122.4343018","37.4586893"],["-122.4342371","37.4585254"],["-122.4341581","37.4583562"],["-122.4340729","37.4581863"],["-122.4312521","37.4531208"],["-122.4306238","37.4516677"],["-122.4304605","37.4513146"],["-122.4302216","37.4508818"],["-122.4295918","37.4497622"],["-122.4293396","37.4492859"],["-122.429255","37.4491079"],["-122.4291711","37.4489146"],["-122.4290939","37.4487156"],["-122.4290289","37.448532"],["-122.4289732","37.4483551"],["-122.4289135","37.4481465"],["-122.428859","37.4479562"],["-122.4287993","37.4477439"],["-122.4287717","37.4476022"],["-122.4274288","37.4376332"],["-122.4273055","37.4367059"],["-122.4267098","37.4320658"],["-122.4266761","37.4316132"],["-122.4265155","37.427832"],["-122.4264853","37.427138"],["-122.4263556","37.4243364"],["-122.4263358","37.4241065"],["-122.426275","37.4236539"],["-122.4262366","37.4234223"],["-122.4260959","37.4227774"],["-122.4259716","37.4223065"],["-122.4206132","37.4057588"],["-122.420127","37.4042981"],["-122.4199631","37.4037852"],["-122.4198927","37.4035547"],["-122.4198216","37.4033272"],["-122.4191543","37.4013086"],["-122.4190568","37.4010343"],["-122.4189617","37.4007895"],["-122.4188703","37.4005681"],["-122.4187614","37.4003419"],["-122.4186479","37.4001205"],["-122.4185236","37.3998974"],["-122.4183834","37.3996641"],["-122.4182494","37.3994583"],["-122.4180914","37.3992259"],["-122.4179273","37.3990085"],["-122.4177297","37.3987683"],["-122.4175419","37.3985504"],["-122.4173524","37.3983438"],["-122.4171642","37.3981565"],["-122.4166377","37.3976765"],["-122.4073315","37.3894173"],["-122.4071468","37.3892412"],["-122.4069894","37.3890834"],["-122.406806","37.388893"],["-122.4066479","37.3887149"],["-122.4065031","37.3885434"],["-122.4063712","37.3883737"],["-122.4062537","37.3882113"],["-122.4061269","37.3880278"],["-122.4060199","37.38786"],["-122.4059015","37.3876595"],["-122.4058032","37.3874775"],["-122.4057025","37.3872725"],["-122.4056248","37.3870911"],["-122.4054735","37.3866803"],["-122.4053428","37.386275"],["-122.4050211","37.3851116"],["-122.4046729","37.3837785"],["-122.4046141","37.3834886"],["-122.4045714","37.3832468"],["-122.4045084","37.3828142"],["-122.404449","37.3823719"],["-122.4043927","37.3817414"],["-122.4043573","37.3811961"],["-122.4043395","37.3805055"],["-122.4043098","37.3796681"],["-122.4042241","37.3789257"],["-122.4041447","37.3781731"],["-122.4038018","37.3748391"],["-122.4037744","37.3745333"],["-122.4037647","37.3743429"],["-122.4037655","37.3741692"],["-122.4037835","37.3739933"],["-122.4038064","37.3738243"],["-122.4038413","37.3736468"],["-122.403888","37.3734608"],["-122.4039537","37.3732645"],["-122.4040276","37.3730768"],["-122.4042105","37.3726846"],["-122.4044042","37.3722719"],["-122.4045598","37.3719279"],["-122.4046341","37.3717323"],["-122.4046997","37.3715329"],["-122.4047679","37.3713114"],["-122.4048176","37.3711123"],["-122.4048525","37.3709085"],["-122.4048813","37.3707051"],["-122.4048918","37.3705123"],["-122.4049032","37.3700862"],["-122.4048322","37.3673793"],["-122.4048246","37.367193"],["-122.4047952","37.3667861"],["-122.4047624","37.3665986"],["-122.4047146","37.366402"],["-122.4046518","37.3661866"],["-122.40457","37.3659402"],["-122.4044835","37.3657122"],["-122.4043854","37.3654893"],["-122.4042798","37.3652829"],["-122.4041515","37.3650479"],["-122.4040194","37.3648379"],["-122.4038804","37.3646519"],["-122.4036601","37.3643784"],["-122.4034629","37.3641577"],["-122.3995715","37.3603365"],["-122.3994747","37.3602506"],["-122.3993552","37.3601497"],["-122.3992297","37.3600543"],["-122.3983116","37.3594167"],["-122.3981376","37.3592903"],["-122.3979906","37.3591684"],["-122.3978634","37.3590504"],["-122.3977443","37.3589244"],["-122.3976441","37.3588061"],["-122.3975455","37.3586825"],["-122.3974597","37.3585628"],["-122.3973734","37.3584261"],["-122.39729","37.3582764"],["-122.3972181","37.3581362"],["-122.3971577","37.3579982"],["-122.3971047","37.3578555"],["-122.3970658","37.3577289"],["-122.3970326","37.3575986"],["-122.3970037","37.3574562"],["-122.3969857","37.3573297"],["-122.3969743","37.3572013"],["-122.3969692","37.3570756"],["-122.3969699","37.3569566"],["-122.3969762","37.3568383"],["-122.3969891","37.3567187"],["-122.397006","37.3566081"],["-122.3970253","37.3565121"],["-122.3970489","37.3564097"],["-122.3970795","37.3563012"],["-122.3971355","37.3561345"],["-122.3972138","37.3559427"],["-122.3973112","37.3557491"],["-122.3974298","37.3555596"],["-122.3977932","37.3550368"],["-122.3981542","37.3545207"],["-122.3983537","37.3542239"],["-122.3984507","37.3540416"],["-122.3985424","37.3538437"],["-122.3986134","37.353643"],["-122.3986664","37.3534492"],["-122.3987039","37.3532647"],["-122.3987234","37.3530683"],["-122.3987333","37.3528993"],["-122.3987308","37.352808"],["-122.3987216","37.3526034"],["-122.3986707","37.3516156"],["-122.398648","37.351323"],["-122.3986126","37.3511358"],["-122.3985743","37.3509719"],["-122.3985521","37.3508946"],["-122.3985118","37.3507647"],["-122.3984411","37.3505913"],["-122.3983453","37.3504011"],["-122.3982043","37.3501833"],["-122.3979635","37.3498347"],["-122.3978033","37.3495868"],["-122.3976849","37.3493796"],["-122.397582","37.3491637"],["-122.3974834","37.3489407"],["-122.3974045","37.348727"],["-122.3973167","37.3484328"],["-122.3972216","37.3480312"],["-122.3971458","37.3477233"],["-122.3970376","37.3472834"],["-122.3969614","37.3470347"],["-122.396878","37.3468014"],["-122.396783","37.3465945"],["-122.3966848","37.3464034"],["-122.3965772","37.3462119"],["-122.3964539","37.3460172"],["-122.3963134","37.3458209"],["-122.3961747","37.3456454"],["-122.395988","37.3454276"],["-122.3957341","37.3451535"],["-122.3953025","37.3446829"],["-122.3951885","37.3445489"],["-122.3950823","37.3444102"],["-122.3949803","37.3442605"],["-122.3948947","37.3441179"],["-122.3948211","37.343979"],["-122.3947495","37.3438175"],["-122.394696","37.3436658"],["-122.3946533","37.3435106"],["-122.3946201","37.3433644"],["-122.3945951","37.3432178"],["-122.39458","37.3430579"],["-122.3945693","37.3429168"],["-122.3945736","37.3427661"],["-122.3945835","37.3426258"],["-122.3946065","37.3424821"],["-122.3946872","37.3421526"],["-122.3948622","37.3414707"],["-122.3949105","37.3412665"],["-122.3949337","37.3411175"],["-122.3949504","37.3409532"],["-122.3949625","37.3408096"],["-122.3949645","37.3406473"],["-122.3949564","37.3404901"],["-122.3949378","37.3403406"],["-122.3949105","37.3401843"],["-122.3948549","37.3399611"],["-122.3929569","37.3334382"],["-122.392891","37.3332379"],["-122.3928281","37.3330764"],["-122.3927439","37.3329137"],["-122.3926462","37.3327512"],["-122.3925436","37.3326033"],["-122.3924335","37.3324593"],["-122.3923109","37.3323166"],["-122.3921111","37.3320997"],["-122.3916296","37.3315926"],["-122.391521","37.3314646"],["-122.3914273","37.3313369"],["-122.3913477","37.3311965"],["-122.3912864","37.3310601"],["-122.3912437","37.3309282"],["-122.3912153","37.3307855"],["-122.3912052","37.3306358"],["-122.3912062","37.3304839"],["-122.391229","37.330334"],["-122.3912651","37.3301822"],["-122.3913202","37.3300275"],["-122.3913955","37.3298776"],["-122.391491","37.3297339"],["-122.3915979","37.3296032"],["-122.3917158","37.3294824"],["-122.391858","37.3293545"],["-122.3920087","37.3292497"],["-122.3921791","37.3291539"],["-122.3923618","37.3290691"],["-122.3925495","37.3289991"],["-122.3927439","37.3289454"],["-122.3929333","37.3289078"],["-122.3931157","37.3288839"],["-122.3932923","37.3288737"],["-122.393467","37.3288781"],["-122.3936481","37.3288951"],["-122.3941028","37.3289559"],["-122.3944816","37.3290056"],["-122.3949376","37.329065"],["-122.3951545","37.3290749"],["-122.3953751","37.3290607"],["-122.3955909","37.329034"],["-122.3958101","37.3289928"],["-122.396018","37.3289375"],["-122.3962406","37.3288698"],["-122.3964298","37.3287933"],["-122.3966084","37.3287099"],["-122.3967731","37.3286168"],["-122.3969328","37.3285125"],["-122.3970734","37.3284086"],["-122.3972022","37.3282968"],["-122.3973177","37.3281783"],["-122.3974282","37.3280473"],["-122.3977686","37.3275652"],["-122.4005644","37.3235104"],["-122.400809","37.3231127"],["-122.4009205","37.3229226"],["-122.4014108","37.3220256"],["-122.4016752","37.3215203"],["-122.4019205","37.3210359"],["-122.402026","37.3208063"],["-122.4021281","37.3205664"],["-122.4023334","37.320056"],["-122.4024286","37.319797"],["-122.4026136","37.3192544"],["-122.4028874","37.3183647"],["-122.4029716","37.3180471"],["-122.403227","37.316886"],["-122.403362","37.3160335"],["-122.4043596","37.3086706"],["-122.4045607","37.3071014"],["-122.4046161","37.306478"],["-122.4046486","37.3047436"],["-122.4046633","37.2994933"],["-122.4046713","37.2990728"],["-122.4046821","37.2988739"],["-122.4047067","37.298668"],["-122.4047437","37.2984502"],["-122.4047867","37.2982615"],["-122.4048147","37.2981575"],["-122.4048362","37.298085"],["-122.4048644","37.2979998"],["-122.4049141","37.2978568"],["-122.4049858","37.2976756"],["-122.405068","37.2974847"],["-122.4051732","37.2972777"],["-122.4052737","37.2970879"],["-122.4053792","37.2968988"],["-122.4054936","37.2967166"],["-122.4056037","37.2965405"],["-122.4057175","37.296345"],["-122.4058348","37.2961261"],["-122.4059786","37.2958346"],["-122.4060899","37.2955876"],["-122.4061639","37.2953967"],["-122.4062351","37.2951807"],["-122.4062932","37.2949748"],["-122.4063319","37.2947931"],["-122.406369","37.2945884"],["-122.4063921","37.2943934"],["-122.4064033","37.2941915"],["-122.4064041","37.2939893"],["-122.4063943","37.2937711"],["-122.4063664","37.2935493"],["-122.4063289","37.2933278"],["-122.4062745","37.2931126"],["-122.4062197","37.2929138"],["-122.4060778","37.292516"],["-122.4050029","37.2896838"],["-122.4048365","37.2892256"],["-122.4047711","37.2890022"],["-122.4047266","37.2887814"],["-122.4046888","37.2885654"],["-122.404663","37.2883418"],["-122.4046485","37.2881205"],["-122.4046449","37.2879188"],["-122.404649","37.2877059"],["-122.4046644","37.2874939"],["-122.4046886","37.2872878"],["-122.4047257","37.2870706"],["-122.4047736","37.2868561"],["-122.4048332","37.286642"],["-122.4048959","37.286444"],["-122.4049748","37.2862328"],["-122.40507","37.2860269"],["-122.4051829","37.2858078"],["-122.4052839","37.2856299"],["-122.4054117","37.2854195"],["-122.4070338","37.2830849"],["-122.4073025","37.2826438"],["-122.4074201","37.2824273"],["-122.4075344","37.2822075"],["-122.4076405","37.2819778"],["-122.407733","37.2817648"],["-122.4078218","37.2815375"],["-122.4079018","37.2813127"],["-122.4079757","37.281072"],["-122.4080345","37.2808526"],["-122.4080972","37.280586"],["-122.4081428","37.2803677"],["-122.4081799","37.2801391"],["-122.408208","37.2799134"],["-122.4082319","37.2796726"],["-122.4082324","37.278994"],["-122.4081362","37.27687"],["-122.4081362","37.2766004"],["-122.4081511","37.27634"],["-122.4081827","37.2760585"],["-122.4082218","37.2757984"],["-122.4082687","37.2755517"],["-122.408454","37.2747854"],["-122.4095373","37.2705557"],["-122.4097592","37.2697121"],["-122.4098318","37.2694826"],["-122.4100395","37.2688956"],["-122.410121","37.268698"],["-122.4102053","37.2685066"],["-122.4103043","37.2683017"],["-122.4103986","37.2681228"],["-122.4105327","37.2678924"],["-122.4106418","37.267712"],["-122.411042","37.2670908"],["-122.4112038","37.2668518"],["-122.411301","37.2666928"],["-122.4114029","37.2665293"],["-122.4116025","37.2661631"],["-122.4116892","37.2659598"],["-122.4117707","37.2657763"],["-122.4118462","37.2655907"],["-122.4119277","37.2653696"],["-122.4119948","37.2651489"],["-122.4120469","37.2649412"],["-122.412099","37.2646624"],["-122.4122348","37.2639055"],["-122.4126349","37.2621116"],["-122.4128326","37.2613479"],["-122.4128949","37.261087"],["-122.4130183","37.2605129"],["-122.4130957","37.2601408"],["-122.4132615","37.2593735"],["-122.4135733","37.2579976"],["-122.4140072","37.2560343"],["-122.4141235","37.2555432"],["-122.4142907","37.2549756"],["-122.4143735","37.2547191"],["-122.4145633","37.2541812"],["-122.4146643","37.25393"],["-122.4147819","37.2536541"],["-122.4152474","37.2526765"],["-122.4169963","37.249032"],["-122.4170949","37.2487873"],["-122.4171781","37.2485662"],["-122.4172638","37.2483186"],["-122.4173402","37.2480745"],["-122.4174096","37.2478215"],["-122.4174604","37.2476211"],["-122.4175099","37.2474023"],["-122.4175569","37.2471733"],["-122.4176334","37.2467283"],["-122.417664","37.246486"],["-122.4180119","37.242346"],["-122.4180165","37.2421586"],["-122.4180093","37.2419723"],["-122.417998","37.2417844"],["-122.4179773","37.2415905"],["-122.4179444","37.241383"],["-122.4179005","37.2411787"],["-122.4178533","37.2409866"],["-122.4177883","37.240786"],["-122.4177195","37.240594"],["-122.4176435","37.2404072"],["-122.4175547","37.2402087"],["-122.4174633","37.2400304"],["-122.4173561","37.2398396"],["-122.4172429","37.2396565"],["-122.4171078","37.2394598"],["-122.4167786","37.2390293"],["-122.4160895","37.2381384"],["-122.415969","37.2379717"],["-122.415856","37.2377907"],["-122.4157524","37.2376089"],["-122.415661","37.2374228"],["-122.4155896","37.2372474"],["-122.4155299","37.2370766"],["-122.4154744","37.2368931"],["-122.4154301","37.2367237"],["-122.4153943","37.2365506"],["-122.4152199","37.2354504"],["-122.415116","37.2348036"],["-122.4150736","37.2345996"],["-122.4150256","37.2344156"],["-122.4149675","37.2342255"],["-122.4148497","37.233888"],["-122.4147858","37.2337274"],["-122.4147091","37.2335514"],["-122.4146159","37.2333562"],["-122.4145182","37.2331715"],["-122.414405","37.2329665"],["-122.4142806","37.2327593"],["-122.414142","37.2325491"],["-122.4138937","37.2322227"],["-122.4098654","37.2274371"],["-122.4073202","37.2244085"],["-122.4071904","37.2242363"],["-122.4070527","37.2240419"],["-122.4069422","37.2238779"],["-122.4068313","37.2236984"],["-122.4067303","37.2235065"],["-122.4066465","37.2233393"],["-122.4064949","37.2229721"],["-122.4064338","37.2227916"],["-122.4063272","37.2224421"],["-122.4062811","37.2222661"],["-122.4062441","37.2221071"],["-122.4062096","37.2219213"],["-122.4061806","37.2217263"],["-122.4061476","37.2213716"],["-122.4061404","37.2212035"],["-122.4061364","37.2210214"],["-122.4061368","37.220871"],["-122.4061543","37.2202587"],["-122.4061946","37.2191081"],["-122.4062955","37.2159279"],["-122.406291","37.2155615"],["-122.4062831","37.2153884"],["-122.4062705","37.2152059"],["-122.4062552","37.215031"],["-122.4062298","37.2148206"],["-122.4061974","37.2146047"],["-122.4061622","37.2144075"],["-122.406079","37.2140109"],["-122.4060357","37.2138283"],["-122.4059846","37.2136375"],["-122.405867","37.2132562"],["-122.4057976","37.2130486"],["-122.405726","37.2128583"],["-122.4056431","37.212653"],["-122.4055414","37.2124261"],["-122.40372","37.2085806"],["-122.4033227","37.2076888"],["-122.401223","37.2031619"],["-122.4011539","37.2029955"],["-122.4010968","37.2028352"],["-122.4010351","37.2026531"],["-122.4009891","37.2024916"],["-122.4009523","37.202331"],["-122.4009225","37.202176"],["-122.4008951","37.2020076"],["-122.400875","37.2018508"],["-122.400742","37.2001207"],["-122.4007091","37.1996694"],["-122.4006826","37.1992465"],["-122.4006545","37.1989045"],["-122.4006312","37.1986451"],["-122.4005978","37.1983089"],["-122.4005654","37.1981035"],["-122.400531","37.1979101"],["-122.4004382","37.1974944"],["-122.400376","37.1972785"],["-122.4003044","37.1970569"],["-122.4002267","37.1968376"],["-122.4001417","37.1966163"],["-122.4000458","37.1963804"],["-122.3999418","37.1961626"],["-122.3998294","37.1959427"],["-122.399699","37.195709"],["-122.3995647","37.1954907"],["-122.3994088","37.1952507"],["-122.3992605","37.1950343"],["-122.3922937","37.1859021"],["-122.3921573","37.1857462"],["-122.3920076","37.1855941"],["-122.391853","37.1854527"],["-122.3916949","37.185322"],["-122.3915247","37.1851924"],["-122.3913621","37.185076"],["-122.3911988","37.1849687"],["-122.3910206","37.1848631"],["-122.3908434","37.1847686"],["-122.3906655","37.184682"],["-122.3904609","37.1845967"],["-122.390268","37.1845218"],["-122.3900468","37.1844446"],["-122.3898194","37.1843771"],["-122.3895842","37.1843161"],["-122.3893337","37.1842624"],["-122.3890914","37.1842165"],["-122.3888534","37.1841802"],["-122.3883158","37.1841247"],["-122.3864301","37.1839527"],["-122.3837419","37.1837064"],["-122.3834109","37.1836646"],["-122.3830403","37.1836087"],["-122.3826864","37.1835465"],["-122.3823436","37.1834788"],["-122.3816923","37.1833292"],["-122.3808064","37.1830845"],["-122.3799577","37.182792"],["-122.3796576","37.182678"],["-122.3791315","37.1824586"],["-122.3789153","37.1823631"],["-122.378491","37.1821583"],["-122.3782591","37.1820384"],["-122.365767","37.1752018"],["-122.3655298","37.1750545"],["-122.3653325","37.1749176"],["-122.3651269","37.1747667"],["-122.3649409","37.174612"],["-122.3647516","37.1744424"],["-122.3645843","37.1742747"],["-122.3644105","37.1740875"],["-122.3642508","37.1739011"],["-122.3640951","37.1737014"],["-122.3639486","37.173499"],["-122.363818","37.1732987"],["-122.3636979","37.1730941"],["-122.3635915","37.17288"],["-122.3634983","37.1726721"],["-122.3632537","37.1720703"],["-122.3615556","37.1678364"],["-122.3613209","37.1672198"],["-122.3604867","37.1650785"],["-122.3603282","37.1647025"],["-122.3601966","37.1644112"],["-122.3600739","37.1641695"],["-122.3599399","37.1639221"],["-122.359807","37.1636919"],["-122.3596572","37.1634425"],["-122.3576299","37.1604735"],["-122.3566815","37.1590918"],["-122.3556669","37.1576156"],["-122.3554706","37.1573524"],["-122.3551228","37.1569077"],["-122.3547094","37.156404"],["-122.3506085","37.1519768"],["-122.3496537","37.1509765"],["-122.349428","37.1507687"],["-122.3492215","37.1505864"],["-122.3489927","37.1504003"],["-122.3487607","37.1502234"],["-122.3485068","37.1500418"],["-122.3482536","37.1498702"],["-122.3479681","37.1496928"],["-122.3476987","37.1495366"],["-122.347427","37.1493934"],["-122.3469008","37.1491414"],["-122.3466017","37.1490115"],["-122.3460637","37.1487963"],["-122.3444165","37.1482143"],["-122.3240134","37.1414647"],["-122.3232252","37.1411967"],["-122.3229994","37.1411074"],["-122.322777","37.1410117"],["-122.3225552","37.1409096"],["-122.3223488","37.1408073"],["-122.3221411","37.1406924"],["-122.3219283","37.1405589"],["-122.3215267","37.1402782"],["-122.321318","37.1401199"],["-122.3211505","37.1399862"],["-122.3209711","37.1398308"],["-122.3205393","37.1394045"],["-122.3179462","37.1365941"],["-122.3139697","37.1322698"],["-122.3134874","37.1317553"],["-122.3127508","37.1309458"],["-122.3111771","37.1291595"],["-122.3109627","37.1288936"],["-122.3105252","37.1283315"],["-122.3101323","37.1277975"],["-122.3063718","37.1217703"],["-122.3059006","37.1209826"],["-122.3053876","37.1200418"],["-122.3036512","37.1166335"],["-122.3035222","37.1163916"],["-122.3033922","37.1161789"],["-122.3032594","37.1159778"],["-122.30311","37.1157722"],["-122.3029593","37.1155784"],["-122.3027993","37.1153923"],["-122.3026229","37.1152091"],["-122.3024409","37.1150319"],["-122.3022464","37.1148607"],["-122.3020637","37.1147121"],["-122.3018363","37.1145443"],["-122.301648","37.1144124"],["-122.3014308","37.1142733"],["-122.301064","37.1140638"],["-122.2981846","37.1124634"],["-122.2973209","37.111951"],["-122.2971093","37.1118083"],["-122.2968924","37.1116498"],["-122.2967047","37.1115042"],["-122.2965037","37.1113348"],["-122.2963372","37.1111826"],["-122.296114","37.1109626"],["-122.2946145","37.1093504"],["-122.294272","37.1089934"],["-122.2940396","37.1087768"],["-122.2937983","37.1085657"],["-122.2935345","37.1083522"],["-122.2933408","37.1082018"],["-122.2902059","37.1058643"],["-122.2861963","37.1032027"],["-122.2859798","37.1030427"],["-122.2857757","37.102882"],["-122.2855935","37.1027303"],["-122.28541","37.1025669"],["-122.2851926","37.1023576"],["-122.2847405","37.1018919"],["-122.2846062","37.1017376"],["-122.2844684","37.1015647"],["-122.2843593","37.101411"],["-122.2842437","37.1012383"],["-122.2840275","37.1008804"],["-122.2838733","37.1006261"],["-122.2836827","37.1003108"],["-122.2835628","37.1001461"],["-122.2833886","37.0999448"],["-122.2830584","37.0995929"],["-122.2827426","37.0992673"],["-122.2825172","37.0990525"],["-122.2822837","37.0988404"],["-122.2820481","37.0986387"],["-122.2818284","37.09846"],["-122.2813298","37.0980778"],["-122.2810957","37.0979172"],["-122.2808847","37.0977775"],["-122.2806525","37.0976312"],["-122.2799402","37.0972278"],["-122.2790427","37.0968194"],["-122.2786364","37.096631"],["-122.2784546","37.0965396"],["-122.2782642","37.0964375"],["-122.2779313","37.0962425"],["-122.277761","37.09613"],["-122.2775987","37.0960171"],["-122.2774297","37.0958913"],["-122.2772454","37.0957454"],["-122.2770605","37.0955839"],["-122.2768612","37.0953998"],["-122.2757291","37.0942912"],["-122.2752376","37.093799"],["-122.2750763","37.0936192"],["-122.2749251","37.0934333"],["-122.2747915","37.0932541"],["-122.2746408","37.0930241"],["-122.2745433","37.0928608"],["-122.2744293","37.0926529"],["-122.2743349","37.0924616"],["-122.2742406","37.0922459"],["-122.2741675","37.0920498"],["-122.2741026","37.0918517"],["-122.2740496","37.0916539"],["-122.2739969","37.0914295"],["-122.2739513","37.0912152"],["-122.2737697","37.0902197"],["-122.2737259","37.0900347"],["-122.2736765","37.0898608"],["-122.2736206","37.0896892"],["-122.2735524","37.0895148"],["-122.2734837","37.0893491"],["-122.2734042","37.0891802"],["-122.2733197","37.0890153"],["-122.2732179","37.08883"],["-122.273114","37.0886613"],["-122.273003","37.0884967"],["-122.2728835","37.0883319"],["-122.2727598","37.0881737"],["-122.2726297","37.0880223"],["-122.2724945","37.0878727"],["-122.2723596","37.0877321"],["-122.272214","37.0875925"],["-122.272069","37.0874608"],["-122.2719029","37.0873206"],["-122.271702","37.0871642"],["-122.2698269","37.0857699"],["-122.2691632","37.0852466"],["-122.2689605","37.0850707"],["-122.2687614","37.08489"],["-122.268388","37.0845258"],["-122.2680756","37.084197"],["-122.2676639","37.0837174"],["-122.264132","37.0795537"],["-122.2637631","37.0791078"],["-122.2635914","37.0788791"],["-122.2634503","37.0786736"],["-122.2632988","37.0784318"],["-122.2631124","37.0780961"],["-122.2623278","37.0765615"],["-122.2619444","37.0758122"],["-122.2617789","37.0755227"],["-122.2616142","37.0752508"],["-122.2614228","37.0749587"],["-122.2612324","37.0746937"],["-122.261062","37.0744652"],["-122.2588194","37.0717036"],["-122.2559901","37.0679984"],["-122.2557571","37.0676594"],["-122.2556659","37.067516"],["-122.2555552","37.0673327"],["-122.2553698","37.0670151"],["-122.2546035","37.0658735"],["-122.2522106","37.0623431"],["-122.2520456","37.0621266"],["-122.2516789","37.0616817"],["-122.251486","37.061463"],["-122.2513121","37.0612762"],["-122.2510927","37.0610545"],["-122.2505034","37.0605116"],["-122.2471376","37.0575655"],["-122.2468628","37.0572968"],["-122.2432558","37.0533189"],["-122.2429836","37.0530292"],["-122.2427087","37.0527556"],["-122.2424329","37.0524931"],["-122.2285675","37.0401995"],["-122.2282835","37.0399414"],["-122.2280695","37.0397332"],["-122.2278874","37.0395369"],["-122.227697","37.0393104"],["-122.2275365","37.0390996"],["-122.2273931","37.0388924"],["-122.2272474","37.0386591"],["-122.2271174","37.0384379"],["-122.2269949","37.038192"],["-122.2269","37.0379701"],["-122.226806","37.0377196"],["-122.2265341","37.036812"],["-122.2264217","37.0363742"],["-122.2263416","37.0361065"],["-122.2262458","37.0358549"],["-122.2261262","37.0356019"],["-122.2259977","37.0353611"],["-122.2258621","37.0351348"],["-122.2257039","37.0349058"],["-122.2255245","37.0346701"],["-122.225343","37.0344556"],["-122.2251376","37.0342368"],["-122.2249512","37.0340533"],["-122.2247453","37.0338705"],["-122.2245125","37.033683"],["-122.2242743","37.033508"],["-122.2239966","37.0333213"],["-122.2158551","37.0282237"],["-122.2155354","37.0280093"],["-122.2152304","37.0277911"],["-122.2143055","37.0270744"],["-122.2140654","37.0268616"],["-122.2139102","37.0267361"],["-122.2136784","37.026525"],["-122.2134859","37.0263406"],["-122.2130721","37.0259249"],["-122.2074807","37.0202656"],["-122.2013144","37.0148167"],["-122.2009065","37.0144671"],["-122.2006724","37.0142795"],["-122.2004849","37.014136"],["-122.2002797","37.0139951"],["-122.1997836","37.0136984"],["-122.1962923","37.0117606"],["-122.19605","37.0116359"],["-122.1954398","37.01135"],["-122.1942583","37.010789"],["-122.1941406","37.010734"],["-122.1893715","37.0084838"],["-122.1890045","37.0082921"],["-122.1887027","37.0081219"],["-122.1883578","37.0079186"],["-122.1877374","37.0075307"],["-122.187169","37.0071444"],["-122.1869095","37.0069542"],["-122.1860654","37.0062879"],["-122.1858018","37.0060645"],["-122.1853009","37.0056149"],["-122.1817583","37.0022693"],["-122.1812914","37.0018006"],["-122.1806081","37.0011626"],["-122.1804438","37.0010087"],["-122.1801195","37.0006909"],["-122.1796858","37.0002709"],["-122.1793","36.9999122"],["-122.178706","36.9993839"],["-122.1784285","36.9991467"],["-122.1781458","36.9989188"],["-122.1778577","36.9987003"],["-122.1775304","36.9984643"],["-122.177221","36.9982534"],["-122.1769213","36.9980578"],["-122.1503174","36.9846957"],["-122.1500638","36.9845961"],["-122.1497515","36.9844918"],["-122.1494522","36.9844087"],["-122.1491528","36.9843382"],["-122.1488547","36.9842847"],["-122.1472988","36.9840736"],["-122.146684","36.9839862"],["-122.1464186","36.9839332"],["-122.1461664","36.9838729"],["-122.1458993","36.9837942"],["-122.1456513","36.9837067"],["-122.1454303","36.9836203"],["-122.1451993","36.9835179"],["-122.1401721","36.98106"],["-122.1360904","36.9787691"],["-122.1355475","36.9784367"],["-122.1350455","36.9781003"],["-122.1341586","36.9774253"],["-122.1323528","36.9760335"],["-122.1267203","36.9719961"],["-122.1258461","36.9713883"],["-122.1256515","36.9712696"],["-122.1254435","36.9711577"],["-122.1252237","36.9710506"],["-122.1250111","36.970958"],["-122.1247864","36.9708721"],["-122.1245555","36.970791"],["-122.1243478","36.970724"],["-122.1240962","36.9706523"],["-122.1238784","36.9705965"],["-122.1236245","36.9705459"],["-122.1233933","36.9705081"],["-122.1231447","36.9704784"],["-122.1229055","36.9704578"],["-122.1223134","36.9704256"],["-122.1202725","36.9703302"],["-122.1200107","36.9703107"],["-122.1197828","36.970286"],["-122.1195483","36.9702522"],["-122.1193038","36.9702081"],["-122.1190867","36.9701625"],["-122.1187919","36.9700908"],["-122.1185917","36.9700335"],["-122.1183549","36.9699624"],["-122.1181271","36.9698843"],["-122.1178988","36.969798"],["-122.1120294","36.9672994"],["-122.1112918","36.9670301"],["-122.1072037","36.9656228"],["-122.1069084","36.9655239"],["-122.1066199","36.9654274"],["-122.1063983","36.9653428"],["-122.1061671","36.9652465"],["-122.1059304","36.9651392"],["-122.1057253","36.9650393"],["-122.1052521","36.9647716"],["-122.1043991","36.9642406"],["-122.1037685","36.963857"],["-122.1034796","36.9636958"],["-122.1032063","36.9635611"],["-122.1028993","36.9634184"],["-122.1025678","36.9632771"],["-122.1022735","36.9631634"],["-122.1019632","36.9630602"],["-122.1016288","36.9629647"],["-122.1013011","36.9628792"],["-122.0954448","36.9615745"],["-122.0950922","36.9615068"],["-122.0947171","36.9614473"],["-122.0943935","36.9614067"],["-122.0940438","36.9613738"],["-122.0937046","36.9613493"],["-122.093345","36.9613325"],["-122.0930191","36.961328"],["-122.0927245","36.9613341"],["-122.092058","36.9613675"],["-122.0914195","36.9614232"],["-122.0905847","36.9615352"],["-122.0849062","36.9621256"],["-122.0643334","36.9614733"],["-122.0631504","36.9613807"],["-122.0624728","36.9613352"],["-122.0619751","36.9612958"],["-122.0575934","36.9609621"],["-122.0574468","36.9609485"],["-122.0507341","36.9604134"],["-122.0505657","36.9604057"],["-122.0504201","36.9603756"],["-122.0502215","36.9603736"],["-122.0500157","36.9603895"],["-122.04981","36.9604238"],["-122.0496491","36.9604573"],["-122.049503","36.9604942"],["-122.0493849","36.9605271"],["-122.0491962","36.9605899"],["-122.0475699","36.9611815"],["-122.0474509","36.9612565"],["-122.047168","36.9613556"],["-122.0471189","36.961373"],["-122.0468955","36.9614521"],["-122.0466712","36.9615393"],["-122.0464309","36.9616259"],["-122.0462609","36.9616855"],["-122.0460283","36.9617691"],["-122.0458694","36.9618244"],["-122.0451058","36.9620813"],["-122.0448159","36.9621851"],["-122.0441655","36.9624346"],["-122.0439536","36.9625403"],["-122.0438672","36.9625908"],["-122.0438049","36.9626468"],["-122.0437137","36.9627364"],["-122.0436083","36.9628527"],["-122.0434223","36.9630693"],["-122.0433543","36.9631436"],["-122.0431563","36.9633705"],["-122.04299","36.9635614"],["-122.042905","36.9636613"],["-122.0428596","36.9637135"],["-122.0422517","36.9644114"],["-122.042238","36.9644262"],["-122.0408886","36.9659811"],["-122.0404072","36.966554"],["-122.0403243","36.966635"],["-122.0402092","36.9667279"],["-122.0395941","36.9671243"],["-122.0392304","36.9673505"],["-122.0390975","36.9674309"],["-122.0389503","36.9675224"],["-122.038698","36.9676865"],["-122.0386077","36.9677594"],["-122.038449","36.9679127"],["-122.0381806","36.9682899"],["-122.0378283","36.9687946"],["-122.0377309","36.9689427"],["-122.0376969","36.9690034"],["-122.037636","36.9691077"],["-122.0375745","36.9692058"],["-122.0373915","36.9694687"],["-122.0373212","36.9695649"],["-122.037096","36.9699009"],["-122.0367808","36.9704033"],["-122.0362242","36.9712544"],["-122.0360142","36.9715727"],["-122.0358756","36.9717768"],["-122.0358114","36.9718693"],["-122.0357159","36.9720118"],["-122.0355455","36.9722739"],["-122.0354507","36.9724152"],["-122.0353976","36.9724885"],["-122.0350127","36.9730969"],["-122.0348375","36.9733684"],["-122.0343414","36.9741724"],["-122.0340434","36.9746814"],["-122.0339135","36.9748627"],["-122.0335479","36.9752623"],["-122.0332595","36.9755486"],["-122.033155","36.9756271"],["-122.0329951","36.9757249"],["-122.032858","36.9758458"],["-122.0324903","36.9762262"],["-122.0322175","36.9764787"],["-122.032022","36.9766355"],["-122.0319468","36.976698"],["-122.0318078","36.9768165"],["-122.0318092","36.9768775"],["-122.0318161","36.9769353"],["-122.0318163","36.976986"],["-122.0318124","36.9770686"],["-122.0317397","36.9777818"],["-122.0317158","36.9780426"],["-122.0317104","36.9781644"],["-122.0317102","36.9783046"],["-122.0317141","36.9784256"],["-122.0317222","36.9785615"],["-122.0317341","36.9786802"],["-122.0317519","36.9788239"],["-122.0317718","36.9789472"],["-122.0317986","36.9790753"],["-122.0318294","36.9792075"],["-122.0318613","36.9793296"],["-122.0320883","36.9800816"],["-122.0322418","36.9805889"],["-122.0322723","36.9807198"],["-122.0322949","36.9808511"],["-122.0323091","36.9809716"],["-122.0323208","36.9811057"],["-122.0323229","36.9812337"],["-122.0323197","36.9813713"],["-122.0323088","36.9814985"],["-122.0322908","36.9816278"],["-122.0322673","36.9817564"],["-122.0322384","36.9818755"],["-122.0322","36.9820004"],["-122.0321554","36.9821293"],["-122.0321027","36.9822555"],["-122.0320476","36.9823723"],["-122.0319843","36.9824931"],["-122.031907","36.9826186"],["-122.0318368","36.9827272"],["-122.0317555","36.9828397"],["-122.0316688","36.9829485"],["-122.031571","36.9830545"],["-122.0314721","36.9831522"],["-122.0313717","36.9832449"],["-122.0308924","36.9836471"],["-122.0307527","36.9837514"],["-122.0306296","36.9838371"],["-122.030504","36.9839203"],["-122.0302374","36.9840811"],["-122.0301677","36.9841206"],["-122.0300808","36.9841674"],["-122.0299938","36.9842121"],["-122.0299266","36.984246"],["-122.0298876","36.9842652"],["-122.0297321","36.9843371"],["-122.0294627","36.9844516"],["-122.0292404","36.9845379"],["-122.0291292","36.984578"],["-122.0290053","36.9846206"],["-122.0289633","36.9846338"],["-122.0244443","36.9858963"],["-122.0242641","36.9859556"],["-122.0241444","36.986002"],["-122.0240736","36.9860319"],["-122.0239234","36.9861035"],["-122.0238542","36.9861403"],["-122.0237983","36.9861719"],["-122.0237354","36.9862102"],["-122.0236042","36.9862963"],["-122.0235407","36.9863415"],["-122.0234824","36.9863851"],["-122.0234262","36.9864292"],["-122.0232735","36.9865593"],["-122.0232202","36.9866097"],["-122.0231685","36.9866625"],["-122.0231226","36.986713"],["-122.0230751","36.9867685"],["-122.0229913","36.9868779"],["-122.0229493","36.9869362"],["-122.0223012","36.987915"],["-122.0221299","36.9881604"],["-122.0220867","36.9882167"],["-122.0220435","36.9882692"],["-122.0219982","36.9883198"],["-122.0219485","36.9883716"],["-122.0218371","36.9884756"],["-122.0217866","36.9885198"],["-122.0217291","36.9885658"],["-122.0216661","36.9886119"],["-122.0216066","36.9886524"],["-122.0215436","36.9886935"],["-122.0214809","36.988732"],["-122.0214117","36.9887722"],["-122.0213462","36.9888065"],["-122.0212713","36.9888441"],["-122.0212009","36.9888762"],["-122.0211301","36.9889056"],["-122.021054","36.9889354"],["-122.0209754","36.9889629"],["-122.0209033","36.9889865"],["-122.0208221","36.9890105"],["-122.0207452","36.9890305"],["-122.0206732","36.9890478"],["-122.0205936","36.9890647"],["-122.0205094","36.9890804"],["-122.020409","36.989094"],["-122.0202681","36.9891096"],["-122.0201103","36.9891192"],["-122.0199451","36.9891207"],["-122.0197753","36.9891114"],["-122.019617","36.9890961"],["-122.0154751","36.988611"],["-122.0154201","36.9886081"],["-122.0153644","36.9886058"],["-122.0153151","36.9886036"],["-122.0151936","36.9885982"],["-122.0150734","36.9885989"],["-122.0149633","36.9886043"],["-122.0148245","36.9886105"],["-122.0145185","36.9885932"],["-121.9946574","36.9880678"],["-121.988367","36.9874134"],["-121.9880409","36.9873716"],["-121.9878788","36.9873503"],["-121.9875561","36.9873034"],["-121.9874025","36.9872762"],["-121.9695699","36.9829833"],["-121.9629771","36.9826687"],["-121.9590361","36.982986"],["-121.9589074","36.9829978"],["-121.9568236","36.9831975"],["-121.9567634","36.9832034"],["-121.9332134","36.9838764"],["-121.9319124","36.9837898"],["-121.9199052","36.9821141"],["-121.9192761","36.9819807"],["-121.9189629","36.9819044"],["-121.9186416","36.9818187"],["-121.9180347","36.9816364"],["-121.9177304","36.9815366"],["-121.9174174","36.9814249"],["-121.9171302","36.9813141"],["-121.9165382","36.9810672"],["-121.9162414","36.9809322"],["-121.9069776","36.9761178"],["-121.9063834","36.9758676"],["-121.9061","36.9757608"],["-121.9059244","36.9756996"],["-121.9057813","36.9756531"],["-121.9056264","36.9756094"],["-121.905163","36.9754961"],["-121.9048583","36.9754328"],["-121.9036966","36.9752736"],["-121.9031157","36.9752024"],["-121.9025296","36.9751324"],["-121.9001737","36.9748614"],["-121.8995252","36.9748224"],["-121.8991891","36.9748175"],["-121.8892356","36.9753533"],["-121.8882652","36.9752856"],["-121.8868048","36.9750621"],["-121.8858907","36.9748408"],["-121.8744979","36.9708638"],["-121.8727154","36.9699449"],["-121.8725737","36.9698531"],["-121.8723363","36.9696912"],["-121.872086","36.9695126"],["-121.8718563","36.9693381"],["-121.8717441","36.9692489"],["-121.8715204","36.9690629"],["-121.8714037","36.9689617"],["-121.8630054","36.9608367"],["-121.8629101","36.960745"],["-121.8591592","36.9570917"],["-121.8342916","36.9384384"],["-121.8082844","36.9306564"],["-121.8080069","36.9305608"],["-121.8071243","36.9302239"],["-121.806798","36.9300861"],["-121.8054084","36.9294185"],["-121.8051409","36.9292739"],["-121.8049037","36.9291379"],["-121.7925978","36.9217593"],["-121.792468","36.9216688"],["-121.792224","36.9214898"],["-121.7917642","36.9211176"],["-121.7915584","36.9209329"],["-121.7912329","36.9206178"],["-121.7910441","36.9204208"],["-121.7908478","36.9201996"],["-121.7906721","36.9199868"],["-121.7904973","36.9197591"],["-121.7904362","36.9196763"],["-121.7903086","36.9194954"],["-121.7819973","36.9065262"],["-121.7804732","36.9041475"],["-121.7773391","36.8992559"],["-121.7766044","36.8981072"],["-121.7763455","36.8977052"],["-121.7748261","36.8953207"],["-121.7747506","36.8951877"],["-121.7746944","36.8950828"],["-121.7745181","36.8947305"],["-121.7744443","36.8945701"],["-121.7743492","36.8943362"],["-121.7742582","36.8940814"],["-121.7742149","36.8939495"],["-121.7741428","36.8937041"],["-121.7741079","36.8935723"],["-121.7740461","36.8933128"],["-121.7711986","36.8767207"],["-121.7711722","36.8766004"],["-121.7703983","36.8730601"],["-121.7702414","36.8720101"],["-121.7702084","36.8716275"],["-121.7701869","36.871095"],["-121.7701902","36.8705829"],["-121.7702175","36.8700688"],["-121.770291","36.869405"],["-121.7703127","36.8692593"],["-121.770404","36.8687536"],["-121.7709011","36.8666445"],["-121.7709244","36.8665083"],["-121.770961","36.8662654"],["-121.7709934","36.8660124"],["-121.7710057","36.865893"],["-121.7710471","36.8654466"],["-121.7710605","36.8652487"],["-121.7710875","36.8640666"],["-121.7710795","36.8637974"],["-121.7710005","36.8313741"],["-121.7710023","36.8313085"],["-121.7710118","36.8311792"],["-121.771021","36.831086"],["-121.7710362","36.8309801"],["-121.7710381","36.8309672"],["-121.7710565","36.8308673"],["-121.7710801","36.8307585"],["-121.7711047","36.8306587"],["-121.7711363","36.8305506"],["-121.7711689","36.8304499"],["-121.7712078","36.8303418"],["-121.7712477","36.8302439"],["-121.7713443","36.8300278"],["-121.7713998","36.8299158"],["-121.771463","36.829798"],["-121.7715284","36.8296833"],["-121.7716082","36.829554"],["-121.7716897","36.8294305"],["-121.7717716","36.829316"],["-121.7718661","36.8291936"],["-121.771962","36.8290791"],["-121.7720578","36.8289731"],["-121.7721555","36.8288733"],["-121.7722692","36.8287625"],["-121.7724893","36.8285616"],["-121.7764605","36.8252399"],["-121.7766971","36.8250608"],["-121.777034","36.8248253"],["-121.7778668","36.8243306"],["-121.7790167","36.8237879"],["-121.7835269","36.8218813"],["-121.7837282","36.8217869"],["-121.7839085","36.8216933"],["-121.7841022","36.8215805"],["-121.784259","36.8214796"],["-121.784411","36.8213739"],["-121.7845834","36.821241"],["-121.7846804","36.8211614"],["-121.7847036","36.8211422"],["-121.7848254","36.8210312"],["-121.7849453","36.8209188"],["-121.7850733","36.8207854"],["-121.785197","36.8206492"],["-121.7853175","36.8205006"],["-121.7854235","36.8203508"],["-121.7855217","36.8201928"],["-121.7856079","36.8200366"],["-121.7856883","36.8198781"],["-121.7857556","36.8197239"],["-121.7858252","36.819543"],["-121.7858794","36.819385"],["-121.7859201","36.8192431"],["-121.7859519","36.8191019"],["-121.7859753","36.8189679"],["-121.7859929","36.8188321"],["-121.7860026","36.8187178"],["-121.78601","36.8185949"],["-121.7860119","36.8185331"],["-121.786011","36.8183868"],["-121.7860021","36.8181507"],["-121.7859711","36.8177081"],["-121.7859222","36.8170684"],["-121.7858957","36.8167195"],["-121.7855598","36.8123422"],["-121.7855199","36.81206"],["-121.7854979","36.8119389"],["-121.785451","36.8117188"],["-121.7854203","36.8116052"],["-121.7853861","36.8115"],["-121.7852919","36.8112421"],["-121.7850944","36.8107583"],["-121.7850498","36.8106535"],["-121.7842848","36.8088638"],["-121.784239","36.8087347"],["-121.7841831","36.8085629"],["-121.7841351","36.8084015"],["-121.7840923","36.8082274"],["-121.7839868","36.8077595"],["-121.7839156","36.8073955"],["-121.7838398","36.8069374"],["-121.7837778","36.8064786"],["-121.7837574","36.8062928"],["-121.7837444","36.8060923"],["-121.783738","36.80587"],["-121.7837352","36.8056116"],["-121.7837392","36.8053686"],["-121.7837481","36.8051259"],["-121.7838341","36.8039457"],["-121.7838447","36.8037751"],["-121.7838508","36.8036134"],["-121.7838516","36.8034681"],["-121.7838486","36.8033213"],["-121.7838383","36.8031546"],["-121.7838205","36.8029923"],["-121.7837986","36.8028324"],["-121.7837226","36.8023994"],["-121.7833581","36.8005064"],["-121.7832285","36.7997041"],["-121.7832042","36.7995396"],["-121.7831888","36.7994091"],["-121.7831823","36.7992888"],["-121.783181","36.7991635"],["-121.7831836","36.7990398"],["-121.7832061","36.7985706"],["-121.7837293","36.7923638"],["-121.7837377","36.7921846"],["-121.7837366","36.7920269"],["-121.7837278","36.7918784"],["-121.7837126","36.791708"],["-121.7836565","36.7912601"],["-121.7836336","36.7911343"],["-121.7836131","36.7910302"],["-121.7835348","36.7907583"],["-121.783491","36.7906249"],["-121.7834296","36.7904543"],["-121.7833516","36.7902614"],["-121.7831806","36.7898533"],["-121.7830664","36.7895815"],["-121.780507","36.7834591"],["-121.7804015","36.783232"],["-121.7802803","36.782995"],["-121.7801561","36.782786"],["-121.7800237","36.7825884"],["-121.7798955","36.7824211"],["-121.7797638","36.7822659"],["-121.7796116","36.7820959"],["-121.7794219","36.7819004"],["-121.7727275","36.7762022"],["-121.7664112","36.771869"],["-121.7663368","36.7718156"],["-121.7661852","36.7716984"],["-121.7661276","36.7716495"],["-121.7660721","36.7716014"],["-121.7660354","36.7715676"],["-121.7659758","36.7715116"],["-121.76586","36.771397"],["-121.7657521","36.771278"],["-121.7656936","36.7712048"],["-121.7656451","36.7711406"],["-121.7655921","36.7710664"],["-121.7655556","36.7710136"],["-121.7655032","36.7709301"],["-121.7654663","36.7708651"],["-121.76543","36.7707957"],["-121.7654244","36.7707835"],["-121.7653904","36.7707097"],["-121.7653558","36.7706284"],["-121.7653215","36.7705427"],["-121.7652681","36.77038"],["-121.7652475","36.7702983"],["-121.7652267","36.7702064"],["-121.7652103","36.7701125"],["-121.7651957","36.7700064"],["-121.7651857","36.7699109"],["-121.7650878","36.7683463"],["-121.7650837","36.7682141"],["-121.7650839","36.7678661"],["-121.7650935","36.7675816"],["-121.765733","36.7611111"],["-121.7657399","36.7610485"],["-121.7657704","36.7608354"],["-121.7658002","36.7606037"],["-121.7658327","36.7600937"],["-121.7658421","36.7599143"],["-121.7658438","36.7598656"],["-121.7658431","36.7598567"],["-121.7658414","36.7598375"],["-121.7658306","36.7597898"],["-121.7658275","36.7597534"],["-121.7658242","36.759394"],["-121.7658149","36.7591176"],["-121.7656695","36.7569071"],["-121.7656602","36.7566474"],["-121.7656602","36.7563862"],["-121.7656677","36.7561271"],["-121.7656837","36.7558786"],["-121.7657094","36.7556237"],["-121.7657479","36.7553536"],["-121.7657904","36.7551049"],["-121.7658388","36.7548658"],["-121.7658996","36.7545995"],["-121.7659693","36.7543427"],["-121.7660505","36.7540793"],["-121.7661287","36.7538511"],["-121.7662286","36.7535917"],["-121.7663353","36.7533362"],["-121.7664368","36.7531118"],["-121.7665594","36.7528618"],["-121.7666952","36.7526087"],["-121.7668249","36.7523806"],["-121.7669618","36.7521567"],["-121.7671084","36.7519367"],["-121.7675704","36.751285"],["-121.7676389","36.7511919"],["-121.7686776","36.7497405"],["-121.7778528","36.7372104"],["-121.7782435","36.7367024"],["-121.7784195","36.7364857"],["-121.7785657","36.7363127"],["-121.7791906","36.7356317"],["-121.7795958","36.7352304"],["-121.7879187","36.7274666"],["-121.7883217","36.727059"],["-121.7887117","36.7266298"],["-121.7891094","36.7261584"],["-121.790965","36.7237662"],["-121.7914435","36.7230929"],["-121.7921659","36.7219495"],["-121.7925767","36.721223"],["-121.7930621","36.7202537"],["-121.795391","36.7142129"],["-121.796474","36.7119212"],["-121.7967348","36.7114472"],["-121.8046879","36.6974887"],["-121.8049202","36.6970819"],["-121.8076985","36.6921847"],["-121.8078069","36.6919745"],["-121.8080492","36.6914729"],["-121.8081507","36.6912442"],["-121.8082657","36.6909725"],["-121.8083653","36.690718"],["-121.8085404","36.6902194"],["-121.8086187","36.6899639"],["-121.8087526","36.6894809"],["-121.8088148","36.6892298"],["-121.8088765","36.6889434"],["-121.8089224","36.6887031"],["-121.8089686","36.68842"],["-121.8090038","36.6881743"],["-121.8090623","36.6876565"],["-121.8090932","36.6871569"],["-121.8091007","36.686899"],["-121.8091017","36.686615"],["-121.8090877","36.686106"],["-121.8090463","36.6855683"],["-121.8090193","36.6853312"],["-121.8089871","36.6850906"],["-121.8089439","36.6848101"],["-121.8089006","36.6845677"],["-121.8088411","36.6842821"],["-121.8087869","36.6840455"],["-121.8087089","36.683746"],["-121.8077881","36.6805296"],["-121.8077601","36.6803918"],["-121.8077361","36.6802589"],["-121.8077154","36.680127"],["-121.8076831","36.6798638"],["-121.8076666","36.6796015"],["-121.807662","36.6794658"],["-121.8076612","36.6793287"],["-121.8076681","36.6790754"],["-121.8076756","36.6789389"],["-121.8076959","36.6786815"],["-121.8077124","36.678539"],["-121.8077485","36.6782871"],["-121.8077705","36.6781607"],["-121.8077963","36.6780326"],["-121.8078508","36.6777856"],["-121.8078741","36.6776931"],["-121.8079394","36.6774579"],["-121.8080223","36.6771968"],["-121.8081135","36.6769442"],["-121.8082127","36.6766993"],["-121.8083182","36.6764604"],["-121.8083768","36.6763379"],["-121.8084357","36.6762213"],["-121.8085646","36.6759824"],["-121.8087064","36.6757456"],["-121.8088498","36.6755196"],["-121.8090891","36.6751704"],["-121.8091772","36.6750502"],["-121.8093458","36.6748328"],["-121.8094383","36.6747225"],["-121.8095309","36.6746169"],["-121.8106664","36.6734087"],["-121.8107637","36.6733001"],["-121.811032","36.6729789"],["-121.8111939","36.6727678"],["-121.8114347","36.6724252"],["-121.8115138","36.6723048"],["-121.815046","36.6662355"],["-121.8151646","36.666015"],["-121.8152888","36.6657703"],["-121.8154098","36.6655148"],["-121.8155191","36.6652698"],["-121.815626","36.6650132"],["-121.8157219","36.6647631"],["-121.8158127","36.6645092"],["-121.8158905","36.6642724"],["-121.8162671","36.6629872"],["-121.8163346","36.6627291"],["-121.8163898","36.6624728"],["-121.8164362","36.6622204"],["-121.8164708","36.6619523"],["-121.8165466","36.6610657"],["-121.8168057","36.6577863"],["-121.8168171","36.6575092"],["-121.8168224","36.6572743"],["-121.8168219","36.6570078"],["-121.8168138","36.656741"],["-121.8167764","36.6562145"],["-121.8167474","36.6559545"],["-121.8166863","36.6555228"],["-121.8166588","36.6553611"],["-121.8165222","36.6547408"],["-121.8163813","36.6542282"],["-121.8163013","36.6539775"],["-121.8162184","36.6537369"],["-121.8161194","36.6534708"],["-121.8160231","36.6532308"],["-121.8152343","36.6514557"],["-121.815147","36.6512134"],["-121.8151062","36.6510801"],["-121.8150693","36.6509479"],["-121.815038","36.6508172"],["-121.8150107","36.6506929"],["-121.8149873","36.6505624"],["-121.814967","36.6504285"],["-121.8149515","36.6503046"],["-121.8149384","36.6501702"],["-121.814929","36.6500416"],["-121.8149251","36.6497805"],["-121.8149294","36.6496446"],["-121.8149374","36.6495185"],["-121.8149492","36.6493778"],["-121.8149656","36.649251"],["-121.8149864","36.6491137"],["-121.8150081","36.64899"],["-121.8150358","36.64886"],["-121.8151013","36.6486043"],["-121.8151432","36.6484723"],["-121.8151826","36.6483571"],["-121.8152317","36.6482247"],["-121.8152804","36.6481025"],["-121.8153997","36.6478445"],["-121.8154592","36.6477285"],["-121.8155186","36.647617"],["-121.8155868","36.647496"],["-121.8156506","36.6473938"],["-121.8158088","36.6471585"],["-121.815892","36.6470452"],["-121.8160583","36.6468359"],["-121.8162503","36.6466176"],["-121.8163529","36.64651"],["-121.8165549","36.646313"],["-121.8166701","36.6462088"],["-121.8167661","36.6461248"],["-121.8170005","36.6459366"],["-121.8171148","36.6458509"],["-121.8173599","36.6456802"],["-121.8177543","36.6454374"],["-121.8180264","36.6452913"],["-121.8184518","36.6450908"],["-121.8185879","36.6450335"],["-121.8187367","36.644975"],["-121.8219736","36.6437662"],["-121.8228285","36.6433702"],["-121.8233786","36.6430912"],["-121.8242133","36.6426288"],["-121.8249575","36.6421724"],["-121.8257171","36.6416601"],["-121.8275724","36.6401663"],["-121.8277847","36.6399696"],["-121.8285797","36.63917"],["-121.8374817","36.6293052"],["-121.8380088","36.6286657"],["-121.8382389","36.6283457"],["-121.8383074","36.6282375"],["-121.8395594","36.6262047"],["-121.8396334","36.6260969"],["-121.8397228","36.6259756"],["-121.8398015","36.625875"],["-121.8398981","36.6257581"],["-121.8399955","36.6256485"],["-121.8400854","36.6255515"],["-121.8401914","36.6254445"],["-121.8402986","36.6253415"],["-121.8404093","36.6252412"],["-121.840509","36.6251548"],["-121.8406272","36.625058"],["-121.8407482","36.6249654"],["-121.8408771","36.6248716"],["-121.840996","36.62479"],["-121.8411323","36.6247005"],["-121.8413969","36.6245394"],["-121.8415495","36.624456"],["-121.8416832","36.6243865"],["-121.8418259","36.6243178"],["-121.842027","36.624229"],["-121.8437469","36.6235663"],["-121.8438876","36.6235049"],["-121.844027","36.6234399"],["-121.8442912","36.6233064"],["-121.8444344","36.6232269"],["-121.8445624","36.6231516"],["-121.8446836","36.6230776"],["-121.8448176","36.62299"],["-121.8449325","36.6229103"],["-121.8450687","36.6228115"],["-121.8451745","36.6227313"],["-121.8453007","36.6226282"],["-121.845406","36.6225377"],["-121.8455101","36.6224452"],["-121.8456191","36.6223402"],["-121.8457137","36.6222455"],["-121.8458111","36.6221415"],["-121.8459099","36.6220315"],["-121.8460001","36.6219233"],["-121.8460908","36.6218091"],["-121.846253","36.6215853"],["-121.8463311","36.621466"],["-121.8471415","36.6201595"],["-121.8472186","36.6200353"],["-121.8472873","36.6199278"],["-121.8475258","36.6195774"],["-121.8476957","36.6193446"],["-121.8503331","36.6161818"],["-121.8506137","36.6158753"],["-121.8509251","36.6155664"],["-121.8551471","36.6121084"],["-121.855512","36.6118356"],["-121.8563925","36.6112312"],["-121.8584737","36.6099824"],["-121.8589656","36.6096836"],["-121.8590917","36.609595"],["-121.8592208","36.6094993"],["-121.8593302","36.609415"],["-121.8594395","36.6093264"],["-121.8595627","36.6092218"],["-121.8596747","36.6091219"],["-121.8597791","36.6090221"],["-121.8598837","36.6089154"],["-121.8599864","36.6088051"],["-121.8600775","36.6087036"],["-121.8601643","36.6085999"],["-121.8602624","36.6084749"],["-121.8603418","36.6083698"],["-121.8604199","36.6082584"],["-121.8605001","36.6081378"],["-121.8605753","36.6080168"],["-121.8606451","36.6078922"],["-121.860706","36.6077741"],["-121.8607704","36.6076428"],["-121.8608285","36.6075138"],["-121.860881","36.6073903"],["-121.8609275","36.6072719"],["-121.860972","36.6071411"],["-121.8610253","36.6069651"],["-121.8610484","36.6068753"],["-121.8610769","36.6067522"],["-121.8611044","36.6066176"],["-121.8611259","36.6064835"],["-121.8611422","36.6063594"],["-121.8612904","36.6044004"],["-121.8613037","36.6042259"],["-121.8613115","36.6041323"],["-121.8613244","36.6040025"],["-121.8613414","36.6038768"],["-121.861364","36.6037385"],["-121.8613894","36.6036103"],["-121.8614179","36.6034825"],["-121.8614514","36.6033578"],["-121.8614929","36.6032142"],["-121.8615337","36.6030889"],["-121.8616281","36.6028385"],["-121.8616832","36.6027086"],["-121.8617363","36.6025914"],["-121.8617975","36.6024687"],["-121.8618582","36.6023545"],["-121.8619267","36.6022339"],["-121.8619966","36.6021175"],["-121.862068","36.6020058"],["-121.8621466","36.6018899"],["-121.8622256","36.6017785"],["-121.862316","36.6016589"],["-121.8623991","36.601554"],["-121.8639844","36.5997363"],["-121.8644493","36.5992049"],["-121.8668614","36.5964543"],["-121.867058","36.5962608"],["-121.8671627","36.596163"],["-121.8672776","36.5960628"],["-121.8673769","36.5959791"],["-121.8674797","36.5958947"],["-121.8676258","36.5957821"],["-121.8677318","36.5957066"],["-121.8679887","36.5955326"],["-121.8681301","36.5954441"],["-121.8682611","36.5953665"],["-121.868517","36.5952259"],["-121.8687949","36.5950898"],["-121.8689294","36.5950281"],["-121.8691905","36.5949175"],["-121.8693791","36.5948427"],["-121.86952","36.5947919"],["-121.8696723","36.5947394"],["-121.869976","36.594643"],["-121.8702719","36.5945597"],["-121.8704191","36.5945238"],["-121.8707512","36.5944519"],["-121.8768376","36.5934388"],["-121.8771979","36.5933701"],["-121.877315","36.5933421"],["-121.8774258","36.5933143"],["-121.8774357","36.5933111"],["-121.8776314","36.5932517"],["-121.8777935","36.5932004"],["-121.8780835","36.5930999"],["-121.8782369","36.5930407"],["-121.8783884","36.5929778"],["-121.8788123","36.5927844"],["-121.8790784","36.5926436"],["-121.8792042","36.5925722"],["-121.8793828","36.5924637"],["-121.879489","36.5923958"],["-121.8796031","36.5923203"],["-121.8798773","36.5921242"],["-121.8798877","36.5921159"],["-121.879979","36.5920433"],["-121.8801956","36.5918641"],["-121.8804368","36.5916431"],["-121.8805171","36.591563"],["-121.8805977","36.5914815"],["-121.8808029","36.5912546"],["-121.8808973","36.5911427"],["-121.8809842","36.591036"],["-121.8811447","36.5908164"],["-121.8812226","36.5907019"],["-121.8813019","36.5905802"],["-121.8813757","36.5904586"],["-121.8815091","36.590215"],["-121.8815722","36.5900907"],["-121.8816312","36.5899646"],["-121.8816863","36.5898379"],["-121.8817314","36.5897239"],["-121.8823099","36.5880742"],["-121.8823594","36.587947"],["-121.8824054","36.5878361"],["-121.8824605","36.5877123"],["-121.882518","36.5875907"],["-121.8825815","36.5874658"],["-121.8827172","36.5872211"],["-121.8827844","36.5871097"],["-121.8828563","36.5869964"],["-121.8829422","36.5868681"],["-121.8830174","36.586761"],["-121.8830961","36.5866529"],["-121.8831884","36.5865321"],["-121.883372","36.5863101"],["-121.883468","36.5862034"],["-121.8836507","36.586009"],["-121.8837561","36.5859038"],["-121.8839591","36.5857153"],["-121.8840687","36.5856196"],["-121.8841865","36.5855217"],["-121.8844063","36.5853481"],["-121.8845234","36.5852611"],["-121.8847728","36.5850861"],["-121.8850276","36.5849218"],["-121.8854324","36.5846907"],["-121.8857036","36.5845532"],["-121.8861345","36.5843583"],["-121.8864156","36.5842442"],["-121.8867068","36.5841412"],["-121.8868547","36.5840929"],["-121.887619","36.5838873"],["-121.89142","36.5832994"],["-121.8914402","36.5832967"],["-121.8914789","36.5832914"],["-121.8915376","36.5832829"],["-121.8999478","36.5820396"],["-121.900188","36.5820011"],["-121.9005147","36.5819434"],["-121.9006831","36.5819093"],["-121.9008218","36.5818785"],["-121.9009858","36.5818388"],["-121.9011314","36.5818009"],["-121.9012952","36.5817539"],["-121.901582","36.5816638"],["-121.9017329","36.581611"],["-121.9020294","36.5814964"],["-121.902324","36.5813686"],["-121.9024702","36.5812997"],["-121.9025935","36.5812382"],["-121.9027356","36.5811638"],["-121.9031296","36.5809345"],["-121.9032244","36.5808768"],["-121.9033093","36.580824"],["-121.9033938","36.5807719"],["-121.9111181","36.5760332"],["-121.9112486","36.5759463"],["-121.9113665","36.5758624"],["-121.9114824","36.5757769"],["-121.9116011","36.5756808"],["-121.91182","36.5754891"],["-121.9119279","36.5753874"],["-121.9120339","36.5752781"],["-121.9121217","36.5751837"],["-121.9122134","36.5750773"],["-121.9123","36.5749704"],["-121.9123516","36.5749023"],["-121.9123558","36.5748957"],["-121.9124018","36.574833"],["-121.9124658","36.5747421"],["-121.912545","36.5746228"],["-121.9126138","36.574511"],["-121.9126824","36.5743879"],["-121.9127994","36.574144"],["-121.912854","36.5740181"],["-121.9128991","36.5738959"],["-121.9129415","36.5737658"],["-121.912978","36.5736376"],["-121.9130116","36.5734981"],["-121.9130383","36.5733762"],["-121.9130607","36.573246"],["-121.9130787","36.5731134"],["-121.9130907","36.572992"],["-121.9130997","36.5728621"],["-121.9131044","36.5727442"],["-121.9131009","36.5725902"],["-121.9130932","36.5724681"],["-121.9130794","36.5723297"],["-121.9130342","36.5720412"],["-121.9130047","36.5718458"],["-121.9129383","36.5714107"],["-121.9126981","36.5688176"],["-121.91269","36.5686839"],["-121.9126853","36.5685594"],["-121.912687","36.5684267"],["-121.912697","36.568295"],["-121.9127154","36.5681547"],["-121.9127342","36.5680378"],["-121.9127517","36.5679107"],["-121.9127615","36.5677697"],["-121.9128862","36.5673887"],["-121.9129563","36.5671413"],["-121.9129678","36.5670937"],["-121.9129736","36.5670662"],["-121.9129824","36.5670145"],["-121.9130006","36.5668804"],["-121.9130047","36.5668205"],["-121.9130065","36.5667546"],["-121.9130037","36.5666326"],["-121.9129985","36.5665285"],["-121.9129978","36.5665178"],["-121.9129929","36.5664786"],["-121.9129889","36.5664485"],["-121.9129842","36.5664136"],["-121.9129802","36.5663842"],["-121.9129744","36.5663484"],["-121.9129583","36.56627"],["-121.9129418","36.5662049"],["-121.9129283","36.5661553"],["-121.9129019","36.5660725"],["-121.912883","36.5660197"],["-121.9128582","36.5659559"],["-121.9128384","36.565907"],["-121.9128203","36.5658654"],["-121.9128046","36.5658312"],["-121.9127445","36.5657141"],["-121.9127133","36.5656575"],["-121.9126777","36.565598"],["-121.9126418","36.5655431"],["-121.912549","36.5654145"],["-121.9118291","36.5644239"],["-121.9117564","36.5643123"],["-121.9116883","36.564195"],["-121.9116584","36.5641362"],["-121.9116296","36.5640784"],["-121.9116026","36.5640171"],["-121.9115766","36.5639533"],["-121.9115545","36.5638939"],["-121.9115345","36.5638351"],["-121.9115129","36.563766"],["-121.9114958","36.5637015"],["-121.9114814","36.5636417"],["-121.9114592","36.5635176"],["-121.9114495","36.5634496"],["-121.9114439","36.563392"],["-121.9114386","36.5633233"],["-121.9114356","36.563191"],["-121.9114376","36.5631291"],["-121.9114416","36.5630646"],["-121.9114463","36.5630033"],["-121.9114547","36.5629379"],["-121.9114654","36.5628733"],["-121.9114773","36.5628104"],["-121.9115059","36.5626783"],["-121.9115402","36.5625508"],["-121.9115587","36.5624885"],["-121.9116518","36.5621724"],["-121.9116824","36.5620408"],["-121.9117085","36.5619184"],["-121.9117305","36.5617895"],["-121.9117471","36.5616594"],["-121.9117565","36.5615311"],["-121.9117608","36.5614034"],["-121.9117314","36.5604812"],["-121.9117279","36.5603814"],["-121.9116612","36.5592621"],["-121.9116484","36.5591373"],["-121.9116149","36.5588757"],["-121.9115418","36.5584077"],["-121.9115366","36.5583714"],["-121.9115044","36.5581528"],["-121.9114892","36.5580484"],["-121.9114008","36.5574326"],["-121.9113458","36.5570797"],["-121.9113134","36.5568792"],["-121.9113085","36.556849"],["-121.9112682","36.5566054"],["-121.9112549","36.5565266"],["-121.9111625","36.555898"],["-121.9110774","36.5553301"],["-121.9110698","36.5552789"],["-121.9109568","36.5545583"],["-121.9106632","36.5529301"],["-121.9096451","36.5464299"],["-121.9096264","36.5463189"],["-121.9095496","36.5458575"],["-121.9094776","36.5455147"],["-121.9094041","36.5452628"],["-121.9093575","36.5451374"],["-121.9093139","36.5450281"],["-121.9092634","36.544913"],["-121.9092047","36.5447911"],["-121.9091374","36.5446592"],["-121.9089941","36.544398"],["-121.9083584","36.5433087"],["-121.9083284","36.5432535"],["-121.9083059","36.5432063"],["-121.9082739","36.5431322"],["-121.9082518","36.5430731"],["-121.9082339","36.5430192"],["-121.9082042","36.5429034"],["-121.9081814","36.5427727"],["-121.9081665","36.5426594"],["-121.9081595","36.5425183"],["-121.9081614","36.5424065"],["-121.9081718","36.5422824"],["-121.9081902","36.5421571"],["-121.90822","36.5420318"],["-121.9082572","36.5419138"],["-121.9083023","36.5417871"],["-121.9083546","36.5416732"],["-121.9084141","36.5415621"],["-121.9084836","36.5414498"],["-121.9085651","36.5413326"],["-121.9086454","36.5412238"],["-121.9088201","36.5410104"],["-121.9093391","36.5403913"],["-121.9094108","36.5403101"],["-121.9095346","36.5401823"],["-121.9096589","36.5400379"],["-121.9099951","36.5396348"],["-121.910084","36.5395267"],["-121.9103018","36.5392663"],["-121.9104432","36.5390984"],["-121.9106615","36.5388361"],["-121.9109094","36.5385347"],["-121.9110116","36.5383944"],["-121.9111168","36.5382342"],["-121.9111741","36.5381367"],["-121.911237","36.5380217"],["-121.9112961","36.5379085"],["-121.9115114","36.5374614"],["-121.9115455","36.537397"],["-121.9115943","36.5373094"],["-121.9118773","36.5368813"],["-121.9119609","36.5367751"],["-121.9120146","36.536713"],["-121.9120719","36.5366513"],["-121.9139595","36.5348456"],["-121.914103","36.5346992"],["-121.9144156","36.5343646"],["-121.9155836","36.5329609"],["-121.916199","36.532234"],["-121.9164574","36.5319337"],["-121.9170969","36.5311673"],["-121.9173699","36.5308441"],["-121.9186098","36.5294936"],["-121.9189591","36.5291653"],["-121.9192083","36.5289576"],["-121.9195574","36.5286334"],["-121.9200523","36.5281999"],["-121.9207291","36.5276374"],["-121.923081","36.5257224"],["-121.9239032","36.5250689"],["-121.9259603","36.5234187"],["-121.9260816","36.5233264"],["-121.9263574","36.5231"],["-121.9271794","36.5224307"],["-121.9281893","36.5217469"],["-121.9290987","36.5212612"],["-121.9325541","36.5195411"],["-121.933269","36.5191761"],["-121.9336666","36.5189448"],["-121.9341409","36.5186289"],["-121.9345957","36.5182975"],["-121.9349629","36.518002"],["-121.9352445","36.5177436"],["-121.9358642","36.5170825"],["-121.9366378","36.5160837"],["-121.9372064","36.5151162"],["-121.937686","36.5139529"],["-121.9378329","36.5134607"],["-121.9379485","36.5128492"],["-121.9380387","36.5118339"],["-121.9380894","36.5108224"],["-121.9380817","36.5102849"],["-121.9380102","36.5100038"],["-121.9378755","36.5096649"],["-121.9377006","36.5093766"],["-121.9375034","36.5091095"],["-121.9372867","36.5088879"],["-121.9369705","36.5086186"],["-121.9362984","36.5081457"],["-121.9360519","36.5078313"],["-121.9359915","36.5077228"],["-121.9359554","36.5075465"],["-121.9359396","36.5072584"],["-121.9360969","36.5059569"],["-121.9362052","36.5056868"],["-121.9363204","36.5055115"],["-121.9365374","36.5052719"],["-121.9370269","36.5048197"],["-121.9374213","36.5044514"],["-121.9375498","36.5043325"],["-121.9376464","36.5042229"],["-121.9377624","36.5040257"],["-121.9378211","36.5038468"],["-121.9378584","36.5036901"],["-121.9378435","36.5035052"],["-121.937766","36.5033415"],["-121.9376928","36.5031607"],["-121.9376424","36.5029648"],["-121.9376532","36.5027993"],["-121.9377033","36.502677"],["-121.937795","36.5025044"],["-121.9379497","36.5022426"],["-121.9381112","36.5018919"],["-121.9381359","36.5016645"],["-121.938111","36.5015209"],["-121.9380208","36.5013215"],["-121.9374968","36.5005147"],["-121.937325","36.500199"],["-121.9372149","36.5000619"],["-121.9371322","36.4999008"],["-121.9370328","36.4997537"],["-121.9369413","36.4996633"],["-121.9367912","36.499548"],["-121.9361638","36.4991126"],["-121.9360171","36.4989944"],["-121.9358962","36.4988804"],["-121.9358018","36.4987614"],["-121.9357315","36.4986585"],["-121.9356801","36.498531"],["-121.9356564","36.4983879"],["-121.9356559","36.4982597"],["-121.9356706","36.4981607"],["-121.9357504","36.4979966"],["-121.9358293","36.4978844"],["-121.9359951","36.4976864"],["-121.9361895","36.497463"],["-121.9363773","36.4972286"],["-121.9364455","36.4971198"],["-121.9366348","36.4967531"],["-121.9368187","36.4963706"],["-121.9372969","36.4952013"],["-121.9375011","36.4946868"],["-121.9376727","36.494232"],["-121.9377082","36.4940752"],["-121.9377285","36.4939145"],["-121.937732","36.4937947"],["-121.9377217","36.4936597"],["-121.9376837","36.4934354"],["-121.9376554","36.4932473"],["-121.9376445","36.4930553"],["-121.9376559","36.4929284"],["-121.9376849","36.4928026"],["-121.9377343","36.4926849"],["-121.9377823","36.4925826"],["-121.9378262","36.4924969"],["-121.9378825","36.4924046"],["-121.9379723","36.4922648"],["-121.9380653","36.4921192"],["-121.9381254","36.4920069"],["-121.938168","36.4919092"],["-121.938198","36.4918164"],["-121.9382185","36.4917342"],["-121.9382344","36.4916713"],["-121.938259","36.4915585"],["-121.9382689","36.4914857"],["-121.938281","36.4913254"],["-121.9382452","36.4908057"],["-121.9382407","36.4902873"],["-121.9382075","36.4899812"],["-121.9381339","36.4896585"],["-121.9379596","36.4890465"],["-121.9378101","36.4884604"],["-121.9377277","36.4880625"],["-121.9377088","36.4878059"],["-121.9377278","36.48722"],["-121.9378265","36.4854944"],["-121.9378273","36.485062"],["-121.9377951","36.4848178"],["-121.9377269","36.4845547"],["-121.9376247","36.4842804"],["-121.9373295","36.4836403"],["-121.9372114","36.4833239"],["-121.9371477","36.483056"],["-121.9371213","36.4828232"],["-121.9371125","36.4825202"],["-121.937141","36.4819842"],["-121.9371629","36.4814874"],["-121.9371711","36.4810509"],["-121.9371628","36.4806642"],["-121.9371199","36.4802684"],["-121.9370696","36.480062"],["-121.9369717","36.4798131"],["-121.9367444","36.4792782"],["-121.9364953","36.4788034"],["-121.9363958","36.4785481"],["-121.9363236","36.4783119"],["-121.936265","36.4780859"],["-121.9361728","36.4776057"],["-121.9361408","36.4773562"],["-121.9360826","36.4770563"],["-121.9360059","36.476663"],["-121.9356634","36.474767"],["-121.9355681","36.4742258"],["-121.9353823","36.4732369"],["-121.9353401","36.4730094"],["-121.9352539","36.4726971"],["-121.935136","36.4724002"],["-121.9349577","36.4720251"],["-121.934786","36.4717165"],["-121.9343455","36.4711009"],["-121.9340927","36.4708362"],["-121.9338233","36.4705675"],["-121.9334954","36.4702454"],["-121.9332107","36.4699677"],["-121.9324253","36.4692336"],["-121.9320968","36.4689803"],["-121.9313667","36.468502"],["-121.9309161","36.4682413"],["-121.9306887","36.4681233"],["-121.9304102","36.4679719"],["-121.9300083","36.4677331"],["-121.92973","36.4674982"],["-121.9294985","36.4672839"],["-121.9289078","36.4665851"],["-121.9280552","36.465407"],["-121.9256163","36.4619001"],["-121.9250499","36.4609416"],["-121.9246982","36.4601525"],["-121.9243598","36.4591596"],["-121.9241402","36.4581391"],["-121.9239005","36.455423"],["-121.9240294","36.4544479"],["-121.924251","36.4537736"],["-121.9245958","36.4531441"],["-121.9250108","36.4526276"],["-121.9254979","36.4521313"],["-121.9257606","36.4518512"],["-121.9259633","36.4516125"],["-121.9261148","36.4514072"],["-121.9262313","36.4512126"],["-121.9263577","36.4509325"],["-121.9264726","36.4506218"],["-121.9265448","36.450334"],["-121.9265908","36.4500706"],["-121.9265976","36.4498209"],["-121.9265764","36.4495577"],["-121.9265012","36.4492058"],["-121.9263745","36.4488337"],["-121.9258283","36.4478159"],["-121.9192109","36.4362009"],["-121.9190056","36.4357594"],["-121.918793","36.4351825"],["-121.918359","36.4338528"],["-121.9179261","36.433"],["-121.9174441","36.4322392"],["-121.9169293","36.4316093"],["-121.9151698","36.4297235"],["-121.9141352","36.4284535"],["-121.9136318","36.4276802"],["-121.9132456","36.4269637"],["-121.9126733","36.4253986"],["-121.912442","36.424346"],["-121.9123395","36.4234196"],["-121.9123138","36.422915"],["-121.9123265","36.4225782"],["-121.9124062","36.4216139"],["-121.9125727","36.4208151"],["-121.912822","36.4199561"],["-121.9134741","36.4181756"],["-121.9136912","36.4176948"],["-121.9138787","36.417254"],["-121.9140239","36.4167942"],["-121.9141144","36.4164625"],["-121.9142268","36.4160982"],["-121.9143531","36.4156155"],["-121.9143479","36.414824"],["-121.913962","36.4124504"],["-121.9140436","36.4118747"],["-121.914419","36.4112586"],["-121.9145986","36.4108649"],["-121.9146605","36.4104488"],["-121.9146034","36.4101623"],["-121.9144622","36.409872"],["-121.9142374","36.4096089"],["-121.9134681","36.4089136"],["-121.9120939","36.4076211"],["-121.9112325","36.4066594"],["-121.9108383","36.4060244"],["-121.9105613","36.4054542"],["-121.9098286","36.4037699"],["-121.9095274","36.4033302"],["-121.9091403","36.4029551"],["-121.9080018","36.4022339"],["-121.907209","36.4017149"],["-121.9055247","36.4001975"],["-121.9046119","36.3993262"],["-121.9038737","36.398394"],["-121.9035091","36.3976955"],["-121.903235","36.3968713"],["-121.9015533","36.3899766"],["-121.9006921","36.3862196"],["-121.9002974","36.3846752"],["-121.9001672","36.3839406"],["-121.9001518","36.383585"],["-121.9001735","36.3832322"],["-121.9002386","36.3827912"],["-121.9003527","36.3823309"],["-121.9004714","36.3820197"],["-121.9006154","36.3816759"],["-121.9008111","36.3812926"],["-121.9012202","36.3806328"],["-121.9014197","36.3803798"],["-121.9019906","36.3798676"],["-121.9031543","36.3787194"],["-121.9034449","36.3784145"],["-121.9037679","36.3780726"],["-121.9039154","36.377833"],["-121.9040203","36.3775328"],["-121.904043","36.3772492"],["-121.9040317","36.3770342"],["-121.9040753","36.3767204"],["-121.9042121","36.3764531"],["-121.9043506","36.3762628"],["-121.9044404","36.376148"],["-121.9045673","36.3759816"],["-121.904681","36.3758169"],["-121.9047595","36.3756671"],["-121.9047947","36.3755537"],["-121.9048302","36.3753616"],["-121.9048133","36.3751815"],["-121.9047768","36.37496"],["-121.904763","36.3748173"],["-121.9047943","36.374639"],["-121.904911","36.3743276"],["-121.9049484","36.3741456"],["-121.9049657","36.3739908"],["-121.9049696","36.3738417"],["-121.9049138","36.3736506"],["-121.9048347","36.373493"],["-121.9047339","36.3733643"],["-121.9045622","36.3732271"],["-121.9043181","36.3731146"],["-121.9030883","36.372684"],["-121.9027329","36.3725566"],["-121.9025945","36.3724995"],["-121.9024249","36.372397"],["-121.9023104","36.3722945"],["-121.9022219","36.3721822"],["-121.9021493","36.3720694"],["-121.9020933","36.3719688"],["-121.9019645","36.3716753"],["-121.9017205","36.3709878"],["-121.9016405","36.3707797"],["-121.9016068","36.3706821"],["-121.9015907","36.3706133"],["-121.9015879","36.3705381"],["-121.9016248","36.3704254"],["-121.9017418","36.3701068"],["-121.9018351","36.3698548"],["-121.901862","36.3697559"],["-121.9018862","36.3695771"],["-121.9018737","36.3694263"],["-121.9018533","36.369301"],["-121.9017845","36.3691497"],["-121.9016486","36.3689815"],["-121.9014604","36.3688075"],["-121.90115","36.3685484"],["-121.9008522","36.3682862"],["-121.900649","36.3680742"],["-121.9004144","36.3677684"],["-121.9002178","36.3674515"],["-121.9001039","36.3672305"],["-121.9000186","36.366962"],["-121.8995198","36.3653736"],["-121.8993948","36.3649498"],["-121.8993702","36.364693"],["-121.8993943","36.3644475"],["-121.8994579","36.3642034"],["-121.8996361","36.3638965"],["-121.9000524","36.363169"],["-121.9002597","36.3626648"],["-121.9005299","36.3612389"],["-121.9006059","36.3606009"],["-121.9005587","36.3602151"],["-121.9002885","36.35962"],["-121.900188","36.3592834"],["-121.9001941","36.3589694"],["-121.9002777","36.3586741"],["-121.9003961","36.3584436"],["-121.900561","36.3582554"],["-121.900857","36.3580483"],["-121.9013825","36.3578292"],["-121.9023219","36.3576024"],["-121.9025274","36.3575009"],["-121.9026467","36.357381"],["-121.9027114","36.3572538"],["-121.9027225","36.3571109"],["-121.902687","36.3569437"],["-121.9024374","36.3564951"],["-121.9021738","36.3560336"],["-121.9020925","36.3558184"],["-121.9020525","36.3555276"],["-121.9020142","36.3553647"],["-121.9019444","36.355204"],["-121.9017151","36.3548354"],["-121.9016018","36.3545516"],["-121.9015418","36.354155"],["-121.9014893","36.3538548"],["-121.9013877","36.3536139"],["-121.90124","36.3534259"],["-121.9010273","36.3532821"],["-121.9006686","36.3531151"],["-121.9004076","36.3529418"],["-121.9000238","36.3525374"],["-121.8998416","36.352377"],["-121.899549","36.3522661"],["-121.8983416","36.3521627"],["-121.8980333","36.3520582"],["-121.897827","36.3518949"],["-121.8977337","36.3516546"],["-121.8977969","36.3511752"],["-121.8977783","36.3509234"],["-121.8976582","36.3507129"],["-121.8972381","36.3501881"],["-121.8969677","36.3497048"],["-121.8965155","36.3483956"],["-121.8960857","36.3476484"],["-121.8957208","36.3472835"],["-121.8950948","36.3469118"],["-121.894936","36.3466851"],["-121.8947929","36.3462122"],["-121.8945303","36.345884"],["-121.8941377","36.3456776"],["-121.8938312","36.3455599"],["-121.8936184","36.3454476"],["-121.8934497","36.3452535"],["-121.893287","36.3449887"],["-121.8930264","36.3447643"],["-121.8926576","36.344548"],["-121.8921694","36.3443186"],["-121.8919416","36.3441023"],["-121.8918276","36.3436967"],["-121.8919217","36.3431484"],["-121.8918917","36.3428695"],["-121.8917747","36.3426583"],["-121.8915133","36.3423853"],["-121.8913579","36.3421381"],["-121.8912523","36.341702"],["-121.8911211","36.3414678"],["-121.8909726","36.3412872"],["-121.890807","36.341145"],["-121.890718","36.3409555"],["-121.8907016","36.3407469"],["-121.8907517","36.3403677"],["-121.8910075","36.3397606"],["-121.8911247","36.3393716"],["-121.8912135","36.3389976"],["-121.8912351","36.3386467"],["-121.8912188","36.3384617"],["-121.8912341","36.3382471"],["-121.8914082","36.3378751"],["-121.8915488","36.3374774"],["-121.891592","36.3371725"],["-121.8915525","36.3368349"],["-121.8914673","36.3366457"],["-121.891165","36.3363291"],["-121.8898073","36.3354202"],["-121.8893922","36.3352051"],["-121.8889957","36.3350582"],["-121.8880423","36.3347741"],["-121.8861055","36.3339265"],["-121.8856632","36.3336448"],["-121.8854619","36.3334011"],["-121.8853488","36.3331395"],["-121.8853153","36.3328811"],["-121.8854021","36.332496"],["-121.8856133","36.3321621"],["-121.8857425","36.332031"],["-121.8860332","36.3318422"],["-121.8863763","36.3317224"],["-121.8867886","36.3316848"],["-121.887528","36.3317075"],["-121.8884729","36.331775"],["-121.8898541","36.3320424"],["-121.8903722","36.3320282"],["-121.8907997","36.3318447"],["-121.8914507","36.3310863"],["-121.8938249","36.3277899"],["-121.8942415","36.3271284"],["-121.8942918","36.3267668"],["-121.8942094","36.3263739"],["-121.8938017","36.3257677"],["-121.8936688","36.3254247"],["-121.89368","36.3251789"],["-121.8937932","36.324833"],["-121.8938637","36.324504"],["-121.8938323","36.3241462"],["-121.8936985","36.3239173"],["-121.8934305","36.3237017"],["-121.8931996","36.3235212"],["-121.8930529","36.3233534"],["-121.8929948","36.3231508"],["-121.8929935","36.3228777"],["-121.8931441","36.3222536"],["-121.8931294","36.3219645"],["-121.8930331","36.321674"],["-121.8926851","36.3210414"],["-121.8925602","36.3207093"],["-121.8924897","36.3202367"],["-121.8925186","36.3195455"],["-121.8923843","36.3188111"],["-121.891842","36.3171953"],["-121.8914631","36.3161313"],["-121.8911892","36.3156201"],["-121.8902908","36.3144705"],["-121.8846754","36.3081114"],["-121.882694","36.305868"],["-121.8804806","36.3033844"],["-121.8796309","36.3025222"],["-121.8786173","36.301658"],["-121.8780175","36.3012331"],["-121.8771316","36.3006313"],["-121.8759479","36.2999569"],["-121.854044","36.2893179"],["-121.8527052","36.2888795"],["-121.8520294","36.2887914"],["-121.8515639","36.2887794"],["-121.8502726","36.2888251"],["-121.8490592","36.2888654"],["-121.8474928","36.2889078"],["-121.8466733","36.288888"],["-121.8456632","36.2887745"],["-121.8450278","36.2886422"],["-121.8445561","36.2885315"],["-121.8437606","36.2882544"],["-121.8431551","36.2879539"],["-121.8425234","36.28757"],["-121.8420478","36.2871859"],["-121.8416631","36.2868161"],["-121.8412636","36.2863179"],["-121.8407875","36.2854818"],["-121.8404922","36.2850527"],["-121.8402048","36.2847551"],["-121.8398561","36.2844869"],["-121.8394709","36.2842575"],["-121.8388924","36.2840224"],["-121.8357548","36.2830289"],["-121.834228","36.2825155"],["-121.833511","36.2821979"],["-121.8325184","36.2815322"],["-121.8276449","36.2779261"],["-121.8270821","36.2774641"],["-121.825796","36.2765342"],["-121.825109","36.2760861"],["-121.8242252","36.2757357"],["-121.8233976","36.2755424"],["-121.8224798","36.2754739"],["-121.8209553","36.275514"],["-121.8203614","36.2754317"],["-121.8198179","36.2752515"],["-121.8193849","36.2750897"],["-121.81927","36.275007"],["-121.8189263","36.2747403"],["-121.8177474","36.2734807"],["-121.817105","36.2730261"],["-121.8164795","36.2727594"],["-121.8158567","36.2726012"],["-121.8152985","36.2725504"],["-121.8149693","36.2725607"],["-121.814468","36.2726215"],["-121.8136252","36.2727981"],["-121.8128788","36.2728305"],["-121.8121607","36.2727908"],["-121.8114804","36.2726166"],["-121.8095322","36.2718222"],["-121.8088019","36.2713761"],["-121.8082736","36.2708529"],["-121.8079781","36.2704314"],["-121.807499","36.2695093"],["-121.8072069","36.2692036"],["-121.8069427","36.268976"],["-121.8065485","36.2687459"],["-121.8061685","36.2685454"],["-121.8052023","36.2681498"],["-121.8045631","36.2677422"],["-121.8042509","36.2673896"],["-121.8031091","36.2657129"],["-121.8023008","36.2649335"],["-121.8020218","36.2647464"],["-121.8018602","36.2646512"],["-121.8014204","36.2644402"],["-121.8009912","36.264296"],["-121.8007513","36.2642355"],["-121.8002973","36.2641497"],["-121.799794","36.2641274"],["-121.7968505","36.2642929"],["-121.7961714","36.2643259"],["-121.7959249","36.264305"],["-121.7956377","36.264223"],["-121.7951995","36.2640446"],["-121.794977","36.2638959"],["-121.794792","36.2637132"],["-121.7946451","36.2635363"],["-121.7943972","36.2631191"],["-121.7935212","36.2614663"],["-121.7932143","36.2610951"],["-121.7929096","36.2608468"],["-121.792332","36.260573"],["-121.7915464","36.2603899"],["-121.790752","36.2602169"],["-121.7902039","36.2600764"],["-121.7897595","36.2598965"],["-121.7894216","36.25969"],["-121.7889438","36.2593457"],["-121.788715","36.2590724"],["-121.7886224","36.2589272"],["-121.7885094","36.2587224"],["-121.7883842","36.2583425"],["-121.7883353","36.257715"],["-121.7883389","36.2558556"],["-121.7882937","36.2554834"],["-121.788169","36.2551254"],["-121.7877963","36.2545532"],["-121.7875637","36.2541101"],["-121.7874418","36.2537572"],["-121.7873479","36.25328"],["-121.7873429","36.2528721"],["-121.787343","36.2525441"],["-121.787322","36.2521769"],["-121.7872009","36.2516002"],["-121.7868104","36.250774"],["-121.7865343","36.250444"],["-121.7863785","36.2502731"],["-121.7861474","36.2500342"],["-121.7859993","36.2498818"],["-121.7859079","36.2497969"],["-121.7858029","36.2497114"],["-121.785663","36.2496182"],["-121.7854474","36.2494995"],["-121.784778","36.2492011"],["-121.7840249","36.2488991"],["-121.783502","36.2486782"],["-121.7830203","36.2484337"],["-121.7826536","36.2482321"],["-121.7823751","36.2480554"],["-121.7822081","36.2479094"],["-121.7820469","36.2477413"],["-121.7818458","36.2475037"],["-121.7817072","36.2473612"],["-121.7816402","36.2472484"],["-121.7815649","36.2470625"],["-121.7815048","36.246898"],["-121.7813707","36.2465123"],["-121.7807633","36.2447337"],["-121.7803629","36.2441217"],["-121.7796085","36.2433947"],["-121.7793143","36.2430121"],["-121.7786186","36.2416664"],["-121.7779081","36.2408239"],["-121.7777625","36.2406924"],["-121.7776011","36.2405697"],["-121.7773618","36.2403981"],["-121.7769768","36.2401554"],["-121.7754571","36.2394221"],["-121.7743475","36.2388559"],["-121.7736419","36.2387184"],["-121.7732135","36.2386629"],["-121.7728635","36.2386245"],["-121.7724882","36.2385703"],["-121.7721947","36.2384807"],["-121.7719291","36.2383595"],["-121.7717294","36.2382433"],["-121.7705006","36.237281"],["-121.769307","36.2364965"],["-121.7688978","36.2361624"],["-121.7682744","36.2354116"],["-121.7677859","36.2347138"],["-121.7674468","36.2341114"],["-121.7672353","36.2337512"],["-121.7671119","36.2334601"],["-121.7668916","36.2328119"],["-121.7666562","36.2323996"],["-121.7656237","36.2313836"],["-121.7648741","36.2302773"],["-121.7647151","36.2297612"],["-121.7647095","36.2294063"],["-121.7647332","36.2290498"],["-121.7647588","36.2287436"],["-121.764753","36.2285411"],["-121.7647394","36.2283639"],["-121.7646918","36.2282219"],["-121.764593","36.2280475"],["-121.7639314","36.2272587"],["-121.7630103","36.2267662"],["-121.762807","36.2266092"],["-121.762599","36.2263387"],["-121.7624922","36.2260464"],["-121.7623448","36.225781"],["-121.7620453","36.2255392"],["-121.7617776","36.2254327"],["-121.7615201","36.2254071"],["-121.7613879","36.225408"],["-121.7612712","36.2254148"],["-121.7611647","36.2254323"],["-121.7610604","36.2254596"],["-121.7609406","36.225507"],["-121.7607774","36.2255764"],["-121.7606664","36.2256195"],["-121.7605645","36.225651"],["-121.7604664","36.2256699"],["-121.7603621","36.2256789"],["-121.7602532","36.2256731"],["-121.7601503","36.2256492"],["-121.7600585","36.2256086"],["-121.7599669","36.2255537"],["-121.75989","36.225489"],["-121.759815","36.2254115"],["-121.759732","36.2253181"],["-121.75965","36.2252262"],["-121.7595755","36.2251551"],["-121.7594874","36.2250812"],["-121.7593917","36.2250194"],["-121.7592848","36.2249683"],["-121.7591681","36.2249278"],["-121.7590592","36.224899"],["-121.7589401","36.2248804"],["-121.7588047","36.2248634"],["-121.7586816","36.2248443"],["-121.7585597","36.2248171"],["-121.7584463","36.2247752"],["-121.7583475","36.2247189"],["-121.758261","36.2246523"],["-121.7581868","36.2245718"],["-121.7581385","36.2244955"],["-121.758106","36.2244183"],["-121.7580885","36.2243448"],["-121.7580812","36.2242603"],["-121.758093","36.2241775"],["-121.7581177","36.2240995"],["-121.7581554","36.2240169"],["-121.7582019","36.2239383"],["-121.7582556","36.2238674"],["-121.7583201","36.2237972"],["-121.7583916","36.22373"],["-121.7585679","36.2235861"],["-121.7588461","36.2233629"],["-121.7589622","36.2232638"],["-121.7590221","36.223201"],["-121.7590715","36.2231331"],["-121.7591105","36.2230698"],["-121.7591355","36.2230046"],["-121.7591515","36.2229388"],["-121.7591542","36.2228732"],["-121.7591432","36.2228035"],["-121.7591244","36.2227367"],["-121.7590921","36.2226696"],["-121.7590478","36.2226066"],["-121.7589874","36.2225434"],["-121.7589111","36.2224876"],["-121.7588256","36.2224393"],["-121.7587356","36.2224035"],["-121.758629","36.2223809"],["-121.7585186","36.2223729"],["-121.7583712","36.2223738"],["-121.7582039","36.2223759"],["-121.7580435","36.2223769"],["-121.7579279","36.222368"],["-121.757799","36.2223513"],["-121.7576765","36.2223267"],["-121.7575606","36.2222961"],["-121.7574463","36.2222555"],["-121.7573413","36.2222101"],["-121.7572461","36.2221579"],["-121.7570488","36.2220223"],["-121.7564564","36.2216016"],["-121.7563372","36.2215222"],["-121.7562017","36.2214416"],["-121.7560825","36.2213763"],["-121.7559499","36.22131"],["-121.755821","36.2212503"],["-121.7556897","36.2211945"],["-121.7555604","36.2211447"],["-121.7554128","36.2210931"],["-121.7545529","36.2208279"],["-121.7543827","36.2207675"],["-121.7542945","36.2207157"],["-121.7542146","36.2206556"],["-121.7541529","36.2205969"],["-121.7541037","36.2205274"],["-121.7540739","36.220447"],["-121.7540627","36.2203623"],["-121.7540639","36.2202668"],["-121.7540735","36.2201754"],["-121.7540893","36.2200918"],["-121.7541175","36.2199996"],["-121.7541583","36.2199267"],["-121.7542207","36.2198549"],["-121.7543077","36.2197901"],["-121.7543988","36.219703"],["-121.7546965","36.2193483"],["-121.7547627","36.2192461"],["-121.7547932","36.2191492"],["-121.754807","36.2190558"],["-121.7548011","36.2189585"],["-121.7547808","36.2188595"],["-121.7547504","36.2187701"],["-121.754706","36.2186794"],["-121.7546516","36.2186011"],["-121.7545831","36.2185235"],["-121.7545058","36.218456"],["-121.7544152","36.2183945"],["-121.7543129","36.2183397"],["-121.7541953","36.21829"],["-121.7540671","36.218246"],["-121.7538618","36.2181895"],["-121.7536911","36.2181419"],["-121.7534856","36.2180839"],["-121.7533513","36.2180375"],["-121.7532204","36.2179843"],["-121.7530925","36.2179246"],["-121.7529707","36.2178608"],["-121.7527435","36.2177289"],["-121.7521685","36.2173853"],["-121.7520847","36.2173386"],["-121.7520091","36.2173031"],["-121.7519301","36.2172719"],["-121.7518463","36.2172432"],["-121.7517611","36.2172226"],["-121.7516683","36.2172079"],["-121.7515692","36.2172019"],["-121.7514671","36.2172"],["-121.7513669","36.2172059"],["-121.7511963","36.2172171"],["-121.7505966","36.2172318"],["-121.7504322","36.2171644"],["-121.750261","36.2170118"],["-121.7501887","36.2169096"],["-121.750143","36.2167912"],["-121.7501493","36.2166281"],["-121.750351","36.2161228"],["-121.7505759","36.2156873"],["-121.7506375","36.2153992"],["-121.7505482","36.2151256"],["-121.7503505","36.2149469"],["-121.7500105","36.2148349"],["-121.749649","36.2147783"],["-121.7493317","36.2146882"],["-121.7489061","36.214535"],["-121.7486189","36.2144837"],["-121.7483828","36.2144895"],["-121.7482097","36.2145044"],["-121.7480092","36.2144902"],["-121.7477356","36.2144295"],["-121.747522","36.2143199"],["-121.7473385","36.2141488"],["-121.7470114","36.2136273"],["-121.7467964","36.2134402"],["-121.7449944","36.2125898"],["-121.7445021","36.2123707"],["-121.7442073","36.2122766"],["-121.7439179","36.2122159"],["-121.743643","36.2122687"],["-121.7433517","36.2124242"],["-121.743112","36.2125198"],["-121.7429067","36.2125225"],["-121.7426575","36.2124545"],["-121.7424831","36.2123276"],["-121.7423923","36.2121437"],["-121.7423128","36.2117216"],["-121.7421903","36.2112445"],["-121.7420515","36.2109288"],["-121.741856","36.2106988"],["-121.7415595","36.2105332"],["-121.7398131","36.2101212"],["-121.7395485","36.2100088"],["-121.7392198","36.2097602"],["-121.7380858","36.2085522"],["-121.7377545","36.2082907"],["-121.7375958","36.2082216"],["-121.7374418","36.2081946"],["-121.7372912","36.2082022"],["-121.7370883","36.2082785"],["-121.7366181","36.2085187"],["-121.7364028","36.2085846"],["-121.73615","36.2085836"],["-121.7354979","36.2084807"],["-121.7352047","36.2085043"],["-121.7348555","36.2086393"],["-121.7345361","36.2087096"],["-121.734233","36.2086658"],["-121.7340255","36.2085507"],["-121.7339178","36.2083993"],["-121.7338988","36.2082591"],["-121.7339342","36.2080555"],["-121.734213","36.2074601"],["-121.7343673","36.207108"],["-121.734607","36.2068205"],["-121.7350037","36.2064907"],["-121.7351122","36.2063612"],["-121.7351888","36.2062269"],["-121.7352858","36.2060613"],["-121.7353838","36.2058863"],["-121.7354044","36.2057311"],["-121.7353651","36.2055271"],["-121.7351939","36.2053193"],["-121.7345515","36.2049638"],["-121.7342641","36.2048375"],["-121.7339647","36.2047483"],["-121.7335229","36.2046797"],["-121.7329712","36.2046161"],["-121.7327368","36.2046289"],["-121.7325745","36.2046826"],["-121.7324055","36.2047791"],["-121.7321339","36.2049846"],["-121.7318521","36.2050957"],["-121.7316696","36.2051215"],["-121.7315164","36.2051151"],["-121.7313434","36.2050706"],["-121.7312067","36.2050097"],["-121.7310537","36.2048962"],["-121.7306405","36.2044272"],["-121.7303974","36.2042508"],["-121.7301155","36.2041338"],["-121.7298721","36.2039869"],["-121.7296781","36.2038211"],["-121.7295065","36.2036195"],["-121.729367","36.2033929"],["-121.7292602","36.2030486"],["-121.7290176","36.2021649"],["-121.7288394","36.2018956"],["-121.7285827","36.20172"],["-121.7283416","36.2016484"],["-121.7280763","36.2016252"],["-121.7277345","36.2016849"],["-121.7275574","36.2017622"],["-121.7273744","36.2018641"],["-121.7271913","36.201963"],["-121.7270114","36.2020217"],["-121.726703","36.2020504"],["-121.726416","36.2020282"],["-121.7261834","36.2019872"],["-121.7260437","36.2019554"],["-121.7259688","36.2019315"],["-121.7258187","36.2018657"],["-121.7257353","36.2018176"],["-121.7256652","36.2017632"],["-121.7255722","36.201675"],["-121.7255109","36.201581"],["-121.7254507","36.2014394"],["-121.7253682","36.2012189"],["-121.7252229","36.2009964"],["-121.7249972","36.2008243"],["-121.7246965","36.2006907"],["-121.7244002","36.2006464"],["-121.7239624","36.2006375"],["-121.7232327","36.2005963"],["-121.7227549","36.2005246"],["-121.7225294","36.2004853"],["-121.7222719","36.200415"],["-121.72184","36.2002758"],["-121.7205609","36.1998023"],["-121.7202378","36.1996224"],["-121.719639","36.199085"],["-121.7192903","36.1988621"],["-121.7189455","36.1987391"],["-121.7181385","36.1985082"],["-121.7178678","36.1983866"],["-121.7177813","36.198309"],["-121.7176997","36.1982292"],["-121.7175638","36.1979229"],["-121.7174479","36.1974165"],["-121.7173875","36.1972814"],["-121.7172884","36.1971653"],["-121.7171784","36.1970725"],["-121.716991","36.1969751"],["-121.716701","36.1968926"],["-121.7160818","36.1967664"],["-121.7156751","36.1966728"],["-121.7154927","36.1965957"],["-121.7153701","36.1965287"],["-121.7146781","36.1960189"],["-121.7144681","36.1957991"],["-121.7141712","36.1954217"],["-121.7139811","36.1952684"],["-121.7136989","36.1951772"],["-121.7133495","36.1951729"],["-121.7129276","36.1953453"],["-121.7127262","36.1955532"],["-121.7122885","36.1962641"],["-121.7121835","36.1964185"],["-121.7121174","36.1964953"],["-121.7120441","36.1965607"],["-121.7120002","36.196594"],["-121.711959","36.1966226"],["-121.711891","36.1966617"],["-121.7118617","36.1966774"],["-121.7118321","36.1966911"],["-121.7118008","36.1967044"],["-121.7117725","36.1967159"],["-121.7117452","36.1967249"],["-121.7117136","36.1967348"],["-121.7116819","36.1967434"],["-121.7116489","36.1967499"],["-121.7116193","36.1967544"],["-121.7115868","36.1967586"],["-121.7115505","36.1967607"],["-121.7115146","36.1967618"],["-121.7114806","36.1967597"],["-121.7114185","36.1967517"],["-121.7113824","36.1967434"],["-121.7113438","36.1967327"],["-121.7112965","36.1967162"],["-121.7112494","36.1966981"],["-121.7112148","36.1966817"],["-121.7111784","36.1966624"],["-121.711124","36.1966276"],["-121.7110886","36.1966016"],["-121.7110543","36.1965718"],["-121.7110243","36.1965393"],["-121.7109917","36.1964988"],["-121.7109595","36.1964501"],["-121.7109362","36.1964046"],["-121.7108478","36.1961791"],["-121.7107283","36.1958662"],["-121.7106657","36.1956928"],["-121.7106504","36.1956221"],["-121.7106409","36.1955335"],["-121.7106376","36.1954295"],["-121.7106373","36.1953193"],["-121.7106836","36.1947729"],["-121.7108207","36.1941628"],["-121.7108453","36.1937793"],["-121.7108658","36.1929829"],["-121.7107751","36.192672"],["-121.7106206","36.1924881"],["-121.7104265","36.1923544"],["-121.710146","36.1922503"],["-121.7099054","36.1921867"],["-121.7096476","36.1920992"],["-121.709456","36.1919825"],["-121.7092729","36.1918117"],["-121.7090676","36.1915577"],["-121.7089113","36.191386"],["-121.7087535","36.1912751"],["-121.7085446","36.1911462"],["-121.7082425","36.1910127"],["-121.7079084","36.190861"],["-121.7076534","36.1906615"],["-121.7070988","36.1900133"],["-121.7068009","36.1896742"],["-121.7066392","36.1894224"],["-121.7065551","36.1892224"],["-121.7064688","36.1890632"],["-121.7063501","36.1888957"],["-121.7061076","36.1886176"],["-121.7059932","36.1884355"],["-121.7059242","36.188295"],["-121.70589","36.1881636"],["-121.7058732","36.1876429"],["-121.7058541","36.1875412"],["-121.7058167","36.1874576"],["-121.7057034","36.187277"],["-121.7055221","36.1870994"],["-121.7051631","36.1868214"],["-121.7047358","36.1865282"],["-121.7043658","36.1863431"],["-121.7041116","36.1862414"],["-121.7037458","36.186084"],["-121.7031977","36.1857415"],["-121.7022245","36.1850748"],["-121.701841","36.1847916"],["-121.7016829","36.1846414"],["-121.7015401","36.1844473"],["-121.701386","36.1842358"],["-121.7011375","36.1838433"],["-121.7008274","36.1834104"],["-121.7005865","36.1831216"],["-121.7002384","36.1828063"],["-121.7000579","36.1825521"],["-121.6999615","36.182309"],["-121.6999061","36.1820184"],["-121.6998435","36.1815692"],["-121.6998108","36.1812867"],["-121.6998362","36.1809844"],["-121.6998664","36.1807074"],["-121.6998823","36.1805592"],["-121.6998834","36.1804974"],["-121.6998804","36.1804371"],["-121.6998733","36.1803778"],["-121.6998603","36.1803135"],["-121.6998421","36.1802453"],["-121.6998119","36.1801661"],["-121.699775","36.1800912"],["-121.6994863","36.1796438"],["-121.699142","36.1791047"],["-121.6989129","36.1786996"],["-121.6987711","36.1784229"],["-121.6986872","36.1782401"],["-121.6986336","36.1780907"],["-121.6986337","36.1778871"],["-121.6986412","36.1776665"],["-121.6986489","36.1775151"],["-121.6986556","36.177411"],["-121.6986556","36.1773699"],["-121.6986503","36.1773232"],["-121.6986436","36.1772784"],["-121.6986344","36.177237"],["-121.6986202","36.1771909"],["-121.6986037","36.1771452"],["-121.6985817","36.1770908"],["-121.6985575","36.1770443"],["-121.6985331","36.1770048"],["-121.6985084","36.1769707"],["-121.6984819","36.1769374"],["-121.6984518","36.1769096"],["-121.6984085","36.1768756"],["-121.6983514","36.1768407"],["-121.6982858","36.1768128"],["-121.698229","36.1767947"],["-121.6981661","36.1767795"],["-121.6981068","36.1767705"],["-121.6980392","36.1767675"],["-121.6979725","36.1767684"],["-121.6979082","36.1767755"],["-121.6978458","36.1767917"],["-121.6977909","36.1768094"],["-121.6977198","36.1768399"],["-121.697629","36.1768852"],["-121.6974769","36.1769694"],["-121.6974024","36.1770084"],["-121.6972777","36.1770594"],["-121.697229","36.177076"],["-121.6971808","36.177088"],["-121.6971373","36.1770974"],["-121.6970862","36.1771079"],["-121.6970416","36.1771145"],["-121.6968469","36.1771322"],["-121.6966495","36.1771484"],["-121.6964155","36.1771659"],["-121.6963207","36.1771692"],["-121.6962443","36.1771666"],["-121.6961759","36.1771594"],["-121.6961093","36.1771487"],["-121.6960585","36.1771368"],["-121.6960134","36.1771246"],["-121.6959685","36.1771096"],["-121.6959108","36.1770857"],["-121.6957825","36.1770277"],["-121.6957053","36.1769934"],["-121.6956535","36.1769735"],["-121.6956024","36.1769572"],["-121.6955543","36.1769434"],["-121.6955037","36.1769323"],["-121.6954509","36.1769234"],["-121.6953977","36.1769193"],["-121.6953284","36.1769187"],["-121.6952634","36.1769213"],["-121.695195","36.176931"],["-121.6951257","36.1769437"],["-121.6949376","36.1769904"],["-121.6946212","36.1770739"],["-121.6944681","36.1771115"],["-121.6943891","36.1771278"],["-121.6943114","36.1771405"],["-121.6942325","36.1771494"],["-121.6941504","36.1771535"],["-121.6940704","36.1771524"],["-121.6940019","36.1771486"],["-121.6939442","36.1771426"],["-121.6938888","36.1771336"],["-121.6938398","36.1771208"],["-121.693799","36.1771079"],["-121.6937577","36.1770928"],["-121.6936923","36.1770622"],["-121.6936549","36.1770406"],["-121.6935863","36.1769917"],["-121.6935538","36.1769651"],["-121.693521","36.1769353"],["-121.693488","36.1769035"],["-121.6934581","36.1768715"],["-121.6934309","36.1768386"],["-121.6934079","36.1768052"],["-121.6933848","36.1767683"],["-121.693366","36.1767312"],["-121.6933505","36.1766952"],["-121.6933372","36.1766561"],["-121.6933261","36.1766163"],["-121.6933174","36.1765629"],["-121.6933143","36.1764986"],["-121.6933136","36.1764324"],["-121.6933223","36.1763747"],["-121.693337","36.1763235"],["-121.6933626","36.1762544"],["-121.6934077","36.1761782"],["-121.6934694","36.1761009"],["-121.693534","36.1760321"],["-121.6936054","36.1759687"],["-121.6938732","36.1757748"],["-121.6939702","36.1756927"],["-121.6940199","36.175639"],["-121.6940685","36.1755801"],["-121.6941043","36.175526"],["-121.6941307","36.1754772"],["-121.6941544","36.1754187"],["-121.6941762","36.1753554"],["-121.6941925","36.175285"],["-121.6942033","36.1752132"],["-121.6942075","36.1751492"],["-121.6942097","36.1750922"],["-121.6942054","36.1750468"],["-121.6941923","36.1750012"],["-121.6941728","36.1749534"],["-121.6941482","36.1749135"],["-121.6941189","36.1748722"],["-121.6940835","36.1748361"],["-121.6940435","36.1748009"],["-121.6939964","36.1747653"],["-121.6939481","36.1747355"],["-121.6938983","36.1747114"],["-121.6938414","36.1746878"],["-121.6937447","36.1746549"],["-121.6934573","36.1745625"],["-121.6932688","36.1744955"],["-121.6932","36.1744671"],["-121.6931452","36.1744426"],["-121.693089","36.1744119"],["-121.6930387","36.1743801"],["-121.6929928","36.1743471"],["-121.6929422","36.1743062"],["-121.6928932","36.1742601"],["-121.6928506","36.1742157"],["-121.6928174","36.1741688"],["-121.6927886","36.1741243"],["-121.6927268","36.1739832"],["-121.6926579","36.1738304"],["-121.6925123","36.1736151"],["-121.6923418","36.1734794"],["-121.6922741","36.1734365"],["-121.692198","36.1733983"],["-121.69181","36.1732958"],["-121.6909495","36.1731356"],["-121.6905918","36.1730583"],["-121.6903896","36.1730024"],["-121.6902221","36.1729219"],["-121.6899828","36.172761"],["-121.6897661","36.172538"],["-121.6895545","36.1723086"],["-121.6893746","36.1721568"],["-121.6891527","36.1720458"],["-121.6888762","36.1719858"],["-121.6884123","36.1719753"],["-121.6880316","36.1719663"],["-121.6877863","36.1719246"],["-121.6875232","36.1718495"],["-121.6872367","36.1717291"],["-121.68705","36.1716161"],["-121.6868678","36.1714915"],["-121.6865796","36.1712604"],["-121.6862445","36.1709753"],["-121.6856197","36.1706086"],["-121.6852972","36.1703468"],["-121.6850065","36.169984"],["-121.6847506","36.1698117"],["-121.6843241","36.1697249"],["-121.683684","36.1697604"],["-121.6833233","36.1697015"],["-121.6830359","36.1695595"],["-121.6825237","36.1691208"],["-121.6823174","36.1689789"],["-121.6818952","36.1688325"],["-121.6803245","36.1683671"],["-121.6792604","36.1681566"],["-121.6789277","36.1680455"],["-121.6786507","36.1679001"],["-121.6783984","36.1677332"],["-121.6779168","36.1672324"],["-121.6766103","36.1658207"],["-121.6759064","36.165109"],["-121.6751974","36.1645846"],["-121.6744045","36.1640229"],["-121.6741112","36.1637523"],["-121.6739059","36.1634846"],["-121.6737587","36.1631331"],["-121.6735633","36.162521"],["-121.6733533","36.1621231"],["-121.6729569","36.161667"],["-121.6728213","36.1614309"],["-121.6727313","36.1610749"],["-121.6726748","36.1604365"],["-121.6726037","36.1601796"],["-121.6724793","36.1599817"],["-121.6723101","36.1598156"],["-121.6721116","36.1596838"],["-121.6718424","36.1595635"],["-121.6713712","36.1593773"],["-121.6710367","36.1592051"],["-121.6707877","36.159039"],["-121.6706449","36.1588934"],["-121.6705595","36.1587904"],["-121.6705069","36.1586939"],["-121.6704483","36.1585247"],["-121.6703503","36.1581821"],["-121.6703158","36.1579824"],["-121.6703439","36.1577756"],["-121.6704208","36.1574855"],["-121.6704792","36.157182"],["-121.6704818","36.1569824"],["-121.6704249","36.1567469"],["-121.6703354","36.1565577"],["-121.6701356","36.1563051"],["-121.6699566","36.1561443"],["-121.6694786","36.1558328"],["-121.6688796","36.1554595"],["-121.6667445","36.1541659"],["-121.6662802","36.1538534"],["-121.6657505","36.1534634"],["-121.6653428","36.1530764"],["-121.6632919","36.1505246"],["-121.6628029","36.1500096"],["-121.6623108","36.1496166"],["-121.6610556","36.1486791"],["-121.6606893","36.1484581"],["-121.6603003","36.1482966"],["-121.6596731","36.1480784"],["-121.6592671","36.1479256"],["-121.658993","36.1477664"],["-121.65877","36.1476312"],["-121.6585414","36.147472"],["-121.6582818","36.1472854"],["-121.6579827","36.1470374"],["-121.6577516","36.1467322"],["-121.6576003","36.1463393"],["-121.6574797","36.146013"],["-121.6573254","36.1457512"],["-121.6570977","36.1454272"],["-121.656728","36.145026"],["-121.6552997","36.1436424"],["-121.6550135","36.1433571"],["-121.6548674","36.1432201"],["-121.6541216","36.1425599"],["-121.653536","36.1419827"],["-121.6481098","36.1366697"],["-121.6474751","36.1359822"],["-121.6473108","36.1358139"],["-121.6470872","36.1354578"],["-121.6469178","36.1351888"],["-121.6466703","36.1347905"],["-121.6461307","36.1338299"],["-121.6455657","36.1328401"],["-121.6452445","36.132282"],["-121.6451573","36.1321343"],["-121.6449796","36.1318663"],["-121.643574","36.1296393"],["-121.6430842","36.1290666"],["-121.642853","36.1288288"],["-121.6425316","36.1284966"],["-121.6422839","36.1282482"],["-121.6419867","36.1279825"],["-121.6415561","36.1276247"],["-121.6407424","36.1270837"],["-121.6398727","36.1265947"],["-121.6392135","36.126236"],["-121.6387083","36.1259633"],["-121.6384655","36.1258405"],["-121.6381473","36.1256631"],["-121.6377299","36.1253893"],["-121.6368956","36.1248023"],["-121.6340799","36.1227798"],["-121.6314219","36.1211989"],["-121.6310486","36.1209445"],["-121.6307799","36.1206999"],["-121.6305964","36.1204226"],["-121.6304192","36.1199692"],["-121.6303241","36.1195913"],["-121.6302052","36.1186326"],["-121.6300321","36.1175194"],["-121.6295269","36.1159977"],["-121.6291255","36.1141293"],["-121.6287811","36.1130828"],["-121.6284489","36.1123791"],["-121.6272242","36.1104855"],["-121.6266899","36.1100142"],["-121.6258353","36.1095806"],["-121.6253725","36.1092416"],["-121.6251178","36.1088427"],["-121.6249524","36.1083228"],["-121.6247744","36.1080038"],["-121.6246561","36.1078248"],["-121.6244737","36.1076246"],["-121.6242474","36.1074424"],["-121.623986","36.1072821"],["-121.6237721","36.1071432"],["-121.6235905","36.1070006"],["-121.6233663","36.1067865"],["-121.6231957","36.1065629"],["-121.6230712","36.1063311"],["-121.6229372","36.10603"],["-121.6228022","36.1056088"],["-121.6226569","36.1050927"],["-121.6225421","36.1047963"],["-121.6224555","36.1045944"],["-121.6223285","36.1044153"],["-121.6215391","36.103442"],["-121.6212484","36.1030755"],["-121.6211786","36.1029655"],["-121.62049","36.1011454"],["-121.620384","36.1006989"],["-121.6203351","36.1002981"],["-121.6203757","36.0995244"],["-121.6203634","36.0992465"],["-121.6203296","36.0989867"],["-121.6202187","36.0986858"],["-121.6200152","36.0982317"],["-121.6197753","36.097635"],["-121.6197253","36.0974858"],["-121.619684","36.097335"],["-121.6196548","36.0971846"],["-121.6196325","36.0970254"],["-121.6195575","36.0961388"],["-121.6195044","36.0955352"],["-121.6194839","36.0953641"],["-121.619458","36.0951756"],["-121.6194278","36.0950193"],["-121.6193861","36.0948571"],["-121.6193207","36.0946517"],["-121.6192444","36.0944318"],["-121.6191066","36.0941223"],["-121.6188062","36.0934592"],["-121.6187578","36.0933101"],["-121.6187228","36.09315"],["-121.6186758","36.0928459"],["-121.618546","36.0920263"],["-121.618501","36.0917854"],["-121.6184602","36.0916513"],["-121.6184132","36.0915419"],["-121.6183586","36.0914346"],["-121.6182902","36.091323"],["-121.618153","36.0911371"],["-121.6177202","36.0906046"],["-121.6175873","36.0903806"],["-121.6175144","36.0901515"],["-121.6175056","36.0899375"],["-121.6175352","36.0897308"],["-121.6176623","36.0893338"],["-121.6177345","36.0890656"],["-121.6177543","36.0888214"],["-121.6177305","36.0884264"],["-121.6176568","36.088078"],["-121.6175935","36.0877371"],["-121.6175991","36.0874969"],["-121.6175925","36.0872127"],["-121.6175186","36.0869494"],["-121.6173798","36.0866818"],["-121.6171395","36.0864073"],["-121.6168351","36.0862065"],["-121.6164699","36.086068"],["-121.6157911","36.0859119"],["-121.6155107","36.0858084"],["-121.6152374","36.0856384"],["-121.6149013","36.0853097"],["-121.614614","36.0849533"],["-121.6142696","36.0845587"],["-121.6138559","36.0841104"],["-121.6136046","36.0837763"],["-121.6134638","36.0834792"],["-121.6134311","36.0831481"],["-121.6133054","36.08276"],["-121.6125639","36.081447"],["-121.6122677","36.0810007"],["-121.6119857","36.0806231"],["-121.6115486","36.080171"],["-121.6111658","36.079678"],["-121.6110706","36.0794729"],["-121.6109249","36.0791176"],["-121.6107668","36.0788803"],["-121.6105651","36.0786646"],["-121.6101366","36.0783456"],["-121.6093514","36.0778613"],["-121.6078037","36.0770224"],["-121.6070987","36.0766405"],["-121.6066189","36.0763305"],["-121.6064952","36.0761983"],["-121.6064055","36.0760927"],["-121.6063417","36.0759465"],["-121.606288","36.075761"],["-121.6062571","36.0755319"],["-121.6062561","36.075297"],["-121.6063426","36.0750241"],["-121.6064764","36.0746699"],["-121.6066043","36.0743515"],["-121.606646","36.0741422"],["-121.6066228","36.0739305"],["-121.6064562","36.0735069"],["-121.6058808","36.0726126"],["-121.6056535","36.0723647"],["-121.6052822","36.0721211"],["-121.6043765","36.0717531"],["-121.6034933","36.0713873"],["-121.6027706","36.0710379"],["-121.602224","36.0707461"],["-121.6017251","36.07051"],["-121.6012468","36.0703363"],["-121.6002157","36.0700603"],["-121.5990292","36.0697556"],["-121.5987459","36.0696428"],["-121.5983902","36.069453"],["-121.5978997","36.0691251"],["-121.5968882","36.0684166"],["-121.5959155","36.0677474"],["-121.5951359","36.067255"],["-121.5946043","36.0669883"],["-121.5925988","36.0661437"],["-121.5922529","36.0659557"],["-121.5920735","36.0657293"],["-121.5919545","36.0652804"],["-121.5917624","36.0647902"],["-121.5915143","36.0642406"],["-121.5912082","36.0636611"],["-121.5911346","36.0633338"],["-121.5911321","36.0629768"],["-121.5912325","36.0618593"],["-121.5912548","36.0614976"],["-121.5911206","36.0608049"],["-121.5902484","36.0572925"],["-121.5900323","36.0565816"],["-121.5898371","36.0561868"],["-121.5895776","36.0558662"],["-121.5893901","36.0557051"],["-121.5891786","36.0555612"],["-121.5883455","36.0551192"],["-121.587936","36.0548763"],["-121.5877225","36.0546387"],["-121.587611","36.0541698"],["-121.5873923","36.051921"],["-121.587406","36.0517035"],["-121.5874664","36.0514934"],["-121.5875909","36.0513012"],["-121.5878852","36.0510486"],["-121.5892396","36.0503218"],["-121.5895786","36.0500847"],["-121.5897204","36.0498842"],["-121.5897898","36.0496738"],["-121.5898102","36.0495289"],["-121.5897813","36.0493715"],["-121.5897099","36.049227"],["-121.5894337","36.048971"],["-121.5881558","36.0480868"],["-121.5864925","36.0465592"],["-121.5856347","36.0456426"],["-121.5835671","36.0432422"],["-121.581677","36.0413702"],["-121.5809948","36.0406098"],["-121.5806692","36.0400106"],["-121.5805288","36.0395662"],["-121.5803954","36.0390785"],["-121.5801","36.0382454"],["-121.5795545","36.0372083"],["-121.5784726","36.0356812"],["-121.577081","36.0338354"],["-121.5767342","36.0333423"],["-121.5762853","36.0326151"],["-121.5757755","36.0318623"],["-121.5749793","36.030903"],["-121.5746106","36.0304371"],["-121.5744891","36.0302035"],["-121.574138","36.0294131"],["-121.5731074","36.0270347"],["-121.5726741","36.0261536"],["-121.5721006","36.0253732"],["-121.5713607","36.0245573"],["-121.5709601","36.0241647"],["-121.5704952","36.0238087"],["-121.5694387","36.023159"],["-121.5655927","36.0214274"],["-121.5651075","36.0212404"],["-121.5646387","36.021171"],["-121.5639605","36.0212192"],["-121.5628053","36.0215421"],["-121.5620859","36.0217136"],["-121.5610544","36.0218876"],["-121.5605084","36.0218884"],["-121.559984","36.0218462"],["-121.5594404","36.0217878"],["-121.5591593","36.0217752"],["-121.5589031","36.0217806"],["-121.5585055","36.0218096"],["-121.5571898","36.0218759"],["-121.5560117","36.0219265"],["-121.5546545","36.0219884"],["-121.5540959","36.0219254"],["-121.5532043","36.0217469"],["-121.5528632","36.0216012"],["-121.5525947","36.0214226"],["-121.5522581","36.0210478"],["-121.5519484","36.0207729"],["-121.5517096","36.0206218"],["-121.5514711","36.0205551"],["-121.5511985","36.0205334"],["-121.5509154","36.0205325"],["-121.5504258","36.0206105"],["-121.5491861","36.0208475"],["-121.5486102","36.0209476"],["-121.5483689","36.0209466"],["-121.5480947","36.0209307"],["-121.5477893","36.020894"],["-121.5474423","36.0208267"],["-121.5467687","36.0206481"],["-121.5459759","36.0204549"],["-121.5452303","36.020404"],["-121.5443632","36.020384"],["-121.5435675","36.0204855"],["-121.5430186","36.0205218"],["-121.5426232","36.0205027"],["-121.5422838","36.020428"],["-121.5416589","36.0202571"],["-121.5368696","36.0186584"],["-121.5361989","36.0183488"],["-121.5359145","36.0181013"],["-121.5350732","36.0171322"],["-121.5346912","36.0168103"],["-121.5339042","36.0163892"],["-121.53311","36.0159827"],["-121.5324539","36.0157604"],["-121.5317831","36.0156137"],["-121.5310303","36.0153988"],["-121.5302349","36.015171"],["-121.5295642","36.0151111"],["-121.5290397","36.0150067"],["-121.5286833","36.0148386"],["-121.5283137","36.0145868"],["-121.5278463","36.0141699"],["-121.527324","36.0137421"],["-121.5266528","36.013107"],["-121.5254877","36.0118506"],["-121.5248698","36.0111878"],["-121.5246926","36.0109859"],["-121.5242848","36.0104615"],["-121.5239764","36.010175"],["-121.5235396","36.0099524"],["-121.5228504","36.0097836"],["-121.5226022","36.0097505"],["-121.5221438","36.0097375"],["-121.5214241","36.0097219"],["-121.5208738","36.0096891"],["-121.5204002","36.0095963"],["-121.5200877","36.0094872"],["-121.5184212","36.0086582"],["-121.5179285","36.0084616"],["-121.5176403","36.0084018"],["-121.5173243","36.0083746"],["-121.5169804","36.0083328"],["-121.5163929","36.0082022"],["-121.5154598","36.0079568"],["-121.5150817","36.0078879"],["-121.514772","36.0078897"],["-121.5143026","36.0079033"],["-121.5138926","36.0078752"],["-121.5133365","36.0077787"],["-121.5127706","36.0076184"],["-121.512115","36.0073802"],["-121.511441","36.0071072"],["-121.5104124","36.0064474"],["-121.5098439","36.0060929"],["-121.5094028","36.0058285"],["-121.5091733","36.0056752"],["-121.5089391","36.0054696"],["-121.5087293","36.005256"],["-121.508476","36.00507"],["-121.50811","36.0048404"],["-121.507623","36.0044902"],["-121.5072593","36.0041521"],["-121.5068703","36.0038444"],["-121.5061638","36.0033934"],["-121.5054343","36.0030113"],["-121.5050654","36.0027724"],["-121.5048194","36.0025462"],["-121.5045456","36.0022705"],["-121.5043443","36.0021155"],["-121.5041221","36.0019882"],["-121.50383","36.0017994"],["-121.5029861","36.0011345"],["-121.50258","36.0008902"],["-121.5020156","36.0006251"],["-121.5016571","36.00041"],["-121.5013654","36.000162"],["-121.5007873","35.9995258"],["-121.4996405","35.998136"],["-121.4986529","35.9969857"],["-121.4982552","35.9965046"],["-121.4979791","35.9959741"],["-121.4963129","35.9922124"],["-121.495981","35.9916838"],["-121.4956417","35.991204"],["-121.4946905","35.9897246"],["-121.4939142","35.9881557"],["-121.4930957","35.9863659"],["-121.4928421","35.9857047"],["-121.4926989","35.9852914"],["-121.4925445","35.9850533"],["-121.4923727","35.9848882"],["-121.4919612","35.984587"],["-121.4916865","35.9843111"],["-121.4914879","35.984067"],["-121.49133","35.9838259"],["-121.4910711","35.9833407"],["-121.4908632","35.9829207"],["-121.4906346","35.9824706"],["-121.4902514","35.9817118"],["-121.4900576","35.9812089"],["-121.4900421","35.9809748"],["-121.4900664","35.9807399"],["-121.490135","35.9804098"],["-121.4901386","35.980219"],["-121.4900958","35.9800545"],["-121.4899778","35.9798169"],["-121.4897905","35.9795382"],["-121.4894879","35.9791566"],["-121.4892448","35.9787411"],["-121.4890484","35.9782195"],["-121.4883659","35.9762524"],["-121.4880158","35.9753552"],["-121.4878954","35.9750279"],["-121.4878501","35.9748085"],["-121.4878008","35.9745284"],["-121.4877352","35.9742997"],["-121.4875169","35.9737481"],["-121.487356","35.973449"],["-121.4870015","35.9730543"],["-121.4861945","35.9722344"],["-121.4852143","35.971299"],["-121.48479","35.9707716"],["-121.4844423","35.9702157"],["-121.4836316","35.9687024"],["-121.4835887","35.9686051"],["-121.4835556","35.9685148"],["-121.4835324","35.9684345"],["-121.4835071","35.9683279"],["-121.483481","35.9682004"],["-121.4834559","35.9680497"],["-121.4834435","35.9679277"],["-121.4834367","35.9678329"],["-121.4834384","35.9677321"],["-121.4834505","35.9675887"],["-121.4834712","35.9674378"],["-121.4834997","35.967311"],["-121.4836217","35.9669653"],["-121.4840148","35.9658922"],["-121.4841184","35.9654784"],["-121.4841288","35.9652532"],["-121.4841274","35.9650355"],["-121.4839654","35.9632707"],["-121.4838988","35.9626186"],["-121.4838621","35.9621883"],["-121.483806","35.9617683"],["-121.483677","35.9614221"],["-121.48348","35.9610746"],["-121.483239","35.9607025"],["-121.4829607","35.9603307"],["-121.4827015","35.9599803"],["-121.4824328","35.9595223"],["-121.4819801","35.9585826"],["-121.4816995","35.957745"],["-121.4815289","35.9569666"],["-121.4814608","35.9562752"],["-121.4814513","35.9554232"],["-121.4814209","35.9545539"],["-121.4813342","35.9539265"],["-121.4811923","35.9533635"],["-121.4810174","35.9528531"],["-121.48051","35.9517311"],["-121.4716103","35.9389087"],["-121.4703723","35.9371366"],["-121.4698812","35.9363288"],["-121.4697295","35.9360159"],["-121.4694237","35.9352793"],["-121.4691737","35.9342087"],["-121.4684913","35.930958"],["-121.4679739","35.9295898"],["-121.466866","35.9267744"],["-121.4663811","35.9254859"],["-121.4661642","35.9246866"],["-121.4660977","35.9241363"],["-121.4660412","35.9235046"],["-121.4660561","35.922765"],["-121.4661638","35.9219945"],["-121.466288","35.9214276"],["-121.4664307","35.921003"],["-121.4666834","35.9203496"],["-121.4670613","35.9196754"],["-121.4677034","35.9187956"],["-121.468223","35.9181123"],["-121.4687822","35.917301"],["-121.4689272","35.9170439"],["-121.4690532","35.9167828"],["-121.46912","35.9166177"],["-121.4691869","35.9163796"],["-121.469219","35.9161485"],["-121.4692185","35.9157745"],["-121.4691979","35.9154505"],["-121.4691314","35.9151319"],["-121.4690358","35.9148074"],["-121.468848","35.914489"],["-121.4677288","35.9130329"],["-121.4638986","35.908389"],["-121.4626726","35.9068851"],["-121.4625368","35.9065696"],["-121.4623812","35.9061905"],["-121.4622827","35.9058351"],["-121.4622359","35.905697"],["-121.4621626","35.9055592"],["-121.4620579","35.9054129"],["-121.4616462","35.9051356"],["-121.4614052","35.9049177"],["-121.4612342","35.9047305"],["-121.4611362","35.9045369"],["-121.4610886","35.9043811"],["-121.4610914","35.9042459"],["-121.4611028","35.9040536"],["-121.4611471","35.9038874"],["-121.4612539","35.9035912"],["-121.4614102","35.903208"],["-121.4615768","35.9029006"],["-121.4623268","35.9017371"],["-121.4626652","35.9011907"],["-121.4627221","35.9010511"],["-121.4627684","35.9008821"],["-121.4627868","35.9007561"],["-121.4627817","35.9005842"],["-121.4627497","35.9004407"],["-121.4626876","35.9002366"],["-121.4625461","35.9000183"],["-121.4623592","35.8998015"],["-121.46205","35.8995952"],["-121.4616802","35.8994176"],["-121.4612499","35.8992356"],["-121.460898","35.8990431"],["-121.4606203","35.8988182"],["-121.4604027","35.8986093"],["-121.4602244","35.8983705"],["-121.4600576","35.8981077"],["-121.459927","35.8978236"],["-121.4598263","35.8974474"],["-121.4597282","35.8970079"],["-121.4596746","35.8966905"],["-121.4597093","35.8963785"],["-121.4597526","35.8960497"],["-121.4598753","35.8957072"],["-121.4601077","35.895432"],["-121.4602102","35.8952172"],["-121.4602915","35.8949684"],["-121.4603904","35.8945494"],["-121.4605059","35.893819"],["-121.4606808","35.8927374"],["-121.4606858","35.8922177"],["-121.4606841","35.8917789"],["-121.4606747","35.8913915"],["-121.4606882","35.8912045"],["-121.4607613","35.890872"],["-121.4608641","35.8905785"],["-121.4610252","35.8902888"],["-121.4611455","35.8899929"],["-121.4611913","35.8897471"],["-121.4611858","35.88949"],["-121.4611291","35.8892572"],["-121.4610395","35.8890746"],["-121.4607985","35.8887273"],["-121.4606198","35.888453"],["-121.460522","35.8881835"],["-121.4605161","35.8878652"],["-121.4605063","35.8875263"],["-121.4603476","35.887108"],["-121.4598514","35.8865771"],["-121.4561641","35.883408"],["-121.455429","35.8828779"],["-121.4549147","35.8826332"],["-121.45438","35.8824868"],["-121.4538672","35.8823605"],["-121.4532592","35.8822133"],["-121.4526448","35.8819835"],["-121.4522945","35.8818077"],["-121.4519834","35.8815757"],["-121.4500789","35.8798377"],["-121.4476758","35.877723"],["-121.4472301","35.8773016"],["-121.4465885","35.8767061"],["-121.4464152","35.8765107"],["-121.4457974","35.8757341"],["-121.4456006","35.8754704"],["-121.445433","35.8751734"],["-121.4451221","35.8745666"],["-121.4442994","35.8727364"],["-121.4440463","35.8723362"],["-121.4437537","35.8720639"],["-121.4434019","35.8718468"],["-121.4428621","35.8716703"],["-121.4408098","35.8712388"],["-121.4398908","35.8710279"],["-121.4394616","35.8708875"],["-121.4390669","35.8706581"],["-121.4386128","35.870239"],["-121.4369917","35.8686113"],["-121.4362517","35.8678335"],["-121.4359783","35.8674755"],["-121.4356962","35.8668634"],["-121.435506","35.8666336"],["-121.435214","35.8664699"],["-121.4347021","35.8663186"],["-121.4340046","35.8660214"],["-121.432927","35.8653099"],["-121.4326352","35.8650063"],["-121.4322994","35.8646404"],["-121.4314499","35.8639479"],["-121.4294102","35.8631985"],["-121.4290186","35.8629509"],["-121.4286537","35.8624815"],["-121.4282463","35.8621086"],["-121.4277448","35.8618022"],["-121.4270182","35.8614241"],["-121.4263458","35.8610811"],["-121.4259193","35.8608195"],["-121.4254421","35.8604965"],["-121.4249482","35.8602261"],["-121.4246339","35.8600764"],["-121.4242912","35.8599546"],["-121.4237376","35.8598297"],["-121.4230609","35.8597016"],["-121.4223169","35.8595614"],["-121.4216876","35.8594324"],["-121.4211154","35.8592859"],["-121.4204895","35.8591656"],["-121.4185732","35.8588721"],["-121.4178446","35.858721"],["-121.4172111","35.8585921"],["-121.4167146","35.85848"],["-121.4163485","35.8583537"],["-121.415886","35.8581597"],["-121.4150033","35.8577349"],["-121.4142849","35.8572704"],["-121.4129545","35.8563188"],["-121.412477","35.8559401"],["-121.4122126","35.8556768"],["-121.4119805","35.8554233"],["-121.4118316","35.8552047"],["-121.4116984","35.85499"],["-121.41159","35.8547052"],["-121.4115434","35.8541728"],["-121.4115226","35.8540088"],["-121.4114302","35.8538603"],["-121.4112698","35.853707"],["-121.4110645","35.8535897"],["-121.410754","35.8534389"],["-121.4104189","35.8532325"],["-121.4101488","35.8529628"],["-121.4099785","35.8526889"],["-121.4098407","35.8523264"],["-121.4095338","35.8511104"],["-121.4094127","35.8508265"],["-121.4092857","35.8506652"],["-121.4090496","35.8505193"],["-121.4085996","35.8502802"],["-121.4083064","35.8501072"],["-121.4081523","35.8499609"],["-121.4078349","35.8496153"],["-121.4076137","35.8493117"],["-121.4073155","35.848788"],["-121.407196","35.8483466"],["-121.4070845","35.8469791"],["-121.407013","35.8466616"],["-121.4068571","35.8464766"],["-121.406629","35.8463332"],["-121.4062949","35.8462439"],["-121.4060126","35.8462365"],["-121.4057485","35.8461837"],["-121.4055722","35.8460466"],["-121.4055135","35.8458801"],["-121.4054985","35.8456832"],["-121.4055774","35.8451346"],["-121.4055793","35.844853"],["-121.4055083","35.8446572"],["-121.4053833","35.8444991"],["-121.4052103","35.8443313"],["-121.4049886","35.8441854"],["-121.4045759","35.8440261"],["-121.4043231","35.8439168"],["-121.4040799","35.8437744"],["-121.4037781","35.8435139"],["-121.4034133","35.8432617"],["-121.4017284","35.8424027"],["-121.4014236","35.8422242"],["-121.4012279","35.8420636"],["-121.4010414","35.8418265"],["-121.4008844","35.8414224"],["-121.4008715","35.8411053"],["-121.4010317","35.8404498"],["-121.4010189","35.8401776"],["-121.4008918","35.8399899"],["-121.4007198","35.8398911"],["-121.4005319","35.839828"],["-121.4001697","35.8397643"],["-121.3999053","35.8396734"],["-121.399548","35.8393631"],["-121.3981588","35.8377137"],["-121.3978806","35.8374624"],["-121.3975991","35.8372459"],["-121.3972638","35.837075"],["-121.3967201","35.8368799"],["-121.3964226","35.8367648"],["-121.3962097","35.8366455"],["-121.3959744","35.8364821"],["-121.3952906","35.8359294"],["-121.3950204","35.8357928"],["-121.3947419","35.8357222"],["-121.3944372","35.8357164"],["-121.3940966","35.8357873"],["-121.3932755","35.8361646"],["-121.3928422","35.8363067"],["-121.3924135","35.8363154"],["-121.3921712","35.8362498"],["-121.3920016","35.8361264"],["-121.3919347","35.8359434"],["-121.391977","35.8357574"],["-121.3921541","35.8355267"],["-121.3924394","35.8352723"],["-121.3929354","35.834873"],["-121.3930761","35.8346911"],["-121.393105","35.8345118"],["-121.3930507","35.8342732"],["-121.3929039","35.8340657"],["-121.3926305","35.8339215"],["-121.3923237","35.8338255"],["-121.3920504","35.8336846"],["-121.3919171","35.8334821"],["-121.391882","35.8332331"],["-121.3919502","35.8328843"],["-121.3919637","35.8326365"],["-121.3919101","35.8324388"],["-121.3918213","35.8322926"],["-121.3916314","35.8321274"],["-121.3914359","35.8319992"],["-121.3912202","35.83182"],["-121.3909753","35.8316114"],["-121.3906917","35.8314012"],["-121.3904366","35.8312702"],["-121.3900626","35.8311464"],["-121.3898086","35.8310227"],["-121.3896473","35.8308718"],["-121.3894807","35.8305939"],["-121.3891646","35.8298948"],["-121.3889304","35.8295529"],["-121.3887046","35.8293326"],["-121.3884433","35.8291323"],["-121.3879668","35.8288464"],["-121.3874957","35.8285745"],["-121.3873028","35.8284255"],["-121.3871376","35.8282793"],["-121.3869144","35.8280682"],["-121.3866463","35.8277651"],["-121.3864197","35.8274297"],["-121.3862128","35.8270801"],["-121.3860142","35.8266711"],["-121.3858403","35.8263877"],["-121.3855915","35.8261885"],["-121.3853526","35.8260374"],["-121.3850691","35.8259264"],["-121.3842181","35.8257362"],["-121.3836197","35.8256651"],["-121.3830141","35.8256703"],["-121.382732","35.8256452"],["-121.3824866","35.8255417"],["-121.3812415","35.8245928"],["-121.3809898","35.8243698"],["-121.3808112","35.8240878"],["-121.3803808","35.8234846"],["-121.3801279","35.8232438"],["-121.3798503","35.8230801"],["-121.379611","35.8229937"],["-121.379354","35.8229354"],["-121.3790194","35.8229293"],["-121.3786588","35.8229551"],["-121.3783632","35.8229392"],["-121.3780772","35.8228649"],["-121.3778451","35.822726"],["-121.3777024","35.8225813"],["-121.3776424","35.8223375"],["-121.377526","35.8214983"],["-121.3773927","35.8212394"],["-121.3771763","35.8210832"],["-121.3769654","35.8210335"],["-121.3767369","35.8210372"],["-121.3764586","35.82113"],["-121.3762921","35.8212678"],["-121.3761187","35.8215239"],["-121.3759406","35.8216927"],["-121.3757151","35.821804"],["-121.3755359","35.8218371"],["-121.3753394","35.8218518"],["-121.375025","35.8218436"],["-121.374791","35.8218176"],["-121.3746153","35.8217796"],["-121.3743666","35.8216711"],["-121.374221","35.8215439"],["-121.3741061","35.821354"],["-121.3740586","35.8211491"],["-121.3741044","35.82089"],["-121.3742906","35.8205467"],["-121.3744685","35.8201883"],["-121.3745157","35.8199139"],["-121.3744271","35.8197012"],["-121.3742638","35.8195323"],["-121.3740467","35.8193648"],["-121.3738609","35.8191796"],["-121.3738026","35.819017"],["-121.3737832","35.8188407"],["-121.3738692","35.8185183"],["-121.3739278","35.8181529"],["-121.3738747","35.8179616"],["-121.373809","35.8178353"],["-121.3736259","35.8177032"],["-121.3731928","35.8175877"],["-121.3716719","35.8174911"],["-121.3712147","35.8174201"],["-121.3708796","35.8172903"],["-121.3705704","35.8170946"],["-121.3702116","35.8167164"],["-121.3700564","35.8163851"],["-121.3698712","35.8147637"],["-121.3697762","35.8144496"],["-121.3696741","35.8143247"],["-121.3695099","35.8142353"],["-121.3692611","35.8141427"],["-121.3687201","35.8140693"],["-121.3680196","35.8140031"],["-121.3674314","35.8139269"],["-121.3670706","35.8138117"],["-121.3667453","35.8136325"],["-121.3665059","35.8133986"],["-121.3663608","35.8130968"],["-121.3663","35.812669"],["-121.3663007","35.8122448"],["-121.3662587","35.8120176"],["-121.3661629","35.8118737"],["-121.3659404","35.8116938"],["-121.3656739","35.8115417"],["-121.3654363","35.8114804"],["-121.3651786","35.811458"],["-121.3649282","35.8115064"],["-121.3645151","35.8116006"],["-121.3641152","35.8116664"],["-121.3637547","35.811648"],["-121.3630606","35.811561"],["-121.3626616","35.8115296"],["-121.3624032","35.8115415"],["-121.3621567","35.8116046"],["-121.3619852","35.8117185"],["-121.3618354","35.8119066"],["-121.3617288","35.8121656"],["-121.3616188","35.812635"],["-121.3615012","35.8129376"],["-121.3613985","35.8130967"],["-121.361294","35.8132679"],["-121.3611892","35.8135501"],["-121.3610571","35.8137686"],["-121.3608589","35.8139495"],["-121.3607135","35.8140675"],["-121.3605426","35.8141406"],["-121.3603562","35.8142462"],["-121.3600301","35.8145162"],["-121.3596429","35.8149832"],["-121.3592106","35.8155808"],["-121.3590081","35.8157057"],["-121.3588316","35.815717"],["-121.3586956","35.8156837"],["-121.3586152","35.8156221"],["-121.3585842","35.8155443"],["-121.3585975","35.8152813"],["-121.3587015","35.8150691"],["-121.3588061","35.8148558"],["-121.3588735","35.8145384"],["-121.3588865","35.8142163"],["-121.3588374","35.8133655"],["-121.3586286","35.8119876"],["-121.3586326","35.8117206"],["-121.3587657","35.8114896"],["-121.3588843","35.8113076"],["-121.3589321","35.811127"],["-121.3589277","35.8109772"],["-121.3590106","35.8107395"],["-121.3595291","35.810067"],["-121.3598868","35.8096824"],["-121.360182","35.8094961"],["-121.3604126","35.8093904"],["-121.3606413","35.8093261"],["-121.3607545","35.8092657"],["-121.3608153","35.8091553"],["-121.3607896","35.8089555"],["-121.3606871","35.8087325"],["-121.3605429","35.8085683"],["-121.3603088","35.8084304"],["-121.3600006","35.8083512"],["-121.3597176","35.8082529"],["-121.3594432","35.8080674"],["-121.359294","35.8079155"],["-121.3590539","35.8077878"],["-121.358603","35.807682"],["-121.358276","35.8075471"],["-121.3578305","35.8072578"],["-121.3573892","35.8070397"],["-121.3570098","35.8069031"],["-121.3567747","35.8067784"],["-121.3564731","35.8063434"],["-121.3562907","35.806162"],["-121.3561053","35.8060981"],["-121.3551555","35.8059124"],["-121.3546273","35.8059375"],["-121.3541075","35.8059628"],["-121.3536392","35.8059805"],["-121.3533713","35.8059375"],["-121.3531257","35.8058345"],["-121.3528307","35.8056349"],["-121.3524059","35.8051897"],["-121.3523559","35.8050937"],["-121.3523383","35.8050299"],["-121.352326","35.8049329"],["-121.3523221","35.8048242"],["-121.3523028","35.8046417"],["-121.3522788","35.8045483"],["-121.3522285","35.8044413"],["-121.3519114","35.804048"],["-121.3516421","35.803704"],["-121.3515642","35.803614"],["-121.3514886","35.8035574"],["-121.3513955","35.8035259"],["-121.3512963","35.8035129"],["-121.3511955","35.8035082"],["-121.3510803","35.8035348"],["-121.3507982","35.8036804"],["-121.3504302","35.803872"],["-121.3500518","35.8041127"],["-121.3499768","35.8041478"],["-121.3499075","35.8041624"],["-121.3498513","35.8041636"],["-121.3497936","35.8041606"],["-121.3497378","35.8041503"],["-121.3496693","35.8041255"],["-121.3496152","35.8040964"],["-121.3495687","35.8040603"],["-121.3495257","35.8040119"],["-121.3494914","35.8039576"],["-121.3494728","35.8039015"],["-121.3494683","35.8038586"],["-121.3494737","35.8038031"],["-121.3494881","35.8037351"],["-121.3495005","35.8036769"],["-121.3495037","35.8036248"],["-121.3494993","35.8035702"],["-121.3494815","35.8035107"],["-121.3494553","35.8034514"],["-121.3494241","35.8033866"],["-121.3493822","35.8033284"],["-121.3493143","35.8032693"],["-121.349208","35.8031995"],["-121.3490853","35.8031245"],["-121.3490335","35.8030878"],["-121.3489967","35.8030499"],["-121.3489678","35.803005"],["-121.3489512","35.802955"],["-121.3489545","35.8029045"],["-121.3489639","35.8028508"],["-121.348991","35.8027962"],["-121.3490433","35.8027057"],["-121.349101","35.8026072"],["-121.349134","35.8025365"],["-121.3491481","35.802461"],["-121.3491464","35.802412"],["-121.3491362","35.8023643"],["-121.3491142","35.8023118"],["-121.3490706","35.8022354"],["-121.3488852","35.8019319"],["-121.3488254","35.8018137"],["-121.3487081","35.8015502"],["-121.3486586","35.8014231"],["-121.3486002","35.8013201"],["-121.3485515","35.8012509"],["-121.3484891","35.8011967"],["-121.3484067","35.8011395"],["-121.3483123","35.8010655"],["-121.3481744","35.8009471"],["-121.3478945","35.8006523"],["-121.3477279","35.8003814"],["-121.34768","35.8001862"],["-121.3476583","35.7998697"],["-121.3477004","35.7994147"],["-121.347752","35.7990111"],["-121.3477668","35.7988498"],["-121.34775","35.7987132"],["-121.3476851","35.798633"],["-121.3475871","35.7985789"],["-121.3474615","35.7985614"],["-121.3473379","35.7985732"],["-121.3472111","35.7986114"],["-121.3470643","35.7986586"],["-121.3469043","35.7987362"],["-121.3468112","35.7987846"],["-121.346748","35.7988398"],["-121.3467037","35.7988951"],["-121.3466574","35.7989724"],["-121.3465764","35.799146"],["-121.3465221","35.7992087"],["-121.3464411","35.7992524"],["-121.3463703","35.7992695"],["-121.3462712","35.7992561"],["-121.3461971","35.7992222"],["-121.3461369","35.7991403"],["-121.3460646","35.7988682"],["-121.346043","35.7986543"],["-121.3460788","35.7984268"],["-121.3461041","35.7983225"],["-121.3461974","35.7981705"],["-121.3466099","35.7976099"],["-121.3466882","35.7974767"],["-121.346723","35.797358"],["-121.3467496","35.7972565"],["-121.3467478","35.7971273"],["-121.3467086","35.7970348"],["-121.3465081","35.7967512"],["-121.3462668","35.7965703"],["-121.3459943","35.7963992"],["-121.3458639","35.7962811"],["-121.3457736","35.7961634"],["-121.3456633","35.7959495"],["-121.3454446","35.7955988"],["-121.3452331","35.7952022"],["-121.3451583","35.7951123"],["-121.3451168","35.7950456"],["-121.345027","35.7949449"],["-121.344962","35.7948914"],["-121.3448662","35.7948444"],["-121.3447134","35.7948119"],["-121.3441851","35.7948571"],["-121.3440328","35.7948431"],["-121.3438982","35.7948154"],["-121.3437859","35.7947858"],["-121.3435576","35.7946903"],["-121.3430207","35.7944515"],["-121.3427282","35.7943321"],["-121.342529","35.7942605"],["-121.3424306","35.7942358"],["-121.3423275","35.7942279"],["-121.342244","35.7942365"],["-121.3421565","35.7942645"],["-121.342008","35.7943347"],["-121.3419206","35.7943617"],["-121.341841","35.7943633"],["-121.3417732","35.7943524"],["-121.34173","35.7943304"],["-121.3416912","35.7942968"],["-121.3416705","35.7942589"],["-121.3416649","35.7942064"],["-121.3416781","35.794153"],["-121.3417235","35.794038"],["-121.3417725","35.7939156"],["-121.3417981","35.7938016"],["-121.3417867","35.7936673"],["-121.3417595","35.7934994"],["-121.3417229","35.7933316"],["-121.3416471","35.7931614"],["-121.3415311","35.7930202"],["-121.3414149","35.7929629"],["-121.3412684","35.7929082"],["-121.3411354","35.7928573"],["-121.340992","35.7927926"],["-121.3408503","35.7927071"],["-121.3405897","35.7924738"],["-121.3403578","35.7922343"],["-121.3401627","35.7919654"],["-121.339839","35.7914467"],["-121.3395298","35.7909829"],["-121.3394841","35.7908871"],["-121.3394555","35.7907436"],["-121.3394542","35.7905606"],["-121.3394063","35.7903782"],["-121.3389568","35.7895774"],["-121.338735","35.7893017"],["-121.3384512","35.7889701"],["-121.3382525","35.788794"],["-121.3380793","35.7886553"],["-121.3378949","35.7884863"],["-121.3377182","35.7883578"],["-121.3376149","35.7883056"],["-121.3374795","35.7882865"],["-121.3372855","35.7882997"],["-121.3371431","35.7883538"],["-121.3369961","35.7884225"],["-121.336854","35.7884823"],["-121.336652","35.7885133"],["-121.3360762","35.7885305"],["-121.3358135","35.7885222"],["-121.3356014","35.788484"],["-121.3354899","35.7884239"],["-121.3354139","35.7883606"],["-121.3352688","35.788167"],["-121.335","35.7877583"],["-121.3348605","35.7875684"],["-121.334695","35.7874493"],["-121.3345611","35.7873895"],["-121.3344394","35.7873107"],["-121.3343312","35.7872055"],["-121.3342027","35.7870431"],["-121.3341342","35.7868831"],["-121.334106","35.7867502"],["-121.3340748","35.7863679"],["-121.334055","35.7861119"],["-121.3340323","35.7858744"],["-121.333994","35.7857855"],["-121.3339488","35.7857272"],["-121.3338873","35.7856851"],["-121.3336004","35.7855773"],["-121.3334841","35.7855104"],["-121.3333765","35.7854054"],["-121.3332637","35.7852761"],["-121.3331543","35.7850867"],["-121.3330984","35.7849014"],["-121.3330605","35.7846306"],["-121.3329959","35.7845097"],["-121.3329232","35.7844167"],["-121.3328372","35.7843415"],["-121.3327661","35.7842942"],["-121.3326404","35.7842064"],["-121.332467","35.7841453"],["-121.3322922","35.7840975"],["-121.3321136","35.7840059"],["-121.331952","35.7838489"],["-121.3318314","35.7837663"],["-121.331249","35.7834401"],["-121.3309974","35.7832884"],["-121.3308777","35.7832053"],["-121.3306955","35.783081"],["-121.3304347","35.7828832"],["-121.3300897","35.7826401"],["-121.3298142","35.7824756"],["-121.3296325","35.7823619"],["-121.329556","35.7822894"],["-121.3294833","35.7822014"],["-121.3294397","35.7821129"],["-121.329415","35.7820225"],["-121.3294071","35.7819441"],["-121.3294209","35.7817679"],["-121.3294583","35.7814748"],["-121.3295104","35.7811864"],["-121.3295563","35.7809212"],["-121.3295712","35.7808399"],["-121.3295862","35.780714"],["-121.3295879","35.7805349"],["-121.3295523","35.7802697"],["-121.3294598","35.7799728"],["-121.3292012","35.779306"],["-121.329082","35.7790632"],["-121.3289237","35.7787801"],["-121.3286004","35.7782635"],["-121.328455","35.7780443"],["-121.3284004","35.7779413"],["-121.3282121","35.7776184"],["-121.3280789","35.7773508"],["-121.327937","35.7770568"],["-121.3277868","35.7767104"],["-121.3275745","35.7761918"],["-121.3274711","35.7759928"],["-121.3273363","35.7757827"],["-121.3270399","35.7754717"],["-121.3268101","35.7752457"],["-121.3265707","35.77502"],["-121.3263744","35.7747908"],["-121.326193","35.7745401"],["-121.3260842","35.7743563"],["-121.3260021","35.7741214"],["-121.3259394","35.7737945"],["-121.325885","35.7736611"],["-121.3258196","35.773555"],["-121.3257749","35.7735118"],["-121.3256788","35.773462"],["-121.3253811","35.7733384"],["-121.3252496","35.7732638"],["-121.3251948","35.7732161"],["-121.3251582","35.7731687"],["-121.3251181","35.7730935"],["-121.3251011","35.7729714"],["-121.3250851","35.7727079"],["-121.32505","35.7725778"],["-121.3249975","35.7724744"],["-121.3248835","35.7723475"],["-121.3245312","35.7720261"],["-121.3243909","35.7718818"],["-121.3243354","35.7718031"],["-121.3242938","35.7717347"],["-121.3242747","35.7716858"],["-121.324264","35.7716192"],["-121.324152","35.7710681"],["-121.3240293","35.7708633"],["-121.3239309","35.7707327"],["-121.3238476","35.7706255"],["-121.3237249","35.7704678"],["-121.323519","35.7699688"],["-121.3234256","35.7697865"],["-121.3233505","35.7696835"],["-121.3232305","35.769548"],["-121.323026","35.7693581"],["-121.3228876","35.7692569"],["-121.3228379","35.7692347"],["-121.3227911","35.7692254"],["-121.322741","35.7692233"],["-121.3226942","35.7692275"],["-121.32263","35.7692535"],["-121.322566","35.7692932"],["-121.3224332","35.7693742"],["-121.3223268","35.7694269"],["-121.3222041","35.7694674"],["-121.3220435","35.7695331"],["-121.321937","35.7696039"],["-121.3218888","35.7696455"],["-121.3218438","35.7696809"],["-121.3218007","35.7697052"],["-121.321757","35.7697118"],["-121.3217124","35.7697135"],["-121.3216555","35.7697098"],["-121.32161","35.7697043"],["-121.3215665","35.7696874"],["-121.321525","35.7696695"],["-121.3214841","35.7696403"],["-121.3214538","35.7696002"],["-121.3214345","35.7695631"],["-121.3214249","35.7695299"],["-121.3214297","35.7694772"],["-121.3214719","35.769405"],["-121.3215712","35.7692956"],["-121.3217176","35.7691463"],["-121.3219018","35.7689128"],["-121.3219751","35.7687906"],["-121.3220373","35.7686619"],["-121.3220801","35.768499"],["-121.3221285","35.768248"],["-121.3221518","35.7681616"],["-121.3221844","35.7680886"],["-121.3222334","35.7680337"],["-121.3223184","35.7679564"],["-121.3224623","35.7678353"],["-121.3225743","35.7676966"],["-121.3226531","35.7674756"],["-121.322702","35.7672499"],["-121.3227151","35.7671337"],["-121.3227144","35.7670742"],["-121.322704","35.7670022"],["-121.322685","35.7669258"],["-121.3226613","35.7668623"],["-121.3226212","35.7668054"],["-121.3225828","35.7667594"],["-121.3225307","35.766717"],["-121.3224675","35.7666729"],["-121.3224002","35.7666328"],["-121.3220795","35.7664931"],["-121.3217949","35.7663771"],["-121.3216676","35.7663084"],["-121.3211962","35.7659706"],["-121.3207759","35.7656633"],["-121.3201391","35.7651941"],["-121.3200085","35.7650891"],["-121.3199132","35.7650038"],["-121.3197494","35.7648391"],["-121.3195631","35.7646291"],["-121.3194016","35.7644173"],["-121.3192465","35.7641479"],["-121.3191171","35.763889"],["-121.3189624","35.7634925"],["-121.3188784","35.7632046"],["-121.318856","35.7629565"],["-121.318878","35.7627414"],["-121.3189609","35.7625426"],["-121.3191244","35.7623198"],["-121.3192538","35.7621799"],["-121.3194092","35.7620664"],["-121.3195425","35.7619965"],["-121.3196744","35.7619526"],["-121.31988","35.7618975"],["-121.3201893","35.7618295"],["-121.3205454","35.7617354"],["-121.3207393","35.7616495"],["-121.3208935","35.7615634"],["-121.3210516","35.7614492"],["-121.3212397","35.7612867"],["-121.3213549","35.7611455"],["-121.3214477","35.7609779"],["-121.3215247","35.7607338"],["-121.321542","35.7606108"],["-121.3215477","35.7604385"],["-121.3215351","35.7603108"],["-121.3214808","35.7600817"],["-121.3214264","35.7599504"],["-121.3213633","35.7598409"],["-121.3212972","35.7597433"],["-121.3212134","35.759643"],["-121.3211177","35.7595539"],["-121.3209998","35.7594584"],["-121.3205909","35.7591929"],["-121.318357","35.7578198"],["-121.3174732","35.7573066"],["-121.3164691","35.7567631"],["-121.3162635","35.7566395"],["-121.3160705","35.7565014"],["-121.3157968","35.7562828"],["-121.3148689","35.7555246"],["-121.3135534","35.7544574"],["-121.3126021","35.7536818"],["-121.3123816","35.7534701"],["-121.3122072","35.7532504"],["-121.3120483","35.7530208"],["-121.3119438","35.7528107"],["-121.3118634","35.7526237"],["-121.311794","35.7524031"],["-121.3117398","35.7521153"],["-121.3117209","35.7516146"],["-121.311752","35.7508623"],["-121.3117625","35.7499419"],["-121.3117533","35.7493856"],["-121.3117616","35.7491145"],["-121.3118421","35.7482775"],["-121.3119075","35.7478158"],["-121.3120101","35.7471994"],["-121.314626","35.7287392"],["-121.3147529","35.7277323"],["-121.3147491","35.727459"],["-121.3147315","35.7273298"],["-121.3146857","35.7271702"],["-121.3146103","35.7270063"],["-121.3144445","35.726761"],["-121.3140835","35.726304"],["-121.3139075","35.7260899"],["-121.3137832","35.7259428"],["-121.3136698","35.7257786"],["-121.3135414","35.7254674"],["-121.3134577","35.7252973"],["-121.3133801","35.7251571"],["-121.3132648","35.7250009"],["-121.3130817","35.724833"],["-121.3129007","35.7246934"],["-121.3118348","35.7239319"],["-121.3113994","35.7236136"],["-121.3111495","35.7234146"],["-121.3108536","35.7231602"],["-121.310537","35.7228178"],["-121.3102694","35.7225143"],["-121.310052","35.722236"],["-121.3090533","35.7205759"],["-121.3085304","35.7196868"],["-121.3079632","35.718743"],["-121.3067669","35.7167801"],["-121.306442","35.7162317"],["-121.304256","35.7125113"],["-121.3039433","35.7119172"],["-121.3038134","35.7116188"],["-121.3037258","35.7113197"],["-121.303641","35.7107184"],["-121.3036181","35.7102207"],["-121.3036262","35.710004"],["-121.3036875","35.7096494"],["-121.3037752","35.7092692"],["-121.3040585","35.7081057"],["-121.3043924","35.7063221"],["-121.3044182","35.7059399"],["-121.3044277","35.7055083"],["-121.3042614","35.7046715"],["-121.3039498","35.7037939"],["-121.3035211","35.7030413"],["-121.3029475","35.7024134"],["-121.3023315","35.7018675"],["-121.3012932","35.70123"],["-121.2994631","35.7004866"],["-121.2952413","35.698854"],["-121.2943115","35.6983877"],["-121.2934787","35.6977726"],["-121.2925795","35.6968276"],["-121.2899003","35.6938576"],["-121.2887392","35.6925618"],["-121.2881816","35.6919233"],["-121.2880448","35.6917597"],["-121.2876338","35.6913031"],["-121.2872468","35.6908076"],["-121.2869489","35.6901262"],["-121.2868752","35.6898982"],["-121.286777","35.6895076"],["-121.286739","35.6888823"],["-121.2868347","35.688296"],["-121.2869302","35.6876536"],["-121.2868973","35.6871383"],["-121.2867729","35.6866168"],["-121.2866213","35.6862809"],["-121.2864207","35.6859332"],["-121.2859075","35.685301"],["-121.2854867","35.6847757"],["-121.2851927","35.6842719"],["-121.2850443","35.68385"],["-121.2849386","35.6834185"],["-121.2848995","35.6830392"],["-121.2849079","35.6825863"],["-121.2849581","35.681249"],["-121.2849947","35.6786429"],["-121.2848619","35.6779321"],["-121.28465","35.6771065"],["-121.2842766","35.6763303"],["-121.2838791","35.675643"],["-121.2832966","35.6748917"],["-121.2830707","35.6745788"],["-121.2807519","35.6724004"],["-121.2797899","35.6715192"],["-121.2789844","35.6707978"],["-121.2783105","35.6702086"],["-121.2779388","35.670016"],["-121.2766002","35.6694907"],["-121.2750532","35.668906"],["-121.2736482","35.668398"],["-121.2723431","35.6679267"],["-121.2711733","35.6675136"],["-121.2700467","35.6672211"],["-121.2678269","35.6667458"],["-121.2666967","35.6664821"],["-121.2660435","35.6662498"],["-121.2632747","35.6651608"],["-121.2627108","35.6649507"],["-121.2622768","35.6648394"],["-121.2615541","35.6647576"],["-121.2609956","35.6647048"],["-121.2605486","35.6646269"],["-121.2599957","35.6644575"],["-121.2567546","35.6631554"],["-121.2560185","35.6626969"],["-121.2530113","35.660478"],["-121.2528363","35.6603042"],["-121.2525646","35.659961"],["-121.2523451","35.659656"],["-121.2519868","35.6592059"],["-121.2517646","35.658986"],["-121.2514686","35.6587184"],["-121.2509755","35.6584003"],["-121.2492992","35.6575639"],["-121.2464317","35.6561241"],["-121.2459487","35.6558563"],["-121.2453934","35.6555004"],["-121.2450709","35.6552279"],["-121.2445441","35.6548106"],["-121.2439788","35.6544466"],["-121.243428","35.6541619"],["-121.242909","35.6539619"],["-121.2424974","35.6538414"],["-121.2421647","35.6537629"],["-121.2418304","35.6537045"],["-121.2415406","35.6536721"],["-121.2410122","35.6536448"],["-121.2404377","35.6536534"],["-121.2398169","35.6537171"],["-121.2381321","35.6539147"],["-121.23765","35.6539537"],["-121.2371393","35.6539509"],["-121.2366888","35.6539266"],["-121.2363786","35.6538803"],["-121.2357956","35.6537558"],["-121.235251","35.6536074"],["-121.2339301","35.6531593"],["-121.2329794","35.6528433"],["-121.2321844","35.6526333"],["-121.2316619","35.6525336"],["-121.2310799","35.6524562"],["-121.2305634","35.6524257"],["-121.2300391","35.652418"],["-121.2295575","35.6524408"],["-121.2289216","35.6525052"],["-121.2228268","35.6531691"],["-121.2221688","35.6532298"],["-121.2216938","35.6532661"],["-121.2212923","35.6532673"],["-121.2206387","35.6532464"],["-121.2181863","35.6531621"],["-121.2172155","35.6531168"],["-121.2161224","35.6530264"],["-121.2152067","35.6529402"],["-121.2146261","35.6528718"],["-121.2139541","35.6527469"],["-121.2135426","35.652637"],["-121.2128721","35.6524051"],["-121.2122737","35.6521517"],["-121.2118936","35.6519761"],["-121.2114873","35.6517861"],["-121.2108355","35.6514977"],["-121.2104526","35.6513558"],["-121.2101993","35.6513033"],["-121.2098095","35.6512445"],["-121.2094703","35.6512349"],["-121.2091718","35.6512518"],["-121.2088965","35.651286"],["-121.2084915","35.6513832"],["-121.2074587","35.6516862"],["-121.2069568","35.6518182"],["-121.20661","35.6518764"],["-121.2062558","35.6519165"],["-121.2059838","35.6519346"],["-121.2058042","35.6519374"],["-121.2054954","35.6519149"],["-121.2051901","35.651879"],["-121.2048115","35.6518126"],["-121.2044996","35.6517286"],["-121.2036963","35.6514165"],["-121.1955698","35.6479683"],["-121.1918063","35.6463813"],["-121.1903125","35.6457882"],["-121.1836947","35.643192"],["-121.1829026","35.64286"],["-121.1825348","35.6427111"],["-121.1820143","35.6425092"],["-121.1812623","35.642218"],["-121.1809122","35.6420902"],["-121.1801706","35.6418486"],["-121.1793025","35.6416004"],["-121.1756042","35.6406887"],["-121.1748978","35.6404913"],["-121.1745988","35.640395"],["-121.1742857","35.6402766"],["-121.1739449","35.640141"],["-121.1692139","35.6379782"],["-121.1676523","35.6372442"],["-121.1670067","35.636939"],["-121.1665043","35.6366807"],["-121.1660926","35.6364353"],["-121.1657077","35.6361743"],["-121.1653347","35.6358641"],["-121.165012","35.6355684"],["-121.1646327","35.6351451"],["-121.1632545","35.6333637"],["-121.1627681","35.632757"],["-121.1624356","35.6323315"],["-121.1607623","35.6299625"],["-121.1592789","35.6280203"],["-121.1589028","35.6275353"],["-121.1582809","35.6268332"],["-121.1576374","35.626124"],["-121.1571703","35.6256668"],["-121.1568042","35.625308"],["-121.1560679","35.6244774"],["-121.1553109","35.6233861"],["-121.1546799","35.6224749"],["-121.1542603","35.6219135"],["-121.1539786","35.6215401"],["-121.1534127","35.620883"],["-121.1531242","35.6205895"],["-121.1520868","35.619624"],["-121.1510873","35.618825"],["-121.1503524","35.618289"],["-121.1498576","35.6178991"],["-121.148768","35.6169666"],["-121.1480182","35.616321"],["-121.1460449","35.6146585"],["-121.1456971","35.6143489"],["-121.144506","35.6132052"],["-121.136067","35.6060758"],["-121.1348887","35.6050766"],["-121.1306537","35.6014613"],["-121.129855","35.6007665"],["-121.1293133","35.6003083"],["-121.1288091","35.5998844"],["-121.1279624","35.5991642"],["-121.1275955","35.5988043"],["-121.1271075","35.5982679"],["-121.1268274","35.5979099"],["-121.1265868","35.5975412"],["-121.1263629","35.597156"],["-121.1261708","35.596764"],["-121.1250945","35.594232"],["-121.1248902","35.5936523"],["-121.1243043","35.5919202"],["-121.1241326","35.5914787"],["-121.1237271","35.5904796"],["-121.1233644","35.5896083"],["-121.1230392","35.5888333"],["-121.122829","35.5883293"],["-121.1226553","35.5879066"],["-121.1224422","35.5874256"],["-121.1222304","35.5870252"],["-121.1218912","35.5864824"],["-121.1215256","35.585971"],["-121.1211451","35.5855295"],["-121.1195996","35.5839032"],["-121.1186848","35.582927"],["-121.1183453","35.5825599"],["-121.1183004","35.5825118"],["-121.1180997","35.5823005"],["-121.1160639","35.5801692"],["-121.1147167","35.5787737"],["-121.1130737","35.5770294"],["-121.1127087","35.5766207"],["-121.1124963","35.5763555"],["-121.1123387","35.5761455"],["-121.1122421","35.5760141"],["-121.1120783","35.5756963"],["-121.1119239","35.575354"],["-121.1117836","35.5749544"],["-121.111499","35.5740535"],["-121.1113285","35.5735612"],["-121.1111516","35.573101"],["-121.1110253","35.5728344"],["-121.1108945","35.5726012"],["-121.1107209","35.5723214"],["-121.1105437","35.5720734"],["-121.11033","35.5718099"],["-121.1100065","35.5714754"],["-121.1095594","35.5711064"],["-121.109052","35.5707422"],["-121.1086006","35.5704705"],["-121.1081328","35.5702374"],["-121.1077337","35.5700795"],["-121.1074063","35.5699586"],["-121.1067554","35.569761"],["-121.1045182","35.5691195"],["-121.1039787","35.5689419"],["-121.1031864","35.568591"],["-121.1027213","35.5683593"],["-121.1019449","35.5679015"],["-121.1014911","35.567594"],["-121.1010441","35.5672689"],["-121.0992896","35.5658766"],["-121.0987365","35.5654303"],["-121.0980094","35.5648457"],["-121.0975035","35.5644215"],["-121.0972533","35.5641861"],["-121.0970514","35.5639819"],["-121.0968326","35.563764"],["-121.0965644","35.5634749"],["-121.0963856","35.5632455"],["-121.0958391","35.562404"],["-121.0951698","35.5612437"],["-121.0944239","35.5600039"],["-121.0939791","35.559237"],["-121.0936317","35.5586589"],["-121.0932995","35.5581203"],["-121.0930075","35.5576514"],["-121.0927294","35.5572708"],["-121.0924921","35.55699"],["-121.0922867","35.5567849"],["-121.0920168","35.5565482"],["-121.0917573","35.5563337"],["-121.0915067","35.5561432"],["-121.0911433","35.5559077"],["-121.0906115","35.5556015"],["-121.0902595","35.5554225"],["-121.0898973","35.5552772"],["-121.0894202","35.5551166"],["-121.0888517","35.554963"],["-121.0883137","35.5548679"],["-121.087834","35.5547989"],["-121.0873608","35.5547683"],["-121.0869094","35.5547708"],["-121.0863648","35.5548037"],["-121.0843902","35.5550473"],["-121.0832901","35.5552207"],["-121.0823441","35.5553669"],["-121.0813473","35.5555059"],["-121.0805936","35.5556172"],["-121.0799788","35.5556973"],["-121.0795996","35.5557185"],["-121.0792895","35.5557198"],["-121.0789101","35.5557031"],["-121.0785363","35.5556678"],["-121.0780819","35.5555891"],["-121.0774591","35.555448"],["-121.077032","35.555331"],["-121.0766842","35.5552146"],["-121.0763054","35.5550618"],["-121.0758717","35.5548597"],["-121.0754647","35.5546536"],["-121.0750472","35.5544103"],["-121.0744314","35.5539037"],["-121.0730975","35.5526767"],["-121.0726416","35.5522536"],["-121.0716097","35.5513288"],["-121.0708952","35.5506767"],["-121.0703534","35.550173"],["-121.0697864","35.5496726"],["-121.0691458","35.5491019"],["-121.068156","35.5481867"],["-121.0668871","35.5470194"],["-121.0651008","35.5453874"],["-121.0640981","35.5445165"],["-121.0637303","35.5442354"],["-121.0632922","35.5439411"],["-121.0626006","35.5435305"],["-121.0622745","35.5433518"],["-121.061835","35.5431308"],["-121.0610624","35.5427101"],["-121.0605377","35.5424247"],["-121.0596392","35.5419286"],["-121.0589134","35.5415005"],["-121.0582864","35.541042"],["-121.057581","35.540483"],["-121.0558538","35.5390899"],["-121.0542813","35.537826"],["-121.0538937","35.5375151"],["-121.053247","35.5369802"],["-121.0528683","35.536599"],["-121.0525554","35.5362613"],["-121.052296","35.535934"],["-121.051906","35.5353971"],["-121.050034","35.5326158"],["-121.0497961","35.5322932"],["-121.0494549","35.5318947"],["-121.0491817","35.5316009"],["-121.0488727","35.5312911"],["-121.0485645","35.5309807"],["-121.0481604","35.5305495"],["-121.0472899","35.5296598"],["-121.0462917","35.5286658"],["-121.0447961","35.527178"],["-121.0445327","35.5268398"],["-121.0442747","35.5264691"],["-121.0440197","35.5260179"],["-121.0430138","35.5240509"],["-121.0428469","35.5238033"],["-121.0426871","35.5235912"],["-121.0424518","35.5233185"],["-121.0422342","35.5230863"],["-121.0420319","35.5228971"],["-121.0418484","35.5227459"],["-121.0413113","35.5223471"],["-121.0405267","35.5218546"],["-121.0377068","35.520127"],["-121.0364409","35.5193394"],["-121.0357855","35.5189007"],["-121.0355502","35.5187045"],["-121.0345638","35.5176742"],["-121.0303803","35.5131967"],["-121.0296584","35.5124287"],["-121.0291587","35.5119276"],["-121.0284374","35.5113009"],["-121.0276992","35.5107394"],["-121.0268453","35.5101666"],["-121.0257471","35.5094699"],["-121.0253481","35.5092286"],["-121.0248679","35.5089373"],["-121.0246975","35.5088348"],["-121.0244749","35.5086855"],["-121.023698","35.5081855"],["-121.0225849","35.5075071"],["-121.0220804","35.5072161"],["-121.0213139","35.5067372"],["-121.0202707","35.506101"],["-121.0189561","35.5052974"],["-121.0178811","35.5046356"],["-121.0168886","35.5040046"],["-121.0159353","35.5033981"],["-121.0152972","35.5029826"],["-121.0146827","35.5025247"],["-121.014209","35.5021253"],["-121.0101447","35.4985104"],["-121.0087502","35.4974054"],["-121.0053914","35.4948677"],["-121.0050433","35.4946"],["-121.0046946","35.4942976"],["-121.0043693","35.4939339"],["-121.0041709","35.4936668"],["-121.0039777","35.493344"],["-121.0031283","35.4916258"],["-121.0028591","35.4911638"],["-121.0026261","35.4908604"],["-121.0021682","35.4903156"],["-120.9991912","35.4870442"],["-120.9991274","35.4869539"],["-120.9989623","35.4867373"],["-120.9985245","35.4860082"],["-120.9978416","35.4848396"],["-120.9976248","35.4844425"],["-120.9970841","35.4835388"],["-120.9964876","35.4824752"],["-120.9962802","35.4821566"],["-120.9960719","35.4818562"],["-120.9952264","35.4808822"],["-120.9949248","35.4805989"],["-120.9945677","35.4802958"],["-120.9940237","35.4798901"],["-120.993207","35.4793104"],["-120.9924516","35.4787666"],["-120.9918744","35.4783174"],["-120.9916637","35.4781291"],["-120.9914308","35.4778906"],["-120.991197","35.4776138"],["-120.9909051","35.4772235"],["-120.9905533","35.4766772"],["-120.9902755","35.4762225"],["-120.9900181","35.4758068"],["-120.9897808","35.4754882"],["-120.9895127","35.4751811"],["-120.9893163","35.4749794"],["-120.9890854","35.4747616"],["-120.9888517","35.4745652"],["-120.9885525","35.4743504"],["-120.9882347","35.4741513"],["-120.9879082","35.473977"],["-120.9874091","35.4737515"],["-120.9870238","35.4735977"],["-120.9866878","35.4734944"],["-120.9862261","35.473383"],["-120.9854907","35.4732351"],["-120.9847851","35.473107"],["-120.9840865","35.472975"],["-120.9837484","35.4728723"],["-120.983308","35.4727112"],["-120.9828864","35.472536"],["-120.9824318","35.4723131"],["-120.9820484","35.4721"],["-120.9814914","35.4717597"],["-120.9778799","35.4694064"],["-120.9756534","35.4677732"],["-120.9738907","35.4664387"],["-120.9730238","35.4658023"],["-120.9717032","35.4649721"],["-120.9682475","35.4629215"],["-120.9677879","35.4626409"],["-120.9567435","35.4561242"],["-120.9561628","35.455806"],["-120.9555133","35.4554983"],["-120.9547674","35.4551879"],["-120.9454118","35.4518393"],["-120.9438792","35.451314"],["-120.9432819","35.4511572"],["-120.9427175","35.451038"],["-120.9421384","35.4509372"],["-120.9414976","35.450839"],["-120.9408028","35.4507612"],["-120.9369964","35.4504001"],["-120.9358567","35.4502892"],["-120.9265502","35.4494263"],["-120.9255393","35.4493635"],["-120.9248008","35.4493635"],["-120.9240404","35.449394"],["-120.9234998","35.4494274"],["-120.9231668","35.4494205"],["-120.9219043","35.4495097"],["-120.9137671","35.4503896"],["-120.9136204","35.4504112"],["-120.913142","35.4505001"],["-120.9128233","35.4505783"],["-120.9123722","35.4507123"],["-120.9120825","35.4508127"],["-120.9119297","35.4508723"],["-120.9116476","35.4509914"],["-120.9115062","35.4510573"],["-120.9113782","35.4511199"],["-120.9111074","35.4512601"],["-120.9109777","35.4513327"],["-120.9108349","35.4514199"],["-120.9091823","35.452486"],["-120.9089111","35.4526353"],["-120.9083015","35.4528812"],["-120.9077957","35.4530458"],["-120.9074168","35.4531589"],["-120.9071059","35.4532252"],["-120.9066949","35.4532991"],["-120.9064575","35.4533282"],["-120.906178","35.4533605"],["-120.9058649","35.4533806"],["-120.9054986","35.4533952"],["-120.9051966","35.4533909"],["-120.9049127","35.4533772"],["-120.9048127","35.4533703"],["-120.9044431","35.4533332"],["-120.9040685","35.4532804"],["-120.9036043","35.4531822"],["-120.903214","35.4530754"],["-120.9027844","35.4529284"],["-120.9024122","35.4527748"],["-120.9021057","35.4526176"],["-120.9018057","35.4524482"],["-120.9011968","35.4520518"],["-120.9009989","35.4519096"],["-120.9007914","35.4517273"],["-120.9004059","35.4513683"],["-120.8989795","35.449877"],["-120.8972945","35.4480077"],["-120.897018","35.4477319"],["-120.8966917","35.4474328"],["-120.8964377","35.4472228"],["-120.8961482","35.4469998"],["-120.895693","35.4466875"],["-120.8949574","35.4462611"],["-120.8936506","35.4455318"],["-120.8931148","35.4452088"],["-120.8927924","35.4449659"],["-120.8924667","35.4446812"],["-120.8922007","35.4444228"],["-120.8919392","35.444126"],["-120.8917017","35.4438228"],["-120.8893266","35.440604"],["-120.8888655","35.4400151"],["-120.8883081","35.4392584"],["-120.8881423","35.4390145"],["-120.887906","35.4386306"],["-120.8877741","35.438393"],["-120.8876542","35.4381517"],["-120.8875109","35.4378296"],["-120.8869013","35.4363579"],["-120.8866876","35.4358349"],["-120.8859532","35.4339602"],["-120.8856558","35.4332219"],["-120.8855328","35.4329744"],["-120.8853528","35.4326746"],["-120.8850918","35.4322988"],["-120.8846046","35.4317161"],["-120.8823771","35.4292029"],["-120.8820668","35.4288571"],["-120.8817893","35.428545"],["-120.8815994","35.4283144"],["-120.8814911","35.428172"],["-120.8813524","35.4279823"],["-120.8809615","35.4274002"],["-120.8808307","35.4271807"],["-120.8795341","35.4249289"],["-120.8794483","35.424777"],["-120.878436","35.4229954"],["-120.8781469","35.4224103"],["-120.8777835","35.4216009"],["-120.8776347","35.421267"],["-120.8775201","35.4209929"],["-120.8772696","35.4204439"],["-120.8769294","35.4197388"],["-120.8766093","35.4191623"],["-120.875722","35.4176021"],["-120.8745629","35.4155589"],["-120.873771","35.4141487"],["-120.873465","35.413535"],["-120.8732294","35.4130311"],["-120.8730977","35.4127067"],["-120.8729281","35.4121719"],["-120.8726724","35.4112785"],["-120.8724311","35.4104027"],["-120.8722376","35.409705"],["-120.8720331","35.4091633"],["-120.8718828","35.4088572"],["-120.8717219","35.4085918"],["-120.8715628","35.4083636"],["-120.8712171","35.4079389"],["-120.8682231","35.4046267"],["-120.867671","35.4040349"],["-120.8669906","35.4034203"],["-120.8653733","35.4020308"],["-120.8650044","35.4016957"],["-120.8647516","35.40145"],["-120.8642796","35.4009506"],["-120.8638921","35.4005068"],["-120.8635582","35.4000871"],["-120.8631508","35.3995095"],["-120.8626143","35.3986612"],["-120.8624998","35.3984646"],["-120.8623548","35.3981938"],["-120.8622323","35.3979499"],["-120.8620941","35.3976411"],["-120.8620012","35.3974288"],["-120.8618608","35.3970862"],["-120.86126","35.3954961"],["-120.8610552","35.3949653"],["-120.8609721","35.3947499"],["-120.8607876","35.3942743"],["-120.8606931","35.3940192"],["-120.8604557","35.3933996"],["-120.8583147","35.3876979"],["-120.8570652","35.3844654"],["-120.8564311","35.3827215"],["-120.8560286","35.3814185"],["-120.8557649","35.3805595"],["-120.8551097","35.3783932"],["-120.8547411","35.3774527"],["-120.8544954","35.3768398"],["-120.8541101","35.376199"],["-120.853787","35.3757095"],["-120.8532573","35.3750142"],["-120.8530932","35.3748174"],["-120.8528557","35.3745617"],["-120.8526146","35.3743216"],["-120.8523532","35.3740947"],["-120.8519754","35.3738"],["-120.851698","35.373609"],["-120.8512186","35.3733402"],["-120.8467389","35.3711061"],["-120.8454005","35.3704029"],["-120.8401033","35.3674722"],["-120.8387738","35.3668912"],["-120.8384165","35.3667701"],["-120.8379552","35.3666359"],["-120.8374192","35.3665028"],["-120.8367108","35.3663623"],["-120.8200928","35.3636302"],["-120.8069705","35.3617826"],["-120.8063655","35.3616141"],["-120.8058641","35.3614559"],["-120.805637","35.361379"],["-120.8053358","35.3612624"],["-120.7977417","35.3581973"],["-120.7967841","35.3578665"],["-120.7827977","35.3541137"],["-120.7815071","35.3537681"],["-120.7779471","35.3528069"],["-120.7773777","35.3526231"],["-120.7769038","35.352446"],["-120.7764503","35.3522498"],["-120.7758533","35.3519529"],["-120.775597","35.3518094"],["-120.7752437","35.3515965"],["-120.7749006","35.351375"],["-120.7744642","35.3510464"],["-120.7655841","35.343733"],["-120.7644892","35.3428084"],["-120.764036","35.3423733"],["-120.7631579","35.3414596"],["-120.7610143","35.3392127"],["-120.7606492","35.3388402"],["-120.7605054","35.3386943"],["-120.7601175","35.3383484"],["-120.7596588","35.3379656"],["-120.7590682","35.3375221"],["-120.7566258","35.3359155"],["-120.7557511","35.3353072"],["-120.7549329","35.3347409"],["-120.7543888","35.3343592"],["-120.7538263","35.3340292"],["-120.7535333","35.333876"],["-120.7530536","35.3336518"],["-120.7526633","35.3334945"],["-120.7522118","35.3333379"],["-120.7517699","35.3332084"],["-120.7513563","35.3331049"],["-120.7508117","35.3330042"],["-120.7502982","35.3329383"],["-120.7497706","35.3328963"],["-120.7492419","35.3328803"],["-120.7485332","35.3329029"],["-120.7478027","35.3329765"],["-120.7469962","35.333114"],["-120.7462066","35.3332502"],["-120.7454807","35.3333485"],["-120.7449277","35.3333867"],["-120.7445766","35.3333877"],["-120.7440602","35.3333659"],["-120.7436421","35.3333334"],["-120.7432155","35.333268"],["-120.742713","35.3331483"],["-120.7369895","35.3315452"],["-120.735116","35.3310095"],["-120.7335629","35.3305658"],["-120.7327402","35.330309"],["-120.7322678","35.3301216"],["-120.7317937","35.3299094"],["-120.7313319","35.3296787"],["-120.730717","35.329337"],["-120.7304901","35.3291857"],["-120.7302641","35.3290316"],["-120.7297606","35.3286454"],["-120.7286734","35.3277106"],["-120.7268798","35.3261166"],["-120.726481","35.3257411"],["-120.7261618","35.3254504"],["-120.7258082","35.3251546"],["-120.7251761","35.3246602"],["-120.7247668","35.3243995"],["-120.7243858","35.3241744"],["-120.7239626","35.3239419"],["-120.7231967","35.3235959"],["-120.7147252","35.3202898"],["-120.7139767","35.3200337"],["-120.7134124","35.3198832"],["-120.7128888","35.3197841"],["-120.7123865","35.3197041"],["-120.7115425","35.3196056"],["-120.7110196","35.3195778"],["-120.710342","35.319575"],["-120.7094263","35.3196312"],["-120.7065913","35.3198637"],["-120.7057825","35.3199309"],["-120.7029739","35.3201671"],["-120.7020875","35.3202183"],["-120.7015862","35.3202293"],["-120.7009863","35.320222"],["-120.7002576","35.320173"],["-120.6995189","35.3200914"],["-120.698929","35.320007"],["-120.6984145","35.3199006"],["-120.6978793","35.3197726"],["-120.6970742","35.3195473"],["-120.6966351","35.3193973"],["-120.6962107","35.3192297"],["-120.6953786","35.318874"],["-120.6947274","35.3185484"],["-120.6942882","35.3182982"],["-120.6938155","35.3179922"],["-120.6932705","35.3176085"],["-120.6923646","35.3168318"],["-120.6917148","35.3161871"],["-120.6909255","35.3153481"],["-120.6902759","35.3146682"],["-120.6899622","35.3143644"],["-120.6896474","35.3140808"],["-120.6891843","35.3137248"],["-120.6886262","35.313341"],["-120.6878997","35.3129313"],["-120.686227","35.312075"],["-120.6853982","35.3115853"],["-120.6851107","35.3113768"],["-120.6849866","35.3112792"],["-120.6846828","35.3110503"],["-120.6843201","35.3107372"],["-120.6825105","35.309247"],["-120.6817957","35.3086652"],["-120.6797103","35.3069696"],["-120.6791502","35.3065055"],["-120.6789059","35.3062767"],["-120.6786466","35.3059957"],["-120.6783563","35.3056486"],["-120.6781336","35.3053563"],["-120.6779022","35.3050033"],["-120.6774834","35.3041921"],["-120.6765552","35.302226"],["-120.6761077","35.3012863"],["-120.6759396","35.3009427"],["-120.6757325","35.3005534"],["-120.6753362","35.2999395"],["-120.6749844","35.2994847"],["-120.6746319","35.2990693"],["-120.6740956","35.2985809"],["-120.6737928","35.2983098"],["-120.6733289","35.2979702"],["-120.6729191","35.297693"],["-120.672379","35.297364"],["-120.6705938","35.2964403"],["-120.6697666","35.2959223"],["-120.6695327","35.2957639"],["-120.6693843","35.2956495"],["-120.669195","35.2954948"],["-120.6689295","35.2952506"],["-120.6687749","35.2950875"],["-120.6686446","35.2949418"],["-120.6684802","35.2947325"],["-120.668261","35.2944314"],["-120.6681086","35.2941898"],["-120.6680371","35.2940457"],["-120.6679967","35.2939375"],["-120.6679494","35.2938363"],["-120.6678321","35.2935607"],["-120.6677421","35.2932966"],["-120.6676067","35.29288"],["-120.6674414","35.2923905"],["-120.6672848","35.2918021"],["-120.6671037","35.2912386"],["-120.6669673","35.290821"],["-120.6668692","35.2905132"],["-120.6666629","35.290169"],["-120.6662387","35.2896847"],["-120.6660978","35.2895926"],["-120.6642668","35.2874954"],["-120.6652482","35.2869131"],["-120.6653483","35.2868546"],["-120.6654602","35.2867881"],["-120.6655322","35.2867451"],["-120.6655763","35.2866875"],["-120.6655748","35.2866507"],["-120.6655602","35.2866072"],["-120.665417","35.2864402"],["-120.6653377","35.2863316"],["-120.6652259","35.2862035"],["-120.6652224","35.2861551"],["-120.6651978","35.2861112"],["-120.6651743","35.2860614"],["-120.6651589","35.2859943"],["-120.6651527","35.2859205"],["-120.6651624","35.28585"],["-120.6651794","35.2857865"],["-120.6652101","35.2857239"],["-120.6652483","35.2856624"],["-120.6653123","35.28559"],["-120.6653963","35.2855101"],["-120.6654207","35.2854121"],["-120.6660813","35.2848955"],["-120.6664394","35.2846109"],["-120.666725","35.2843661"],["-120.6669089","35.2842"],["-120.6672642","35.2838401"],["-120.6675759","35.2835006"],["-120.6677332","35.283314"],["-120.6680237","35.2829406"],["-120.6681809","35.2827168"],["-120.668317","35.2825113"],["-120.6684523","35.2822913"],["-120.6686125","35.2820026"],["-120.6687923","35.281637"],["-120.6697686","35.2794687"],["-120.6699476","35.2790306"],["-120.6701708","35.2783962"],["-120.6716091","35.2740815"],["-120.6729461","35.2700236"],["-120.6730445","35.2696837"],["-120.6731259","35.2693639"],["-120.6732377","35.2688343"],["-120.6732901","35.2685137"],["-120.6738125","35.2645186"],["-120.673854","35.2641391"],["-120.6738641","35.2639435"],["-120.6738693","35.2636755"],["-120.6738554","35.2633738"],["-120.6738349","35.2630848"],["-120.673802","35.2628486"],["-120.6735984","35.2616074"],["-120.6735707","35.2614405"],["-120.6735489","35.2611636"],["-120.6735452","35.2608856"],["-120.673551","35.2607353"],["-120.6735579","35.2605807"],["-120.6735701","35.2604002"],["-120.6735884","35.260214"],["-120.67362","35.2599867"],["-120.673683","35.2596633"],["-120.6737618","35.2593431"],["-120.6738698","35.2589983"],["-120.6739715","35.2587232"],["-120.6740592","35.2585212"],["-120.6741477","35.2583322"],["-120.6743688","35.2579286"],["-120.6831197","35.2433281"],["-120.6831828","35.2432093"],["-120.6832531","35.2430698"],["-120.6833098","35.2429502"],["-120.6833638","35.2428232"],["-120.6834201","35.2426807"],["-120.6834701","35.2425436"],["-120.6835121","35.2424115"],["-120.6835519","35.2422693"],["-120.6835824","35.2421419"],["-120.6836123","35.2420028"],["-120.6836385","35.2418698"],["-120.6836634","35.241718"],["-120.6836823","35.2415771"],["-120.6836964","35.2414371"],["-120.6837067","35.2413022"],["-120.6837133","35.2411559"],["-120.6837623","35.2393643"],["-120.6837892","35.2388321"],["-120.683845","35.2381172"],["-120.6838933","35.2378791"],["-120.6839614","35.2376188"],["-120.6840559","35.2373438"],["-120.684176","35.237059"],["-120.6842989","35.2368024"],["-120.6844221","35.236573"],["-120.6845444","35.2363726"],["-120.6846841","35.2361665"],["-120.6848347","35.2359689"],["-120.6849846","35.2357889"],["-120.6851466","35.2356113"],["-120.685439","35.2353274"],["-120.6856456","35.2351455"],["-120.6858643","35.2349646"],["-120.6861343","35.2347686"],["-120.686559","35.2345046"],["-120.6886337","35.2332932"],["-120.6886771","35.2332728"],["-120.6889954","35.233073"],["-120.6892319","35.2328905"],["-120.6896992","35.232475"],["-120.6899565","35.2322073"],["-120.6902154","35.2318972"],["-120.6904052","35.2316448"],["-120.690535","35.2314413"],["-120.6907348","35.2310784"],["-120.6909272","35.2306647"],["-120.6910464","35.2303458"],["-120.6911233","35.2301097"],["-120.6911899","35.2298155"],["-120.6912201","35.2295934"],["-120.6912801","35.2288763"],["-120.6913474","35.2279468"],["-120.6914275","35.226725"],["-120.6916777","35.2238156"],["-120.6917837","35.223314"],["-120.6919484","35.2226119"],["-120.6921061","35.222132"],["-120.6922939","35.2217125"],["-120.6925774","35.2211328"],["-120.6928409","35.2206646"],["-120.693195","35.2201342"],["-120.6934746","35.2197404"],["-120.6936854","35.2194617"],["-120.6939085","35.2191649"],["-120.6943941","35.2185513"],["-120.6953097","35.2174122"],["-120.6956845","35.2169337"],["-120.6959474","35.216565"],["-120.6961204","35.216272"],["-120.6964288","35.2156314"],["-120.6965966","35.2152054"],["-120.6967257","35.2146862"],["-120.6968121","35.2141697"],["-120.6969021","35.2128706"],["-120.6970331","35.2103744"],["-120.6971088","35.2085923"],["-120.6970956","35.207919"],["-120.6970689","35.2072693"],["-120.697","35.2061211"],["-120.6969909","35.2058025"],["-120.6969976","35.205468"],["-120.6970223","35.205053"],["-120.6971129","35.2042656"],["-120.6973033","35.2028473"],["-120.697445","35.201928"],["-120.6975989","35.2014171"],["-120.7005027","35.193423"],["-120.700717","35.1926694"],["-120.7008545","35.1921032"],["-120.7009049","35.1917987"],["-120.7009486","35.1914438"],["-120.7015334","35.1841267"],["-120.7015402","35.1836094"],["-120.7014982","35.1830567"],["-120.7014364","35.1827493"],["-120.7013948","35.1825829"],["-120.7013413","35.1824049"],["-120.7012782","35.1822154"],["-120.7012021","35.1820302"],["-120.7011187","35.1818377"],["-120.7010261","35.1816512"],["-120.7009178","35.1814524"],["-120.7008015","35.1812599"],["-120.7006964","35.1810961"],["-120.7005213","35.1808527"],["-120.7002796","35.1805636"],["-120.6993617","35.1795623"],["-120.6990478","35.1792164"],["-120.6989095","35.1790508"],["-120.698818","35.1789306"],["-120.698656","35.1786996"],["-120.6985823","35.1785838"],["-120.6985077","35.1784609"],["-120.6984462","35.1783478"],["-120.698317","35.1780984"],["-120.6982579","35.1779725"],["-120.6982071","35.1778524"],["-120.6981059","35.1775923"],["-120.6980129","35.1772983"],["-120.6974417","35.1753546"],["-120.6973226","35.1750312"],["-120.6972146","35.1747831"],["-120.6971413","35.1746375"],["-120.6970777","35.1745199"],["-120.6970063","35.1743962"],["-120.6968531","35.1741555"],["-120.6967799","35.1740521"],["-120.6966883","35.1739275"],["-120.6965964","35.1738122"],["-120.696452","35.1736452"],["-120.6961045","35.1732718"],["-120.6950917","35.1722118"],["-120.6948235","35.1719472"],["-120.6945017","35.1716537"],["-120.6935029","35.1707847"],["-120.6931827","35.1705034"],["-120.6929389","35.1702745"],["-120.6928213","35.1701585"],["-120.6924323","35.1697491"],["-120.6922479","35.1695391"],["-120.6919232","35.1691497"],["-120.6891884","35.1658161"],["-120.6889965","35.1655963"],["-120.6887783","35.1653547"],["-120.6886874","35.1652594"],["-120.6885775","35.1651484"],["-120.6883756","35.1649579"],["-120.6879131","35.164559"],["-120.687663","35.1643646"],["-120.6875332","35.1642674"],["-120.6872842","35.1640935"],["-120.6867007","35.1637218"],["-120.6862673","35.1634857"],["-120.6858872","35.1632908"],["-120.6854717","35.1631071"],["-120.6834673","35.1623085"],["-120.6620401","35.1539166"],["-120.6611411","35.1535067"],["-120.6603197","35.1530733"],["-120.6595547","35.1526695"],["-120.6587818","35.1522789"],["-120.6582431","35.1520541"],["-120.6534304","35.1503652"],["-120.6526732","35.150097"],["-120.647656","35.1482114"],["-120.6470597","35.1479816"],["-120.6465731","35.1477816"],["-120.6461826","35.1475985"],["-120.6457991","35.147397"],["-120.6454199","35.1471791"],["-120.6449515","35.146867"],["-120.644694","35.1466768"],["-120.6440762","35.1461433"],["-120.6432598","35.1454124"],["-120.642285","35.144544"],["-120.6401792","35.1426479"],["-120.6381493","35.1408336"],["-120.6375727","35.1403464"],["-120.6371758","35.1400563"],["-120.6367167","35.1397675"],["-120.6361185","35.1394494"],["-120.6356679","35.1392463"],["-120.6352769","35.1390994"],["-120.6347761","35.1389444"],["-120.6339948","35.1387586"],["-120.6258926","35.1371002"],["-120.6251699","35.1369543"],["-120.6241514","35.1367246"],["-120.6228564","35.1363628"],["-120.6219926","35.1360812"],["-120.6204942","35.135435"],["-120.6171452","35.1338496"],["-120.6131577","35.1319405"],["-120.6118927","35.131346"],["-120.6114176","35.1311585"],["-120.611089","35.1310426"],["-120.6106764","35.1309112"],["-120.6102821","35.1307974"],["-120.6096594","35.1306493"],["-120.6050645","35.129675"],["-120.6035793","35.1292288"],["-120.6024185","35.1286944"],["-120.5954365","35.1251011"],["-120.5946029","35.1246829"],["-120.5942356","35.1245187"],["-120.5938546","35.1243601"],["-120.5935614","35.124251"],["-120.593249","35.1241461"],["-120.5929001","35.1240292"],["-120.5909823","35.1234341"],["-120.5818852","35.12073"],["-120.5815417","35.1206084"],["-120.5811771","35.1204749"],["-120.5807746","35.1203175"],["-120.5802765","35.1200988"],["-120.5798726","35.1199111"],["-120.5793444","35.1196508"],["-120.5790008","35.1194665"],["-120.578686","35.1192921"],["-120.5783774","35.119115"],["-120.5773357","35.1184702"],["-120.5768781","35.118178"],["-120.5680886","35.1126814"],["-120.5676894","35.1124839"],["-120.5671912","35.1122553"],["-120.5667454","35.1120653"],["-120.5660406","35.1118297"],["-120.563853","35.1112274"],["-120.563319","35.1110692"],["-120.5630071","35.11096"],["-120.5627275","35.1108535"],["-120.5575281","35.1085651"],["-120.5571995","35.1084032"],["-120.5563128","35.1079132"],["-120.5557913","35.1075819"],["-120.555313","35.1072567"],["-120.555129","35.1071212"],["-120.5549015","35.1069477"],["-120.5544905","35.1065937"],["-120.5519857","35.1044592"],["-120.5510153","35.1036203"],["-120.5501941","35.1028836"],["-120.5494015","35.1021052"],["-120.5489024","35.1015535"],["-120.5486783","35.1012802"],["-120.548419","35.1009323"],["-120.5480259","35.1003364"],["-120.543926","35.0938559"],["-120.543525","35.093262"],["-120.5432804","35.0929463"],["-120.5429773","35.0925899"],["-120.542563","35.0921596"],["-120.542166","35.0917612"],["-120.5418724","35.0914931"],["-120.5413232","35.0910349"],["-120.5408638","35.0906926"],["-120.5402811","35.0903005"],["-120.5339795","35.086577"],["-120.5329749","35.0859423"],["-120.5321985","35.0853607"],["-120.5314908","35.0847903"],["-120.5310082","35.0843701"],["-120.5305548","35.0839387"],["-120.5302525","35.0836258"],["-120.5279879","35.0812364"],["-120.5267517","35.0799365"],["-120.5264735","35.0796799"],["-120.5261475","35.0793965"],["-120.5253052","35.0787359"],["-120.5247051","35.0782708"],["-120.5232457","35.0771704"],["-120.5188067","35.0738527"],["-120.5178197","35.0730886"],["-120.5172085","35.0725612"],["-120.5166571","35.0720667"],["-120.515992","35.0713792"],["-120.5095139","35.0642636"],["-120.5078392","35.0624381"],["-120.5066311","35.0611495"],["-120.5045421","35.0588837"],["-120.5030991","35.0572728"],["-120.5009943","35.054941"],["-120.5005527","35.0544548"],["-120.4998868","35.0537252"],["-120.4852313","35.0373491"],["-120.4839441","35.036092"],["-120.483073","35.0352727"],["-120.482569","35.0347895"],["-120.4821888","35.0344497"],["-120.4691036","35.0223676"],["-120.4685928","35.0218851"],["-120.4634253","35.0171406"],["-120.4622674","35.0161021"],["-120.4618951","35.0157946"],["-120.4616921","35.0156526"],["-120.4614309","35.0154725"],["-120.4608498","35.0151092"],["-120.4595586","35.01439"],["-120.4440122","35.0060598"],["-120.443091","35.0055694"],["-120.4415068","35.0047106"],["-120.4410453","35.0044474"],["-120.4407321","35.00424"],["-120.4403732","35.0039781"],["-120.440116","35.00378"],["-120.4399212","35.003609"],["-120.4393894","35.0030815"],["-120.439122","35.0027939"],["-120.4387733","35.0024015"],["-120.4372988","35.0007144"],["-120.4366873","34.9999768"],["-120.4363809","34.9995672"],["-120.4360636","34.9990837"],["-120.4357535","34.9985473"],["-120.4354603","34.9980118"],["-120.4352772","34.9975988"],["-120.4350805","34.9970422"],["-120.4349234","34.9965008"],["-120.4348046","34.9960267"],["-120.4333926","34.9869219"],["-120.4331192","34.9852873"],["-120.4328851","34.9844348"],["-120.4326403","34.983696"],["-120.4322807","34.982817"],["-120.4318434","34.9818825"],["-120.4315449","34.9813211"],["-120.4305283","34.9796332"],["-120.4298696","34.9785736"],["-120.4195414","34.9619201"],["-120.4190145","34.9610128"],["-120.4187294","34.960446"],["-120.4184179","34.9597568"],["-120.4181471","34.9590766"],["-120.4178619","34.9581756"],["-120.4176962","34.9575448"],["-120.4175526","34.9568659"],["-120.4174503","34.9562084"],["-120.417355","34.9552052"],["-120.4173355","34.9543347"],["-120.4173621","34.9534492"],["-120.4174815","34.95141"],["-120.4175387","34.9504394"],["-120.4177309","34.9464888"],["-120.4178432","34.9432747"],["-120.4182461","34.9006496"],["-120.4182794","34.8997307"],["-120.4183028","34.8937028"],["-120.4182681","34.8932174"],["-120.4181837","34.8926812"],["-120.4180631","34.8920797"],["-120.4179057","34.8914987"],["-120.4177243","34.8909801"],["-120.4175526","34.8905591"],["-120.4173574","34.8901407"],["-120.417121","34.8896891"],["-120.4168894","34.8892911"],["-120.4166498","34.8889055"],["-120.4163573","34.8885024"],["-120.4159914","34.8880376"],["-120.3661145","34.8312513"],["-120.3656505","34.8307695"],["-120.3646002","34.8297612"],["-120.3632646","34.8286072"],["-120.3499642","34.8174292"],["-120.3493911","34.8169269"],["-120.3488812","34.8164361"],["-120.3484837","34.8159947"],["-120.3480965","34.8155209"],["-120.34764","34.8148833"],["-120.3473094","34.8143596"],["-120.3470473","34.8138714"],["-120.3467767","34.8133009"],["-120.3465484","34.8127462"],["-120.3460852","34.8115044"],["-120.3458819","34.8109386"],["-120.3449441","34.808428"],["-120.344852","34.8081885"],["-120.3424979","34.8018377"],["-120.3422007","34.8010848"],["-120.3419441","34.8005252"],["-120.3417003","34.8000618"],["-120.3413947","34.7995377"],["-120.3409949","34.7989331"],["-120.3404836","34.7982399"],["-120.3398115","34.7974422"],["-120.3372338","34.7945281"],["-120.3368403","34.7941325"],["-120.336362","34.7937012"],["-120.3358164","34.7932666"],["-120.3352885","34.7928797"],["-120.3347203","34.792512"],["-120.3341679","34.7921889"],["-120.3208661","34.7851128"],["-120.3202554","34.784753"],["-120.3197025","34.7843978"],["-120.3191795","34.7840391"],["-120.3186557","34.7836531"],["-120.3181389","34.7832513"],["-120.317723","34.7828971"],["-120.3173451","34.7825631"],["-120.3169383","34.7821852"],["-120.3166234","34.7818742"],["-120.3163313","34.7815602"],["-120.3155877","34.7807043"],["-120.307196","34.77051"],["-120.3068254","34.7700587"],["-120.3039899","34.7665983"],["-120.299411","34.7606312"],["-120.2988063","34.7598769"],["-120.2985046","34.7595446"],["-120.2981226","34.7591548"],["-120.2977603","34.7588297"],["-120.2973546","34.7584834"],["-120.2969784","34.7582008"],["-120.2965236","34.7578783"],["-120.2960235","34.7575673"],["-120.2949958","34.7569905"],["-120.2807384","34.7492847"],["-120.2802143","34.7489683"],["-120.2797337","34.7486645"],["-120.2670172","34.7397691"],["-120.2662296","34.7392359"],["-120.2656842","34.7389138"],["-120.2651833","34.7386441"],["-120.2647314","34.7384254"],["-120.2639447","34.7380867"],["-120.2633421","34.7378769"],["-120.2626107","34.7376686"],["-120.2618957","34.7375012"],["-120.2612499","34.7373849"],["-120.2600361","34.7372095"],["-120.2458949","34.735216"],["-120.2453458","34.7351053"],["-120.2449265","34.7349985"],["-120.244463","34.7348568"],["-120.2439182","34.7346583"],["-120.2427044","34.7341496"],["-120.228835","34.7281953"],["-120.2270574","34.7274444"],["-120.2265319","34.7272624"],["-120.2254644","34.7269469"],["-120.2158919","34.7242492"],["-120.2135883","34.7235753"],["-120.213135","34.7234291"],["-120.2125863","34.7232306"],["-120.2118767","34.7229525"],["-120.2112131","34.7226705"],["-120.2106107","34.7223875"],["-120.2100352","34.7220946"],["-120.2095589","34.7218397"],["-120.2090488","34.721547"],["-120.2085346","34.7212191"],["-120.2078348","34.7207539"],["-120.2072125","34.7203403"],["-120.2066406","34.7199579"],["-120.206136","34.7196536"],["-120.2056255","34.7193676"],["-120.2051229","34.7191227"],["-120.2047087","34.7189466"],["-120.2042716","34.7187833"],["-120.2038015","34.7186289"],["-120.2033763","34.7185139"],["-120.2027005","34.718365"],["-120.2018292","34.7181937"],["-120.2003879","34.7179001"],["-120.1992359","34.717664"],["-120.1981979","34.7174131"],["-120.1933388","34.7159968"],["-120.1919439","34.7155678"],["-120.1915188","34.7154238"],["-120.1910661","34.7152624"],["-120.1904876","34.7150114"],["-120.1899802","34.7147818"],["-120.1895992","34.7145909"],["-120.1863978","34.7127093"],["-120.1852382","34.7120646"],["-120.1843997","34.7116767"],["-120.1838606","34.7114606"],["-120.1834722","34.7113288"],["-120.182531","34.711068"],["-120.1775742","34.7097892"],["-120.1762993","34.7094423"],["-120.1759145","34.7093075"],["-120.1754584","34.7091128"],["-120.1749906","34.7089053"],["-120.1745634","34.7086913"],["-120.1740616","34.7084267"],["-120.1736934","34.708209"],["-120.1733186","34.7079659"],["-120.1728345","34.7076236"],["-120.1723129","34.7072079"],["-120.1719365","34.7068645"],["-120.1715388","34.7064844"],["-120.1711637","34.706088"],["-120.1708514","34.7057222"],["-120.1705824","34.7053705"],["-120.1702767","34.7048997"],["-120.1697904","34.7040588"],["-120.1691275","34.7028868"],["-120.1687921","34.7023323"],["-120.1684909","34.701907"],["-120.1681727","34.7014956"],["-120.1679306","34.7012381"],["-120.1676233","34.7009372"],["-120.1646924","34.69846"],["-120.1641531","34.6979973"],["-120.1637981","34.6976568"],["-120.1635367","34.697366"],["-120.1632917","34.6970557"],["-120.1629644","34.6965177"],["-120.1624718","34.6956762"],["-120.1621079","34.6951272"],["-120.1618056","34.6947608"],["-120.1612305","34.6941924"],["-120.1608218","34.6937962"],["-120.1605698","34.6935472"],["-120.1603985","34.6933504"],["-120.1602144","34.6931177"],["-120.1600573","34.6928993"],["-120.1598618","34.6925915"],["-120.1597335","34.692341"],["-120.1595915","34.6920248"],["-120.1593019","34.6913466"],["-120.1591632","34.6908265"],["-120.1586201","34.6889894"],["-120.1583718","34.6880672"],["-120.1583225","34.6879685"],["-120.1568328","34.6877281"],["-120.1567726","34.6877166"],["-120.1567029","34.6877011"],["-120.1566007","34.687676"],["-120.1565003","34.6876465"],["-120.1563987","34.68761"],["-120.1562829","34.6875622"],["-120.1561595","34.6875009"],["-120.1560212","34.6874266"],["-120.1559186","34.6873621"],["-120.1558151","34.6872876"],["-120.1557148","34.6872068"],["-120.1556248","34.6871298"],["-120.1555457","34.6870534"],["-120.1554661","34.6869642"],["-120.1553947","34.686881"],["-120.1553462","34.686809"],["-120.1552963","34.686718"],["-120.1552446","34.6866204"],["-120.1552015","34.6865171"],["-120.1551607","34.6864023"],["-120.1551295","34.6862842"],["-120.155108","34.6861663"],["-120.1550951","34.6860618"],["-120.1550869","34.6859685"],["-120.1550892","34.6858682"],["-120.1551017","34.6857517"],["-120.1551234","34.6856344"],["-120.155148","34.6855256"],["-120.1551682","34.6854653"],["-120.1551881","34.6854076"],["-120.155218","34.6853366"],["-120.1552489","34.6852757"],["-120.1552865","34.685206"],["-120.1553429","34.6851096"],["-120.1558133","34.6843994"],["-120.1558984","34.6842659"],["-120.1559531","34.6841705"],["-120.1560084","34.6840624"],["-120.1560654","34.6839329"],["-120.1561078","34.6838137"],["-120.1561472","34.6836905"],["-120.156175","34.6835699"],["-120.156191","34.6834527"],["-120.1562058","34.6833112"],["-120.1562086","34.6831706"],["-120.1562061","34.683022"],["-120.1561939","34.6828932"],["-120.1561777","34.6827851"],["-120.1561561","34.6826808"],["-120.1561205","34.6825586"],["-120.1560778","34.682432"],["-120.156025","34.6823005"],["-120.1559591","34.6821597"],["-120.1558915","34.6820317"],["-120.1558207","34.6819154"],["-120.155741","34.6818086"],["-120.1556528","34.6817017"],["-120.1555678","34.6816077"],["-120.1554723","34.6815134"],["-120.1553883","34.6814348"],["-120.1552805","34.6813497"],["-120.1551203","34.6812311"],["-120.1550595","34.6811898"],["-120.1550024","34.6811527"],["-120.1549283","34.6811083"],["-120.1548609","34.6810696"],["-120.1547859","34.6810303"],["-120.154648","34.6809661"],["-120.1545937","34.6809425"],["-120.1545245","34.6809151"],["-120.1543918","34.6808653"],["-120.1543192","34.6808409"],["-120.1541385","34.6807855"],["-120.1540262","34.6807584"],["-120.1539076","34.6807322"],["-120.1537995","34.6807134"],["-120.1536721","34.6806955"],["-120.153563","34.6806828"],["-120.1534408","34.6806727"],["-120.1533257","34.6806671"],["-120.1532189","34.6806659"],["-120.1531073","34.6806692"],["-120.1530034","34.6806759"],["-120.1529015","34.6806861"],["-120.1527652","34.680704"],["-120.1526339","34.6807246"],["-120.1520151","34.6808513"],["-120.1477468","34.6817669"],["-120.147139","34.6818706"],["-120.1468547","34.6819021"],["-120.1440172","34.6821621"],["-120.1437397","34.682168"],["-120.1434551","34.6821663"],["-120.1431291","34.6821568"],["-120.1428538","34.6821394"],["-120.1424429","34.6820921"],["-120.1422359","34.6820611"],["-120.1417793","34.6819774"],["-120.1415661","34.6819298"],["-120.1413267","34.6818685"],["-120.1411477","34.6818183"],["-120.140729","34.6816859"],["-120.1405022","34.6816038"],["-120.1402763","34.6815135"],["-120.1398575","34.6813281"],["-120.1397107","34.6812544"],["-120.1393665","34.6810703"],["-120.1391981","34.6809705"],["-120.1388968","34.6807787"],["-120.1387268","34.6806588"],["-120.1385584","34.6805371"],["-120.1384389","34.6804428"],["-120.1382525","34.6802893"],["-120.1381577","34.6802057"],["-120.1379395","34.6800031"],["-120.1378086","34.6798751"],["-120.1373829","34.6794196"],["-120.1372332","34.6792574"],["-120.1367691","34.6787717"],["-120.1365408","34.6785571"],["-120.1362761","34.6783287"],["-120.136143","34.6782174"],["-120.1358939","34.6780228"],["-120.1356891","34.6778745"],["-120.1354533","34.6777142"],["-120.1352021","34.6775547"],["-120.1349845","34.6774243"],["-120.1343937","34.6771082"],["-120.1320499","34.6759131"],["-120.1315597","34.6756491"],["-120.1310502","34.6753268"],["-120.1308574","34.67519"],["-120.1306694","34.6750458"],["-120.1305086","34.6749155"],["-120.1303806","34.674806"],["-120.1302645","34.6747017"],["-120.1301272","34.6745704"],["-120.1299869","34.6744278"],["-120.1298324","34.6742604"],["-120.1296904","34.6740978"],["-120.1295677","34.6739517"],["-120.1294978","34.6738623"],["-120.1293988","34.6737242"],["-120.1278113","34.6713754"],["-120.127658","34.6711758"],["-120.1273069","34.6707648"],["-120.1264565","34.6698396"],["-120.1262475","34.6696238"],["-120.1261896","34.6695691"],["-120.1258963","34.669312"],["-120.1257902","34.6692282"],["-120.1255238","34.669036"],["-120.1253908","34.6689449"],["-120.1252792","34.6688736"],["-120.1251288","34.6687843"],["-120.1249901","34.6687055"],["-120.1248279","34.6686195"],["-120.1246827","34.6685477"],["-120.124537","34.6684797"],["-120.1243905","34.6684174"],["-120.1241199","34.6683081"],["-120.1239769","34.6682582"],["-120.1238727","34.6682241"],["-120.1236737","34.6681628"],["-120.123551","34.6681298"],["-120.1234229","34.6680981"],["-120.1232499","34.6680597"],["-120.1230801","34.6680247"],["-120.122789","34.6679719"],["-120.1225159","34.6679358"],["-120.1222106","34.6679084"],["-120.121888","34.6678934"],["-120.1165901","34.6678093"],["-120.1152861","34.6677804"],["-120.1149631","34.6677593"],["-120.1146333","34.6677249"],["-120.1143975","34.6676884"],["-120.1141258","34.6676411"],["-120.113825","34.6675749"],["-120.1135833","34.6675143"],["-120.1134754","34.667485"],["-120.1132099","34.6674056"],["-120.1130704","34.6673612"],["-120.1129246","34.6673097"],["-120.112793","34.6672589"],["-120.1126495","34.667201"],["-120.1124834","34.6671296"],["-120.1123272","34.6670543"],["-120.1120717","34.6669132"],["-120.1119602","34.6668451"],["-120.1118489","34.6667725"],["-120.1117236","34.6666851"],["-120.1114259","34.6664677"],["-120.1074561","34.6634807"],["-120.105574","34.6620672"],["-120.1052428","34.6618093"],["-120.1048734","34.661502"],["-120.1045903","34.6612503"],["-120.1041221","34.660813"],["-120.1038597","34.6605441"],["-120.103584","34.6602457"],["-120.1027803","34.6593245"],["-120.101782","34.658119"],["-120.1016884","34.6580072"],["-120.0954496","34.6506737"],["-120.0951927","34.6503695"],["-120.0941669","34.6491677"],["-120.0810617","34.6337425"],["-120.0801658","34.6326887"],["-120.080015","34.632509"],["-120.0775318","34.629626"],["-120.0772356","34.62929"],["-120.0767987","34.628833"],["-120.0765697","34.628609"],["-120.0763236","34.6283801"],["-120.0760881","34.6281682"],["-120.0685822","34.6218462"],["-120.0576384","34.6125816"],["-120.0572095","34.6122167"],["-120.0568541","34.6119237"],["-120.0566107","34.6116936"],["-120.0564907","34.6115878"],["-120.0557833","34.6109142"],["-120.055668","34.6108043"],["-120.0555727","34.6107179"],["-120.0554425","34.610614"],["-120.0553663","34.6105577"],["-120.0553305","34.6105358"],["-120.0552926","34.6105129"],["-120.0552552","34.6104908"],["-120.0552195","34.6104708"],["-120.055177","34.6104465"],["-120.0551375","34.6104221"],["-120.0551065","34.6104002"],["-120.055092","34.6103879"],["-120.0550791","34.6103757"],["-120.0550649","34.6103615"],["-120.0550502","34.6103444"],["-120.0550294","34.610317"],["-120.0550062","34.6102815"],["-120.0549777","34.6102323"],["-120.0549781","34.6102226"],["-120.0549809","34.6101907"],["-120.0549789","34.6101545"],["-120.0549745","34.6101278"],["-120.0549678","34.6101"],["-120.0549545","34.6100745"],["-120.0549329","34.6100453"],["-120.0549042","34.6100195"],["-120.05488","34.6100022"],["-120.0548528","34.6099881"],["-120.0548029","34.6099656"],["-120.0547021","34.6099169"],["-120.0546438","34.6098842"],["-120.0545808","34.6098443"],["-120.0545493","34.6098238"],["-120.054514","34.6097992"],["-120.0544617","34.609759"],["-120.0541846","34.6095207"],["-120.0538776","34.6092133"],["-120.0534827","34.6088686"],["-120.0532612","34.6086907"],["-120.0529858","34.608468"],["-120.0342732","34.5915672"],["-120.0335506","34.5909075"],["-120.033328","34.5906979"],["-120.0331979","34.590579"],["-120.0330955","34.5904907"],["-120.0329837","34.5903988"],["-120.0328362","34.5902844"],["-120.0324825","34.5900193"],["-120.0321146","34.5897688"],["-120.0318456","34.5896016"],["-120.0313021","34.5892895"],["-120.030954","34.5891068"],["-120.0307609","34.5890111"],["-120.0306704","34.5889683"],["-120.0302039","34.5887633"],["-120.0297771","34.5885965"],["-120.0295948","34.588531"],["-120.0294244","34.5884733"],["-120.0289861","34.588336"],["-120.0284269","34.5881838"],["-120.0282429","34.58814"],["-120.0278437","34.5880525"],["-120.0270521","34.587912"],["-120.026676","34.5878607"],["-120.026464","34.5878381"],["-120.0262065","34.5878165"],["-120.0256759","34.587789"],["-120.0251048","34.5877836"],["-120.0247756","34.5877888"],["-120.024427","34.5878071"],["-120.0239757","34.5878424"],["-120.0187093","34.5883696"],["-120.0182194","34.5884004"],["-120.0180688","34.5884044"],["-120.0178939","34.5884055"],["-120.0177367","34.5884016"],["-120.0174192","34.5883859"],["-120.016939","34.5883387"],["-120.0167864","34.588319"],["-120.0164784","34.5882644"],["-120.0163141","34.5882313"],["-120.0159984","34.5881604"],["-120.0158372","34.5881181"],["-120.0157209","34.5880857"],["-120.0155706","34.5880398"],["-120.0154387","34.5879937"],["-120.0153206","34.5879489"],["-120.0135363","34.5872306"],["-120.0131827","34.5871002"],["-120.0130027","34.5870407"],["-120.012784","34.5869762"],["-120.0125827","34.5869223"],["-120.0123602","34.586869"],["-120.0121591","34.5868282"],["-120.0119038","34.5867862"],["-120.0115776","34.5867426"],["-120.0110451","34.5866903"],["-119.9957571","34.5851435"],["-119.9954702","34.5851012"],["-119.9952385","34.5850603"],["-119.9950464","34.5850215"],["-119.9948839","34.5849826"],["-119.994742","34.5849442"],["-119.9943627","34.5848214"],["-119.9940204","34.5846845"],["-119.99386","34.5846134"],["-119.9937266","34.5845487"],["-119.9935208","34.5844379"],["-119.9933799","34.5843541"],["-119.9932277","34.5842568"],["-119.9930506","34.5841349"],["-119.9928034","34.583945"],["-119.9920002","34.5832522"],["-119.9889153","34.5805819"],["-119.9886232","34.5803397"],["-119.9884935","34.5802424"],["-119.9883578","34.5801468"],["-119.988222","34.5800591"],["-119.988067","34.5799671"],["-119.9877614","34.5798063"],["-119.9876174","34.5797381"],["-119.9874892","34.5796809"],["-119.9873717","34.5796328"],["-119.9871106","34.5795366"],["-119.9869757","34.5794943"],["-119.9866779","34.5794089"],["-119.9780135","34.5770697"],["-119.9699058","34.5748715"],["-119.9695856","34.5747711"],["-119.969084","34.5745978"],["-119.9685217","34.5743792"],["-119.9682005","34.5742395"],["-119.967504","34.5739099"],["-119.9664455","34.5733913"],["-119.9660229","34.5731882"],["-119.9658122","34.5730945"],["-119.9656197","34.5730178"],["-119.9654074","34.5729386"],["-119.9651216","34.5728386"],["-119.9649077","34.5727696"],["-119.9647275","34.5727197"],["-119.9644441","34.5726471"],["-119.9634934","34.5724726"],["-119.9630038","34.5724217"],["-119.9626661","34.5724014"],["-119.9624841","34.5723963"],["-119.9617407","34.5724065"],["-119.9615842","34.5724152"],["-119.9611078","34.572458"],["-119.9607048","34.5725146"],["-119.960309","34.5725844"],["-119.9600174","34.572647"],["-119.9597528","34.5727079"],["-119.9594271","34.5727932"],["-119.9583376","34.5731123"],["-119.9581446","34.5731664"],["-119.9579833","34.5732065"],["-119.9578645","34.5732311"],["-119.9577729","34.5732464"],["-119.9576717","34.5732577"],["-119.9575283","34.5732668"],["-119.9574208","34.5732709"],["-119.9572556","34.5732701"],["-119.9571748","34.5732654"],["-119.9570925","34.5732572"],["-119.9569893","34.573244"],["-119.9568709","34.573221"],["-119.956738","34.5731932"],["-119.9566265","34.5731642"],["-119.956532","34.5731321"],["-119.9564207","34.5730896"],["-119.9563105","34.5730405"],["-119.9562056","34.572988"],["-119.9561051","34.5729302"],["-119.9559815","34.5728537"],["-119.9539196","34.5714445"],["-119.953811","34.5713582"],["-119.9537256","34.5712825"],["-119.9536526","34.5712117"],["-119.95359","34.5711447"],["-119.9534653","34.5709896"],["-119.9533985","34.5708914"],["-119.9533472","34.5708044"],["-119.9533036","34.5707174"],["-119.9532672","34.5706321"],["-119.9532348","34.5705506"],["-119.9531927","34.5704148"],["-119.9529676","34.569376"],["-119.9529273","34.5692036"],["-119.952892","34.5690683"],["-119.9528669","34.5689963"],["-119.952835","34.5689199"],["-119.9528029","34.5688477"],["-119.952758","34.5687628"],["-119.952718","34.5686953"],["-119.9526723","34.5686216"],["-119.9526147","34.5685401"],["-119.952553","34.5684668"],["-119.9524866","34.5683938"],["-119.9524004","34.568316"],["-119.9523337","34.5682609"],["-119.9522674","34.568212"],["-119.9521921","34.5681603"],["-119.9520994","34.5681013"],["-119.9519693","34.5680251"],["-119.9518514","34.5679603"],["-119.9517372","34.5679083"],["-119.9516251","34.5678637"],["-119.9515142","34.5678256"],["-119.9514122","34.5678005"],["-119.9513011","34.5677763"],["-119.9512265","34.5677632"],["-119.9510602","34.567742"],["-119.9509399","34.5677324"],["-119.9508671","34.5677305"],["-119.9507057","34.5677327"],["-119.9456355","34.5678825"],["-119.9452547","34.5678906"],["-119.9448661","34.5678875"],["-119.9446791","34.5678788"],["-119.9444602","34.5678635"],["-119.9442422","34.5678393"],["-119.9438792","34.5677907"],["-119.9435004","34.5677229"],["-119.9433165","34.5676809"],["-119.9429483","34.5675815"],["-119.9427685","34.5675268"],["-119.9424543","34.5674187"],["-119.9422742","34.5673501"],["-119.9420767","34.5672683"],["-119.9418568","34.5671665"],["-119.9406838","34.5665996"],["-119.9403763","34.5664513"],["-119.9362758","34.5644324"],["-119.9357716","34.5642103"],["-119.935306","34.5640275"],["-119.9350681","34.5639433"],["-119.9347807","34.5638481"],["-119.9269124","34.5617792"],["-119.9260461","34.5615595"],["-119.9257828","34.5615065"],["-119.9256297","34.5614803"],["-119.925439","34.561454"],["-119.9251007","34.5614213"],["-119.9248715","34.5614159"],["-119.9246016","34.5614214"],["-119.9242239","34.5614438"],["-119.9215099","34.5616603"],["-119.9213323","34.561662"],["-119.9212056","34.5616549"],["-119.9210601","34.5616423"],["-119.9209381","34.5616273"],["-119.9207911","34.5616073"],["-119.9206731","34.5615839"],["-119.9205121","34.5615462"],["-119.9203855","34.5615077"],["-119.9202497","34.5614637"],["-119.9201214","34.561413"],["-119.920002","34.5613624"],["-119.9198857","34.5613057"],["-119.9197644","34.5612421"],["-119.9196589","34.5611806"],["-119.9195572","34.5611135"],["-119.9194425","34.5610316"],["-119.9193119","34.560919"],["-119.9191596","34.5607815"],["-119.9187733","34.5604109"],["-119.9181043","34.5597564"],["-119.9179662","34.5596299"],["-119.9178505","34.55953"],["-119.9177393","34.5594412"],["-119.9176337","34.5593636"],["-119.9175131","34.5592798"],["-119.9173942","34.559203"],["-119.9172788","34.5591346"],["-119.9171584","34.5590663"],["-119.916936","34.5589544"],["-119.9168219","34.5589004"],["-119.9167152","34.5588522"],["-119.9165872","34.5587997"],["-119.9164402","34.5587452"],["-119.9162579","34.5586848"],["-119.9160489","34.5586241"],["-119.913675","34.5580338"],["-119.9134557","34.5579662"],["-119.9132711","34.557903"],["-119.9131298","34.5578456"],["-119.9129879","34.5577814"],["-119.9128482","34.5577065"],["-119.9127004","34.557621"],["-119.9125566","34.5575288"],["-119.9124227","34.557437"],["-119.9123088","34.5573426"],["-119.9121989","34.557245"],["-119.9120908","34.5571367"],["-119.9120011","34.5570386"],["-119.9119202","34.556945"],["-119.9118465","34.5568524"],["-119.9117629","34.5567324"],["-119.9116858","34.5566045"],["-119.9116181","34.5564832"],["-119.911565","34.556367"],["-119.9115274","34.5562731"],["-119.9114916","34.5561695"],["-119.9114255","34.5559091"],["-119.9113173","34.5553235"],["-119.9109235","34.5531208"],["-119.9108777","34.552908"],["-119.9108448","34.552777"],["-119.910816","34.5526806"],["-119.9107812","34.5525743"],["-119.910725","34.5524311"],["-119.9106568","34.5522714"],["-119.9105728","34.5520905"],["-119.9104792","34.5519171"],["-119.9103843","34.5517569"],["-119.910295","34.5516218"],["-119.9101989","34.5514915"],["-119.9101039","34.5513695"],["-119.9100032","34.5512463"],["-119.9097434","34.550983"],["-119.9096064","34.5508516"],["-119.9094581","34.5507258"],["-119.9092925","34.5505965"],["-119.9091113","34.5504651"],["-119.9089323","34.5503432"],["-119.9087235","34.5502202"],["-119.9085484","34.5501249"],["-119.9084144","34.5500575"],["-119.9081293","34.5499251"],["-119.9079508","34.5498552"],["-119.9078224","34.5498082"],["-119.9074776","34.5496959"],["-119.9073192","34.5496504"],["-119.9070556","34.5495833"],["-119.9006551","34.5483003"],["-119.895425","34.5472777"],["-119.8947437","34.5471799"],["-119.8939289","34.5471018"],["-119.8937169","34.5470901"],["-119.8933153","34.5470755"],["-119.8927597","34.5470774"],["-119.8882507","34.5471753"],["-119.8874939","34.5471662"],["-119.8864799","34.54711"],["-119.886206","34.5470858"],["-119.8852179","34.5469652"],["-119.8845547","34.5468581"],["-119.8840017","34.5467487"],["-119.8834293","34.5466199"],["-119.8828001","34.5464572"],["-119.8819517","34.5462085"],["-119.8782642","34.5451022"],["-119.8778843","34.5449928"],["-119.8763359","34.5445246"],["-119.8685874","34.5421827"],["-119.8666702","34.5416232"],["-119.8663961","34.5415342"],["-119.8661519","34.5414466"],["-119.8659442","34.5413601"],["-119.8657397","34.5412642"],["-119.865552","34.5411645"],["-119.8653717","34.541061"],["-119.8652178","34.5409626"],["-119.8650318","34.5408322"],["-119.8648647","34.5407046"],["-119.8647205","34.5405866"],["-119.8645874","34.5404669"],["-119.8644577","34.5403414"],["-119.8643507","34.5402318"],["-119.8642642","34.5401372"],["-119.864193","34.5400552"],["-119.8641351","34.5399823"],["-119.8639984","34.5397976"],["-119.8639274","34.5396943"],["-119.8638327","34.5395414"],["-119.863749","34.5393917"],["-119.863686","34.5392708"],["-119.8635803","34.5390436"],["-119.8634225","34.5386781"],["-119.8633223","34.538432"],["-119.8627801","34.5370789"],["-119.862686","34.5368638"],["-119.8626335","34.5367552"],["-119.8625789","34.5366568"],["-119.8625124","34.5365444"],["-119.8624348","34.5364191"],["-119.8623511","34.5363022"],["-119.8622735","34.5362002"],["-119.8620775","34.5359615"],["-119.8619655","34.5358347"],["-119.86178","34.5356493"],["-119.8617182","34.5355913"],["-119.8616121","34.5355002"],["-119.8615123","34.5354176"],["-119.8613651","34.5353054"],["-119.8612456","34.5352198"],["-119.8610954","34.5351217"],["-119.8608984","34.5350028"],["-119.8607117","34.5349004"],["-119.8604863","34.5347886"],["-119.858316","34.5337563"],["-119.8577688","34.5335188"],["-119.8572066","34.533265"],["-119.8569314","34.5331517"],["-119.856408","34.5329675"],["-119.8561252","34.5328746"],["-119.8557826","34.5327882"],["-119.8552829","34.5326946"],["-119.8543437","34.5325658"],["-119.8536096","34.5325109"],["-119.8473983","34.5324324"],["-119.8471335","34.532423"],["-119.8469036","34.5324012"],["-119.8466189","34.5323662"],["-119.8462487","34.5323009"],["-119.8460936","34.5322675"],["-119.8459643","34.5322353"],["-119.8457389","34.5321731"],["-119.8456355","34.5321416"],["-119.845441","34.5320758"],["-119.8453455","34.5320401"],["-119.8452173","34.5319882"],["-119.8450789","34.5319278"],["-119.8429203","34.5308904"],["-119.8425915","34.5307397"],["-119.8422464","34.5305785"],["-119.8376887","34.5283456"],["-119.8374333","34.5282102"],["-119.8372957","34.5281307"],["-119.8371703","34.5280516"],["-119.8370565","34.5279766"],["-119.8369303","34.5278907"],["-119.8368184","34.5278087"],["-119.8367048","34.5277202"],["-119.8364802","34.527537"],["-119.8306732","34.5223784"],["-119.830586","34.5222919"],["-119.8305183","34.5222184"],["-119.8304381","34.5221141"],["-119.8302055","34.5218211"],["-119.8300782","34.5216578"],["-119.8299836","34.5215129"],["-119.8298832","34.5213523"],["-119.8297312","34.521086"],["-119.8296582","34.5209435"],["-119.829597","34.5208148"],["-119.8295218","34.5206355"],["-119.8294568","34.52047"],["-119.829403","34.5203194"],["-119.829363","34.5201891"],["-119.829319","34.520017"],["-119.8292807","34.5198575"],["-119.829246","34.5196784"],["-119.8292214","34.5195192"],["-119.8292017","34.5193655"],["-119.8291875","34.519229"],["-119.8291815","34.5190539"],["-119.8291954","34.5184489"],["-119.8292124","34.5178621"],["-119.8292228","34.517433"],["-119.8292137","34.5172735"],["-119.8291824","34.5171123"],["-119.8291357","34.5169518"],["-119.8290172","34.5166731"],["-119.8288431","34.5163427"],["-119.8286927","34.5161565"],["-119.8284902","34.5159422"],["-119.8281693","34.51569"],["-119.8278404","34.5154992"],["-119.8274457","34.5153358"],["-119.8264478","34.51501"],["-119.8260782","34.5148748"],["-119.825685","34.5146579"],["-119.8255344","34.5145592"],["-119.8253066","34.5143737"],["-119.8251337","34.5141936"],["-119.8249672","34.5139821"],["-119.8247957","34.5136898"],["-119.824682","34.5134043"],["-119.8246188","34.5131691"],["-119.8243634","34.5119087"],["-119.824321","34.5117242"],["-119.8242842","34.5115982"],["-119.8242498","34.5114924"],["-119.824189","34.5113319"],["-119.8241075","34.5111376"],["-119.8240597","34.5110324"],["-119.8240114","34.5109394"],["-119.8239581","34.5108488"],["-119.8238936","34.5107475"],["-119.823822","34.510643"],["-119.8236906","34.5104616"],["-119.8236206","34.510381"],["-119.8234301","34.5101855"],["-119.8232977","34.5100602"],["-119.8230189","34.5098221"],["-119.8228002","34.5096474"],["-119.8226282","34.5095272"],["-119.8223583","34.5093435"],["-119.8221722","34.5092368"],["-119.8220419","34.5091692"],["-119.8219249","34.5091123"],["-119.8217141","34.5090218"],["-119.8197705","34.5082703"],["-119.8196485","34.5082184"],["-119.819534","34.5081636"],["-119.8194046","34.5080959"],["-119.819223","34.5079932"],["-119.8190218","34.5078712"],["-119.8188399","34.507742"],["-119.81875","34.50767"],["-119.8186555","34.5075901"],["-119.8185585","34.5074992"],["-119.8182966","34.5072393"],["-119.8176014","34.5065265"],["-119.8175135","34.5064371"],["-119.8174066","34.5063343"],["-119.8173215","34.5062597"],["-119.8172345","34.5061881"],["-119.8170866","34.5060831"],["-119.8170027","34.5060285"],["-119.8169076","34.5059693"],["-119.8168318","34.505927"],["-119.8166972","34.5058562"],["-119.8165123","34.5057689"],["-119.8164291","34.5057332"],["-119.8163594","34.5057051"],["-119.8162825","34.5056761"],["-119.8162196","34.5056555"],["-119.8121375","34.5044271"],["-119.8082636","34.5033503"],["-119.8081461","34.5033214"],["-119.8080193","34.5032959"],["-119.8079128","34.5032767"],["-119.8078023","34.5032611"],["-119.807694","34.5032504"],["-119.8075955","34.5032433"],["-119.8075039","34.5032395"],["-119.8074053","34.5032389"],["-119.8073159","34.5032397"],["-119.8072272","34.5032427"],["-119.8071469","34.5032496"],["-119.8070727","34.5032578"],["-119.8069093","34.5032824"],["-119.8067954","34.5033041"],["-119.8064905","34.5033756"],["-119.8054265","34.5036495"],["-119.8051806","34.5037084"],["-119.8050994","34.503724"],["-119.8050128","34.5037349"],["-119.8049222","34.5037435"],["-119.8048036","34.5037485"],["-119.8047231","34.5037483"],["-119.8045775","34.5037414"],["-119.8044914","34.5037341"],["-119.8044097","34.5037253"],["-119.8043342","34.5037126"],["-119.8042605","34.5036986"],["-119.8041895","34.5036827"],["-119.8041249","34.503665"],["-119.804058","34.5036438"],["-119.8039787","34.5036155"],["-119.8038743","34.5035705"],["-119.8035986","34.5034288"],["-119.8034442","34.5033445"],["-119.8023571","34.5026352"],["-119.80203","34.5023607"],["-119.8018562","34.5021979"],["-119.8016768","34.5019982"],["-119.8015475","34.5018367"],["-119.8014714","34.5017305"],["-119.8013389","34.5015288"],["-119.8012698","34.5014024"],["-119.8012077","34.5012839"],["-119.8011486","34.5011522"],["-119.8010682","34.5009456"],["-119.8010423","34.5008665"],["-119.8010216","34.5007889"],["-119.8010002","34.5007031"],["-119.8009831","34.5006196"],["-119.8009658","34.5005188"],["-119.8009532","34.50042"],["-119.8009431","34.5002996"],["-119.8009348","34.5001166"],["-119.8009322","34.4999327"],["-119.8009247","34.4985649"],["-119.800889","34.4978128"],["-119.8007544","34.4963808"],["-119.8007104","34.4960796"],["-119.8006837","34.4959482"],["-119.800662","34.495854"],["-119.8005782","34.495608"],["-119.800506","34.4954246"],["-119.8004397","34.4952887"],["-119.8003837","34.4951908"],["-119.8003172","34.4950801"],["-119.800246","34.4949778"],["-119.8001828","34.4948892"],["-119.8000926","34.4947758"],["-119.7999783","34.4946406"],["-119.7986359","34.4931464"],["-119.7984563","34.4929574"],["-119.7983295","34.4928417"],["-119.798185","34.4927254"],["-119.7980153","34.4925988"],["-119.797842","34.4924856"],["-119.7975973","34.4923379"],["-119.7974017","34.4922385"],["-119.7953842","34.4912994"],["-119.7952625","34.4912412"],["-119.795137","34.4911823"],["-119.7950177","34.4911243"],["-119.7949144","34.491069"],["-119.7948256","34.4910187"],["-119.7947426","34.4909617"],["-119.7946698","34.4909065"],["-119.7946006","34.4908459"],["-119.7945313","34.49078"],["-119.7944766","34.4907177"],["-119.7944286","34.4906543"],["-119.7942993","34.4904601"],["-119.7942006","34.4903029"],["-119.7937778","34.4896107"],["-119.7936484","34.4893958"],["-119.7934733","34.489102"],["-119.7930596","34.4884118"],["-119.7930169","34.4883473"],["-119.7929691","34.4882825"],["-119.7929172","34.4882214"],["-119.7928484","34.4881461"],["-119.7920717","34.4874149"],["-119.7919919","34.4873448"],["-119.7919139","34.4872822"],["-119.791819","34.4872145"],["-119.7917278","34.4871545"],["-119.7916483","34.4871061"],["-119.7915803","34.4870686"],["-119.7915166","34.4870355"],["-119.7914449","34.4870016"],["-119.7913757","34.4869708"],["-119.7913073","34.4869425"],["-119.7912322","34.4869162"],["-119.791095","34.4868731"],["-119.7910128","34.4868498"],["-119.7909266","34.4868285"],["-119.790772","34.4867965"],["-119.7906925","34.4867834"],["-119.7906135","34.4867724"],["-119.7905291","34.4867647"],["-119.7904608","34.48676"],["-119.7903878","34.4867575"],["-119.7902216","34.4867605"],["-119.790124","34.4867664"],["-119.7900211","34.4867748"],["-119.789883","34.4867927"],["-119.7896885","34.4868313"],["-119.7895691","34.4868616"],["-119.7894824","34.4868862"],["-119.7894045","34.4869095"],["-119.7893369","34.486934"],["-119.7892622","34.4869631"],["-119.7891872","34.4869957"],["-119.7891128","34.4870324"],["-119.7889887","34.4870989"],["-119.7888165","34.4872035"],["-119.7884204","34.4874603"],["-119.7882543","34.4875661"],["-119.7881057","34.4876551"],["-119.7879247","34.4877526"],["-119.7877448","34.487845"],["-119.7873861","34.4880103"],["-119.7872641","34.4880584"],["-119.7870114","34.4881496"],["-119.786925","34.4881795"],["-119.7868413","34.4882071"],["-119.7867607","34.4882321"],["-119.7865295","34.4882962"],["-119.7864045","34.4883278"],["-119.7862738","34.4883586"],["-119.7850809","34.4885978"],["-119.7849016","34.4886434"],["-119.7848347","34.4886649"],["-119.7847412","34.4887015"],["-119.7846515","34.4887407"],["-119.7845803","34.4887769"],["-119.7845222","34.4888104"],["-119.7844518","34.4888686"],["-119.7843854","34.4889295"],["-119.7843354","34.4889845"],["-119.7842923","34.4890344"],["-119.784257","34.4890848"],["-119.7842008","34.4891709"],["-119.7840257","34.4894466"],["-119.7839505","34.4895603"],["-119.7838824","34.4896596"],["-119.7838305","34.4897246"],["-119.7837717","34.4897778"],["-119.7837061","34.4898326"],["-119.7836519","34.489871"],["-119.7835879","34.4899094"],["-119.7835141","34.4899471"],["-119.7834313","34.489981"],["-119.7833405","34.4900091"],["-119.7832338","34.4900306"],["-119.7831469","34.4900428"],["-119.7830812","34.4900464"],["-119.7830078","34.4900474"],["-119.7829307","34.4900444"],["-119.7828605","34.4900349"],["-119.7827896","34.4900217"],["-119.7827131","34.4900017"],["-119.7826362","34.4899766"],["-119.7825742","34.4899513"],["-119.7825059","34.4899148"],["-119.7824061","34.4898527"],["-119.7823433","34.4898044"],["-119.7822778","34.4897453"],["-119.782138","34.4895948"],["-119.7813391","34.4886888"],["-119.7812626","34.488595"],["-119.7812128","34.4885246"],["-119.7811752","34.4884657"],["-119.7811163","34.4883568"],["-119.7810889","34.4882992"],["-119.781061","34.4882323"],["-119.7810378","34.4881664"],["-119.7810209","34.4880986"],["-119.7810094","34.4880414"],["-119.7809993","34.4879665"],["-119.7809926","34.4878553"],["-119.7809099","34.4860198"],["-119.7809119","34.4858064"],["-119.7809226","34.4857265"],["-119.7809369","34.4856583"],["-119.7809514","34.485597"],["-119.7809961","34.4854626"],["-119.781056","34.4852917"],["-119.781083","34.4852187"],["-119.7811015","34.4851524"],["-119.7811171","34.4850883"],["-119.7811295","34.4850271"],["-119.7811366","34.4849651"],["-119.7811395","34.4848725"],["-119.7811372","34.4848342"],["-119.7811311","34.4847805"],["-119.7811249","34.4847371"],["-119.7811166","34.4846976"],["-119.7811008","34.4846412"],["-119.7810847","34.4845943"],["-119.7810458","34.4845043"],["-119.7810203","34.4844532"],["-119.7809887","34.4844001"],["-119.7809532","34.4843454"],["-119.780912","34.4842888"],["-119.7808615","34.4842312"],["-119.7807962","34.4841655"],["-119.7807257","34.484104"],["-119.7806617","34.4840584"],["-119.7805773","34.4840054"],["-119.7805208","34.483976"],["-119.7804578","34.4839466"],["-119.7803951","34.4839196"],["-119.7803202","34.4838933"],["-119.7802247","34.4838656"],["-119.7801374","34.4838449"],["-119.7800409","34.4838288"],["-119.779955","34.483818"],["-119.779806","34.4838127"],["-119.7797242","34.4838135"],["-119.7796109","34.4838214"],["-119.7792864","34.4838605"],["-119.7787743","34.483925"],["-119.7784731","34.4839555"],["-119.7782755","34.483958"],["-119.7779999","34.4839449"],["-119.7770093","34.4838512"],["-119.7769088","34.4838382"],["-119.7768475","34.4838285"],["-119.7767174","34.4838033"],["-119.7766294","34.4837888"],["-119.7765373","34.4837736"],["-119.7764594","34.4837595"],["-119.7763263","34.4837291"],["-119.7761569","34.4836826"],["-119.7756645","34.4835456"],["-119.7755949","34.4835289"],["-119.7754933","34.4835106"],["-119.7754484","34.4835016"],["-119.7749702","34.4833728"],["-119.7748373","34.4833342"],["-119.7747577","34.4833062"],["-119.7746889","34.4832789"],["-119.7746181","34.4832466"],["-119.7745349","34.4832051"],["-119.7744308","34.4831453"],["-119.774283","34.4830561"],["-119.7731713","34.4823478"],["-119.7729477","34.4822023"],["-119.7728388","34.4821298"],["-119.7727609","34.4820734"],["-119.7727015","34.4820279"],["-119.7726455","34.4819808"],["-119.7725966","34.4819364"],["-119.7724942","34.4818353"],["-119.772406","34.4817333"],["-119.7723694","34.4816864"],["-119.7723322","34.4816358"],["-119.7722968","34.4815815"],["-119.772269","34.4815351"],["-119.772242","34.4814854"],["-119.772217","34.4814332"],["-119.7721627","34.4813001"],["-119.7720732","34.4810251"],["-119.7719781","34.4807346"],["-119.7719569","34.4806753"],["-119.7719325","34.4806143"],["-119.7719065","34.4805556"],["-119.771877","34.4804943"],["-119.7718491","34.4804407"],["-119.7717829","34.4803332"],["-119.7717485","34.4802815"],["-119.7717063","34.4802241"],["-119.7716509","34.4801595"],["-119.7715876","34.4800916"],["-119.7715217","34.4800239"],["-119.7714438","34.4799526"],["-119.771366","34.4798886"],["-119.7712171","34.479777"],["-119.7711403","34.4797254"],["-119.7710602","34.479675"],["-119.7709308","34.479598"],["-119.7706154","34.4794239"],["-119.7701287","34.4791564"],["-119.7700111","34.4790882"],["-119.7699249","34.4790348"],["-119.7698277","34.4789686"],["-119.769739","34.478905"],["-119.7696243","34.4788124"],["-119.7695732","34.4787679"],["-119.7695293","34.4787274"],["-119.769481","34.4786802"],["-119.7694327","34.4786293"],["-119.7693796","34.478569"],["-119.7693119","34.4784852"],["-119.7692535","34.4784055"],["-119.7691964","34.478322"],["-119.7691568","34.4782529"],["-119.7691165","34.4781722"],["-119.7690772","34.4780836"],["-119.7690063","34.4779017"],["-119.7689661","34.4777212"],["-119.7689434","34.47756"],["-119.7689489","34.4774411"],["-119.7689525","34.4773922"],["-119.7689576","34.4773069"],["-119.7689668","34.4772476"],["-119.7689916","34.4771712"],["-119.7690138","34.4771105"],["-119.769041","34.4770491"],["-119.7690728","34.4769829"],["-119.7691066","34.4769228"],["-119.7691438","34.4768618"],["-119.7691789","34.4768126"],["-119.7692127","34.4767679"],["-119.7692467","34.4767281"],["-119.7692797","34.4766918"],["-119.769314","34.4766566"],["-119.7693854","34.4765906"],["-119.7694281","34.4765561"],["-119.7695389","34.4764719"],["-119.7696084","34.4764248"],["-119.7696831","34.4763798"],["-119.7697505","34.476344"],["-119.7698153","34.4763125"],["-119.769879","34.4762863"],["-119.7699567","34.4762627"],["-119.7700599","34.4762373"],["-119.7701739","34.4762112"],["-119.7705032","34.4761485"],["-119.7711312","34.4760291"],["-119.7712864","34.4759959"],["-119.7713725","34.4759737"],["-119.7714741","34.4759435"],["-119.7715478","34.4759169"],["-119.7716932","34.4758605"],["-119.7718335","34.4757949"],["-119.7719198","34.4757488"],["-119.7720757","34.4756557"],["-119.7722441","34.4755394"],["-119.7723176","34.475482"],["-119.7723963","34.4754105"],["-119.7724707","34.4753301"],["-119.7726644","34.4750863"],["-119.772895","34.4747826"],["-119.7729476","34.4747224"],["-119.7730018","34.4746653"],["-119.7730755","34.4745943"],["-119.7731605","34.4745174"],["-119.7733719","34.474344"],["-119.7737297","34.4740717"],["-119.7738453","34.4739874"],["-119.7739748","34.4739007"],["-119.7740736","34.473839"],["-119.7741497","34.4738021"],["-119.7742435","34.47376"],["-119.7743229","34.4737282"],["-119.7744187","34.4736936"],["-119.7747403","34.4735937"],["-119.7766272","34.4730484"],["-119.7767949","34.4729928"],["-119.7768877","34.4729551"],["-119.7769698","34.4729158"],["-119.7770472","34.4728742"],["-119.7771466","34.4728105"],["-119.7772291","34.4727539"],["-119.7773018","34.4726923"],["-119.777367","34.4726331"],["-119.7774239","34.4725761"],["-119.7774814","34.4725109"],["-119.7778634","34.4720515"],["-119.7779254","34.4719747"],["-119.7779506","34.4719404"],["-119.7779818","34.4718922"],["-119.7780309","34.4718023"],["-119.7780556","34.4717521"],["-119.7780801","34.4716972"],["-119.7781025","34.4716337"],["-119.778133","34.471539"],["-119.7781446","34.4714892"],["-119.7781554","34.4714305"],["-119.7781605","34.4713799"],["-119.7781612","34.4713396"],["-119.7781616","34.4713003"],["-119.7781588","34.4712508"],["-119.7781555","34.4712034"],["-119.7781505","34.4711581"],["-119.77814","34.4711033"],["-119.7781265","34.4710455"],["-119.7780995","34.47096"],["-119.7780643","34.4708696"],["-119.7780283","34.4707854"],["-119.7779837","34.4706953"],["-119.7779295","34.4706062"],["-119.7778847","34.470539"],["-119.7778439","34.4704812"],["-119.7777627","34.4703822"],["-119.7777171","34.4703318"],["-119.7776038","34.4702242"],["-119.7775062","34.4701446"],["-119.7774424","34.4700974"],["-119.7773357","34.4700299"],["-119.7772848","34.4700004"],["-119.7770995","34.4699078"],["-119.7770301","34.4698784"],["-119.7769445","34.4698448"],["-119.7768874","34.4698239"],["-119.7768297","34.4698047"],["-119.7767673","34.4697874"],["-119.7767049","34.4697715"],["-119.7765859","34.4697468"],["-119.7764789","34.4697292"],["-119.776356","34.4697169"],["-119.7761623","34.469705"],["-119.7753588","34.4696668"],["-119.7752599","34.4696622"],["-119.7741592","34.4695916"],["-119.774095","34.4695826"],["-119.7740043","34.4695659"],["-119.7738402","34.4695279"],["-119.7737558","34.4695058"],["-119.7736831","34.4694844"],["-119.7735488","34.4694365"],["-119.7734205","34.4693832"],["-119.7732673","34.4693099"],["-119.7731812","34.4692659"],["-119.7730043","34.4691658"],["-119.7729179","34.4691097"],["-119.7728424","34.4690541"],["-119.7727614","34.4689928"],["-119.772704","34.4689455"],["-119.7725815","34.4688326"],["-119.7725157","34.4687655"],["-119.7723778","34.4686131"],["-119.7723126","34.4685326"],["-119.7722325","34.4684291"],["-119.7721468","34.4683055"],["-119.7720582","34.4681676"],["-119.7719814","34.4680341"],["-119.7719178","34.4679068"],["-119.7718561","34.4677777"],["-119.771821","34.4676913"],["-119.7717892","34.4676066"],["-119.7717475","34.4674691"],["-119.771731","34.4674068"],["-119.7717149","34.4673443"],["-119.7717022","34.4672902"],["-119.7716894","34.4672318"],["-119.7716751","34.4671336"],["-119.7716633","34.4670262"],["-119.7716531","34.4669198"],["-119.7716436","34.4668061"],["-119.7716327","34.4666653"],["-119.7714742","34.4643251"],["-119.7714513","34.4641505"],["-119.7714277","34.4639867"],["-119.7714072","34.4638687"],["-119.7713558","34.4636111"],["-119.7712746","34.4632653"],["-119.7712355","34.4631193"],["-119.7711764","34.4629285"],["-119.7704939","34.4609886"],["-119.7704136","34.4607746"],["-119.7703745","34.4606832"],["-119.7703278","34.4605699"],["-119.7702678","34.460407"],["-119.7701827","34.4601603"],["-119.7699278","34.4595013"],["-119.7695458","34.4586845"],["-119.7694115","34.4584338"],["-119.7690209","34.4577649"],["-119.7688329","34.4574714"],["-119.7685382","34.4570536"],["-119.7681857","34.4565892"],["-119.7678989","34.4562348"],["-119.7675521","34.4558431"],["-119.7671923","34.455461"],["-119.767005","34.455271"],["-119.7668397","34.4551095"],["-119.766302","34.4546271"],["-119.7657404","34.4541558"],["-119.7654548","34.4539013"],["-119.7623509","34.4513347"],["-119.7621608","34.4511666"],["-119.7618897","34.4509169"],["-119.7617751","34.4508027"],["-119.7615282","34.4505401"],["-119.7613821","34.4503756"],["-119.7612484","34.4502159"],["-119.7611296","34.4500642"],["-119.7610316","34.4499317"],["-119.7609031","34.4497441"],["-119.7607901","34.449574"],["-119.7607004","34.4494299"],["-119.7606397","34.4493242"],["-119.7605646","34.4491701"],["-119.7604869","34.4489996"],["-119.760389","34.4487925"],["-119.7601299","34.4481863"],["-119.7600891","34.4480558"],["-119.7600419","34.4478911"],["-119.75994","34.4474412"],["-119.7599052","34.4472462"],["-119.7598741","34.4470091"],["-119.7598534","34.4468031"],["-119.7598421","34.4466457"],["-119.7598358","34.4464432"],["-119.759834","34.446185"],["-119.7598994","34.4435138"],["-119.7599257","34.44339"],["-119.7599499","34.4432604"],["-119.7599773","34.4431164"],["-119.7600498","34.4427678"],["-119.7600547","34.4427371"],["-119.7600565","34.4427032"],["-119.7600536","34.4426528"],["-119.7600474","34.4425634"],["-119.76005","34.4424853"],["-119.7600686","34.4422297"],["-119.7600873","34.4418521"],["-119.7600916","34.4417859"],["-119.7600977","34.4416868"],["-119.7601039","34.4415562"],["-119.7601102","34.4411805"],["-119.7600839","34.4410617"],["-119.760062","34.4409633"],["-119.7600496","34.4409232"],["-119.7600313","34.4408995"],["-119.7600123","34.440884"],["-119.7599903","34.440869"],["-119.7599564","34.4408567"],["-119.7583443","34.4408752"],["-119.7579938","34.4408632"],["-119.7577071","34.4408397"],["-119.7574399","34.4407992"],["-119.7572026","34.4407476"],["-119.7569661","34.4406811"],["-119.7566783","34.4405913"],["-119.7564593","34.4405616"],["-119.7563661","34.4405216"],["-119.7559579","34.4403451"],["-119.7558117","34.4402724"],["-119.7556736","34.4401951"],["-119.7556049","34.4401511"],["-119.7555421","34.4401183"],["-119.755377","34.440014"],["-119.7552023","34.4398969"],["-119.7550222","34.4397687"],["-119.7548356","34.4396265"],["-119.7546629","34.4394862"],["-119.7545518","34.4393918"],["-119.7515933","34.4367359"],["-119.7497783","34.4350621"],["-119.7483465","34.4337795"],["-119.7477096","34.4332459"],["-119.7467574","34.4325696"],["-119.7429049","34.4302691"],["-119.7416298","34.4296282"],["-119.7408492","34.4292962"],["-119.7400845","34.4290119"],["-119.7393469","34.4287745"],["-119.7385646","34.4285476"],["-119.7378669","34.4283719"],["-119.737276","34.4282722"],["-119.7368196","34.4282128"],["-119.7358969","34.4281427"],["-119.7351112","34.428077"],["-119.7340668","34.4279812"],["-119.7334155","34.4278938"],["-119.7328297","34.4277955"],["-119.7313023","34.4274898"],["-119.7303946","34.4273111"],["-119.7293376","34.4271022"],["-119.7289592","34.4270377"],["-119.7285594","34.4269747"],["-119.7251641","34.426511"],["-119.7246081","34.4264177"],["-119.7242409","34.4263463"],["-119.7217935","34.4258156"],["-119.721543","34.4257513"],["-119.721282","34.425675"],["-119.7210317","34.4255933"],["-119.7208019","34.4255112"],["-119.7205206","34.4253984"],["-119.7202436","34.4252761"],["-119.720042","34.4251803"],["-119.7198739","34.4250887"],["-119.7196625","34.4249627"],["-119.7194513","34.424819"],["-119.7178618","34.4236398"],["-119.7164521","34.4226423"],["-119.7108336","34.418461"],["-119.7092503","34.417456"],["-119.7080067","34.4167459"],["-119.7075147","34.4164336"],["-119.707122","34.4161553"],["-119.7066668","34.4158204"],["-119.7060322","34.4153118"],["-119.7052142","34.4145791"],["-119.7045967","34.414047"],["-119.7044316","34.4139083"],["-119.7041912","34.4137115"],["-119.7039963","34.4135627"],["-119.7038156","34.41343"],["-119.703529","34.4132349"],["-119.703379","34.4131378"],["-119.7030994","34.4129719"],["-119.7028496","34.4128603"],["-119.7025916","34.4127521"],["-119.7023584","34.4126624"],["-119.7020786","34.4125629"],["-119.701765","34.4124628"],["-119.7013927","34.4123562"],["-119.7010277","34.4122697"],["-119.7006997","34.4122105"],["-119.7004849","34.4121792"],["-119.7003035","34.4121589"],["-119.7000768","34.4121421"],["-119.6997946","34.41213"],["-119.6995444","34.4121258"],["-119.699309","34.4121292"],["-119.6991114","34.4121371"],["-119.6988872","34.4121556"],["-119.6986224","34.4121847"],["-119.6982876","34.4122318"],["-119.6980177","34.4122786"],["-119.6978118","34.4123209"],["-119.6975984","34.4123694"],["-119.6973834","34.4124245"],["-119.6971556","34.4124887"],["-119.6968544","34.4125864"],["-119.6961738","34.4128419"],["-119.6955485","34.4131154"],["-119.6954509","34.4131652"],["-119.6952927","34.4132459"],["-119.6951811","34.4133099"],["-119.695041","34.4134065"],["-119.6948932","34.413512"],["-119.6946912","34.4136549"],["-119.6944446","34.4138293"],["-119.6941717","34.4140337"],["-119.6939422","34.4142176"],["-119.693755","34.414381"],["-119.6935355","34.414594"],["-119.6898616","34.4180214"],["-119.6894496","34.418351"],["-119.6892451","34.4184976"],["-119.68902","34.4186382"],["-119.6887611","34.4187803"],["-119.6885832","34.4188687"],["-119.6884189","34.4189439"],["-119.6882453","34.4190156"],["-119.6880821","34.4190779"],["-119.6876846","34.4192128"],["-119.6874303","34.419279"],["-119.6871878","34.4193342"],["-119.6869629","34.4193732"],["-119.6777985","34.4202418"],["-119.6772115","34.4202758"],["-119.676887","34.4202791"],["-119.6766431","34.4202752"],["-119.6764086","34.4202614"],["-119.6761142","34.420235"],["-119.6738303","34.4198484"],["-119.6734232","34.4197901"],["-119.6731459","34.4197609"],["-119.6729083","34.4197497"],["-119.6726667","34.4197444"],["-119.6721411","34.419752"],["-119.6718595","34.4197672"],["-119.671524","34.4197977"],["-119.6711641","34.4198484"],["-119.6708393","34.4199089"],["-119.6704539","34.4199986"],["-119.6605516","34.4227637"],["-119.6602424","34.4228342"],["-119.6599642","34.4228869"],["-119.6596685","34.422933"],["-119.6593125","34.4229696"],["-119.6589441","34.4229879"],["-119.6585475","34.4229926"],["-119.6582254","34.4229821"],["-119.6577263","34.4229564"],["-119.6574095","34.4229252"],["-119.657107","34.4228883"],["-119.6567671","34.4228309"],["-119.6563542","34.4227387"],["-119.6458073","34.420025"],["-119.6448491","34.4197911"],["-119.644578","34.4197445"],["-119.6443077","34.4197123"],["-119.6440383","34.4196908"],["-119.6436015","34.4196741"],["-119.6432915","34.4196816"],["-119.6430251","34.4196976"],["-119.6427439","34.4197274"],["-119.6424091","34.4197812"],["-119.6420698","34.4198563"],["-119.6418028","34.4199286"],["-119.6415082","34.4200148"],["-119.6412442","34.4201093"],["-119.640974","34.4202204"],["-119.6406916","34.4203467"],["-119.6404018","34.4204964"],["-119.6385351","34.4214774"],["-119.6380215","34.4217136"],["-119.6375104","34.4219131"],["-119.636991","34.422088"],["-119.6365621","34.4222204"],["-119.6361282","34.4223269"],["-119.6356158","34.4224314"],["-119.6350354","34.4225247"],["-119.6343603","34.4225791"],["-119.633769","34.4226022"],["-119.6333678","34.4225999"],["-119.6329614","34.4225742"],["-119.6325181","34.4225275"],["-119.6321349","34.4224696"],["-119.6317713","34.4223927"],["-119.6313991","34.4222979"],["-119.62875","34.4215175"],["-119.6276302","34.4211923"],["-119.627095","34.4210727"],["-119.6266122","34.4209809"],["-119.6262214","34.4209337"],["-119.6258077","34.4208924"],["-119.6253113","34.4208536"],["-119.6232803","34.4207745"],["-119.6229489","34.4207852"],["-119.621378","34.4209"],["-119.619835","34.4210292"],["-119.6172848","34.4213491"],["-119.6165144","34.4214485"],["-119.6150435","34.421572"],["-119.6144305","34.4216104"],["-119.6136481","34.4216283"],["-119.6133207","34.4216244"],["-119.6122768","34.4215743"],["-119.6116431","34.4215217"],["-119.6110276","34.4214439"],["-119.610425","34.4213372"],["-119.6082221","34.4208322"],["-119.6075826","34.4207231"],["-119.6071067","34.4206876"],["-119.6066904","34.4206762"],["-119.6062927","34.4206816"],["-119.6057867","34.4207073"],["-119.6052543","34.4207744"],["-119.6033037","34.421059"],["-119.6029145","34.4211055"],["-119.6026183","34.4211326"],["-119.6023894","34.4211437"],["-119.6019927","34.4211533"],["-119.6017235","34.4211472"],["-119.6012688","34.4211282"],["-119.6010731","34.4211122"],["-119.6008998","34.4210944"],["-119.6006644","34.421066"],["-119.6004598","34.4210372"],["-119.6002688","34.421006"],["-119.5998111","34.4209121"],["-119.5994833","34.4208339"],["-119.5992133","34.4207559"],["-119.5965067","34.4198771"],["-119.595861","34.4196745"],["-119.5929398","34.4190003"],["-119.5926307","34.4189213"],["-119.5922321","34.4188064"],["-119.5918157","34.4186717"],["-119.5901304","34.4180025"],["-119.5895704","34.4177888"],["-119.5889792","34.4175904"],["-119.5881487","34.4173458"],["-119.5871755","34.4171271"],["-119.5863154","34.4169524"],["-119.5856708","34.416859"],["-119.5831744","34.4165765"],["-119.5823733","34.4164615"],["-119.5817514","34.4163419"],["-119.5780556","34.4155731"],["-119.5775331","34.4154803"],["-119.5771071","34.4154359"],["-119.5765903","34.4154159"],["-119.5761126","34.4154177"],["-119.5754687","34.415449"],["-119.5746896","34.4155396"],["-119.5677947","34.416515"],["-119.567172","34.4165838"],["-119.5667624","34.416608"],["-119.5663736","34.4166179"],["-119.5658746","34.416594"],["-119.562164","34.4162406"],["-119.5610619","34.4161129"],["-119.5606284","34.4160295"],["-119.5603034","34.4159381"],["-119.5599809","34.4158246"],["-119.5596141","34.4156772"],["-119.55935","34.4155368"],["-119.5590792","34.4153825"],["-119.5588901","34.4152629"],["-119.5587772","34.4151853"],["-119.5585009","34.4149719"],["-119.556221","34.4130521"],["-119.5481812","34.4072199"],["-119.5475475","34.4068216"],["-119.547015","34.4065573"],["-119.546526","34.4063621"],["-119.54611","34.4062254"],["-119.5454704","34.4060537"],["-119.5450105","34.4059663"],["-119.5444443","34.4058963"],["-119.5438601","34.4058537"],["-119.5432938","34.4058243"],["-119.5406002","34.4057822"],["-119.5402533","34.4057553"],["-119.5399345","34.405718"],["-119.5377001","34.4053159"],["-119.5264233","34.4031697"],["-119.5197017","34.4019129"],["-119.5181421","34.4015887"],["-119.5171749","34.4013101"],["-119.5167515","34.40116"],["-119.5163343","34.4009837"],["-119.5158892","34.4007801"],["-119.5154201","34.4005264"],["-119.5149435","34.4002465"],["-119.5145849","34.400009"],["-119.5139773","34.3995551"],["-119.5137593","34.3993744"],["-119.5132877","34.3989252"],["-119.5129454","34.3985468"],["-119.5127249","34.3982817"],["-119.5124867","34.3979602"],["-119.5122156","34.3975778"],["-119.5116703","34.3967674"],["-119.5110544","34.3958595"],["-119.5105991","34.3951935"],["-119.5091937","34.3931812"],["-119.5087768","34.392662"],["-119.5084236","34.3923129"],["-119.5079696","34.3919171"],["-119.5076182","34.3916488"],["-119.5071883","34.3913766"],["-119.5065018","34.3910136"],["-119.5056425","34.390683"],["-119.4898097","34.3856007"],["-119.4895698","34.385536"],["-119.4862801","34.3844578"],["-119.4859688","34.384345"],["-119.4857349","34.3842477"],["-119.4855175","34.3841493"],["-119.4853487","34.3840675"],["-119.4851747","34.3839766"],["-119.4849983","34.3838774"],["-119.4846321","34.3836473"],["-119.4844037","34.383485"],["-119.4841577","34.3832909"],["-119.4839118","34.3830803"],["-119.4836836","34.3828597"],["-119.4834753","34.3826316"],["-119.483283","34.3824009"],["-119.4831083","34.3821614"],["-119.4829162","34.3818679"],["-119.4825121","34.3811823"],["-119.4814246","34.3793518"],["-119.4811586","34.3789138"],["-119.4809957","34.3786488"],["-119.4808968","34.3785002"],["-119.480785","34.3783436"],["-119.4806691","34.3781969"],["-119.4803747","34.3778573"],["-119.4801573","34.3776368"],["-119.47994","34.3774314"],["-119.4797439","34.3772651"],["-119.4795636","34.3771232"],["-119.4791665","34.3768539"],["-119.4789694","34.376734"],["-119.4785755","34.3765244"],["-119.4783549","34.3764187"],["-119.4781268","34.3763172"],["-119.4777311","34.3761683"],["-119.4775044","34.3760915"],["-119.4772534","34.3760165"],["-119.476961","34.3759391"],["-119.4765278","34.3758454"],["-119.4761725","34.3757873"],["-119.4758101","34.3757453"],["-119.4754729","34.3757216"],["-119.4752052","34.375714"],["-119.4749917","34.3757126"],["-119.4745911","34.3757284"],["-119.4743512","34.3757498"],["-119.474113","34.3757768"],["-119.4738357","34.3758211"],["-119.4732325","34.3759349"],["-119.4729892","34.3759832"],["-119.4723572","34.376108"],["-119.4718897","34.3761839"],["-119.4711076","34.37627"],["-119.4708111","34.3762888"],["-119.4704918","34.3763011"],["-119.4701315","34.3762997"],["-119.4697149","34.376289"],["-119.4693589","34.3762644"],["-119.4689375","34.3762219"],["-119.4683939","34.3761443"],["-119.4678601","34.3760465"],["-119.4616096","34.3745581"],["-119.4610757","34.3743868"],["-119.4606814","34.3742339"],["-119.4602894","34.3740672"],["-119.4598439","34.3738576"],["-119.4594235","34.3736302"],["-119.4589427","34.3733539"],["-119.4585036","34.3730756"],["-119.457964","34.3727006"],["-119.4573679","34.3722584"],["-119.4567064","34.3716959"],["-119.454691","34.3698766"],["-119.4542973","34.3694978"],["-119.4535717","34.3687243"],["-119.453144","34.3682173"],["-119.4518609","34.3666023"],["-119.4513885","34.3660378"],["-119.4507243","34.3652912"],["-119.4486119","34.3629727"],["-119.4478839","34.3621887"],["-119.4456216","34.3598047"],["-119.4437953","34.3578378"],["-119.4435347","34.3575956"],["-119.4432828","34.3573905"],["-119.4428501","34.3570851"],["-119.4426369","34.3569616"],["-119.44236","34.3568159"],["-119.4420759","34.356685"],["-119.4418083","34.3565705"],["-119.4415484","34.3564831"],["-119.4412828","34.3564069"],["-119.441034","34.3563479"],["-119.4405547","34.3562481"],["-119.4403283","34.3562134"],["-119.4401417","34.3561943"],["-119.439957","34.3561816"],["-119.4395261","34.3561661"],["-119.4392586","34.3561625"],["-119.4389969","34.3561687"],["-119.437346","34.3562214"],["-119.4371065","34.3562226"],["-119.4368721","34.3562186"],["-119.4362308","34.3561788"],["-119.4348438","34.3560337"],["-119.4343762","34.3559696"],["-119.4340549","34.3559163"],["-119.4337423","34.3558584"],["-119.4331911","34.3557426"],["-119.4325947","34.355586"],["-119.4323167","34.3555036"],["-119.4318912","34.3553685"],["-119.4314637","34.355217"],["-119.4312033","34.355119"],["-119.4308123","34.3549558"],["-119.4300464","34.3546045"],["-119.4297796","34.3544641"],["-119.4294281","34.3542634"],["-119.4291127","34.354077"],["-119.4287217","34.3538378"],["-119.4278704","34.353237"],["-119.4275554","34.3529819"],["-119.4271822","34.3526353"],["-119.4268721","34.3523213"],["-119.4265871","34.3520125"],["-119.4262906","34.3516521"],["-119.4239622","34.3486504"],["-119.4234643","34.3480087"],["-119.4223966","34.3466178"],["-119.422152","34.3463055"],["-119.4218653","34.3459813"],["-119.4215419","34.3456676"],["-119.42113","34.3453035"],["-119.4207159","34.344957"],["-119.4203158","34.3446263"],["-119.4187286","34.3434603"],["-119.4184217","34.3432057"],["-119.4183104","34.3430567"],["-119.4182304","34.3429082"],["-119.4180991","34.3425582"],["-119.4179751","34.3423441"],["-119.417889","34.3422634"],["-119.4177998","34.3422024"],["-119.417652","34.3421382"],["-119.4175394","34.3421089"],["-119.4174241","34.3420981"],["-119.4172771","34.3421093"],["-119.4171503","34.3421285"],["-119.4170183","34.342174"],["-119.4168015","34.3423002"],["-119.4164552","34.3425315"],["-119.4161868","34.3427"],["-119.4162419","34.3427715"],["-119.4165699","34.3425523"],["-119.4167857","34.3423987"],["-119.4169451","34.3422918"],["-119.4170375","34.3422361"],["-119.4171396","34.3421887"],["-119.4172141","34.3421696"],["-119.4172806","34.3421576"],["-119.4173568","34.3421525"],["-119.4174387","34.3421568"],["-119.4175439","34.3421768"],["-119.4176412","34.3422107"],["-119.4177229","34.3422587"],["-119.4177867","34.342314"],["-119.4178413","34.3423721"],["-119.4178789","34.3424239"],["-119.4179088","34.342484"],["-119.4179288","34.342545"],["-119.4179468","34.3426097"],["-119.4179419","34.3426798"],["-119.4179323","34.3427451"],["-119.41791","34.3428126"],["-119.4178795","34.3428774"],["-119.4178298","34.342943"],["-119.4177795","34.3429926"],["-119.4177166","34.3430411"],["-119.4176613","34.343076"],["-119.4175711","34.3431166"],["-119.4174517","34.3431408"],["-119.4172374","34.3431386"],["-119.4156856","34.3427483"],["-119.4140772","34.3422462"],["-119.4135744","34.3420587"],["-119.4128345","34.3417125"],["-119.4124701","34.3415129"],["-119.4120206","34.3412467"],["-119.4116415","34.3409923"],["-119.402815","34.3344796"],["-119.4022696","34.3340471"],["-119.4019506","34.3337716"],["-119.4015826","34.3334293"],["-119.4011313","34.332978"],["-119.3929791","34.3240377"],["-119.3926042","34.3236514"],["-119.392144","34.3232483"],["-119.3916945","34.3228906"],["-119.3913711","34.3226638"],["-119.3909831","34.3224178"],["-119.3904943","34.3221344"],["-119.3899965","34.3218755"],["-119.3896592","34.321725"],["-119.389265","34.3215615"],["-119.3888944","34.3214259"],["-119.3885006","34.3212902"],["-119.3880304","34.3211486"],["-119.3874482","34.3210112"],["-119.3868869","34.3209054"],["-119.3864368","34.3208485"],["-119.3857094","34.320792"],["-119.3853001","34.3207765"],["-119.3843103","34.3207851"],["-119.3839342","34.3208113"],["-119.383584","34.3208545"],["-119.3831503","34.3209224"],["-119.382263","34.3210929"],["-119.3782371","34.3219131"],["-119.3775137","34.3220402"],["-119.3769779","34.3221007"],["-119.3765211","34.3221262"],["-119.3752931","34.3221286"],["-119.3749022","34.3220972"],["-119.3745251","34.3220599"],["-119.3741517","34.3220115"],["-119.3737491","34.3219511"],["-119.3733924","34.3218766"],["-119.3730378","34.3217928"],["-119.3724809","34.3216391"],["-119.3719874","34.3214821"],["-119.3716171","34.3213476"],["-119.3713086","34.3212147"],["-119.3709704","34.3210603"],["-119.3705721","34.320857"],["-119.3653297","34.3179546"],["-119.3645692","34.3175347"],["-119.3641044","34.3172588"],["-119.3637461","34.3170172"],["-119.3630931","34.3165439"],["-119.3568595","34.3118335"],["-119.3525381","34.3089217"],["-119.3514636","34.3081663"],["-119.3509261","34.3077614"],["-119.3500351","34.3070511"],["-119.3492668","34.3063967"],["-119.3474747","34.3047883"],["-119.3471183","34.3044372"],["-119.3467045","34.3040066"],["-119.3462708","34.303545"],["-119.3451849","34.3023344"],["-119.3445498","34.3015334"],["-119.3433549","34.2999133"],["-119.3419337","34.2979421"],["-119.3415625","34.2974207"],["-119.3412551","34.2969883"],["-119.3397424","34.2949139"],["-119.3385786","34.2933607"],["-119.3380191","34.2926767"],["-119.337559","34.2921661"],["-119.3371204","34.2917441"],["-119.3366668","34.2913522"],["-119.3361504","34.2909721"],["-119.3355831","34.2905822"],["-119.3351263","34.2902921"],["-119.3346316","34.2900098"],["-119.3340002","34.289704"],["-119.3333618","34.289432"],["-119.3281206","34.2874646"],["-119.3258212","34.2865745"],["-119.322197","34.2850443"],["-119.3207931","34.2843917"],["-119.3183244","34.2831946"],["-119.3160065","34.2821507"],["-119.3145177","34.2815439"],["-119.3137625","34.2812883"],["-119.3044471","34.2784558"],["-119.3038475","34.2782722"],["-119.3015152","34.2775765"],["-119.301159","34.277496"],["-119.3007905","34.2774358"],["-119.3002445","34.2773809"],["-119.2993374","34.2773592"],["-119.2951361","34.2773521"],["-119.2935127","34.2773421"],["-119.2929681","34.2773147"],["-119.2925271","34.2772672"],["-119.2921389","34.2772115"],["-119.2916661","34.2771188"],["-119.2912103","34.2770154"],["-119.2908125","34.2768957"],["-119.2902807","34.2767118"],["-119.2898333","34.2765436"],["-119.2895092","34.276409"],["-119.289064","34.2761875"],["-119.2886534","34.275969"],["-119.2883197","34.2757799"],["-119.2878014","34.2754455"],["-119.2851311","34.2735782"],["-119.2842475","34.2729767"],["-119.2839164","34.2727949"],["-119.2835674","34.2726244"],["-119.2831831","34.2724597"],["-119.2827052","34.2722858"],["-119.2824405","34.2722011"],["-119.2820444","34.2721059"],["-119.2815409","34.2720126"],["-119.2808794","34.2719376"],["-119.2802267","34.271915"],["-119.278851","34.2718869"],["-119.2782938","34.2718583"],["-119.2778722","34.2718131"],["-119.2773838","34.2717462"],["-119.2768476","34.2716463"],["-119.2764607","34.2715448"],["-119.2760536","34.2714165"],["-119.2755493","34.2712304"],["-119.2750623","34.271025"],["-119.2746896","34.2708447"],["-119.27437","34.2706706"],["-119.2741047","34.2705068"],["-119.2738544","34.2703408"],["-119.2735836","34.2701421"],["-119.2729681","34.2696265"],["-119.2727129","34.2693856"],["-119.2724457","34.2690858"],["-119.2721879","34.268778"],["-119.2720259","34.2685608"],["-119.271523","34.2677775"],["-119.270716","34.2665141"],["-119.2703024","34.2659471"],["-119.2699865","34.2655874"],["-119.2695088","34.265111"],["-119.2691347","34.2647826"],["-119.2687556","34.2644788"],["-119.2681645","34.2640657"],["-119.2678574","34.2638745"],["-119.2671301","34.2634778"],["-119.266628","34.2632385"],["-119.2662287","34.2630748"],["-119.2565228","34.2596077"],["-119.2553159","34.2592182"],["-119.2549447","34.2591248"],["-119.2545401","34.2590498"],["-119.2542416","34.2590069"],["-119.2539392","34.258976"],["-119.2536171","34.2589571"],["-119.2532712","34.2589513"],["-119.2529092","34.2589594"],["-119.2525807","34.2589791"],["-119.2522772","34.2590111"],["-119.2518389","34.259085"],["-119.2514691","34.2591636"],["-119.2509552","34.259292"],["-119.2505236","34.2594338"],["-119.2501649","34.259577"],["-119.2497495","34.259764"],["-119.2492398","34.2600443"],["-119.2489571","34.2602276"],["-119.2487376","34.2603936"],["-119.2483463","34.2607404"],["-119.2474911","34.261458"],["-119.2466186","34.2621886"],["-119.2459206","34.2627675"],["-119.2455865","34.263015"],["-119.2453863","34.2631591"],["-119.2451977","34.2632928"],["-119.2447636","34.2635492"],["-119.2444174","34.263737"],["-119.2440503","34.263918"],["-119.2438398","34.2640112"],["-119.2433336","34.2642114"],["-119.2429925","34.2643396"],["-119.2427539","34.26442"],["-119.2419394","34.2646595"],["-119.2415412","34.2647461"],["-119.2411663","34.2648144"],["-119.2408601","34.264861"],["-119.2405322","34.2648968"],["-119.2399491","34.2649331"],["-119.2393965","34.2649601"],["-119.2389668","34.26495"],["-119.2385281","34.2649283"],["-119.238106","34.2648933"],["-119.2373304","34.2647898"],["-119.2368796","34.2647039"],["-119.2364228","34.2646038"],["-119.2356655","34.2643827"],["-119.2352434","34.2642314"],["-119.2348195","34.2640597"],["-119.2337161","34.2635393"],["-119.2213219","34.2576982"],["-119.2177375","34.2561064"],["-119.2141629","34.2543"],["-119.2129696","34.2536146"],["-119.2088652","34.2511015"],["-119.2078002","34.2504843"],["-119.2072639","34.2502047"],["-119.2065437","34.2498808"],["-119.2040835","34.2488232"],["-119.2027094","34.248165"],["-119.1959026","34.2446379"],["-119.1953702","34.2443745"],["-119.1950377","34.2442355"],["-119.1940609","34.2438978"],["-119.1933656","34.2436487"],["-119.1811508","34.2392908"],["-119.1806996","34.2391074"],["-119.1803446","34.238936"],["-119.1799998","34.2387563"],["-119.1796106","34.238537"],["-119.1792478","34.2383147"],["-119.1788628","34.2380544"],["-119.1785216","34.2378028"],["-119.1782035","34.2375504"],["-119.1778444","34.2372403"],["-119.1775134","34.2369224"],["-119.1772614","34.236652"],["-119.1766628","34.2359397"],["-119.1760966","34.2352335"],["-119.1759316","34.2350206"],["-119.1730004","34.2312732"],["-119.172815","34.2310507"],["-119.1723907","34.2305541"],["-119.1719778","34.2301056"],["-119.1712247","34.2294084"],["-119.1706265","34.2289466"],["-119.1702026","34.2286423"],["-119.1696235","34.2283079"],["-119.1693386","34.228155"],["-119.1690178","34.227995"],["-119.1682787","34.2276933"],["-119.1679618","34.2275717"],["-119.1672049","34.2273011"],["-119.1667444","34.227151"],["-119.1644888","34.2265517"],["-119.1539665","34.2237927"],["-119.1534716","34.2236898"],["-119.1528408","34.2235782"],["-119.1511664","34.2233803"],["-119.1430417","34.2225696"],["-119.1326925","34.2220517"],["-119.1248442","34.2219959"],["-119.1225103","34.2219513"],["-119.1041795","34.2218243"],["-119.1032193","34.2217688"],["-119.0534078","34.2177556"],["-119.0496501","34.2175261"],["-119.0372153","34.2172436"],["-119.0365587","34.2171939"],["-119.0361241","34.2171407"],["-119.0356363","34.217062"],["-119.035178","34.2169685"],["-119.0348272","34.2168864"],["-119.0328213","34.2163799"],["-119.0321917","34.2162164"],["-119.0313322","34.2159961"],["-119.0310327","34.2159294"],["-119.0306272","34.2158492"],["-119.0301823","34.21578"],["-119.0297159","34.2157239"],["-119.029208","34.2156863"],["-119.0285837","34.2156679"],["-119.0158045","34.2156759"],["-119.0152006","34.215667"],["-119.0147866","34.21563"],["-119.0139401","34.215503"],["-119.0135761","34.2154318"],["-119.0128195","34.2152509"],["-119.0028086","34.2119992"],["-119.0021276","34.2117746"],["-118.9965692","34.2099676"],["-118.995426","34.2095791"],["-118.9951107","34.2094536"],["-118.9943206","34.2090866"],["-118.9937612","34.208782"],["-118.9934634","34.2085988"],["-118.9931872","34.2084066"],["-118.9929765","34.2082525"],["-118.9926977","34.208037"],["-118.9923897","34.2077822"],["-118.9920719","34.2074944"],["-118.9912966","34.2067741"],["-118.9907436","34.2063133"],["-118.9904883","34.2061319"],["-118.9901421","34.2059207"],["-118.9897618","34.2057345"],["-118.9894617","34.205604"],["-118.9891624","34.2054945"],["-118.9888908","34.2054131"],["-118.9886069","34.2053451"],["-118.9883751","34.2052986"],["-118.9880908","34.205254"],["-118.987812","34.2052223"],["-118.9874759","34.2052083"],["-118.9872196","34.2052084"],["-118.9870022","34.2052168"],["-118.9858262","34.2053093"],["-118.9852294","34.2053476"],["-118.9849259","34.2053502"],["-118.9846727","34.2053381"],["-118.984402","34.2053143"],["-118.9841636","34.2052796"],["-118.9838799","34.2052231"],["-118.9834599","34.2051213"],["-118.983217","34.2050552"],["-118.9829517","34.2049615"],["-118.9827888","34.2048933"],["-118.9826187","34.2048139"],["-118.9823906","34.2046966"],["-118.9821051","34.2045348"],["-118.9817905","34.2043214"],["-118.981579","34.2041575"],["-118.9813829","34.2039922"],["-118.9811109","34.2037456"],["-118.9808304","34.2034757"],["-118.9803985","34.2030583"],["-118.9799423","34.2026237"],["-118.9795298","34.2023091"],["-118.9790853","34.2020326"],["-118.9786599","34.2018111"],["-118.9781013","34.2015503"],["-118.9778039","34.2014375"],["-118.9771371","34.201238"],["-118.9768179","34.2011628"],["-118.9765633","34.2011153"],["-118.9759255","34.2010248"],["-118.97546","34.2010013"],["-118.9748753","34.2009933"],["-118.9734338","34.2011123"],["-118.9727775","34.2011689"],["-118.9722938","34.2012039"],["-118.9718703","34.2012219"],["-118.9712638","34.2012059"],["-118.9677808","34.2010146"],["-118.9658902","34.2009057"],["-118.9656406","34.2008778"],["-118.9654233","34.2008417"],["-118.9651013","34.2007803"],["-118.9641867","34.2005513"],["-118.9637366","34.2004264"],["-118.9632507","34.2002932"],["-118.96287","34.2001986"],["-118.9626468","34.2001572"],["-118.9624565","34.2001311"],["-118.9622677","34.2001145"],["-118.9620474","34.2001031"],["-118.9618554","34.2000986"],["-118.9616022","34.2001008"],["-118.9601632","34.2001862"],["-118.9597963","34.2002075"],["-118.9594903","34.2002146"],["-118.9592405","34.2002044"],["-118.9589789","34.2001884"],["-118.958727","34.2001571"],["-118.9584779","34.2001193"],["-118.9582428","34.20007"],["-118.9579523","34.1999936"],["-118.9576368","34.1998949"],["-118.9573321","34.199782"],["-118.9570604","34.1996539"],["-118.9567031","34.1994613"],["-118.9533709","34.1975771"],["-118.9528628","34.1972527"],["-118.9484779","34.1940209"],["-118.9480996","34.1937603"],["-118.9478345","34.1935919"],["-118.9475925","34.1934569"],["-118.9472729","34.193289"],["-118.9468775","34.1930941"],["-118.9421217","34.1909198"],["-118.9287396","34.1852265"],["-118.9276032","34.1847857"],["-118.9270543","34.1846193"],["-118.9265383","34.1844964"],["-118.9260042","34.184387"],["-118.9253722","34.1842864"],["-118.9248826","34.1842345"],["-118.9241578","34.1841952"],["-118.9227239","34.1841976"],["-118.901801","34.184341"],["-118.8996685","34.1844253"],["-118.897376","34.1846075"],["-118.8969352","34.1846238"],["-118.8964902","34.1846243"],["-118.8961383","34.1846111"],["-118.8956861","34.1845773"],["-118.8951857","34.1845221"],["-118.8948086","34.184464"],["-118.8943648","34.1843885"],["-118.8940555","34.1843204"],["-118.8936769","34.184225"],["-118.8933861","34.1841395"],["-118.8927466","34.1839185"],["-118.8924348","34.1837969"],["-118.8920187","34.1836204"],["-118.8915453","34.1833932"],["-118.8904035","34.1828297"],["-118.8827494","34.1790518"],["-118.8810396","34.1782364"],["-118.8804888","34.1780146"],["-118.8800295","34.1778561"],["-118.8795653","34.1777223"],["-118.8791204","34.1776092"],["-118.8786484","34.1775119"],["-118.8781593","34.1774336"],["-118.8777075","34.1773772"],["-118.8772967","34.1773383"],["-118.8560084","34.1757641"],["-118.8547497","34.175664"],["-118.8542064","34.1755896"],["-118.8536223","34.1754805"],["-118.8529235","34.1753077"],["-118.8522799","34.1751018"],["-118.8517087","34.1748831"],["-118.8512512","34.1746786"],["-118.8508212","34.1744391"],["-118.8503235","34.1741581"],["-118.8493962","34.1735864"],["-118.8462174","34.1714799"],["-118.8453083","34.1708753"],["-118.8427264","34.1691409"],["-118.8410263","34.1680018"],["-118.8393579","34.1669028"],["-118.8341828","34.1635144"],["-118.8331596","34.1628247"],["-118.820595","34.1544627"],["-118.8199812","34.1540867"],["-118.8195046","34.153851"],["-118.8190274","34.1536275"],["-118.8185206","34.1534074"],["-118.8173971","34.1530526"],["-118.8167788","34.1528679"],["-118.7979313","34.1470509"],["-118.796513","34.1466409"],["-118.7958702","34.1464892"],["-118.7952962","34.1463774"],["-118.7946588","34.1462698"],["-118.7939803","34.146183"],["-118.7933068","34.1461108"],["-118.7925607","34.1460682"],["-118.7919179","34.1460485"],["-118.7906484","34.1460823"],["-118.774423","34.1473051"],["-118.7737164","34.1473295"],["-118.7730381","34.1473304"],["-118.7722729","34.1472981"],["-118.7710018","34.1471765"],["-118.756749","34.1453503"],["-118.7553335","34.14515"],["-118.7516956","34.1444557"],["-118.7475682","34.143661"],["-118.7448932","34.1431808"],["-118.7433565","34.1430577"],["-118.7427578","34.1430452"],["-118.7387467","34.1430803"],["-118.7383211","34.1430513"],["-118.7378794","34.1429995"],["-118.737447","34.1429238"],["-118.7370184","34.1428228"],["-118.7365806","34.1426922"],["-118.7361561","34.1425354"],["-118.7357827","34.1423703"],["-118.7354042","34.1421719"],["-118.7342556","34.1414217"],["-118.7327392","34.1404072"],["-118.7305232","34.1389212"],["-118.7301904","34.1387357"],["-118.7298703","34.1385678"],["-118.7294775","34.1383849"],["-118.7290563","34.1382248"],["-118.728708","34.1381171"],["-118.7283617","34.1380255"],["-118.7279953","34.1379483"],["-118.7275633","34.137883"],["-118.7271634","34.1378479"],["-118.7267655","34.1378318"],["-118.7263828","34.1378376"],["-118.7258786","34.1378783"],["-118.7220209","34.1384144"],["-118.7212988","34.1384929"],["-118.7172852","34.1387227"],["-118.7164599","34.1387887"],["-118.7159054","34.1388653"],["-118.7153354","34.1389743"],["-118.7147579","34.1391194"],["-118.71284","34.1397301"],["-118.7107191","34.1404296"],["-118.7087775","34.1410976"],["-118.7080896","34.1413838"],["-118.70752","34.1416382"],["-118.7070075","34.1418911"],["-118.7066584","34.1420775"],["-118.7062906","34.1422778"],["-118.7048363","34.1430977"],["-118.7015472","34.1449637"],["-118.7008307","34.1454489"],["-118.7001594","34.1459975"],["-118.6990185","34.1471508"],["-118.696987","34.1492786"],["-118.6967072","34.1495505"],["-118.6963358","34.1498488"],["-118.6958708","34.1501807"],["-118.6954272","34.1504273"],["-118.6949405","34.1506398"],["-118.6944851","34.1507999"],["-118.6939313","34.1509583"],["-118.6934183","34.1510544"],["-118.6929374","34.151105"],["-118.6924376","34.1511322"],["-118.6920499","34.1511242"],["-118.6915845","34.151081"],["-118.6910069","34.1509866"],["-118.6898561","34.1507409"],["-118.6891145","34.1505905"],["-118.6887825","34.1505392"],["-118.6883571","34.1504946"],["-118.6878513","34.1504684"],["-118.6873576","34.1504814"],["-118.6869011","34.15052"],["-118.686247","34.1506249"],["-118.6849378","34.1508854"],["-118.6842184","34.1509985"],["-118.6837985","34.1510395"],["-118.6832875","34.1510567"],["-118.6806406","34.1510453"],["-118.6798103","34.1510183"],["-118.6793101","34.1509693"],["-118.6788767","34.1508875"],["-118.6784488","34.1507802"],["-118.6773999","34.1504334"],["-118.6750626","34.1496283"],["-118.6741991","34.1493532"],["-118.673764","34.1492488"],["-118.6733328","34.1491768"],["-118.672795","34.1491196"],["-118.6723108","34.1491004"],["-118.6717382","34.1491142"],["-118.6667758","34.1493943"],["-118.6656735","34.1494869"],["-118.6649569","34.1495867"],["-118.6642821","34.1497084"],["-118.6634905","34.1498781"],["-118.6625599","34.1501239"],["-118.6572595","34.1516372"],["-118.6537377","34.1526661"],["-118.6529504","34.1529525"],["-118.6513594","34.1536087"],["-118.6422546","34.1575597"],["-118.6416006","34.1578237"],["-118.6256532","34.1637043"],["-118.6246443","34.1640469"],["-118.6236197","34.1643902"],["-118.6208624","34.1652536"],["-118.6165021","34.1666315"],["-118.6157386","34.1669297"],["-118.6150483","34.1672924"],["-118.6145184","34.1675861"],["-118.6142289","34.1677849"],["-118.6139804","34.1679595"],["-118.6134296","34.1683568"],["-118.6123519","34.1691246"],["-118.6120113","34.1693499"],["-118.6117067","34.1695341"],["-118.6113243","34.1697464"],["-118.6107907","34.1699951"],["-118.6103613","34.1701586"],["-118.6099085","34.1703151"],["-118.6094297","34.1704528"],["-118.6089921","34.1705584"],["-118.6085234","34.1706393"],["-118.6080577","34.1707003"],["-118.607628","34.1707321"],["-118.607206","34.1707521"],["-118.6068198","34.1707518"],["-118.6064351","34.170735"],["-118.6060574","34.1706978"],["-118.60552","34.170626"],["-118.5893616","34.1681428"],["-118.5878323","34.1679401"],["-118.5873199","34.1678976"],["-118.5867484","34.1678613"],["-118.5862369","34.1678518"],["-118.5857426","34.1678536"],["-118.5851179","34.1678711"],["-118.5843027","34.1679284"],["-118.5833595","34.1680401"],["-118.5823913","34.1681986"],["-118.5815275","34.1683723"],["-118.5806957","34.1685912"],["-118.5796925","34.1689027"],["-118.5707068","34.1722129"],["-118.5696072","34.17251"],["-118.5689751","34.1726473"],["-118.5679836","34.1728126"],["-118.5664912","34.1729865"],["-118.560665","34.1734829"],["-118.5598065","34.1735394"],["-118.5584391","34.1735568"],["-118.5370543","34.1732084"],["-118.536564","34.1731895"],["-118.5361815","34.1731648"],["-118.5357832","34.1731175"],["-118.5352776","34.173038"],["-118.5347467","34.1729279"],["-118.5343104","34.1727983"],["-118.5337552","34.172595"],["-118.5326153","34.1721058"],["-118.5321612","34.1719087"],["-118.531789","34.1717519"],["-118.5313783","34.1716103"],["-118.5310275","34.1714994"],["-118.5305889","34.1713758"],["-118.5301276","34.1712698"],["-118.5296368","34.1711948"],["-118.5291383","34.171145"],["-118.5284169","34.1711225"],["-118.5046172","34.1710906"],["-118.5040249","34.171062"],["-118.5036246","34.1710244"],["-118.5032138","34.170964"],["-118.5027845","34.1708801"],["-118.5023641","34.1707861"],["-118.501873","34.1706394"],["-118.5013579","34.1704617"],["-118.5008856","34.1702626"],["-118.5004244","34.1700363"],["-118.5000635","34.1698386"],["-118.4991972","34.1692885"],["-118.4944783","34.1662535"],["-118.4940354","34.1659945"],["-118.4936458","34.1658036"],["-118.4932957","34.165659"],["-118.4929234","34.1655236"],["-118.492592","34.165414"],["-118.4921372","34.1653024"],["-118.491676","34.1652251"],["-118.4912297","34.1651658"],["-118.4908382","34.1651374"],["-118.4901774","34.1651264"],["-118.47957","34.1652453"],["-118.4765507","34.1652635"],["-118.4760725","34.1652207"],["-118.4756927","34.1651688"],["-118.475291","34.1650955"],["-118.4749619","34.1650091"],["-118.4746214","34.1649019"],["-118.4743459","34.1648012"],["-118.4740684","34.1646807"],["-118.4737819","34.164527"],["-118.4734402","34.1643115"],["-118.4732355","34.1641646"],["-118.4730298","34.163989"],["-118.4727619","34.1637302"],["-118.4725761","34.1635122"],["-118.4723794","34.1632526"],["-118.4721943","34.1629757"],["-118.4720222","34.1627842"],["-118.4710812","34.161354"],["-118.4708937","34.1611081"],["-118.4706377","34.1608399"],["-118.4703848","34.1606026"],["-118.47013","34.1603988"],["-118.4699326","34.160254"],["-118.4697822","34.1601524"],["-118.4695098","34.1600002"],["-118.4692089","34.1598539"],["-118.4688423","34.1597006"],["-118.468531","34.1595878"],["-118.4682728","34.1595037"],["-118.4680751","34.1594532"],["-118.4678358","34.1594088"],["-118.4675079","34.1593659"],["-118.4671018","34.1593372"],["-118.4656128","34.1593204"],["-118.4635132","34.1593291"],["-118.4616803","34.1593374"],["-118.4609702","34.1593102"],["-118.4605218","34.1592592"],["-118.4599905","34.1591747"],["-118.459257","34.1590141"],["-118.4584219","34.158766"],["-118.4570937","34.1583549"],["-118.4560887","34.1580522"],["-118.4555334","34.1579201"],["-118.4550744","34.1578287"],["-118.4546722","34.157765"],["-118.4542695","34.1577184"],["-118.4518539","34.1575304"],["-118.4510928","34.1574449"],["-118.4504993","34.1573548"],["-118.4499924","34.1572604"],["-118.4494879","34.1571376"],["-118.4489841","34.1569958"],["-118.4481401","34.1566899"],["-118.4476801","34.1564862"],["-118.4458387","34.1556548"],["-118.4454802","34.1555243"],["-118.4451974","34.1554329"],["-118.4450426","34.1553872"],["-118.4447494","34.1553131"],["-118.4444489","34.1552497"],["-118.4441097","34.155193"],["-118.4438228","34.1551563"],["-118.443517","34.1551276"],["-118.4432007","34.1551126"],["-118.4428138","34.1551135"],["-118.4424373","34.1551246"],["-118.4420967","34.1551558"],["-118.4417639","34.1551979"],["-118.4405979","34.1553933"],["-118.4399862","34.1554915"],["-118.4396662","34.1555286"],["-118.4392555","34.1555592"],["-118.4378785","34.1555698"],["-118.4283144","34.1555375"],["-118.4273814","34.1555701"],["-118.4265885","34.1556801"],["-118.4256164","34.1558766"],["-118.4229568","34.1564794"],["-118.4226738","34.1565299"],["-118.4223685","34.1565757"],["-118.4219749","34.1566214"],["-118.421476","34.1566669"],["-118.42047","34.156687"],["-118.4050526","34.1566126"],["-118.4045902","34.1565997"],["-118.4042378","34.1565739"],["-118.4038472","34.156526"],["-118.4032163","34.1563923"],["-118.4029478","34.1563207"],["-118.4026989","34.1562416"],["-118.4023933","34.1561346"],["-118.402099","34.1560211"],["-118.4015682","34.1557678"],["-118.4004458","34.1552127"],["-118.3999173","34.1549584"],["-118.3995739","34.1548155"],["-118.3992208","34.154705"],["-118.3988489","34.1545983"],["-118.3983608","34.1544888"],["-118.397862","34.1544146"],["-118.3974408","34.1543781"],["-118.3970269","34.1543543"],["-118.3933766","34.1543521"],["-118.3923577","34.1543556"],["-118.3846984","34.1543935"],["-118.3835849","34.1543651"],["-118.3821945","34.1543329"],["-118.3812981","34.1543096"],["-118.3805236","34.1542752"],["-118.3802259","34.1542512"],["-118.3799722","34.1542193"],["-118.3797309","34.1541733"],["-118.379453","34.1541019"],["-118.3791608","34.1540194"],["-118.3788241","34.1538761"],["-118.3777366","34.1533365"],["-118.3772186","34.1530636"],["-118.3767755","34.152808"],["-118.3764122","34.1525485"],["-118.3761042","34.1522837"],["-118.3757227","34.1518726"],["-118.3751261","34.1511892"],["-118.3748042","34.1509246"],["-118.3745411","34.1505832"],["-118.3739305","34.1498016"],["-118.3734368","34.1491841"],["-118.3731229","34.1488447"],["-118.3727765","34.1485653"],["-118.3700938","34.1466414"],["-118.3697289","34.1463663"],["-118.3693943","34.1460988"],["-118.3691488","34.1458815"],["-118.3688719","34.1456033"],["-118.3686325","34.1453278"],["-118.368423","34.145054"],["-118.3682493","34.1447966"],["-118.3681117","34.144547"],["-118.3679831","34.1442918"],["-118.3670799","34.1423129"],["-118.3664897","34.1410286"],["-118.3663647","34.1408016"],["-118.3662195","34.1405651"],["-118.3660677","34.1403386"],["-118.365912","34.1401279"],["-118.3657427","34.1399146"],["-118.3655457","34.1396953"],["-118.3653376","34.1394942"],["-118.3651493","34.1393188"],["-118.3649422","34.1391379"],["-118.364699","34.1389358"],["-118.3603627","34.1357874"],["-118.3596258","34.1353278"],["-118.3593846","34.1351946"],["-118.3591246","34.1350598"],["-118.3588594","34.1349375"],["-118.3585853","34.1348262"],["-118.3558492","34.1339284"],["-118.3552589","34.1337669"],["-118.3549757","34.1336973"],["-118.3532875","34.1333192"],["-118.3529936","34.1332404"],["-118.3527041","34.1331508"],["-118.3524181","34.13305"],["-118.3521172","34.132927"],["-118.3516293","34.1326961"],["-118.351143","34.1324226"],["-118.3508803","34.1322516"],["-118.350651","34.1320853"],["-118.3504189","34.1318997"],["-118.3502087","34.1317162"],["-118.3472105","34.1288171"],["-118.3459776","34.1276098"],["-118.3455073","34.1271371"],["-118.3453285","34.1269427"],["-118.3451429","34.1267208"],["-118.3449908","34.1265181"],["-118.3443728","34.1256044"],["-118.3442032","34.1253666"],["-118.344041","34.1251473"],["-118.3438685","34.1249412"],["-118.3436843","34.1247327"],["-118.3434929","34.1245426"],["-118.3423639","34.1235655"],["-118.3411609","34.1225255"],["-118.3403701","34.1218342"],["-118.3401627","34.1216326"],["-118.3395914","34.1210342"],["-118.3393982","34.1208132"],["-118.3388833","34.1201812"],["-118.3387207","34.1199644"],["-118.3385713","34.1197474"],["-118.3384266","34.119522"],["-118.338287","34.119292"],["-118.3381432","34.1190376"],["-118.3379062","34.118574"],["-118.3377867","34.1183215"],["-118.3376854","34.1180893"],["-118.3375842","34.1178326"],["-118.3374982","34.1175974"],["-118.337413","34.1173384"],["-118.337115","34.1162183"],["-118.3368506","34.1151609"],["-118.3364973","34.1137901"],["-118.3364214","34.1135576"],["-118.336298","34.1132202"],["-118.3361029","34.1127267"],["-118.335897","34.112308"],["-118.3357648","34.1120623"],["-118.3356324","34.1118321"],["-118.3355261","34.1116574"],["-118.3352313","34.1112081"],["-118.3350416","34.1109363"],["-118.3348757","34.1107251"],["-118.334687","34.1105104"],["-118.3344959","34.1103169"],["-118.3342718","34.1101092"],["-118.334071","34.1099367"],["-118.3335691","34.1095453"],["-118.3333559","34.109397"],["-118.333095","34.1092219"],["-118.3262474","34.1051255"],["-118.3260289","34.1050091"],["-118.3258343","34.1049134"],["-118.325606","34.1048128"],["-118.3253651","34.1047166"],["-118.3251125","34.1046246"],["-118.3248435","34.1045391"],["-118.3245752","34.1044668"],["-118.3242985","34.104403"],["-118.3239921","34.1043463"],["-118.3236724","34.1043025"],["-118.3233404","34.1042742"],["-118.323003","34.1042563"],["-118.3216916","34.1042195"],["-118.3214124","34.1042048"],["-118.3211122","34.1041805"],["-118.3208141","34.1041426"],["-118.3205072","34.1040887"],["-118.3202353","34.1040296"],["-118.3199523","34.1039538"],["-118.3196674","34.1038675"],["-118.3193802","34.1037615"],["-118.3191218","34.103652"],["-118.3188769","34.1035354"],["-118.318611","34.1033973"],["-118.3183734","34.1032589"],["-118.318144","34.1031107"],["-118.3179214","34.1029448"],["-118.3176984","34.1027608"],["-118.3174986","34.1025824"],["-118.3172941","34.1023828"],["-118.3171181","34.1021914"],["-118.3169548","34.1019897"],["-118.3167966","34.1017711"],["-118.3160449","34.1005121"],["-118.3149456","34.0986556"],["-118.3147272","34.0982625"],["-118.3146337","34.0980871"],["-118.314492","34.097861"],["-118.3143346","34.0976239"],["-118.3141721","34.0974002"],["-118.3138433","34.0969842"],["-118.3136622","34.0967813"],["-118.3132546","34.0963687"],["-118.3130325","34.0961601"],["-118.3128108","34.0959644"],["-118.3125984","34.0957922"],["-118.312338","34.09559"],["-118.3121147","34.0954302"],["-118.3118474","34.0952484"],["-118.3092594","34.0936162"],["-118.3087509","34.0932916"],["-118.3085249","34.0931322"],["-118.3083065","34.0929626"],["-118.3080934","34.0927842"],["-118.3078866","34.0925895"],["-118.3077074","34.0924052"],["-118.3075275","34.0921992"],["-118.3073554","34.091986"],["-118.3071976","34.0917649"],["-118.3070207","34.0914896"],["-118.3059911","34.0897945"],["-118.3054177","34.0888564"],["-118.3052588","34.088622"],["-118.3051012","34.0884068"],["-118.3049174","34.0881727"],["-118.3047487","34.0879717"],["-118.304553","34.0877505"],["-118.3043473","34.0875381"],["-118.3041397","34.0873353"],["-118.3039328","34.0871429"],["-118.3037073","34.0869471"],["-118.3034782","34.0867626"],["-118.3032678","34.0866029"],["-118.2992893","34.0838639"],["-118.2982671","34.0831462"],["-118.2973875","34.0824933"],["-118.2971478","34.0823097"],["-118.2966665","34.0819637"],["-118.2964384","34.081811"],["-118.2961814","34.0816507"],["-118.2959461","34.0815131"],["-118.2956949","34.0813764"],["-118.2954357","34.081243"],["-118.2936722","34.0804246"],["-118.293221","34.0802024"],["-118.2913791","34.0791722"],["-118.2911185","34.0790341"],["-118.2908621","34.0789117"],["-118.2905889","34.0787914"],["-118.2903091","34.0786823"],["-118.2900071","34.0785801"],["-118.289449","34.0784259"],["-118.2891308","34.078354"],["-118.2888281","34.0783095"],["-118.2884842","34.0782658"],["-118.2878766","34.0782107"],["-118.2864972","34.0780882"],["-118.2857738","34.0779978"],["-118.2853136","34.0779218"],["-118.2849962","34.077861"],["-118.2813661","34.0770389"],["-118.2794182","34.0765586"],["-118.2755184","34.0754293"],["-118.2732977","34.0747343"],["-118.2724224","34.0743838"],["-118.2719812","34.0741862"],["-118.2712279","34.0738102"],["-118.2707332","34.0735598"],["-118.2701718","34.0732986"],["-118.2698557","34.0731646"],["-118.2637869","34.0705502"],["-118.2633881","34.070391"],["-118.2564651","34.0679259"],["-118.2557988","34.0676562"],["-118.255445","34.0674932"],["-118.2551322","34.0673362"],["-118.2548079","34.0671652"],["-118.2544813","34.0669787"],["-118.2541865","34.0667995"],["-118.253917","34.0666239"],["-118.2503039","34.0640463"],["-118.2501637","34.0639291"],["-118.2500312","34.0638134"],["-118.249898","34.0636921"],["-118.2496677","34.0634659"],["-118.2495437","34.0633313"],["-118.2472806","34.0606929"],["-118.24683","34.0602021"],["-118.2465884","34.0599649"],["-118.2463437","34.0597354"],["-118.2460981","34.059518"],["-118.2455243","34.0590442"],["-118.2447198","34.058414"],["-118.244298","34.0581003"],["-118.2440073","34.0578148"],["-118.243712","34.0575234"],["-118.2434898","34.0573581"],["-118.2428631","34.0569508"],["-118.2427044","34.0568501"],["-118.242598","34.0567872"],["-118.2424833","34.0567233"],["-118.2418897","34.0563437"],["-118.2415274","34.0561073"],["-118.242645","34.0548866"],["-118.2429696","34.0545459"],["-118.2431293","34.0543803"],["-118.2434192","34.0540779"],["-118.2435949","34.0538904"],["-118.2440877","34.0533649"],["-118.2443521","34.053073"],["-118.2444625","34.0529572"],["-118.2443145","34.0528488"],["-118.2433943","34.0522277"],["-118.2432172","34.0524053"]] } }; 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: [["-122.4136491","37.7675733"],["-122.4136205","37.767697"],["-122.4133582","37.7677198"],["-122.4134138","37.7683338"],["-122.4134533","37.7686762"],["-122.4134722","37.7687684"],["-122.4134762","37.7688309"],["-122.4134782","37.7688964"],["-122.4134774","37.7690284"],["-122.4134727","37.7690919"],["-122.4134555","37.769223"],["-122.4134365","37.7693386"],["-122.4134145","37.7694326"],["-122.4133388","37.7694711"],["-122.4120012","37.7694307"],["-122.4111329","37.7693661"],["-122.4108888","37.7693402"],["-122.4108703","37.7694305"],["-122.4107655","37.7695486"],["-122.4105882","37.7696964"],["-122.4066826","37.7727822"],["-122.4066468","37.773098"],["-122.406626","37.7735544"],["-122.4066082","37.7737211"],["-122.4065657","37.7739056"],["-122.4065141","37.774072"],["-122.4064411","37.7742453"],["-122.4063554","37.7744081"],["-122.4062457","37.7745814"],["-122.4061225","37.7747613"],["-122.4060067","37.7749167"],["-122.4058856","37.7750643"],["-122.4057523","37.7752142"],["-122.4056027","37.7753643"],["-122.4052577","37.775691"],["-122.4050823","37.7758459"],["-122.4049135","37.77598"],["-122.4046777","37.7761481"],["-122.4041109","37.7765284"],["-122.4039423","37.7766256"],["-122.4025055","37.7773788"],["-122.4013896","37.7779624"],["-122.4011469","37.7781057"],["-122.4009111","37.7782529"],["-122.4006553","37.7784257"],["-122.4004231","37.778596"],["-122.4001681","37.7787931"],["-122.3999106","37.7790057"],["-122.399657","37.7792192"],["-122.3950331","37.7831797"],["-122.3943812","37.7836948"],["-122.3938808","37.7840818"],["-122.393627","37.7842756"],["-122.3933749","37.7844545"],["-122.3931135","37.7846308"],["-122.3925557","37.7849743"],["-122.3917441","37.7854526"],["-122.3912989","37.7857067"],["-122.3909542","37.785918"],["-122.3906745","37.7861355"],["-122.3744748","37.8012775"],["-122.3669298","37.8083588"],["-122.3664438","37.8088621"],["-122.3653787","37.8098579"],["-122.3644832","37.810684"],["-122.3632256","37.8118441"],["-122.3628373","37.8121981"],["-122.3626055","37.8123974"],["-122.3621572","37.812758"],["-122.3618073","37.8130224"],["-122.3574366","37.8156435"],["-122.3545269","37.8173002"],["-122.3538205","37.8176517"],["-122.3531","37.8179578"],["-122.3527934","37.8180738"],["-122.3521743","37.8182825"],["-122.3503082","37.8187297"],["-122.3255069","37.8219832"],["-122.3144095","37.8237245"],["-122.3134323","37.8238874"],["-122.3110383","37.8242938"],["-122.3103725","37.8243876"],["-122.3067152","37.824787"],["-122.3060175","37.8248927"],["-122.3047116","37.8251467"],["-122.3044198","37.8251683"],["-122.303799","37.8252893"],["-122.2972997","37.8265893"],["-122.2971362","37.8266294"],["-122.2968178","37.8267202"],["-122.2966773","37.8267637"],["-122.2963765","37.8268685"],["-122.2962165","37.8269293"],["-122.2957816","37.827101"],["-122.2953368","37.82727"],["-122.295186","37.8273205"],["-122.295033","37.8273653"],["-122.2948777","37.8274046"],["-122.2947128","37.827441"],["-122.2945555","37.8274694"],["-122.2944015","37.8274913"],["-122.2942272","37.827511"],["-122.2940598","37.8275239"],["-122.293901","37.8275294"],["-122.2937363","37.8275307"],["-122.2935614","37.8275254"],["-122.2933945","37.8275141"],["-122.2932434","37.8275"],["-122.2930769","37.8274771"],["-122.2929041","37.8274484"],["-122.2927443","37.827415"],["-122.2925969","37.8273789"],["-122.2924265","37.8273301"],["-122.2922784","37.8272835"],["-122.2921242","37.8272263"],["-122.2919712","37.8271639"],["-122.2918412","37.8271076"],["-122.2914147","37.8269109"],["-122.291256","37.826842"],["-122.2911239","37.8267878"],["-122.2908216","37.8266771"],["-122.2905086","37.8265725"],["-122.2903561","37.8265245"],["-122.290207","37.8264818"],["-122.2900504","37.8264432"],["-122.2899042","37.8264132"],["-122.2897379","37.8263835"],["-122.28957","37.8263588"],["-122.2894227","37.8263413"],["-122.2890907","37.8263106"],["-122.2889234","37.8263054"],["-122.288763","37.8263074"],["-122.2886004","37.8263141"],["-122.2883395","37.8263359"],["-122.2881261","37.8263543"],["-122.2879264","37.8263722"],["-122.2877591","37.8263877"],["-122.2875761","37.826414"],["-122.2835601","37.8271725"],["-122.2830945","37.8272556"],["-122.2827863","37.8272907"],["-122.2824672","37.827308"],["-122.2821477","37.8273122"],["-122.28185","37.8273047"],["-122.2815241","37.8272813"],["-122.2812071","37.8272397"],["-122.2807628","37.8271567"],["-122.2761495","37.8260795"],["-122.2626203","37.8229302"],["-122.2617781","37.8227442"],["-122.261359","37.8226319"],["-122.2609791","37.82252"],["-122.2605785","37.8223901"],["-122.2596143","37.8220396"],["-122.2588382","37.8217233"],["-122.2584207","37.8215423"],["-122.2574543","37.8210889"],["-122.2566085","37.8206452"],["-122.256152","37.8203879"],["-122.2556972","37.8201208"],["-122.2553022","37.8198798"],["-122.2544863","37.8193297"],["-122.2541329","37.8190793"],["-122.2536423","37.8187058"],["-122.2533952","37.8185025"],["-122.2531242","37.818265"],["-122.2528892","37.8180253"],["-122.2526674","37.817781"],["-122.2524712","37.8175329"],["-122.2522676","37.8172577"],["-122.2520737","37.8169596"],["-122.2519014","37.8166558"],["-122.2517566","37.8163614"],["-122.2516279","37.8160589"],["-122.2515306","37.815786"],["-122.251421","37.8154023"],["-122.2511903","37.8145612"],["-122.2505337","37.8122912"],["-122.2504592","37.8120925"],["-122.2503734","37.8119077"],["-122.2502749","37.8117272"],["-122.2501567","37.8115389"],["-122.250025","37.8113646"],["-122.2498531","37.8111696"],["-122.2496763","37.8109931"],["-122.2494951","37.8108311"],["-122.2492868","37.8106862"],["-122.2490477","37.8105431"],["-122.2487725","37.8104023"],["-122.2484535","37.8102579"],["-122.2480995","37.8101175"],["-122.2475349","37.8099396"],["-122.2432119","37.8087249"],["-122.2423976","37.8084863"],["-122.2419364","37.80833"],["-122.2410544","37.808"],["-122.2406365","37.8078277"],["-122.237202","37.8062418"],["-122.235801","37.8055841"],["-122.2349268","37.8051238"],["-122.2345746","37.8049217"],["-122.2341746","37.80468"],["-122.2338088","37.804442"],["-122.2331568","37.8039607"],["-122.2321371","37.8031382"],["-122.2312307","37.8024086"],["-122.2306321","37.8019349"],["-122.2304007","37.8017681"],["-122.2301738","37.8016185"],["-122.2299269","37.8014692"],["-122.2296978","37.8013448"],["-122.2294313","37.8012059"],["-122.2291368","37.8010664"],["-122.2288449","37.8009414"],["-122.2285171","37.8008094"],["-122.2282226","37.8007095"],["-122.2279011","37.8006174"],["-122.2276124","37.8005427"],["-122.2271965","37.8004456"],["-122.2204259","37.7990293"],["-122.2121692","37.7969865"],["-122.21176","37.7968658"],["-122.2113237","37.7967262"],["-122.2109307","37.7965772"],["-122.2105575","37.7964246"],["-122.2071929","37.7948676"],["-122.2063408","37.7944433"],["-122.2058106","37.7941487"],["-122.2054714","37.7939352"],["-122.2051733","37.793732"],["-122.2048684","37.7935084"],["-122.2045573","37.7932502"],["-122.2043014","37.7930297"],["-122.2040417","37.7927833"],["-122.2021573","37.7907676"],["-122.2013633","37.7899282"],["-122.2010064","37.7895966"],["-122.200646","37.7892881"],["-122.2002627","37.7889999"],["-122.1998595","37.7887264"],["-122.1994916","37.7884934"],["-122.1991088","37.7882742"],["-122.1976654","37.7875457"],["-122.1944229","37.7859354"],["-122.1940197","37.7857537"],["-122.1935262","37.7855436"],["-122.1928322","37.7852818"],["-122.1920968","37.7850365"],["-122.1916634","37.7849023"],["-122.1904365","37.7845845"],["-122.1889748","37.7843012"],["-122.1885628","37.7842463"],["-122.18733","37.7841214"],["-122.1868299","37.7840863"],["-122.179999","37.7838466"],["-122.1796381","37.7838195"],["-122.1793188","37.7837831"],["-122.1789848","37.7837275"],["-122.1787087","37.7836686"],["-122.1783079","37.7835617"],["-122.1780138","37.7834578"],["-122.177702","37.7833375"],["-122.1774282","37.7832127"],["-122.1771539","37.783069"],["-122.17666","37.7827697"],["-122.1743549","37.7813174"],["-122.1740262","37.7811223"],["-122.1685869","37.7782751"],["-122.159484","37.7738996"],["-122.1589234","37.7736026"],["-122.1585282","37.7733702"],["-122.1581719","37.7731492"],["-122.1578414","37.7729337"],["-122.157498","37.7726928"],["-122.1571412","37.7724267"],["-122.1568244","37.7721674"],["-122.1565286","37.7719136"],["-122.1562324","37.7716371"],["-122.1559457","37.7713548"],["-122.1556767","37.771074"],["-122.1554166","37.7707837"],["-122.1551947","37.7705158"],["-122.1549586","37.7702148"],["-122.1547658","37.7699498"],["-122.1545756","37.7696717"],["-122.154373","37.7693497"],["-122.1536923","37.7682256"],["-122.1526222","37.7664846"],["-122.1524299","37.7661965"],["-122.1522133","37.7659026"],["-122.1520135","37.765651"],["-122.1509002","37.7642999"],["-122.1506731","37.7640119"],["-122.1498918","37.7628951"],["-122.1487815","37.761192"],["-122.1486231","37.7609059"],["-122.148483","37.760629"],["-122.1483552","37.7603569"],["-122.1482544","37.7601119"],["-122.1481666","37.7598746"],["-122.1480879","37.7596179"],["-122.1480268","37.7593577"],["-122.1479849","37.759092"],["-122.1479643","37.7588285"],["-122.1479681","37.7585304"],["-122.1480005","37.7582376"],["-122.1480489","37.7579611"],["-122.1481234","37.7576897"],["-122.1482213","37.7574229"],["-122.1483327","37.7571725"],["-122.1484681","37.7569107"],["-122.1486211","37.7566746"],["-122.1487918","37.7564439"],["-122.1489695","37.7562416"],["-122.1491646","37.7560358"],["-122.1496117","37.755614"],["-122.1502241","37.7550473"],["-122.1507311","37.7545747"],["-122.1509129","37.7543869"],["-122.1510899","37.7541818"],["-122.1512476","37.7539721"],["-122.1513838","37.753766"],["-122.1515187","37.7535305"],["-122.1516296","37.7532777"],["-122.1517181","37.7530352"],["-122.151848","37.752571"],["-122.1519074","37.752306"],["-122.1519415","37.7520662"],["-122.1519557","37.7518297"],["-122.151954","37.7515892"],["-122.1519345","37.7513302"],["-122.1519188","37.7510354"],["-122.1517995","37.7506078"],["-122.1515637","37.7500672"],["-122.1506999","37.74831"],["-122.1496665","37.7462219"],["-122.1495282","37.745953"],["-122.1494032","37.7457429"],["-122.1492528","37.7455174"],["-122.1490881","37.7452955"],["-122.1489066","37.7450688"],["-122.1486945","37.7448411"],["-122.1484906","37.7446463"],["-122.1482597","37.7444384"],["-122.1480121","37.7442373"],["-122.1477663","37.7440515"],["-122.1465684","37.7431962"],["-122.1463973","37.7430669"],["-122.1462412","37.7429367"],["-122.1461065","37.7428158"],["-122.1459647","37.7426817"],["-122.1458456","37.7425616"],["-122.1457114","37.7424186"],["-122.1455919","37.74228"],["-122.1454594","37.7421119"],["-122.1447208","37.7411338"],["-122.1442677","37.7405426"],["-122.1440768","37.7403217"],["-122.1438898","37.7401231"],["-122.1436994","37.7399374"],["-122.1434737","37.7397321"],["-122.1427218","37.7391277"],["-122.1421014","37.7386312"],["-122.141644","37.7382552"],["-122.1414594","37.7380835"],["-122.1413093","37.7379219"],["-122.1411879","37.7377847"],["-122.1410833","37.7376575"],["-122.1409657","37.737503"],["-122.1408243","37.7373054"],["-122.1406799","37.7370637"],["-122.1405616","37.7368424"],["-122.1404541","37.7366131"],["-122.1403606","37.7363662"],["-122.1402919","37.736138"],["-122.140172","37.735654"],["-122.1392489","37.7318475"],["-122.1383958","37.7287676"],["-122.1383525","37.7285702"],["-122.1382744","37.72816"],["-122.1381419","37.7273117"],["-122.1379376","37.7259962"],["-122.1378949","37.7257858"],["-122.1378437","37.7255784"],["-122.1377874","37.7253797"],["-122.1377295","37.7252024"],["-122.1376573","37.7249988"],["-122.1375732","37.7247904"],["-122.1374838","37.7245873"],["-122.1373856","37.7243926"],["-122.1372636","37.7241709"],["-122.1371378","37.7239603"],["-122.1370064","37.7237611"],["-122.1366719","37.7233115"],["-122.1348044","37.7208722"],["-122.134416","37.7203035"],["-122.1337812","37.7192822"],["-122.1334796","37.7187514"],["-122.1329706","37.717725"],["-122.1321415","37.7159332"],["-122.1318686","37.7153582"],["-122.1317312","37.7151013"],["-122.1315928","37.7148657"],["-122.1314471","37.7146377"],["-122.1312847","37.7144029"],["-122.1311047","37.7141574"],["-122.1309204","37.7139267"],["-122.1307116","37.7136853"],["-122.1304811","37.7134379"],["-122.1302448","37.7132031"],["-122.1300113","37.7129831"],["-122.1297396","37.7127496"],["-122.129504","37.7125592"],["-122.1291766","37.712312"],["-122.1289556","37.712161"],["-122.1286664","37.7119735"],["-122.1284096","37.7118168"],["-122.1281363","37.7116611"],["-122.1275752","37.7113684"],["-122.1264277","37.7108303"],["-122.1259048","37.7105804"],["-122.1255954","37.7104177"],["-122.1252801","37.7102407"],["-122.1250171","37.7100855"],["-122.1247613","37.7099225"],["-122.1245342","37.7097685"],["-122.1242989","37.7095991"],["-122.1237211","37.7091546"],["-122.1219051","37.7077235"],["-122.1216162","37.707507"],["-122.121323","37.7073053"],["-122.1210377","37.7071322"],["-122.1207226","37.7069606"],["-122.1203519","37.7067832"],["-122.1182516","37.7058407"],["-122.1171416","37.7053062"],["-122.1163486","37.704887"],["-122.1097688","37.7008261"],["-122.1093827","37.7005597"],["-122.1090323","37.7002937"],["-122.1087042","37.7000227"],["-122.1085459","37.6998822"],["-122.1083659","37.6997139"],["-122.1080576","37.6994076"],["-122.1054128","37.6964895"],["-122.1047687","37.6957806"],["-122.1015212","37.6921961"],["-122.1014284","37.6921022"],["-122.1013171","37.6919936"],["-122.101101","37.6917997"],["-122.1008704","37.6916108"],["-122.100624","37.691426"],["-122.1005044","37.6913418"],["-122.1003784","37.691257"],["-122.1002381","37.6911684"],["-122.0999851","37.691018"],["-122.0995919","37.6908087"],["-122.0991599","37.6906113"],["-122.09885","37.6904878"],["-122.0987283","37.6904428"],["-122.0984134","37.6903372"],["-122.0981078","37.6902478"],["-122.0979445","37.6902049"],["-122.0976312","37.6901311"],["-122.0974783","37.6901"],["-122.0971594","37.6900439"],["-122.0969938","37.69002"],["-122.0964987","37.6899632"],["-122.0961665","37.6899409"],["-122.0960283","37.6899348"],["-122.0958523","37.6899304"],["-122.0955054","37.6899329"],["-122.0951886","37.6899464"],["-122.0950246","37.6899573"],["-122.0915294","37.6903155"],["-122.0907487","37.6903593"],["-122.0893538","37.6904409"],["-122.0667528","37.6913489"],["-122.0664405","37.6914255"],["-122.0644489","37.6919807"],["-122.0600851","37.6932073"],["-122.0595213","37.6933359"],["-122.0581424","37.6935403"],["-122.0578018","37.6935673"],["-122.0573377","37.6935895"],["-122.0566335","37.6935925"],["-122.0558423","37.6935498"],["-122.0509602","37.6932753"],["-122.0504743","37.6933275"],["-122.0501647","37.6933694"],["-122.048891","37.6936251"],["-122.0484235","37.6937528"],["-122.0472216","37.6941733"],["-122.0469319","37.6942971"],["-122.0466382","37.6944324"],["-122.0465097","37.6944946"],["-122.046224","37.6946401"],["-122.0451796","37.6952645"],["-122.0449343","37.6954349"],["-122.0444597","37.6957997"],["-122.0442066","37.6960118"],["-122.0441297","37.6960803"],["-122.0405267","37.6994028"],["-122.0402758","37.6996087"],["-122.0401585","37.6997006"],["-122.039897","37.6998938"],["-122.0393576","37.7002528"],["-122.0386613","37.7006487"],["-122.038238","37.7008567"],["-122.0376326","37.7011188"],["-122.037311","37.7012412"],["-122.0363813","37.7015366"],["-122.036053","37.701621"],["-122.0351066","37.7018133"],["-122.0347875","37.7018596"],["-122.0339626","37.7019502"],["-122.0327936","37.7019815"],["-122.0321036","37.7019506"],["-122.0314465","37.7018861"],["-122.0311067","37.7018404"],["-122.0306122","37.7017542"],["-122.0279419","37.7010597"],["-122.0266424","37.7008024"],["-122.0264907","37.7007815"],["-122.0261693","37.7007426"],["-122.0244859","37.7006636"],["-122.0228385","37.700791"],["-122.0223713","37.7008646"],["-122.0218935","37.7009588"],["-122.0215654","37.7010348"],["-122.0206636","37.7012895"],["-122.0202097","37.7014464"],["-122.0185484","37.7020661"],["-122.0171617","37.7024634"],["-122.0165145","37.7025932"],["-122.0160406","37.7026655"],["-122.0155404","37.7027212"],["-122.0020453","37.7033587"],["-122.0003385","37.7033256"],["-121.9957834","37.7026172"],["-121.9954457","37.7025263"],["-121.989858","37.7003322"],["-121.9896026","37.7002297"],["-121.9892975","37.7001149"],["-121.9889995","37.7000137"],["-121.9886858","37.699915"],["-121.988361","37.6998224"],["-121.9880492","37.6997414"],["-121.9877303","37.6996689"],["-121.987446","37.6996114"],["-121.9870993","37.6995485"],["-121.9867612","37.6994962"],["-121.959117","37.6981"],["-121.9584739","37.6981833"],["-121.9583244","37.6981982"],["-121.9579887","37.6982253"],["-121.9574824","37.6982516"],["-121.9362578","37.6981143"],["-121.9357495","37.698125"],["-121.9352617","37.6981467"],["-121.9347448","37.6981872"],["-121.9342397","37.6982412"],["-121.9337925","37.6983051"],["-121.9332835","37.6983901"],["-121.932818","37.6984822"],["-121.9323175","37.6985954"],["-121.9312499","37.6988519"],["-121.9306318","37.6989859"],["-121.9197067","37.7014503"],["-121.919318","37.7015213"],["-121.9188478","37.7015831"],["-121.9178043","37.7016793"],["-121.915877","37.7017243"],["-121.9120737","37.7016831"],["-121.9115681","37.7016291"],["-121.9098019","37.7015953"],["-121.9035583","37.7015077"],["-121.8911027","37.7014128"],["-121.8808287","37.701356"],["-121.8785188","37.7013677"],["-121.8260108","37.7009339"],["-121.8198567","37.7008603"],["-121.7987083","37.7006994"],["-121.796668","37.7006837"],["-121.795987","37.7006701"],["-121.795247","37.7006604"],["-121.7945702","37.7006298"],["-121.7941623","37.7005804"],["-121.7938661","37.7005305"],["-121.7898012","37.6996501"],["-121.7894517","37.6995869"],["-121.7891043","37.6995351"],["-121.7887418","37.6994925"],["-121.7883997","37.6994608"],["-121.7880487","37.6994385"],["-121.7877214","37.6994258"],["-121.7874115","37.6994229"],["-121.7870335","37.699431"],["-121.7866753","37.6994486"],["-121.7775015","37.7002424"],["-121.7752515","37.700513"],["-121.7633305","37.7024495"],["-121.7623655","37.7025758"],["-121.761335","37.7026808"],["-121.7604541","37.7027406"],["-121.7596808","37.7027797"],["-121.7586671","37.7027953"],["-121.7579255","37.7027883"],["-121.7464029","37.702319"],["-121.7434139","37.7022357"],["-121.7425359","37.7022558"],["-121.7416973","37.7023115"],["-121.7409384","37.7023995"],["-121.7402186","37.7025062"],["-121.7389059","37.7027749"],["-121.7381686","37.7029645"],["-121.7375215","37.7031616"],["-121.7369861","37.703337"],["-121.7359896","37.7037408"],["-121.7307104","37.7059614"],["-121.7285463","37.7068658"],["-121.7215592","37.7098365"],["-121.7119787","37.7138906"],["-121.7073604","37.7158544"],["-121.705873","37.7164299"],["-121.7046272","37.7167973"],["-121.6902902","37.7197914"],["-121.6829036","37.721506"],["-121.6822812","37.7216239"],["-121.6816105","37.721709"],["-121.680974","37.7217526"],["-121.6803639","37.7217447"],["-121.679242","37.7216473"],["-121.6773825","37.721445"],["-121.6761434","37.7212923"],["-121.6755251","37.7211687"],["-121.674952","37.7209937"],["-121.6744046","37.7207851"],["-121.6738345","37.7205139"],["-121.6731962","37.7201154"],["-121.6724289","37.7196083"],["-121.6717705","37.7191823"],["-121.671212","37.7188788"],["-121.6706264","37.7186109"],["-121.6700333","37.7183918"],["-121.6693724","37.7181924"],["-121.6687243","37.7180429"],["-121.668086","37.7179382"],["-121.6674334","37.7178717"],["-121.6667882","37.7178479"],["-121.6660487","37.7178694"],["-121.6653554","37.7179334"],["-121.6647211","37.7180409"],["-121.6640297","37.7181954"],["-121.6569334","37.7202286"],["-121.6374676","37.726565"],["-121.6354478","37.7274742"],["-121.6342158","37.728488"],["-121.6328437","37.7302305"],["-121.6320639","37.7310644"],["-121.6311796","37.7317655"],["-121.6304172","37.7322756"],["-121.6292366","37.7329072"],["-121.6280553","37.7334055"],["-121.6272575","37.7335462"],["-121.6258026","37.7337187"],["-121.6130021","37.7346195"],["-121.6103453","37.7349435"],["-121.6080803","37.7354462"],["-121.6011201","37.7373243"],["-121.5997321","37.7376349"],["-121.5841246","37.7405493"],["-121.5811323","37.7410503"],["-121.5801195","37.7411874"],["-121.5509125","37.743496"],["-121.5499688","37.7435127"],["-121.5494747","37.7435043"],["-121.5262989","37.7420582"],["-121.5218756","37.7417719"],["-121.5064228","37.7407963"],["-121.5053211","37.7407317"],["-121.5009834","37.7404753"],["-121.5003653","37.7404571"],["-121.4998906","37.7404564"],["-121.4993829","37.7404674"],["-121.4988824","37.7404937"],["-121.497671","37.7405983"],["-121.4973215","37.7406465"],["-121.4970104","37.7406936"],["-121.4962775","37.7408259"],["-121.4958653","37.7409135"],["-121.4954545","37.7410047"],["-121.4949507","37.7411291"],["-121.4942681","37.7413248"],["-121.493789","37.7414745"],["-121.4933533","37.7416235"],["-121.4928968","37.741792"],["-121.4597938","37.7553342"],["-121.4569066","37.7565164"],["-121.4449163","37.7614179"],["-121.4443173","37.7616398"],["-121.4440197","37.7617415"],["-121.4427536","37.7621194"],["-121.441806","37.7623438"],["-121.4411213","37.7624743"],["-121.4407204","37.7625421"],["-121.4400323","37.7626399"],["-121.439388","37.7627079"],["-121.4383644","37.7627803"],["-121.4380701","37.7627907"],["-121.4241554","37.7628438"],["-121.4228469","37.7629417"],["-121.4117966","37.7645522"],["-121.4098098","37.7647053"],["-121.3554154","37.764841"],["-121.3548887","37.7648513"],["-121.3537442","37.7649192"],["-121.3320971","37.7670393"],["-121.3318232","37.7670769"],["-121.3315107","37.7671283"],["-121.3311956","37.7671849"],["-121.3309252","37.7672394"],["-121.3306482","37.7673019"],["-121.3303742","37.7673736"],["-121.3300934","37.7674557"],["-121.3297563","37.7675618"],["-121.3294544","37.7676642"],["-121.3291597","37.7677718"],["-121.3288776","37.7678848"],["-121.3285754","37.7680156"],["-121.3283074","37.7681419"],["-121.3280281","37.7682824"],["-121.3277394","37.7684367"],["-121.3274754","37.7685869"],["-121.3272242","37.768742"],["-121.3269636","37.7689107"],["-121.3267202","37.7690804"],["-121.3264617","37.7692746"],["-121.326265","37.7694288"],["-121.3258831","37.7697554"],["-121.3255069","37.7701103"],["-121.3253117","37.7703179"],["-121.3251249","37.7705264"],["-121.3249254","37.7707649"],["-121.3237252","37.7723127"],["-121.3235012","37.7725893"],["-121.3234138","37.7726907"],["-121.323317","37.7727979"],["-121.3231061","37.7730192"],["-121.3229085","37.7732158"],["-121.3223197","37.773732"],["-121.3219191","37.7740465"],["-121.3197256","37.7757094"],["-121.3193642","37.776012"],["-121.3106722","37.7823592"],["-121.3096678","37.7830205"],["-121.306201","37.7851668"],["-121.3058436","37.7852924"],["-121.3055705","37.7854198"],["-121.3010659","37.7879301"],["-121.2997981","37.7885727"],["-121.2993327","37.78878"],["-121.2986353","37.7890465"],["-121.2979435","37.7892806"],["-121.2973159","37.7894587"],["-121.2968452","37.7895838"],["-121.296295","37.7897017"],["-121.2956418","37.7898215"],["-121.2950713","37.7899077"],["-121.2946231","37.7899603"],["-121.2941613","37.7899961"],["-121.2936099","37.790028"],["-121.2929476","37.7900525"],["-121.2923659","37.7900441"],["-121.2917702","37.790013"],["-121.2910969","37.7899494"],["-121.2903709","37.789864"],["-121.2894664","37.7897049"],["-121.2884933","37.7894769"],["-121.2680471","37.7840877"],["-121.266425","37.7836614"],["-121.2655738","37.7834665"],["-121.2647417","37.7833135"],["-121.2638115","37.7831767"],["-121.2627905","37.7830631"],["-121.262051","37.7830227"],["-121.2613516","37.7830044"],["-121.2607355","37.7830098"],["-121.2598447","37.7830169"],["-121.1944775","37.7831994"],["-121.1934586","37.7832101"],["-121.1929806","37.7832411"],["-121.1926614","37.7832873"],["-121.1923206","37.7833563"],["-121.19204","37.7834405"],["-121.1917352","37.7835438"],["-121.1913926","37.7836953"],["-121.1911147","37.7838401"],["-121.1908408","37.7840108"],["-121.1903688","37.7843662"],["-121.1898746","37.7847359"],["-121.1896158","37.7849071"],["-121.1894181","37.7850098"],["-121.189216","37.7851008"],["-121.1890388","37.7851637"],["-121.1888659","37.7852153"],["-121.1886697","37.7852632"],["-121.1884577","37.7853012"],["-121.1882354","37.7853303"],["-121.1880323","37.7853455"],["-121.1878539","37.7853447"],["-121.187617","37.7853309"],["-121.1873827","37.7853031"],["-121.1871294","37.7852637"],["-121.1868595","37.7851938"],["-121.1865323","37.785068"],["-121.186301","37.7849624"],["-121.1860553","37.7848271"],["-121.1858631","37.7846904"],["-121.1856491","37.7845207"],["-121.185522","37.7843789"],["-121.1853783","37.7842042"],["-121.1852585","37.7840347"],["-121.1851302","37.7837958"],["-121.1850129","37.7834575"],["-121.1849684","37.7832069"],["-121.1849599","37.7829813"],["-121.1849833","37.7828079"],["-121.1850187","37.7826701"],["-121.1850799","37.7825512"],["-121.1851562","37.7824376"],["-121.1852686","37.7823226"],["-121.1853873","37.7822344"],["-121.1855356","37.7821527"],["-121.1857108","37.7820933"],["-121.1858781","37.7820512"],["-121.1860493","37.782031"],["-121.1862579","37.7820315"],["-121.1864486","37.7820514"],["-121.1866313","37.7821091"],["-121.1868402","37.7822019"],["-121.1869961","37.7823163"],["-121.1871244","37.7824455"],["-121.187227","37.7825944"],["-121.1873117","37.7827783"],["-121.1878809","37.7846562"],["-121.1899062","37.7926683"],["-121.1903405","37.7946069"],["-121.1905122","37.7955309"],["-121.190566","37.7960265"],["-121.1905706","37.796531"],["-121.1905638","37.7975212"],["-121.1903091","37.7975498"],["-121.1900275","37.7975481"],["-121.1891222","37.7975246"],["-121.1876204","37.7975349"],["-121.1867552","37.7975578"],["-121.1838525","37.7975616"],["-121.1831469","37.7975551"],["-121.1798668","37.7975499"],["-121.1796935","37.7975552"],["-121.1379287","37.7976569"],["-121.061002","37.7983661"],["-121.0147584","37.798563"],["-121.0124558","37.7985699"],["-121.0028535","37.7985633"],["-121.0022978","37.7985763"],["-121.000308","37.7985894"],["-120.9995066","37.7985588"],["-120.9993911","37.7985138"],["-120.9990933","37.7985009"],["-120.9989647","37.7984911"],["-120.9988722","37.7984845"],["-120.9987736","37.7984813"],["-120.9987191","37.7984988"],["-120.9986096","37.7985103"],["-120.998421","37.7984453"],["-120.9981561","37.7983148"],["-120.9973001","37.797705"],["-120.9972395","37.7975991"],["-120.9970093","37.7974657"],["-120.9968903","37.7974026"],["-120.9967655","37.7973455"],["-120.9966349","37.7972726"],["-120.9963849","37.7971476"],["-120.9959827","37.7969838"],["-120.9957704","37.7968891"],["-120.9955708","37.7968056"],["-120.9954127","37.7967474"],["-120.9952831","37.7967049"],["-120.9950207","37.7966868"],["-120.9947676","37.796673"],["-120.993631","37.7966448"],["-120.9929302","37.7966513"],["-120.9925957","37.796617"],["-120.9923793","37.7965404"],["-120.9922508","37.7964739"],["-120.9921536","37.7963989"],["-120.9896274","37.7944611"],["-120.9894586","37.794367"],["-120.9892898","37.7943013"],["-120.9891447","37.7942823"],["-120.9889826","37.7942702"],["-120.9836795","37.7942297"],["-120.9834227","37.794228"],["-120.9778905","37.7941875"],["-120.9774882","37.794177"],["-120.923475","37.7935728"],["-120.9233088","37.7935666"],["-120.9215365","37.7935381"],["-120.9200884","37.7934727"],["-120.9180467","37.7933415"],["-120.9166992","37.7933177"],["-120.9065275","37.7930974"],["-120.9051054","37.7930159"],["-120.9027024","37.7928275"],["-120.8900171","37.7915602"],["-120.8884651","37.7915192"],["-120.8721961","37.7912451"],["-120.8705713","37.7911954"],["-120.87011","37.7911569"],["-120.8698097","37.7911212"],["-120.8694692","37.7910723"],["-120.8690731","37.7910004"],["-120.8687046","37.7909256"],["-120.8681919","37.7907969"],["-120.8675305","37.7905997"],["-120.8671311","37.7904615"],["-120.8668238","37.7903401"],["-120.866051","37.7899884"],["-120.8655791","37.7897384"],["-120.8651625","37.7894952"],["-120.8643968","37.788993"],["-120.8617644","37.7868005"],["-120.8585229","37.784116"],["-120.8582256","37.7838795"],["-120.8578909","37.7836079"],["-120.8572323","37.7830555"],["-120.8565979","37.7825314"],["-120.8563248","37.7822491"],["-120.855961","37.7818433"],["-120.8556794","37.7815048"],["-120.855371","37.7810972"],["-120.8551556","37.7807918"],["-120.8546066","37.7797573"],["-120.8540138","37.7786307"],["-120.8538125","37.7782244"],["-120.8529208","37.7765738"],["-120.8527532","37.7762436"],["-120.8523588","37.7754976"],["-120.8520431","37.7749483"],["-120.8516461","37.7742557"],["-120.8515836","37.7741303"],["-120.851502","37.7739482"],["-120.8514262","37.7737465"],["-120.8513825","37.773604"],["-120.8513589","37.7733883"],["-120.8513384","37.7732028"],["-120.8513211","37.7731199"],["-120.8512961","37.7730146"],["-120.8512005","37.7728271"],["-120.8510317","37.772566"],["-120.8479349","37.7679901"],["-120.8474672","37.7672903"],["-120.8471737","37.7668322"],["-120.8470565","37.7666593"],["-120.846585","37.766854"],["-120.8465134","37.7668833"],["-120.8439196","37.7679586"],["-120.8431266","37.7682188"],["-120.8426013","37.7683815"],["-120.8422981","37.7684744"],["-120.8415639","37.7686992"],["-120.8412497","37.768792"],["-120.8410709","37.7688473"],["-120.8401138","37.7691364"],["-120.8360252","37.7707492"],["-120.8286634","37.7736354"],["-120.8281695","37.773822"],["-120.8274997","37.7740816"],["-120.8271693","37.774201"],["-120.8267979","37.774325"],["-120.8201628","37.7754601"],["-120.8172268","37.7760769"],["-120.8162829","37.7762544"],["-120.8152714","37.7763481"],["-120.8140751","37.7763854"],["-120.7781419","37.7765265"],["-120.7767926","37.7765645"],["-120.775953","37.7766432"],["-120.7742934","37.7768608"],["-120.7737384","37.7769743"],["-120.7727045","37.7772151"],["-120.7597642","37.7803859"],["-120.7579773","37.7807429"],["-120.7420537","37.7846583"],["-120.7408186","37.7849552"],["-120.7405644","37.7850455"],["-120.7356321","37.786254"],["-120.7346392","37.7865136"],["-120.7340591","37.7866608"],["-120.7322296","37.7870319"],["-120.7311756","37.7872524"],["-120.7303345","37.7874512"],["-120.729617","37.7876504"],["-120.729218","37.7878151"],["-120.7290809","37.7878915"],["-120.7289639","37.7879585"],["-120.7288394","37.7880491"],["-120.7287238","37.7881378"],["-120.7283557","37.7884966"],["-120.7278941","37.7889611"],["-120.7273689","37.7895837"],["-120.7263869","37.7907967"],["-120.7261052","37.7911817"],["-120.7258618","37.7915515"],["-120.7256196","37.7919564"],["-120.7254867","37.7922024"],["-120.7253952","37.7924227"],["-120.7253315","37.7926545"],["-120.7251567","37.793515"],["-120.7250644","37.7938409"],["-120.7248956","37.7942882"],["-120.7245974","37.7949976"],["-120.7243316","37.7956158"],["-120.7241787","37.7959309"],["-120.7240221","37.7961785"],["-120.7238536","37.7964259"],["-120.7235464","37.796808"],["-120.7223597","37.7982612"],["-120.7204528","37.8007476"],["-120.7196067","37.8018951"],["-120.7191672","37.8024845"],["-120.7189307","37.8027627"],["-120.7186206","37.8030635"],["-120.7181607","37.8034825"],["-120.717483","37.8041039"],["-120.7163054","37.805091"],["-120.7149965","37.8061214"],["-120.7147248","37.8062828"],["-120.7145515","37.8063775"],["-120.7143602","37.8064608"],["-120.7142099","37.8065195"],["-120.7138676","37.806629"],["-120.7134582","37.8067211"],["-120.713258","37.806749"],["-120.7130261","37.8067627"],["-120.7127537","37.8067728"],["-120.7125368","37.8067665"],["-120.712333","37.8067474"],["-120.7117296","37.8066596"],["-120.7112445","37.8065842"],["-120.7107091","37.8064964"],["-120.7104867","37.8064389"],["-120.7102488","37.8063702"],["-120.7098545","37.8061925"],["-120.7093615","37.8059178"],["-120.7088548","37.8055904"],["-120.7086201","37.8054329"],["-120.7083251","37.8052646"],["-120.7080408","37.8051189"],["-120.7077553","37.8050025"],["-120.7074777","37.8049004"],["-120.706827","37.8047102"],["-120.7065305","37.8046351"],["-120.706264","37.8045731"],["-120.7060056","37.8045436"],["-120.7056845","37.804524"],["-120.7045528","37.804525"],["-120.7041336","37.8045593"],["-120.7035315","37.8046765"],["-120.7028795","37.8048315"],["-120.7019598","37.8050609"],["-120.7012398","37.80525"],["-120.7009538","37.8053367"],["-120.7000553","37.805722"],["-120.6968951","37.8071171"],["-120.6964095","37.807303"],["-120.6959952","37.8074446"],["-120.6955644","37.8075516"],["-120.6950025","37.8076502"],["-120.6944442","37.8077236"],["-120.6938061","37.8077445"],["-120.693185","37.8077146"],["-120.6925515","37.8076318"],["-120.6919765","37.8075116"],["-120.6914555","37.8073637"],["-120.690702","37.8071248"],["-120.6902179","37.8069715"],["-120.6899113","37.8069032"],["-120.6895826","37.8068453"],["-120.6893147","37.8068009"],["-120.6890058","37.8067751"],["-120.6884475","37.806764"],["-120.6872847","37.8067985"],["-120.686846","37.8067912"],["-120.6864243","37.8067701"],["-120.6860028","37.8067161"],["-120.6856461","37.8066553"],["-120.6853865","37.8065865"],["-120.6851065","37.8064996"],["-120.6848482","37.8064112"],["-120.684415","37.8062257"],["-120.6799187","37.8038774"],["-120.6795732","37.803717"],["-120.6792891","37.803607"],["-120.6789779","37.8035067"],["-120.6786091","37.8034216"],["-120.6782022","37.8033407"],["-120.6777437","37.8032789"],["-120.6772518","37.8032494"],["-120.6767385","37.8032621"],["-120.6760915","37.8033406"],["-120.6756841","37.8034068"],["-120.6753124","37.8035098"],["-120.6748252","37.8036754"],["-120.6741284","37.8040053"],["-120.6681521","37.8072884"],["-120.6667732","37.8080939"],["-120.6652129","37.809284"],["-120.6618703","37.812019"],["-120.6612033","37.8125214"],["-120.6607752","37.8127972"],["-120.6603179","37.8130619"],["-120.659896","37.8132846"],["-120.6593309","37.8135351"],["-120.6584544","37.8139067"],["-120.65742","37.8143483"],["-120.6565575","37.8147735"],["-120.6559274","37.8151475"],["-120.6551645","37.8156366"],["-120.654582","37.8160812"],["-120.6541086","37.8164584"],["-120.653483","37.8170563"],["-120.6520621","37.8184647"],["-120.6511368","37.8193654"],["-120.6507446","37.8197164"],["-120.650347","37.8200094"],["-120.649839","37.8203102"],["-120.6493819","37.820524"],["-120.6488764","37.8207142"],["-120.648431","37.8208431"],["-120.647822","37.8209689"],["-120.6456993","37.8213632"],["-120.6451899","37.8214627"],["-120.6446272","37.8215822"],["-120.6437447","37.8218191"],["-120.642506","37.8221988"],["-120.6420118","37.8223782"],["-120.6416329","37.822494"],["-120.6413385","37.8226056"],["-120.6407513","37.8228775"],["-120.6401286","37.8232193"],["-120.6395689","37.8235544"],["-120.6390244","37.8239087"],["-120.638461","37.8243126"],["-120.6340132","37.8280037"],["-120.6323735","37.8293971"],["-120.6303748","37.8310502"],["-120.6298844","37.8314647"],["-120.6289878","37.8322533"],["-120.6286834","37.8325555"],["-120.6284114","37.8328465"],["-120.6281956","37.8331124"],["-120.6279801","37.8334256"],["-120.6277875","37.8337439"],["-120.6275699","37.8341235"],["-120.6273545","37.8345724"],["-120.6266255","37.8362587"],["-120.6261989","37.8372459"],["-120.6259765","37.8377168"],["-120.6256971","37.8382033"],["-120.6255497","37.8384085"],["-120.6254031","37.8386031"],["-120.6252324","37.8388265"],["-120.6249964","37.8390997"],["-120.6244488","37.8396934"],["-120.6241535","37.8399864"],["-120.6235382","37.8404969"],["-120.6231508","37.8407742"],["-120.6226842","37.8410551"],["-120.6222181","37.8413184"],["-120.6214768","37.8416953"],["-120.6204816","37.8421857"],["-120.6166774","37.8440551"],["-120.6162642","37.8442385"],["-120.6151644","37.8446494"],["-120.6144726","37.8448803"],["-120.613129","37.8452879"],["-120.6113971","37.8456943"],["-120.6108052","37.845818"],["-120.6100822","37.8459285"],["-120.6089917","37.8460404"],["-120.6084523","37.8460742"],["-120.6077709","37.8460712"],["-120.6070157","37.8460678"],["-120.6059125","37.8461122"],["-120.605618","37.8461423"],["-120.6052714","37.8461867"],["-120.6039308","37.846459"],["-120.6023614","37.8468104"],["-120.6017752","37.847"],["-120.6012972","37.8471981"],["-120.6009585","37.8473745"],["-120.6004392","37.8476385"],["-120.5999594","37.8478568"],["-120.5974308","37.8489561"],["-120.5964955","37.8493183"],["-120.5953949","37.8496945"],["-120.5951136","37.8497703"],["-120.5948309","37.8498285"],["-120.5944261","37.8498724"],["-120.5913654","37.8499866"],["-120.5898702","37.8499765"],["-120.5891096","37.8499041"],["-120.5886063","37.849818"],["-120.5879269","37.8496703"],["-120.5861717","37.8492461"],["-120.5858399","37.8491791"],["-120.5855865","37.8491509"],["-120.5850209","37.8491176"],["-120.5830435","37.8490625"],["-120.5825553","37.8490218"],["-120.5823267","37.8489658"],["-120.5819162","37.8488071"],["-120.5812072","37.8485125"],["-120.5803672","37.8481728"],["-120.5797531","37.8479509"],["-120.5790874","37.8477499"],["-120.5785215","37.8476034"],["-120.5780745","37.8474998"],["-120.5776315","37.8474145"],["-120.5771027","37.8473306"],["-120.5765241","37.8472601"],["-120.5757138","37.8471931"],["-120.5752299","37.8471666"],["-120.5746112","37.8471669"],["-120.5740518","37.8471823"],["-120.5722686","37.8472442"],["-120.5718555","37.8472363"],["-120.5717027","37.8472248"],["-120.5712442","37.8471785"],["-120.5649415","37.8465044"],["-120.5633684","37.8463553"],["-120.5554999","37.8461417"],["-120.5549836","37.8461145"],["-120.5542878","37.8460651"],["-120.5536181","37.8459957"],["-120.5529863","37.8459129"],["-120.5523394","37.8458136"],["-120.5510689","37.8455731"],["-120.5500106","37.8452983"],["-120.5489854","37.8449983"],["-120.5480097","37.8446937"],["-120.5471802","37.8444302"],["-120.5453262","37.8438346"],["-120.5447046","37.843653"],["-120.5431958","37.8433258"],["-120.5426916","37.8432399"],["-120.542088","37.8431563"],["-120.541466","37.8430953"],["-120.5409707","37.8430618"],["-120.5401593","37.8430371"],["-120.539391","37.843045"],["-120.5386749","37.8430828"],["-120.5353568","37.8433898"],["-120.5345055","37.8434408"],["-120.5340232","37.8434476"],["-120.533432","37.8434349"],["-120.5329452","37.8434051"],["-120.529577","37.8430755"],["-120.5287211","37.8429797"],["-120.5281675","37.8429058"],["-120.526649","37.8426481"],["-120.518238","37.8411268"],["-120.5176776","37.8410371"],["-120.5172361","37.8409806"],["-120.5167276","37.8409585"],["-120.5162916","37.8409553"],["-120.5159936","37.8409701"],["-120.515583","37.8410152"],["-120.5152566","37.8410696"],["-120.5149755","37.8411222"],["-120.5147396","37.841176"],["-120.5094989","37.8425829"],["-120.5092319","37.8426784"],["-120.5090015","37.8427743"],["-120.50887","37.8428384"],["-120.5086699","37.842939"],["-120.5084671","37.8430435"],["-120.5082738","37.8431811"],["-120.5080825","37.8433248"],["-120.5078568","37.8435178"],["-120.5075859","37.843777"],["-120.5072565","37.8441965"],["-120.5071447","37.8443914"],["-120.5070077","37.844692"],["-120.50679","37.8452547"],["-120.506775","37.8456131"],["-120.506771","37.8459376"],["-120.5067814","37.8461686"],["-120.5068219","37.8464381"],["-120.5068876","37.8467083"],["-120.5071418","37.8473303"],["-120.5113425","37.8567167"],["-120.511794","37.857768"],["-120.511919","37.8582375"],["-120.5120007","37.8586877"],["-120.5120306","37.8590811"],["-120.5120137","37.8596417"],["-120.5116818","37.8649562"],["-120.5115795","37.8658591"],["-120.5114816","37.8663256"],["-120.5113122","37.8668808"],["-120.5110011","37.8677544"],["-120.5097272","37.8710456"],["-120.5068474","37.8783779"],["-120.5065175","37.8791867"],["-120.5062908","37.8797327"],["-120.5061148","37.8801918"],["-120.5059897","37.8804524"],["-120.5058292","37.8807144"],["-120.505574","37.8810514"],["-120.5052734","37.8813821"],["-120.5050755","37.8815756"],["-120.5048494","37.8817541"],["-120.5045373","37.8819566"],["-120.5040422","37.8822131"],["-120.5026154","37.8828868"],["-120.502216","37.8831069"],["-120.5018324","37.8833464"],["-120.5006374","37.8842706"],["-120.5000241","37.884751"],["-120.4993983","37.8852622"],["-120.4991519","37.8854613"],["-120.4987149","37.8858172"],["-120.4968159","37.8873175"],["-120.4963389","37.8876656"],["-120.4958862","37.8879526"],["-120.495398","37.8881977"],["-120.4910915","37.8901365"],["-120.489899","37.8906476"],["-120.4893171","37.8908617"],["-120.488341","37.8912055"],["-120.4879579","37.8906252"],["-120.4876105","37.8900736"],["-120.4868993","37.8890264"],["-120.485808","37.8874257"],["-120.485425","37.8868888"],["-120.4852173","37.8866348"],["-120.4850467","37.8864382"],["-120.4847192","37.8861348"],["-120.4826889","37.884581"],["-120.4816371","37.8837744"],["-120.4797969","37.8823506"],["-120.4790425","37.8818323"],["-120.4787025","37.8816683"],["-120.4784436","37.8815609"],["-120.47803","37.8814279"],["-120.4777171","37.8813535"],["-120.4773889","37.8812978"],["-120.4677746","37.8802355"],["-120.4642419","37.8797326"],["-120.4636955","37.8796328"],["-120.4632146","37.8795189"],["-120.4628621","37.8793959"],["-120.4624558","37.8791963"],["-120.461551","37.8786913"],["-120.4609272","37.8783514"],["-120.4605455","37.8781589"],["-120.4602601","37.8780642"],["-120.4601051","37.8780216"],["-120.4599629","37.8779984"],["-120.4598536","37.8779954"],["-120.4596548","37.8780095"],["-120.4595031","37.8780344"],["-120.4592908","37.8780969"],["-120.4590819","37.878202"],["-120.4587647","37.878444"],["-120.4572848","37.8796165"],["-120.4568746","37.8799048"],["-120.4566808","37.8800045"],["-120.4565295","37.8800477"],["-120.4563621","37.8800744"],["-120.4561604","37.8800649"],["-120.4559104","37.8800179"],["-120.455311","37.8798319"],["-120.4513362","37.8785299"],["-120.4501418","37.8781145"],["-120.4494415","37.8778644"],["-120.4491575","37.877787"],["-120.4486325","37.8776731"],["-120.4473653","37.8776463"],["-120.4464599","37.8776329"],["-120.4457043","37.877595"],["-120.4451425","37.8775361"],["-120.4446405","37.8774574"],["-120.4434836","37.8771789"],["-120.4424873","37.8768967"],["-120.4418776","37.8767582"],["-120.4408217","37.8765361"],["-120.4397998","37.8763109"],["-120.4391646","37.8761567"],["-120.4382447","37.8758956"],["-120.4368943","37.8754561"],["-120.4349281","37.874759"],["-120.4343517","37.8745361"],["-120.4340896","37.8743821"],["-120.4331415","37.8735695"],["-120.4319218","37.8725305"],["-120.4317285","37.8723311"],["-120.4315844","37.8721561"],["-120.4314568","37.8719555"],["-120.4313659","37.8717797"],["-120.4312934","37.8715918"],["-120.4312418","37.8714228"],["-120.4312271","37.8713018"],["-120.4312171","37.8711789"],["-120.431221","37.8710693"],["-120.4312346","37.8709202"],["-120.4312554","37.8707414"],["-120.4313166","37.8705233"],["-120.4314936","37.8699109"],["-120.4315404","37.8697626"],["-120.4315716","37.869513"],["-120.4315702","37.8693117"],["-120.4315555","37.8691781"],["-120.4314777","37.8689767"],["-120.4313901","37.8687713"],["-120.4312576","37.8685563"],["-120.4310121","37.8682548"],["-120.4308067","37.868023"],["-120.4300269","37.8671425"],["-120.4272284","37.8639827"],["-120.4245236","37.8609954"],["-120.4235884","37.8601444"],["-120.4189577","37.85664"],["-120.4176858","37.8556852"],["-120.41627","37.8546294"],["-120.4151626","37.8538174"],["-120.4142531","37.8531388"],["-120.4135738","37.8526679"],["-120.4131389","37.8524134"],["-120.4127878","37.8522179"],["-120.4124433","37.852041"],["-120.4120267","37.8518537"],["-120.4116194","37.8516812"],["-120.4112488","37.8515498"],["-120.410848","37.8514142"],["-120.4101683","37.8512317"],["-120.4097054","37.8511333"],["-120.4091811","37.8510383"],["-120.4074926","37.8508308"],["-120.402385","37.8502594"],["-120.4015456","37.8501818"],["-120.4010244","37.8501574"],["-120.4001784","37.8501449"],["-120.3993191","37.8501547"],["-120.3985288","37.8501971"],["-120.3953472","37.8504928"],["-120.3948552","37.850522"],["-120.394377","37.8505148"],["-120.3940576","37.8504797"],["-120.3937372","37.8504342"],["-120.3933988","37.8503532"],["-120.3930264","37.8502486"],["-120.3920355","37.8499106"],["-120.3909429","37.8495233"],["-120.3897318","37.8491346"],["-120.3892988","37.8489743"],["-120.3890016","37.8488287"],["-120.3887073","37.8486658"],["-120.3883176","37.8484047"],["-120.3872707","37.8476466"],["-120.38666","37.8471938"],["-120.3858114","37.8465817"],["-120.3849846","37.8459641"],["-120.3843286","37.8454854"],["-120.3824454","37.8442129"],["-120.3818094","37.8437856"],["-120.3814944","37.8435552"],["-120.3812867","37.8433597"],["-120.3810027","37.8430653"],["-120.3808689","37.8428805"],["-120.3807076","37.8426181"],["-120.3804384","37.8419974"],["-120.3802444","37.8415169"],["-120.3800824","37.8410705"],["-120.3799344","37.8407645"],["-120.3797446","37.8404637"],["-120.3796005","37.8402972"],["-120.3794051","37.8401092"],["-120.3791479","37.8398797"],["-120.3789087","37.8397065"],["-120.3786431","37.8395525"],["-120.3784134","37.8394411"],["-120.3782064","37.8393522"],["-120.3779988","37.8392705"],["-120.377741","37.8391894"],["-120.3775283","37.8391298"],["-120.377169","37.8390486"],["-120.3769708","37.839023"],["-120.376769","37.8390029"],["-120.376577","37.83899"],["-120.3760273","37.838991"],["-120.3756202","37.8390183"],["-120.3752595","37.8390737"],["-120.3747972","37.8391908"],["-120.3737922","37.8395074"],["-120.3730243","37.8397403"],["-120.372637","37.8398361"],["-120.3722863","37.839903"],["-120.3718293","37.8399642"],["-120.3712258","37.8400181"],["-120.3707077","37.8400242"],["-120.3701894","37.8400049"],["-120.3697563","37.8399672"],["-120.3693459","37.8399064"],["-120.3688892","37.8398054"],["-120.3684107","37.8396841"],["-120.3679823","37.8395523"],["-120.367657","37.8394287"],["-120.3670467","37.8391533"],["-120.3642306","37.8377852"],["-120.3635487","37.8374453"],["-120.3630991","37.837199"],["-120.3626351","37.836922"],["-120.362199","37.8366175"],["-120.3618853","37.8363611"],["-120.3604709","37.8350211"],["-120.3600555","37.8346595"],["-120.3596222","37.8343505"],["-120.3594116","37.8342068"],["-120.3591306","37.8340289"],["-120.3588358","37.8338852"],["-120.3581617","37.8335558"],["-120.3572113","37.8331394"],["-120.3563303","37.8327137"],["-120.3558775","37.8325203"],["-120.3548575","37.8320713"],["-120.3544821","37.831919"],["-120.3540158","37.8317579"],["-120.3536348","37.8316403"],["-120.3532038","37.8315458"],["-120.3526811","37.8314658"],["-120.3504256","37.8312404"],["-120.3497984","37.8311623"],["-120.3493194","37.831066"],["-120.3488385","37.8309445"],["-120.3481526","37.8306721"],["-120.3469408","37.8301144"],["-120.3458995","37.8296023"],["-120.3439182","37.8285816"],["-120.342954","37.8281297"],["-120.3422254","37.8277796"],["-120.3416896","37.8275352"],["-120.3413117","37.8273915"],["-120.3409445","37.827221"],["-120.3401426","37.8268902"],["-120.3397624","37.82669"],["-120.3394199","37.8265203"],["-120.3389297","37.8262942"],["-120.3379093","37.8257959"],["-120.3367305","37.8252643"],["-120.3363037","37.8250393"],["-120.335949","37.8248731"],["-120.3352599","37.8245819"],["-120.3344389","37.8242115"],["-120.3337655","37.8239069"],["-120.3329412","37.8235026"],["-120.3323442","37.8232242"],["-120.3313734","37.8227753"],["-120.3254686","37.820095"],["-120.3214696","37.8182493"],["-120.3204376","37.817772"],["-120.3197192","37.8174509"],["-120.3179552","37.8166563"],["-120.3167755","37.8161196"],["-120.3163406","37.8159224"],["-120.3154393","37.8155395"],["-120.314779","37.8153025"],["-120.3141874","37.815134"],["-120.313803","37.8150393"],["-120.3134388","37.8149714"],["-120.3129371","37.8149005"],["-120.3124947","37.8148504"],["-120.3121658","37.8148231"],["-120.3117463","37.8147888"],["-120.3106024","37.8147"],["-120.3100654","37.8146372"],["-120.3095457","37.8145588"],["-120.3062767","37.8138766"],["-120.3059233","37.8138066"],["-120.3054825","37.81373"],["-120.3050054","37.8136815"],["-120.3046039","37.8136541"],["-120.3042077","37.8136493"],["-120.3038201","37.8136631"],["-120.3032914","37.8136987"],["-120.3003938","37.8139341"],["-120.3001712","37.8139857"],["-120.2999626","37.8140412"],["-120.2997908","37.8140924"],["-120.2996224","37.8141615"],["-120.2993475","37.8142897"],["-120.2991587","37.8143991"],["-120.2990089","37.8145084"],["-120.2988392","37.8146413"],["-120.298738","37.8147339"],["-120.2986663","37.8147908"],["-120.2986003","37.8147706"],["-120.2984909","37.8147524"],["-120.2981361","37.8147235"],["-120.2979448","37.8147192"],["-120.2978248","37.8147342"],["-120.2977321","37.8147681"],["-120.2976237","37.8148353"],["-120.297584","37.8148902"],["-120.2975665","37.8149519"],["-120.2975761","37.8150306"],["-120.2976503","37.8151877"],["-120.2976659","37.8152816"],["-120.297657","37.8153694"],["-120.2976048","37.815455"],["-120.2975177","37.8155299"],["-120.2973629","37.815596"],["-120.2970714","37.8156676"],["-120.296774","37.8158402"],["-120.2964571","37.8160306"],["-120.2963051","37.8161113"],["-120.2961241","37.8161656"],["-120.2958551","37.816235"],["-120.2956395","37.8163031"],["-120.2953809","37.8164069"],["-120.2951632","37.8164592"],["-120.2950521","37.8164729"],["-120.2948205","37.8164631"],["-120.2944309","37.8164197"],["-120.2939066","37.8164166"],["-120.2937032","37.8163676"],["-120.2933248","37.8162051"],["-120.2930823","37.8161465"],["-120.2926866","37.8160997"],["-120.2921621","37.8160041"],["-120.2920011","37.8159951"],["-120.291893","37.8159956"],["-120.2918108","37.8160108"],["-120.2917172","37.8160449"],["-120.2912459","37.8163535"],["-120.2911204","37.8164202"],["-120.2910149","37.8164514"],["-120.2908724","37.8164815"],["-120.2905585","37.8165187"],["-120.2904788","37.816542"],["-120.2903921","37.8165886"],["-120.2902818","37.8166868"],["-120.2901216","37.816791"],["-120.289755","37.8169725"],["-120.2895817","37.8170599"],["-120.2894735","37.8170932"],["-120.2893388","37.8171167"],["-120.2891993","37.8171318"],["-120.2890696","37.8171233"],["-120.28894","37.8170961"],["-120.2886989","37.817027"],["-120.2885406","37.8170146"],["-120.2884377","37.8170326"],["-120.288358","37.8170687"],["-120.2882783","37.8171397"],["-120.2882352","37.8172365"],["-120.2881724","37.8174004"],["-120.288091","37.817501"],["-120.2879975","37.8175735"],["-120.2878953","37.8176213"],["-120.2877884","37.817658"],["-120.2876391","37.8176799"],["-120.2875358","37.8176788"],["-120.2873934","37.817653"],["-120.2871955","37.8176039"],["-120.2869675","37.8175509"],["-120.286689","37.8175026"],["-120.2861805","37.8174488"],["-120.2856467","37.8174006"],["-120.2855191","37.8174112"],["-120.285431","37.8174415"],["-120.2853393","37.8175234"],["-120.2852803","37.8176283"],["-120.2851965","37.8178583"],["-120.2851139","37.8181366"],["-120.2850396","37.8183054"],["-120.2849502","37.8184307"],["-120.2848249","37.8185336"],["-120.2846647","37.8186296"],["-120.2844589","37.8187186"],["-120.2843074","37.8187534"],["-120.2841633","37.8187637"],["-120.2840149","37.8187537"],["-120.2838591","37.8187186"],["-120.2836456","37.8186202"],["-120.2834941","37.8185603"],["-120.2833292","37.818554"],["-120.2829554","37.8186135"],["-120.2824393","37.818714"],["-120.281968","37.818807"],["-120.2817576","37.8188236"],["-120.2816183","37.8188074"],["-120.2814462","37.8187417"],["-120.2809142","37.8184873"],["-120.2805718","37.8182891"],["-120.2803053","37.8181781"],["-120.2800484","37.8180699"],["-120.279929","37.8179957"],["-120.2798464","37.8179154"],["-120.2797713","37.8177888"],["-120.2796221","37.8175022"],["-120.2794474","37.8172834"],["-120.2792254","37.8170948"],["-120.2789785","37.8168895"],["-120.2788492","37.8167781"],["-120.2787797","37.8167248"],["-120.2786692","37.8166982"],["-120.2785838","37.8167141"],["-120.2784857","37.8167673"],["-120.2784002","37.8168474"],["-120.2783388","37.8169402"],["-120.2783127","37.8170872"],["-120.2782842","37.8172661"],["-120.2782243","37.8174182"],["-120.2781441","37.817539"],["-120.2780636","37.8176085"],["-120.2780057","37.817638"],["-120.2779395","37.817666"],["-120.2778764","37.8176877"],["-120.2778013","37.8176901"],["-120.277676","37.817682"],["-120.2776003","37.8176552"],["-120.2774379","37.8175594"],["-120.2768635","37.8171866"],["-120.2767312","37.8170751"],["-120.2766203","37.8169639"],["-120.2765173","37.8168339"],["-120.2764153","37.8166503"],["-120.2763164","37.8165109"],["-120.2762349","37.8164356"],["-120.2761318","37.8163818"],["-120.2760007","37.8163542"],["-120.2758347","37.816323"],["-120.2756914","37.8162649"],["-120.275444","37.8161146"],["-120.2751697","37.815962"],["-120.2750384","37.8158738"],["-120.2749483","37.8157771"],["-120.2748689","37.8156748"],["-120.2747809","37.8155982"],["-120.2746217","37.8154995"],["-120.274345","37.8153427"],["-120.27406","37.8152061"],["-120.2738023","37.8150811"],["-120.2734371","37.8148602"],["-120.2732979","37.8147623"],["-120.273202","37.8146726"],["-120.2730479","37.8144559"],["-120.2729783","37.8143888"],["-120.2728214","37.8142835"],["-120.2725751","37.8141353"],["-120.2723353","37.8140183"],["-120.2721754","37.8139647"],["-120.2720679","37.8139333"],["-120.2720133","37.8139304"],["-120.2719501","37.8139497"],["-120.271775","37.81395"],["-120.271487","37.8139972"],["-120.2710217","37.8141051"],["-120.2705831","37.8142196"],["-120.2703317","37.8143148"],["-120.2700609","37.8144692"],["-120.269814","37.8146589"],["-120.2695209","37.8149227"],["-120.2693804","37.8150889"],["-120.2692782","37.8152422"],["-120.2692076","37.8154061"],["-120.26906","37.815922"],["-120.268916","37.8163435"],["-120.268821","37.8165616"],["-120.2687105","37.8167388"],["-120.2686188","37.8168501"],["-120.2685019","37.8169414"],["-120.2682759","37.8170542"],["-120.2681193","37.8170922"],["-120.2679867","37.8171171"],["-120.2671902","37.817225"],["-120.2668606","37.8173074"],["-120.2666031","37.8174202"],["-120.2659648","37.8178014"],["-120.2653701","37.8181522"],["-120.2646829","37.8185662"],["-120.2644155","37.818779"],["-120.2642733","37.8189352"],["-120.2640611","37.8191827"],["-120.2638568","37.8194285"],["-120.2634876","37.8199695"],["-120.2633806","37.8200932"],["-120.2630537","37.8204078"],["-120.2629286","37.820555"],["-120.2628563","37.8206653"],["-120.2626087","37.8211614"],["-120.2625148","37.8213037"],["-120.2624356","37.821402"],["-120.2623144","37.8215232"],["-120.2621183","37.8217146"],["-120.2619994","37.8218373"],["-120.2619098","37.8219463"],["-120.2617643","37.8221657"],["-120.2616328","37.8223652"],["-120.2615593","37.8224646"],["-120.2614899","37.822529"],["-120.2614183","37.8225828"],["-120.2613591","37.8226071"],["-120.26127","37.8226372"],["-120.2607992","37.8227526"],["-120.2591056","37.8231804"],["-120.2588956","37.8232121"],["-120.2583486","37.8232742"],["-120.2581738","37.8233165"],["-120.2580516","37.8233724"],["-120.2579789","37.8234105"],["-120.2578066","37.8235459"],["-120.2575146","37.8238285"],["-120.2571621","37.8241953"],["-120.2567805","37.8245078"],["-120.2565866","37.8246488"],["-120.2561455","37.8249041"],["-120.2559299","37.8250022"],["-120.2553442","37.8252015"],["-120.2545866","37.8254074"],["-120.2543478","37.8254978"],["-120.2540218","37.8256557"],["-120.2536864","37.8258193"],["-120.2534249","37.8259476"],["-120.2533289","37.8259991"],["-120.2532588","37.8260422"],["-120.2531462","37.8261283"],["-120.2530904","37.8261891"],["-120.2530308","37.8262665"],["-120.2529349","37.8264077"],["-120.2528243","37.8265405"],["-120.2526346","37.8267325"],["-120.2523251","37.8269563"],["-120.2521274","37.8270826"],["-120.2517804","37.8272607"],["-120.2517015","37.8273005"],["-120.2510108","37.8276182"],["-120.2506097","37.8278198"],["-120.2500119","37.8281356"],["-120.2493431","37.8285099"],["-120.2489943","37.8287503"],["-120.2487519","37.8289294"],["-120.2483751","37.8291638"],["-120.2480038","37.8293769"],["-120.247745","37.8295305"],["-120.2475935","37.8296292"],["-120.2474522","37.8297379"],["-120.2472957","37.8298681"],["-120.2471518","37.8300166"],["-120.2470054","37.8302001"],["-120.2468098","37.8305175"],["-120.2466613","37.8306869"],["-120.2462962","37.831027"],["-120.2460482","37.8312368"],["-120.2458024","37.8314326"],["-120.2452091","37.8318506"],["-120.2449389","37.8320424"],["-120.2444407","37.832325"],["-120.244256","37.8323897"],["-120.2440528","37.8324313"],["-120.2437679","37.8324769"],["-120.243588","37.8325317"],["-120.2434421","37.8325984"],["-120.2433065","37.8326962"],["-120.2430891","37.8329121"],["-120.2427264","37.8333117"],["-120.2418685","37.8341944"],["-120.2415928","37.8344592"],["-120.241446","37.8345815"],["-120.2412757","37.8346845"],["-120.2409305","37.8348592"],["-120.2400613","37.8352487"],["-120.2394251","37.8355355"],["-120.2391328","37.8356784"],["-120.2388899","37.8358236"],["-120.2384591","37.8360646"],["-120.2379445","37.836348"],["-120.237718","37.8364468"],["-120.2375134","37.8365057"],["-120.2372779","37.8365391"],["-120.2368872","37.8365582"],["-120.2362097","37.8365739"],["-120.2359531","37.8366132"],["-120.2357117","37.8366624"],["-120.2354701","37.836725"],["-120.2351439","37.8368461"],["-120.2330963","37.8376496"],["-120.2325788","37.8378437"],["-120.2322623","37.837981"],["-120.2314283","37.8384024"],["-120.2310848","37.8385687"],["-120.2303795","37.8389302"],["-120.2293846","37.8394683"],["-120.2291777","37.8395416"],["-120.229015","37.8395806"],["-120.2287366","37.8396222"],["-120.2266782","37.8398192"],["-120.2262374","37.8398774"],["-120.2257261","37.8399642"],["-120.2255663","37.8399747"],["-120.2254503","37.8399774"],["-120.2253674","37.8399739"],["-120.2242219","37.8397862"],["-120.224033","37.8397454"],["-120.2239004","37.8397067"],["-120.2237756","37.8396566"],["-120.2235822","37.8395505"],["-120.2233925","37.8394374"],["-120.2231612","37.8392928"],["-120.2226888","37.8390004"],["-120.2221509","37.8386469"],["-120.2219784","37.8384877"],["-120.2218628","37.83837"],["-120.2216508","37.8381359"],["-120.2214596","37.8378497"],["-120.2213559","37.8376586"],["-120.2212303","37.83731"],["-120.2211481","37.8370785"],["-120.2209999","37.8368289"],["-120.2208424","37.8366185"],["-120.2206129","37.8363855"],["-120.2204785","37.836275"],["-120.2202638","37.8361234"],["-120.2201064","37.8360278"],["-120.2198046","37.8358727"],["-120.219638","37.8358056"],["-120.2194451","37.835748"],["-120.2191184","37.8356657"],["-120.2188166","37.83562"],["-120.2184292","37.8355819"],["-120.2177838","37.835529"],["-120.2162117","37.8354031"],["-120.2157478","37.8353863"],["-120.2152414","37.8354011"],["-120.2149057","37.8354411"],["-120.2145684","37.8355088"],["-120.2141483","37.8356237"],["-120.2137751","37.8357562"],["-120.2136143","37.8358286"],["-120.2132176","37.8360295"],["-120.2127845","37.8363092"],["-120.2097103","37.8384901"],["-120.2094864","37.8386095"],["-120.2092143","37.8387233"],["-120.208941","37.8387911"],["-120.208701","37.8388317"],["-120.2084313","37.8388609"],["-120.2081368","37.8388627"],["-120.2078516","37.838857"],["-120.2076086","37.838834"],["-120.2073603","37.8387903"],["-120.2070544","37.8386922"],["-120.2066369","37.8385165"],["-120.2064033","37.8384028"],["-120.2061472","37.8382601"],["-120.2059505","37.8381091"],["-120.2058322","37.8380018"],["-120.2056534","37.8378056"],["-120.2046758","37.8364448"],["-120.204186","37.8357812"],["-120.2036938","37.8350801"],["-120.2033105","37.8344558"],["-120.2030612","37.8341358"],["-120.2028463","37.8339365"],["-120.202618","37.8337814"],["-120.2021237","37.8334462"],["-120.2010663","37.8327099"],["-120.198643","37.8311197"],["-120.1979875","37.8306825"],["-120.1972796","37.8302472"],["-120.1966275","37.8298338"],["-120.1952611","37.8288613"],["-120.1948665","37.8286662"],["-120.1944119","37.8284836"],["-120.1940016","37.828347"],["-120.1937639","37.8282809"],["-120.1935485","37.8282405"],["-120.1931175","37.828184"],["-120.1924937","37.8281217"],["-120.1903534","37.8279975"],["-120.1899918","37.8280088"],["-120.1896859","37.828026"],["-120.1894063","37.8280622"],["-120.1887955","37.8281849"],["-120.1874761","37.828467"],["-120.1870681","37.8285524"],["-120.1865636","37.8286557"],["-120.1858835","37.8287781"],["-120.1854545","37.8288396"],["-120.1850858","37.8288529"],["-120.1847099","37.8288502"],["-120.1843043","37.8288161"],["-120.1839716","37.8287623"],["-120.1792468","37.8274126"],["-120.1787773","37.827257"],["-120.1783259","37.8270734"],["-120.1764702","37.8261927"],["-120.1756204","37.8258101"],["-120.1749714","37.8256123"],["-120.1733549","37.8252581"],["-120.1728718","37.8251447"],["-120.1725439","37.8250418"],["-120.1721056","37.8248673"],["-120.169523","37.8235787"],["-120.1692116","37.8234496"],["-120.1689258","37.8233416"],["-120.1679027","37.8230225"],["-120.1675213","37.8229166"],["-120.1670866","37.8228217"],["-120.1659878","37.8225981"],["-120.1656331","37.8225257"],["-120.1651439","37.8224201"],["-120.1645071","37.8222735"],["-120.1629154","37.8219074"],["-120.1622071","37.8217466"],["-120.1615509","37.8216127"],["-120.1606181","37.8214161"],["-120.1586562","37.8209621"],["-120.1573916","37.8206947"],["-120.1571698","37.8206625"],["-120.1569212","37.820636"],["-120.1566173","37.820619"],["-120.1562371","37.8206097"],["-120.1548304","37.8207016"],["-120.1504325","37.8210573"],["-120.149949","37.82108"],["-120.1494742","37.8210931"],["-120.1487009","37.8210884"],["-120.1474384","37.8210297"],["-120.1449979","37.8208676"],["-120.1403316","37.8205617"],["-120.1370035","37.8203805"],["-120.1358761","37.8203034"],["-120.1353296","37.8202569"],["-120.1348395","37.8202138"],["-120.1344121","37.8201407"],["-120.1340069","37.8200399"],["-120.1336916","37.8199324"],["-120.1334285","37.81982"],["-120.1331555","37.8196665"],["-120.1328548","37.8194811"],["-120.1324819","37.819214"],["-120.1306193","37.817691"],["-120.1302613","37.8174344"],["-120.1299527","37.8172571"],["-120.1297045","37.8171343"],["-120.1295233","37.8170577"],["-120.1291839","37.8169342"],["-120.1285347","37.8167607"],["-120.1271482","37.8164073"],["-120.12638","37.8161897"],["-120.1260259","37.8160587"],["-120.1257545","37.815941"],["-120.1254553","37.8157907"],["-120.1248957","37.815474"],["-120.1228715","37.8142676"],["-120.1226099","37.8141258"],["-120.1223718","37.8140228"],["-120.1220992","37.8139111"],["-120.1217233","37.8137817"],["-120.1214183","37.8136913"],["-120.121147","37.8136268"],["-120.1209061","37.8135753"],["-120.1206387","37.8135339"],["-120.1200195","37.8134953"],["-120.1194382","37.8134972"],["-120.1189979","37.8135244"],["-120.118488","37.8136036"],["-120.1180863","37.8136896"],["-120.1173823","37.8139032"],["-120.1114331","37.8159946"],["-120.11049","37.8163788"],["-120.1099832","37.8166286"],["-120.1095444","37.8168706"],["-120.1028366","37.8214065"],["-120.102194","37.8218444"],["-120.1002339","37.8231626"],["-120.0995168","37.8236303"],["-120.0991281","37.8238617"],["-120.0987565","37.8240604"],["-120.0980287","37.8244026"],["-120.0976097","37.8245642"],["-120.0968992","37.8248023"],["-120.0961218","37.8250058"],["-120.0954759","37.8251428"],["-120.0934228","37.8254411"],["-120.0929792","37.8254937"],["-120.09255","37.8255221"],["-120.0922125","37.8255147"],["-120.0919353","37.8254717"],["-120.0916565","37.8254081"],["-120.0913747","37.8253141"],["-120.0911102","37.8252048"],["-120.090887","37.8250874"],["-120.0906839","37.8249717"],["-120.0905144","37.8248518"],["-120.0903103","37.824683"],["-120.0900605","37.8244133"],["-120.0899214","37.8242198"],["-120.0898138","37.8240241"],["-120.0897395","37.8238548"],["-120.0896808","37.8236759"],["-120.0896241","37.8234082"],["-120.0895477","37.823004"],["-120.0894707","37.8226217"],["-120.0893764","37.8223086"],["-120.0893011","37.822121"],["-120.089221","37.8219801"],["-120.0891178","37.8218194"],["-120.0889553","37.8215957"],["-120.0888605","37.8214818"],["-120.0886671","37.8213087"],["-120.088536","37.8212114"],["-120.0884042","37.8211189"],["-120.0882765","37.8210378"],["-120.0880975","37.8209479"],["-120.0878811","37.8208468"],["-120.0876602","37.8207448"],["-120.0873392","37.8205934"],["-120.0868904","37.8203918"],["-120.0865657","37.8202796"],["-120.0863584","37.8202246"],["-120.0859838","37.8201529"],["-120.0857668","37.8201238"],["-120.0855098","37.820114"],["-120.0852776","37.8201147"],["-120.0850765","37.8201221"],["-120.0833529","37.8203421"],["-120.0828657","37.8204036"],["-120.0824535","37.8204266"],["-120.0821085","37.8204022"],["-120.0817976","37.8203613"],["-120.0815123","37.8202935"],["-120.0802193","37.8198736"],["-120.0797325","37.8197253"],["-120.0794681","37.8196624"],["-120.0791972","37.8196303"],["-120.0789164","37.8196274"],["-120.0776834","37.8196662"],["-120.07723","37.8196762"],["-120.0769329","37.8196631"],["-120.0766781","37.8196426"],["-120.0764545","37.8196045"],["-120.0760635","37.8194973"],["-120.0758482","37.8194117"],["-120.0756714","37.8193185"],["-120.0755085","37.8192208"],["-120.0753778","37.8191379"],["-120.0752393","37.819029"],["-120.0751094","37.818921"],["-120.0749757","37.8187944"],["-120.0734739","37.8171476"],["-120.0730694","37.8167351"],["-120.0726108","37.8162295"],["-120.0722469","37.8158027"],["-120.0718901","37.815383"],["-120.0717362","37.815229"],["-120.0715926","37.815107"],["-120.071426","37.8149783"],["-120.0712644","37.8148701"],["-120.0710809","37.8147602"],["-120.0708637","37.8146619"],["-120.0706339","37.8145792"],["-120.0702903","37.8144924"],["-120.0679671","37.8140737"],["-120.0675196","37.8139901"],["-120.0670878","37.8139098"],["-120.0667322","37.8138544"],["-120.0664893","37.8138356"],["-120.0661631","37.8138283"],["-120.0657775","37.8138521"],["-120.0654839","37.8138973"],["-120.0652213","37.8139553"],["-120.0649758","37.8140199"],["-120.0647327","37.8141057"],["-120.0645316","37.8141861"],["-120.0643531","37.8142732"],["-120.0618521","37.8157455"],["-120.0613737","37.8160127"],["-120.0611429","37.8161262"],["-120.0606812","37.8163216"],["-120.0561827","37.8178877"],["-120.051271","37.8194679"],["-120.0502758","37.8197731"],["-120.0499627","37.8198315"],["-120.0496267","37.8198762"],["-120.0493662","37.8198927"],["-120.0491303","37.819894"],["-120.04887","37.8198846"],["-120.0484139","37.819834"],["-120.0477344","37.8197449"],["-120.0466887","37.8196431"],["-120.0463418","37.8196348"],["-120.0460508","37.8196565"],["-120.0457761","37.8197034"],["-120.0453679","37.8198036"],["-120.045142","37.8198766"],["-120.0449164","37.8199553"],["-120.044718","37.820045"],["-120.0444355","37.8201963"],["-120.043818","37.8205491"],["-120.0436128","37.8206808"],["-120.0433558","37.8208402"],["-120.0431237","37.8209476"],["-120.0429054","37.8210331"],["-120.0426241","37.821121"],["-120.0423195","37.8211866"],["-120.041912","37.8212561"],["-120.0407521","37.8214702"],["-120.0402028","37.8215958"],["-120.0391385","37.8218073"],["-120.0388347","37.8218585"],["-120.0384892","37.8219014"],["-120.0382305","37.8219126"],["-120.0379842","37.8219048"],["-120.0377514","37.8218856"],["-120.0374919","37.8218464"],["-120.0352316","37.8213612"],["-120.03359","37.820964"],["-120.0331358","37.8208775"],["-120.0328275","37.8208386"],["-120.0324745","37.8208122"],["-120.0320921","37.8208018"],["-120.0317858","37.8208115"],["-120.0314541","37.8208489"],["-120.0299214","37.821058"],["-120.0295743","37.8211144"],["-120.0293026","37.821176"],["-120.029038","37.821244"],["-120.0288093","37.8213228"],["-120.0285885","37.8214096"],["-120.0283872","37.8214957"],["-120.0281876","37.8215979"],["-120.0271118","37.8221987"],["-120.0269183","37.822298"],["-120.0267377","37.8223833"],["-120.0265513","37.8224578"],["-120.0264008","37.8225117"],["-120.026251","37.8225517"],["-120.0258814","37.8226221"],["-120.0256839","37.8226487"],["-120.0254769","37.82267"],["-120.0251209","37.8226759"],["-120.0238584","37.8226522"],["-120.0236331","37.8226577"],["-120.0234107","37.822691"],["-120.0232185","37.8227451"],["-120.0230389","37.8228034"],["-120.0228599","37.8228807"],["-120.0227446","37.8229454"],["-120.0226189","37.8230216"],["-120.0225091","37.8231024"],["-120.0224095","37.8231859"],["-120.0223127","37.8232781"],["-120.0222224","37.8233782"],["-120.0220986","37.8235392"],["-120.0218131","37.8240366"],["-120.0216923","37.8242325"],["-120.0215842","37.8243955"],["-120.0214541","37.8245454"],["-120.0213598","37.8246428"],["-120.0212701","37.8247149"],["-120.0211446","37.8247986"],["-120.021006","37.8248696"],["-120.020825","37.8249497"],["-120.0206643","37.8250029"],["-120.0205001","37.8250424"],["-120.0202907","37.8250787"],["-120.0201124","37.8250897"],["-120.0199417","37.8250912"],["-120.0197457","37.825082"],["-120.0195643","37.8250609"],["-120.0194007","37.8250223"],["-120.0192506","37.8249746"],["-120.0191117","37.8249204"],["-120.0189975","37.8248628"],["-120.0188755","37.8247972"],["-120.0187538","37.824719"],["-120.0186513","37.8246367"],["-120.0185628","37.8245502"],["-120.0184671","37.8244336"],["-120.0183384","37.8242616"],["-120.0181736","37.8240308"],["-120.0178793","37.8235806"],["-120.0177832","37.823428"],["-120.017724","37.8233337"],["-120.0176689","37.8232634"],["-120.0175908","37.8231741"],["-120.0174484","37.823025"],["-120.0173473","37.8229398"],["-120.0172265","37.8228595"],["-120.0171058","37.8227858"],["-120.0169923","37.8227249"],["-120.0168584","37.8226646"],["-120.0167341","37.8226105"],["-120.0165949","37.8225581"],["-120.0164665","37.8225225"],["-120.0163357","37.8225007"],["-120.0162014","37.8224842"],["-120.0160856","37.8224799"],["-120.0159617","37.822491"],["-120.0156102","37.8225528"],["-120.0151214","37.8226605"],["-120.0145672","37.8228029"],["-120.0143006","37.8228933"],["-120.0140934","37.8229917"],["-120.0139519","37.8230704"],["-120.0125236","37.8239512"],["-120.0122315","37.824189"],["-120.0120248","37.8243376"],["-120.0118243","37.8244445"],["-120.0112888","37.8246633"],["-120.0110467","37.8247416"],["-120.0108723","37.8247875"],["-120.0107666","37.824809"],["-120.0106293","37.8248202"],["-120.0103937","37.824831"],["-120.0102071","37.8248212"],["-120.0100096","37.8248073"],["-120.0098018","37.8247909"],["-120.0095464","37.8247631"],["-120.0091111","37.8247181"],["-120.006846","37.824482"],["-120.0064701","37.8244366"],["-120.0062923","37.8244035"],["-120.0061397","37.8243641"],["-120.0060103","37.8243189"],["-120.0058422","37.8242474"],["-120.0056937","37.8241706"],["-120.0055575","37.8240891"],["-120.0054212","37.8239879"],["-120.005335","37.8239129"],["-120.0052075","37.8237811"],["-120.0049855","37.8234534"],["-120.0048376","37.8232206"],["-120.0047265","37.823065"],["-120.0046568","37.8229849"],["-120.004576","37.8229094"],["-120.0044568","37.8228108"],["-120.0043621","37.8227462"],["-120.0042543","37.8226808"],["-120.0040996","37.8226051"],["-120.0039238","37.8225339"],["-120.0037371","37.8224779"],["-120.003627","37.8224552"],["-120.0035046","37.8224367"],["-120.0033507","37.822421"],["-120.0031469","37.8224166"],["-120.0029597","37.822429"],["-120.0027751","37.8224611"],["-120.0026003","37.8225073"],["-120.0023849","37.822584"],["-120.0021781","37.8226792"],["-120.0019664","37.8227779"],["-120.0017683","37.8228688"],["-120.0015988","37.822933"],["-120.0014341","37.8229843"],["-120.0012642","37.8230217"],["-120.0010512","37.8230532"],["-120.0008598","37.8230741"],["-120.0006253","37.8230843"],["-120.0004563","37.82308"],["-120.0003141","37.8230679"],["-120.0001885","37.8230506"],["-120.0000699","37.8230243"],["-119.9999158","37.8229775"],["-119.9997669","37.8229221"],["-119.9996205","37.8228573"],["-119.9994829","37.8227771"],["-119.9992083","37.8225956"],["-119.9976011","37.8214447"],["-119.9974411","37.8213367"],["-119.9972891","37.8212551"],["-119.9971576","37.8212024"],["-119.9970255","37.8211533"],["-119.9968628","37.8211107"],["-119.9967089","37.8210755"],["-119.9965725","37.8210527"],["-119.9964619","37.8210431"],["-119.9963484","37.8210378"],["-119.9961941","37.8210383"],["-119.9960414","37.8210449"],["-119.9959165","37.8210588"],["-119.9957953","37.8210808"],["-119.9956803","37.8211052"],["-119.9955545","37.8211432"],["-119.9953803","37.8212027"],["-119.9952234","37.8212764"],["-119.9951021","37.8213438"],["-119.9950136","37.8213968"],["-119.9949253","37.8214597"],["-119.9947926","37.8215688"],["-119.9946754","37.8216827"],["-119.9945809","37.8217998"],["-119.9944829","37.8219393"],["-119.9940322","37.8226341"],["-119.9938965","37.8228364"],["-119.9937797","37.8229791"],["-119.9936553","37.8231014"],["-119.9935618","37.8231803"],["-119.9934658","37.8232523"],["-119.9933517","37.8233279"],["-119.9932432","37.8233944"],["-119.9931103","37.8234588"],["-119.9929745","37.823512"],["-119.9928279","37.8235629"],["-119.99269","37.8236036"],["-119.9925858","37.8236291"],["-119.9924931","37.8236456"],["-119.9923691","37.8236634"],["-119.9922419","37.8236747"],["-119.992105","37.8236838"],["-119.9917266","37.8236819"],["-119.9891039","37.8236503"],["-119.9889267","37.8236572"],["-119.9887866","37.8236753"],["-119.9886535","37.8237019"],["-119.9885362","37.8237314"],["-119.9884002","37.8237836"],["-119.9882627","37.8238451"],["-119.9881002","37.8239305"],["-119.9879612","37.8240213"],["-119.98786","37.8240989"],["-119.9877694","37.8241821"],["-119.9876691","37.8242895"],["-119.9875599","37.8244576"],["-119.9874777","37.8246305"],["-119.9874172","37.8248543"],["-119.987376","37.8250182"],["-119.9873273","37.8251733"],["-119.9872796","37.8253072"],["-119.9871938","37.8254588"],["-119.9870867","37.825604"],["-119.9869322","37.8257766"],["-119.98509","37.8277314"],["-119.9849489","37.8279326"],["-119.9848187","37.8281778"],["-119.9847193","37.8283885"],["-119.9846453","37.8285383"],["-119.984562","37.8286708"],["-119.9844494","37.8288082"],["-119.9843447","37.8289137"],["-119.9842488","37.829005"],["-119.9841061","37.8291138"],["-119.9839312","37.8292162"],["-119.9837803","37.8292823"],["-119.9836507","37.8293195"],["-119.9834461","37.8293689"],["-119.9832039","37.8293957"],["-119.9829939","37.8294043"],["-119.9827844","37.829392"],["-119.982569","37.8293634"],["-119.9823579","37.8293068"],["-119.9821657","37.8292411"],["-119.9819935","37.8291594"],["-119.9817844","37.829035"],["-119.9815367","37.8288614"],["-119.9812412","37.8286567"],["-119.9809151","37.8284529"],["-119.9806718","37.8283089"],["-119.98048","37.828211"],["-119.9802785","37.8281165"],["-119.9800449","37.8280187"],["-119.9797653","37.8279127"],["-119.9795148","37.8278293"],["-119.9792186","37.8277465"],["-119.9789011","37.8276699"],["-119.9785837","37.8276019"],["-119.9778824","37.8275154"],["-119.9756386","37.8272889"],["-119.9753808","37.8272474"],["-119.9751468","37.8271899"],["-119.974821","37.8270908"],["-119.9745184","37.8269713"],["-119.9742631","37.8268459"],["-119.9740784","37.8267467"],["-119.9738862","37.8266112"],["-119.9735458","37.8263302"],["-119.973062","37.8258617"],["-119.9728435","37.8256563"],["-119.9727141","37.825546"],["-119.9725212","37.8254024"],["-119.972361","37.8252975"],["-119.9721944","37.8251996"],["-119.9718158","37.8250331"],["-119.9716265","37.8249635"],["-119.9713948","37.8249015"],["-119.9709027","37.8247984"],["-119.9705216","37.824718"],["-119.9700149","37.8246031"],["-119.9697732","37.8245326"],["-119.9695032","37.8244368"],["-119.9693292","37.8243662"],["-119.9691374","37.824269"],["-119.9689788","37.8241793"],["-119.9688279","37.8240865"],["-119.9686803","37.8239865"],["-119.9684195","37.8237881"],["-119.9678672","37.8233588"],["-119.9676967","37.8232388"],["-119.9675002","37.8231142"],["-119.9673154","37.8230074"],["-119.967094","37.8229004"],["-119.9668367","37.8227941"],["-119.9665719","37.8227039"],["-119.9663123","37.8226423"],["-119.9660947","37.8225965"],["-119.965921","37.8225671"],["-119.9653159","37.8224826"],["-119.959874","37.8217409"],["-119.9594321","37.8216736"],["-119.9591571","37.8216099"],["-119.9589094","37.8215233"],["-119.9586744","37.8214264"],["-119.9583843","37.8212747"],["-119.9582178","37.8211641"],["-119.9581007","37.8210762"],["-119.9579988","37.8209918"],["-119.9579005","37.820902"],["-119.9578005","37.8207983"],["-119.9576641","37.8206428"],["-119.9574603","37.820384"],["-119.9571922","37.8200341"],["-119.9567954","37.819534"],["-119.9564209","37.8190735"],["-119.9562685","37.8189024"],["-119.9561574","37.8187977"],["-119.956072","37.8187322"],["-119.9559813","37.8186712"],["-119.9558515","37.8185992"],["-119.9557148","37.8185342"],["-119.9555595","37.818473"],["-119.9553643","37.8184249"],["-119.9551858","37.8183875"],["-119.9549819","37.8183677"],["-119.954784","37.8183702"],["-119.9545444","37.8183884"],["-119.9543132","37.8184303"],["-119.95411","37.8184878"],["-119.9539478","37.8185502"],["-119.9534883","37.8187685"],["-119.9533188","37.818839"],["-119.9531857","37.8188845"],["-119.953045","37.8189182"],["-119.9528572","37.8189447"],["-119.9526658","37.8189566"],["-119.9524346","37.8189508"],["-119.9521961","37.8189217"],["-119.9519418","37.818847"],["-119.9517339","37.8187551"],["-119.9515396","37.8186429"],["-119.9513912","37.8185378"],["-119.9512712","37.8184335"],["-119.9510847","37.8182021"],["-119.9504345","37.8171642"],["-119.9500324","37.8165173"],["-119.9499204","37.8163618"],["-119.9497916","37.8162269"],["-119.9496205","37.8160811"],["-119.9495232","37.8160148"],["-119.9494079","37.815952"],["-119.9492724","37.8158935"],["-119.9491077","37.8158375"],["-119.9489415","37.8157949"],["-119.9487711","37.8157655"],["-119.948589","37.8157477"],["-119.9484183","37.8157454"],["-119.9482681","37.8157465"],["-119.9480852","37.8157717"],["-119.9478644","37.8158218"],["-119.9474772","37.8159392"],["-119.9471494","37.8160379"],["-119.9469173","37.8160829"],["-119.946778","37.8160928"],["-119.9460431","37.8160993"],["-119.9448915","37.8161094"],["-119.9446973","37.8161203"],["-119.9445179","37.8161432"],["-119.944314","37.8161735"],["-119.9440913","37.8162192"],["-119.9435125","37.8163742"],["-119.9432265","37.8164504"],["-119.9430737","37.8164693"],["-119.9428826","37.8164832"],["-119.9427267","37.8164898"],["-119.9425803","37.8164793"],["-119.9423965","37.8164519"],["-119.942255","37.8164185"],["-119.9421126","37.8163739"],["-119.9419756","37.8163224"],["-119.9415286","37.8161366"],["-119.9413047","37.8160494"],["-119.941142","37.8160041"],["-119.9410127","37.8159792"],["-119.9408566","37.8159645"],["-119.9406814","37.8159529"],["-119.9404532","37.8159711"],["-119.9402767","37.8160029"],["-119.9400913","37.8160495"],["-119.939909","37.8161077"],["-119.9394292","37.8162793"],["-119.9392457","37.816332"],["-119.9390398","37.8163682"],["-119.9387169","37.8163858"],["-119.9386033","37.816379"],["-119.9384741","37.8163616"],["-119.9382127","37.8162962"],["-119.9379288","37.816198"],["-119.9368969","37.8157898"],["-119.9365838","37.8156861"],["-119.9361342","37.815575"],["-119.934226","37.8151551"],["-119.9340507","37.8151361"],["-119.9338224","37.8151251"],["-119.9336057","37.8151324"],["-119.9334209","37.8151547"],["-119.9331083","37.8152316"],["-119.9329596","37.8152884"],["-119.9327983","37.8153619"],["-119.9326297","37.8154639"],["-119.932448","37.815623"],["-119.9321653","37.8159343"],["-119.9319539","37.8161427"],["-119.9318022","37.8162524"],["-119.9316614","37.8163328"],["-119.9315237","37.8164036"],["-119.9313775","37.8164582"],["-119.9312516","37.8164963"],["-119.9311286","37.8165241"],["-119.9309812","37.8165457"],["-119.9308423","37.8165535"],["-119.9306766","37.8165537"],["-119.9305285","37.8165409"],["-119.9303645","37.8165104"],["-119.9301754","37.8164717"],["-119.9298605","37.8163916"],["-119.9294567","37.8163115"],["-119.9292705","37.8162984"],["-119.9290789","37.8162966"],["-119.9288871","37.8163089"],["-119.9287072","37.816341"],["-119.9284846","37.8163948"],["-119.9221894","37.8183458"],["-119.9217405","37.8185167"],["-119.9215857","37.8186"],["-119.9214547","37.8186855"],["-119.9213758","37.8187515"],["-119.921282","37.8188294"],["-119.9211885","37.8189302"],["-119.9210946","37.8190543"],["-119.921036","37.8191741"],["-119.9209614","37.8193482"],["-119.920823","37.8197368"],["-119.9206953","37.8199632"],["-119.9206228","37.8200566"],["-119.9205449","37.8201377"],["-119.9204602","37.820218"],["-119.9203382","37.8203016"],["-119.9201936","37.8203901"],["-119.9200292","37.8204677"],["-119.9198764","37.8205295"],["-119.9196753","37.8205938"],["-119.9194509","37.8206607"],["-119.9190289","37.8207432"],["-119.9188151","37.82077"],["-119.9186037","37.8208204"],["-119.9184494","37.8208702"],["-119.9183247","37.8209256"],["-119.9181873","37.8209919"],["-119.9180646","37.8210659"],["-119.9179438","37.8211569"],["-119.9178285","37.8212645"],["-119.9176718","37.8214302"],["-119.9174273","37.8217001"],["-119.9172893","37.821822"],["-119.9171813","37.8219085"],["-119.9170728","37.8219796"],["-119.9169636","37.8220428"],["-119.9168055","37.8221133"],["-119.9166398","37.8221699"],["-119.9164829","37.8222094"],["-119.9163125","37.822242"],["-119.9161395","37.8222622"],["-119.91596","37.8222676"],["-119.9157998","37.8222567"],["-119.9156512","37.8222392"],["-119.9155046","37.8222179"],["-119.9153532","37.8221742"],["-119.9152279","37.8221329"],["-119.915092","37.822074"],["-119.9149584","37.8220049"],["-119.914832","37.8219344"],["-119.9147187","37.8218473"],["-119.9146089","37.8217542"],["-119.9145002","37.8216351"],["-119.9144117","37.8215175"],["-119.9143375","37.8213785"],["-119.9142873","37.8212447"],["-119.9142435","37.8210465"],["-119.914192","37.8205511"],["-119.9141623","37.8203365"],["-119.9141252","37.8201834"],["-119.9140658","37.8200123"],["-119.9140028","37.8198443"],["-119.9138997","37.819641"],["-119.9137051","37.8193663"],["-119.9135269","37.8191703"],["-119.9133302","37.8189896"],["-119.9132077","37.8188936"],["-119.9130766","37.8188047"],["-119.912925","37.8187144"],["-119.9127551","37.8186211"],["-119.91254","37.8185148"],["-119.9118899","37.8182095"],["-119.9116117","37.8180748"],["-119.9114559","37.8179899"],["-119.9113232","37.8179085"],["-119.9112048","37.817825"],["-119.9110993","37.8177373"],["-119.9109017","37.8175506"],["-119.9107231","37.8173405"],["-119.910573","37.8171132"],["-119.9104798","37.8169406"],["-119.9104152","37.8167696"],["-119.9103577","37.816581"],["-119.9102887","37.8162742"],["-119.9102112","37.8159515"],["-119.9101331","37.8157485"],["-119.9100484","37.8156066"],["-119.9099494","37.8154625"],["-119.9098451","37.8153496"],["-119.9097372","37.8152303"],["-119.9095931","37.8151096"],["-119.9094224","37.8149868"],["-119.9092424","37.814884"],["-119.9090356","37.814794"],["-119.9088568","37.8147295"],["-119.9086724","37.8146813"],["-119.9084164","37.8146374"],["-119.9074981","37.8145678"],["-119.907218","37.8145362"],["-119.9070124","37.8145009"],["-119.9068253","37.8144539"],["-119.9066427","37.8144042"],["-119.9064865","37.8143526"],["-119.9063364","37.8142961"],["-119.9061284","37.8142002"],["-119.9058447","37.8140302"],["-119.9056272","37.8138959"],["-119.9055109","37.8138065"],["-119.9053113","37.813612"],["-119.9051294","37.813396"],["-119.9050028","37.8132086"],["-119.9048832","37.8129975"],["-119.9046408","37.8124519"],["-119.9045659","37.8122976"],["-119.9044971","37.8121892"],["-119.9044226","37.8120849"],["-119.9042952","37.8119229"],["-119.9041347","37.8117561"],["-119.9039971","37.8116328"],["-119.9038413","37.811515"],["-119.9036698","37.8114011"],["-119.9033113","37.8112266"],["-119.9030051","37.8111279"],["-119.9026279","37.8110175"],["-119.9021991","37.8108995"],["-119.9019751","37.8108521"],["-119.9017885","37.8108235"],["-119.9016304","37.8108207"],["-119.9014165","37.8108299"],["-119.9011929","37.8108558"],["-119.9009944","37.810907"],["-119.9008064","37.8109651"],["-119.9006003","37.8110637"],["-119.9004061","37.8111787"],["-119.9002504","37.8113132"],["-119.900102","37.811481"],["-119.8999944","37.8116551"],["-119.8999241","37.8118045"],["-119.8998795","37.8119437"],["-119.899856","37.8120743"],["-119.8998449","37.8122181"],["-119.8998441","37.8124367"],["-119.8998532","37.8126677"],["-119.8998485","37.8128218"],["-119.8998316","37.8129666"],["-119.8998068","37.8130923"],["-119.899762","37.813232"],["-119.8997112","37.8133291"],["-119.8996431","37.8134329"],["-119.8995737","37.8135288"],["-119.899505","37.8135988"],["-119.8994227","37.8136788"],["-119.8993433","37.8137482"],["-119.8992534","37.8138208"],["-119.899116","37.8138993"],["-119.8989696","37.8139628"],["-119.8988126","37.8140216"],["-119.8986593","37.8140692"],["-119.8983419","37.8141253"],["-119.898084","37.8141365"],["-119.897791","37.8141166"],["-119.8975585","37.8140713"],["-119.8972948","37.8139876"],["-119.8969474","37.8138472"],["-119.8964597","37.8136486"],["-119.8962454","37.8135775"],["-119.8957196","37.8134329"],["-119.8954821","37.8133791"],["-119.8952402","37.8133329"],["-119.8946679","37.8132626"],["-119.894336","37.8132424"],["-119.8939439","37.8132293"],["-119.8935364","37.8132392"],["-119.8928473","37.8133035"],["-119.8917445","37.8134309"],["-119.8907563","37.8134909"],["-119.8884065","37.813499"],["-119.8829789","37.8134981"],["-119.8821606","37.8135039"],["-119.8817721","37.8135179"],["-119.8815607","37.8135438"],["-119.8811632","37.8136166"],["-119.880859","37.8137053"],["-119.8805838","37.8137934"],["-119.8803468","37.8138914"],["-119.8801236","37.8139962"],["-119.8798876","37.814144"],["-119.8795959","37.8143726"],["-119.879367","37.8145721"],["-119.8791522","37.8147769"],["-119.8788569","37.8150738"],["-119.8786469","37.8152705"],["-119.8783785","37.8155"],["-119.8781434","37.8156676"],["-119.8780027","37.8157512"],["-119.877854","37.815813"],["-119.8777012","37.8158685"],["-119.8775624","37.8159098"],["-119.877409","37.8159488"],["-119.8772244","37.8159841"],["-119.8769972","37.8160029"],["-119.8767423","37.8159981"],["-119.8765487","37.8159735"],["-119.8764168","37.8159499"],["-119.8762879","37.8159176"],["-119.8761367","37.8158717"],["-119.8759906","37.8158141"],["-119.875859","37.8157493"],["-119.8756327","37.8155954"],["-119.8755337","37.815515"],["-119.8754043","37.8153915"],["-119.8752975","37.815262"],["-119.8751836","37.8150879"],["-119.8751206","37.814948"],["-119.8750396","37.8147147"],["-119.8749987","37.8145487"],["-119.8749531","37.8142516"],["-119.8748183","37.8128415"],["-119.874769","37.8125737"],["-119.8747085","37.8123517"],["-119.8746583","37.8121961"],["-119.8745858","37.8120577"],["-119.8745039","37.8119175"],["-119.8743832","37.8117522"],["-119.8742279","37.8115802"],["-119.8740299","37.8114035"],["-119.8737845","37.8112263"],["-119.8727332","37.8104818"],["-119.8724538","37.8102636"],["-119.8723415","37.8101529"],["-119.8722585","37.8100549"],["-119.8721723","37.8099274"],["-119.8721019","37.8098092"],["-119.872039","37.809663"],["-119.8719841","37.8094943"],["-119.8719633","37.8093765"],["-119.8719562","37.8092508"],["-119.8719606","37.8091352"],["-119.8719726","37.8090288"],["-119.8720088","37.8088725"],["-119.8720825","37.8087021"],["-119.872166","37.8085633"],["-119.872265","37.8084402"],["-119.8723801","37.8083147"],["-119.8728242","37.8079183"],["-119.8729331","37.8078134"],["-119.8730125","37.8077219"],["-119.8730974","37.8076046"],["-119.8731489","37.8075246"],["-119.8731868","37.8074554"],["-119.8732333","37.8073562"],["-119.8732726","37.8072486"],["-119.873297","37.8071679"],["-119.8733104","37.8070865"],["-119.873322","37.8069794"],["-119.8733173","37.8068756"],["-119.8732997","37.8067665"],["-119.8732496","37.8065911"],["-119.8731474","37.8063701"],["-119.8728361","37.8058614"],["-119.8727771","37.8057404"],["-119.8727256","37.8056094"],["-119.8726872","37.8054928"],["-119.8726522","37.8053149"],["-119.8726353","37.8051715"],["-119.8726382","37.805001"],["-119.8726658","37.804856"],["-119.8727106","37.8047034"],["-119.8727721","37.8045675"],["-119.8729136","37.8043199"],["-119.8731082","37.8040658"],["-119.8732879","37.8038472"],["-119.8734618","37.8036353"],["-119.8735501","37.8035075"],["-119.8736261","37.8033789"],["-119.8736728","37.80327"],["-119.8737262","37.8031441"],["-119.8737964","37.8029319"],["-119.8739","37.8025904"],["-119.8740107","37.8021533"],["-119.8740452","37.8019621"],["-119.8741078","37.801744"],["-119.8742008","37.8015045"],["-119.8743477","37.8011872"],["-119.8746023","37.8006871"],["-119.8746967","37.8005133"],["-119.8747932","37.8004039"],["-119.8748826","37.8002295"],["-119.8750321","37.7998864"],["-119.8749123","37.7997959"],["-119.8748414","37.7997842"],["-119.874749","37.799794"],["-119.8746836","37.7998201"],["-119.8746226","37.799874"],["-119.8745752","37.7999427"],["-119.8745282","37.8000561"],["-119.8744767","37.800216"],["-119.8744184","37.800313"],["-119.8743312","37.800388"],["-119.8741868","37.8004664"],["-119.8740087","37.800509"],["-119.873723","37.8005386"],["-119.8733709","37.8006463"],["-119.8730744","37.8007505"],["-119.8729017","37.8007705"],["-119.8727017","37.8007313"],["-119.8723362","37.8005562"],["-119.872073","37.8004402"],["-119.8719165","37.8003892"],["-119.8716233","37.8003258"],["-119.8709185","37.8002213"],["-119.8703849","37.8001485"],["-119.869998","37.8001371"],["-119.8681573","37.8001975"],["-119.8677266","37.8002021"],["-119.8674012","37.8001736"],["-119.8651375","37.799834"],["-119.86469","37.7997533"],["-119.8644702","37.7996854"],["-119.8642654","37.7995912"],["-119.8640493","37.7994666"],["-119.8639256","37.7994199"],["-119.8637715","37.7993879"],["-119.8634779","37.7993449"],["-119.8633562","37.7993181"],["-119.8632521","37.7992763"],["-119.8630583","37.7991644"],["-119.8629141","37.7990972"],["-119.8626826","37.7990214"],["-119.8625832","37.7989815"],["-119.8625059","37.7989338"],["-119.862441","37.7988747"],["-119.8623872","37.798796"],["-119.8623161","37.7986115"],["-119.8621549","37.7981642"],["-119.8620515","37.7979407"],["-119.8619629","37.7978204"],["-119.8618163","37.7976654"],["-119.8617235","37.7975814"],["-119.8615388","37.7974754"],["-119.8611826","37.7973313"],["-119.8609794","37.7972611"],["-119.8607967","37.7972287"],["-119.8604737","37.7971994"],["-119.8600228","37.7971693"],["-119.8598566","37.7971245"],["-119.859777","37.7970615"],["-119.8597451","37.7970161"],["-119.8597294","37.7969689"],["-119.8597136","37.7968093"],["-119.859725","37.7967103"],["-119.8597623","37.7966285"],["-119.859891","37.7964455"],["-119.8599762","37.7963616"],["-119.8602588","37.7962263"],["-119.8604491","37.7961589"],["-119.860493","37.7960883"],["-119.8606023","37.7959214"],["-119.8606754","37.7958755"],["-119.8607629","37.7958843"],["-119.8607985","37.7959504"],["-119.8607514","37.7960586"],["-119.8602583","37.7962266"],["-119.8599764","37.7963615"],["-119.859893","37.7964428"],["-119.8597618","37.7966291"],["-119.8597247","37.7967106"],["-119.8597143","37.7968161"],["-119.8597292","37.7969682"],["-119.859745","37.7970165"],["-119.8597778","37.7970623"],["-119.8598573","37.7971249"],["-119.8600261","37.7971698"],["-119.8604926","37.7972007"],["-119.8608005","37.7972292"],["-119.8609816","37.7972616"],["-119.8611834","37.7973316"],["-119.8615401","37.7974763"],["-119.8617242","37.7975821"],["-119.8618154","37.797664"],["-119.8619641","37.7978216"],["-119.8620513","37.7979408"],["-119.8621522","37.7981579"],["-119.8623073","37.7985874"],["-119.8623871","37.7987956"],["-119.8624414","37.7988749"],["-119.8625057","37.7989338"],["-119.8625819","37.7989809"],["-119.8626804","37.7990207"],["-119.8629141","37.7990971"],["-119.8630624","37.7991663"],["-119.8632495","37.7992752"],["-119.8633561","37.7993183"],["-119.8634745","37.7993442"],["-119.8637733","37.7993882"],["-119.8639259","37.7994197"],["-119.8640484","37.7994661"],["-119.8642684","37.799593"],["-119.8644692","37.7996849"],["-119.8646848","37.7997519"],["-119.8651279","37.7998326"],["-119.8673974","37.8001729"],["-119.8677322","37.8002023"],["-119.8680088","37.8002037"],["-119.8700381","37.8001342"],["-119.8703772","37.8001479"],["-119.870944","37.8002248"],["-119.8716254","37.8003263"],["-119.8719205","37.8003902"],["-119.8720751","37.8004409"],["-119.872341","37.8005587"],["-119.8727022","37.8007314"],["-119.8729007","37.8007704"],["-119.8730719","37.8007513"],["-119.8733761","37.8006445"],["-119.8737229","37.8005385"],["-119.8740095","37.8005089"],["-119.8741878","37.800466"],["-119.8743325","37.8003871"],["-119.8744175","37.800314"],["-119.8744769","37.8002157"],["-119.8745275","37.8000581"],["-119.8745753","37.7999426"],["-119.8746224","37.7998739"],["-119.8746839","37.7998201"],["-119.874749","37.7997939"],["-119.8748423","37.7997842"],["-119.8749121","37.7997957"],["-119.8750445","37.7998591"],["-119.8751476","37.7996388"],["-119.8752268","37.7994158"],["-119.8752846","37.7992402"],["-119.8753125","37.7990978"],["-119.8753316","37.7989771"],["-119.8753421","37.798857"],["-119.8753425","37.7986641"],["-119.8753235","37.7984802"],["-119.8752874","37.7982801"],["-119.8752326","37.7981017"],["-119.875171","37.7979294"],["-119.8750905","37.7977591"],["-119.874964","37.7975425"],["-119.8748033","37.7972946"],["-119.8744724","37.7967777"],["-119.8743298","37.7964734"],["-119.8742734","37.7963083"],["-119.8742515","37.7961716"],["-119.8742392","37.79599"],["-119.8742637","37.7956849"],["-119.8743747","37.7952685"],["-119.8744435","37.7948701"],["-119.8744496","37.7947537"],["-119.8744521","37.794572"],["-119.874401","37.7943607"],["-119.874304","37.7940917"],["-119.8742011","37.7939063"],["-119.8740717","37.7937289"],["-119.8738478","37.7934725"],["-119.8736423","37.7933044"],["-119.8731546","37.7929799"],["-119.8729558","37.7928317"],["-119.8728337","37.7926805"],["-119.8727491","37.7925377"],["-119.8726575","37.7923282"],["-119.8726015","37.7921008"],["-119.8725894","37.7919678"],["-119.8726126","37.7918313"],["-119.8726844","37.7916199"],["-119.8727423","37.7914635"],["-119.8728004","37.7913485"],["-119.8728834","37.7912199"],["-119.8730828","37.7910334"],["-119.8732305","37.790921"],["-119.8734186","37.7908083"],["-119.8736099","37.7907269"],["-119.8737895","37.7906746"],["-119.8740856","37.7906256"],["-119.8748127","37.7905963"],["-119.8751737","37.7905769"],["-119.8753206","37.7905538"],["-119.8754556","37.7905197"],["-119.875575","37.7904777"],["-119.8757301","37.790409"],["-119.8759303","37.7902858"],["-119.8761571","37.7901203"],["-119.8763244","37.7899493"],["-119.8764253","37.7898034"],["-119.8764985","37.7896568"],["-119.8765709","37.7894238"],["-119.8765881","37.7892497"],["-119.8765658","37.7889932"],["-119.8765369","37.788867"],["-119.8764878","37.7887275"],["-119.8764186","37.7885898"],["-119.8762087","37.7883323"],["-119.8754736","37.7875446"],["-119.8745942","37.7866079"],["-119.872636","37.7849245"],["-119.8721374","37.7845028"],["-119.8716935","37.7841279"],["-119.8712692","37.7837878"],["-119.8710969","37.7836828"],["-119.8708735","37.7835638"],["-119.870504","37.7833961"],["-119.8702261","37.7832804"],["-119.8699414","37.7831473"],["-119.8696844","37.7829873"],["-119.8694867","37.7828316"],["-119.8692729","37.7825281"],["-119.8689383","37.7818035"],["-119.8687746","37.7814884"],["-119.8685771","37.7812442"],["-119.8683759","37.7810802"],["-119.8681088","37.7808874"],["-119.8678439","37.7807196"],["-119.8674264","37.7805502"],["-119.8668947","37.7803416"],["-119.8665354","37.7801916"],["-119.8663471","37.7800545"],["-119.8661966","37.7799039"],["-119.8660648","37.7797408"],["-119.8659712","37.7795624"],["-119.8658835","37.7793448"],["-119.8657956","37.7790169"],["-119.8655871","37.7781363"],["-119.8655029","37.7779225"],["-119.8654287","37.7777833"],["-119.8652884","37.7776158"],["-119.865144","37.7774643"],["-119.8649968","37.7773526"],["-119.8647515","37.7772244"],["-119.8645922","37.7771627"],["-119.8643798","37.7771053"],["-119.862714","37.7767386"],["-119.8621083","37.7765738"],["-119.8617744","37.7764029"],["-119.8615672","37.7762344"],["-119.8614521","37.7761208"],["-119.8613698","37.7760223"],["-119.8612923","37.7759166"],["-119.8612307","37.775809"],["-119.8611921","37.7756847"],["-119.8611711","37.7755683"],["-119.8611573","37.7754268"],["-119.8611555","37.7752489"],["-119.861258","37.7748663"],["-119.8614392","37.7742759"],["-119.8614942","37.7740479"],["-119.8615319","37.7736117"],["-119.8615451","37.7728473"],["-119.8615363","37.7720721"],["-119.8615167","37.7710668"],["-119.8614954","37.7703005"],["-119.8614534","37.7695953"],["-119.8614172","37.7694248"],["-119.861373","37.7692985"],["-119.8613062","37.7691695"],["-119.8610981","37.7688806"],["-119.8596969","37.7670559"],["-119.85945","37.7667569"],["-119.8592487","37.7665878"],["-119.8590725","37.7664617"],["-119.8588998","37.7663653"],["-119.8587379","37.76629"],["-119.8585529","37.7662265"],["-119.8583432","37.7661627"],["-119.8581214","37.7661196"],["-119.857845","37.7661036"],["-119.8574145","37.7661135"],["-119.8569666","37.7661817"],["-119.8565806","37.7662413"],["-119.8563705","37.7662623"],["-119.8562065","37.7662665"],["-119.8560463","37.7662564"],["-119.8558757","37.7662324"],["-119.8556629","37.7661802"],["-119.8553877","37.7660746"],["-119.8551931","37.765969"],["-119.8550099","37.7658349"],["-119.854866","37.7656891"],["-119.854729","37.7655038"],["-119.8546582","37.7653767"],["-119.8545795","37.7651483"],["-119.8544582","37.7646412"],["-119.8543941","37.7644401"],["-119.8542738","37.7642241"],["-119.8541342","37.7640849"],["-119.8538927","37.763901"],["-119.8536425","37.7637513"],["-119.8534115","37.7636676"],["-119.8531122","37.7635942"],["-119.8528821","37.7635751"],["-119.8526091","37.7635769"],["-119.8523858","37.7635994"],["-119.8520045","37.7637248"],["-119.8517962","37.763816"],["-119.8512928","37.7640893"],["-119.8509717","37.7642554"],["-119.8507009","37.7643603"],["-119.8504931","37.7644078"],["-119.8501138","37.764458"],["-119.8498193","37.7644667"],["-119.8495758","37.7644518"],["-119.8492704","37.7644085"],["-119.8433532","37.7634309"],["-119.8422319","37.7632409"],["-119.8419603","37.7631999"],["-119.8415853","37.7631583"],["-119.8412202","37.7631521"],["-119.8408138","37.7631786"],["-119.8403745","37.7632178"],["-119.8400732","37.7632259"],["-119.8398408","37.7632167"],["-119.8396128","37.7631857"],["-119.8393314","37.7631243"],["-119.8390748","37.7630391"],["-119.8385733","37.7628541"],["-119.8381192","37.7626951"],["-119.8377636","37.7626022"],["-119.8374555","37.7625419"],["-119.8370604","37.7624942"],["-119.8366226","37.7624649"],["-119.835013","37.7624292"],["-119.8345518","37.762408"],["-119.8341194","37.7623"],["-119.8337723","37.7621263"],["-119.8335592","37.7619708"],["-119.8334471","37.761861"],["-119.8332935","37.7616657"],["-119.8331048","37.7612849"],["-119.8326793","37.7602738"],["-119.8324705","37.7598577"],["-119.8323195","37.7596517"],["-119.8321561","37.7594979"],["-119.8319716","37.7593643"],["-119.8317571","37.7592923"],["-119.8315042","37.7592029"],["-119.828702","37.7585006"],["-119.8282322","37.7583687"],["-119.8279848","37.7582682"],["-119.8277633","37.7581352"],["-119.8276079","37.7580187"],["-119.8274754","37.7578768"],["-119.8273311","37.7576877"],["-119.8259857","37.7557359"],["-119.8257612","37.7553793"],["-119.825643","37.7551111"],["-119.8255829","37.7549262"],["-119.8255566","37.7547689"],["-119.8255332","37.7542218"],["-119.8255213","37.7535032"],["-119.8255039","37.7530271"],["-119.8254536","37.7528214"],["-119.825364","37.7526468"],["-119.8252948","37.7525357"],["-119.8251881","37.7523938"],["-119.8250427","37.752261"],["-119.8248988","37.7521516"],["-119.8246383","37.7520114"],["-119.8243798","37.7519119"],["-119.8241616","37.7518563"],["-119.8233552","37.7517174"],["-119.8229867","37.7516737"],["-119.8227181","37.7516714"],["-119.8224628","37.7517026"],["-119.8222283","37.7517621"],["-119.822008","37.7518399"],["-119.8217832","37.7519635"],["-119.8216583","37.7520489"],["-119.821498","37.7521918"],["-119.8213458","37.7523745"],["-119.8212605","37.7525011"],["-119.8212014","37.7526229"],["-119.8211329","37.7528885"],["-119.8210659","37.7533731"],["-119.8209949","37.7536328"],["-119.8209231","37.7538337"],["-119.8208142","37.7540502"],["-119.8207041","37.7542193"],["-119.8205757","37.7543796"],["-119.820323","37.7546339"],["-119.8198039","37.7550251"],["-119.8194486","37.7552741"],["-119.8189408","37.7556297"],["-119.8187286","37.7557652"],["-119.8185839","37.755834"],["-119.8184069","37.7559028"],["-119.818234","37.7559572"],["-119.8180611","37.7559943"],["-119.8177694","37.7560139"],["-119.8175951","37.7560093"],["-119.8173811","37.755977"],["-119.8171196","37.7559157"],["-119.8168819","37.7558357"],["-119.8166817","37.7557411"],["-119.8164774","37.7555862"],["-119.8163157","37.7554018"],["-119.8162058","37.7552449"],["-119.8160965","37.7550086"],["-119.8160306","37.7547797"],["-119.8159533","37.7544631"],["-119.8158731","37.7542271"],["-119.8157823","37.7540506"],["-119.8156543","37.7538728"],["-119.8155138","37.7537261"],["-119.8153102","37.7535797"],["-119.8151413","37.753479"],["-119.8148685","37.7533741"],["-119.8146053","37.7533188"],["-119.8141598","37.7533137"],["-119.8138785","37.7533484"],["-119.8135245","37.7534283"],["-119.8130152","37.7535712"],["-119.812685","37.7536525"],["-119.8124627","37.7536927"],["-119.8122481","37.7537007"],["-119.8119663","37.7536805"],["-119.8115347","37.7535857"],["-119.8113154","37.7534861"],["-119.8111148","37.7533629"],["-119.8107788","37.7530742"],["-119.8098424","37.7520967"],["-119.8090695","37.7513388"],["-119.8086058","37.750933"],["-119.808457","37.7507819"],["-119.8082709","37.7503795"],["-119.808056","37.7498798"],["-119.807785","37.749255"],["-119.8075614","37.7487369"],["-119.8074044","37.7485256"],["-119.8072883","37.7483953"],["-119.8070976","37.7482296"],["-119.8069156","37.748095"],["-119.8066951","37.7479913"],["-119.8063678","37.7478768"],["-119.8056098","37.7476714"],["-119.804976","37.7475049"],["-119.8043454","37.7473448"],["-119.8040196","37.7473055"],["-119.8036684","37.747311"],["-119.803511","37.7473391"],["-119.8033818","37.7473668"],["-119.8031996","37.7474293"],["-119.8030599","37.7474884"],["-119.8027932","37.7476255"],["-119.8025851","37.7477591"],["-119.8024832","37.7478417"],["-119.8023884","37.7479581"],["-119.8022524","37.748191"],["-119.8022011","37.7483327"],["-119.8021702","37.7484688"],["-119.8021616","37.7486257"],["-119.8021704","37.7488023"],["-119.8022089","37.7489925"],["-119.8023518","37.7492819"],["-119.8026296","37.7497167"],["-119.8027264","37.7499155"],["-119.8027763","37.7501178"],["-119.8027933","37.7503799"],["-119.8027806","37.750525"],["-119.8027638","37.7507054"],["-119.8026917","37.7508765"],["-119.8025748","37.7510609"],["-119.8024204","37.7512266"],["-119.802092","37.7514669"],["-119.8017354","37.7516307"],["-119.8014671","37.7516857"],["-119.8011701","37.7517182"],["-119.8008479","37.7516963"],["-119.8004596","37.7516626"],["-119.8001573","37.751639"],["-119.799957","37.7516431"],["-119.7997994","37.7516502"],["-119.7996451","37.7516752"],["-119.7995044","37.7517034"],["-119.7993583","37.7517381"],["-119.7991522","37.7518203"],["-119.7988168","37.7519896"],["-119.7983947","37.7522188"],["-119.7980333","37.7523715"],["-119.7975548","37.7524971"],["-119.7973237","37.7525101"],["-119.7971377","37.7525126"],["-119.7969663","37.752501"],["-119.7967823","37.7524709"],["-119.7966409","37.7524417"],["-119.7965158","37.7524101"],["-119.7964262","37.7523834"],["-119.7963711","37.752361"],["-119.7962738","37.7523185"],["-119.7961227","37.7522533"],["-119.7958397","37.7520947"],["-119.7954826","37.7518837"],["-119.7950668","37.7516336"],["-119.7944181","37.7512609"],["-119.7941992","37.7511516"],["-119.7939309","37.7509951"],["-119.793338","37.750624"],["-119.7931176","37.750514"],["-119.792863","37.7504212"],["-119.7925832","37.7503475"],["-119.7923566","37.7502996"],["-119.7921588","37.7502758"],["-119.7919348","37.7502617"],["-119.7916304","37.7502613"],["-119.791297","37.7502909"],["-119.7909565","37.7503431"],["-119.7904874","37.7504869"],["-119.7898852","37.7506947"],["-119.7874197","37.7515832"],["-119.7867696","37.7518009"],["-119.7865014","37.7518626"],["-119.7863367","37.7518913"],["-119.7860896","37.7519073"],["-119.7857648","37.7518979"],["-119.7854753","37.7518638"],["-119.7851551","37.7517993"],["-119.7848141","37.7517006"],["-119.7846145","37.75161"],["-119.7844819","37.7515342"],["-119.7843416","37.7514389"],["-119.7841304","37.7512587"],["-119.7838724","37.7510003"],["-119.7836043","37.7507336"],["-119.7832809","37.7504269"],["-119.7830974","37.750289"],["-119.7829334","37.7502024"],["-119.7826241","37.7500712"],["-119.7824536","37.7500082"],["-119.7823017","37.7499319"],["-119.7821672","37.749832"],["-119.7820089","37.7496626"],["-119.7819291","37.7495319"],["-119.7818915","37.7494242"],["-119.7818494","37.7492298"],["-119.7817852","37.748899"],["-119.7817204","37.748707"],["-119.7816482","37.7485827"],["-119.7815454","37.7484443"],["-119.7814312","37.7483375"],["-119.7812019","37.7481776"],["-119.7810406","37.7480983"],["-119.7808273","37.7480274"],["-119.7805722","37.7479693"],["-119.7801223","37.7478898"],["-119.7799062","37.747835"],["-119.7797427","37.7477664"],["-119.7796192","37.7476795"],["-119.7794822","37.7475531"],["-119.7793146","37.7473544"],["-119.7791955","37.7471682"],["-119.7790533","37.7469699"],["-119.7788596","37.7467726"],["-119.7786872","37.7466447"],["-119.7784797","37.7465498"],["-119.7782848","37.7464962"],["-119.7780442","37.7464518"],["-119.7778066","37.746431"],["-119.7774995","37.7464116"],["-119.7772337","37.7463642"],["-119.7770839","37.74632"],["-119.7768972","37.7462385"],["-119.7767966","37.7461741"],["-119.7766162","37.7459922"],["-119.7765519","37.7459067"],["-119.7765068","37.7458204"],["-119.7764533","37.7456646"],["-119.7764093","37.7454266"],["-119.7763694","37.7451693"],["-119.7763183","37.7449388"],["-119.7762522","37.7447611"],["-119.7762044","37.7446701"],["-119.7760739","37.7444889"],["-119.7758743","37.7442727"],["-119.7756216","37.7440064"],["-119.7755317","37.743898"],["-119.7754377","37.7437948"],["-119.7753855","37.7437122"],["-119.7751847","37.7432777"],["-119.775009","37.742883"],["-119.7748615","37.7425538"],["-119.7747485","37.742351"],["-119.7740464","37.7412972"],["-119.7735803","37.7406349"],["-119.7731584","37.7400369"],["-119.7729786","37.7398181"],["-119.7728266","37.7396937"],["-119.7726566","37.7395976"],["-119.7724016","37.7395018"],["-119.7721617","37.7394399"],["-119.7717421","37.73941"],["-119.7691454","37.7393559"],["-119.7688427","37.7393861"],["-119.7684769","37.7394801"],["-119.7679005","37.7396146"],["-119.767556","37.73965"],["-119.7672879","37.7396542"],["-119.7669246","37.7396347"],["-119.7662266","37.7395708"],["-119.765933","37.7395621"],["-119.7657308","37.7395693"],["-119.765466","37.7396072"],["-119.765315","37.7396487"],["-119.7650984","37.7397367"],["-119.7649487","37.7398089"],["-119.7647553","37.7399328"],["-119.7646146","37.7400589"],["-119.7644716","37.7402181"],["-119.7643624","37.7403811"],["-119.7642978","37.7405586"],["-119.7641847","37.7409655"],["-119.764108","37.7411446"],["-119.7640423","37.7412714"],["-119.7639524","37.7414114"],["-119.763858","37.7415194"],["-119.763756","37.7416181"],["-119.7636332","37.7417129"],["-119.7634659","37.7418211"],["-119.7632122","37.7419678"],["-119.7628953","37.7421485"],["-119.7622773","37.7425182"],["-119.7619033","37.7427107"],["-119.7615955","37.7428353"],["-119.7612133","37.7429694"],["-119.7607741","37.7430983"],["-119.759765","37.7434577"],["-119.7591027","37.7436904"],["-119.75889","37.743745"],["-119.7586951","37.7437713"],["-119.7584567","37.7437845"],["-119.7583086","37.7437717"],["-119.7580783","37.7437416"],["-119.7577611","37.743673"],["-119.7576336","37.7436237"],["-119.7573238","37.74345"],["-119.7571469","37.7432982"],["-119.7570507","37.7431929"],["-119.7569306","37.7430069"],["-119.7568342","37.7428135"],["-119.7567999","37.7426249"],["-119.7567898","37.7424428"],["-119.756816","37.7422488"],["-119.7568706","37.7420322"],["-119.7569634","37.7418546"],["-119.7570852","37.7416784"],["-119.7572751","37.7414809"],["-119.7576275","37.7412292"],["-119.7579161","37.7410023"],["-119.7587853","37.7402368"],["-119.7589457","37.740041"],["-119.759058","37.7398005"],["-119.7591041","37.7396135"],["-119.7591082","37.7394508"],["-119.7590051","37.7390743"],["-119.758864","37.7388571"],["-119.7586935","37.7386516"],["-119.7584194","37.7383465"],["-119.7583502","37.7382073"],["-119.7583286","37.7380037"],["-119.7583367","37.7378901"],["-119.7583788","37.7377641"],["-119.7584994","37.7375405"],["-119.7586786","37.7372951"],["-119.7588043","37.7370801"],["-119.7589011","37.7368274"],["-119.7589286","37.7366724"],["-119.7589237","37.7365017"],["-119.7588778","37.7360819"],["-119.7589672","37.7357231"],["-119.7591371","37.73534"],["-119.7593402","37.7349241"],["-119.7595389","37.7345221"],["-119.759771","37.7340696"],["-119.7598874","37.7339188"],["-119.7600026","37.733797"],["-119.7602566","37.7335687"],["-119.7605477","37.7333381"],["-119.7606651","37.7331656"],["-119.7607212","37.7329704"],["-119.7607346","37.7328164"],["-119.7607154","37.7327004"],["-119.760683","37.73257"],["-119.7606046","37.732416"],["-119.7604826","37.732295"],["-119.7602759","37.7321466"],["-119.7600648","37.7320551"],["-119.7598828","37.731995"],["-119.7597363","37.7319784"],["-119.7595519","37.7319836"],["-119.7593817","37.7320005"],["-119.7591667","37.7320644"],["-119.758835","37.7321984"],["-119.7584542","37.7323564"],["-119.7580717","37.7324822"],["-119.7574693","37.7326414"],["-119.7571809","37.7326898"],["-119.7570128","37.7327038"],["-119.7569197","37.7327017"],["-119.7567793","37.7326879"],["-119.7565826","37.7326553"],["-119.7564115","37.7325957"],["-119.7562399","37.7325119"],["-119.7560741","37.7323982"],["-119.7559498","37.7322809"],["-119.7558511","37.7321289"],["-119.7558011","37.731985"],["-119.7558105","37.7318217"],["-119.7558464","37.7316727"],["-119.7559434","37.7314626"],["-119.7561116","37.7311593"],["-119.7562496","37.7308975"],["-119.7563534","37.7305046"],["-119.7563908","37.730087"],["-119.7564053","37.7298219"],["-119.7563819","37.7296778"],["-119.7563365","37.7295208"],["-119.7562859","37.729406"],["-119.7561461","37.7292286"],["-119.7560131","37.7290975"],["-119.755855","37.7289841"],["-119.7556697","37.7288715"],["-119.7554549","37.7287859"],["-119.7552793","37.7287359"],["-119.7551296","37.7287078"],["-119.7548556","37.7286964"],["-119.7545995","37.7287138"],["-119.7544033","37.7287477"],["-119.7542111","37.7288072"],["-119.7539152","37.7289519"],["-119.7536733","37.7290963"],["-119.7532806","37.7293392"],["-119.7531054","37.7294286"],["-119.7529404","37.7294872"],["-119.752756","37.7295193"],["-119.7526116","37.7295277"],["-119.7524692","37.7295192"],["-119.7522948","37.7294817"],["-119.7521512","37.7294342"],["-119.7520396","37.7293857"],["-119.7519152","37.7292997"],["-119.7517949","37.7291645"],["-119.7516369","37.7289564"],["-119.7514446","37.7286266"],["-119.7512269","37.7281975"],["-119.751015","37.7277305"],["-119.7507918","37.7272401"],["-119.7506415","37.7269687"],["-119.7505072","37.7267755"],["-119.7503192","37.7265244"],["-119.7501095","37.7263053"],["-119.7498642","37.7260918"],["-119.749604","37.7258957"],["-119.7491191","37.725587"],["-119.7488335","37.7254118"],["-119.748487","37.7251747"],["-119.7477915","37.7245843"],["-119.7472444","37.7241354"],["-119.7468743","37.7238182"],["-119.7464701","37.7234033"],["-119.7456662","37.7225457"],["-119.745343","37.7222426"],["-119.7449164","37.7218978"],["-119.7445571","37.7215817"],["-119.7441702","37.7211819"],["-119.7437703","37.7207495"],["-119.7431042","37.72017"],["-119.7427911","37.7198976"],["-119.7418908","37.7191092"],["-119.7415865","37.7188122"],["-119.7413204","37.7185178"],["-119.7410183","37.7181531"],["-119.7401616","37.7170725"],["-119.7399003","37.7167877"],["-119.739586","37.7165191"],["-119.7392244","37.7162506"],["-119.7389445","37.7160712"],["-119.7386924","37.7159287"],["-119.7384661","37.7158044"],["-119.7382174","37.7156651"],["-119.7376867","37.7153563"],["-119.7373049","37.7151016"],["-119.7369075","37.7148261"],["-119.7366091","37.7146279"],["-119.7360776","37.7143464"],["-119.7358162","37.7142532"],["-119.7355143","37.7141749"],["-119.7352371","37.7141114"],["-119.7348803","37.7140657"],["-119.7344907","37.714043"],["-119.7337974","37.7140566"],["-119.7335103","37.7140433"],["-119.7332128","37.7139948"],["-119.7329009","37.7138932"],["-119.7323891","37.713716"],["-119.7319228","37.713577"],["-119.7317225","37.7135321"],["-119.7314507","37.7135078"],["-119.7311404","37.7134987"],["-119.7307579","37.7135007"],["-119.7299431","37.7135394"],["-119.7288396","37.7136048"],["-119.7281436","37.7136867"],["-119.7277917","37.7137714"],["-119.7273932","37.7139466"],["-119.7270478","37.7141634"],["-119.7267811","37.7143668"],["-119.726525","37.714656"],["-119.7262713","37.7150397"],["-119.7259178","37.715589"],["-119.7257224","37.7158108"],["-119.7253918","37.7160666"],["-119.7248793","37.7164422"],["-119.7245814","37.7166296"],["-119.7240374","37.7168604"],["-119.7238392","37.7169559"],["-119.7236341","37.7170699"],["-119.7234225","37.7172218"],["-119.722371","37.7185116"],["-119.7199144","37.7215898"],["-119.7190592","37.7226905"],["-119.7188505","37.7230399"],["-119.718627","37.7234382"],["-119.7185266","37.7237552"],["-119.7183948","37.724339"],["-119.7182745","37.7247732"],["-119.7181832","37.7249612"],["-119.7181072","37.7250848"],["-119.7180128","37.7252266"],["-119.7178703","37.7254036"],["-119.7177296","37.7255567"],["-119.7176348","37.7256498"],["-119.7173752","37.7258464"],["-119.7170277","37.7260973"],["-119.7159602","37.7266945"],["-119.7156255","37.7268944"],["-119.7152393","37.7272184"],["-119.7149398","37.7274424"],["-119.7146679","37.7275948"],["-119.7144998","37.7276484"],["-119.7142701","37.7277009"],["-119.7140912","37.7277329"],["-119.7138524","37.7277455"],["-119.7134607","37.7277024"],["-119.7129001","37.7276234"],["-119.7122312","37.72753"],["-119.7119464","37.7275383"],["-119.7116878","37.7275976"],["-119.7113108","37.7277554"],["-119.7110124","37.7278743"],["-119.7108318","37.727901"],["-119.7106349","37.7279198"],["-119.7099947","37.7278731"],["-119.7096229","37.7278466"],["-119.7093349","37.7278251"],["-119.7090338","37.7277768"],["-119.7088433","37.7277199"],["-119.7086881","37.7276458"],["-119.7085294","37.7275113"],["-119.7083319","37.7272859"],["-119.7081214","37.7270175"],["-119.7079133","37.7267702"],["-119.7076349","37.7265107"],["-119.7072882","37.7263067"],["-119.706726","37.7260815"],["-119.7055529","37.7255468"],["-119.7052033","37.7254106"],["-119.7049818","37.7253738"],["-119.7037338","37.7253435"],["-119.7033523","37.7253272"],["-119.7031315","37.725283"],["-119.7029291","37.7252084"],["-119.7025988","37.7250303"],["-119.701868","37.7245927"],["-119.7014616","37.7243918"],["-119.7011255","37.7242271"],["-119.7009227","37.7240485"],["-119.7006889","37.7238495"],["-119.7004019","37.723704"],["-119.7001321","37.72363"],["-119.6998186","37.7235733"],["-119.6995668","37.7235019"],["-119.6992678","37.7233882"],["-119.6989829","37.723314"],["-119.6987449","37.7233006"],["-119.6973311","37.7233184"],["-119.6970581","37.7233187"],["-119.69679","37.7232855"],["-119.6965582","37.7232078"],["-119.6963441","37.7231218"],["-119.6961749","37.7230456"],["-119.6960493","37.7230029"],["-119.6958893","37.7229635"],["-119.6956654","37.722927"],["-119.6954641","37.722909"],["-119.695284","37.7228903"],["-119.6950958","37.7228603"],["-119.6949255","37.7228104"],["-119.6942479","37.7224195"],["-119.6940685","37.722349"],["-119.6938474","37.7222905"],["-119.6935696","37.7222348"],["-119.6932866","37.7221756"],["-119.6930213","37.7220925"],["-119.6928327","37.7220141"],["-119.6926703","37.7219204"],["-119.6925289","37.7218032"],["-119.6923869","37.7216943"],["-119.6922115","37.7216121"],["-119.692041","37.7215653"],["-119.6918476","37.7215336"],["-119.6916576","37.7215256"],["-119.6914739","37.7215514"],["-119.6912818","37.7216255"],["-119.6910787","37.7217214"],["-119.6908524","37.7218319"],["-119.6906007","37.7219194"],["-119.6903108","37.7219954"],["-119.6901149","37.7220292"],["-119.6898496","37.7220216"],["-119.6895693","37.7219875"],["-119.6893341","37.7219306"],["-119.6890743","37.721859"],["-119.6877766","37.7214245"],["-119.6874114","37.7213029"],["-119.6870903","37.7211921"],["-119.6867558","37.7210357"],["-119.6862589","37.7207149"],["-119.6858652","37.7204454"],["-119.6856022","37.7202981"],["-119.6853211","37.7201574"],["-119.6849528","37.7199962"],["-119.6837322","37.7195732"],["-119.6834166","37.7195095"],["-119.6830662","37.7194738"],["-119.682833","37.7194459"],["-119.6827241","37.7194398"],["-119.6826057","37.7193929"],["-119.6825116","37.719322"],["-119.6823805","37.7191635"],["-119.6821699","37.7191515"],["-119.6817614","37.719086"],["-119.6815894","37.7190446"],["-119.6813803","37.7189945"],["-119.6812186","37.7189729"],["-119.6809648","37.7189614"],["-119.6806354","37.7189858"],["-119.679989","37.7190302"],["-119.6798474","37.71902"],["-119.6797254","37.719003"],["-119.6793388","37.7189079"],["-119.678951","37.7188028"],["-119.6787175","37.718757"],["-119.6784645","37.7187527"],["-119.6780382","37.7187782"],["-119.6772419","37.7188455"],["-119.6766825","37.7188698"],["-119.6764682","37.7188506"],["-119.676153","37.7187764"],["-119.6757923","37.7186628"],["-119.6747897","37.7182738"],["-119.6745827","37.7181937"],["-119.674365","37.7181112"],["-119.6741479","37.7180361"],["-119.6739512","37.7179803"],["-119.6735663","37.7179223"],["-119.6733605","37.7179229"],["-119.6730832","37.7179481"],["-119.672415","37.7180718"],["-119.6720103","37.7181412"],["-119.6715395","37.7181863"],["-119.6710718","37.7182185"],["-119.6705435","37.718221"],["-119.6703801","37.718213"],["-119.6702634","37.7181897"],["-119.6700251","37.7181165"],["-119.6697606","37.718004"],["-119.6695439","37.7179132"],["-119.6689411","37.7176394"],["-119.6685363","37.7174669"],["-119.6679394","37.7173007"],["-119.6674041","37.7171872"],["-119.6670399","37.7171273"],["-119.6666277","37.7170564"],["-119.6664341","37.7169955"],["-119.6663775","37.7169633"],["-119.6663229","37.716903"],["-119.666259","37.7168228"],["-119.6662177","37.7167245"],["-119.6661742","37.7164558"],["-119.6661673","37.7164168"],["-119.6661635","37.7163973"],["-119.6661338","37.7163314"],["-119.6660468","37.7162191"],["-119.665969","37.7161559"],["-119.665889","37.7161155"],["-119.6658188","37.7160884"],["-119.6656468","37.7160425"],["-119.6655537","37.7159897"],["-119.6654189","37.7158575"],["-119.6653297","37.7157463"],["-119.665148","37.7154596"],["-119.6649564","37.7151171"],["-119.6648372","37.71493"],["-119.6647099","37.7147986"],["-119.6646451","37.7147556"],["-119.6644675","37.7146739"],["-119.6643158","37.7146343"],["-119.6640968","37.714602"],["-119.6638711","37.7146035"],["-119.6636506","37.7146194"],["-119.6633123","37.7146714"],["-119.6628372","37.7147844"],["-119.6621718","37.7150067"],["-119.6618911","37.71507"],["-119.6616177","37.7150944"],["-119.6611364","37.7151236"],["-119.6608614","37.7151656"],["-119.6606516","37.7152261"],["-119.66047","37.7152926"],["-119.6602372","37.7154018"],["-119.6596155","37.7157586"],["-119.6586331","37.7163138"],["-119.658326","37.7164567"],["-119.6579835","37.7165933"],["-119.6576297","37.716685"],["-119.6573656","37.7167236"],["-119.6569746","37.7166985"],["-119.6565275","37.7167095"],["-119.656077","37.7168182"],["-119.655496","37.7169512"],["-119.6532118","37.7172957"],["-119.6528001","37.7173844"],["-119.6524926","37.7174592"],["-119.6523203","37.7175211"],["-119.6522515","37.7175469"],["-119.652169","37.7175272"],["-119.6520899","37.7174938"],["-119.6520385","37.7174607"],["-119.6519949","37.7174356"],["-119.65194","37.7173528"],["-119.6518971","37.7172542"],["-119.651978","37.7171189"],["-119.6520819","37.7169587"],["-119.6521517","37.7168803"],["-119.6522414","37.7167739"],["-119.6523607","37.7166482"],["-119.6524511","37.7165682"],["-119.65253","37.716506"],["-119.6526696","37.7164134"],["-119.6529066","37.7162816"],["-119.6531111","37.7161939"],["-119.6533542","37.7161158"],["-119.6537147","37.7160352"],["-119.6541138","37.7159522"],["-119.6545005","37.715862"],["-119.6549562","37.7157237"],["-119.6555082","37.7155387"],["-119.6557597","37.7154323"],["-119.6561412","37.7152348"],["-119.6563711","37.7151114"],["-119.656606","37.714971"],["-119.6574288","37.7143832"],["-119.657656","37.7142459"],["-119.6580233","37.7140669"],["-119.6585496","37.713854"],["-119.6587842","37.7137734"],["-119.659274","37.7136099"],["-119.6597268","37.7133923"],["-119.6600418","37.7131963"],["-119.6603385","37.7129896"],["-119.6605924","37.7128163"],["-119.6607604","37.7127301"],["-119.6609887","37.7126473"],["-119.6611681","37.7125894"],["-119.6613585","37.7125553"],["-119.6616732","37.7125247"],["-119.6619646","37.7125033"],["-119.6623087","37.7125112"],["-119.6627436","37.7125394"],["-119.6629491","37.7125586"],["-119.6631859","37.712593"],["-119.6633796","37.7126287"],["-119.6647843","37.712903"],["-119.6649886","37.7129243"],["-119.6651956","37.7129401"],["-119.6654172","37.7129519"],["-119.6661854","37.7129447"],["-119.6667423","37.7129494"],["-119.6670865","37.7129595"],["-119.6673252","37.7129825"],["-119.6675627","37.7130165"],["-119.6677558","37.7130518"],["-119.6679148","37.7130872"],["-119.6680663","37.7131349"],["-119.6682836","37.7132135"],["-119.6685633","37.7133127"],["-119.6689443","37.7134356"],["-119.6691292","37.7134848"],["-119.669409","37.7135329"],["-119.6695499","37.7135457"],["-119.6697207","37.7135467"],["-119.6699926","37.7135203"],["-119.6703251","37.7134614"],["-119.6711217","37.7132873"],["-119.6713663","37.713249"],["-119.6717613","37.7132233"],["-119.6719727","37.7132178"],["-119.6722707","37.713231"],["-119.672559","37.7132615"],["-119.6726959","37.7132859"],["-119.6728564","37.7133261"],["-119.6729655","37.71336"],["-119.6730757","37.7134024"],["-119.6731827","37.7134622"],["-119.6732815","37.7135267"],["-119.6733644","37.7135913"],["-119.6736134","37.7138089"],["-119.6737098","37.7138745"],["-119.6738065","37.7139324"],["-119.6739595","37.7140101"],["-119.6747284","37.7143223"],["-119.6752453","37.7145206"],["-119.675538","37.7146242"],["-119.6759491","37.714778"],["-119.6760694","37.7148274"],["-119.6761534","37.7148679"],["-119.6762478","37.7149216"],["-119.676324","37.7149879"],["-119.6764339","37.7150958"],["-119.6765527","37.7152125"],["-119.6766231","37.7152644"],["-119.676701","37.7153183"],["-119.6768414","37.7153936"],["-119.676958","37.7154406"],["-119.6770728","37.7154755"],["-119.677141","37.7154899"],["-119.6772006","37.7155015"],["-119.6772645","37.7155092"],["-119.677412","37.7155191"],["-119.6775377","37.7155269"],["-119.6923255","37.7160097"],["-119.6925279","37.7160071"],["-119.6931377","37.716023"],["-119.6933141","37.7160171"],["-119.6934965","37.7159673"],["-119.693769","37.715833"],["-119.69405","37.7156805"],["-119.6946071","37.715379"],["-119.6947903","37.7152817"],["-119.6949797","37.7152049"],["-119.6952043","37.7151118"],["-119.6954736","37.7150049"],["-119.6957271","37.7149048"],["-119.6961256","37.7147298"],["-119.6962987","37.714629"],["-119.6966951","37.7143482"],["-119.6968599","37.7142464"],["-119.6969945","37.7141698"],["-119.6971719","37.7140895"],["-119.697336","37.7140276"],["-119.6976294","37.7139676"],["-119.697854","37.7139387"],["-119.6980883","37.7139297"],["-119.6984371","37.7139396"],["-119.6987607","37.7139686"],["-119.6990671","37.7140137"],["-119.6993738","37.71407"],["-119.6996173","37.7141301"],["-119.7002272","37.7143657"],["-119.7008753","37.7146331"],["-119.7011481","37.7147387"],["-119.7039108","37.7156418"],["-119.7040574","37.7157014"],["-119.7041775","37.7157624"],["-119.7042649","37.7158185"],["-119.7043428","37.7158723"],["-119.7045256","37.7160114"],["-119.7046252","37.7160921"],["-119.704796","37.7162238"],["-119.7049206","37.716298"],["-119.7050438","37.716361"],["-119.7051908","37.7164179"],["-119.7053241","37.7164589"],["-119.705436","37.7164867"],["-119.7055386","37.7165074"],["-119.7057906","37.7165293"],["-119.7059259","37.716525"],["-119.7060427","37.7165159"],["-119.7061628","37.7165"],["-119.7062617","37.7164814"],["-119.7063523","37.716457"],["-119.7064386","37.7164282"],["-119.7065315","37.7163911"],["-119.7066327","37.7163452"],["-119.7067737","37.7162665"],["-119.7068712","37.7161984"],["-119.7074989","37.7157147"],["-119.7078651","37.7154256"],["-119.7081614","37.7151937"],["-119.708394","37.715007"],["-119.7085144","37.7148801"],["-119.7085885","37.7147805"],["-119.7086398","37.7146802"],["-119.708682","37.7145669"],["-119.7087356","37.714318"],["-119.7087519","37.7141984"],["-119.7088023","37.7140798"],["-119.7088775","37.7139743"],["-119.7089696","37.7138781"],["-119.7090571","37.7137998"],["-119.7091542","37.7137275"],["-119.7093416","37.7135992"],["-119.7094575","37.7135083"],["-119.709563","37.7134206"],["-119.7096439","37.7133285"],["-119.7097151","37.7132238"],["-119.7097578","37.7131338"],["-119.709783","37.7130481"],["-119.7098036","37.7129352"],["-119.7097979","37.7128361"],["-119.7097673","37.712704"],["-119.7097332","37.7126188"],["-119.7096768","37.7125248"],["-119.7096151","37.7124328"],["-119.7091301","37.7119237"],["-119.7089892","37.71172"],["-119.7089293","37.7116161"],["-119.7088788","37.7114958"],["-119.708837","37.7113713"],["-119.7088092","37.7112344"],["-119.708773","37.7110176"],["-119.7087304","37.710534"],["-119.7086888","37.7103823"],["-119.7086349","37.7102403"],["-119.7085298","37.7100645"],["-119.7082641","37.7096724"],["-119.7081825","37.7094819"],["-119.7081752","37.709352"],["-119.7081907","37.709238"],["-119.708224","37.7091343"],["-119.7082862","37.7090318"],["-119.7083531","37.7089322"],["-119.7084484","37.7088515"],["-119.708593","37.7087614"],["-119.7087597","37.7086645"],["-119.7089329","37.7085508"],["-119.7090774","37.7084519"],["-119.7092258","37.7083256"],["-119.7094337","37.7081126"],["-119.7097166","37.7078221"],["-119.7100027","37.7075241"],["-119.710233","37.7072087"],["-119.7105689","37.7068343"],["-119.7107452","37.7066623"],["-119.7108696","37.7065179"],["-119.7109457","37.7063899"],["-119.7110035","37.7062569"],["-119.7110633","37.7061198"],["-119.7111417","37.7059534"],["-119.7112673","37.7057874"],["-119.7113971","37.7056604"],["-119.7115817","37.7054914"],["-119.7117637","37.7053219"],["-119.711884","37.7051933"],["-119.7119594","37.7050866"],["-119.7120618","37.7048177"],["-119.7121896","37.7040548"],["-119.7122261","37.7037271"],["-119.7122213","37.7034738"],["-119.7122286","37.7032158"],["-119.7122889","37.7029493"],["-119.7124874","37.7021651"],["-119.7125129","37.7020248"],["-119.7125133","37.7019133"],["-119.712499","37.7018141"],["-119.7124727","37.7017136"],["-119.7124401","37.7016362"],["-119.7123666","37.7015286"],["-119.7123022","37.7014615"],["-119.7122094","37.7013931"],["-119.7120713","37.7012983"],["-119.7115664","37.7009793"],["-119.7113942","37.7008542"],["-119.7113056","37.7007535"],["-119.7112358","37.7006401"],["-119.711162","37.7004675"],["-119.7110619","37.7002123"],["-119.7109111","37.6998077"],["-119.7108376","37.6996653"],["-119.7107761","37.6995668"],["-119.7107137","37.6994957"],["-119.7106308","37.6994198"],["-119.7105252","37.699346"],["-119.7103168","37.699225"],["-119.709659","37.6988815"],["-119.7094898","37.6988102"],["-119.7093607","37.6987646"],["-119.7092235","37.6987248"],["-119.7090817","37.6986912"],["-119.7088727","37.6986359"],["-119.7086738","37.6985824"],["-119.7085016","37.6985316"],["-119.7083913","37.6984812"],["-119.7082934","37.6984284"],["-119.7082038","37.698354"],["-119.7081316","37.698263"],["-119.7080702","37.6981637"],["-119.7080307","37.6980533"],["-119.7080169","37.6979506"],["-119.7080191","37.6978688"],["-119.7080343","37.6977496"],["-119.7080543","37.6976575"],["-119.7080947","37.6975521"],["-119.7081407","37.697434"],["-119.7081886","37.6973081"],["-119.7082424","37.6971561"],["-119.7082797","37.6970019"],["-119.7082878","37.6968824"],["-119.7082771","37.6967743"],["-119.7082522","37.6966686"],["-119.7081908","37.6965229"],["-119.7081028","37.6963931"],["-119.7079614","37.6962008"],["-119.7078207","37.696006"],["-119.7077338","37.6958416"],["-119.7076888","37.6957317"],["-119.7076586","37.6956075"],["-119.7076464","37.6954381"],["-119.7076819","37.6952548"],["-119.7077347","37.6950699"],["-119.7078308","37.6948238"],["-119.7078881","37.6946321"],["-119.7079284","37.6944425"],["-119.7079414","37.6942591"],["-119.7079305","37.6941106"],["-119.7079052","37.6939783"],["-119.7078689","37.6938562"],["-119.707797","37.6937095"],["-119.707724","37.6935915"],["-119.7076152","37.6934624"],["-119.7074698","37.6933258"],["-119.7073088","37.6931954"],["-119.7070094","37.6930001"],["-119.7060384","37.6923891"],["-119.7058164","37.6922645"],["-119.7056132","37.6921599"],["-119.7052701","37.6920225"],["-119.7011571","37.6905099"],["-119.7000332","37.6900839"],["-119.699916","37.6900129"],["-119.6997929","37.6899054"],["-119.6996828","37.6897496"],["-119.699648","37.6896663"],["-119.6996163","37.6895247"],["-119.6996088","37.6894095"],["-119.6996335","37.689242"],["-119.6996872","37.6890947"],["-119.6997539","37.6889887"],["-119.6998573","37.6888809"],["-119.70007","37.6887066"],["-119.700526","37.6883658"],["-119.7008968","37.688091"],["-119.7011641","37.6878403"],["-119.7012801","37.6877057"],["-119.701366","37.687543"],["-119.7014676","37.6874107"],["-119.7015629","37.68733"],["-119.701682","37.6872473"],["-119.7018598","37.6871806"],["-119.7020583","37.6871609"],["-119.7022526","37.6871569"],["-119.7026042","37.6871689"],["-119.7027565","37.6871601"],["-119.7029821","37.6871188"],["-119.7034826","37.6869588"],["-119.7037776","37.6868714"],["-119.704008","37.6868178"],["-119.7044889","37.6867507"],["-119.7050057","37.6866799"],["-119.705465","37.686608"],["-119.7057249","37.6865508"],["-119.7060225","37.6864687"],["-119.7063302","37.6863702"],["-119.706601","37.6862675"],["-119.7068234","37.6861705"],["-119.7071005","37.6860216"],["-119.7075069","37.6857861"],["-119.7079119","37.6855295"],["-119.7081028","37.6854191"],["-119.7082628","37.6853386"],["-119.7085113","37.6852483"],["-119.7087249","37.6851641"],["-119.7088539","37.6851038"],["-119.7089618","37.6850375"],["-119.7091382","37.6848593"],["-119.7097112","37.6839588"],["-119.7097989","37.6837688"],["-119.7098209","37.6836314"],["-119.7098199","37.6835041"],["-119.7097991","37.6833845"],["-119.7097424","37.6832517"],["-119.7096178","37.6830488"],["-119.7093964","37.6827661"],["-119.7091258","37.6824271"],["-119.7088232","37.6820552"],["-119.7085146","37.6816745"],["-119.7083157","37.6814212"],["-119.7082027","37.6812213"],["-119.7080926","37.6809573"],["-119.708001","37.6806576"],["-119.7079127","37.6802571"],["-119.7078621","37.6798838"],["-119.7078755","37.6796842"],["-119.707943","37.6794382"],["-119.7081171","37.6790171"],["-119.7081798","37.6787986"],["-119.7081911","37.6786034"],["-119.7081689","37.6784972"],["-119.7081269","37.6783871"],["-119.708061","37.6782953"],["-119.707945","37.6781868"],["-119.70782","37.6781043"],["-119.7077219","37.6780552"],["-119.7074763","37.6779887"],["-119.7071439","37.6779035"],["-119.7069238","37.6778157"],["-119.7067622","37.6776993"],["-119.7066583","37.6775855"],["-119.7066001","37.6774861"],["-119.7065733","37.6773918"],["-119.7065477","37.6772204"],["-119.7065566","37.6766177"],["-119.70657","37.6762893"],["-119.706603","37.6761546"],["-119.7066522","37.6760246"],["-119.7068048","37.6757992"],["-119.7069052","37.6757031"],["-119.7070367","37.675599"],["-119.7072417","37.6754544"],["-119.7074386","37.6753395"],["-119.7076271","37.6752103"],["-119.7077746","37.6750662"],["-119.7078313","37.6749899"],["-119.7079045","37.674853"],["-119.7079392","37.674746"],["-119.707951","37.6746143"],["-119.707911","37.6743115"],["-119.7079045","37.6740837"],["-119.7079269","37.6739116"],["-119.7080735","37.6734266"],["-119.7081825","37.6730983"],["-119.7082655","37.6728358"],["-119.7083474","37.6726741"],["-119.7084352","37.6725458"],["-119.7085221","37.6724456"],["-119.7086302","37.6723607"],["-119.7088732","37.6722069"],["-119.7091911","37.6720127"],["-119.7093529","37.671905"],["-119.7094758","37.6718114"],["-119.7095431","37.6717496"],["-119.7096112","37.6716614"],["-119.7096992","37.6715117"],["-119.7097297","37.6714435"],["-119.7097489","37.6713581"],["-119.7097544","37.6712884"],["-119.7097545","37.6712188"],["-119.7097414","37.6711359"],["-119.7097095","37.6710005"],["-119.7097019","37.6708972"],["-119.7097064","37.6708048"],["-119.7097362","37.6706738"],["-119.7097745","37.6705945"],["-119.7098189","37.670528"],["-119.7098705","37.6704716"],["-119.7099434","37.6704057"],["-119.7101917","37.6702301"],["-119.7103232","37.6701153"],["-119.7103862","37.6700356"],["-119.7104447","37.6698935"],["-119.7105282","37.6696723"],["-119.7106085","37.6695338"],["-119.710682","37.6694438"],["-119.7107883","37.6692925"],["-119.7108224","37.6692107"],["-119.7108446","37.6691418"],["-119.7108584","37.6690632"],["-119.7108559","37.668995"],["-119.7108349","37.6688472"],["-119.7107971","37.6685959"],["-119.7108097","37.668392"],["-119.7108553","37.6682576"],["-119.710934","37.6681217"],["-119.7110262","37.6680225"],["-119.711135","37.6679316"],["-119.7112577","37.6678472"],["-119.7113801","37.667784"],["-119.7116353","37.6676651"],["-119.711825","37.667573"],["-119.7119506","37.6674984"],["-119.7120982","37.6673794"],["-119.712157","37.6673186"],["-119.7122291","37.6672257"],["-119.7123353","37.6670673"],["-119.7124352","37.6668674"],["-119.7125789","37.6665284"],["-119.7126122","37.6664034"],["-119.7126171","37.666305"],["-119.7126121","37.6662183"],["-119.7125972","37.6661298"],["-119.7125689","37.6660453"],["-119.7125334","37.6659799"],["-119.7124932","37.665917"],["-119.7124277","37.6658431"],["-119.7122763","37.6657024"],["-119.7120529","37.6655132"],["-119.7118462","37.6653345"],["-119.7116902","37.6651914"],["-119.7115497","37.6650466"],["-119.7114885","37.6649581"],["-119.7114272","37.6648583"],["-119.7113741","37.6647468"],["-119.7112608","37.6644579"],["-119.7112041","37.6643318"],["-119.7111254","37.664202"],["-119.7109383","37.6639389"],["-119.7107543","37.6636816"],["-119.7105399","37.6633773"],["-119.7103591","37.6631156"],["-119.7102768","37.6629807"],["-119.7102211","37.6628719"],["-119.7101904","37.6627986"],["-119.7101619","37.6627161"],["-119.7101276","37.6625792"],["-119.7101211","37.6624556"],["-119.7101251","37.6623489"],["-119.7101561","37.6622086"],["-119.7101952","37.6621108"],["-119.7102664","37.661978"],["-119.7109898","37.6607459"],["-119.7111744","37.6604557"],["-119.711242","37.6603693"],["-119.7113929","37.6602285"],["-119.7116012","37.6600496"],["-119.711688","37.6599606"],["-119.7117596","37.6598738"],["-119.7118367","37.6597706"],["-119.7118902","37.6596845"],["-119.7119368","37.6595943"],["-119.7119708","37.6595046"],["-119.7119957","37.6594208"],["-119.7120139","37.6593127"],["-119.7120219","37.65919"],["-119.7120184","37.6590781"],["-119.7119952","37.6589299"],["-119.7119636","37.6588096"],["-119.7119293","37.6587069"],["-119.7118941","37.658623"],["-119.7118538","37.6585482"],["-119.7118001","37.6584662"],["-119.7116525","37.6583014"],["-119.7113539","37.6580234"],["-119.7112475","37.6579184"],["-119.7111973","37.6578574"],["-119.7111097","37.6577093"],["-119.71102","37.6574757"],["-119.7109746","37.6573803"],["-119.7109223","37.6572841"],["-119.7108737","37.6572188"],["-119.7108161","37.6571505"],["-119.7107631","37.6570972"],["-119.7106992","37.6570441"],["-119.7106245","37.6569926"],["-119.7104747","37.6568984"],["-119.7103302","37.6568008"],["-119.7102509","37.6567346"],["-119.7101854","37.6566644"],["-119.7101368","37.6565945"],["-119.7100794","37.6565011"],["-119.7099483","37.6562655"],["-119.7098439","37.6560962"],["-119.7097799","37.6560173"],["-119.7097081","37.6559431"],["-119.7096059","37.655857"],["-119.7095215","37.6558011"],["-119.709411","37.6557539"],["-119.7092957","37.6557144"],["-119.7091815","37.65569"],["-119.7089964","37.6556707"],["-119.7088503","37.6556704"],["-119.7081142","37.6557271"],["-119.7072588","37.6557951"],["-119.7063587","37.6558658"],["-119.7061344","37.6558721"],["-119.7056239","37.6558639"],["-119.7052613","37.6558558"],["-119.7048996","37.6558449"],["-119.704685","37.6558382"],["-119.7044908","37.6558289"],["-119.7043037","37.6558106"],["-119.7041927","37.6557904"],["-119.7040814","37.6557595"],["-119.7039845","37.6557245"],["-119.7038449","37.6556564"],["-119.7036808","37.6555458"],["-119.7035981","37.6554792"],["-119.7035223","37.6554056"],["-119.7034138","37.6552864"],["-119.7032963","37.655148"],["-119.7030652","37.6548828"],["-119.7027824","37.6545563"],["-119.7026506","37.6543785"],["-119.7025756","37.6542487"],["-119.7025439","37.654175"],["-119.7025075","37.6540424"],["-119.7024946","37.6539647"],["-119.7024899","37.6538843"],["-119.7024908","37.6538022"],["-119.7025062","37.6537123"],["-119.7025906","37.6535069"],["-119.7026698","37.6533477"],["-119.7027547","37.6532171"],["-119.7028026","37.6531582"],["-119.7028583","37.6531015"],["-119.7029802","37.6530032"],["-119.7031565","37.6528531"],["-119.7032388","37.6527546"],["-119.7032763","37.6526647"],["-119.7032949","37.6525788"],["-119.7032995","37.6525154"],["-119.7032914","37.6524379"],["-119.7032768","37.6523647"],["-119.7032474","37.6522662"],["-119.7032144","37.6521785"],["-119.7031808","37.6521189"],["-119.7031341","37.6520547"],["-119.7030867","37.6519997"],["-119.7030384","37.6519558"],["-119.7029392","37.6518848"],["-119.7028173","37.6518299"],["-119.7027413","37.6518075"],["-119.7026123","37.6517844"],["-119.7024991","37.6517776"],["-119.7022442","37.6517776"],["-119.7018445","37.6517897"],["-119.7015883","37.651804"],["-119.7013296","37.6517821"],["-119.7011166","37.6517507"],["-119.700929","37.6516911"],["-119.700817","37.6516293"],["-119.7007423","37.6515515"],["-119.7006788","37.6514549"],["-119.7006482","37.6513489"],["-119.7006338","37.6512537"],["-119.7006581","37.651183"],["-119.7008466","37.6509705"],["-119.7010447","37.6508014"],["-119.7013297","37.6505223"],["-119.7015404","37.6502998"],["-119.7016855","37.650111"],["-119.7018144","37.6498716"],["-119.7019945","37.6494021"],["-119.7021593","37.6489836"],["-119.7023505","37.6486215"],["-119.7025622","37.6482155"],["-119.7028311","37.6478204"],["-119.7029678","37.64757"],["-119.7030278","37.6473335"],["-119.7030219","37.6470987"],["-119.7029558","37.6468343"],["-119.7028776","37.6467041"],["-119.7027811","37.6466079"],["-119.7026422","37.6465119"],["-119.7023049","37.6463704"],["-119.7019203","37.6462212"],["-119.7016098","37.6461644"],["-119.7012053","37.6461437"],["-119.7008041","37.6460978"],["-119.7004756","37.6459718"],["-119.700037","37.645704"],["-119.6997801","37.6455099"],["-119.6994576","37.645232"],["-119.6990681","37.6450092"],["-119.6987189","37.6448003"],["-119.698486","37.6445481"],["-119.6982404","37.644271"],["-119.6980096","37.6441116"],["-119.697691","37.6439926"],["-119.6974567","37.6439303"],["-119.6973151","37.643882"],["-119.6971686","37.6437912"],["-119.6970176","37.643678"],["-119.6968914","37.6435491"],["-119.6968167","37.6434402"],["-119.6967651","37.6433373"],["-119.696701","37.6431619"],["-119.6965994","37.6428295"],["-119.6964873","37.6425732"],["-119.6963936","37.6423281"],["-119.6963624","37.6421467"],["-119.6963655","37.6419816"],["-119.6963798","37.6416955"],["-119.6963296","37.6411276"],["-119.696228","37.6407553"],["-119.6959109","37.6400844"],["-119.69572","37.6397288"],["-119.6956781","37.6396111"],["-119.6956531","37.6394118"],["-119.6956209","37.6393061"],["-119.6955851","37.6392578"],["-119.6955064","37.6391964"],["-119.6953911","37.6391461"],["-119.6949397","37.6389834"],["-119.6945937","37.6388636"],["-119.69447","37.6388308"],["-119.6942999","37.6388081"],["-119.6939361","37.6387792"],["-119.6935302","37.6387548"],["-119.6931612","37.6387308"],["-119.6930305","37.6387424"],["-119.692882","37.6387948"],["-119.6925783","37.6389642"],["-119.692288","37.6391005"],["-119.692001","37.6392069"],["-119.691767","37.6392683"],["-119.6915211","37.6393093"],["-119.6908763","37.6394674"],["-119.6905388","37.6395593"],["-119.6903147","37.63967"],["-119.6899973","37.6398646"],["-119.689556","37.6401062"],["-119.6892273","37.6402727"],["-119.688776","37.6404436"],["-119.6882496","37.6406394"],["-119.6879245","37.6407818"],["-119.6877774","37.6408733"],["-119.68754","37.6410675"],["-119.6868669","37.6415847"],["-119.6865775","37.6417891"],["-119.6863744","37.6418868"],["-119.6862661","37.6419147"],["-119.6861089","37.6419177"],["-119.6859549","37.6418934"],["-119.6858397","37.6418671"],["-119.6857383","37.6418321"],["-119.6856198","37.641773"],["-119.6855356","37.6417064"],["-119.6854497","37.6415769"],["-119.6853961","37.6414437"],["-119.6853706","37.6413517"],["-119.6853562","37.6411838"],["-119.6853812","37.6409891"],["-119.6854431","37.6408197"],["-119.6854488","37.6406593"],["-119.6854466","37.6404862"],["-119.6853854","37.640228"],["-119.685287","37.6400486"],["-119.6849296","37.6396524"],["-119.6847047","37.6393019"],["-119.6846063","37.6389487"],["-119.6846083","37.6385444"],["-119.684716","37.6381507"],["-119.6847603","37.6378156"],["-119.6847507","37.6376374"],["-119.6846979","37.6374693"],["-119.6846105","37.6372974"],["-119.6844775","37.6370865"],["-119.6842264","37.6368333"],["-119.6840642","37.6367162"],["-119.6838404","37.6365996"],["-119.6836252","37.6365299"],["-119.6831101","37.63643"],["-119.6830155","37.6364058"],["-119.6829482","37.6363617"],["-119.6828903","37.6362986"],["-119.6828335","37.6362017"],["-119.6828014","37.6361114"],["-119.6827822","37.6359593"],["-119.6827856","37.6358765"],["-119.6828203","37.6357589"],["-119.682875","37.6356729"],["-119.6830371","37.6355238"],["-119.6834712","37.6351901"],["-119.6840127","37.6348411"],["-119.6844524","37.6345084"],["-119.6847431","37.6342423"],["-119.6849827","37.6339862"],["-119.6852026","37.6337027"],["-119.685523","37.6332402"],["-119.6857918","37.632548"],["-119.6860095","37.6321157"],["-119.6861266","37.63185"],["-119.6861789","37.631638"],["-119.686223","37.6314931"],["-119.6862856","37.6313205"],["-119.6863676","37.6311676"],["-119.6865033","37.6310092"],["-119.6866368","37.6308832"],["-119.6868306","37.6306668"],["-119.6869604","37.6305038"],["-119.6870302","37.6303808"],["-119.687053","37.6302682"],["-119.6869789","37.6300556"],["-119.6868294","37.6298025"],["-119.686732","37.6296157"],["-119.6867382","37.6294252"],["-119.6867615","37.6292485"],["-119.6868145","37.6290116"],["-119.6868509","37.6287942"],["-119.6869122","37.6285905"],["-119.6870882","37.6282256"],["-119.6874797","37.6276285"],["-119.6875583","37.6272835"],["-119.6875538","37.627073"],["-119.6874935","37.6268843"],["-119.6872865","37.6265056"],["-119.6871884","37.6262912"],["-119.6871735","37.6261468"],["-119.6872072","37.6259531"],["-119.6872427","37.6258686"],["-119.6873111","37.6257625"],["-119.6874158","37.6256473"],["-119.6875516","37.6255484"],["-119.687874","37.625386"],["-119.6881154","37.6252253"],["-119.6882562","37.6250922"],["-119.6884079","37.6248679"],["-119.6884814","37.6245612"],["-119.688493","37.6243861"],["-119.6884609","37.6242131"],["-119.6883963","37.6240037"],["-119.6882362","37.6236438"],["-119.6882399","37.6233716"],["-119.6882565","37.6229418"],["-119.6884556","37.6222419"],["-119.6885211","37.6220758"],["-119.6886137","37.6219232"],["-119.688943","37.6214839"],["-119.6893211","37.6210135"],["-119.6895675","37.6207027"],["-119.6896786","37.6205384"],["-119.6897869","37.6203512"],["-119.6898594","37.6201452"],["-119.6898804","37.6200221"],["-119.689888","37.6198052"],["-119.689812","37.6191787"],["-119.6897308","37.618734"],["-119.6896801","37.6185392"],["-119.6896044","37.618355"],["-119.6893174","37.6177535"],["-119.6892241","37.6174911"],["-119.6891771","37.6172362"],["-119.6890395","37.6162045"],["-119.688995","37.6159673"],["-119.6889534","37.6158639"],["-119.6888542","37.6157183"],["-119.6887964","37.6156538"],["-119.6886478","37.615547"],["-119.6885212","37.6154866"],["-119.6883863","37.6154533"],["-119.6881459","37.6154487"],["-119.6879507","37.6154636"],["-119.6875346","37.6155605"],["-119.687403","37.6155663"],["-119.6873222","37.6155509"],["-119.687116","37.6154849"],["-119.6870051","37.6154328"],["-119.6868943","37.6153546"],["-119.6868052","37.615261"],["-119.6867649","37.6151787"],["-119.6867474","37.6150841"],["-119.6867554","37.614996"],["-119.6867905","37.6148803"],["-119.6868516","37.6147641"],["-119.6869458","37.6146477"],["-119.6870107","37.6145935"],["-119.6872077","37.6144734"],["-119.6875882","37.6142671"],["-119.6877874","37.6141278"],["-119.6879074","37.6139803"],["-119.6880642","37.613703"],["-119.6882356","37.6133604"],["-119.6883401","37.6130613"],["-119.6883564","37.6129188"],["-119.6883385","37.612794"],["-119.6882576","37.6125955"],["-119.6881442","37.6124317"],["-119.687908","37.6121345"],["-119.6877292","37.6119011"],["-119.6875989","37.6117484"],["-119.6874106","37.6115752"],["-119.6872974","37.6114985"],["-119.6871584","37.6114396"],["-119.6869666","37.6113998"],["-119.6864329","37.6113608"],["-119.6862532","37.6113222"],["-119.6861342","37.6112707"],["-119.6859986","37.6111839"],["-119.6857347","37.6109426"],["-119.6847681","37.6099739"],["-119.6845925","37.6098355"],["-119.6842232","37.6096733"],["-119.683933","37.609521"],["-119.6838154","37.6094374"],["-119.6837306","37.6093439"],["-119.6836714","37.6092421"],["-119.6836273","37.609131"],["-119.6836003","37.6090019"],["-119.6835995","37.6088612"],["-119.6836381","37.6086125"],["-119.6838725","37.6077612"],["-119.6840831","37.6070167"],["-119.6841849","37.6067248"],["-119.6842312","37.606526"],["-119.6842373","37.6063539"],["-119.6842072","37.606178"],["-119.6841553","37.6060246"],["-119.6840502","37.6058383"],["-119.6838503","37.605531"],["-119.683765","37.605359"],["-119.6837331","37.6052435"],["-119.6837256","37.6051716"],["-119.6837312","37.6050794"],["-119.6837563","37.6049504"],["-119.6837829","37.6048956"],["-119.6838485","37.6048188"],["-119.6840952","37.6046476"],["-119.6842353","37.6045203"],["-119.6844835","37.6043045"],["-119.6846852","37.6041623"],["-119.6848059","37.6040983"],["-119.6851116","37.6039564"],["-119.6853145","37.6038428"],["-119.6854514","37.6037257"],["-119.6855578","37.6035798"],["-119.6856257","37.6033998"],["-119.6856327","37.6032645"],["-119.6855641","37.6029985"],["-119.6853682","37.6024618"],["-119.6852786","37.6023129"],["-119.6849224","37.6019012"],["-119.6848614","37.6017735"],["-119.6847838","37.6013354"],["-119.6847455","37.6012128"],["-119.6846811","37.601088"],["-119.6845391","37.6009213"],["-119.6844244","37.6008286"],["-119.6842636","37.6007489"],["-119.6840811","37.6007034"],["-119.6836648","37.6006457"],["-119.683465","37.6005925"],["-119.6833666","37.6005449"],["-119.6832611","37.6004747"],["-119.683175","37.6003675"],["-119.6828871","37.5998421"],["-119.6828355","37.5997037"],["-119.6828255","37.5995591"],["-119.6828808","37.5991532"],["-119.6828622","37.5990058"],["-119.6827761","37.5988415"],["-119.6826201","37.598586"],["-119.6824965","37.5983684"],["-119.6824148","37.5981589"],["-119.6823768","37.5979757"],["-119.6823767","37.5978835"],["-119.6823886","37.5978001"],["-119.6824154","37.5977148"],["-119.6825118","37.5975446"],["-119.6826178","37.597403"],["-119.6827568","37.5972574"],["-119.6828997","37.597132"],["-119.683235","37.5968828"],["-119.6833846","37.5967576"],["-119.6834656","37.5966587"],["-119.6835342","37.5965427"],["-119.6836341","37.5963314"],["-119.6837182","37.5960548"],["-119.683763","37.5958217"],["-119.6837675","37.5957"],["-119.6837369","37.5955848"],["-119.6835495","37.595221"],["-119.6835119","37.5950819"],["-119.6835232","37.5949438"],["-119.6835602","37.5946692"],["-119.6836289","37.5941534"],["-119.6837338","37.5934901"],["-119.6837908","37.5933423"],["-119.6839836","37.5930739"],["-119.6840345","37.5929734"],["-119.6840554","37.5928776"],["-119.684062","37.592763"],["-119.6840407","37.5923717"],["-119.6840694","37.5922296"],["-119.6841484","37.5921082"],["-119.6842702","37.5920155"],["-119.6850275","37.5916267"],["-119.6857135","37.5913256"],["-119.686209","37.5911574"],["-119.6869345","37.5909705"],["-119.6870859","37.590904"],["-119.6874499","37.5906558"],["-119.687598","37.5905669"],["-119.6877427","37.5905166"],["-119.6879347","37.5904872"],["-119.6880796","37.5904763"],["-119.688483","37.5904935"],["-119.6886313","37.5904873"],["-119.6887969","37.5904518"],["-119.6889725","37.5903934"],["-119.6891421","37.590302"],["-119.6892723","37.5902108"],["-119.6893942","37.5901046"],["-119.6895219","37.5899534"],["-119.6896318","37.5898063"],["-119.6897319","37.5895922"],["-119.68984","37.5893274"],["-119.6898774","37.5891639"],["-119.6898817","37.5889848"],["-119.689841","37.5887932"],["-119.689752","37.5885618"],["-119.6895453","37.5882083"],["-119.6894689","37.5880491"],["-119.6894191","37.5878677"],["-119.6894037","37.587728"],["-119.6894476","37.587588"],["-119.6896397","37.5872859"],["-119.6896831","37.5871882"],["-119.6897065","37.5870951"],["-119.6897153","37.5869587"],["-119.6896954","37.5868382"],["-119.689621","37.5866858"],["-119.6895293","37.5865374"],["-119.689426","37.5864223"],["-119.6891835","37.5862341"],["-119.6891062","37.586137"],["-119.6890796","37.58608"],["-119.6890712","37.5859409"],["-119.6890806","37.5858408"],["-119.6891566","37.5856436"],["-119.689296","37.5853471"],["-119.6893351","37.5852073"],["-119.6893442","37.5850648"],["-119.6893161","37.5849078"],["-119.6892575","37.5847487"],["-119.6892082","37.5846553"],["-119.6891393","37.5845526"],["-119.6890492","37.5844451"],["-119.6889642","37.5843634"],["-119.6888591","37.584248"],["-119.6887243","37.5841644"],["-119.688601","37.5841113"],["-119.6884322","37.5840616"],["-119.6881063","37.5840195"],["-119.6876186","37.5839535"],["-119.6874987","37.583919"],["-119.6874325","37.583882"],["-119.6871947","37.5836949"],["-119.6870074","37.5835731"],["-119.6868874","37.5835252"],["-119.6866756","37.583483"],["-119.6863034","37.583462"],["-119.6858994","37.583446"],["-119.6856926","37.5834285"],["-119.6855381","37.5833967"],["-119.6854036","37.5833477"],["-119.6849942","37.5831518"],["-119.6843387","37.5828296"],["-119.6834241","37.5824116"],["-119.6830025","37.5822103"],["-119.6827782","37.5820703"],["-119.6824543","37.5818291"],["-119.6820217","37.5814764"],["-119.6818845","37.5813577"],["-119.6818448","37.5813069"],["-119.6818207","37.5812566"],["-119.6818066","37.5811806"],["-119.6818036","37.580977"],["-119.6818166","37.580783"],["-119.6818045","37.5806476"],["-119.6817758","37.580554"],["-119.6816919","37.5803803"],["-119.6816089","37.5802548"],["-119.6814651","37.5801213"],["-119.6811902","37.5799338"],["-119.6809394","37.5797845"],["-119.6807441","37.5796903"],["-119.6806036","37.5796499"],["-119.6803936","37.5796208"],["-119.680228","37.5796267"],["-119.6800588","37.5796576"],["-119.6798894","37.5797145"],["-119.6797377","37.57979"],["-119.6795651","37.5799086"],["-119.6792546","37.580172"],["-119.6790652","37.5803027"],["-119.678935","37.5803598"],["-119.6788263","37.5803831"],["-119.6787123","37.5803859"],["-119.6785708","37.5803644"],["-119.6784102","37.5803163"],["-119.6782936","37.5802545"],["-119.6781044","37.580123"],["-119.6780119","37.5800213"],["-119.6779519","37.5799176"],["-119.6779334","37.5798579"],["-119.6779273","37.5797281"],["-119.6779824","37.5793633"],["-119.678146","37.5786337"],["-119.678196","37.5782543"],["-119.6782029","37.5781047"],["-119.6781928","37.5779713"],["-119.6781474","37.5777721"],["-119.6780577","37.5775678"],["-119.677943","37.5773301"],["-119.6779236","37.577262"],["-119.6779216","37.57721"],["-119.6779326","37.5771451"],["-119.677961","37.5770715"],["-119.6780034","37.5769941"],["-119.6780524","37.5769282"],["-119.6781357","37.5768592"],["-119.6782639","37.5768003"],["-119.6786472","37.5766803"],["-119.6788454","37.5765958"],["-119.6789738","37.576495"],["-119.6790444","37.5764085"],["-119.679097","37.5763269"],["-119.6791484","37.5762088"],["-119.6792618","37.5758939"],["-119.6793445","37.5756792"],["-119.6793542","37.5755886"],["-119.6793263","37.5753892"],["-119.6793405","37.5752841"],["-119.679403","37.5751577"],["-119.6794794","37.5750857"],["-119.6795788","37.5750393"],["-119.6796799","37.5750169"],["-119.679779","37.5750137"],["-119.6799054","37.5750401"],["-119.6799933","37.5750868"],["-119.6800592","37.5751598"],["-119.6801086","37.5752469"],["-119.6801284","37.5753548"],["-119.6800804","37.5758247"],["-119.6800866","37.5759928"],["-119.6801099","37.5760627"],["-119.6801424","37.5761151"],["-119.6802461","37.5762081"],["-119.6804552","37.5763545"],["-119.6806111","37.5764317"],["-119.6807573","37.5764679"],["-119.6808416","37.5764746"],["-119.6811684","37.5764346"],["-119.6816085","37.5764056"],["-119.6820366","37.5763809"],["-119.6823272","37.576352"],["-119.6824951","37.5763059"],["-119.6828909","37.5761635"],["-119.6831481","37.5761183"],["-119.6833135","37.5761195"],["-119.6835079","37.5761517"],["-119.6839172","37.5762662"],["-119.6841448","37.5763008"],["-119.6843231","37.5762895"],["-119.6844569","37.5762591"],["-119.6847806","37.5761289"],["-119.6849684","37.5760441"],["-119.6851979","37.57596"],["-119.6853311","37.5759321"],["-119.6855357","37.5759299"],["-119.6862392","37.5760047"],["-119.686537","37.5760207"],["-119.6868089","37.5759871"],["-119.6869069","37.5759622"],["-119.6870526","37.5758988"],["-119.687234","37.5757871"],["-119.6874274","37.5756049"],["-119.6880316","37.5748821"],["-119.6886655","37.5741351"],["-119.6890056","37.5737157"],["-119.6891507","37.5735151"],["-119.6892526","37.5734145"],["-119.6895414","37.5732254"],["-119.6896808","37.573105"],["-119.6897949","37.5729524"],["-119.6899881","37.5726597"],["-119.6901666","37.5723488"],["-119.6902215","37.5721941"],["-119.6902847","37.5719027"],["-119.6903393","37.571771"],["-119.6904429","37.5716055"],["-119.6905622","37.5714503"],["-119.6907776","37.5712365"],["-119.6909372","37.5710304"],["-119.6911811","37.570627"],["-119.6913874","37.5702414"],["-119.6916639","37.5695061"],["-119.6919023","37.5688472"],["-119.6919736","37.5685228"],["-119.6919777","37.5683934"],["-119.6919484","37.5682007"],["-119.6918752","37.5679044"],["-119.6918716","37.5676651"],["-119.6919107","37.5674622"],["-119.6921148","37.5670438"],["-119.6922188","37.5668046"],["-119.6922919","37.5665407"],["-119.6924443","37.5659064"],["-119.6926021","37.5653327"],["-119.6927576","37.5648854"],["-119.6930955","37.5641861"],["-119.6933006","37.5637876"],["-119.6933628","37.5636323"],["-119.6933801","37.5635097"],["-119.6933747","37.5633648"],["-119.6933458","37.5632378"],["-119.6932908","37.5631124"],["-119.693247","37.5630389"],["-119.693133","37.5629183"],["-119.6929519","37.5628027"],["-119.6927365","37.5627116"],["-119.6922831","37.5625953"],["-119.6921285","37.5625475"],["-119.6920037","37.562485"],["-119.6918973","37.5624084"],["-119.6914345","37.5620169"],["-119.6910742","37.5617094"],["-119.6909206","37.5615949"],["-119.6907444","37.5614876"],["-119.6905752","37.5614186"],["-119.6902937","37.5613492"],["-119.6900603","37.5613233"],["-119.6899061","37.5613177"],["-119.6897051","37.5613371"],["-119.689566","37.5613593"],["-119.6893382","37.5614232"],["-119.6891061","37.5615071"],["-119.6888361","37.5616128"],["-119.6885832","37.5616744"],["-119.688344","37.5617131"],["-119.6881092","37.5617291"],["-119.6879241","37.5617096"],["-119.687777","37.5616676"],["-119.6876924","37.5616282"],["-119.687529","37.5615162"],["-119.6873949","37.5613689"],["-119.6873396","37.5612493"],["-119.6873226","37.5611472"],["-119.6873399","37.5610141"],["-119.6874697","37.5605667"],["-119.6874949","37.5603833"],["-119.687492","37.5602938"],["-119.6874504","37.5601083"],["-119.6873629","37.559894"],["-119.6872432","37.559658"],["-119.6871018","37.5594481"],["-119.6869261","37.5592347"],["-119.6868625","37.559101"],["-119.6868495","37.5589831"],["-119.6868853","37.5588487"],["-119.6869429","37.5587237"],["-119.6870135","37.5585973"],["-119.6870843","37.5585"],["-119.6871495","37.5583786"],["-119.687184","37.5582773"],["-119.687184","37.5581357"],["-119.6871644","37.5580398"],["-119.6871318","37.5579466"],["-119.6870674","37.5578407"],["-119.6867478","37.5574432"],["-119.6864604","37.5570241"],["-119.6862978","37.5568257"],["-119.6861552","37.5566962"],["-119.6857931","37.5564881"],["-119.6850906","37.5561213"],["-119.6843073","37.5557248"],["-119.6840671","37.5555761"],["-119.6837993","37.5553808"],["-119.6835203","37.5551894"],["-119.6831969","37.5549226"],["-119.6831241","37.5548269"],["-119.6829938","37.5544659"],["-119.6829288","37.5543484"],["-119.6828666","37.5542657"],["-119.6827681","37.5541874"],["-119.6826318","37.5541027"],["-119.6824748","37.5540351"],["-119.6822371","37.5539809"],["-119.6819286","37.5539588"],["-119.6817235","37.5539544"],["-119.6815333","37.553932"],["-119.6813954","37.5538891"],["-119.6812287","37.5538098"],["-119.6810621","37.5536994"],["-119.680515","37.5533208"],["-119.6794158","37.5526053"],["-119.6791383","37.5524002"],["-119.6790293","37.5522856"],["-119.6789515","37.5521417"],["-119.6788373","37.5518179"],["-119.678748","37.5515151"],["-119.6786161","37.5512277"],["-119.6783904","37.5509505"],["-119.6782756","37.5508637"],["-119.6780012","37.5506308"],["-119.6778597","37.5504713"],["-119.6773993","37.5497292"],["-119.6772831","37.5495042"],["-119.677248","37.5493665"],["-119.6772345","37.5491582"],["-119.6772478","37.5487793"],["-119.6772038","37.5485514"],["-119.6771463","37.5483483"],["-119.6769989","37.5480428"],["-119.6769153","37.5477828"],["-119.6769053","37.547649"],["-119.6769091","37.5475015"],["-119.676878","37.5472616"],["-119.6768239","37.5470871"],["-119.676734","37.5469436"],["-119.6765946","37.5467989"],["-119.6764842","37.5467293"],["-119.6763426","37.5466645"],["-119.6761011","37.54657"],["-119.6758704","37.5464999"],["-119.6755148","37.5464441"],["-119.6750935","37.5464015"],["-119.6746308","37.5463697"],["-119.6743993","37.5463424"],["-119.6742304","37.5462789"],["-119.6739431","37.5461191"],["-119.6738502","37.5460346"],["-119.6736566","37.5457478"],["-119.6735056","37.5455636"],["-119.673258","37.5454025"],["-119.6729514","37.5452276"],["-119.6726874","37.5450707"],["-119.6724852","37.5448952"],["-119.6723257","37.5447415"],["-119.6721931","37.5445303"],["-119.6721099","37.544336"],["-119.671976","37.5438298"],["-119.6718611","37.5435397"],["-119.6717422","37.5433571"],["-119.6716267","37.5432401"],["-119.6714427","37.5431331"],["-119.6713075","37.5430717"],["-119.6710368","37.5430143"],["-119.6707448","37.5429951"],["-119.6702997","37.5429793"],["-119.6699553","37.542957"],["-119.6697431","37.5429314"],["-119.6695124","37.5428822"],["-119.6691467","37.542773"],["-119.6686972","37.5425708"],["-119.6681273","37.5422705"],["-119.667591","37.5419555"],["-119.6673517","37.541784"],["-119.6671834","37.5416177"],["-119.6670565","37.5414706"],["-119.6667471","37.5409673"],["-119.6665629","37.540771"],["-119.66638","37.5406143"],["-119.6660435","37.5404146"],["-119.6658711","37.5403404"],["-119.6655221","37.5402307"],["-119.6651264","37.5401405"],["-119.6626052","37.5396693"],["-119.6607395","37.539302"],["-119.6603356","37.5391925"],["-119.6597085","37.5388936"],["-119.6593573","37.5386193"],["-119.6586991","37.5379934"],["-119.6584901","37.5377868"],["-119.6582783","37.5375783"],["-119.6582621","37.5375635"],["-119.6579984","37.5373138"],["-119.656388","37.5357602"],["-119.6562285","37.5356344"],["-119.6560525","37.5355196"],["-119.6557846","37.5353948"],["-119.6555643","37.5353108"],["-119.6549274","37.5351914"],["-119.6523089","37.5347674"],["-119.6518032","37.5347162"],["-119.6508243","37.5346841"],["-119.6486476","37.5346306"],["-119.6481811","37.5345951"],["-119.6478589","37.5345468"],["-119.6476064","37.5344885"],["-119.6473519","37.5344141"],["-119.6470815","37.5343155"],["-119.6468445","37.5342107"],["-119.6464591","37.5339936"],["-119.6460556","37.5337341"],["-119.6456764","37.5335049"],["-119.6454797","37.5334095"],["-119.6452354","37.5333189"],["-119.6445648","37.5331672"],["-119.64382","37.5330029"],["-119.6431758","37.532857"],["-119.6428181","37.5327538"],["-119.6423596","37.5326096"],["-119.6419497","37.532506"],["-119.6413947","37.5324353"],["-119.6407542","37.5323796"],["-119.6402808","37.5323385"],["-119.6400454","37.5323068"],["-119.6399005","37.5322641"],["-119.6397693","37.5322115"],["-119.6396525","37.532135"],["-119.6395678","37.5320666"],["-119.6394936","37.5319875"],["-119.6394188","37.5318822"],["-119.6391959","37.5314591"],["-119.6391034","37.5313262"],["-119.6389379","37.5311673"],["-119.6387747","37.5310487"],["-119.6385072","37.5308887"],["-119.6381327","37.5306821"],["-119.637835","37.5305311"],["-119.6375813","37.5304193"],["-119.6372746","37.5303048"],["-119.6368813","37.53018"],["-119.63626","37.5300104"],["-119.6358117","37.5299168"],["-119.6352463","37.5298487"],["-119.6347564","37.5298244"],["-119.6343389","37.5298261"],["-119.6338152","37.5298465"],["-119.6335565","37.5298344"],["-119.6334201","37.5298115"],["-119.6333021","37.5297805"],["-119.6331459","37.5297136"],["-119.6329946","37.5296159"],["-119.6328907","37.529514"],["-119.6327537","37.5293074"],["-119.6326416","37.5291049"],["-119.6325444","37.5289541"],["-119.6323548","37.5287674"],["-119.6321429","37.5286407"],["-119.6319586","37.5285761"],["-119.6317739","37.5285316"],["-119.6316431","37.5285141"],["-119.6314365","37.5285121"],["-119.6312961","37.5285299"],["-119.6311327","37.5285713"],["-119.6308751","37.5286694"],["-119.6305958","37.528803"],["-119.630338","37.528936"],["-119.6300339","37.529083"],["-119.6297684","37.5291946"],["-119.629436","37.5292919"],["-119.6288318","37.5294464"],["-119.6285447","37.5295472"],["-119.6283788","37.5296372"],["-119.6281892","37.5297859"],["-119.6278626","37.5300857"],["-119.6276374","37.5302463"],["-119.6274712","37.530327"],["-119.6273309","37.5303731"],["-119.627133","37.5304115"],["-119.6269492","37.5304194"],["-119.6267755","37.5304049"],["-119.6265509","37.5303591"],["-119.6262068","37.5302406"],["-119.6232013","37.5289298"],["-119.6228652","37.5287604"],["-119.6227438","37.5286795"],["-119.6226141","37.5285815"],["-119.6225313","37.5284957"],["-119.6224053","37.5283521"],["-119.6223017","37.5282047"],["-119.6221123","37.5278554"],["-119.62191","37.5274756"],["-119.6217967","37.5272836"],["-119.6216895","37.5271397"],["-119.6215377","37.5269908"],["-119.6213521","37.5268633"],["-119.6211737","37.5267784"],["-119.6210197","37.5267258"],["-119.6206412","37.5266526"],["-119.6203501","37.5266001"],["-119.6202094","37.526568"],["-119.6200669","37.5265215"],["-119.6198744","37.5264476"],["-119.6197227","37.5263727"],["-119.6196134","37.5263075"],["-119.6195076","37.5262326"],["-119.6193051","37.5260739"],["-119.6190974","37.5258366"],["-119.618313","37.524863"],["-119.6181209","37.5245974"],["-119.6180818","37.5245157"],["-119.6180605","37.5244388"],["-119.6180449","37.5243374"],["-119.6180446","37.5242519"],["-119.6180618","37.5241561"],["-119.618164","37.5239683"],["-119.6184621","37.5235949"],["-119.6186238","37.5233738"],["-119.6187078","37.5232363"],["-119.6187916","37.5230479"],["-119.6188241","37.5228936"],["-119.618848","37.5227041"],["-119.6188349","37.5222936"],["-119.6188483","37.5221475"],["-119.6189073","37.5219987"],["-119.6189738","37.5218985"],["-119.6190643","37.5218045"],["-119.6191763","37.5217248"],["-119.6193281","37.5216545"],["-119.6195443","37.5215845"],["-119.6198847","37.521485"],["-119.619993","37.5214403"],["-119.6203654","37.5212412"],["-119.6205191","37.5211763"],["-119.6206668","37.5211434"],["-119.620814","37.5211329"],["-119.6209586","37.52114"],["-119.6211108","37.5211639"],["-119.62134","37.5212243"],["-119.6216888","37.5213308"],["-119.6219911","37.5214158"],["-119.6221264","37.5214421"],["-119.6222543","37.5214588"],["-119.6223682","37.5214635"],["-119.6224778","37.5214545"],["-119.6226012","37.5214371"],["-119.6227134","37.5214097"],["-119.6228383","37.5213661"],["-119.6229394","37.5213108"],["-119.6230318","37.5212448"],["-119.6231213","37.5211575"],["-119.6232902","37.5209348"],["-119.6234681","37.5206669"],["-119.6241957","37.5194174"],["-119.624334","37.5191923"],["-119.6244141","37.5191032"],["-119.6244891","37.5190349"],["-119.624578","37.5189782"],["-119.6247232","37.518918"],["-119.6248696","37.5188891"],["-119.6252091","37.5188626"],["-119.625386","37.5188366"],["-119.6255096","37.5188014"],["-119.625615","37.5187536"],["-119.6257174","37.5186799"],["-119.6258009","37.5186001"],["-119.6258789","37.5184852"],["-119.6259233","37.5183727"],["-119.6259348","37.5182365"],["-119.625923","37.5180424"],["-119.6258478","37.5178053"],["-119.625545","37.5171015"],["-119.6253544","37.5166281"],["-119.6253037","37.5164148"],["-119.6252911","37.5162526"],["-119.6253005","37.516144"],["-119.6253276","37.5160161"],["-119.625371","37.5159047"],["-119.6254391","37.5157966"],["-119.6255257","37.5156802"],["-119.6256515","37.5155556"],["-119.6257937","37.5154642"],["-119.6259389","37.5153827"],["-119.6260842","37.5153253"],["-119.6262275","37.5152836"],["-119.6264628","37.5152331"],["-119.6270113","37.5151834"],["-119.6273075","37.5151501"],["-119.6278788","37.515035"],["-119.6285202","37.5148984"],["-119.6295195","37.5146868"],["-119.6299784","37.5145852"],["-119.6303291","37.5145051"],["-119.6304649","37.5144648"],["-119.6306165","37.5143959"],["-119.6311603","37.5140708"],["-119.6314098","37.5139801"],["-119.6315947","37.5139527"],["-119.6317503","37.5139465"],["-119.6318623","37.5139512"],["-119.6320105","37.5139822"],["-119.6321957","37.514049"],["-119.6326956","37.5142943"],["-119.6329266","37.5143842"],["-119.6331693","37.514434"],["-119.6333194","37.5144465"],["-119.6334469","37.5144417"],["-119.6335903","37.5144095"],["-119.6337435","37.5143593"],["-119.6338585","37.5143132"],["-119.6339621","37.5142577"],["-119.6341185","37.5141309"],["-119.6341986","37.5140298"],["-119.634245","37.5139525"],["-119.6342876","37.5138633"],["-119.6343355","37.5137163"],["-119.6344406","37.5132971"],["-119.6345547","37.512876"],["-119.6347544","37.5121176"],["-119.6349531","37.5113415"],["-119.6351209","37.5106761"],["-119.635176","37.5103228"],["-119.6351622","37.5101326"],["-119.635126","37.5100103"],["-119.6349703","37.5096942"],["-119.6349146","37.5095574"],["-119.6348849","37.509462"],["-119.6348796","37.5093492"],["-119.6349035","37.5091933"],["-119.6349383","37.5090808"],["-119.6349991","37.5089748"],["-119.6351663","37.5087402"],["-119.6352909","37.5085361"],["-119.6353236","37.5084342"],["-119.6353425","37.5083187"],["-119.6353362","37.5082159"],["-119.635308","37.5080766"],["-119.6352356","37.5079276"],["-119.6351737","37.5078426"],["-119.6350232","37.5076878"],["-119.6348582","37.5075599"],["-119.6346369","37.5074301"],["-119.6344827","37.5073618"],["-119.6342438","37.507285"],["-119.633995","37.5072364"],["-119.6337687","37.5072142"],["-119.6334034","37.5071819"],["-119.6332488","37.5071411"],["-119.6330642","37.5070718"],["-119.6328704","37.5070123"],["-119.6327891","37.5069568"],["-119.6327729","37.5069213"],["-119.6327414","37.5068769"],["-119.6326903","37.5068437"],["-119.6326286","37.506828"],["-119.6325633","37.5068309"],["-119.6325009","37.5068499"],["-119.6324007","37.5068413"],["-119.6321926","37.5067505"],["-119.6319751","37.5066529"],["-119.6318641","37.5065872"],["-119.6317477","37.5065122"],["-119.6315728","37.5063671"],["-119.6313427","37.5062041"],["-119.6311436","37.5060704"],["-119.6309199","37.5059194"],["-119.630605","37.5057244"],["-119.6305328","37.505653"],["-119.6303983","37.5054711"],["-119.6303505","37.5053652"],["-119.6303094","37.5051956"],["-119.6303058","37.5050881"],["-119.6303226","37.504974"],["-119.6303562","37.5048851"],["-119.6304257","37.504763"],["-119.6306495","37.5044474"],["-119.6308484","37.5041944"],["-119.6311081","37.5038476"],["-119.6318039","37.5029784"],["-119.6321583","37.5025293"],["-119.6322194","37.5024213"],["-119.6322663","37.502283"],["-119.6322971","37.5021346"],["-119.6322958","37.502005"],["-119.6322644","37.5018489"],["-119.6321956","37.5016796"],["-119.6320484","37.5014419"],["-119.6319384","37.5013022"],["-119.6318018","37.5011584"],["-119.6316312","37.5009889"],["-119.6314637","37.5008316"],["-119.6313377","37.5007024"],["-119.6311893","37.5005274"],["-119.6311275","37.500417"],["-119.631079","37.5002572"],["-119.631103","37.4999482"],["-119.6313031","37.4987398"],["-119.6313198","37.498641"],["-119.6313788","37.4983373"],["-119.6314038","37.4981947"],["-119.6314538","37.4980565"],["-119.6315132","37.4979217"],["-119.6317128","37.4976522"],["-119.6322262","37.4970718"],["-119.6323939","37.4968634"],["-119.6325291","37.4966483"],["-119.6325965","37.4965061"],["-119.6326377","37.496351"],["-119.6326568","37.4959056"],["-119.6326783","37.4946953"],["-119.6326338","37.4942384"],["-119.63259","37.4938493"],["-119.6321385","37.4923882"],["-119.6318089","37.4913398"],["-119.6316894","37.4910059"],["-119.6316073","37.4908315"],["-119.6315411","37.4907513"],["-119.6313576","37.4905652"],["-119.6311823","37.4903809"],["-119.6310609","37.4902101"],["-119.6310113","37.4900835"],["-119.6309907","37.4899202"],["-119.6310066","37.4897886"],["-119.6310529","37.4896715"],["-119.6311088","37.4895836"],["-119.6312335","37.4894343"],["-119.6313093","37.4893695"],["-119.6315151","37.4892294"],["-119.6319249","37.4889907"],["-119.6325782","37.4886397"],["-119.6327267","37.4885465"],["-119.6328698","37.4884218"],["-119.6329749","37.4882919"],["-119.6330244","37.4882067"],["-119.6330913","37.4880441"],["-119.6331286","37.4878841"],["-119.6331345","37.4877381"],["-119.6331195","37.4875477"],["-119.6330575","37.4873647"],["-119.6329796","37.4872247"],["-119.632765","37.4869468"],["-119.6325821","37.4867311"],["-119.632181","37.4861948"],["-119.6319648","37.4858776"],["-119.6318647","37.4856892"],["-119.6318326","37.4855157"],["-119.6318304","37.4853457"],["-119.631853","37.4852042"],["-119.6319013","37.4850736"],["-119.6319788","37.4849067"],["-119.6320667","37.4847686"],["-119.6321687","37.4846654"],["-119.6325093","37.484386"],["-119.6326774","37.4842352"],["-119.6328612","37.4840396"],["-119.6330747","37.4837454"],["-119.6332825","37.483407"],["-119.6335551","37.4829153"],["-119.6336608","37.4827406"],["-119.633869","37.4824504"],["-119.6341163","37.4822065"],["-119.6346305","37.4817576"],["-119.635751","37.4808064"],["-119.6362804","37.4803136"],["-119.6365696","37.480056"],["-119.6376909","37.4790422"],["-119.6379989","37.4787409"],["-119.6381151","37.4785613"],["-119.6381794","37.478371"],["-119.6382114","37.4781777"],["-119.6382093","37.4780575"],["-119.6381739","37.4779005"],["-119.6380969","37.4777381"],["-119.6378996","37.4774311"],["-119.6377052","37.4771301"],["-119.6376094","37.476967"],["-119.6375539","37.4768131"],["-119.6375171","37.4766548"],["-119.6375087","37.4765547"],["-119.6375141","37.476424"],["-119.6375556","37.4762501"],["-119.6375641","37.476218"],["-119.6376094","37.4761338"],["-119.6376788","37.4760192"],["-119.6377951","37.475879"],["-119.6379152","37.4757737"],["-119.6383373","37.4754989"],["-119.6384346","37.4754244"],["-119.6385053","37.4753506"],["-119.6385927","37.4752505"],["-119.638667","37.4751296"],["-119.6387363","37.4749673"],["-119.638754","37.4748487"],["-119.638695","37.4745467"],["-119.6386036","37.4742779"],["-119.6385145","37.4740196"],["-119.6384232","37.4736763"],["-119.6384123","37.4734804"],["-119.6384317","37.47337"],["-119.6384779","37.4732252"],["-119.638537","37.4731161"],["-119.6386391","37.4730091"],["-119.6387044","37.4729521"],["-119.6388122","37.4728742"],["-119.6388889","37.4728346"],["-119.6389525","37.4728075"],["-119.6392046","37.4727575"],["-119.6394159","37.472721"],["-119.6395396","37.4726914"],["-119.6396163","37.4726685"],["-119.6396797","37.472647"],["-119.6399697","37.4725175"],["-119.6401397","37.4724368"],["-119.6402902","37.4723751"],["-119.6404332","37.4723125"],["-119.6405959","37.4722563"],["-119.6407745","37.4722024"],["-119.6409389","37.4721644"],["-119.6411258","37.4721488"],["-119.6412636","37.4721519"],["-119.6414253","37.4721614"],["-119.6415812","37.4721632"],["-119.6416868","37.4721491"],["-119.6417929","37.4721233"],["-119.641876","37.4720936"],["-119.6419714","37.4720433"],["-119.6420527","37.4719845"],["-119.6421146","37.4719294"],["-119.6421733","37.4718625"],["-119.6422195","37.4717681"],["-119.6422413","37.4716778"],["-119.6422509","37.4715802"],["-119.642241","37.4714347"],["-119.6422412","37.4713201"],["-119.6422647","37.4712083"],["-119.6422952","37.4711223"],["-119.6423291","37.4710528"],["-119.6423858","37.4709783"],["-119.6424795","37.4708704"],["-119.6425874","37.4707854"],["-119.6426893","37.4707167"],["-119.6428394","37.4706514"],["-119.6429563","37.470612"],["-119.6430535","37.4705929"],["-119.6431627","37.4705846"],["-119.6432959","37.4705915"],["-119.6435254","37.4706115"],["-119.6436888","37.4706212"],["-119.6437957","37.4706129"],["-119.6439012","37.4705956"],["-119.6439843","37.470572"],["-119.6440478","37.4705485"],["-119.6441309","37.4705019"],["-119.6442165","37.470441"],["-119.6442725","37.4703814"],["-119.6443174","37.4703113"],["-119.6443584","37.4702277"],["-119.6443814","37.4701098"],["-119.6443746","37.47001"],["-119.6443432","37.4699077"],["-119.6443027","37.4697877"],["-119.644252","37.4696567"],["-119.6442343","37.4695158"],["-119.6442434","37.4693755"],["-119.6442599","37.469297"],["-119.6442906","37.4692209"],["-119.644328","37.4691404"],["-119.644384","37.4690653"],["-119.64445","37.46899"],["-119.6445439","37.4688931"],["-119.644655","37.4687888"],["-119.6448652","37.4685823"],["-119.6449404","37.4684997"],["-119.645025","37.468389"],["-119.6450713","37.4682966"],["-119.6450979","37.4682076"],["-119.6451154","37.4681359"],["-119.6451246","37.4680347"],["-119.6451435","37.4679267"],["-119.6451888","37.4677914"],["-119.6452451","37.4676537"],["-119.6452978","37.4675528"],["-119.6453538","37.4674566"],["-119.6454157","37.4673553"],["-119.6454645","37.4672607"],["-119.6454951","37.4671669"],["-119.6455069","37.4670794"],["-119.6455159","37.4669849"],["-119.6455061","37.4668748"],["-119.6454257","37.4665147"],["-119.645386","37.4663722"],["-119.6453456","37.466249"],["-119.6452301","37.4660402"],["-119.6451399","37.4658907"],["-119.6450755","37.4657696"],["-119.6450166","37.4656357"],["-119.6449728","37.4654996"],["-119.64493","37.4653549"],["-119.6449035","37.4651742"],["-119.6449022","37.4650447"],["-119.6449141","37.4648858"],["-119.6449425","37.4647568"],["-119.6449923","37.4646404"],["-119.6450343","37.4645673"],["-119.6451014","37.4644748"],["-119.645208","37.4643573"],["-119.6452656","37.4642813"],["-119.6453214","37.4641923"],["-119.6453493","37.464102"],["-119.6453555","37.4640258"],["-119.6453536","37.4639501"],["-119.6453364","37.4638856"],["-119.6452875","37.4638004"],["-119.6451633","37.4636703"],["-119.6450302","37.4635659"],["-119.6449334","37.4635044"],["-119.644796","37.4634454"],["-119.6446652","37.4633953"],["-119.6445593","37.4633405"],["-119.6444607","37.4632688"],["-119.6443693","37.4631984"],["-119.6443018","37.4631261"],["-119.6442455","37.4630582"],["-119.6441735","37.4629458"],["-119.6441361","37.4628649"],["-119.6441084","37.462792"],["-119.6440827","37.4627082"],["-119.6440644","37.4624822"],["-119.6440541","37.4623441"],["-119.6440417","37.4621955"],["-119.6440086","37.4619026"],["-119.644","37.4617904"],["-119.6440059","37.4617173"],["-119.6440159","37.4616314"],["-119.644113","37.4613266"],["-119.6441266","37.4612758"],["-119.6441443","37.4611402"],["-119.6441376","37.4610266"],["-119.6441072","37.4607231"],["-119.6440771","37.4604239"],["-119.6440394","37.4600682"],["-119.6440186","37.4598502"],["-119.6440071","37.459577"],["-119.6440149","37.4595026"],["-119.6440268","37.4594458"],["-119.6440715","37.4593376"],["-119.6441233","37.4592134"],["-119.6441484","37.4591416"],["-119.6441616","37.4590645"],["-119.6441688","37.4589795"],["-119.6441526","37.4588981"],["-119.6440583","37.4585711"],["-119.6439932","37.4583817"],["-119.6439544","37.4582412"],["-119.6439241","37.4581205"],["-119.6439128","37.4580244"],["-119.6439117","37.4579431"],["-119.6439182","37.4578763"],["-119.6439393","37.4577723"],["-119.6439609","37.4577106"],["-119.6439958","37.4576471"],["-119.6440469","37.4575762"],["-119.6442407","37.457341"],["-119.644289","37.4572633"],["-119.644321","37.4571898"],["-119.6443394","37.4571231"],["-119.6443475","37.4570234"],["-119.6443532","37.4568328"],["-119.6443466","37.4563174"],["-119.6443529","37.4561508"],["-119.6443616","37.4560877"],["-119.6443807","37.4560104"],["-119.644414","37.4559187"],["-119.6444477","37.4558346"],["-119.6444996","37.4557544"],["-119.6445618","37.4556766"],["-119.6446157","37.4556079"],["-119.6446631","37.4555417"],["-119.6447011","37.4554771"],["-119.644723","37.4554042"],["-119.6447403","37.4553294"],["-119.6447414","37.4552735"],["-119.6447371","37.4552141"],["-119.6447135","37.4551321"],["-119.6446858","37.4550745"],["-119.6446576","37.4550287"],["-119.6445754","37.4549348"],["-119.6443831","37.454715"],["-119.6443355","37.454648"],["-119.6443086","37.4545914"],["-119.6442845","37.4545154"],["-119.6442617","37.4544377"],["-119.644252","37.4543135"],["-119.6442585","37.4542279"],["-119.6442737","37.4541581"],["-119.6442929","37.4541017"],["-119.6443107","37.4540566"],["-119.6443438","37.454004"],["-119.6444079","37.4539191"],["-119.6444813","37.4538331"],["-119.6445619","37.4537517"],["-119.6446449","37.4536644"],["-119.6447332","37.4535727"],["-119.6447965","37.4534925"],["-119.6448528","37.4534088"],["-119.6449102","37.4533098"],["-119.6449509","37.4532223"],["-119.6449902","37.4531037"],["-119.645005","37.4529936"],["-119.6449993","37.4528752"],["-119.6449754","37.4527277"],["-119.6449366","37.452592"],["-119.64488","37.4524545"],["-119.6447808","37.4523123"],["-119.6446611","37.4521701"],["-119.6445603","37.4520601"],["-119.6444321","37.45193"],["-119.6443112","37.4517942"],["-119.6442505","37.4516945"],["-119.6441978","37.4515875"],["-119.6441649","37.4514959"],["-119.6441454","37.4514188"],["-119.6441337","37.451351"],["-119.6441329","37.4512826"],["-119.644143","37.4511799"],["-119.6441592","37.4510943"],["-119.6441806","37.4510114"],["-119.6442115","37.4509403"],["-119.644253","37.4508586"],["-119.6443091","37.4507742"],["-119.6443923","37.4506724"],["-119.6444837","37.4505845"],["-119.6446598","37.4504618"],["-119.6448073","37.4503695"],["-119.6449424","37.4502843"],["-119.645009","37.4502191"],["-119.6450739","37.4501518"],["-119.6451313","37.4500708"],["-119.6452609","37.4497982"],["-119.6453094","37.4497247"],["-119.6453577","37.4496701"],["-119.6454596","37.4495633"],["-119.645556","37.4495053"],["-119.6456488","37.4494527"],["-119.6457976","37.449377"],["-119.6458993","37.4493194"],["-119.6459615","37.4492615"],["-119.6460205","37.4491967"],["-119.6460625","37.449135"],["-119.6461008","37.4490665"],["-119.6461467","37.4489832"],["-119.6462026","37.4488861"],["-119.6462859","37.4487904"],["-119.6463674","37.4487261"],["-119.6464922","37.4486349"],["-119.6466019","37.4485761"],["-119.6467015","37.4485306"],["-119.6468344","37.4484822"],["-119.6469706","37.4484491"],["-119.6471442","37.4484376"],["-119.6472879","37.4484415"],["-119.6475166","37.4484622"],["-119.6477326","37.4484931"],["-119.6481471","37.4485539"],["-119.6482724","37.4485802"],["-119.648389","37.448623"],["-119.6485193","37.4486745"],["-119.6486466","37.4487436"],["-119.648799","37.4488266"],["-119.6490184","37.4489203"],["-119.6493403","37.4489883"],["-119.6498391","37.4490427"],["-119.650186","37.449074"],["-119.6503639","37.4490809"],["-119.6504811","37.4490642"],["-119.6505885","37.4490333"],["-119.6507103","37.4489822"],["-119.6507976","37.4489326"],["-119.6508678","37.4488682"],["-119.6509318","37.4488004"],["-119.6509772","37.448717"],["-119.6510023","37.4486174"],["-119.6510145","37.448502"],["-119.6509845","37.448304"],["-119.6508498","37.4476617"],["-119.6508366","37.4465782"],["-119.65088","37.4463226"],["-119.6510079","37.4461119"],["-119.6511367","37.4459976"],["-119.6513943","37.4458318"],["-119.6517827","37.4456062"],["-119.6522345","37.4453457"],["-119.6525834","37.4451586"],["-119.6528287","37.4450421"],["-119.6530674","37.4449133"],["-119.6531886","37.4448287"],["-119.6532731","37.4447506"],["-119.6533351","37.4446709"],["-119.653383","37.4445663"],["-119.6534361","37.4443925"],["-119.6534685","37.4442039"],["-119.6534929","37.4439969"],["-119.6534926","37.4438999"],["-119.653465","37.4438037"],["-119.6534218","37.4437025"],["-119.6533652","37.4436108"],["-119.6533021","37.4435469"],["-119.653214","37.4434883"],["-119.653133","37.4434539"],["-119.6530558","37.4434266"],["-119.6528829","37.4433965"],["-119.6525433","37.4433677"],["-119.6522662","37.4433446"],["-119.6521271","37.4433204"],["-119.652032","37.4432869"],["-119.6519144","37.4432369"],["-119.6517707","37.4431365"],["-119.6516869","37.4430696"],["-119.6516257","37.4430075"],["-119.651467","37.4427942"],["-119.6513576","37.4426398"],["-119.6512282","37.4424268"],["-119.6511271","37.4423012"],["-119.6510153","37.4421839"],["-119.6508412","37.4420386"],["-119.6506555","37.4419151"],["-119.650639","37.4419042"],["-119.6505092","37.4418275"],["-119.6492054","37.4410025"],["-119.6471563","37.4396994"],["-119.6466183","37.4393626"],["-119.6463768","37.4392309"],["-119.6461145","37.4391009"],["-119.6457613","37.4389671"],["-119.6455558","37.4389058"],["-119.645327","37.4388555"],["-119.6450961","37.438813"],["-119.6448774","37.4387823"],["-119.6445562","37.4387561"],["-119.6441504","37.4387276"],["-119.64381","37.4387031"],["-119.6437071","37.4386875"],["-119.643627","37.4386671"],["-119.6435469","37.4386415"],["-119.643461","37.4386047"],["-119.6433645","37.4385528"],["-119.6432556","37.4384823"],["-119.6431378","37.4383686"],["-119.6430546","37.4382548"],["-119.6430095","37.4381805"],["-119.6429658","37.4380655"],["-119.6429496","37.4379741"],["-119.6429414","37.4378223"],["-119.6429576","37.4377214"],["-119.6429962","37.4376256"],["-119.6432091","37.4372708"],["-119.643584","37.4366541"],["-119.6436497","37.4365514"],["-119.6437101","37.4364206"],["-119.6437499","37.4362893"],["-119.6437626","37.4361534"],["-119.643732","37.4360061"],["-119.6436666","37.4358646"],["-119.6435876","37.4357595"],["-119.643524","37.4356946"],["-119.6434288","37.4356297"],["-119.6432847","37.4355469"],["-119.6431721","37.4354977"],["-119.643044","37.4354618"],["-119.6428468","37.4354437"],["-119.6427358","37.4354457"],["-119.6426386","37.4354574"],["-119.6425083","37.4354872"],["-119.642377","37.4355284"],["-119.6422682","37.4355818"],["-119.6419755","37.4357551"],["-119.6416717","37.4359398"],["-119.6413899","37.4361164"],["-119.6412334","37.436223"],["-119.6410894","37.4363408"],["-119.6409265","37.4365037"],["-119.6408077","37.4366389"],["-119.6407146","37.4367595"],["-119.6405111","37.4369859"],["-119.6403569","37.4371185"],["-119.6401969","37.4372136"],["-119.64","37.4372725"],["-119.639869","37.4372952"],["-119.6397581","37.4373009"],["-119.6395794","37.4372954"],["-119.6394716","37.4372798"],["-119.6393851","37.4372614"],["-119.6392675","37.4372236"],["-119.6391741","37.4371839"],["-119.6390752","37.4371238"],["-119.6389993","37.4370716"],["-119.6388577","37.4369364"],["-119.6388014","37.4368642"],["-119.6387521","37.436775"],["-119.6387087","37.4366629"],["-119.6386901","37.4365512"],["-119.6386883","37.4364237"],["-119.6387277","37.4362673"],["-119.6387817","37.4361287"],["-119.6388697","37.4359306"],["-119.6389119","37.4358196"],["-119.6389416","37.4356606"],["-119.6389455","37.4354942"],["-119.6389193","37.4353379"],["-119.6388436","37.4350686"],["-119.6387788","37.4348675"],["-119.6387481","37.4346725"],["-119.6387442","37.4345793"],["-119.6387685","37.4344286"],["-119.6387967","37.4343086"],["-119.6388682","37.434148"],["-119.6391065","37.4336599"],["-119.6392629","37.433297"],["-119.6393102","37.4331168"],["-119.6393334","37.4329515"],["-119.6393286","37.4325005"],["-119.639312","37.4320395"],["-119.6393042","37.431723"],["-119.6392943","37.4311787"],["-119.6392727","37.4304617"],["-119.6392506","37.4298924"],["-119.6392403","37.4296328"],["-119.6392371","37.4295412"],["-119.6392467","37.4293828"],["-119.6392662","37.4292717"],["-119.6393419","37.4290565"],["-119.6393983","37.428941"],["-119.6394691","37.4288167"],["-119.6395655","37.4286642"],["-119.6396261","37.4285837"],["-119.6396927","37.4284702"],["-119.6397363","37.4283671"],["-119.6397699","37.4282505"],["-119.6397834","37.4281744"],["-119.6397874","37.4280635"],["-119.6397834","37.4279789"],["-119.6397667","37.4279042"],["-119.6396925","37.4277039"],["-119.639602","37.4275739"],["-119.6395079","37.4274742"],["-119.639439","37.4274116"],["-119.6393633","37.4273541"],["-119.6392728","37.427294"],["-119.6391147","37.4272226"],["-119.6389977","37.4271795"],["-119.63886","37.4271491"],["-119.6384699","37.4270983"],["-119.6379877","37.4270477"],["-119.6376873","37.4270092"],["-119.6375164","37.4269727"],["-119.6373332","37.4269069"],["-119.6372046","37.4268554"],["-119.6370735","37.4267899"],["-119.6369815","37.4267349"],["-119.6368864","37.4266674"],["-119.6367361","37.4265395"],["-119.6366054","37.4263861"],["-119.6365325","37.4262817"],["-119.6364768","37.4261798"],["-119.6364201","37.4260647"],["-119.6363902","37.4259693"],["-119.6363612","37.4258451"],["-119.6363529","37.4257442"],["-119.6363535","37.425595"],["-119.6363797","37.4254408"],["-119.63641","37.4253399"],["-119.6364708","37.4252005"],["-119.6365226","37.4250959"],["-119.6366156","37.4249636"],["-119.6367382","37.4248229"],["-119.6370939","37.4244553"],["-119.6372269","37.4242826"],["-119.6372899","37.424154"],["-119.6373284","37.4240416"],["-119.6373374","37.4239693"],["-119.6373361","37.4238867"],["-119.637295","37.4237208"],["-119.6372543","37.4236148"],["-119.6371885","37.4235148"],["-119.6371101","37.4234087"],["-119.6369736","37.4232724"],["-119.6364177","37.4227575"],["-119.6355892","37.4219901"],["-119.6352968","37.4217253"],["-119.6351224","37.4215867"],["-119.6350032","37.421508"],["-119.6349046","37.4214571"],["-119.6347851","37.4214046"],["-119.6346202","37.4213416"],["-119.6345029","37.4213069"],["-119.6343816","37.4212857"],["-119.6341937","37.4212765"],["-119.6340417","37.421284"],["-119.6338998","37.4213039"],["-119.6337725","37.4213311"],["-119.6336122","37.4213702"],["-119.6334511","37.4214121"],["-119.6332975","37.4214482"],["-119.6331317","37.4214713"],["-119.6329974","37.4214769"],["-119.6328775","37.4214756"],["-119.6327328","37.4214594"],["-119.6326326","37.4214424"],["-119.6325177","37.421407"],["-119.6324002","37.4213566"],["-119.6322903","37.4212958"],["-119.6321751","37.4212241"],["-119.6320809","37.4211483"],["-119.6319791","37.4210538"],["-119.6318225","37.4209219"],["-119.6316593","37.4208065"],["-119.6314867","37.4207258"],["-119.6313887","37.420693"],["-119.6312869","37.4206722"],["-119.6311612","37.4206537"],["-119.6310585","37.4206448"],["-119.6309167","37.4206451"],["-119.6306743","37.4206529"],["-119.6305136","37.4206503"],["-119.6303567","37.420632"],["-119.630207","37.4205979"],["-119.6300642","37.4205404"],["-119.6299897","37.420502"],["-119.6299131","37.4204524"],["-119.6298223","37.420378"],["-119.6297705","37.4203242"],["-119.6297155","37.4202592"],["-119.6296454","37.4201496"],["-119.6294904","37.4198472"],["-119.6288426","37.4185269"],["-119.6287191","37.4182831"],["-119.6285777","37.4179994"],["-119.6284146","37.4177162"],["-119.6283385","37.4176286"],["-119.628273","37.4175712"],["-119.6282109","37.4175222"],["-119.6281409","37.417476"],["-119.6280674","37.4174371"],["-119.6278943","37.4173596"],["-119.6276653","37.4172622"],["-119.6274849","37.4171884"],["-119.6273117","37.4171161"],["-119.6272169","37.4170606"],["-119.6270903","37.4169734"],["-119.6269846","37.4168945"],["-119.6268871","37.4167935"],["-119.6268025","37.4167001"],["-119.6267235","37.4166015"],["-119.6266209","37.4164082"],["-119.6265772","37.4162968"],["-119.6265506","37.4161929"],["-119.6265301","37.4160842"],["-119.6265259","37.4159746"],["-119.6265308","37.4158715"],["-119.6265427","37.4157673"],["-119.6265813","37.4156102"],["-119.6266452","37.4154594"],["-119.6266971","37.4153645"],["-119.6268082","37.4152029"],["-119.6270219","37.4149184"],["-119.6272499","37.414626"],["-119.6275143","37.4142867"],["-119.6276067","37.41414"],["-119.6276534","37.4140465"],["-119.6276888","37.413962"],["-119.6277163","37.4138754"],["-119.6277533","37.4136686"],["-119.6277947","37.4133691"],["-119.62783","37.4131217"],["-119.6278574","37.4128936"],["-119.6279018","37.412593"],["-119.6279587","37.4123712"],["-119.6280231","37.4122281"],["-119.6280867","37.4121279"],["-119.6281608","37.4120255"],["-119.6282577","37.4119192"],["-119.6283733","37.4117997"],["-119.6284317","37.4117244"],["-119.6284764","37.4116503"],["-119.6285242","37.411543"],["-119.6285716","37.4113076"],["-119.6286162","37.4110687"],["-119.6286504","37.4109495"],["-119.6286955","37.4108379"],["-119.6288385","37.4105779"],["-119.6296947","37.4092424"],["-119.6298726","37.4089614"],["-119.6299142","37.408874"],["-119.6299398","37.408796"],["-119.6299582","37.4087054"],["-119.6299701","37.4086098"],["-119.6299642","37.4084422"],["-119.6298906","37.40799"],["-119.6295757","37.4061836"],["-119.6294249","37.4053041"],["-119.629392","37.4050116"],["-119.6293881","37.4048739"],["-119.629397","37.404743"],["-119.6294199","37.4045877"],["-119.6294592","37.4043701"],["-119.629516","37.4041842"],["-119.6295829","37.4040119"],["-119.6297031","37.4037784"],["-119.6308326","37.4020089"],["-119.6310272","37.4016808"],["-119.6310835","37.4015032"],["-119.63109","37.4013609"],["-119.6310758","37.4012337"],["-119.6310209","37.4009987"],["-119.6310004","37.4008438"],["-119.6310042","37.4006881"],["-119.6310655","37.4004361"],["-119.6312707","37.4000834"],["-119.6320706","37.3989643"],["-119.6326879","37.3981038"],["-119.632821","37.3978377"],["-119.6328738","37.3976142"],["-119.6328105","37.397343"],["-119.6324867","37.3967349"],["-119.6324032","37.3965471"],["-119.6323825","37.3964048"],["-119.6324079","37.3961439"],["-119.6325051","37.3958874"],["-119.6326585","37.3956677"],["-119.632833","37.3955309"],["-119.633026","37.3954081"],["-119.6333227","37.3952411"],["-119.6335543","37.3950473"],["-119.6337622","37.3947843"],["-119.6339168","37.3942975"],["-119.6341628","37.3933924"],["-119.6344065","37.3924512"],["-119.6343926","37.3921159"],["-119.6342947","37.3918"],["-119.6342441","37.3915712"],["-119.6342509","37.3913591"],["-119.6342964","37.3912004"],["-119.6343552","37.3910786"],["-119.6344319","37.3909612"],["-119.6345337","37.3908338"],["-119.6347925","37.3906095"],["-119.6349843","37.3903873"],["-119.6350571","37.3902051"],["-119.6350762","37.3900082"],["-119.6350037","37.3895753"],["-119.6348556","37.3888505"],["-119.6347337","37.3886152"],["-119.6345758","37.3884026"],["-119.6343183","37.3881877"],["-119.634044","37.3880292"],["-119.6337413","37.3879067"],["-119.6330478","37.3876791"],["-119.6326136","37.3875206"],["-119.6323479","37.3873821"],["-119.6321608","37.3872513"],["-119.6319494","37.3870689"],["-119.6317416","37.3868384"],["-119.6314526","37.3863069"],["-119.630726","37.3847333"],["-119.6305806","37.3844013"],["-119.6305059","37.38417"],["-119.6304601","37.3839129"],["-119.6304468","37.3835312"],["-119.6304313","37.3832229"],["-119.6303903","37.3830287"],["-119.6302869","37.3828208"],["-119.6301555","37.382627"],["-119.6300125","37.3824732"],["-119.6297067","37.3822419"],["-119.6283959","37.3813898"],["-119.6274018","37.380744"],["-119.6271267","37.380552"],["-119.62694","37.3803997"],["-119.6267901","37.3802179"],["-119.6266735","37.3800543"],["-119.6265772","37.3798771"],["-119.6265052","37.3797049"],["-119.6264393","37.3794424"],["-119.6262981","37.3786905"],["-119.6262205","37.3780202"],["-119.6262139","37.3776694"],["-119.6262334","37.3773421"],["-119.6262679","37.3771029"],["-119.6263047","37.3768621"],["-119.6263644","37.3766096"],["-119.626439","37.376356"],["-119.6265263","37.3760939"],["-119.6266364","37.3758273"],["-119.626773","37.3755407"],["-119.6270093","37.3751273"],["-119.6272488","37.3747667"],["-119.6274419","37.3745136"],["-119.6278053","37.3741111"],["-119.6291665","37.372718"],["-119.629689","37.372198"],["-119.6298682","37.3719703"],["-119.6300107","37.3716893"],["-119.6300412","37.3715045"],["-119.6300451","37.3712959"],["-119.6299624","37.370939"],["-119.6294237","37.3695428"],["-119.6293129","37.3691506"],["-119.6293104","37.3689501"],["-119.6293297","37.3687735"],["-119.6293601","37.3686133"],["-119.6294331","37.368397"],["-119.6295748","37.3681615"],["-119.6298339","37.3677954"],["-119.6301038","37.36744"],["-119.6304155","37.3670344"],["-119.6305593","37.3668174"],["-119.6306642","37.3666165"],["-119.6307132","37.3663991"],["-119.6307208","37.366171"],["-119.6306742","37.3658531"],["-119.6306308","37.3655516"],["-119.6306392","37.3653758"],["-119.6306788","37.3652048"],["-119.6307745","37.3650092"],["-119.630859","37.3648944"],["-119.6309554","37.3647857"],["-119.6310859","37.3646745"],["-119.6312087","37.3645994"],["-119.6314152","37.3645121"],["-119.6315425","37.3644698"],["-119.6316671","37.364438"],["-119.6317759","37.3644197"],["-119.6319787","37.36441"],["-119.6324423","37.3643957"],["-119.6326926","37.3643392"],["-119.6330459","37.3641913"],["-119.6334659","37.3640125"],["-119.6337268","37.3639178"],["-119.6338643","37.3638824"],["-119.6340005","37.363854"],["-119.6342712","37.3638397"],["-119.6345666","37.3638578"],["-119.6349228","37.3638721"],["-119.6352286","37.3638318"],["-119.6355123","37.3637438"],["-119.636097","37.3634992"],["-119.6364669","37.3633713"],["-119.6368097","37.3632967"],["-119.6371465","37.3632566"],["-119.63733","37.3632379"],["-119.6378639","37.3632065"],["-119.6384443","37.3631714"],["-119.6387259","37.3631525"],["-119.6389649","37.3631302"],["-119.6390691","37.3631074"],["-119.639307","37.3630147"],["-119.6396063","37.362889"],["-119.6399801","37.3626905"],["-119.6402932","37.3625759"],["-119.6406379","37.3625171"],["-119.640942","37.3625174"],["-119.6414299","37.3625845"],["-119.641937","37.3626539"],["-119.6421576","37.3626431"],["-119.6423717","37.3626"],["-119.6426113","37.3625013"],["-119.6427804","37.3623911"],["-119.6429093","37.3622845"],["-119.6430177","37.3621504"],["-119.6432348","37.3617291"],["-119.6433919","37.3615592"],["-119.6437221","37.3613302"],["-119.6438957","37.3612568"],["-119.644125","37.3611873"],["-119.6445198","37.361079"],["-119.6447605","37.3609446"],["-119.6449109","37.3607968"],["-119.6450125","37.3606492"],["-119.6450584","37.3605339"],["-119.6450849","37.360382"],["-119.6450859","37.3602698"],["-119.6450567","37.3601409"],["-119.6448954","37.3596702"],["-119.6440159","37.3574241"],["-119.6436819","37.3565003"],["-119.6436206","37.3562691"],["-119.6435758","37.3560038"],["-119.6435685","37.3558518"],["-119.6435805","37.3556534"],["-119.6436253","37.3554002"],["-119.6437028","37.3551486"],["-119.6439313","37.3546009"],["-119.6439911","37.3543753"],["-119.6440152","37.3542388"],["-119.6440213","37.3541021"],["-119.6439956","37.353952"],["-119.643921","37.3537522"],["-119.6438496","37.3535812"],["-119.6437817","37.3534603"],["-119.643674","37.3533093"],["-119.6435507","37.3531422"],["-119.6434408","37.3529802"],["-119.6433474","37.3527913"],["-119.6432352","37.3524574"],["-119.6429423","37.3512804"],["-119.6423962","37.3490539"],["-119.6423051","37.3485391"],["-119.6422634","37.3479502"],["-119.6422139","37.3471816"],["-119.6421853","37.3467432"],["-119.6421278","37.3455525"],["-119.6421041","37.3449478"],["-119.6420912","37.3442251"],["-119.6421361","37.3437698"],["-119.6422374","37.3433594"],["-119.6424437","37.3427752"],["-119.6427366","37.342139"],["-119.6435637","37.3403631"],["-119.6441537","37.3391294"],["-119.6445225","37.3383919"],["-119.644652","37.3381396"],["-119.6447815","37.3378848"],["-119.6450237","37.3373673"],["-119.6451195","37.3371643"],["-119.6451777","37.3370468"],["-119.6452141","37.3369773"],["-119.646166","37.334895"],["-119.6462675","37.3347529"],["-119.6465082","37.3345352"],["-119.6466103","37.3344485"],["-119.6467322","37.3343837"],["-119.6469584","37.334281"],["-119.6487798","37.3337079"],["-119.6498003","37.3333477"],["-119.6516631","37.3327113"],["-119.6543543","37.3318013"],["-119.654543","37.331737"],["-119.654709","37.3316957"],["-119.6549308","37.3315802"],["-119.6556069","37.3312025"],["-119.6557529","37.3310745"],["-119.6560951","37.3307337"],["-119.6563599","37.3304625"],["-119.6564563","37.3302626"],["-119.6566531","37.3300368"],["-119.6574942","37.3291634"],["-119.6590014","37.3275963"],["-119.6599728","37.3265494"],["-119.660819","37.3253292"],["-119.6616338","37.3240439"],["-119.6625356","37.3225742"],["-119.6637075","37.320641"],["-119.6638242","37.3201872"],["-119.6637849","37.3198313"],["-119.6636632","37.3195104"],["-119.6634608","37.319229"],["-119.6631975","37.3190031"],["-119.662873","37.3188263"],["-119.662594","37.3187207"],["-119.66213","37.3186442"],["-119.661594","37.3185576"],["-119.660962","37.3184309"],["-119.6603896","37.31821"],["-119.6600512","37.3179876"],["-119.6597556","37.3177319"],["-119.6594772","37.3173806"],["-119.6591895","37.3170032"],["-119.6588685","37.3166404"],["-119.6585017","37.3163124"],["-119.6580247","37.3159909"],["-119.6575202","37.3156692"],["-119.6571982","37.3154462"],["-119.6569071","37.3151343"],["-119.6564848","37.3146426"],["-119.6558584","37.3138783"],["-119.6556608","37.3135589"],["-119.655598","37.313351"],["-119.655557","37.313153"],["-119.6555352","37.3128713"],["-119.6555444","37.3127073"],["-119.6555724","37.3125372"],["-119.6556142","37.3123582"],["-119.6559246","37.3116711"],["-119.6562014","37.3110634"],["-119.6562928","37.3107141"],["-119.6563127","37.3103734"],["-119.6562444","37.3100019"],["-119.6561204","37.3096907"],["-119.6559243","37.3093719"],["-119.6544842","37.3076705"],["-119.6542237","37.3073926"],["-119.6539688","37.3071442"],["-119.6535516","37.3068179"],["-119.6530498","37.3064351"],["-119.6515417","37.3052333"],["-119.6510953","37.3048312"],["-119.6507811","37.3044958"],["-119.6505208","37.3041567"],["-119.6502679","37.3037417"],["-119.6500237","37.3032185"],["-119.6497576","37.3026417"],["-119.649587","37.3023049"],["-119.6493539","37.3018292"],["-119.6490336","37.3011252"],["-119.6489058","37.3007316"],["-119.6488562","37.3006169"],["-119.6487995","37.300312"],["-119.6487763","37.3000177"],["-119.6487896","37.2990841"],["-119.6487956","37.2981774"],["-119.6486929","37.2960248"],["-119.6485884","37.2952182"],["-119.6482617","37.293953"],["-119.6480332","37.2930329"],["-119.6480058","37.2923675"],["-119.6480553","37.291717"],["-119.6482875","37.2909457"],["-119.6485757","37.2903614"],["-119.6489133","37.2898458"],["-119.6493101","37.2894326"],["-119.6499697","37.2889015"],["-119.6505956","37.2885207"],["-119.6508513","37.2883797"],["-119.6511406","37.288215"],["-119.6525449","37.2874422"],["-119.6536397","37.286881"],["-119.6542345","37.2866022"],["-119.6565325","37.2852196"],["-119.6573217","37.2846925"],["-119.6579708","37.2842055"],["-119.6585621","37.2837056"],["-119.6592421","37.2830856"],["-119.6595831","37.2827535"],["-119.6598852","37.2824549"],["-119.6601769","37.2822144"],["-119.6604946","37.2820068"],["-119.6608063","37.2818436"],["-119.6610847","37.2817343"],["-119.6613831","37.2816362"],["-119.6616177","37.2815762"],["-119.6618955","37.2815285"],["-119.6621742","37.2814938"],["-119.6625384","37.2814986"],["-119.6628424","37.2815241"],["-119.6632635","37.2815981"],["-119.6639907","37.281756"],["-119.6651202","37.2820341"],["-119.6655642","37.2821292"],["-119.6657884","37.2821562"],["-119.6660089","37.2821691"],["-119.6662583","37.2821604"],["-119.6665312","37.2821281"],["-119.666777","37.2820734"],["-119.667016","37.282004"],["-119.6672781","37.2819019"],["-119.6676494","37.2817139"],["-119.6678323","37.281593"],["-119.6680222","37.2814393"],["-119.6681391","37.2813301"],["-119.668243","37.2812076"],["-119.6684584","37.2808938"],["-119.6685769","37.2806162"],["-119.6686511","37.2803478"],["-119.6686761","37.2800868"],["-119.6686691","37.2798797"],["-119.6686482","37.2797219"],["-119.6685941","37.2795115"],["-119.6684241","37.2791429"],["-119.6677944","37.2778603"],["-119.6675792","37.2773082"],["-119.6673946","37.2767706"],["-119.6672248","37.2762099"],["-119.6668271","37.2747973"],["-119.666798","37.2745696"],["-119.6668109","37.2743106"],["-119.6668407","37.2740252"],["-119.6668887","37.2738219"],["-119.6669503","37.2736233"],["-119.6670433","37.2734028"],["-119.6673099","37.2729701"],["-119.6674633","37.2728181"],["-119.6676059","37.2727017"],["-119.6678533","37.2724685"],["-119.6698857","37.2711316"],["-119.6702404","37.2709234"],["-119.67061","37.2707408"],["-119.6718678","37.2701923"],["-119.672322","37.2699805"],["-119.6726938","37.2697542"],["-119.6732516","37.2692961"],["-119.6737989","37.2686971"],["-119.6743615","37.2679192"],["-119.6756325","37.2660248"],["-119.6759175","37.2656636"],["-119.676304","37.2652785"],["-119.6766322","37.2650229"],["-119.6769573","37.264824"],["-119.6775477","37.2645934"],["-119.6780201","37.2644476"],["-119.6786421","37.2643569"],["-119.6843955","37.2638353"],["-119.6858527","37.2638204"],["-119.6878137","37.263918"],["-119.6903942","37.2640409"],["-119.691","37.2640252"],["-119.6917582","37.2639644"],["-119.6923449","37.2638718"],["-119.6928622","37.2637512"],["-119.693456","37.2635743"],["-119.693783","37.263462"],["-119.6950241","37.2630601"],["-119.6960021","37.2628024"],["-119.6969954","37.2626414"],["-119.6984709","37.2624653"],["-119.6986642","37.2624274"],["-119.6989686","37.2623427"],["-119.6992828","37.2622454"],["-119.6994932","37.2621689"],["-119.7003459","37.2618487"],["-119.7006582","37.2617062"],["-119.7009043","37.2615622"],["-119.7011074","37.2614268"],["-119.7014237","37.2611973"],["-119.7017347","37.2609268"],["-119.7019001","37.2607511"],["-119.7020297","37.2605871"],["-119.7021191","37.2604765"],["-119.7023488","37.2601141"],["-119.7024204","37.2599943"],["-119.7025321","37.2598002"],["-119.7026161","37.2596248"],["-119.7026957","37.2593636"],["-119.7027621","37.2591011"],["-119.702843","37.2587547"],["-119.7029437","37.2584242"],["-119.7030852","37.2580677"],["-119.703328","37.2576277"],["-119.7040076","37.2565792"],["-119.7042786","37.2560186"],["-119.7044825","37.255315"],["-119.7045574","37.254758"],["-119.7045299","37.2543001"],["-119.7044231","37.2535746"],["-119.7043941","37.2530747"],["-119.704404","37.2526998"],["-119.7044823","37.2523226"],["-119.7046923","37.2518997"],["-119.7050552","37.2509914"],["-119.7053175","37.2502968"],["-119.7054238","37.2496935"],["-119.7054167","37.2490821"],["-119.7053002","37.2485129"],["-119.7051266","37.2472454"],["-119.7051023","37.2464913"],["-119.705191","37.245904"],["-119.7053278","37.2455684"],["-119.7054677","37.2452532"],["-119.7055694","37.2450511"],["-119.705663","37.2448431"],["-119.7059939","37.2442536"],["-119.7062959","37.243805"],["-119.7067634","37.2431051"],["-119.7070988","37.2425915"],["-119.707317","37.2421271"],["-119.7073967","37.2419198"],["-119.7074613","37.2417151"],["-119.7075327","37.2412655"],["-119.707551","37.2408911"],["-119.7074743","37.2405001"],["-119.7073322","37.2394496"],["-119.7068905","37.2374632"],["-119.706776","37.2369252"],["-119.7065798","37.2359973"],["-119.7063973","37.2350947"],["-119.7063782","37.2343891"],["-119.7064567","37.2338009"],["-119.7065314","37.2334456"],["-119.7066182","37.2331796"],["-119.706733","37.2329273"],["-119.7073273","37.2316945"],["-119.7075499","37.2309748"],["-119.7076499","37.2301051"],["-119.7076351","37.2218599"],["-119.7078104","37.2194326"],["-119.7078764","37.2188015"],["-119.7080261","37.2167753"],["-119.7081503","37.2154609"],["-119.7082243","37.2150642"],["-119.7082732","37.2147818"],["-119.7082971","37.214498"],["-119.7084179","37.2140964"],["-119.7085666","37.2135983"],["-119.7087965","37.2130058"],["-119.7088951","37.2127903"],["-119.7093017","37.2120274"],["-119.7097289","37.2113459"],["-119.710028","37.2109395"],["-119.7102781","37.2106277"],["-119.7106459","37.2102196"],["-119.7111038","37.2097385"],["-119.7119411","37.2088916"],["-119.7122056","37.2086111"],["-119.7127117","37.2081393"],["-119.714176","37.2067156"],["-119.7145843","37.2063669"],["-119.7149781","37.2060768"],["-119.7153654","37.2058435"],["-119.7158101","37.2055988"],["-119.7162519","37.205384"],["-119.7168205","37.2051676"],["-119.7178714","37.2048298"],["-119.7192462","37.2044199"],["-119.7203008","37.2040965"],["-119.720866","37.2038305"],["-119.7212368","37.2035945"],["-119.7215371","37.2033716"],["-119.7218193","37.2031382"],["-119.7221653","37.2027853"],["-119.7224499","37.2023895"],["-119.7226701","37.2020294"],["-119.7227756","37.2017756"],["-119.7228767","37.2015158"],["-119.7229704","37.2011438"],["-119.7230001","37.2008064"],["-119.7230129","37.2005525"],["-119.7229789","37.2000932"],["-119.7228683","37.1996434"],["-119.7223134","37.198262"],["-119.7220672","37.1976541"],["-119.7217912","37.1969751"],["-119.7215715","37.1964143"],["-119.7214512","37.1960703"],["-119.7213922","37.1958349"],["-119.7213347","37.1955636"],["-119.721295","37.195233"],["-119.7212893","37.1949688"],["-119.7212967","37.1947032"],["-119.7213639","37.1943244"],["-119.7214892","37.193979"],["-119.7215916","37.1937452"],["-119.7216821","37.1935403"],["-119.7218681","37.1932295"],["-119.7220211","37.1929997"],["-119.7222496","37.192715"],["-119.7225735","37.1923913"],["-119.7229236","37.1920862"],["-119.7265633","37.1891103"],["-119.7268095","37.1888834"],["-119.7271198","37.1885382"],["-119.7273777","37.1882147"],["-119.7275355","37.1879836"],["-119.727667","37.1877748"],["-119.7278532","37.1874233"],["-119.7280079","37.1870941"],["-119.7280834","37.1869095"],["-119.7282025","37.1865219"],["-119.7283253","37.1858303"],["-119.7284069","37.1851211"],["-119.7286612","37.183115"],["-119.7287971","37.1820867"],["-119.7288359","37.1817585"],["-119.7288896","37.1811903"],["-119.7289157","37.1806837"],["-119.7289363","37.180196"],["-119.7289488","37.1795727"],["-119.7289127","37.1782155"],["-119.7287838","37.1767379"],["-119.7277571","37.1678197"],["-119.7276918","37.1669127"],["-119.7276473","37.166098"],["-119.7276941","37.1622414"],["-119.7277118","37.1611336"],["-119.7277597","37.1607124"],["-119.7278653","37.1603279"],["-119.7279167","37.1601803"],["-119.7279683","37.1600435"],["-119.7280969","37.1597852"],["-119.7282988","37.1594343"],["-119.7286193","37.1590769"],["-119.7288841","37.1588291"],["-119.7292073","37.1585753"],["-119.7295497","37.1583233"],["-119.7299814","37.1580216"],["-119.7303562","37.157741"],["-119.7305603","37.1575367"],["-119.7307381","37.1573314"],["-119.7309853","37.1570135"],["-119.7312354","37.1566648"],["-119.7313804","37.1563884"],["-119.7315692","37.1559132"],["-119.7316243","37.1556205"],["-119.7316642","37.1553873"],["-119.7316698","37.1550487"],["-119.731659","37.1544941"],["-119.7315688","37.153929"],["-119.7315059","37.1534519"],["-119.7314535","37.1530362"],["-119.7314465","37.152534"],["-119.7314769","37.1521473"],["-119.7315189","37.1517483"],["-119.7316223","37.1510536"],["-119.7317357","37.1502614"],["-119.7318707","37.1492943"],["-119.7319031","37.1490158"],["-119.7337909","37.1362583"],["-119.733832","37.1360226"],["-119.7340865","37.1344849"],["-119.7345237","37.1326839"],["-119.7366096","37.1255951"],["-119.7372496","37.1235141"],["-119.7377265","37.1225356"],["-119.7381935","37.121853"],["-119.7386067","37.1213385"],["-119.7390375","37.1208822"],["-119.7394354","37.1205531"],["-119.7407616","37.1195737"],["-119.7414483","37.1190561"],["-119.7421209","37.118448"],["-119.7428106","37.1176103"],["-119.7432895","37.1167793"],["-119.7436163","37.1159934"],["-119.7438374","37.1150293"],["-119.745613","37.1043172"],["-119.7458978","37.1028947"],["-119.7461671","37.1020931"],["-119.7464846","37.1013055"],["-119.7468953","37.1004668"],["-119.747608","37.0993282"],["-119.7482325","37.0984916"],["-119.7491652","37.0974408"],["-119.749909","37.0967353"],["-119.7506547","37.0961208"],["-119.7519886","37.0950516"],["-119.7524883","37.0946132"],["-119.752775","37.0942851"],["-119.7531135","37.0938129"],["-119.753448","37.0932207"],["-119.7537074","37.0925716"],["-119.7539392","37.091669"],["-119.7544561","37.089475"],["-119.7546755","37.0888979"],["-119.7549901","37.0882808"],["-119.7568347","37.0851305"],["-119.7570451","37.0847093"],["-119.7572275","37.0842378"],["-119.7573473","37.0837259"],["-119.7575343","37.082372"],["-119.7577015","37.0816545"],["-119.7580162","37.0809796"],["-119.7583665","37.0803837"],["-119.7590856","37.0795489"],["-119.7607254","37.0777172"],["-119.7610358","37.0772976"],["-119.7612473","37.0769003"],["-119.7613743","37.0765684"],["-119.7614727","37.0762468"],["-119.7615301","37.0760133"],["-119.7616321","37.075466"],["-119.7617634","37.0747824"],["-119.7618939","37.0741885"],["-119.7620358","37.0737306"],["-119.7622717","37.0732285"],["-119.7626116","37.0726624"],["-119.7630018","37.0721577"],["-119.7634446","37.0717219"],["-119.763902","37.0713419"],["-119.7643395","37.0710124"],["-119.7647442","37.0707066"],["-119.7651406","37.0703678"],["-119.7654733","37.0700325"],["-119.7657522","37.0696904"],["-119.7660359","37.0692815"],["-119.7662583","37.0688901"],["-119.766552","37.0682344"],["-119.7690425","37.0623424"],["-119.769377","37.0615789"],["-119.7788155","37.0430774"],["-119.7802804","37.0405806"],["-119.7812761","37.0391155"],["-119.7815807","37.0387014"],["-119.7883334","37.0289426"],["-119.7916826","37.0241016"],["-119.7919369","37.0236818"],["-119.7922052","37.0232122"],["-119.7924713","37.0226896"],["-119.792717","37.0221688"],["-119.7929249","37.0216822"],["-119.7931128","37.0211777"],["-119.7932835","37.020667"],["-119.7934433","37.0201656"],["-119.7934582","37.0201102"],["-119.7936785","37.019158"],["-119.7938177","37.0183517"],["-119.7938776","37.0177923"],["-119.7939133","37.0165639"],["-119.7939219","37.01147"],["-119.7939121","37.0101762"],["-119.7939025","37.0098574"],["-119.7939714","36.97726"],["-119.7939741","36.9771145"],["-119.7939664","36.9765482"],["-119.7939659","36.9740143"],["-119.7939721","36.9231904"],["-119.7938407","36.9192817"],["-119.7938139","36.9188917"],["-119.7937735","36.9185533"],["-119.7936345","36.9178654"],["-119.7930567","36.9151974"],["-119.792941","36.9146168"],["-119.792897","36.9142129"],["-119.7928053","36.9125661"],["-119.7926341","36.908818"],["-119.7926308","36.9081934"],["-119.7926556","36.9076175"],["-119.7926859","36.9072389"],["-119.7927982","36.9062811"],["-119.7928246","36.90599"],["-119.7928391","36.9057205"],["-119.7928271","36.9049246"],["-119.7927864","36.9031772"],["-119.7927862","36.9014715"],["-119.7928887","36.8963275"],["-119.7931346","36.8839581"],["-119.7931192","36.8823243"],["-119.7927817","36.8749423"],["-119.7926976","36.8734318"],["-119.7925101","36.8718547"],["-119.7923497","36.8706692"],["-119.7921307","36.8688773"],["-119.791702","36.8610786"],["-119.7916806","36.8607424"],["-119.7915161","36.8596879"],["-119.7913894","36.8591106"],["-119.7912588","36.8585993"],["-119.7910786","36.8580693"],["-119.790898","36.8575951"],["-119.7906147","36.8569542"],["-119.7901515","36.8560236"],["-119.789695","36.8552899"],["-119.7894796","36.8549734"],["-119.7891121","36.8544299"],["-119.7890443","36.8543343"],["-119.7890167","36.8542993"],["-119.7886188","36.8537459"],["-119.7880923","36.853017"],["-119.7874795","36.8521756"],["-119.7873978","36.8520408"],["-119.787288","36.8518464"],["-119.7869572","36.8513632"],["-119.786574","36.8507626"],["-119.786388","36.8504356"],["-119.7861972","36.8500112"],["-119.7858365","36.8491356"],["-119.7856906","36.8487434"],["-119.7855957","36.8484273"],["-119.7853685","36.8475442"],["-119.7852395","36.8468354"],["-119.7851996","36.8465221"],["-119.7851807","36.8462615"],["-119.7851727","36.8458981"],["-119.7851799","36.8453952"],["-119.7851851","36.8449525"],["-119.7851842","36.8443561"],["-119.7852969","36.8270842"],["-119.7853573","36.8237954"],["-119.7854312","36.8216762"],["-119.7854977","36.8195875"],["-119.7855295","36.815198"],["-119.7854335","36.8015853"],["-119.785419","36.7991312"],["-119.785399","36.7975697"],["-119.785288","36.7957969"],["-119.7847383","36.7924591"],["-119.7846255","36.7916327"],["-119.7845414","36.790514"],["-119.7844618","36.7887904"],["-119.7846499","36.7839537"],["-119.7848608","36.7810101"],["-119.7850954","36.7771175"],["-119.7851818","36.7748597"],["-119.7852451","36.7741387"],["-119.785187","36.7732412"],["-119.7850399","36.7724879"],["-119.7848741","36.7720347"],["-119.7844838","36.7711641"],["-119.7841714","36.7705842"],["-119.783327","36.7694213"],["-119.7828821","36.7689584"],["-119.7824364","36.7685417"],["-119.781826","36.7680554"],["-119.7814417","36.767784"],["-119.7811847","36.7676176"],["-119.7790805","36.7664816"],["-119.7787129","36.7662719"],["-119.7783819","36.7660736"],["-119.7778615","36.7657003"],["-119.7776346","36.76551"],["-119.7773518","36.7652627"],["-119.7767441","36.7645972"],["-119.7762282","36.7638102"],["-119.7759719","36.7632187"],["-119.7757906","36.7626461"],["-119.7756671","36.7619694"],["-119.7756232","36.7615841"],["-119.7756576","36.7606605"],["-119.7760563","36.7539506"],["-119.7764419","36.7486926"],["-119.7765202","36.747062"],["-119.7766996","36.7459211"],["-119.7769978","36.7445446"],["-119.777422","36.7430949"],["-119.7776803","36.741816"],["-119.7777345","36.7406909"],["-119.7776006","36.7357898"],["-119.7776054","36.7356267"],["-119.7776147","36.735459"],["-119.7776279","36.7353046"],["-119.7776482","36.7351345"],["-119.7776743","36.7349501"],["-119.7777012","36.7348079"],["-119.7777341","36.7346561"],["-119.7777706","36.7345028"],["-119.7778712","36.7341656"],["-119.77795","36.7339458"],["-119.778036","36.7337258"],["-119.778125","36.7335295"],["-119.7782115","36.7333534"],["-119.7783824","36.7330433"],["-119.7784788","36.7328854"],["-119.7785748","36.7327389"],["-119.7786925","36.7325702"],["-119.7788007","36.7324231"],["-119.7790602","36.7321023"],["-119.7792733","36.7318721"],["-119.7796569","36.7314857"],["-119.7800452","36.7312318"],["-119.7813686","36.7305322"],["-119.782063","36.7301224"],["-119.7831234","36.7292617"],["-119.783306","36.7293478"],["-119.7846014","36.7305529"],["-119.7847879","36.7307264"],["-119.7868894","36.7326164"],["-119.7859661","36.7333843"],["-119.7869393","36.7343962"],["-119.7859899","36.7350011"],["-119.7838361","36.7331379"],["-119.7836554","36.7329749"],["-119.7831544","36.732502"],["-119.7826387","36.7320027"],["-119.7814181","36.7309409"],["-119.7813502","36.7308708"],["-119.781312","36.7307452"],["-119.7813034","36.7306842"],["-119.7813073","36.7306395"],["-119.7813173","36.7305991"],["-119.7813362","36.7305595"],["-119.7813741","36.7305127"],["-119.7814559","36.7304367"],["-119.7816782","36.7302577"],["-119.7820437","36.7299073"],["-119.782275","36.729663"],["-119.7827253","36.729112"],["-119.7829421","36.7288334"],["-119.7830542","36.7285756"],["-119.7831965","36.7283895"],["-119.7836119","36.7278208"],["-119.7839544","36.7273635"],["-119.7841995","36.7270253"],["-119.7843217","36.7267968"],["-119.784522","36.726391"],["-119.7846794","36.726045"],["-119.7848598","36.7256079"],["-119.7850179","36.7251917"],["-119.7851699","36.7246897"],["-119.7852942","36.7242191"],["-119.7853978","36.7236487"],["-119.7854499","36.7232954"],["-119.7855109","36.722589"],["-119.7855328","36.7219704"],["-119.7855359","36.7212397"],["-119.785464","36.7202463"],["-119.7854227","36.7193228"],["-119.7853705","36.718741"],["-119.7853062","36.7183565"],["-119.7852001","36.7180357"],["-119.7850933","36.717786"],["-119.7849196","36.7174745"],["-119.7844901","36.7169419"],["-119.7817218","36.7145645"],["-119.7727928","36.7054565"],["-119.7649526","36.6974863"],["-119.7625824","36.6953382"],["-119.760839","36.6939217"],["-119.7523079","36.6868266"],["-119.750512","36.6853274"],["-119.7445731","36.6804461"],["-119.7432026","36.6793035"],["-119.7353723","36.6727752"],["-119.7336969","36.6713444"],["-119.7322574","36.6700938"],["-119.6985018","36.6393021"],["-119.6542661","36.5989035"],["-119.6459796","36.5912972"],["-119.6452902","36.5906634"],["-119.6437449","36.5892266"],["-119.6323947","36.578886"],["-119.6245989","36.5718207"],["-119.6227068","36.5701018"],["-119.6192746","36.5669935"],["-119.618194","36.5660452"],["-119.6169208","36.5648289"],["-119.6161489","36.5641041"],["-119.6142263","36.5623645"],["-119.5804749","36.5335489"],["-119.5786569","36.5319829"],["-119.5702591","36.5250092"],["-119.563573","36.5195341"],["-119.5566105","36.5139033"],["-119.5549095","36.5124061"],["-119.5520019","36.5097456"],["-119.551215","36.5089893"],["-119.5503382","36.5082555"],["-119.5497531","36.5077992"],["-119.5489012","36.5071995"],["-119.5424085","36.5027502"],["-119.5387408","36.5004256"],["-119.5372868","36.4996082"],["-119.5345752","36.4982029"],["-119.5323723","36.4972044"],["-119.5276596","36.4951481"],["-119.5265294","36.4946408"],["-119.526052","36.4943947"],["-119.5122937","36.4861085"],["-119.5113911","36.4855524"],["-119.5107816","36.48507"],["-119.5104365","36.4847742"],["-119.5101191","36.4844834"],["-119.5093795","36.4836492"],["-119.5085061","36.4826363"],["-119.5076205","36.4815326"],["-119.5052625","36.4780598"],["-119.4940722","36.4611498"],["-119.4939583","36.460966"],["-119.4937348","36.4605668"],["-119.4936194","36.4603442"],["-119.4935076","36.4600989"],["-119.4933198","36.4595841"],["-119.4926982","36.4575203"],["-119.4919712","36.4550448"],["-119.4915462","36.4538424"],["-119.4914241","36.4535671"],["-119.4912367","36.4531854"],["-119.4910333","36.4528036"],["-119.4908461","36.4524718"],["-119.4906705","36.4521834"],["-119.4904232","36.4517951"],["-119.4902198","36.4514989"],["-119.4898182","36.4509635"],["-119.4895416","36.4506186"],["-119.4890971","36.4501103"],["-119.4880595","36.4490903"],["-119.4847921","36.4460054"],["-119.4837718","36.4449909"],["-119.4834412","36.4446207"],["-119.4821978","36.4430042"],["-119.4817471","36.4423867"],["-119.4811738","36.4415512"],["-119.4669234","36.4199741"],["-119.4618847","36.4123212"],["-119.4558526","36.403164"],["-119.4556604","36.4028858"],["-119.451517","36.396614"],["-119.4359503","36.3729751"],["-119.4304384","36.3645508"],["-119.4297513","36.3631421"],["-119.4294328","36.3623112"],["-119.4292243","36.3616685"],["-119.4290648","36.3611143"],["-119.4289386","36.3605559"],["-119.4288337","36.3600319"],["-119.4287366","36.359358"],["-119.4283209","36.3548506"],["-119.4282704","36.3544006"],["-119.428196","36.3539152"],["-119.4281015","36.353427"],["-119.4279709","36.3529053"],["-119.4278389","36.3524636"],["-119.4277239","36.3521286"],["-119.4275849","36.3517651"],["-119.4273036","36.3511201"],["-119.4268999","36.3502997"],["-119.4265033","36.3496339"],["-119.4262677","36.3492778"],["-119.4259796","36.3488662"],["-119.4255403","36.3483067"],["-119.4205276","36.342322"],["-119.4179121","36.3392219"],["-119.413934","36.334491"],["-119.4136259","36.3340909"],["-119.4132936","36.333641"],["-119.4131696","36.3333361"],["-119.4124015","36.332298"],["-119.4122201","36.3320096"],["-119.4121742","36.3319292"],["-119.4120971","36.3317769"],["-119.4120636","36.3317042"],["-119.4119749","36.3314927"],["-119.4119493","36.331425"],["-119.4118995","36.3312835"],["-119.411814","36.3310205"],["-119.4117015","36.3307111"],["-119.4109506","36.3283407"],["-119.4109217","36.3282578"],["-119.4108924","36.3281797"],["-119.4108762","36.3281425"],["-119.4108374","36.3280584"],["-119.4107909","36.3279661"],["-119.4107449","36.3278879"],["-119.4107141","36.3278402"],["-119.4106843","36.3277955"],["-119.4106473","36.3277427"],["-119.4106163","36.3277003"],["-119.4105786","36.3276511"],["-119.4105414","36.3276063"],["-119.4105005","36.3275588"],["-119.4104146","36.3274662"],["-119.4103665","36.327419"],["-119.4102115","36.3272827"],["-119.4101025","36.327197"],["-119.4100496","36.3271573"],["-119.4099495","36.3270902"],["-119.4098541","36.3270315"],["-119.4098065","36.327005"],["-119.4096807","36.3269389"],["-119.4095886","36.3268938"],["-119.4095132","36.3268587"],["-119.4094598","36.326836"],["-119.4094063","36.3268151"],["-119.4092047","36.3267447"],["-119.4090807","36.3267018"],["-119.408665","36.326537"],["-119.4083962","36.3264651"],["-119.4081926","36.326418"],["-119.4077342","36.3263349"],["-119.4074313","36.3262933"],["-119.4069924","36.3262439"],["-119.4065446","36.3262142"],["-119.4059634","36.3262128"],["-119.405242","36.3262692"],["-119.4050089","36.326302"],["-119.404691","36.3263572"],["-119.4011705","36.3270796"],["-119.4005365","36.3271517"],["-119.4003648","36.3271625"],["-119.4002009","36.3271696"],["-119.3900481","36.3272079"],["-119.3590634","36.32711"],["-119.3457306","36.3272482"],["-119.3360058","36.3272796"],["-119.3354177","36.3272691"],["-119.3323982","36.3270598"],["-119.3308036","36.3269626"],["-119.3301525","36.3269509"],["-119.3282681","36.3269775"],["-119.3266754","36.3270116"],["-119.3238893","36.3271347"],["-119.3212687","36.3273017"],["-119.3207943","36.3273163"],["-119.3201583","36.3273168"],["-119.3197577","36.3273022"],["-119.3162382","36.3269919"],["-119.3150424","36.3269163"],["-119.280103","36.3267342"],["-119.2762034","36.3263217"],["-119.2622573","36.327465"],["-119.2615934","36.327504"],["-119.2607913","36.3275115"],["-119.2557816","36.3270499"],["-119.2554766","36.3270282"],["-119.2543867","36.3269877"],["-119.2320549","36.326932"],["-119.2313769","36.3269245"],["-119.2309483","36.3269132"],["-119.2305675","36.3269017"],["-119.2267044","36.3265797"],["-119.2253298","36.3264692"],["-119.2248911","36.3264536"],["-119.2244162","36.3264522"],["-119.2240744","36.3264557"],["-119.223637","36.326469"],["-119.2207451","36.3266625"],["-119.2192098","36.326764"],["-119.2187414","36.3267767"],["-119.2153764","36.3267429"],["-119.2055221","36.3266391"],["-119.2035336","36.3266811"],["-119.2015197","36.3267545"],["-119.135427","36.3261387"],["-119.1350638","36.3261476"],["-119.1349895","36.3261492"],["-119.1346289","36.3261588"],["-119.1151069","36.3257512"],["-119.1144494","36.3257712"],["-119.1133971","36.3258073"],["-119.1130785","36.3258288"],["-119.0807224","36.325406"],["-119.0803905","36.3254131"],["-119.0802781","36.3254202"],["-119.0801583","36.3254299"],["-119.0800378","36.3254429"],["-119.0798049","36.3254743"],["-119.0795918","36.3255074"],["-119.0794245","36.3255411"],["-119.0790253","36.3256328"],["-119.0787976","36.3257008"],["-119.0783556","36.3258709"],["-119.078129","36.3259754"],["-119.0779075","36.3260891"],["-119.0776827","36.3262182"],["-119.0774304","36.3263771"],["-119.0772308","36.3265242"],["-119.0770356","36.326685"],["-119.0768507","36.3268512"],["-119.0766904","36.3270186"],["-119.076439","36.3272996"],["-119.0736936","36.3306185"],["-119.072579","36.3319762"],["-119.0724327","36.3321755"],["-119.0722879","36.332395"],["-119.0721839","36.3325608"],["-119.0716759","36.3333668"],["-119.0704236","36.3353431"],["-119.0701529","36.3357287"],["-119.0699305","36.3360241"],["-119.0694203","36.3366832"],["-119.0684272","36.3379244"],["-119.0679111","36.3385518"],["-119.0674114","36.3391111"],["-119.0665615","36.3399636"],["-119.0662408","36.3402549"],["-119.065953","36.3404984"],["-119.0650903","36.3411257"],["-119.0643421","36.3416068"],["-119.0638877","36.3418788"],["-119.0445551","36.3528047"],["-119.0440283","36.3531086"],["-119.0436889","36.3533137"],["-119.0431483","36.3537071"],["-119.0428406","36.3539508"],["-119.0425576","36.3541897"],["-119.0423146","36.3544202"],["-119.0420853","36.3546507"],["-119.0419004","36.3548444"],["-119.039475","36.3577514"],["-119.0388618","36.3585365"],["-119.0387634","36.3587134"],["-119.0327674","36.3684617"],["-119.0323067","36.3691965"],["-119.0319947","36.3696673"],["-119.0317653","36.3699838"],["-119.0312827","36.3705868"],["-119.0309524","36.3709754"],["-119.0297819","36.3722217"],["-119.0280521","36.3739957"],["-119.0277103","36.3743585"],["-119.0274319","36.3746916"],["-119.0272302","36.3749645"],["-119.0270721","36.3752065"],["-119.0269752","36.375381"],["-119.0267611","36.3758055"],["-119.0266451","36.376098"],["-119.0265574","36.3763598"],["-119.0264941","36.3765781"],["-119.0264424","36.3768173"],["-119.0264052","36.3770506"],["-119.0263792","36.3773046"],["-119.0263625","36.3775984"],["-119.0263307","36.3799324"],["-119.0262733","36.3802801"],["-119.0261948","36.3804672"],["-119.0261046","36.3806308"],["-119.0260167","36.3807584"],["-119.0259297","36.3808655"],["-119.0258009","36.3809868"],["-119.0256293","36.3811337"],["-119.0253809","36.3813311"],["-119.0252292","36.3814977"],["-119.0251114","36.3816543"],["-119.0250233","36.3818137"],["-119.0249373","36.3820156"],["-119.024891","36.3821826"],["-119.0248697","36.3823677"],["-119.0248694","36.3825635"],["-119.0249984","36.3851492"],["-119.0249914","36.3854878"],["-119.0249441","36.3856594"],["-119.0248632","36.3858059"],["-119.0247496","36.385939"],["-119.0245919","36.3860533"],["-119.0244157","36.3861474"],["-119.0242411","36.3862075"],["-119.0240742","36.3862331"],["-119.0237454","36.3862596"],["-119.0236325","36.3862762"],["-119.0235076","36.3862971"],["-119.0233634","36.3863328"],["-119.0232309","36.386375"],["-119.023105","36.3864223"],["-119.0229727","36.3864878"],["-119.0228214","36.3865877"],["-119.02269","36.3866961"],["-119.0225862","36.3867976"],["-119.0224997","36.386906"],["-119.0224214","36.3870216"],["-119.0223579","36.387135"],["-119.0222914","36.3872848"],["-119.0222452","36.3874125"],["-119.0222004","36.3876015"],["-119.0221711","36.3877901"],["-119.022153","36.3879765"],["-119.0221505","36.3883169"],["-119.0222207","36.3903382"],["-119.0222716","36.3919699"],["-119.0223168","36.3933777"],["-119.022307","36.3936538"],["-119.0222368","36.3940951"],["-119.0221464","36.3944339"],["-119.0220913","36.3945995"],["-119.0220256","36.3947687"],["-119.0219255","36.3949944"],["-119.0217953","36.3952667"],["-119.0215438","36.3956217"],["-119.0212483","36.3960267"],["-119.0209244","36.3963682"],["-119.0200228","36.3970718"],["-119.0182044","36.398437"],["-119.0162808","36.3998808"],["-119.0146899","36.4010452"],["-119.0139114","36.4014596"],["-119.0133667","36.4016895"],["-119.0127553","36.4018577"],["-119.0116522","36.4019839"],["-119.0068916","36.4021266"],["-119.0051477","36.4022524"],["-119.0041654","36.4024211"],["-119.0032928","36.4026654"],["-119.001969","36.4031301"],["-118.9989434","36.4041493"],["-118.9968237","36.4048817"],["-118.9941228","36.4058104"],["-118.993295","36.4060227"],["-118.9927703","36.4060659"],["-118.9922636","36.406051"],["-118.9916161","36.4059416"],["-118.991066","36.4057492"],["-118.9905716","36.405475"],["-118.9901558","36.4051496"],["-118.9898159","36.4047792"],["-118.9895701","36.4043672"],["-118.989378","36.40397"],["-118.989299","36.4035066"],["-118.989314","36.4031006"],["-118.9894484","36.4024801"],["-118.9910372","36.3991801"],["-118.9912104","36.3988075"],["-118.9913317","36.3984416"],["-118.9913935","36.3979788"],["-118.9913569","36.3975834"],["-118.9912137","36.3971755"],["-118.991017","36.3968246"],["-118.9907304","36.3965024"],["-118.9902917","36.3961585"],["-118.9898357","36.3959343"],["-118.9893356","36.3957899"],["-118.988889","36.3957191"],["-118.9884969","36.3957179"],["-118.9880696","36.3957311"],["-118.9877531","36.395788"],["-118.9873757","36.3958959"],["-118.9870208","36.3960656"],["-118.9866863","36.3962627"],["-118.9862729","36.396585"],["-118.9852511","36.3975588"],["-118.9849345","36.3978035"],["-118.9846415","36.3979712"],["-118.9843584","36.3980892"],["-118.9840432","36.3982077"],["-118.9837025","36.3982894"],["-118.9833265","36.3983367"],["-118.982943","36.398351"],["-118.9826297","36.3983365"],["-118.9822711","36.3982697"],["-118.9819738","36.3981745"],["-118.9815567","36.3980049"],["-118.9802692","36.3973829"],["-118.9798211","36.3972089"],["-118.9794938","36.3971273"],["-118.9791447","36.3970719"],["-118.9787898","36.3970513"],["-118.9783951","36.3970716"],["-118.9780241","36.3971064"],["-118.9776303","36.397194"],["-118.9772971","36.397292"],["-118.9768266","36.3975046"],["-118.9750965","36.3983993"],["-118.9745125","36.3986682"],["-118.9740386","36.398805"],["-118.9736887","36.3988349"],["-118.9733001","36.3988476"],["-118.9728979","36.3988202"],["-118.972505","36.3987397"],["-118.9721969","36.398647"],["-118.9719314","36.3985518"],["-118.9716666","36.3984219"],["-118.9673704","36.3954038"],["-118.9644317","36.3933413"],["-118.9610067","36.3909843"],["-118.9603426","36.390571"],["-118.9596201","36.3901676"],["-118.9583461","36.3896719"],["-118.9547133","36.3880913"],["-118.9530097","36.3873897"],["-118.9520025","36.3871278"],["-118.9505539","36.3869869"],["-118.949291","36.3868997"],["-118.9485409","36.3869762"],["-118.9481317","36.3870844"],["-118.9477761","36.3872337"],["-118.9475376","36.3873717"],["-118.947319","36.3875232"],["-118.946994","36.3878233"],["-118.9467212","36.3881797"],["-118.9465487","36.3885479"],["-118.9464969","36.3887258"],["-118.9464701","36.3888624"],["-118.9464532","36.388999"],["-118.9464471","36.3891459"],["-118.9464513","36.3893022"],["-118.946473","36.3895037"],["-118.9467449","36.3912786"],["-118.9468871","36.3923635"],["-118.9470257","36.3931068"],["-118.9472093","36.3937084"],["-118.9474782","36.3943104"],["-118.9478176","36.3948592"],["-118.9483419","36.3954977"],["-118.9505744","36.3979881"],["-118.9516745","36.3992801"],["-118.9522004","36.399899"],["-118.9524041","36.4002284"],["-118.9526408","36.4008829"],["-118.9528707","36.4020346"],["-118.9529206","36.4026505"],["-118.9528676","36.4032963"],["-118.952553","36.4041181"],["-118.9523032","36.404541"],["-118.9520106","36.4048959"],["-118.9515827","36.4052958"],["-118.9511133","36.4056181"],["-118.9506238","36.4059045"],["-118.949683","36.4062802"],["-118.9490142","36.4065058"],["-118.9483966","36.4067587"],["-118.9478272","36.4071047"],["-118.9473891","36.4076116"],["-118.9464888","36.4089784"],["-118.9460006","36.4094664"],["-118.9456156","36.4097033"],["-118.9451819","36.4098921"],["-118.9444751","36.4100607"],["-118.9400657","36.4103914"],["-118.9393266","36.4105176"],["-118.9374281","36.4110524"],["-118.9360024","36.411449"],["-118.9351396","36.4116567"],["-118.9341618","36.4117807"],["-118.933225","36.4117597"],["-118.9320196","36.4116944"],["-118.9312478","36.4116519"],["-118.9304616","36.4116904"],["-118.92916","36.4119143"],["-118.9278156","36.4123585"],["-118.9268705","36.4129322"],["-118.9265062","36.4132238"],["-118.9261541","36.413572"],["-118.9255123","36.4142882"],["-118.9246198","36.4154148"],["-118.9225347","36.4180091"],["-118.9216964","36.4190235"],["-118.9210397","36.4198488"],["-118.9204549","36.4202949"],["-118.9184032","36.4211125"],["-118.9175852","36.4214059"],["-118.9171744","36.4215672"],["-118.9168105","36.4217576"],["-118.9165479","36.4219392"],["-118.9162899","36.4221706"],["-118.9161343","36.422349"],["-118.9160124","36.4225166"],["-118.9159179","36.4226823"],["-118.9158211","36.4228972"],["-118.9157603","36.423072"],["-118.9156698","36.4236031"],["-118.9154284","36.4253725"],["-118.915351","36.4258086"],["-118.9152917","36.4260192"],["-118.9152218","36.4262077"],["-118.9151146","36.4264371"],["-118.9149606","36.4266924"],["-118.9147728","36.4269505"],["-118.914537","36.4272111"],["-118.9140812","36.4276995"],["-118.9134432","36.4283593"],["-118.9101315","36.4318368"],["-118.90955","36.4324278"],["-118.9087897","36.4331975"],["-118.9063727","36.4359066"],["-118.9049656","36.4387544"],["-118.9043431","36.4402152"],["-118.9031613","36.44351"],["-118.9028396","36.4442771"],["-118.9026266","36.4447053"],["-118.9015365","36.4471589"],["-118.9011866","36.4476865"],["-118.900497","36.4484067"],["-118.8973519","36.4504211"],["-118.8964148","36.4511795"],["-118.8957613","36.4519213"],["-118.8955041","36.4520856"],["-118.8952779","36.4522262"],["-118.8950818","36.4523936"],["-118.8947738","36.4529682"],["-118.8946224","36.45341"],["-118.8945182","36.453643"],["-118.8943673","36.4538363"],["-118.8942691","36.4539388"],["-118.8941313","36.4540155"],["-118.8938708","36.4541106"],["-118.8936929","36.4541469"],["-118.8935219","36.4541393"],["-118.8933927","36.4541244"],["-118.893034","36.4541062"],["-118.8922561","36.4540036"],["-118.8914815","36.4539002"],["-118.8907591","36.4537994"],["-118.8900604","36.4537632"],["-118.8886668","36.4539364"],["-118.8883991","36.4539794"],["-118.8882814","36.4540058"],["-118.8881862","36.4540355"],["-118.8881048","36.454067"],["-118.8878684","36.4541881"],["-118.8877833","36.45428"],["-118.8877033","36.454372"],["-118.8876108","36.4545306"],["-118.8875842","36.454614"],["-118.8873803","36.4554489"],["-118.8873035","36.4557704"],["-118.8872372","36.4559476"],["-118.8871479","36.4561123"],["-118.887035","36.4562745"],["-118.886924","36.456366"],["-118.8867624","36.4564592"],["-118.8863994","36.4566618"],["-118.8858601","36.4569677"],["-118.8853219","36.4572589"],["-118.8846884","36.4574796"],["-118.8842289","36.4576134"],["-118.8837514","36.4576605"],["-118.8834897","36.4576807"],["-118.8826286","36.4577464"],["-118.8821246","36.4577903"],["-118.880749","36.4578674"],["-118.880345","36.4578677"],["-118.8789747","36.457844"],["-118.8774675","36.4577924"],["-118.8767358","36.4578028"],["-118.8762879","36.4578557"],["-118.8758573","36.4579913"],["-118.8752962","36.4581611"],["-118.8748987","36.4582456"],["-118.8743282","36.4582658"],["-118.8740288","36.4583458"],["-118.8737416","36.4584617"],["-118.873263","36.4588082"],["-118.8728903","36.4590982"],["-118.8724956","36.4593062"],["-118.8717659","36.4595462"],["-118.8716139","36.4596045"],["-118.8714498","36.4597025"],["-118.8708718","36.460168"],["-118.8701977","36.4609944"],["-118.8701679","36.4611872"],["-118.8702095","36.4613846"],["-118.870259","36.461629"],["-118.8702636","36.4617842"],["-118.8702093","36.4620236"],["-118.8702101","36.4622232"],["-118.8702872","36.4624969"],["-118.8703166","36.4627607"],["-118.8702814","36.4629065"],["-118.8701317","36.4631681"],["-118.8693901","36.4643795"],["-118.8691757","36.4645864"],["-118.8688307","36.4647544"],["-118.8686083","36.4649061"],["-118.8681865","36.4654856"],["-118.8680238","36.4656431"],["-118.8678056","36.4657625"],["-118.8675413","36.4658438"],["-118.8673801","36.4658696"],["-118.8672235","36.465868"],["-118.8668988","36.4658501"],["-118.866587","36.4657826"],["-118.8663299","36.4657203"],["-118.8661467","36.4656417"],["-118.8658847","36.4654939"],["-118.8649606","36.4647366"],["-118.8645832","36.4645246"],["-118.8642012","36.4643924"],["-118.8638958","36.4643198"],["-118.8635698","36.4642828"],["-118.8633181","36.4642851"],["-118.862945","36.4643282"],["-118.8626482","36.4644065"],["-118.8624247","36.4644911"],["-118.8622526","36.4645687"],["-118.8621599","36.4646174"],["-118.8620548","36.4646772"],["-118.8619245","36.464755"],["-118.8617856","36.4648335"],["-118.8617072","36.4648708"],["-118.8616358","36.4649003"],["-118.8615799","36.4649177"],["-118.8615126","36.4649366"],["-118.8614098","36.464957"],["-118.861181","36.4649921"],["-118.8610561","36.4650146"],["-118.8609115","36.4650485"],["-118.8608029","36.4650841"],["-118.8606924","36.465128"],["-118.8605695","36.465181"],["-118.8604075","36.4652603"],["-118.8602307","36.4653549"],["-118.8600498","36.4654556"],["-118.8599545","36.465517"],["-118.859891","36.4655648"],["-118.8598373","36.4656106"],["-118.8597218","36.4657325"],["-118.8596668","36.4658008"],["-118.8596167","36.4658785"],["-118.8595563","36.4660091"],["-118.8594714","36.4662118"],["-118.8593665","36.466465"],["-118.8587775","36.4678862"],["-118.8587129","36.4680566"],["-118.8586764","36.4682107"],["-118.858651","36.4683765"],["-118.8586304","36.4686151"],["-118.8586283","36.4686738"],["-118.8586301","36.4687426"],["-118.8586358","36.4688297"],["-118.8586473","36.4689213"],["-118.8586622","36.4690165"],["-118.8586789","36.4690986"],["-118.8587225","36.4692732"],["-118.8587502","36.4693609"],["-118.858769","36.4694164"],["-118.858788","36.4694683"],["-118.8588825","36.4696841"],["-118.8589588","36.4698583"],["-118.8590164","36.4700146"],["-118.8590406","36.4701004"],["-118.8590599","36.4701938"],["-118.8590786","36.470344"],["-118.8590802","36.4705075"],["-118.8590636","36.470709"],["-118.8590465","36.4708638"],["-118.8590366","36.4709231"],["-118.8590174","36.4709908"],["-118.8589985","36.4710347"],["-118.8589732","36.471089"],["-118.8588886","36.4712275"],["-118.8587506","36.4713743"],["-118.8585529","36.4714837"],["-118.8582651","36.4715963"],["-118.8580055","36.4716578"],["-118.8577521","36.4716933"],["-118.8575369","36.4717201"],["-118.8573806","36.4717743"],["-118.8570308","36.4719429"],["-118.8568595","36.4719995"],["-118.8566465","36.4720525"],["-118.8564025","36.4721113"],["-118.8561332","36.4721842"],["-118.8554677","36.4724653"],["-118.8543643","36.4730178"],["-118.8538187","36.4733249"],["-118.853415","36.4735772"],["-118.8528033","36.474023"],["-118.852338","36.4744226"],["-118.8517243","36.4750093"],["-118.8515388","36.4751787"],["-118.8514227","36.4752545"],["-118.8513066","36.4753125"],["-118.8511793","36.4753619"],["-118.8506255","36.4755169"],["-118.8496099","36.4757754"],["-118.8480745","36.4761483"],["-118.8474691","36.4762507"],["-118.8469818","36.4763148"],["-118.8467558","36.4763237"],["-118.8466087","36.4763036"],["-118.846425","36.4762289"],["-118.8461704","36.4760353"],["-118.846066","36.4759909"],["-118.8459757","36.4759703"],["-118.8458572","36.4759551"],["-118.8457708","36.4759583"],["-118.8456623","36.4759743"],["-118.8455407","36.4760214"],["-118.8453693","36.4761282"],["-118.8435582","36.4777272"],["-118.843015","36.4782238"],["-118.8425774","36.4784743"],["-118.8422551","36.4786113"],["-118.8419273","36.4787119"],["-118.8416005","36.4787694"],["-118.8412488","36.4788008"],["-118.8403772","36.4788182"],["-118.8401235","36.478826"],["-118.8399363","36.4788391"],["-118.839769","36.478887"],["-118.8395896","36.4789907"],["-118.8391121","36.4794227"],["-118.8386551","36.4798503"],["-118.8380693","36.4806867"],["-118.8379693","36.4809371"],["-118.8379717","36.4811972"],["-118.8381521","36.4815541"],["-118.8382285","36.4816893"],["-118.8382927","36.4819492"],["-118.8382938","36.4820715"],["-118.8382736","36.4821785"],["-118.8381846","36.482343"],["-118.8380237","36.4826229"],["-118.8379451","36.4827921"],["-118.8379217","36.4830068"],["-118.8379231","36.4842273"],["-118.8379159","36.4844302"],["-118.8379082","36.4845724"],["-118.8378645","36.4848572"],["-118.837857","36.4850134"],["-118.8378395","36.4852787"],["-118.8378336","36.4854022"],["-118.8377805","36.485656"],["-118.837742","36.4858587"],["-118.8377136","36.4859707"],["-118.8375896","36.4860875"],["-118.8374219","36.4862176"],["-118.8372965","36.4863157"],["-118.8372352","36.4863706"],["-118.8371666","36.4864394"],["-118.8371189","36.4864925"],["-118.837083","36.4865334"],["-118.8370544","36.4865678"],["-118.8369964","36.4866704"],["-118.8369047","36.4868492"],["-118.8368421","36.4869902"],["-118.8367768","36.4870435"],["-118.8367098","36.487068"],["-118.8366775","36.4871105"],["-118.8366737","36.4871808"],["-118.8366801","36.4872766"],["-118.836705","36.4873367"],["-118.8367479","36.4873751"],["-118.8368126","36.487455"],["-118.836803","36.4873556"],["-118.8368036","36.4872589"],["-118.8368138","36.4871099"],["-118.8368453","36.4869911"],["-118.8369046","36.4868487"],["-118.8369982","36.4866672"],["-118.8370555","36.4865668"],["-118.8371645","36.4864416"],["-118.8372327","36.486373"],["-118.837299","36.4863136"],["-118.8374378","36.4862054"],["-118.83759","36.4860873"],["-118.837715","36.4859721"],["-118.8378135","36.4858673"],["-118.8378602","36.4857901"],["-118.8378843","36.4857219"],["-118.8379124","36.4855643"],["-118.8379127","36.4848159"],["-118.8379162","36.484416"],["-118.8379229","36.4842345"],["-118.8379217","36.4830153"],["-118.8379459","36.4827902"],["-118.838023","36.4826237"],["-118.8381751","36.4823593"],["-118.8382733","36.4821793"],["-118.8382939","36.4820711"],["-118.8382927","36.4819504"],["-118.8382288","36.4816895"],["-118.8381494","36.4815495"],["-118.8379707","36.4811928"],["-118.8379698","36.480935"],["-118.8380681","36.4806887"],["-118.8386562","36.479849"],["-118.8391064","36.4794279"],["-118.8395892","36.4789911"],["-118.8397662","36.4788881"],["-118.8399382","36.4788388"],["-118.8401047","36.478827"],["-118.8403714","36.4788183"],["-118.8412425","36.4788013"],["-118.8415982","36.4787698"],["-118.8419242","36.4787127"],["-118.8422535","36.478612"],["-118.842574","36.4784759"],["-118.8430151","36.4782238"],["-118.8436114","36.477679"],["-118.8453679","36.4761292"],["-118.8455418","36.476021"],["-118.8456609","36.4759746"],["-118.8457718","36.4759581"],["-118.8458585","36.475955"],["-118.8459765","36.4759704"],["-118.846067","36.4759911"],["-118.8461696","36.4760351"],["-118.8464246","36.4762289"],["-118.846606","36.4763029"],["-118.8467572","36.4763239"],["-118.8469771","36.4763153"],["-118.8474676","36.4762511"],["-118.8480785","36.4761474"],["-118.8494888","36.4758058"],["-118.8506585","36.4755078"],["-118.8511799","36.4753618"],["-118.8513036","36.4753139"],["-118.8514239","36.4752537"],["-118.8515388","36.4751786"],["-118.8517402","36.4749944"],["-118.8523431","36.474418"],["-118.8528169","36.4740123"],["-118.8534045","36.4735844"],["-118.8538499","36.4733061"],["-118.8543632","36.4730184"],["-118.8554636","36.4724671"],["-118.8561363","36.472183"],["-118.8564105","36.4721093"],["-118.8566535","36.4720508"],["-118.8568607","36.4719991"],["-118.8570308","36.471943"],["-118.8573781","36.4717755"],["-118.8575349","36.4717206"],["-118.8577549","36.4716929"],["-118.8579976","36.4716592"],["-118.858263","36.471597"],["-118.8585521","36.4714842"],["-118.8587514","36.4713737"],["-118.8588904","36.4712252"],["-118.8589729","36.47109"],["-118.8589993","36.471033"],["-118.8590173","36.4709908"],["-118.8590368","36.4709229"],["-118.8590473","36.4708608"],["-118.859064","36.4707038"],["-118.8590801","36.4705032"],["-118.8590784","36.470342"],["-118.8590603","36.4701939"],["-118.8590413","36.4701029"],["-118.8590168","36.4700149"],["-118.8589594","36.4698601"],["-118.8588927","36.4697066"],["-118.8587877","36.4694677"],["-118.8587702","36.4694207"],["-118.8587501","36.4693605"],["-118.8587219","36.4692705"],["-118.8586798","36.4691033"],["-118.8586628","36.4690183"],["-118.8586473","36.4689207"],["-118.8586357","36.4688313"],["-118.85863","36.4687391"],["-118.8586283","36.4686766"],["-118.8586305","36.468617"],["-118.8586512","36.4683753"],["-118.8586768","36.4682099"],["-118.8587131","36.4680558"],["-118.8587793","36.4678808"],["-118.8593571","36.4664883"],["-118.8594725","36.4662091"],["-118.8595548","36.4660124"],["-118.8596169","36.4658787"],["-118.8596681","36.4657988"],["-118.8597219","36.4657322"],["-118.8598369","36.465611"],["-118.8598924","36.4655637"],["-118.8599541","36.4655171"],["-118.860051","36.465455"],["-118.8602111","36.4653656"],["-118.8604111","36.4652584"],["-118.8605691","36.4651812"],["-118.8606973","36.4651261"],["-118.8608004","36.4650849"],["-118.8609113","36.4650484"],["-118.8610546","36.465015"],["-118.8611783","36.4649923"],["-118.8614059","36.4649576"],["-118.8615116","36.4649367"],["-118.8615728","36.4649199"],["-118.8616345","36.4649008"],["-118.8617037","36.4648723"],["-118.8617858","36.4648332"],["-118.8619277","36.4647531"],["-118.8620622","36.4646728"],["-118.8621594","36.4646176"],["-118.8622533","36.4645684"],["-118.8624204","36.4644929"],["-118.8626466","36.4644069"],["-118.8629457","36.4643282"],["-118.8633214","36.4642846"],["-118.8635695","36.4642822"],["-118.8638968","36.4643201"],["-118.8642003","36.4643917"],["-118.8645829","36.4645245"],["-118.8649634","36.4647385"],["-118.8658844","36.4654935"],["-118.8661499","36.4656432"],["-118.8663332","36.4657214"],["-118.8665875","36.4657826"],["-118.8668966","36.4658501"],["-118.8672223","36.465868"],["-118.867378","36.4658698"],["-118.8675393","36.4658444"],["-118.8678025","36.4657638"],["-118.8680268","36.465641"],["-118.8681883","36.4654835"],["-118.86861","36.4649043"],["-118.8688303","36.4647546"],["-118.8691737","36.4645877"],["-118.8693925","36.4643761"],["-118.8701173","36.4631921"],["-118.8702813","36.4629075"],["-118.8703167","36.4627615"],["-118.8702878","36.4625"],["-118.8702098","36.4622212"],["-118.8702089","36.4620249"],["-118.8702636","36.461784"],["-118.8702589","36.4616292"],["-118.8702093","36.4613829"],["-118.8701677","36.4611848"],["-118.8702005","36.4609904"],["-118.8708665","36.4601734"],["-118.8714522","36.4597007"],["-118.8716153","36.4596037"],["-118.8717618","36.4595476"],["-118.8724913","36.4593079"],["-118.8728946","36.4590953"],["-118.8732657","36.4588062"],["-118.8737368","36.4584646"],["-118.8740248","36.4583471"],["-118.8743267","36.4582659"],["-118.8748991","36.4582457"],["-118.8752886","36.4581633"],["-118.8758442","36.4579955"],["-118.8762875","36.4578556"],["-118.8767457","36.4578021"],["-118.8774599","36.4577885"],["-118.8789277","36.4578427"],["-118.8802627","36.4578674"],["-118.8808036","36.457869"],["-118.8821554","36.4577877"],["-118.8825934","36.4577497"],["-118.8834837","36.4576812"],["-118.8837325","36.457662"],["-118.8842268","36.4576139"],["-118.8846935","36.4574781"],["-118.8853273","36.4572565"],["-118.8858753","36.4569591"],["-118.8864079","36.4566569"],["-118.8867617","36.4564597"],["-118.8869221","36.4563673"],["-118.8870358","36.4562736"],["-118.8871492","36.4561102"],["-118.8872368","36.4559484"],["-118.8873041","36.4557687"],["-118.8873837","36.4554338"],["-118.887585","36.4546098"],["-118.8876114","36.4545293"],["-118.8877042","36.4543708"],["-118.8877831","36.4542803"],["-118.88787","36.4541869"],["-118.8881061","36.4540664"],["-118.8881884","36.4540347"],["-118.8882835","36.4540053"],["-118.8884016","36.4539788"],["-118.8886666","36.4539365"],["-118.8900517","36.4537634"],["-118.8907663","36.4538003"],["-118.8914695","36.4538984"],["-118.8922274","36.4539996"],["-118.8930239","36.454105"],["-118.8933945","36.4541245"],["-118.8935213","36.4541392"],["-118.8936923","36.4541468"],["-118.8938744","36.4541096"],["-118.8941292","36.4540164"],["-118.8942692","36.4539388"],["-118.8943666","36.4538371"],["-118.8945172","36.4536445"],["-118.8946208","36.4534148"],["-118.8947755","36.4529635"],["-118.895079","36.4523973"],["-118.89528","36.4522248"],["-118.8954987","36.4520887"],["-118.8957605","36.4519223"],["-118.8964082","36.4511858"],["-118.8973439","36.4504268"],["-118.9004884","36.4484132"],["-118.9011838","36.4476899"],["-118.9015381","36.4471555"],["-118.9026352","36.4446867"],["-118.9028401","36.4442759"],["-118.9031543","36.443529"],["-118.9043589","36.4401749"],["-118.9049125","36.4388713"],["-118.9063831","36.4358921"],["-118.9087838","36.4332034"],["-118.9095162","36.4324621"],["-118.9101277","36.4318406"],["-118.9133913","36.4284137"],["-118.9140916","36.4276885"],["-118.9145301","36.4272185"],["-118.9147779","36.4269442"],["-118.9149555","36.4267"],["-118.9151151","36.4264365"],["-118.9152211","36.4262097"],["-118.9152933","36.4260146"],["-118.9153518","36.4258055"],["-118.9154308","36.4253534"],["-118.915677","36.4235525"],["-118.9157608","36.42307"],["-118.9158205","36.4228988"],["-118.9159157","36.4226866"],["-118.9160107","36.4225192"],["-118.9161314","36.4223528"],["-118.9162903","36.4221701"],["-118.9165522","36.4219358"],["-118.9168126","36.4217562"],["-118.9171793","36.421565"],["-118.9175528","36.4214182"],["-118.9184115","36.4211095"],["-118.9204498","36.4202973"],["-118.9210405","36.419848"],["-118.9217","36.4190193"],["-118.9225605","36.4179781"],["-118.9246857","36.4153308"],["-118.9255225","36.4142759"],["-118.9261537","36.4135727"],["-118.9265027","36.4132271"],["-118.9268724","36.4129308"],["-118.9278142","36.4123593"],["-118.9291524","36.4119162"],["-118.9304735","36.4116892"],["-118.9312539","36.4116498"],["-118.9319972","36.411693"],["-118.9332046","36.4117586"],["-118.9341456","36.4117831"],["-118.9351438","36.4116561"],["-118.9360234","36.4114438"],["-118.937362","36.4110709"],["-118.939321","36.410519"],["-118.9400672","36.4103913"],["-118.9444905","36.4100592"],["-118.9451834","36.4098916"],["-118.9456176","36.4097023"],["-118.9459994","36.4094671"],["-118.9464938","36.4089714"],["-118.9473879","36.4076134"],["-118.947825","36.4071063"],["-118.948391","36.4067614"],["-118.9490279","36.4065009"],["-118.9496902","36.4062776"],["-118.9506335","36.4059"],["-118.9511097","36.4056204"],["-118.9515875","36.4052918"],["-118.9520188","36.4048871"],["-118.952301","36.4045443"],["-118.9525533","36.4041174"],["-118.952868","36.4032944"],["-118.952921","36.4026493"],["-118.9528707","36.4020355"],["-118.9526447","36.4008979"],["-118.9524021","36.4002237"],["-118.9522009","36.3998999"],["-118.9516592","36.3992616"],["-118.9505918","36.398008"],["-118.9483306","36.3954847"],["-118.9478108","36.3948493"],["-118.9474832","36.3943191"],["-118.947212","36.3937165"],["-118.9470256","36.3931074"],["-118.9468831","36.3923362"],["-118.9467477","36.3912985"],["-118.946475","36.3895158"],["-118.9464512","36.3893045"],["-118.9464472","36.3891408"],["-118.9464534","36.3889987"],["-118.9464705","36.3888613"],["-118.9464968","36.3887268"],["-118.9465476","36.3885505"],["-118.9467231","36.3881765"],["-118.9469883","36.3878294"],["-118.9473218","36.3875209"],["-118.947542","36.387369"],["-118.9477824","36.3872306"],["-118.948136","36.387083"],["-118.9485399","36.3869765"],["-118.9492856","36.3868999"],["-118.9505212","36.386984"],["-118.9520093","36.3871289"],["-118.9530247","36.3873953"],["-118.9546047","36.3880458"],["-118.9583727","36.3896828"],["-118.9596071","36.3901617"],["-118.960336","36.3905672"],["-118.9610012","36.3909808"],["-118.9645416","36.3934185"],["-118.9676618","36.395609"],["-118.9716698","36.3984235"],["-118.971925","36.398549"],["-118.9721925","36.3986457"],["-118.9725027","36.3987392"],["-118.9729014","36.3988206"],["-118.9732974","36.3988491"],["-118.9737045","36.3988341"],["-118.9740439","36.3988039"],["-118.9745015","36.3986721"],["-118.9751269","36.398384"],["-118.9768335","36.3975012"],["-118.9772979","36.3972917"],["-118.9776393","36.3971918"],["-118.9780238","36.3971065"],["-118.9784026","36.3970711"],["-118.9787865","36.3970502"],["-118.979149","36.3970724"],["-118.9794863","36.3971258"],["-118.979825","36.3972098"],["-118.9802631","36.39738"],["-118.9815584","36.3980054"],["-118.981976","36.3981753"],["-118.9822734","36.3982702"],["-118.9826304","36.3983368"],["-118.9829463","36.3983526"],["-118.9833307","36.3983364"],["-118.9836998","36.3982898"],["-118.9840436","36.3982075"],["-118.9843546","36.3980907"],["-118.9846388","36.3979724"],["-118.9849306","36.3978061"],["-118.9852567","36.3975535"],["-118.9862687","36.3965887"],["-118.9866833","36.3962648"],["-118.9870134","36.3960696"],["-118.9873749","36.3958964"],["-118.9877529","36.395788"],["-118.9880692","36.3957311"],["-118.9885111","36.3957148"],["-118.9888844","36.3957188"],["-118.9893335","36.3957896"],["-118.9898287","36.3959316"],["-118.9902851","36.3961544"],["-118.9907302","36.3965026"],["-118.9910138","36.3968206"],["-118.9912133","36.3971754"],["-118.9913556","36.3975766"],["-118.9913936","36.3979834"],["-118.9913322","36.3984395"],["-118.9912114","36.3988047"],["-118.9910614","36.399129"],["-118.9894383","36.402503"],["-118.9893145","36.4030948"],["-118.9892986","36.4035057"],["-118.9893757","36.4039629"],["-118.9895692","36.4043657"],["-118.9898126","36.4047751"],["-118.9901544","36.4051482"],["-118.9905716","36.4054754"],["-118.9910637","36.4057483"],["-118.9916129","36.405941"],["-118.9922627","36.4060509"],["-118.992774","36.4060673"],["-118.9932942","36.406023"],["-118.994073","36.4058266"],["-118.9967379","36.4049114"],["-118.9989163","36.4041584"],["-119.002087","36.4030889"],["-119.0033005","36.4026629"],["-119.0041685","36.4024205"],["-119.005152","36.4022517"],["-119.0069326","36.4021251"],["-119.0117008","36.401982"],["-119.0127445","36.40186"],["-119.0133749","36.4016867"],["-119.0139015","36.4014644"],["-119.0146856","36.4010479"],["-119.0162052","36.3999377"],["-119.0181804","36.3984551"],["-119.0200777","36.3970307"],["-119.0209197","36.3963723"],["-119.0212515","36.3960227"],["-119.0215177","36.3956582"],["-119.0217993","36.3952601"],["-119.0219295","36.3949855"],["-119.0220236","36.3947739"],["-119.0220907","36.3946014"],["-119.0221466","36.3944333"],["-119.0222379","36.3940893"],["-119.0223068","36.393654"],["-119.0223166","36.3933828"],["-119.0222728","36.3920073"],["-119.0222203","36.3903209"],["-119.0221508","36.3883127"],["-119.0221525","36.3879799"],["-119.0221701","36.3877984"],["-119.0222013","36.3875967"],["-119.0222461","36.3874092"],["-119.0222938","36.387279"],["-119.0223579","36.387135"],["-119.0224225","36.3870199"],["-119.0225013","36.386904"],["-119.0225862","36.3867976"],["-119.0226891","36.3866971"],["-119.0228239","36.3865859"],["-119.022973","36.3864877"],["-119.023103","36.3864231"],["-119.0232294","36.3863754"],["-119.0233686","36.3863313"],["-119.0235069","36.3862973"],["-119.0236287","36.3862769"],["-119.023746","36.3862597"],["-119.0240725","36.3862332"],["-119.0242411","36.3862073"],["-119.0244167","36.3861469"],["-119.0245886","36.3860554"],["-119.0247497","36.3859388"],["-119.0248626","36.3858066"],["-119.0249435","36.3856604"],["-119.0249912","36.3854887"],["-119.0249984","36.3851492"],["-119.0248692","36.3825605"],["-119.0248696","36.3823668"],["-119.0248913","36.3821803"],["-119.0249387","36.3820119"],["-119.0250225","36.3818148"],["-119.025112","36.3816533"],["-119.0252329","36.3814932"],["-119.0253802","36.3813318"],["-119.0256258","36.3811365"],["-119.0257924","36.3809946"],["-119.0259297","36.3808655"],["-119.0260159","36.3807592"],["-119.0261041","36.3806316"],["-119.0261935","36.3804702"],["-119.0262738","36.3802784"],["-119.0263303","36.3799383"],["-119.0263628","36.3775908"],["-119.0263794","36.3773021"],["-119.0264055","36.3770481"],["-119.0264441","36.3768081"],["-119.0264932","36.376582"],["-119.0265632","36.376341"],["-119.0266459","36.3760962"],["-119.0267602","36.3758079"],["-119.0269748","36.3753819"],["-119.0270751","36.3752013"],["-119.0272357","36.3749566"],["-119.0274388","36.3746828"],["-119.0276966","36.3743736"],["-119.0280761","36.3739708"],["-119.0297408","36.372265"],["-119.0309591","36.3709677"],["-119.0312718","36.3705997"],["-119.0317658","36.3699835"],["-119.0319915","36.3696719"],["-119.0323113","36.3691894"],["-119.0327525","36.3684853"],["-119.03876","36.3587193"],["-119.0388624","36.3585357"],["-119.0395001","36.3577201"],["-119.0419017","36.3548431"],["-119.0420914","36.3546443"],["-119.0423116","36.3544232"],["-119.0425696","36.354179"],["-119.0428405","36.3539508"],["-119.0431682","36.3536919"],["-119.043691","36.3533125"],["-119.044008","36.3531208"],["-119.0445064","36.3528329"],["-119.0638463","36.3419028"],["-119.0643398","36.3416084"],["-119.0650805","36.3411326"],["-119.0659561","36.3404961"],["-119.0662389","36.3402564"],["-119.0665639","36.3399614"],["-119.0674021","36.3391209"],["-119.0679214","36.33854"],["-119.0683918","36.3379679"],["-119.0694051","36.3367029"],["-119.0699164","36.3360424"],["-119.0701619","36.3357164"],["-119.0704129","36.3353591"],["-119.0717384","36.3332674"],["-119.0721825","36.3325629"],["-119.0722918","36.3323886"],["-119.0724288","36.332181"],["-119.0725758","36.3319803"],["-119.0736748","36.3306413"],["-119.0764369","36.3273018"],["-119.0766898","36.3270194"],["-119.07685","36.326852"],["-119.0770424","36.3266792"],["-119.0772263","36.3265277"],["-119.0774293","36.3263779"],["-119.0776742","36.3262234"],["-119.0779139","36.3260856"],["-119.0781334","36.3259733"],["-119.0783466","36.3258747"],["-119.0787986","36.3257006"],["-119.0790229","36.3256333"],["-119.0794232","36.3255413"],["-119.0795921","36.3255075"],["-119.0797976","36.3254754"],["-119.0800332","36.3254432"],["-119.0801601","36.3254297"],["-119.0802895","36.3254195"],["-119.0803928","36.325413"],["-119.0806285","36.3254052"],["-119.1169692","36.3258601"],["-119.1169942","36.3250501"],["-119.1170054","36.324415"],["-119.117103","36.3201093"],["-119.1171054","36.3199955"],["-119.1171088","36.3198215"],["-119.1171125","36.3196041"],["-119.1171151","36.3195394"],["-119.1172169","36.3118183"],["-119.1173029","36.307722"],["-119.1175832","36.3016739"],["-119.1175942","36.3011062"],["-119.1175926","36.3002046"],["-119.1175398","36.2974611"],["-119.1178986","36.2874106"],["-119.118192","36.2681739"],["-119.1182556","36.2640207"],["-119.1182747","36.2618699"],["-119.1182834","36.2598134"],["-119.118315","36.2548516"],["-119.1183426","36.2525042"],["-119.1183684","36.2507151"],["-119.1183909","36.2485334"],["-119.1184273","36.2453882"],["-119.1184196","36.2451092"],["-119.1185138","36.2260357"],["-119.1184144","36.2187574"],["-119.11833","36.2177298"],["-119.1179713","36.2109257"],["-119.1113133","36.2106493"],["-119.1110236","36.2106317"],["-119.1107421","36.2105995"],["-119.1102468","36.2105047"],["-119.1100342","36.2104407"],["-119.1098263","36.2103677"],["-119.1096087","36.2102765"],["-119.1093931","36.2101688"],["-119.1092015","36.210052"],["-119.1090114","36.2099231"],["-119.1088461","36.2097885"],["-119.108687","36.2096472"],["-119.1085397","36.2094855"],["-119.1083805","36.2092924"],["-119.1082051","36.2090577"],["-119.1077933","36.2084163"],["-119.1069518","36.2070694"],["-119.1068552","36.2068685"],["-119.1065304","36.2062367"],["-119.1063968","36.205963"],["-119.1062757","36.2057027"],["-119.1061691","36.205478"],["-119.1060458","36.2052374"],["-119.1059184","36.2050031"],["-119.1057741","36.2047574"],["-119.1055756","36.2044521"],["-119.1053951","36.2042019"],["-119.1046601","36.203281"],["-119.1044693","36.203054"],["-119.1039063","36.2023197"],["-119.1037152","36.2020494"],["-119.1035036","36.2017327"],["-119.1003876","36.1967936"],["-119.0902165","36.1811956"],["-119.0899109","36.1806924"],["-119.0896818","36.1802716"],["-119.0894927","36.1799031"],["-119.0736471","36.147892"],["-119.0724894","36.1455486"],["-119.0721984","36.1449636"],["-119.0718656","36.1443007"],["-119.0715456","36.1436788"],["-119.0713846","36.1433956"],["-119.0712064","36.1430971"],["-119.0710628","36.1428713"],["-119.0707301","36.1423838"],["-119.0705334","36.1421164"],["-119.0561124","36.1240787"],["-119.0557129","36.1235492"],["-119.0455082","36.1077108"],["-119.0422866","36.1029483"],["-119.042085","36.1026227"],["-119.0419125","36.1023301"],["-119.0417344","36.1020142"],["-119.0414557","36.1014818"],["-119.0412071","36.100973"],["-119.0408376","36.1001101"],["-119.0405785","36.0993983"],["-119.0404308","36.0989497"],["-119.0403318","36.0986334"],["-119.0402275","36.098264"],["-119.0401846","36.0980948"],["-119.0401227","36.0978223"],["-119.0400664","36.0975621"],["-119.0399468","36.0969548"],["-119.0398378","36.0962296"],["-119.0397521","36.0953756"],["-119.0396877","36.0936714"],["-119.0393815","36.0820627"],["-119.039396","36.0814415"],["-119.0398235","36.0730117"],["-119.0398188","36.0715358"],["-119.0396713","36.0694128"],["-119.0394893","36.0677423"],["-119.0394586","36.0672579"],["-119.0394924","36.0596589"],["-119.039492","36.0586521"],["-119.0394874","36.0571245"],["-119.0394634","36.0565231"],["-119.0392984","36.0546815"],["-119.0391931","36.0535142"],["-119.0391386","36.0522807"],["-119.0391383","36.0510814"],["-119.0391686","36.0502132"],["-119.039216","36.04959"],["-119.039541","36.0466692"],["-119.0396988","36.043875"],["-119.0397546","36.0396154"],["-119.0399679","36.0133259"],["-119.0397984","36.0080414"],["-119.0397538","36.0076635"],["-119.0398867","36.0053582"],["-119.0401473","36.0038415"],["-119.0403476","36.0032"],["-119.0412494","36.0012227"],["-119.0419384","36.0000703"],["-119.0513207","35.984587"],["-119.0521939","35.9830972"],["-119.0523486","35.9827498"],["-119.0525435","35.9822988"],["-119.0529101","35.9813488"],["-119.0531702","35.9804542"],["-119.0532677","35.9800531"],["-119.0533314","35.9797246"],["-119.053389","35.9792545"],["-119.0534409","35.9787379"],["-119.0534737","35.9783009"],["-119.0535032","35.975859"],["-119.0534541","35.872586"],["-119.0534213","35.8717851"],["-119.0533606","35.871272"],["-119.0532759","35.8708755"],["-119.0531901","35.8705581"],["-119.0530665","35.8701766"],["-119.0529235","35.869763"],["-119.0525174","35.8687112"],["-119.0523021","35.8680673"],["-119.0522045","35.8675922"],["-119.0521151","35.8670813"],["-119.0520997","35.866543"],["-119.0521516","35.8659555"],["-119.0522789","35.8652132"],["-119.052412","35.8647875"],["-119.0526062","35.864315"],["-119.0528207","35.8637751"],["-119.0530304","35.863209"],["-119.0532477","35.8625786"],["-119.0534897","35.8616365"],["-119.0536373","35.8609085"],["-119.0537313","35.8600816"],["-119.0537781","35.8589799"],["-119.0536606","35.8362563"],["-119.0531863","35.7568358"],["-119.0531484","35.755788"],["-119.0531076","35.7553002"],["-119.0530132","35.7543585"],["-119.0528117","35.7522943"],["-119.0527767","35.7516347"],["-119.0527677","35.7513023"],["-119.0527685","35.7509962"],["-119.0527852","35.7506546"],["-119.0528121","35.7503083"],["-119.0528766","35.7498888"],["-119.0529525","35.7494356"],["-119.0530613","35.7489622"],["-119.0531741","35.7485361"],["-119.053301","35.7481137"],["-119.0535085","35.7475034"],["-119.0537826","35.7468017"],["-119.0540179","35.7462636"],["-119.0545536","35.7453103"],["-119.0568718","35.7413297"],["-119.0578833","35.7395868"],["-119.0584624","35.7384531"],["-119.0586811","35.7379333"],["-119.058862","35.7373807"],["-119.0590014","35.7367788"],["-119.0592328","35.7357291"],["-119.0593824","35.7351179"],["-119.0597322","35.7340231"],["-119.0639311","35.7216634"],["-119.0640842","35.721286"],["-119.0642306","35.7209176"],["-119.0643635","35.7205598"],["-119.0644803","35.720207"],["-119.0645901","35.7198492"],["-119.0646893","35.7194983"],["-119.0647809","35.7191241"],["-119.0648618","35.7187589"],["-119.0649836","35.7180734"],["-119.0650644","35.7174451"],["-119.0650979","35.717046"],["-119.0651219","35.7166135"],["-119.0651329","35.7162365"],["-119.0651307","35.715801"],["-119.0651178","35.7154085"],["-119.0650732","35.7148113"],["-119.0650294","35.7144228"],["-119.0649576","35.7139346"],["-119.0648625","35.7134136"],["-119.0647578","35.7129435"],["-119.0646693","35.7125871"],["-119.0645999","35.71234"],["-119.0644306","35.711797"],["-119.0643453","35.7115348"],["-119.0627756","35.7045967"],["-119.062671","35.7040541"],["-119.0626222","35.7037397"],["-119.0625887","35.7034743"],["-119.0625587","35.7031698"],["-119.0625362","35.7028788"],["-119.0625224","35.70261"],["-119.0625156","35.7023463"],["-119.0625146","35.7020345"],["-119.0625203","35.7017739"],["-119.0625329","35.7014873"],["-119.0625523","35.7011966"],["-119.0625773","35.7009339"],["-119.0626116","35.7006358"],["-119.0626559","35.7003334"],["-119.062698","35.7000819"],["-119.0627531","35.6997923"],["-119.0628166","35.6995026"],["-119.0628816","35.6992324"],["-119.0629562","35.6989559"],["-119.0630422","35.6986639"],["-119.0631211","35.6984164"],["-119.0632163","35.6981396"],["-119.0633164","35.6978689"],["-119.0634346","35.6975709"],["-119.0635343","35.6973382"],["-119.063658","35.6970636"],["-119.0637827","35.6968034"],["-119.0639678","35.6964168"],["-119.0646388","35.694881"],["-119.0652663","35.6933027"],["-119.0655333","35.692579"],["-119.0658312","35.6917278"],["-119.066118","35.6908557"],["-119.0664842","35.6896697"],["-119.0668848","35.6882255"],["-119.0671947","35.6872064"],["-119.0686615","35.6822385"],["-119.0690685","35.6809248"],["-119.069389","35.6801564"],["-119.0696867","35.6795098"],["-119.0715943","35.6756163"],["-119.0719142","35.6749712"],["-119.0739724","35.6708195"],["-119.0751594","35.668365"],["-119.0754005","35.6677109"],["-119.0756434","35.6668055"],["-119.0759281","35.6658347"],["-119.0791569","35.6544542"],["-119.0793478","35.6538602"],["-119.0795079","35.6533125"],["-119.0796394","35.6528171"],["-119.0797822","35.6522311"],["-119.0798937","35.6517177"],["-119.080011","35.6511061"],["-119.0800994","35.6505747"],["-119.0801829","35.6499898"],["-119.0802442","35.6494614"],["-119.080298","35.6488903"],["-119.0803346","35.648352"],["-119.0803605","35.6477731"],["-119.0803707","35.6472603"],["-119.0803722","35.646827"],["-119.0803706","35.6463779"],["-119.0805144","35.6454311"],["-119.0806097","35.6449694"],["-119.0807314","35.644463"],["-119.0808532","35.6440286"],["-119.0809721","35.6436482"],["-119.08111","35.6432437"],["-119.0813192","35.6426974"],["-119.0814264","35.6424427"],["-119.0815512","35.642159"],["-119.0816624","35.6419205"],["-119.0817927","35.6416546"],["-119.0819493","35.6413506"],["-119.0821099","35.641058"],["-119.0823511","35.6406445"],["-119.0826536","35.6401183"],["-119.0829471","35.6395709"],["-119.083189","35.6390917"],["-119.0834439","35.6385518"],["-119.0836747","35.6380297"],["-119.0838394","35.6376389"],["-119.0840954","35.6369652"],["-119.0842353","35.6365727"],["-119.0844547","35.635894"],["-119.0845927","35.6354166"],["-119.0847503","35.6348208"],["-119.0848723","35.6343"],["-119.0849842","35.6337599"],["-119.0850839","35.6332019"],["-119.0851617","35.6326918"],["-119.0852478","35.6319963"],["-119.0852774","35.6316767"],["-119.0853146","35.6311958"],["-119.0853459","35.6305669"],["-119.0853529","35.6301007"],["-119.08535","35.6295229"],["-119.0853164","35.6286498"],["-119.0852878","35.6278747"],["-119.0852558","35.6269032"],["-119.0852473","35.6260835"],["-119.0852541","35.625252"],["-119.0852758","35.6244677"],["-119.0853161","35.6236242"],["-119.0853667","35.6228574"],["-119.0854751","35.621608"],["-119.0855359","35.6210997"],["-119.0856427","35.6202597"],["-119.0857652","35.6194256"],["-119.0858967","35.6186391"],["-119.0860452","35.6178454"],["-119.0862049","35.6170643"],["-119.0865427","35.6155329"],["-119.0866864","35.6148452"],["-119.0867875","35.6142752"],["-119.0868671","35.6137538"],["-119.0869383","35.6132091"],["-119.0870004","35.6126157"],["-119.0870439","35.612079"],["-119.0870744","35.6115338"],["-119.0870929","35.6109158"],["-119.0870962","35.610431"],["-119.0870868","35.6098268"],["-119.0870641","35.6093021"],["-119.0870247","35.6086965"],["-119.0869913","35.6083003"],["-119.0869531","35.6078654"],["-119.0869508","35.6073209"],["-119.0869636","35.6067326"],["-119.0869893","35.6062009"],["-119.087034","35.6056373"],["-119.0870975","35.6050595"],["-119.0871798","35.6044668"],["-119.0872807","35.6038796"],["-119.0873924","35.6033271"],["-119.0874908","35.6028929"],["-119.0888271","35.5977072"],["-119.0890223","35.5968883"],["-119.089162","35.595861"],["-119.0893404","35.5942988"],["-119.0895079","35.5928846"],["-119.0899697","35.5884817"],["-119.0900663","35.5876561"],["-119.090093","35.5873578"],["-119.090111","35.5870906"],["-119.0901206","35.5868268"],["-119.0901226","35.5865621"],["-119.0901172","35.5862549"],["-119.0901052","35.5859975"],["-119.0900844","35.5857076"],["-119.0900586","35.5854583"],["-119.0900238","35.5851884"],["-119.08998","35.5849039"],["-119.0899239","35.5846036"],["-119.0898634","35.5843236"],["-119.0897961","35.5840514"],["-119.0897278","35.5838002"],["-119.0896441","35.5835238"],["-119.0895353","35.5831951"],["-119.0894578","35.5829883"],["-119.0893573","35.5827327"],["-119.089243","35.5824619"],["-119.0891227","35.5821859"],["-119.0890158","35.5819342"],["-119.0888872","35.5816097"],["-119.0886722","35.5810207"],["-119.0885286","35.5805651"],["-119.0883795","35.5800389"],["-119.0882663","35.5795798"],["-119.0881762","35.5791696"],["-119.0881229","35.5788846"],["-119.0880701","35.5785534"],["-119.0880051","35.5780624"],["-119.0879561","35.577587"],["-119.0879294","35.5772304"],["-119.0879153","35.5769095"],["-119.0879095","35.5765649"],["-119.0879057","35.5762947"],["-119.0880048","35.5634566"],["-119.0880554","35.5556461"],["-119.0880398","35.5551592"],["-119.0879751","35.5543916"],["-119.0879161","35.5539219"],["-119.0877616","35.5530078"],["-119.0876356","35.5522758"],["-119.0875181","35.5516139"],["-119.086773","35.5477052"],["-119.0866369","35.5470072"],["-119.0863012","35.5451911"],["-119.086046","35.5438474"],["-119.0857854","35.5426166"],["-119.0791819","35.5166782"],["-119.0787923","35.5153224"],["-119.0786611","35.5148496"],["-119.078459","35.5141134"],["-119.0780166","35.5122755"],["-119.0777062","35.5107482"],["-119.0774958","35.5095384"],["-119.0774209","35.5090217"],["-119.07731","35.5082144"],["-119.077209","35.5073593"],["-119.0771284","35.506555"],["-119.077062","35.5057502"],["-119.0770017","35.5047814"],["-119.0769746","35.5042623"],["-119.0769227","35.5030284"],["-119.0750107","35.4799771"],["-119.0746645","35.4740848"],["-119.0746936","35.458682"],["-119.0747061","35.4566306"],["-119.074711","35.4539348"],["-119.0746962","35.4497722"],["-119.0747273","35.447959"],["-119.0746813","35.4414373"],["-119.074758","35.441309"],["-119.0747684","35.4412657"],["-119.0747784","35.4411"],["-119.074906","35.4377243"],["-119.0749562","35.4373334"],["-119.0750145","35.4371139"],["-119.0750815","35.4368924"],["-119.0751605","35.4366728"],["-119.0752923","35.4363777"],["-119.0757338","35.435509"],["-119.0759105","35.4351299"],["-119.0759433","35.4350355"],["-119.0759742","35.4349328"],["-119.0760091","35.4347638"],["-119.0760337","35.434578"],["-119.076058","35.4342996"],["-119.0760521","35.4341969"],["-119.07604","35.434081"],["-119.0760169","35.4339415"],["-119.0759796","35.4337579"],["-119.0759218","35.4335641"],["-119.0758539","35.433399"],["-119.0757776","35.4332404"],["-119.0756926","35.4330925"],["-119.0756002","35.4329414"],["-119.0754265","35.4327182"],["-119.0751267","35.4324203"],["-119.0749696","35.4322873"],["-119.0747954","35.4321677"],["-119.0745605","35.432015"],["-119.0744974","35.4319757"],["-119.0741519","35.4317695"],["-119.0736201","35.4314825"],["-119.0732853","35.4312885"],["-119.073026","35.4311152"],["-119.0728672","35.4309819"],["-119.0725989","35.4307362"],["-119.0720311","35.4301922"],["-119.0716794","35.4299595"],["-119.0707637","35.4291346"],["-119.0698194","35.4283797"],["-119.0689747","35.4277966"],["-119.0680014","35.4272201"],["-119.0671657","35.4267762"],["-119.0663646","35.4263976"],["-119.0651563","35.425877"],["-119.0644777","35.4255295"],["-119.0642082","35.4253696"],["-119.063652","35.4249816"],["-119.0633184","35.4247098"],["-119.0625536","35.4239597"],["-119.0623039","35.4236705"],["-119.0621184","35.4234225"],["-119.0619319","35.4231385"],["-119.0615518","35.4224516"],["-119.0612925","35.4218597"],["-119.0610007","35.4208865"],["-119.0606921","35.4198251"],["-119.0605373","35.4192295"],["-119.0604887","35.4189627"],["-119.0604584","35.4188287"],["-119.0603817","35.4185496"],["-119.0602856","35.4182483"],["-119.0601751","35.4179465"],["-119.0600769","35.4177027"],["-119.0599632","35.417447"],["-119.0598393","35.4171854"],["-119.059494","35.4165705"],["-119.0591538","35.4160659"],["-119.0589727","35.4158384"],["-119.0585798","35.4153845"],["-119.0485598","35.4064008"],["-119.0480819","35.4058124"],["-119.0477838","35.4053421"],["-119.0474532","35.4046998"],["-119.0472219","35.4043307"],["-119.0470017","35.4040701"],["-119.0467458","35.403829"],["-119.0462074","35.4034505"],["-119.0460477","35.4033659"],["-119.0459196","35.403306"],["-119.0457795","35.4032489"],["-119.0456276","35.4031952"],["-119.0454999","35.4031555"],["-119.0452489","35.4030956"],["-119.0451528","35.4030769"],["-119.0450692","35.4030625"],["-119.0448462","35.4030302"],["-119.0440147","35.4029536"],["-119.0437595","35.4029257"],["-119.0435739","35.4028993"],["-119.043422","35.4028708"],["-119.0432677","35.4028337"],["-119.0431184","35.4027917"],["-119.0429719","35.4027458"],["-119.0428311","35.4026928"],["-119.0426815","35.4026313"],["-119.0387794","35.400808"],["-119.0375582","35.4001856"],["-119.0365446","35.3996073"],["-119.0358959","35.3992022"],["-119.0353528","35.3988359"],["-119.0337582","35.3976615"],["-119.0333534","35.3973578"],["-119.0332609","35.3972884"],["-119.0331711","35.3972208"],["-119.0328731","35.3969979"],["-119.0301387","35.3949188"],["-119.0269476","35.3924847"],["-119.0257082","35.3915378"],["-119.0225563","35.3891369"],["-119.0220264","35.3887634"],["-119.0155171","35.3848994"],["-119.0152778","35.384741"],["-119.01524","35.3834428"],["-119.0152659","35.3786502"],["-119.0152912","35.3781277"],["-119.0164122","35.3781081"],["-119.0180627","35.3781177"],["-119.0187465","35.3781472"],["-119.0187502","35.3786578"],["-119.0187464","35.3791449"],["-119.0187505","35.380989"],["-119.0189068","35.3809951"],["-119.0194349","35.3809949"],["-119.019996","35.380994"],["-119.0206131","35.380994"],["-119.0208776","35.3809931"],["-119.0211818","35.3809929"],["-119.0214799","35.3809912"],["-119.0223214","35.3809919"],["-119.022885","35.380991"],["-119.0235123","35.380991"],["-119.0246584","35.3809896"],["-119.027441","35.3810194"],["-119.0277837","35.3810262"],["-119.02796","35.3810477"],["-119.0281526","35.381083"],["-119.0285701","35.381167"],["-119.0286915","35.3811849"],["-119.028881","35.3811926"],["-119.0293243","35.3811993"],["-119.0304548","35.3811953"],["-119.0337924","35.3812214"],["-119.034281","35.3812174"],["-119.0346658","35.3811989"],["-119.0351968","35.381163"],["-119.0364785","35.3810577"],["-119.0367563","35.3810335"],["-119.0369965","35.3810187"],["-119.0371709","35.3810153"],["-119.0372932","35.3810198"],["-119.037581","35.381032"],["-119.037767","35.3810458"],["-119.0380678","35.3810836"],["-119.038581","35.3811663"],["-119.0388615","35.381235"],["-119.039091","35.3813103"],["-119.0393644","35.3814199"],["-119.0403785","35.3818701"],["-119.0421283","35.3826828"],["-119.0424792","35.3828254"],["-119.0431197","35.3830694"],["-119.0432743","35.3831232"],["-119.0434452","35.3832086"],["-119.0436262","35.3832439"],["-119.0438376","35.3832698"],["-119.0441425","35.3832983"],["-119.044583","35.3833255"],["-119.0450527","35.383349"],["-119.0452995","35.3833629"],["-119.0454324","35.3833826"],["-119.0455275","35.3834132"],["-119.0456069","35.3834557"],["-119.0456729","35.3835274"],["-119.0457194","35.3836322"],["-119.045725","35.3837416"],["-119.0456761","35.3838677"],["-119.0455771","35.3839581"],["-119.0453899","35.3840339"],["-119.0452232","35.3840362"],["-119.0450607","35.3840001"],["-119.0449192","35.3839099"],["-119.0448388","35.3838254"],["-119.0447747","35.3836319"],["-119.0447218","35.3828763"],["-119.0446258","35.3818965"],["-119.0445887","35.3782148"],["-119.0445238","35.3758877"],["-119.0444904","35.3754552"],["-119.0442803","35.3742116"],["-119.0441978","35.3737787"],["-119.0440009","35.3730968"],["-119.0437519","35.3724451"],["-119.0435229","35.3718622"],["-119.042139","35.368765"],["-119.0418541","35.3680629"],["-119.0416224","35.3675502"],["-119.0408167","35.3657109"],["-119.0404539","35.3648708"],["-119.0403247","35.3645387"],["-119.0400136","35.3636965"],["-119.0398726","35.3632441"],["-119.0397715","35.3628121"],["-119.0396623","35.362157"],["-119.0396195","35.3618393"],["-119.0395848","35.3615075"],["-119.03955","35.3609088"],["-119.0396081","35.3514213"],["-119.0397923","35.3318123"],["-119.0397703","35.3314408"],["-119.0397316","35.3310166"],["-119.0396793","35.3306108"],["-119.0396006","35.3301289"],["-119.0391624","35.3283403"],["-119.0360727","35.3165822"],["-119.035525","35.3146182"],["-119.0351853","35.3131784"],["-119.0348789","35.3120873"],["-119.0223542","35.2641357"],["-119.0210192","35.2590706"],["-119.0152253","35.23686"],["-119.0149274","35.2357703"],["-119.0145498","35.234346"],["-119.0138284","35.2298443"],["-119.0105834","35.2096592"],["-119.0101232","35.2064232"],["-119.0096298","35.2034106"],["-119.0052329","35.1758609"],["-119.0050341","35.1748605"],["-119.0048258","35.1740659"],["-118.9980481","35.1526191"],["-118.9976064","35.1512405"],["-118.9951933","35.1436261"],["-118.9887342","35.1232236"],["-118.9883329","35.1220316"],["-118.9880609","35.1212158"],["-118.9872079","35.1183964"],["-118.9829016","35.1047733"],["-118.9796941","35.0946934"],["-118.9528187","35.0097698"],["-118.9526212","35.009115"],["-118.9524257","35.0084413"],["-118.9396606","34.9679837"],["-118.9310898","34.9407904"],["-118.9310121","34.9404923"],["-118.9308609","34.9397176"],["-118.9307568","34.938901"],["-118.9307379","34.9386001"],["-118.9307282","34.9383273"],["-118.9307213","34.9380313"],["-118.9307173","34.9374732"],["-118.9307256","34.9371787"],["-118.9307435","34.9368481"],["-118.9307862","34.9362479"],["-118.9308427","34.934857"],["-118.930895","34.934267"],["-118.9309127","34.9334111"],["-118.930909","34.9329499"],["-118.9308953","34.9326163"],["-118.9308379","34.9323508"],["-118.9307469","34.9320661"],["-118.9306625","34.9318692"],["-118.9305509","34.9316363"],["-118.9303177","34.9312473"],["-118.9300825","34.9309267"],["-118.9297558","34.930497"],["-118.9294055","34.930026"],["-118.9291328","34.9295579"],["-118.9289322","34.9290622"],["-118.9288062","34.928718"],["-118.9287212","34.9283993"],["-118.9286564","34.9278983"],["-118.9286424","34.9274718"],["-118.9286847","34.9270429"],["-118.9287203","34.9263241"],["-118.928695","34.9259307"],["-118.9286538","34.9256153"],["-118.9285989","34.9253759"],["-118.9284941","34.9251145"],["-118.928365","34.9248451"],["-118.9282257","34.924605"],["-118.9279853","34.9242815"],["-118.9276868","34.9239043"],["-118.9272819","34.9235694"],["-118.9268016","34.9232085"],["-118.9263616","34.9227778"],["-118.9260907","34.922443"],["-118.9257205","34.921805"],["-118.9254908","34.9213059"],["-118.9253629","34.9206308"],["-118.9251977","34.9192381"],["-118.9251514","34.9168744"],["-118.9250752","34.9164156"],["-118.9249471","34.9160103"],["-118.9247715","34.9155982"],["-118.9244403","34.9149736"],["-118.9239641","34.9141129"],["-118.9237494","34.9135868"],["-118.9235871","34.9129318"],["-118.9235495","34.9124059"],["-118.9235705","34.9119462"],["-118.9237155","34.9113068"],["-118.924039","34.9102547"],["-118.9241692","34.9096121"],["-118.9241935","34.9091518"],["-118.9239691","34.9059194"],["-118.9237923","34.9048704"],["-118.9235119","34.9037873"],["-118.9232377","34.9026959"],["-118.923019","34.9016038"],["-118.9228647","34.9007698"],["-118.9227019","34.8998839"],["-118.9225913","34.8994588"],["-118.9222681","34.8985919"],["-118.9220624","34.8981793"],["-118.9218473","34.8978077"],["-118.9215953","34.897412"],["-118.9213131","34.8970369"],["-118.9208123","34.8964261"],["-118.9197295","34.8951688"],["-118.9190525","34.8944055"],["-118.9187017","34.8940652"],["-118.9179038","34.8933758"],["-118.916819","34.8924782"],["-118.9151462","34.8911098"],["-118.9148374","34.8909206"],["-118.9145339","34.8907429"],["-118.9142723","34.8906084"],["-118.9139775","34.8904711"],["-118.913634","34.8903323"],["-118.9133253","34.8902249"],["-118.9129604","34.8901155"],["-118.9123604","34.889971"],["-118.9115959","34.8897976"],["-118.9110845","34.8896776"],["-118.9107657","34.8895888"],["-118.9104766","34.8894955"],["-118.9102072","34.8893936"],["-118.9099686","34.8892948"],["-118.9057292","34.8871897"],["-118.9039339","34.8862647"],["-118.9032344","34.8858001"],["-118.9026269","34.8852947"],["-118.9020643","34.8847134"],["-118.901736","34.8842944"],["-118.901362","34.8837265"],["-118.9002361","34.8816204"],["-118.8999707","34.8811655"],["-118.8996556","34.880714"],["-118.8992834","34.8802596"],["-118.8987191","34.8796581"],["-118.8981634","34.879165"],["-118.8973954","34.878595"],["-118.8946346","34.8766137"],["-118.8939369","34.8760925"],["-118.8932855","34.8755631"],["-118.8927246","34.875068"],["-118.8920874","34.8744734"],["-118.8812201","34.8637053"],["-118.8806389","34.8630995"],["-118.8794984","34.8618"],["-118.8789601","34.861117"],["-118.8648108","34.8418087"],["-118.8638816","34.8405167"],["-118.863692","34.8402111"],["-118.8635126","34.83984"],["-118.8632523","34.839088"],["-118.863167","34.8387087"],["-118.8631131","34.838302"],["-118.8630896","34.8378874"],["-118.8631185","34.8375135"],["-118.8631712","34.8371778"],["-118.863251","34.8368201"],["-118.8633679","34.8364545"],["-118.863504","34.8361027"],["-118.8636486","34.8358074"],["-118.8638148","34.835533"],["-118.8640257","34.8352236"],["-118.864258","34.8349111"],["-118.8650166","34.834146"],["-118.8809076","34.818812"],["-118.8823731","34.8173805"],["-118.8826744","34.8170838"],["-118.8830479","34.8166862"],["-118.8833995","34.8162511"],["-118.8837139","34.8158037"],["-118.8839866","34.8153393"],["-118.8841963","34.8149097"],["-118.8843786","34.8144628"],["-118.8845284","34.8140157"],["-118.8846488","34.8135427"],["-118.8847242","34.8130934"],["-118.8847582","34.812662"],["-118.8847614","34.8122512"],["-118.8847334","34.8118329"],["-118.8846802","34.8114153"],["-118.884592","34.8109859"],["-118.8844711","34.8105476"],["-118.8843156","34.810134"],["-118.8841383","34.8097245"],["-118.8839527","34.8093461"],["-118.8837357","34.8089771"],["-118.883467","34.8085941"],["-118.8831839","34.80824"],["-118.8828646","34.8078945"],["-118.8825109","34.8075498"],["-118.8722941","34.7987974"],["-118.8718923","34.798485"],["-118.8714935","34.7982079"],["-118.8710542","34.797941"],["-118.8705988","34.7977024"],["-118.8701562","34.797496"],["-118.8696863","34.7973132"],["-118.8691643","34.7971327"],["-118.8686901","34.7970053"],["-118.868151","34.796885"],["-118.8672078","34.796751"],["-118.8388079","34.7932198"],["-118.8382664","34.7931266"],["-118.8377237","34.7930069"],["-118.8372435","34.7928744"],["-118.8367367","34.7927143"],["-118.8361847","34.7925146"],["-118.8356903","34.7923031"],["-118.8352435","34.7920893"],["-118.8347736","34.7918358"],["-118.8343195","34.7915624"],["-118.8339013","34.7912797"],["-118.8304216","34.7886508"],["-118.8286743","34.7873391"],["-118.8279146","34.7868147"],["-118.8095369","34.7757139"],["-118.8087112","34.775179"],["-118.8075774","34.7743936"],["-118.8064989","34.7735726"],["-118.8059146","34.7730975"],["-118.8054132","34.7726684"],["-118.80399","34.7713564"],["-118.8030577","34.7704291"],["-118.8026373","34.7699754"],["-118.8018493","34.7690638"],["-118.8014816","34.7686067"],["-118.8011177","34.7681272"],["-118.8003193","34.7670188"],["-118.799596","34.765876"],["-118.7974303","34.762077"],["-118.7971442","34.7615489"],["-118.7969177","34.7610742"],["-118.7967179","34.7605824"],["-118.7965173","34.7600344"],["-118.7963537","34.7594652"],["-118.7962399","34.7590014"],["-118.7961117","34.7582033"],["-118.7960671","34.7578489"],["-118.796034","34.7574938"],["-118.795987","34.7558218"],["-118.7958458","34.7491191"],["-118.7958885","34.7479759"],["-118.7959322","34.7474307"],["-118.7960009","34.7467614"],["-118.7960896","34.7460869"],["-118.7975896","34.7376331"],["-118.7991514","34.7288295"],["-118.7992482","34.7281659"],["-118.7993224","34.7274969"],["-118.7994038","34.7262446"],["-118.7994178","34.7255839"],["-118.7994141","34.7249875"],["-118.7993898","34.7243486"],["-118.7985979","34.7140901"],["-118.798539","34.7136719"],["-118.7984461","34.713215"],["-118.7983353","34.7128077"],["-118.7981914","34.7123743"],["-118.7980422","34.7119978"],["-118.7941006","34.7030224"],["-118.7939333","34.7025993"],["-118.7937915","34.7022254"],["-118.793633","34.7017922"],["-118.7925587","34.6985342"],["-118.7923753","34.6980713"],["-118.7921845","34.6976459"],["-118.7892914","34.6923169"],["-118.7876702","34.6893579"],["-118.7874416","34.6889782"],["-118.7872043","34.6886373"],["-118.7869357","34.6882944"],["-118.7845189","34.685541"],["-118.7803239","34.6807589"],["-118.7799766","34.6803194"],["-118.7796849","34.6798436"],["-118.7793847","34.679287"],["-118.7787651","34.6780233"],["-118.7784505","34.677512"],["-118.7781109","34.6770245"],["-118.7777175","34.6765501"],["-118.7773249","34.6761504"],["-118.7768682","34.6757212"],["-118.7763348","34.6752874"],["-118.7758214","34.6749239"],["-118.7753037","34.6746056"],["-118.7747268","34.6743058"],["-118.7742259","34.6740825"],["-118.7736561","34.6738547"],["-118.7731707","34.6736923"],["-118.7727116","34.6735571"],["-118.7701521","34.6728614"],["-118.7695546","34.6726711"],["-118.7689909","34.6724619"],["-118.7685387","34.6722716"],["-118.7681968","34.6721075"],["-118.7678238","34.671917"],["-118.7674849","34.6717249"],["-118.7671071","34.671475"],["-118.7664142","34.6709274"],["-118.7660175","34.6705783"],["-118.7656026","34.6701722"],["-118.7651785","34.6697076"],["-118.7647068","34.6690345"],["-118.7635709","34.6670876"],["-118.76316","34.6663679"],["-118.7628545","34.6659445"],["-118.7624165","34.6653977"],["-118.7618078","34.6647819"],["-118.7612314","34.6642845"],["-118.7604025","34.6637"],["-118.7585988","34.662524"],["-118.7579567","34.6620696"],["-118.7572506","34.6614745"],["-118.7565597","34.6607276"],["-118.7559644","34.6599254"],["-118.7555111","34.6591337"],["-118.7552234","34.6584337"],["-118.7549942","34.6576966"],["-118.7548663","34.6569944"],["-118.7548312","34.6565285"],["-118.7548137","34.6558065"],["-118.754834","34.6546304"],["-118.754831","34.6537754"],["-118.7548008","34.653218"],["-118.7547012","34.6526042"],["-118.7545471","34.6519772"],["-118.7544314","34.6516502"],["-118.750552","34.6427599"],["-118.7503421","34.6423271"],["-118.7500731","34.641843"],["-118.7496966","34.6413125"],["-118.7493023","34.6408495"],["-118.7488504","34.6403811"],["-118.7481277","34.6397547"],["-118.747646","34.6393875"],["-118.7471869","34.6390842"],["-118.7413432","34.6359033"],["-118.7408083","34.6356657"],["-118.7403102","34.6354776"],["-118.7398251","34.635327"],["-118.7388742","34.6350703"],["-118.7384484","34.634968"],["-118.737961","34.6348859"],["-118.7367861","34.6347475"],["-118.7357567","34.6346917"],["-118.7347392","34.6346731"],["-118.7340645","34.6346439"],["-118.7335663","34.6346111"],["-118.7330837","34.6345693"],["-118.7327572","34.6345135"],["-118.7323154","34.6343952"],["-118.7317975","34.6342096"],["-118.7311887","34.6339418"],["-118.7305305","34.6336368"],["-118.7301586","34.633444"],["-118.7297992","34.633238"],["-118.729256","34.6328423"],["-118.7288517","34.6324938"],["-118.7282258","34.631944"],["-118.7276564","34.6314086"],["-118.7267423","34.6304403"],["-118.7258358","34.6294239"],["-118.7254763","34.6290588"],["-118.724656","34.6283062"],["-118.724186","34.6279371"],["-118.7227883","34.6271591"],["-118.7210495","34.6258525"],["-118.7202442","34.6251614"],["-118.7197643","34.6246053"],["-118.7193803","34.6241248"],["-118.7191091","34.6237565"],["-118.7188498","34.6233518"],["-118.7182324","34.6223123"],["-118.7174488","34.6209492"],["-118.7149708","34.6164931"],["-118.7140963","34.6148969"],["-118.7132208","34.6132369"],["-118.7129962","34.6126191"],["-118.7128289","34.6120789"],["-118.71274","34.6116711"],["-118.7126683","34.6112002"],["-118.712625","34.6106398"],["-118.7124458","34.6053947"],["-118.7123189","34.6046183"],["-118.7121097","34.6037145"],["-118.7117015","34.6023333"],["-118.7115576","34.6017041"],["-118.7114846","34.6010083"],["-118.7114809","34.600116"],["-118.7115315","34.5996505"],["-118.7117016","34.5987136"],["-118.7120519","34.5969167"],["-118.7121744","34.5961586"],["-118.7122143","34.5957486"],["-118.7122354","34.5953467"],["-118.7121615","34.5940893"],["-118.7118779","34.5901124"],["-118.7117681","34.5890196"],["-118.7116254","34.5882874"],["-118.7114538","34.5877112"],["-118.7111872","34.5870194"],["-118.7108063","34.586323"],["-118.7104599","34.5858105"],["-118.7100598","34.5852831"],["-118.709469","34.5846315"],["-118.7087753","34.5840353"],["-118.7047217","34.5811097"],["-118.7038634","34.5804679"],["-118.7033995","34.5800854"],["-118.7029493","34.5796311"],["-118.7023778","34.5789616"],["-118.7018011","34.5782756"],["-118.7012746","34.5776634"],["-118.7008429","34.5771449"],["-118.7003297","34.576579"],["-118.6997513","34.5760545"],["-118.6991131","34.5755911"],["-118.6984461","34.5751401"],["-118.6978444","34.5748222"],["-118.6973195","34.5745758"],["-118.6960786","34.5740903"],["-118.6939843","34.5733218"],["-118.6919253","34.5725605"],["-118.691388","34.5723158"],["-118.6908159","34.572022"],["-118.6902781","34.5716914"],["-118.6896106","34.5712201"],["-118.6890678","34.570775"],["-118.6885477","34.5703076"],["-118.6881296","34.5697966"],["-118.6873597","34.56865"],["-118.6871094","34.5682033"],["-118.6866313","34.5672801"],["-118.6861509","34.5663312"],["-118.6858223","34.5656539"],["-118.6852305","34.5646774"],["-118.6848974","34.5642374"],["-118.6844542","34.563778"],["-118.6839843","34.5633491"],["-118.6833612","34.5628333"],["-118.6814643","34.5615287"],["-118.6806091","34.5609135"],["-118.6797904","34.5603258"],["-118.6767927","34.5581934"],["-118.6755264","34.5572142"],["-118.6734506","34.555432"],["-118.672425","34.5545622"],["-118.6720121","34.5542632"],["-118.671592","34.5539845"],["-118.6705091","34.5533584"],["-118.6675504","34.5517407"],["-118.6629776","34.5492477"],["-118.6547176","34.5446294"],["-118.653876","34.5441236"],["-118.6532963","34.5437296"],["-118.6528303","34.5433601"],["-118.6523879","34.5429652"],["-118.6514353","34.541945"],["-118.6468037","34.536845"],["-118.6458266","34.5357433"],["-118.6454813","34.5352647"],["-118.6451667","34.5347838"],["-118.6449462","34.5343108"],["-118.6447282","34.5338155"],["-118.6445693","34.5333404"],["-118.6444485","34.5328857"],["-118.6433943","34.5277615"],["-118.6431452","34.5268677"],["-118.6429355","34.5263134"],["-118.6426719","34.5257689"],["-118.6423459","34.5252239"],["-118.6393866","34.5211945"],["-118.6312994","34.5103246"],["-118.6286489","34.5067116"],["-118.6283691","34.5062264"],["-118.6281498","34.5057811"],["-118.6279663","34.5053359"],["-118.6278228","34.5048943"],["-118.6277018","34.5044604"],["-118.6276167","34.5040152"],["-118.6275638","34.5035446"],["-118.6274328","34.5021614"],["-118.6273658","34.5016808"],["-118.6272729","34.5012743"],["-118.6271493","34.5008489"],["-118.6269942","34.5004002"],["-118.6268028","34.4999379"],["-118.6265808","34.4994815"],["-118.6263477","34.4990665"],["-118.6261214","34.4987172"],["-118.6165561","34.4858784"],["-118.6162635","34.4854293"],["-118.6159796","34.4849494"],["-118.6157181","34.4844548"],["-118.6154668","34.483906"],["-118.6152531","34.483371"],["-118.6150697","34.482836"],["-118.6149089","34.4822748"],["-118.6147874","34.4817347"],["-118.6146884","34.4811482"],["-118.6146229","34.4805947"],["-118.6145917","34.4799929"],["-118.6145909","34.4794343"],["-118.6146217","34.4788182"],["-118.6146849","34.4782451"],["-118.6150965","34.4762781"],["-118.6167015","34.469103"],["-118.616768","34.4687083"],["-118.6168064","34.4683012"],["-118.6168232","34.4679108"],["-118.6168181","34.4674913"],["-118.6167934","34.4671132"],["-118.6167425","34.4667176"],["-118.6166705","34.46633"],["-118.6165728","34.4659356"],["-118.6164569","34.4655438"],["-118.6162803","34.4650661"],["-118.6158123","34.4639004"],["-118.6156829","34.4635184"],["-118.6155685","34.4631234"],["-118.6154833","34.4627333"],["-118.6154275","34.4623469"],["-118.6153851","34.4619505"],["-118.6153705","34.4615564"],["-118.6153785","34.4611802"],["-118.6154104","34.4607795"],["-118.6154541","34.4604016"],["-118.6160518","34.4572704"],["-118.6161088","34.4568705"],["-118.6161408","34.4564815"],["-118.6161558","34.4556817"],["-118.6161282","34.4552689"],["-118.616084","34.4548828"],["-118.6160215","34.4544718"],["-118.6159478","34.4540839"],["-118.6158415","34.4537087"],["-118.6157185","34.4533081"],["-118.6155839","34.4529351"],["-118.615434","34.452571"],["-118.6152466","34.4521821"],["-118.6150543","34.4518156"],["-118.6148696","34.4515057"],["-118.6146692","34.4511921"],["-118.614445","34.4508782"],["-118.6114637","34.4470201"],["-118.611187","34.4467"],["-118.6108872","34.4463825"],["-118.6105979","34.4461034"],["-118.6102581","34.4458048"],["-118.6099186","34.4455416"],["-118.609551","34.4452775"],["-118.6091819","34.4450394"],["-118.6071607","34.4439594"],["-118.6007978","34.4406434"],["-118.5986072","34.4394905"],["-118.5982236","34.4392624"],["-118.5978055","34.4389985"],["-118.5974361","34.4387479"],["-118.5970584","34.4384737"],["-118.5966678","34.4381752"],["-118.5951506","34.4368978"],["-118.5881253","34.4309273"],["-118.5878155","34.4306471"],["-118.587411","34.430214"],["-118.587223","34.429996"],["-118.5870457","34.4297802"],["-118.5868991","34.4295796"],["-118.5867392","34.4293477"],["-118.586606","34.429141"],["-118.5863147","34.4286246"],["-118.5798756","34.4163281"],["-118.5796921","34.4159451"],["-118.5795038","34.4155313"],["-118.5792953","34.4150455"],["-118.5785264","34.4130855"],["-118.5780042","34.4117766"],["-118.5730501","34.4004458"],["-118.5729242","34.4000938"],["-118.5727653","34.3995827"],["-118.5725168","34.3986052"],["-118.5722672","34.3975639"],["-118.5722341","34.3968765"],["-118.5721433","34.3961535"],["-118.5721319","34.3960084"],["-118.5721372","34.3959009"],["-118.5721541","34.3957855"],["-118.5721861","34.3956704"],["-118.5722308","34.3955634"],["-118.5722862","34.3954542"],["-118.5723752","34.3953169"],["-118.5726946","34.3948658"],["-118.572745","34.3947878"],["-118.5727859","34.3946991"],["-118.5728183","34.3946001"],["-118.5728341","34.3945041"],["-118.5728414","34.3944169"],["-118.5728307","34.3943191"],["-118.5727786","34.3940569"],["-118.5727704","34.3940206"],["-118.5727449","34.3939192"],["-118.5726831","34.3938697"],["-118.5726057","34.3938547"],["-118.5723859","34.3938604"],["-118.5679321","34.3945858"],["-118.5669781","34.3947041"],["-118.5662939","34.3947251"],["-118.5650941","34.3947205"],["-118.5585669","34.3947386"],["-118.5574818","34.394742"],["-118.5571703","34.3947524"],["-118.5567326","34.3947916"],["-118.5562561","34.3948585"],["-118.5558246","34.3949438"],["-118.5554963","34.3950266"],["-118.5550074","34.3951822"],["-118.5545724","34.3953474"],["-118.554173","34.395535"],["-118.5538367","34.3957232"],["-118.5531397","34.3961635"],["-118.5530982","34.3961339"],["-118.552964","34.3960077"],["-118.5527218","34.3957721"],["-118.5525478","34.3955856"],["-118.5523614","34.3953616"],["-118.549296","34.391392"],["-118.5489044","34.3909134"],["-118.5488177","34.3908198"],["-118.5485808","34.3905786"],["-118.5477782","34.3898838"],["-118.5474747","34.3896206"],["-118.5470079","34.3891674"],["-118.5468225","34.3889545"],["-118.5467412","34.3888613"],["-118.546623","34.3887154"],["-118.5462398","34.3882197"],["-118.5460876","34.3880181"],["-118.5458009","34.3876528"],["-118.5454854","34.387815"],["-118.5424321","34.3895639"],["-118.5421854","34.3897057"],["-118.5421735","34.3897116"],["-118.5412426","34.3902519"],["-118.5415962","34.3906954"],["-118.5418091","34.3909504"],["-118.5419448","34.3911068"],["-118.5420086","34.3911618"],["-118.5420975","34.3912115"],["-118.5420092","34.3911619"],["-118.5419451","34.3911072"],["-118.5417966","34.3909357"],["-118.5416038","34.3907044"],["-118.5413514","34.3903965"],["-118.540073","34.3888625"],["-118.5395334","34.388214"],["-118.5388115","34.3873539"],["-118.5379539","34.3863341"],["-118.5374973","34.3864649"],["-118.5372107","34.3866143"],["-118.5363744","34.3870502"],["-118.5341043","34.3882144"],["-118.5331939","34.3870387"],["-118.5314568","34.3847859"],["-118.5313068","34.3847151"],["-118.5304644","34.3836194"],["-118.5300554","34.3831209"],["-118.5298529","34.3829082"],["-118.5294285","34.3823749"],["-118.5280839","34.3806678"],["-118.5279426","34.3804806"],["-118.5278738","34.3803803"],["-118.5278093","34.3802569"],["-118.5277846","34.3801956"],["-118.5277601","34.3801166"],["-118.5277362","34.3800283"],["-118.5277121","34.3799091"],["-118.5276772","34.3797676"],["-118.5276383","34.3796749"],["-118.5275762","34.3795683"],["-118.5274094","34.3793307"],["-118.5272701","34.3791543"],["-118.5268548","34.3786148"],["-118.5267104","34.3784406"],["-118.526651","34.3783766"],["-118.526536","34.3782796"],["-118.5263995","34.3781802"],["-118.5261311","34.3780209"],["-118.5260039","34.3779135"],["-118.5258502","34.3777572"],["-118.5248071","34.3764132"],["-118.5247569","34.3763477"],["-118.5246334","34.3761809"],["-118.5246165","34.3760936"],["-118.5246048","34.3760533"],["-118.5245867","34.3760144"],["-118.5244864","34.3758748"],["-118.5241886","34.3754805"],["-118.5240635","34.3754207"],["-118.5226831","34.3748216"],["-118.5226217","34.3747954"],["-118.5219547","34.3744989"],["-118.5216854","34.3743756"],["-118.5211122","34.3741301"],["-118.5206374","34.3739284"],["-118.5191921","34.373316"],["-118.5183244","34.3728637"],["-118.5149659","34.3708223"],["-118.5148149","34.3707218"],["-118.5121293","34.3690529"],["-118.51151","34.3686728"],["-118.5090643","34.3671542"],["-118.5083375","34.3666915"],["-118.507394","34.366185"],["-118.507058","34.3660322"],["-118.5068711","34.36596"],["-118.5065579","34.3658552"],["-118.5063492","34.3657833"],["-118.5053924","34.3655326"],["-118.5047258","34.3653675"],["-118.5042987","34.3652331"],["-118.5046203","34.3641"],["-118.5048355","34.3634741"],["-118.5049148","34.3632739"],["-118.5050795","34.3629176"],["-118.5051664","34.3627454"],["-118.505267","34.3625481"],["-118.5055115","34.3620293"],["-118.505829","34.3613331"],["-118.5061241","34.360667"],["-118.5062178","34.3604111"],["-118.5063008","34.3601707"],["-118.5063814","34.3599031"],["-118.506448","34.3596321"],["-118.5065003","34.3593958"],["-118.5065459","34.3591429"],["-118.506586","34.3588594"],["-118.5066144","34.3586008"],["-118.5066333","34.3583383"],["-118.5066406","34.3580758"],["-118.5066363","34.3578208"],["-118.5066229","34.357546"],["-118.5065953","34.3572591"],["-118.5065638","34.3570113"],["-118.5065173","34.3567418"],["-118.5064684","34.3564933"],["-118.5064036","34.3562301"],["-118.5063266","34.3559659"],["-118.506226","34.3556537"],["-118.5060794","34.3552326"],["-118.5056411","34.3540294"],["-118.505329","34.3531809"],["-118.5044982","34.3508431"],["-118.5042897","34.3501917"],["-118.5042231","34.3499386"],["-118.5041674","34.3496749"],["-118.5041206","34.3494223"],["-118.5040793","34.3491696"],["-118.5040491","34.3489002"],["-118.5040287","34.3486478"],["-118.5040122","34.3480883"],["-118.5040194","34.3478106"],["-118.5040316","34.3475736"],["-118.5040537","34.3472884"],["-118.5041259","34.3467558"],["-118.5041752","34.3465054"],["-118.5042367","34.3462368"],["-118.5043062","34.3459744"],["-118.504384","34.34571"],["-118.504469","34.3454577"],["-118.5045677","34.3451878"],["-118.5047497","34.3447357"],["-118.5080572","34.3367693"],["-118.5081522","34.3365235"],["-118.5082407","34.3362761"],["-118.5083","34.3360471"],["-118.5083529","34.3358158"],["-118.5084336","34.3353208"],["-118.5084564","34.3350471"],["-118.5084507","34.334507"],["-118.5084271","34.3342393"],["-118.5083909","34.3339914"],["-118.5083446","34.3337386"],["-118.5082818","34.3334767"],["-118.5082118","34.333242"],["-118.5081288","34.3330082"],["-118.5080428","34.3327921"],["-118.5062826","34.3291343"],["-118.5061341","34.3288186"],["-118.5058294","34.3282424"],["-118.5056049","34.3278543"],["-118.5050483","34.3269626"],["-118.5047028","34.3264526"],["-118.5044493","34.3261035"],["-118.5041864","34.3257765"],["-118.5037071","34.3252947"],["-118.5032355","34.3249535"],["-118.5027997","34.3246114"],["-118.5022502","34.3242095"],["-118.495603","34.3204619"],["-118.4942741","34.3196906"],["-118.4938072","34.3193604"],["-118.4933667","34.3190342"],["-118.4929198","34.3186508"],["-118.4923976","34.3181859"],["-118.4918489","34.3176565"],["-118.491363","34.3171312"],["-118.490817","34.3164739"],["-118.4872841","34.311659"],["-118.4854592","34.3092747"],["-118.482638","34.3062813"],["-118.4775378","34.3009435"],["-118.4761012","34.2994813"],["-118.4653412","34.2886712"],["-118.4646892","34.288077"],["-118.4641672","34.2876924"],["-118.4633928","34.2871999"],["-118.4603353","34.2853394"],["-118.4596468","34.2848756"],["-118.4593131","34.2846105"],["-118.4589589","34.2843078"],["-118.4585801","34.2839535"],["-118.458021","34.2833227"],["-118.457381","34.2823934"],["-118.4565419","34.2809888"],["-118.4556175","34.2794368"],["-118.4552957","34.2789819"],["-118.4549436","34.2785605"],["-118.4546483","34.2782352"],["-118.4543206","34.2779229"],["-118.452572","34.2762961"],["-118.4516348","34.2753902"],["-118.4505105","34.2742957"],["-118.4500747","34.2737918"],["-118.4497359","34.2733677"],["-118.4484746","34.2716012"],["-118.4479902","34.2709699"],["-118.4477069","34.2706503"],["-118.4473733","34.270302"],["-118.4444089","34.267448"],["-118.4436926","34.2667662"],["-118.4433991","34.2664317"],["-118.4430189","34.2659043"],["-118.4426262","34.2653392"],["-118.4417858","34.2640296"],["-118.4412607","34.2632033"],["-118.4409041","34.2626545"],["-118.4406085","34.2621803"],["-118.4403109","34.2617367"],["-118.4399813","34.2613159"],["-118.4395146","34.2607826"],["-118.4383089","34.2595692"],["-118.4346051","34.2560648"],["-118.4232386","34.2453132"],["-118.4223919","34.2444984"],["-118.4145325","34.2370931"],["-118.4121619","34.2348567"],["-118.4116841","34.2342892"],["-118.4111977","34.2337196"],["-118.411037","34.2335193"],["-118.4107419","34.2330689"],["-118.4106241","34.232853"],["-118.4105259","34.2326577"],["-118.4104281","34.2324351"],["-118.4102531","34.2319245"],["-118.4101596","34.2315123"],["-118.4101056","34.2311065"],["-118.4100819","34.2307509"],["-118.41009","34.2303915"],["-118.4101378","34.2299832"],["-118.4102373","34.2294908"],["-118.4104038","34.2288388"],["-118.4105364","34.22835"],["-118.4109129","34.2270927"],["-118.4110095","34.2267933"],["-118.4110536","34.2265868"],["-118.4110761","34.2264428"],["-118.4111","34.2262689"],["-118.4111193","34.22611"],["-118.4111297","34.2258496"],["-118.4110662","34.2248537"],["-118.4110109","34.2245286"],["-118.4108419","34.2238406"],["-118.406237","34.2068013"],["-118.4059234","34.2058387"],["-118.405676","34.2052214"],["-118.4051427","34.2041211"],["-118.403897","34.2015672"],["-118.4036783","34.2010405"],["-118.4035536","34.200661"],["-118.4034506","34.2003005"],["-118.40336","34.1998473"],["-118.4032624","34.1991766"],["-118.4031155","34.197979"],["-118.4017931","34.1881684"],["-118.4016499","34.1872609"],["-118.4015761","34.1869484"],["-118.4015019","34.1866852"],["-118.4013999","34.1864187"],["-118.4012457","34.1860655"],["-118.4010652","34.1856843"],["-118.400767","34.1851959"],["-118.400487","34.1847947"],["-118.4000537","34.1842915"],["-118.3997009","34.1839336"],["-118.3987522","34.1831656"],["-118.3977087","34.182324"],["-118.3967976","34.1814596"],["-118.3962801","34.1808911"],["-118.3958487","34.1803393"],["-118.3956082","34.1799544"],["-118.3954151","34.1796236"],["-118.3951552","34.179119"],["-118.3942145","34.177181"],["-118.3938349","34.1764329"],["-118.3935091","34.1759134"],["-118.3930365","34.1752649"],["-118.3928864","34.1750777"],["-118.3926442","34.1748361"],["-118.3917523","34.1739914"],["-118.3912829","34.1736115"],["-118.39059","34.1731367"],["-118.3864005","34.1703592"],["-118.3860894","34.1700983"],["-118.3857758","34.1698157"],["-118.3854915","34.1695454"],["-118.3852387","34.1692833"],["-118.3848491","34.1688462"],["-118.3843703","34.1682178"],["-118.3840652","34.167742"],["-118.3837431","34.1670893"],["-118.3817973","34.1626156"],["-118.3810337","34.1608417"],["-118.3797457","34.1578967"],["-118.3794917","34.157335"],["-118.3790823","34.1565211"],["-118.3785777","34.1557128"],["-118.3778656","34.154736"],["-118.3750255","34.1512031"],["-118.3745235","34.1505593"],["-118.3739284","34.1497988"],["-118.3734367","34.1491841"],["-118.3731258","34.1488475"],["-118.3727808","34.1485682"],["-118.3701009","34.1466468"],["-118.3697352","34.1463711"],["-118.3693899","34.1460956"],["-118.3691463","34.1458795"],["-118.3688717","34.1456031"],["-118.3686269","34.1453214"],["-118.3684221","34.1450525"],["-118.3682492","34.1447961"],["-118.368111","34.1445459"],["-118.3679858","34.1442976"],["-118.3670295","34.1422035"],["-118.366495","34.1410394"],["-118.3663615","34.1407958"],["-118.3662207","34.140567"],["-118.3660696","34.1403414"],["-118.3659109","34.1401263"],["-118.3657419","34.1399138"],["-118.3655458","34.139695"],["-118.3653403","34.139497"],["-118.3651419","34.1393124"],["-118.3649116","34.1391124"],["-118.364705","34.1389408"],["-118.3603629","34.1357875"],["-118.3596173","34.1353234"],["-118.3593814","34.1351931"],["-118.3591215","34.1350583"],["-118.35887","34.134942"],["-118.3585871","34.134827"],["-118.3558414","34.1339262"],["-118.3552524","34.133765"],["-118.3549335","34.1336876"],["-118.3532859","34.1333189"],["-118.3529862","34.1332384"],["-118.3526947","34.1331475"],["-118.352417","34.1330495"],["-118.352126","34.1329306"],["-118.3516306","34.1326965"],["-118.3511412","34.1324218"],["-118.3508641","34.1322401"],["-118.3506375","34.1320752"],["-118.3504276","34.1319068"],["-118.3502099","34.1317175"],["-118.3472232","34.12883"],["-118.3459645","34.1275967"],["-118.345522","34.1271525"],["-118.3453309","34.1269453"],["-118.3451533","34.1267334"],["-118.3449832","34.1265076"],["-118.3443649","34.1255931"],["-118.3442242","34.1253955"],["-118.344043","34.1251498"],["-118.3438759","34.1249497"],["-118.3436875","34.1247364"],["-118.3434821","34.1245324"],["-118.3421813","34.1234083"],["-118.3412275","34.1225829"],["-118.3403886","34.1218512"],["-118.3401703","34.1216398"],["-118.339591","34.1210338"],["-118.3394011","34.1208166"],["-118.338884","34.120182"],["-118.3387233","34.1199677"],["-118.3385604","34.119731"],["-118.3384222","34.1195148"],["-118.3382759","34.1192725"],["-118.3381493","34.1190491"],["-118.3378967","34.1185548"],["-118.3377859","34.1183206"],["-118.3376855","34.1180887"],["-118.3375851","34.1178357"],["-118.3374954","34.1175897"],["-118.3374139","34.1173408"],["-118.337129","34.116276"],["-118.3368337","34.1150928"],["-118.3364991","34.1137954"],["-118.3364214","34.1135564"],["-118.3362865","34.1131905"],["-118.3361038","34.1127289"],["-118.335905","34.1123234"],["-118.3357772","34.112084"],["-118.3356396","34.1118441"],["-118.3355222","34.1116513"],["-118.3352262","34.1112008"],["-118.3350472","34.1109433"],["-118.3348714","34.1107198"],["-118.334694","34.1105178"],["-118.3344935","34.1103147"],["-118.334272","34.1101092"],["-118.3340604","34.1099282"],["-118.3335682","34.1095443"],["-118.333334","34.1093818"],["-118.333095","34.1092221"],["-118.3262465","34.105125"],["-118.3260403","34.1050147"],["-118.3258311","34.1049121"],["-118.325623","34.1048195"],["-118.3253648","34.1047163"],["-118.3251139","34.1046248"],["-118.3248534","34.104542"],["-118.3245902","34.1044704"],["-118.3242925","34.1044019"],["-118.3239931","34.1043464"],["-118.3236676","34.1043022"],["-118.3233414","34.1042742"],["-118.3230094","34.1042565"],["-118.3217333","34.1042211"],["-118.3214008","34.104204"],["-118.3211069","34.10418"],["-118.3208042","34.104141"],["-118.3205064","34.1040886"],["-118.3202167","34.1040253"],["-118.3199414","34.1039506"],["-118.319662","34.1038656"],["-118.319392","34.1037659"],["-118.3191251","34.1036533"],["-118.3188677","34.1035311"],["-118.3186123","34.1033979"],["-118.3183684","34.1032558"],["-118.3181409","34.1031084"],["-118.3179134","34.1029387"],["-118.3177077","34.1027686"],["-118.3174977","34.1025816"],["-118.3172932","34.1023816"],["-118.3171207","34.102194"],["-118.3169552","34.1019906"],["-118.3167971","34.1017716"],["-118.3159827","34.1004075"],["-118.314949","34.0986612"],["-118.3147257","34.0982599"],["-118.3146336","34.0980872"],["-118.3145004","34.0978739"],["-118.3143413","34.0976334"],["-118.3141794","34.0974093"],["-118.3138376","34.0969778"],["-118.3136634","34.0967828"],["-118.3132591","34.0963726"],["-118.3130318","34.0961592"],["-118.3128239","34.0959756"],["-118.3125922","34.0957872"],["-118.3123482","34.0955974"],["-118.312095","34.0954167"],["-118.311859","34.095256"],["-118.3092791","34.0936285"],["-118.3087413","34.0932853"],["-118.3085254","34.0931326"],["-118.3083028","34.09296"],["-118.3080932","34.0927842"],["-118.3078919","34.0925942"],["-118.3076998","34.092397"],["-118.307513","34.0921824"],["-118.3073526","34.0919822"],["-118.3072012","34.0917704"],["-118.3070169","34.0914839"],["-118.3059425","34.0897138"],["-118.3054135","34.08885"],["-118.3052588","34.0886221"],["-118.3050912","34.088394"],["-118.30493","34.0881878"],["-118.3047314","34.087952"],["-118.3045545","34.087752"],["-118.3043495","34.0875402"],["-118.3041355","34.0873316"],["-118.3039375","34.0871473"],["-118.3037078","34.0869477"],["-118.3034883","34.0867703"],["-118.303261","34.0865974"],["-118.2993055","34.0838748"],["-118.2982479","34.0831326"],["-118.2973771","34.0824856"],["-118.2971414","34.0823053"],["-118.296671","34.0819672"],["-118.296425","34.0818023"],["-118.2961821","34.081651"],["-118.2959256","34.0815018"],["-118.2956874","34.0813726"],["-118.295444","34.0812471"],["-118.2936508","34.0804145"],["-118.2931863","34.0801847"],["-118.291386","34.0791758"],["-118.2911248","34.0790371"],["-118.2908458","34.0789044"],["-118.2905897","34.0787916"],["-118.2903067","34.0786814"],["-118.2900085","34.0785804"],["-118.2894527","34.0784267"],["-118.2891288","34.0783537"],["-118.2888181","34.0783082"],["-118.2884857","34.0782659"],["-118.2878139","34.0782053"],["-118.2865186","34.0780902"],["-118.2857824","34.077999"],["-118.2853289","34.0779244"],["-118.2850206","34.077866"],["-118.2813532","34.0770361"],["-118.2794243","34.0765604"],["-118.2756609","34.0754707"],["-118.2733163","34.0747411"],["-118.2724067","34.0743772"],["-118.2719777","34.0741847"],["-118.2712434","34.0738184"],["-118.2707144","34.0735507"],["-118.2701748","34.0733"],["-118.269867","34.0731691"],["-118.2637763","34.0705457"],["-118.2633996","34.0703952"],["-118.2564579","34.0679232"],["-118.2557956","34.0676549"],["-118.2554492","34.0674953"],["-118.2551366","34.0673383"],["-118.2548142","34.0671686"],["-118.2544913","34.0669843"],["-118.2541909","34.0668021"],["-118.2539221","34.066627"],["-118.2503083","34.0640495"],["-118.2501578","34.0639243"],["-118.2500293","34.0638117"],["-118.2499034","34.0636974"],["-118.2496603","34.0634578"],["-118.249543","34.0633299"],["-118.2472837","34.0606967"],["-118.2468448","34.0602171"],["-118.2465903","34.0599666"],["-118.2463498","34.0597405"],["-118.2460794","34.0595023"],["-118.2455277","34.0590467"],["-118.244726","34.0584197"],["-118.244525","34.0582674"],["-118.2443743","34.058145"],["-118.2442508","34.0579716"],["-118.2437622","34.0575646"],["-118.2434912","34.0573593"],["-118.2428584","34.056948"],["-118.2427039","34.0568496"],["-118.242598","34.0567873"],["-118.2424827","34.056723"],["-118.2418962","34.0563475"],["-118.241528","34.0561078"],["-118.2426369","34.0548948"],["-118.2429353","34.0545817"],["-118.2431081","34.0544024"],["-118.2434201","34.0540769"],["-118.2436175","34.0538664"],["-118.2441019","34.0533496"],["-118.2443555","34.0530693"],["-118.2444624","34.0529565"],["-118.2443089","34.0528455"],["-118.2433929","34.052226"],["-118.2432275","34.0523943"]] } }; 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"); } }); })();