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: [118.44555862328242, -33.02693945387749], 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'] = [115.859538, -31.954683]; 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'] = [121.889812, -33.869092]; 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'] = [ 118.88356777353509, -32.45048789598219]; 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'] = `Inland Route`; markerData[1][2]['popupText'] = `720 km (7 hours 50 minutes*)`; markerData[1][2]['route'] = false; markerData[1][2]['card'] = false; if (typeof markerData[1][3] === 'undefined') { markerData[1][3] = {}; } markerData[1][3]['lonLat'] = [ 116.6060349059505, -34.96853280652995]; 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'] = `Coastal Route`; markerData[1][3]['popupText'] = `1,250 km miles (14 hours 20 minutes*)`; markerData[1][3]['route'] = false; markerData[1][3]['card'] = false; const geojson_1_0 = { type: 'Feature', properties: {}, geometry: { type: 'LineString', coordinates: [["115.8596929","-31.9557873"],["115.8596643","-31.9558552"],["115.859648","-31.9558857"],["115.8596097","-31.9559625"],["115.8592124","-31.9568034"],["115.8591729","-31.9568894"],["115.8591599","-31.9569227"],["115.859163","-31.9569863"],["115.8591312","-31.9570523"],["115.8578682","-31.9566457"],["115.8573842","-31.956476"],["115.8569129","-31.956313"],["115.856685","-31.9562588"],["115.856444","-31.9562147"],["115.8561423","-31.9561761"],["115.8558489","-31.9561654"],["115.8557184","-31.9565824"],["115.8553175","-31.9573615"],["115.8551772","-31.9577549"],["115.855037","-31.958047"],["115.8549008","-31.9583506"],["115.8548493","-31.9584562"],["115.8547959","-31.9584997"],["115.854741","-31.9585165"],["115.854677","-31.9585276"],["115.8545007","-31.9585297"],["115.8536705","-31.9585088"],["115.8534327","-31.9584855"],["115.8532371","-31.9584807"],["115.8528764","-31.9584769"],["115.8526325","-31.958492"],["115.8524643","-31.9585101"],["115.8523763","-31.9585176"],["115.852305","-31.9585125"],["115.8522469","-31.9585002"],["115.8521765","-31.9584787"],["115.8521453","-31.9584661"],["115.8520919","-31.9584461"],["115.851981","-31.9584128"],["115.8518539","-31.9583769"],["115.8516927","-31.9583415"],["115.8514952","-31.9583063"],["115.8512578","-31.958282"],["115.8509846","-31.9582721"],["115.8507245","-31.9582875"],["115.8504371","-31.958309"],["115.8501924","-31.9583625"],["115.849897","-31.9584521"],["115.8496573","-31.9585647"],["115.8494303","-31.9586804"],["115.8492635","-31.9587794"],["115.8491019","-31.958895"],["115.8489068","-31.9590485"],["115.84868","-31.9592591"],["115.8484455","-31.9594913"],["115.8480956","-31.9599484"],["115.8479487","-31.9602286"],["115.8477747","-31.9606202"],["115.8476534","-31.9609297"],["115.8475113","-31.9614345"],["115.8473229","-31.962389"],["115.8466355","-31.9661284"],["115.8464351","-31.967209"],["115.8464028","-31.9676345"],["115.8464062","-31.9678427"],["115.8464286","-31.9680547"],["115.8464741","-31.9682925"],["115.8465338","-31.9685278"],["115.8466031","-31.9687378"],["115.8467167","-31.9690065"],["115.8471737","-31.9699852"],["115.8473178","-31.9703276"],["115.8474264","-31.9706534"],["115.8475284","-31.9710433"],["115.8476177","-31.9714633"],["115.8478105","-31.9726258"],["115.8486164","-31.9782744"],["115.8487095","-31.979119"],["115.8487452","-31.9793775"],["115.8487995","-31.9796475"],["115.8488697","-31.9799023"],["115.848948","-31.9801211"],["115.8490363","-31.9803319"],["115.849182","-31.9806206"],["115.8494502","-31.9810457"],["115.8505756","-31.9826814"],["115.8509038","-31.9831743"],["115.8512531","-31.983735"],["115.8515066","-31.9841659"],["115.8519116","-31.9849093"],["115.8521213","-31.9853211"],["115.8525313","-31.9861954"],["115.853025","-31.9873268"],["115.853331","-31.9880052"],["115.8542955","-31.9900101"],["115.854477","-31.990408"],["115.8546189","-31.9907587"],["115.8547456","-31.9910947"],["115.8548449","-31.9913836"],["115.854924","-31.9916319"],["115.8549876","-31.9918494"],["115.8551113","-31.9923225"],["115.8551836","-31.9926499"],["115.8553029","-31.9933"],["115.8553808","-31.9939947"],["115.8554063","-31.9943956"],["115.8554229","-31.994839"],["115.8554131","-31.995395"],["115.8553854","-31.9960236"],["115.8553468","-31.9965767"],["115.8552964","-31.997055"],["115.8552211","-31.9975814"],["115.8551407","-31.9980666"],["115.8550417","-31.998555"],["115.8548615","-31.9992686"],["115.8542713","-32.0013297"],["115.8540944","-32.0019516"],["115.8540345","-32.0022169"],["115.8539801","-32.0025164"],["115.8539459","-32.0027907"],["115.8539196","-32.0031657"],["115.8539242","-32.0034703"],["115.8539427","-32.0037281"],["115.8539969","-32.0041191"],["115.8540388","-32.0043252"],["115.8541034","-32.004574"],["115.8541778","-32.0048408"],["115.8542847","-32.0051561"],["115.8543878","-32.0054071"],["115.855053","-32.0067302"],["115.8555926","-32.0078655"],["115.8563353","-32.0096241"],["115.857015","-32.0112913"],["115.8573763","-32.0122295"],["115.857495","-32.0125904"],["115.8576692","-32.0132744"],["115.8577553","-32.0137245"],["115.8578059","-32.0140717"],["115.8578378","-32.0144136"],["115.8578582","-32.0147436"],["115.8578748","-32.0151186"],["115.8578718","-32.0154248"],["115.8578072","-32.0163148"],["115.8575766","-32.0191735"],["115.8575726","-32.0196135"],["115.8575866","-32.0198287"],["115.8576137","-32.0200744"],["115.8576562","-32.0203659"],["115.8577068","-32.0206769"],["115.8577602","-32.0209017"],["115.8578453","-32.0211929"],["115.8579443","-32.0214907"],["115.8580549","-32.0217636"],["115.858175","-32.0220313"],["115.8583922","-32.0224598"],["115.8587844","-32.0230809"],["115.8599974","-32.0248596"],["115.8603064","-32.0253406"],["115.8603959","-32.0255044"],["115.8604922","-32.0257084"],["115.8606719","-32.0261137"],["115.8607579","-32.0263413"],["115.8608474","-32.0266335"],["115.860913","-32.0269194"],["115.8609544","-32.0271773"],["115.8610185","-32.0276939"],["115.8610258","-32.027951"],["115.8610248","-32.0281969"],["115.8610107","-32.0284388"],["115.8609861","-32.0286937"],["115.8609479","-32.0289289"],["115.8609043","-32.0291378"],["115.860855","-32.0293382"],["115.8607943","-32.0295461"],["115.8607232","-32.0297392"],["115.8606476","-32.0299295"],["115.8605601","-32.0301262"],["115.8604201","-32.0304009"],["115.8602579","-32.0307007"],["115.8566409","-32.0368652"],["115.8563898","-32.0373362"],["115.8562391","-32.0376589"],["115.8561096","-32.0379327"],["115.8559805","-32.0382368"],["115.8558417","-32.0386413"],["115.8557108","-32.0390741"],["115.8556086","-32.0395532"],["115.8555589","-32.0398336"],["115.8548686","-32.0446507"],["115.8546853","-32.045571"],["115.8545208","-32.0462501"],["115.8543192","-32.0470047"],["115.8540818","-32.0478165"],["115.8537244","-32.0489597"],["115.8527208","-32.0520031"],["115.8523666","-32.0531151"],["115.8521016","-32.054077"],["115.851913","-32.0548664"],["115.8517258","-32.0557768"],["115.8516279","-32.0564201"],["115.8515268","-32.0575294"],["115.8505567","-32.0678164"],["115.8503975","-32.0695438"],["115.850019","-32.0732841"],["115.849861","-32.0748902"],["115.8492599","-32.08162"],["115.8492059","-32.0829163"],["115.8492","-32.0846028"],["115.8493542","-32.092426"],["115.8494114","-32.0940154"],["115.8494558","-32.0950486"],["115.8494579","-32.0950973"],["115.8494738","-32.0953171"],["115.8495713","-32.0963568"],["115.850207","-32.1016696"],["115.851267","-32.1061666"],["115.8517156","-32.1080024"],["115.8525369","-32.1108113"],["115.8528871","-32.111737"],["115.8534802","-32.1133556"],["115.8554793","-32.1185068"],["115.85593","-32.1195852"],["115.857006","-32.1219745"],["115.8574937","-32.1229627"],["115.8583973","-32.1247445"],["115.8586702","-32.1253965"],["115.8590652","-32.1263098"],["115.8592669","-32.1268317"],["115.8594132","-32.1273109"],["115.859593","-32.1280706"],["115.8597591","-32.1288357"],["115.8598908","-32.1295549"],["115.8600338","-32.1307234"],["115.8600717","-32.1312675"],["115.860121","-32.1334287"],["115.8601038","-32.13486"],["115.8601945","-32.1453126"],["115.8601955","-32.1462735"],["115.8601545","-32.1470415"],["115.8600317","-32.14804"],["115.8598644","-32.1490368"],["115.859597","-32.1500965"],["115.8587522","-32.1529773"],["115.8585211","-32.1536755"],["115.8572888","-32.157762"],["115.8569221","-32.1590681"],["115.8566756","-32.1602466"],["115.8565636","-32.1613322"],["115.8565476","-32.1624446"],["115.856603","-32.1641"],["115.8566923","-32.1662992"],["115.8568899","-32.1711798"],["115.8569842","-32.1735657"],["115.8570954","-32.1762598"],["115.8573437","-32.1828832"],["115.8574449","-32.1856355"],["115.8574818","-32.1871168"],["115.857457","-32.1885733"],["115.8573806","-32.1901048"],["115.8571888","-32.1917867"],["115.856922","-32.193435"],["115.8564847","-32.1953108"],["115.8559042","-32.1972711"],["115.8550908","-32.1994626"],["115.8500319","-32.2112018"],["115.8495241","-32.2125852"],["115.8493068","-32.2133562"],["115.8492074","-32.2137472"],["115.8490708","-32.2143644"],["115.8488145","-32.2156381"],["115.8486828","-32.2167616"],["115.8485764","-32.2179685"],["115.8485086","-32.2191002"],["115.8485068","-32.2197661"],["115.848588","-32.2206728"],["115.8487624","-32.2219521"],["115.8489601","-32.2231921"],["115.8491431","-32.2242958"],["115.8492794","-32.2250913"],["115.8496287","-32.2273382"],["115.8508583","-32.2348756"],["115.8527252","-32.2466568"],["115.8529799","-32.2507623"],["115.853062","-32.2528347"],["115.8532096","-32.2555082"],["115.8532894","-32.257243"],["115.8533295","-32.2591944"],["115.853305","-32.2601099"],["115.8532071","-32.2608478"],["115.8530759","-32.2615002"],["115.8529544","-32.2619697"],["115.8527101","-32.2627823"],["115.85212","-32.2640241"],["115.8515711","-32.264931"],["115.8499988","-32.2667898"],["115.8431425","-32.2741799"],["115.8420806","-32.2753731"],["115.841479","-32.2761563"],["115.840906","-32.277053"],["115.840459","-32.2779501"],["115.8401803","-32.278673"],["115.8365496","-32.2916224"],["115.8315546","-32.3093945"],["115.8310717","-32.310839"],["115.8299041","-32.3140208"],["115.8274503","-32.3204702"],["115.8270696","-32.3216587"],["115.8269569","-32.3221577"],["115.8268871","-32.3226447"],["115.8267972","-32.3234872"],["115.8267706","-32.3242829"],["115.8268127","-32.3250765"],["115.826953","-32.3260636"],["115.8271516","-32.3268087"],["115.8274015","-32.3275257"],["115.8277339","-32.3282782"],["115.8281717","-32.3291123"],["115.8287957","-32.3300301"],["115.8300992","-32.3318251"],["115.8326139","-32.3353042"],["115.8332174","-32.3362202"],["115.8336115","-32.3369333"],["115.8339221","-32.3376283"],["115.834169","-32.3383214"],["115.834453","-32.3394007"],["115.8345536","-32.3399839"],["115.8346296","-32.3406415"],["115.8346417","-32.3439153"],["115.8346098","-32.361601"],["115.8345759","-32.3633121"],["115.8344799","-32.364349"],["115.8343887","-32.3651174"],["115.8342498","-32.3659385"],["115.8340912","-32.3668002"],["115.8338614","-32.3678188"],["115.8329031","-32.3707726"],["115.8314897","-32.374945"],["115.8299862","-32.3793057"],["115.8292861","-32.3813029"],["115.8289725","-32.3824055"],["115.8287346","-32.383453"],["115.8285332","-32.3844994"],["115.8283766","-32.3855551"],["115.82826","-32.3867223"],["115.8280943","-32.3881878"],["115.827694","-32.3917209"],["115.8274562","-32.3934094"],["115.8273009","-32.3942354"],["115.8269413","-32.3957502"],["115.826565","-32.3970995"],["115.8257611","-32.3993751"],["115.8251747","-32.4007438"],["115.8245698","-32.4020144"],["115.8239372","-32.4032088"],["115.8233084","-32.404298"],["115.8225161","-32.4055226"],["115.8216203","-32.4067896"],["115.8201934","-32.4086057"],["115.8139946","-32.4156423"],["115.8127685","-32.4171404"],["115.8121967","-32.4179809"],["115.8116996","-32.4187818"],["115.811299","-32.4195209"],["115.8109562","-32.4202182"],["115.8106243","-32.4210374"],["115.8102884","-32.4220135"],["115.8069434","-32.4345586"],["115.8046138","-32.4456573"],["115.80426","-32.447173"],["115.8040818","-32.447742"],["115.8038275","-32.4483241"],["115.8034798","-32.4490142"],["115.8030033","-32.4497807"],["115.8025769","-32.4503484"],["115.8018941","-32.4511235"],["115.7987831","-32.4540133"],["115.7975834","-32.4552214"],["115.7956538","-32.457539"],["115.7902773","-32.4643421"],["115.7882533","-32.4671391"],["115.7856794","-32.4708943"],["115.7850105","-32.4719442"],["115.7846866","-32.4726931"],["115.7844033","-32.4734878"],["115.7841711","-32.4744218"],["115.7840701","-32.4751166"],["115.7840241","-32.4759885"],["115.7840937","-32.477032"],["115.7849783","-32.4828712"],["115.7850755","-32.4838145"],["115.7851158","-32.4846514"],["115.7851032","-32.4854971"],["115.784951","-32.4867836"],["115.7841943","-32.4912572"],["115.783842","-32.4935612"],["115.7837849","-32.4945227"],["115.7838433","-32.4959883"],["115.7840136","-32.4969105"],["115.7842321","-32.4977986"],["115.7845676","-32.4987516"],["115.7849976","-32.4997099"],["115.7854899","-32.5006123"],["115.7860407","-32.5014289"],["115.7865512","-32.5020984"],["115.7870883","-32.5027213"],["115.7878505","-32.5034697"],["115.7919674","-32.5070295"],["115.7928204","-32.5076858"],["115.7934534","-32.5081357"],["115.7939964","-32.5084804"],["115.7945177","-32.5087862"],["115.7951931","-32.5091619"],["115.8065306","-32.5146211"],["115.8076609","-32.5151993"],["115.8087367","-32.5158596"],["115.8100078","-32.5167782"],["115.8111877","-32.5177812"],["115.8122368","-32.5188796"],["115.8135422","-32.52048"],["115.8141342","-32.5215077"],["115.8146814","-32.5225624"],["115.8152822","-32.5241046"],["115.8154915","-32.5248685"],["115.8156879","-32.5257252"],["115.8159134","-32.527377"],["115.815864","-32.5293285"],["115.8156475","-32.5317251"],["115.8145837","-32.5425255"],["115.8145881","-32.5618802"],["115.8145933","-32.5639675"],["115.814614","-32.5664235"],["115.8146537","-32.5680518"],["115.8146655","-32.568884"],["115.8146677","-32.5697248"],["115.814672","-32.5705437"],["115.8146007","-32.5744754"],["115.8146286","-32.57623"],["115.8147899","-32.5793745"],["115.8148144","-32.5816344"],["115.8146756","-32.5891808"],["115.8146288","-32.610277"],["115.8146638","-32.6130963"],["115.8147096","-32.623558"],["115.8146792","-32.6260762"],["115.8144441","-32.6283255"],["115.8141501","-32.6301626"],["115.8137328","-32.6317869"],["115.8133444","-32.6330224"],["115.8128959","-32.6342244"],["115.8124388","-32.6353457"],["115.8118747","-32.6365178"],["115.8112018","-32.6378288"],["115.810249","-32.6393863"],["115.8084909","-32.6418146"],["115.8018263","-32.6503371"],["115.7972251","-32.6563675"],["115.7765554","-32.6865994"],["115.7674542","-32.6998054"],["115.7637836","-32.7051904"],["115.7575612","-32.7143758"],["115.7570115","-32.7150904"],["115.7546295","-32.7185153"],["115.7536362","-32.7200893"],["115.7528725","-32.7215002"],["115.751995","-32.7232361"],["115.7514321","-32.7246023"],["115.7507364","-32.7265276"],["115.7501329","-32.728755"],["115.7496482","-32.7309589"],["115.7494398","-32.7325105"],["115.7493115","-32.7338286"],["115.7492411","-32.7353379"],["115.749234","-32.7395269"],["115.7493117","-32.7423868"],["115.7492964","-32.743141"],["115.7492944","-32.744003"],["115.749293","-32.7446301"],["115.7493055","-32.7458858"],["115.7492619","-32.7656379"],["115.7492134","-32.7679817"],["115.7490759","-32.76967"],["115.7489145","-32.7708947"],["115.7487811","-32.7717285"],["115.7459668","-32.7864157"],["115.7455705","-32.7888614"],["115.745223","-32.7923937"],["115.7452169","-32.8002538"],["115.7452715","-32.806493"],["115.7451703","-32.8080548"],["115.7449686","-32.8092664"],["115.7446731","-32.810508"],["115.7442402","-32.811795"],["115.7437855","-32.8128444"],["115.7432668","-32.813863"],["115.7428481","-32.8145758"],["115.7426353","-32.8149016"],["115.7423122","-32.8153707"],["115.7419789","-32.8158331"],["115.7416279","-32.816289"],["115.7413036","-32.8166798"],["115.7409107","-32.8171256"],["115.7404373","-32.8176275"],["115.7396272","-32.8184156"],["115.7385276","-32.8193493"],["115.7362352","-32.8209631"],["115.7315212","-32.8238776"],["115.7290871","-32.8254749"],["115.7279005","-32.8265798"],["115.7267422","-32.8278241"],["115.7258372","-32.8291712"],["115.7251232","-32.8303882"],["115.7245346","-32.8317924"],["115.7240622","-32.8332859"],["115.7238727","-32.8342922"],["115.7237668","-32.8356735"],["115.7237939","-32.8371891"],["115.7239818","-32.8384639"],["115.7243183","-32.8396531"],["115.7251318","-32.8419094"],["115.7287591","-32.8514684"],["115.7292929","-32.8537822"],["115.7295453","-32.8557982"],["115.7296094","-32.8573884"],["115.7294532","-32.8591415"],["115.7291872","-32.8608121"],["115.7288589","-32.8621187"],["115.7283785","-32.8636089"],["115.7274715","-32.8654431"],["115.725705","-32.8685154"],["115.7179558","-32.8775937"],["115.7153728","-32.8807318"],["115.71432","-32.8823712"],["115.7138864","-32.8831698"],["115.7132027","-32.884993"],["115.712939","-32.8861052"],["115.7126424","-32.8878073"],["115.7125337","-32.8883487"],["115.7125308","-32.8891739"],["115.7125889","-32.8904567"],["115.712699","-32.8913691"],["115.7128311","-32.892226"],["115.7130449","-32.8931335"],["115.7141213","-32.8965431"],["115.7143474","-32.8972345"],["115.7147526","-32.8987503"],["115.7158683","-32.9035621"],["115.7163414","-32.9058232"],["115.716978","-32.9087186"],["115.7176443","-32.9119434"],["115.7179835","-32.9134016"],["115.7187649","-32.9172415"],["115.7192005","-32.9193221"],["115.7193535","-32.9200038"],["115.7197863","-32.9220129"],["115.7202208","-32.924068"],["115.7204965","-32.9256258"],["115.7206013","-32.9327913"],["115.7210515","-32.9353397"],["115.7249006","-32.9535977"],["115.7253131","-32.9562223"],["115.7255147","-32.9578615"],["115.7256673","-32.9591467"],["115.7258553","-32.9602717"],["115.7264735","-32.9636289"],["115.7312168","-32.9864134"],["115.7313195","-32.9873622"],["115.7314935","-32.9928662"],["115.731574","-32.9949432"],["115.731713","-32.9960557"],["115.7319088","-32.9969352"],["115.7350811","-33.0076395"],["115.7353313","-33.0085906"],["115.7354044","-33.0091154"],["115.7354619","-33.0097655"],["115.735456","-33.011086"],["115.7345753","-33.0259886"],["115.7342971","-33.0284347"],["115.731283","-33.049133"],["115.7310676","-33.0507958"],["115.7310555","-33.0521472"],["115.7310522","-33.053564"],["115.7309417","-33.0544433"],["115.7307577","-33.0553331"],["115.730465","-33.0560953"],["115.7300843","-33.0568331"],["115.7292779","-33.0581825"],["115.7289019","-33.0589216"],["115.7286938","-33.0594736"],["115.7284953","-33.0600902"],["115.7283992","-33.0605681"],["115.7283192","-33.0612401"],["115.7282904","-33.0628021"],["115.7282466","-33.0967798"],["115.7281709","-33.0975071"],["115.7279964","-33.0981803"],["115.7277455","-33.0987756"],["115.7274258","-33.0993522"],["115.7268278","-33.1001086"],["115.7249555","-33.1020682"],["115.7243677","-33.1027811"],["115.7239431","-33.1034425"],["115.7236366","-33.10418"],["115.7235269","-33.1045871"],["115.723446","-33.104997"],["115.7231693","-33.1066488"],["115.7231511","-33.1067633"],["115.7231358","-33.1068664"],["115.7222053","-33.1123977"],["115.7219429","-33.1141915"],["115.7218003","-33.1167772"],["115.7206651","-33.143421"],["115.7200622","-33.1602908"],["115.7198998","-33.1634735"],["115.7198018","-33.1641567"],["115.7195149","-33.1654609"],["115.7176976","-33.1730028"],["115.7172966","-33.1753926"],["115.7172002","-33.1761509"],["115.7171211","-33.1768222"],["115.7170078","-33.1785038"],["115.7170228","-33.1840472"],["115.7171784","-33.1929142"],["115.7172968","-33.2029105"],["115.7173505","-33.203671"],["115.7174153","-33.2043026"],["115.7174918","-33.2047229"],["115.7176223","-33.2052175"],["115.7178107","-33.2057229"],["115.7185202","-33.2072076"],["115.7222392","-33.2146209"],["115.7226228","-33.2153661"],["115.7244172","-33.2189481"],["115.7258779","-33.2218768"],["115.72701","-33.2243153"],["115.7275476","-33.2261166"],["115.7277737","-33.2272225"],["115.7280476","-33.2289192"],["115.7283186","-33.2300934"],["115.7285591","-33.2307333"],["115.7288385","-33.2313884"],["115.7291073","-33.2318686"],["115.7295744","-33.232623"],["115.7304236","-33.2337147"],["115.7309447","-33.234273"],["115.7314737","-33.2347507"],["115.7338008","-33.236508"],["115.7416334","-33.2423233"],["115.7422919","-33.2428384"],["115.7427585","-33.2432362"],["115.7434065","-33.2438477"],["115.7440481","-33.2445021"],["115.7443698","-33.2448483"],["115.7445934","-33.2451032"],["115.7452157","-33.245927"],["115.7457376","-33.2466876"],["115.7461975","-33.2474508"],["115.7465615","-33.24815"],["115.7467557","-33.2485634"],["115.7470655","-33.2493003"],["115.7481331","-33.2523492"],["115.7484317","-33.2531833"],["115.7526251","-33.2652859"],["115.7530253","-33.2666058"],["115.7532533","-33.2676075"],["115.7534116","-33.2684245"],["115.7536492","-33.270125"],["115.7536839","-33.2710932"],["115.7536792","-33.2721079"],["115.7531647","-33.280441"],["115.7530152","-33.2822732"],["115.7529138","-33.2829552"],["115.7527792","-33.2835622"],["115.752573","-33.2841956"],["115.7523753","-33.2847254"],["115.7522101","-33.2850703"],["115.7519099","-33.2855561"],["115.7515571","-33.2861008"],["115.7512709","-33.2865207"],["115.7510085","-33.2868178"],["115.7504305","-33.287461"],["115.7495044","-33.2883137"],["115.7477341","-33.2895615"],["115.7465567","-33.2903603"],["115.7454162","-33.2912236"],["115.7446053","-33.2920273"],["115.7437288","-33.2929431"],["115.7432154","-33.2937503"],["115.7427016","-33.2946856"],["115.7422965","-33.2956037"],["115.7420582","-33.2963288"],["115.7419121","-33.2968991"],["115.7417805","-33.2976519"],["115.7417165","-33.2983249"],["115.7417051","-33.298918"],["115.7417107","-33.2995283"],["115.7418252","-33.3005079"],["115.742169","-33.302489"],["115.7423459","-33.3035658"],["115.742373","-33.3047018"],["115.742301","-33.3055012"],["115.7421565","-33.3062586"],["115.7419152","-33.3071024"],["115.7415395","-33.3079317"],["115.7410693","-33.3087769"],["115.7404954","-33.3095709"],["115.7399641","-33.3101728"],["115.739285","-33.3108874"],["115.7388348","-33.311372"],["115.7385457","-33.3117357"],["115.7382395","-33.3121542"],["115.7379639","-33.3126087"],["115.7375032","-33.3135787"],["115.7370929","-33.3144843"],["115.7367706","-33.3151122"],["115.7364801","-33.315597"],["115.7360783","-33.3161392"],["115.7356973","-33.3165829"],["115.7351517","-33.3171127"],["115.7347006","-33.3174632"],["115.7341003","-33.3179158"],["115.7335812","-33.3182198"],["115.7330928","-33.3184908"],["115.732725","-33.3186691"],["115.7322676","-33.3188599"],["115.7314009","-33.3191436"],["115.7310215","-33.3192478"],["115.7305362","-33.3193609"],["115.7297848","-33.3194784"],["115.7274508","-33.3197769"],["115.7268651","-33.3198977"],["115.7262761","-33.3200361"],["115.7258165","-33.3201791"],["115.7252613","-33.3203682"],["115.724682","-33.3206186"],["115.7240839","-33.3209174"],["115.7198452","-33.3232422"],["115.7189131","-33.3237214"],["115.7177363","-33.324227"],["115.717125","-33.3244389"],["115.7163765","-33.3246785"],["115.7156093","-33.3248896"],["115.7147135","-33.3250946"],["115.7137283","-33.3252601"],["115.7128205","-33.3253764"],["115.7005438","-33.3266362"],["115.6993623","-33.3268153"],["115.69894","-33.3269193"],["115.6980203","-33.3271828"],["115.6974751","-33.3273844"],["115.6970957","-33.3275377"],["115.6967746","-33.327693"],["115.6962014","-33.32801"],["115.6955443","-33.3284454"],["115.6946729","-33.3291068"],["115.6931633","-33.3302737"],["115.6914641","-33.3314816"],["115.6906791","-33.3320555"],["115.6900249","-33.3324733"],["115.6891558","-33.3329426"],["115.6884966","-33.3332729"],["115.688037","-33.3334579"],["115.6876172","-33.3336183"],["115.687019","-33.3338208"],["115.6866139","-33.3339475"],["115.6803423","-33.3357833"],["115.6793527","-33.3360018"],["115.6785305","-33.3361471"],["115.677609","-33.3362548"],["115.6766611","-33.3363078"],["115.6721707","-33.3363093"],["115.6708742","-33.336313"],["115.6701231","-33.3363067"],["115.6693822","-33.3362995"],["115.6689021","-33.336295"],["115.6686573","-33.3363187"],["115.6683536","-33.3364109"],["115.668136","-33.3365206"],["115.6679168","-33.336633"],["115.6678248","-33.3367336"],["115.6677233","-33.3368236"],["115.667522","-33.3369427"],["115.6673051","-33.3370148"],["115.6670692","-33.3370436"],["115.6668317","-33.3370258"],["115.666614","-33.3369657"],["115.6665488","-33.3369394"],["115.6664885","-33.3369074"],["115.6663277","-33.3367978"],["115.6661938","-33.3366581"],["115.6660975","-33.336496"],["115.6660441","-33.3363186"],["115.6660374","-33.3361373"],["115.666077","-33.3359619"],["115.6661583","-33.3357982"],["115.666237","-33.3356966"],["115.6663299","-33.3356072"],["115.6664698","-33.3355106"],["115.6666294","-33.3354357"],["115.6667995","-33.3353867"],["115.6669789","-33.3353637"],["115.6671609","-33.3353675"],["115.6673415","-33.3354005"],["115.6675116","-33.3354587"],["115.6676615","-33.3355396"],["115.6677559","-33.3356095"],["115.6678467","-33.3356866"],["115.6680864","-33.3357604"],["115.6684058","-33.3358852"],["115.6688807","-33.3360142"],["115.6692987","-33.336034"],["115.6721395","-33.3360714"],["115.6721342","-33.3362976"],["115.6708704","-33.336313"],["115.6700339","-33.3363054"],["115.6694317","-33.3363005"],["115.6688984","-33.3362951"],["115.6686553","-33.336319"],["115.668356","-33.33641"],["115.668121","-33.3365281"],["115.6679152","-33.336634"],["115.6678241","-33.3367343"],["115.6677241","-33.3368308"],["115.6676008","-33.3370647"],["115.6674918","-33.3373174"],["115.6674527","-33.3374663"],["115.6674207","-33.3376715"],["115.6674262","-33.3379166"],["115.6674626","-33.3383875"],["115.6674811","-33.3387032"],["115.667536","-33.340071"],["115.6676076","-33.3430014"],["115.6676849","-33.3438316"],["115.667913","-33.3446839"],["115.6685022","-33.3459518"],["115.6687057","-33.3464125"],["115.668851","-33.346993"],["115.6688782","-33.3476781"],["115.6687804","-33.3483372"],["115.6686751","-33.3486558"],["115.6685451","-33.3489523"],["115.668503","-33.3490465"],["115.6684211","-33.3492192"],["115.6682982","-33.3494557"],["115.6678796","-33.350012"],["115.6676346","-33.3503344"],["115.667292","-33.3507799"],["115.6671401","-33.3509808"],["115.666964","-33.3512713"],["115.6668364","-33.3515224"],["115.6668095","-33.3515695"],["115.666762","-33.3517785"],["115.6667148","-33.352085"],["115.6667041","-33.3532794"],["115.6667894","-33.3603458"],["115.6667737","-33.360795"],["115.6667176","-33.3611453"],["115.6666354","-33.3614733"],["115.6665086","-33.3617999"],["115.6663129","-33.3621625"],["115.6661196","-33.3624667"],["115.6658005","-33.3628617"],["115.6655653","-33.3631014"],["115.6652889","-33.3633565"],["115.6649654","-33.3635967"],["115.664492","-33.3638832"],["115.6641598","-33.364058"],["115.6638221","-33.3642022"],["115.6633182","-33.3643624"],["115.662931","-33.3644543"],["115.6625875","-33.3645135"],["115.6622281","-33.3645562"],["115.661742","-33.3645764"],["115.6608773","-33.3645845"],["115.6601751","-33.3645824"],["115.6586794","-33.3645878"],["115.6585613","-33.3645882"],["115.6582774","-33.3645885"],["115.6553643","-33.36458"],["115.655246","-33.3645816"],["115.6551774","-33.3645829"],["115.6499504","-33.3645685"],["115.6487074","-33.3645722"],["115.64606","-33.3645573"],["115.6458619","-33.3645458"],["115.6456376","-33.3645492"],["115.645486","-33.364564"],["115.6453555","-33.3646002"],["115.6452427","-33.3646618"],["115.6452082","-33.3647026"],["115.6451986","-33.3648118"],["115.645187","-33.3649175"],["115.6451879","-33.3650123"],["115.6452107","-33.3651174"],["115.6453264","-33.3654505"],["115.645496","-33.3659412"],["115.6458002","-33.3667833"],["115.6460018","-33.3673645"],["115.6461769","-33.367848"],["115.6464934","-33.3687527"],["115.6467322","-33.3695218"],["115.6469097","-33.3702929"],["115.6470336","-33.3709659"],["115.6471517","-33.371768"],["115.6472357","-33.3730136"],["115.6472569","-33.373785"],["115.6472701","-33.3745601"],["115.647238","-33.3750523"],["115.6472105","-33.3755065"],["115.647169","-33.375908"],["115.6471122","-33.3763305"],["115.6468269","-33.3776015"],["115.6466117","-33.3783966"],["115.646399","-33.3790556"],["115.6436547","-33.3870481"],["115.6411318","-33.3932222"],["115.6407987","-33.3939065"],["115.6402984","-33.3947489"],["115.639521","-33.3961438"],["115.6390663","-33.3970109"],["115.6388238","-33.3976193"],["115.6383606","-33.3992603"],["115.6380686","-33.3999884"],["115.6375785","-33.4009265"],["115.6358499","-33.4040659"],["115.6345346","-33.4060745"],["115.6338395","-33.4068431"],["115.6330995","-33.4075401"],["115.6321352","-33.4082479"],["115.6309189","-33.4091056"],["115.6272012","-33.4117308"],["115.6260919","-33.4125821"],["115.6256196","-33.4130234"],["115.6251017","-33.4135648"],["115.6246","-33.4141496"],["115.6241617","-33.4147484"],["115.6238212","-33.4152798"],["115.6235199","-33.4158179"],["115.6232581","-33.4163911"],["115.6228592","-33.4174143"],["115.617733","-33.4327775"],["115.6173077","-33.4338515"],["115.6168692","-33.4348077"],["115.6145713","-33.43924"],["115.6129225","-33.4421455"],["115.6123131","-33.4430821"],["115.609885","-33.4465342"],["115.6078141","-33.4495826"],["115.6071796","-33.4505915"],["115.6059759","-33.4525952"],["115.6053614","-33.4536074"],["115.6048865","-33.4543385"],["115.6043703","-33.4550889"],["115.6022981","-33.4580402"],["115.6010716","-33.4597107"],["115.5995883","-33.4616532"],["115.5983532","-33.4634931"],["115.5975965","-33.464697"],["115.5968877","-33.4659157"],["115.5955172","-33.468413"],["115.5948012","-33.4696593"],["115.5934943","-33.4717229"],["115.5882236","-33.4792587"],["115.5878823","-33.4797824"],["115.5876217","-33.4802495"],["115.5872291","-33.4810854"],["115.5825529","-33.4912518"],["115.5818461","-33.4926172"],["115.5803264","-33.4954506"],["115.5796157","-33.4967917"],["115.579306","-33.4974577"],["115.5789892","-33.4981926"],["115.5786842","-33.4989577"],["115.5769844","-33.5042752"],["115.5730517","-33.516001"],["115.5729","-33.5165232"],["115.5727633","-33.5170997"],["115.5726714","-33.5177093"],["115.5726239","-33.5183381"],["115.5726063","-33.5193212"],["115.5726373","-33.5215784"],["115.5726326","-33.5228623"],["115.5725559","-33.5237161"],["115.572436","-33.5244644"],["115.5722073","-33.5254182"],["115.5715685","-33.5278571"],["115.571391","-33.5284406"],["115.5711917","-33.5289202"],["115.5709553","-33.5293718"],["115.5705308","-33.5300368"],["115.5700575","-33.5306073"],["115.5696267","-33.5310325"],["115.5658082","-33.5346598"],["115.5651972","-33.535306"],["115.5646134","-33.5360733"],["115.5643061","-33.5365354"],["115.5639985","-33.5370869"],["115.5633045","-33.538737"],["115.5627058","-33.5401431"],["115.5616975","-33.5425488"],["115.5614726","-33.5429847"],["115.5611969","-33.5434354"],["115.5607567","-33.5440842"],["115.5599797","-33.5449902"],["115.5534688","-33.5518154"],["115.5514873","-33.5539581"],["115.5502994","-33.5552226"],["115.5497864","-33.5557265"],["115.5494288","-33.556032"],["115.5485074","-33.5567084"],["115.5450611","-33.5587543"],["115.5423523","-33.5603277"],["115.5413901","-33.5609058"],["115.5406812","-33.5613817"],["115.5397314","-33.5621442"],["115.5293931","-33.5713399"],["115.5270006","-33.5735363"],["115.526276","-33.5744313"],["115.5260425","-33.5747858"],["115.5257814","-33.5753"],["115.5255867","-33.5757479"],["115.5254813","-33.5760099"],["115.5254027","-33.5761868"],["115.5253181","-33.5764039"],["115.5251748","-33.5767993"],["115.525116","-33.5771835"],["115.5245807","-33.5807651"],["115.5243111","-33.582471"],["115.5236535","-33.5843264"],["115.523294","-33.5849958"],["115.5228115","-33.5858401"],["115.5148777","-33.5989472"],["115.5136136","-33.6005142"],["115.5128292","-33.6013721"],["115.5115129","-33.6023388"],["115.500714","-33.608954"],["115.4964039","-33.6113077"],["115.4952091","-33.6119643"],["115.4942799","-33.6124742"],["115.4934804","-33.6128363"],["115.4925362","-33.6131778"],["115.4913896","-33.613474"],["115.4905708","-33.6136372"],["115.4895523","-33.6137318"],["115.485196","-33.6140358"],["115.4840992","-33.6141382"],["115.4835086","-33.6142619"],["115.4827103","-33.6144735"],["115.4819637","-33.6147206"],["115.4812588","-33.6149977"],["115.4800314","-33.6156162"],["115.4792935","-33.616058"],["115.4786522","-33.6165613"],["115.4781812","-33.61697"],["115.4776451","-33.6174625"],["115.4770314","-33.6181012"],["115.4761722","-33.6190415"],["115.4751011","-33.620213"],["115.4739405","-33.6213772"],["115.4723932","-33.6227349"],["115.4627966","-33.6303014"],["115.4577222","-33.6342444"],["115.4554148","-33.6359842"],["115.4539347","-33.6370127"],["115.4528016","-33.637803"],["115.4476156","-33.6409577"],["115.4445729","-33.6426914"],["115.4399248","-33.6453649"],["115.4387792","-33.645936"],["115.4379802","-33.6463259"],["115.4372518","-33.6466522"],["115.4365689","-33.6469194"],["115.4304777","-33.648916"],["115.4292164","-33.6493466"],["115.4284233","-33.6496862"],["115.4275342","-33.6501162"],["115.4264995","-33.6507218"],["115.4225368","-33.6534342"],["115.4203437","-33.6548917"],["115.4191626","-33.6554366"],["115.4183825","-33.6557217"],["115.4175625","-33.6559522"],["115.4168361","-33.6560757"],["115.4140701","-33.6564781"],["115.4128996","-33.6565774"],["115.4114084","-33.6566481"],["115.409044","-33.6566502"],["115.4075013","-33.6564656"],["115.4048126","-33.6558654"],["115.4036173","-33.6556165"],["115.4029591","-33.6555409"],["115.4015341","-33.6554763"],["115.4005348","-33.6555203"],["115.3991155","-33.6557192"],["115.3867658","-33.658161"],["115.3599711","-33.6633943"],["115.3595986","-33.6635651"],["115.3592533","-33.6638294"],["115.3591923","-33.6639359"],["115.359112","-33.6640279"],["115.3589136","-33.6641429"],["115.3587277","-33.6641771"],["115.3586019","-33.6641667"],["115.3583703","-33.664072"],["115.358244","-33.66395"],["115.3581912","-33.663838"],["115.3581861","-33.663634"],["115.3582154","-33.6635184"],["115.3580986","-33.6630799"],["115.3578817","-33.6626673"],["115.3561669","-33.6609226"],["115.355738","-33.6604761"],["115.3551996","-33.660021"],["115.3544015","-33.6594352"],["115.3531615","-33.6585362"],["115.3523407","-33.6579711"],["115.3520674","-33.6577793"],["115.3518483","-33.6575718"],["115.3517139","-33.6574711"],["115.351507","-33.6573928"],["115.3514767","-33.6573903"],["115.3514471","-33.6573917"],["115.35141","-33.6573878"],["115.3513741","-33.6573799"],["115.3513413","-33.6573669"],["115.3513105","-33.6573489"],["115.3512834","-33.6573279"],["115.3512594","-33.6573018"],["115.3512312","-33.6572661"],["115.3510208","-33.6570845"],["115.3507519","-33.6569082"],["115.3494757","-33.6560991"],["115.3490636","-33.655798"],["115.3488491","-33.6555856"],["115.3486896","-33.6553746"],["115.3485676","-33.6552714"],["115.3483038","-33.6551769"],["115.3482277","-33.6551584"],["115.3481766","-33.6551365"],["115.3481361","-33.6551061"],["115.3481175","-33.6550931"],["115.3480015","-33.6550602"],["115.3478617","-33.6549802"],["115.3476796","-33.6548905"],["115.3474987","-33.6547854"],["115.3468698","-33.6544087"],["115.3465346","-33.6541877"],["115.3461375","-33.6539202"],["115.3460556","-33.6538389"],["115.3458772","-33.6537103"],["115.3456948","-33.6535764"],["115.3455133","-33.6533756"],["115.3454624","-33.6532685"],["115.3454282","-33.6532571"],["115.3453866","-33.653234"],["115.3453588","-33.6531998"],["115.3453497","-33.6531627"],["115.3453564","-33.6531286"],["115.3453578","-33.6530552"],["115.3450841","-33.6521817"],["115.3348529","-33.6542763"],["115.3308732","-33.6550118"],["115.3301918","-33.6551103"],["115.3271723","-33.6555539"],["115.3271659","-33.655486"],["115.3306654","-33.6549711"],["115.3306837","-33.655042"],["115.3302049","-33.6551085"],["115.3254602","-33.6557961"],["115.3242293","-33.6558826"],["115.3239559","-33.6558965"],["115.3227105","-33.6559631"],["115.3216833","-33.6560215"],["115.3209022","-33.6560578"],["115.319812","-33.6561096"],["115.3195867","-33.6561234"],["115.3190608","-33.6561648"],["115.3187535","-33.6562116"],["115.3184103","-33.6562968"],["115.3178744","-33.6564696"],["115.3173021","-33.6566536"],["115.3166621","-33.6568459"],["115.3144749","-33.6573464"],["115.3136766","-33.6574671"],["115.3107137","-33.6577261"],["115.307837","-33.6578596"],["115.3073481","-33.6579021"],["115.3068243","-33.6579734"],["115.3063219","-33.6580596"],["115.3055245","-33.658242"],["115.3004331","-33.6594907"],["115.2997277","-33.6595948"],["115.2990178","-33.6596724"],["115.2980784","-33.6597106"],["115.2978144","-33.659704"],["115.2971869","-33.6596631"],["115.2964669","-33.6596301"],["115.2957964","-33.6596131"],["115.2864787","-33.6600975"],["115.2840034","-33.6601714"],["115.2815011","-33.6601202"],["115.2781386","-33.6600466"],["115.2774384","-33.660054"],["115.276639","-33.6600926"],["115.2719743","-33.6605047"],["115.2707173","-33.660585"],["115.2700035","-33.6605722"],["115.269337","-33.6605333"],["115.2684545","-33.6604906"],["115.2673833","-33.6605269"],["115.2669436","-33.6605642"],["115.2662396","-33.6606718"],["115.2641023","-33.661025"],["115.2631717","-33.6611209"],["115.2614078","-33.6612224"],["115.2606598","-33.6612893"],["115.2602649","-33.6613064"],["115.2599454","-33.6612883"],["115.2598052","-33.6613059"],["115.2596694","-33.6613671"],["115.2596113","-33.6614308"],["115.2595362","-33.6614778"],["115.2594469","-33.6615006"],["115.2593462","-33.6614965"],["115.2592543","-33.661463"],["115.2591831","-33.661404"],["115.2591424","-33.661334"],["115.2591209","-33.6612512"],["115.258938","-33.6610886"],["115.2588198","-33.6610095"],["115.2587474","-33.6609589"],["115.2585329","-33.6608507"],["115.2581943","-33.6607677"],["115.255157","-33.6603386"],["115.2523307","-33.659985"],["115.2508753","-33.6598164"],["115.249476","-33.6596744"],["115.2485098","-33.6595889"],["115.2472562","-33.6595308"],["115.2449709","-33.6593889"],["115.2366418","-33.6583108"],["115.2342926","-33.6579249"],["115.2323106","-33.6575185"],["115.2312899","-33.6572932"],["115.2306358","-33.6571639"],["115.229878","-33.6570238"],["115.2292151","-33.6569399"],["115.2284654","-33.6568645"],["115.2268721","-33.6567854"],["115.2246098","-33.6567154"],["115.2232327","-33.6566437"],["115.2226364","-33.6565557"],["115.2220019","-33.6564403"],["115.2213847","-33.6562966"],["115.2208416","-33.6561298"],["115.2202531","-33.6559106"],["115.2180751","-33.6550602"],["115.2172248","-33.6547446"],["115.2134303","-33.6537534"],["115.2110639","-33.6531541"],["115.210373","-33.6530104"],["115.2095338","-33.6528601"],["115.2086633","-33.6527332"],["115.2076907","-33.6526013"],["115.2068022","-33.6524785"],["115.2059022","-33.6523188"],["115.2052328","-33.6521859"],["115.2045847","-33.6520436"],["115.2025836","-33.6514522"],["115.2014495","-33.6510939"],["115.1998779","-33.6505838"],["115.1992077","-33.6503107"],["115.1986163","-33.6500291"],["115.1980026","-33.6497172"],["115.1963506","-33.6489285"],["115.1957041","-33.6486703"],["115.1949065","-33.6483767"],["115.1941053","-33.6481092"],["115.192446","-33.6475817"],["115.1913909","-33.6472451"],["115.1838012","-33.6448382"],["115.1827026","-33.6444844"],["115.176922","-33.6428366"],["115.1754205","-33.6424123"],["115.1747707","-33.6421989"],["115.1738756","-33.6418491"],["115.1684627","-33.6395625"],["115.1678487","-33.6393454"],["115.1670143","-33.6390952"],["115.1658335","-33.638802"],["115.1650188","-33.6386188"],["115.1644091","-33.638538"],["115.1639401","-33.6385061"],["115.1635739","-33.6384952"],["115.1630112","-33.6385175"],["115.161803","-33.6386101"],["115.1612427","-33.6386506"],["115.160323","-33.6387234"],["115.1600387","-33.6387282"],["115.159537","-33.6387076"],["115.1590217","-33.6386652"],["115.1583595","-33.638557"],["115.1559188","-33.6380381"],["115.1553372","-33.6379013"],["115.1547929","-33.6377524"],["115.1543132","-33.6375967"],["115.1538649","-33.6374327"],["115.1531176","-33.6370985"],["115.1487731","-33.6349975"],["115.1478447","-33.634577"],["115.147369","-33.6344214"],["115.1468207","-33.6342818"],["115.1462831","-33.6341777"],["115.1456707","-33.6340929"],["115.1450309","-33.6340064"],["115.1442305","-33.6338911"],["115.1417722","-33.6333516"],["115.1382268","-33.6325414"],["115.1360371","-33.6320068"],["115.1353653","-33.6317805"],["115.1345361","-33.6314155"],["115.1324405","-33.630373"],["115.1314538","-33.629936"],["115.1308169","-33.6296971"],["115.1300659","-33.6294754"],["115.1293741","-33.6292952"],["115.128887","-33.6291864"],["115.1285137","-33.6291167"],["115.1281401","-33.6290613"],["115.1277322","-33.629007"],["115.1272728","-33.62896"],["115.1267476","-33.6289223"],["115.125039","-33.6287928"],["115.1245903","-33.6287212"],["115.1241418","-33.6286431"],["115.1235658","-33.6285109"],["115.1231998","-33.6283944"],["115.123022","-33.6283606"],["115.1227131","-33.6282997"],["115.1226247","-33.6282904"],["115.1224339","-33.6282868"],["115.122332","-33.6283164"],["115.1222425","-33.6283178"],["115.1221574","-33.6282957"],["115.1220853","-33.6282532"],["115.1220325","-33.6281959"],["115.1220125","-33.6281579"],["115.1219996","-33.6281184"],["115.1219387","-33.6280636"],["115.1218031","-33.627963"],["115.121337","-33.6276869"],["115.1205473","-33.6272563"],["115.1186859","-33.6258771"],["115.1134471","-33.6217186"],["115.1117149","-33.6202904"],["115.1104765","-33.6192835"],["115.1099075","-33.6189133"],["115.1093388","-33.6185951"],["115.1084336","-33.6181466"],["115.108143","-33.6180801"],["115.1079296","-33.6180697"],["115.107851","-33.6180727"],["115.107676","-33.61806"],["115.1076035","-33.6180971"],["115.107518","-33.6181218"],["115.1074263","-33.6181222"],["115.1073574","-33.6181057"],["115.1073008","-33.6180789"],["115.1072536","-33.618041"],["115.1072198","-33.6179982"],["115.1071962","-33.6179567"],["115.1070896","-33.6178817"],["115.1069149","-33.6177734"],["115.1067249","-33.6176664"],["115.1064355","-33.6175498"],["115.105999","-33.6174456"],["115.1051719","-33.6173336"],["115.1044533","-33.6172992"],["115.1037892","-33.6172826"],["115.1031067","-33.6173168"],["115.1026792","-33.6173509"],["115.1023543","-33.6174589"],["115.102111","-33.6174831"],["115.101887","-33.6174863"],["115.1016997","-33.6174753"],["115.1015438","-33.6174709"],["115.1014079","-33.6174865"],["115.1012894","-33.617535"],["115.101164","-33.6176018"],["115.1011342","-33.6176276"],["115.1011047","-33.6176478"],["115.1010703","-33.6176628"],["115.1010351","-33.6176726"],["115.1009969","-33.6176768"],["115.1009577","-33.6176742"],["115.1008893","-33.6176529"],["115.1008335","-33.6176136"],["115.1007981","-33.6175586"],["115.100788","-33.6175009"],["115.1008018","-33.6174449"],["115.1008367","-33.6173925"],["115.1008761","-33.6173007"],["115.1009275","-33.6172083"],["115.1009984","-33.6171223"],["115.1011012","-33.6170388"],["115.1012538","-33.6169523"],["115.1013465","-33.6169147"],["115.1014876","-33.6168681"],["115.101703","-33.6168264"],["115.1018285","-33.61678"],["115.1019134","-33.6167288"],["115.1019841","-33.6166833"],["115.1020146","-33.6166457"],["115.1020325","-33.6166073"],["115.1020608","-33.6165652"],["115.1020713","-33.6163942"],["115.1020695","-33.6161432"],["115.1020098","-33.6159873"],["115.1013309","-33.6148461"],["115.0927283","-33.601295"],["115.0919954","-33.6001038"],["115.0875047","-33.5928755"],["115.0872383","-33.5925047"],["115.0870001","-33.5922816"],["115.0866669","-33.5921026"],["115.0860988","-33.5918989"],["115.0847482","-33.5915086"],["115.0831936","-33.5909787"],["115.0827927","-33.5908134"],["115.082494","-33.5906321"],["115.0822133","-33.5903849"],["115.0818951","-33.5899967"],["115.0815728","-33.5895605"],["115.0812277","-33.5892208"],["115.0809357","-33.5890135"],["115.0803999","-33.5887181"],["115.0774109","-33.5875689"],["115.0770899","-33.5874859"],["115.0766387","-33.5874065"],["115.0758238","-33.5873313"],["115.0746673","-33.5872494"],["115.07422","-33.5872373"],["115.0739617","-33.5872661"],["115.0736001","-33.5873523"],["115.0724919","-33.5877535"],["115.0719959","-33.5879086"],["115.0716775","-33.5879827"],["115.0712589","-33.588067"],["115.0700767","-33.5882288"],["115.0694445","-33.588296"],["115.0691228","-33.5882913"],["115.0687932","-33.588243"],["115.0685279","-33.5881601"],["115.0682726","-33.5880313"],["115.0680773","-33.5878803"],["115.0679145","-33.5877216"],["115.0677316","-33.5874339"],["115.0670011","-33.5856722"],["115.0662816","-33.5838805"],["115.0660835","-33.5835552"],["115.0659343","-33.5833593"],["115.0659938","-33.5832735"],["115.0660486","-33.5831035"],["115.066888","-33.5787057"],["115.0669597","-33.5682357"],["115.066917","-33.5673667"],["115.0668235","-33.5671706"],["115.0664271","-33.5667075"],["115.0652272","-33.565364"],["115.0651117","-33.5652883"],["115.0650712","-33.5652894"],["115.0650317","-33.5652797"],["115.0649993","-33.565258"],["115.0649759","-33.5652257"],["115.0649678","-33.5651887"],["115.064978","-33.5651521"],["115.0649145","-33.565026"],["115.0632889","-33.5630975"],["115.0655225","-33.5616949"],["115.0656227","-33.561608"],["115.0656943","-33.5614074"],["115.0657031","-33.5612948"],["115.0656977","-33.5608092"],["115.0656914","-33.5604102"],["115.0656785","-33.5600644"],["115.0656439","-33.5600425"],["115.0656156","-33.5600194"],["115.0656035","-33.5599895"],["115.0656054","-33.5599672"],["115.0656164","-33.5599464"],["115.0656344","-33.5599302"],["115.065657","-33.5599195"],["115.0656837","-33.5599155"],["115.0657098","-33.5599193"],["115.0657337","-33.5599292"],["115.0657527","-33.5599452"],["115.0657637","-33.5599651"],["115.0657664","-33.5599871"],["115.0657615","-33.560008"],["115.0657486","-33.5600269"],["115.0657299","-33.5600416"],["115.0657057","-33.5600498"],["115.0656818","-33.5600652"],["115.0656909","-33.5604013"],["115.0656973","-33.5607966"],["115.0657033","-33.5612937"],["115.065694","-33.5614083"],["115.0656221","-33.5616088"],["115.0655192","-33.561697"],["115.063374","-33.563186"],["115.0649232","-33.5650294"],["115.065033","-33.5651035"],["115.0650673","-33.5650944"],["115.0651033","-33.5650943"],["115.0651377","-33.5651026"],["115.0651675","-33.5651193"],["115.0651896","-33.5651437"],["115.0652034","-33.5651791"],["115.0652012","-33.5652157"],["115.0651823","-33.5652496"],["115.0652233","-33.5653538"],["115.0664158","-33.566695"],["115.0668249","-33.5671724"],["115.0669171","-33.567367"],["115.0669599","-33.5682591"],["115.0668876","-33.5787106"],["115.0660461","-33.5831149"],["115.0659934","-33.583274"],["115.0659342","-33.5833588"],["115.0660818","-33.5835531"],["115.0662765","-33.583868"],["115.0670244","-33.5857298"],["115.0677324","-33.5874349"],["115.0679159","-33.5877233"],["115.0680762","-33.5878795"],["115.0682727","-33.5880316"],["115.0685236","-33.5881586"],["115.0687961","-33.5882434"],["115.0691167","-33.5882909"],["115.0694472","-33.5882945"],["115.0700448","-33.5882328"],["115.0712742","-33.5880646"],["115.0716956","-33.5879786"],["115.0720054","-33.5879061"],["115.0724515","-33.5877677"],["115.0735935","-33.5873546"],["115.0739661","-33.5872654"],["115.0742204","-33.5872381"],["115.0746773","-33.58725"],["115.0757548","-33.5873257"],["115.0766416","-33.5874072"],["115.0770904","-33.5874864"],["115.0774138","-33.5875698"],["115.0803984","-33.5887176"],["115.0809262","-33.589008"],["115.0812292","-33.5892226"],["115.0815688","-33.5895564"],["115.0818913","-33.589992"],["115.0822128","-33.5903842"],["115.0824973","-33.5906346"],["115.082794","-33.5908141"],["115.0832007","-33.5909812"],["115.0847873","-33.5915203"],["115.086092","-33.5918969"],["115.0866737","-33.5921053"],["115.0869993","-33.592281"],["115.0872387","-33.5925057"],["115.087497","-33.5928635"],["115.0919054","-33.5999555"],["115.0926832","-33.6012206"],["115.1013358","-33.6148542"],["115.1020134","-33.6159936"],["115.1020759","-33.6161483"],["115.1021587","-33.6163476"],["115.1022036","-33.6165221"],["115.1022201","-33.6165331"],["115.1022375","-33.6165366"],["115.1022813","-33.6165545"],["115.1023187","-33.6165825"],["115.1023441","-33.6166181"],["115.1023572","-33.6166592"],["115.1023549","-33.6167017"],["115.1023335","-33.6167492"],["115.1023007","-33.6167824"],["115.1022568","-33.6168055"],["115.1022077","-33.6168172"],["115.1021512","-33.6168168"],["115.1020595","-33.616834"],["115.1019412","-33.6168539"],["115.1017801","-33.6168773"],["115.1016063","-33.6169123"],["115.1014395","-33.61702"],["115.1013625","-33.6171113"],["115.1013323","-33.6172347"],["115.1013472","-33.6173096"],["115.1013901","-33.6173803"],["115.1015763","-33.6173992"],["115.1018409","-33.6174116"],["115.1021815","-33.61739"],["115.1030771","-33.6173187"],["115.1037719","-33.6172868"],["115.1044694","-33.6172998"],["115.1051624","-33.6173325"],["115.1060091","-33.61745"],["115.1067904","-33.6176164"],["115.1071218","-33.6176802"],["115.1072945","-33.6177003"],["115.107345","-33.6176808"],["115.1074157","-33.6176607"],["115.10749","-33.6176568"],["115.1075697","-33.6176705"],["115.1076272","-33.6176954"],["115.1076713","-33.6177254"],["115.1077064","-33.6177623"],["115.1077457","-33.6178116"],["115.1079451","-33.617912"],["115.1093277","-33.6185889"],["115.109934","-33.6189296"],["115.1104603","-33.619272"],["115.111808","-33.6203669"],["115.1134123","-33.6216897"],["115.1186042","-33.6258136"],["115.120543","-33.6272532"],["115.1213836","-33.6277061"],["115.1216396","-33.6277942"],["115.1218464","-33.6278546"],["115.1219944","-33.6278681"],["115.1221459","-33.6278754"],["115.122239","-33.6278532"],["115.1223245","-33.6278529"],["115.1224038","-33.6278729"],["115.1224737","-33.6279132"],["115.122531","-33.6279711"],["115.1225439","-33.6279948"],["115.1225591","-33.6280241"],["115.1226262","-33.6280742"],["115.1227617","-33.6281862"],["115.1229523","-33.6282798"],["115.123201","-33.6283909"],["115.1235505","-33.6285066"],["115.1241491","-33.6286446"],["115.1246203","-33.6287262"],["115.1250439","-33.6287937"],["115.1267102","-33.6289197"],["115.1273044","-33.6289628"],["115.1277188","-33.6290055"],["115.1281116","-33.6290573"],["115.1285089","-33.629116"],["115.1288815","-33.629185"],["115.1293592","-33.6292915"],["115.1300962","-33.6294837"],["115.1308135","-33.6296959"],["115.1314662","-33.6299407"],["115.132426","-33.6303662"],["115.1345357","-33.6314153"],["115.1353733","-33.6317834"],["115.136049","-33.6320104"],["115.1381984","-33.6325345"],["115.1418517","-33.6333695"],["115.14426","-33.6338963"],["115.145006","-33.634003"],["115.1456611","-33.6340917"],["115.1462808","-33.6341774"],["115.1468186","-33.6342814"],["115.1473672","-33.6344208"],["115.147841","-33.6345757"],["115.1486781","-33.6349521"],["115.153111","-33.6370953"],["115.1538754","-33.637437"],["115.154338","-33.6376052"],["115.1547961","-33.6377537"],["115.155308","-33.6378939"],["115.1558781","-33.6380287"],["115.1583146","-33.6385478"],["115.1590202","-33.638665"],["115.1595468","-33.6387081"],["115.1600094","-33.6387252"],["115.1603258","-33.6387234"],["115.1612496","-33.63865"],["115.1619961","-33.6385945"],["115.1630182","-33.6385172"],["115.1635474","-33.6384979"],["115.1639469","-33.6385065"],["115.1644156","-33.6385387"],["115.165021","-33.6386192"],["115.1658526","-33.6388068"],["115.1670405","-33.639102"],["115.1678207","-33.6393363"],["115.168458","-33.6395608"],["115.1738749","-33.6418486"],["115.1748084","-33.6422118"],["115.1754491","-33.6424212"],["115.1767714","-33.6427949"],["115.1826996","-33.6444836"],["115.1831394","-33.6446554"],["115.1831477","-33.6646486"],["115.1831542","-33.6698221"],["115.1831796","-33.6893579"],["115.1832221","-33.6897331"],["115.1833164","-33.6900586"],["115.1834267","-33.6903899"],["115.1835811","-33.6908134"],["115.1837451","-33.6912939"],["115.1837884","-33.6915552"],["115.1838003","-33.6926953"],["115.1837958","-33.6978752"],["115.1843478","-33.6982467"],["115.186669","-33.6982424"],["115.1881389","-33.6982225"],["115.1885802","-33.6982407"],["115.1888013","-33.6982656"],["115.188955","-33.6983158"],["115.1891268","-33.6984056"],["115.1892937","-33.6985404"],["115.1895191","-33.6988442"],["115.1892821","-33.6991567"],["115.1889719","-33.6995516"],["115.1887349","-33.6999216"],["115.1884901","-33.7004222"],["115.1877913","-33.7022636"],["115.187527","-33.7028091"],["115.1871776","-33.7033395"],["115.1854227","-33.705449"],["115.1846724","-33.7063681"],["115.1843372","-33.7067079"],["115.1834177","-33.7074901"],["115.1826263","-33.7080632"],["115.1775868","-33.7110624"],["115.1760845","-33.7119636"],["115.1750563","-33.7126152"],["115.1744454","-33.7130856"],["115.1737036","-33.7138622"],["115.1718817","-33.7160245"],["115.1709519","-33.7171635"],["115.170563","-33.7176322"],["115.1682013","-33.7205575"],["115.1672961","-33.721711"],["115.1668779","-33.722326"],["115.1666447","-33.7226897"],["115.1663826","-33.7230652"],["115.1661264","-33.7235532"],["115.1558799","-33.7510487"],["115.1552946","-33.7520178"],["115.152163","-33.7564484"],["115.1519557","-33.7566953"],["115.1516424","-33.757015"],["115.1506757","-33.7579314"],["115.1469925","-33.7612941"],["115.1444516","-33.7636495"],["115.1392008","-33.768477"],["115.1386667","-33.7690254"],["115.1381799","-33.7696597"],["115.1376002","-33.7707877"],["115.1363429","-33.7738294"],["115.1360306","-33.7744836"],["115.135844","-33.7747897"],["115.1356541","-33.7750483"],["115.1353925","-33.7753819"],["115.1347367","-33.7760889"],["115.1338984","-33.7769762"],["115.1328755","-33.7780481"],["115.1324056","-33.7785709"],["115.1321244","-33.7789652"],["115.1318996","-33.7793997"],["115.1315998","-33.7801524"],["115.1217016","-33.8049181"],["115.1208445","-33.8070976"],["115.1201779","-33.8087854"],["115.1040836","-33.8493306"],["115.1038495","-33.8498581"],["115.1036382","-33.8501445"],["115.1016691","-33.8520752"],["115.1011934","-33.8525601"],["115.1010057","-33.8528062"],["115.1007758","-33.8532466"],["115.099976","-33.8549541"],["115.0998123","-33.8553251"],["115.0894249","-33.8785608"],["115.0885023","-33.8807349"],["115.0878981","-33.8845106"],["115.0854339","-33.9001315"],["115.0854137","-33.9002543"],["115.0852375","-33.9010876"],["115.085169","-33.9019935"],["115.0853456","-33.9051105"],["115.0854992","-33.907865"],["115.0853403","-33.9091156"],["115.0818632","-33.9175326"],["115.0816977","-33.9181913"],["115.0814594","-33.9192949"],["115.0803047","-33.9280683"],["115.0802813","-33.9288393"],["115.0803463","-33.9295383"],["115.0805164","-33.9301802"],["115.0807862","-33.9308592"],["115.0809765","-33.9311655"],["115.0812325","-33.931778"],["115.0812674","-33.9320686"],["115.0813049","-33.9323944"],["115.0813223","-33.9328541"],["115.0813294","-33.9329531"],["115.0813427","-33.9330571"],["115.0813728","-33.9331348"],["115.081425","-33.9332254"],["115.0815189","-33.9333315"],["115.0815811","-33.9333858"],["115.081632","-33.9333924"],["115.0816834","-33.9334027"],["115.0817509","-33.9334278"],["115.08181","-33.9334642"],["115.081859","-33.9335101"],["115.0818955","-33.9335643"],["115.0819172","-33.933623"],["115.0819234","-33.9336837"],["115.0819152","-33.9337412"],["115.0818942","-33.933794"],["115.0818601","-33.9338439"],["115.0818164","-33.9338857"],["115.0817611","-33.9339272"],["115.0816678","-33.9340817"],["115.0815416","-33.9342412"],["115.0810896","-33.934916"],["115.0809524","-33.9351179"],["115.0808985","-33.9351902"],["115.080828","-33.9352391"],["115.0802293","-33.9361267"],["115.0797248","-33.9368384"],["115.0791254","-33.9374702"],["115.0776125","-33.9388334"],["115.0772551","-33.9392045"],["115.0770909","-33.9393879"],["115.0747805","-33.9421277"],["115.0743657","-33.9427054"],["115.0739966","-33.9436929"],["115.0737239","-33.9445572"],["115.0736683","-33.94488"],["115.0736657","-33.945132"],["115.0737089","-33.9454273"],["115.0738196","-33.9457214"],["115.0739707","-33.9460063"],["115.0741041","-33.9463004"],["115.0742593","-33.9465785"],["115.0743004","-33.9466955"],["115.0743938","-33.9470184"],["115.0744346","-33.9471786"],["115.0744276","-33.9475675"],["115.0743492","-33.9480737"],["115.0740543","-33.9499689"],["115.0737979","-33.9511013"],["115.0733981","-33.9528379"],["115.0733809","-33.9529356"],["115.0733878","-33.9530707"],["115.0735117","-33.95353"],["115.0735571","-33.9535575"],["115.0735945","-33.9535674"],["115.0736263","-33.9535874"],["115.0736494","-33.953614"],["115.0736614","-33.9536457"],["115.0736606","-33.9536748"],["115.0736508","-33.9537026"],["115.0736304","-33.9537278"],["115.0736026","-33.9537466"],["115.073575","-33.9537633"],["115.0736218","-33.9538827"],["115.0742586","-33.9560541"],["115.0745652","-33.957204"],["115.0750076","-33.9581856"],["115.075926","-33.9597845"],["115.0760742","-33.9600276"],["115.0761851","-33.9601696"],["115.0765135","-33.9605797"],["115.0767472","-33.9607992"],["115.0768159","-33.9608234"],["115.0768645","-33.9608449"],["115.0769309","-33.9608972"],["115.0769608","-33.9609394"],["115.0769829","-33.9610229"],["115.0769694","-33.9610997"],["115.0769431","-33.9611456"],["115.0768781","-33.9612028"],["115.0767959","-33.9612376"],["115.076686","-33.9612446"],["115.0765899","-33.9612253"],["115.0763622","-33.9612478"],["115.0760469","-33.9613065"],["115.0731972","-33.9625505"],["115.0727595","-33.9627139"],["115.0725357","-33.9627646"],["115.0723408","-33.962787"],["115.0721253","-33.9628385"],["115.0719357","-33.962906"],["115.0717239","-33.9630227"],["115.071391","-33.9632684"],["115.0706746","-33.9637779"],["115.0702198","-33.9641119"],["115.0696976","-33.9644922"],["115.0692249","-33.9648352"],["115.0686987","-33.9652027"],["115.0682015","-33.9655614"],["115.0679221","-33.9657901"],["115.0677067","-33.9659977"],["115.0674941","-33.9662585"],["115.0673601","-33.9664489"],["115.0672669","-33.9666428"],["115.0670102","-33.967289"],["115.0660385","-33.969859"],["115.0654119","-33.9729122"],["115.0646903","-33.9745699"],["115.0640503","-33.9758585"],["115.0637787","-33.9762547"],["115.0627547","-33.9771804"],["115.0573293","-33.9818943"],["115.0554543","-33.9834841"],["115.0538353","-33.9852329"],["115.0494842","-33.9908287"],["115.0485187","-33.9925226"],["115.047787","-33.993505"],["115.0469121","-33.9946075"],["115.0456609","-33.9958715"],["115.0452039","-33.9963378"],["115.04392","-33.9979229"],["115.0431381","-33.998658"],["115.0410346","-34.0004544"],["115.0403067","-34.0010498"],["115.0394453","-34.0017844"],["115.0385406","-34.0026562"],["115.037748","-34.0034816"],["115.037579","-34.0037013"],["115.037458","-34.0039348"],["115.0373073","-34.0043541"],["115.0369599","-34.0058153"],["115.0367491","-34.0065146"],["115.0365138","-34.0069799"],["115.0362485","-34.007298"],["115.0358859","-34.0076038"],["115.0356199","-34.0077626"],["115.0353106","-34.0078474"],["115.0340787","-34.0080707"],["115.0328505","-34.0084185"],["115.0326001","-34.0085342"],["115.0324319","-34.0086563"],["115.0322013","-34.0089076"],["115.0314","-34.0099941"],["115.0310626","-34.0104253"],["115.0308324","-34.0106484"],["115.0305382","-34.0108165"],["115.0301933","-34.0109263"],["115.0293266","-34.0111342"],["115.0287592","-34.0112577"],["115.0287876","-34.0114572"],["115.0288649","-34.0116727"],["115.0290546","-34.0120481"],["115.0292652","-34.0123708"],["115.0295845","-34.0127464"],["115.030545","-34.0136745"],["115.0308183","-34.0139722"],["115.0311165","-34.0143466"],["115.0313798","-34.0148048"],["115.0315555","-34.0151817"],["115.031696","-34.0157248"],["115.0318119","-34.0162109"],["115.0319983","-34.0172792"],["115.032108","-34.0179638"],["115.0320795","-34.0185992"],["115.0319713","-34.0192448"],["115.0317295","-34.0199031"],["115.0314747","-34.0203776"],["115.0308374","-34.021181"],["115.0293544","-34.022808"],["115.0287657","-34.0234886"],["115.0284901","-34.0239437"],["115.0282898","-34.0244169"],["115.0281479","-34.024936"],["115.0281057","-34.0254208"],["115.0281099","-34.0258932"],["115.0282067","-34.0265155"],["115.0283607","-34.0272966"],["115.0288061","-34.0287406"],["115.0297668","-34.0315629"],["115.0303024","-34.0331273"],["115.0304949","-34.0337814"],["115.0306642","-34.0341157"],["115.030984","-34.0345286"],["115.0313577","-34.0350054"],["115.0314955","-34.0352494"],["115.0315785","-34.0355518"],["115.0316005","-34.0357318"],["115.0315916","-34.0358924"],["115.0315668","-34.0360439"],["115.0315012","-34.0362189"],["115.0312475","-34.0365958"],["115.0298897","-34.0381627"],["115.0296084","-34.0385558"],["115.0294023","-34.0389309"],["115.0292313","-34.0393202"],["115.0289157","-34.0399325"],["115.0285755","-34.0406129"],["115.0280187","-34.0420588"],["115.0262405","-34.0454583"],["115.0259138","-34.0462225"],["115.0253622","-34.0477144"],["115.0250812","-34.04825"],["115.0246052","-34.0489928"],["115.0243098","-34.0494693"],["115.0242171","-34.0497429"],["115.024186","-34.0499836"],["115.0242022","-34.0502247"],["115.0243472","-34.0506303"],["115.0252037","-34.0523911"],["115.0260796","-34.0539477"],["115.0266799","-34.0552571"],["115.0270334","-34.0559757"],["115.0272633","-34.0564944"],["115.027529","-34.0572535"],["115.0281808","-34.0593559"],["115.0283827","-34.0598467"],["115.0286264","-34.0601375"],["115.0289381","-34.0603524"],["115.0292897","-34.0605108"],["115.0294796","-34.0605532"],["115.0296266","-34.0605731"],["115.0300027","-34.0605865"],["115.0320364","-34.0602838"],["115.0326461","-34.060218"],["115.033032","-34.0602161"],["115.0334277","-34.060309"],["115.0338168","-34.0604842"],["115.0341922","-34.0608318"],["115.034375","-34.0611602"],["115.0345357","-34.0622627"],["115.0348939","-34.0647402"],["115.0354443","-34.0673001"],["115.0354644","-34.06789"],["115.0354067","-34.0682293"],["115.0351771","-34.0690911"],["115.0346415","-34.0718886"],["115.0342974","-34.0735092"],["115.0341353","-34.074035"],["115.0339135","-34.0743666"],["115.0332491","-34.0749253"],["115.0330057","-34.0751844"],["115.0327166","-34.0755554"],["115.0321034","-34.076432"],["115.0318542","-34.0767405"],["115.0316135","-34.0769271"],["115.0308368","-34.0774309"],["115.0306238","-34.0776047"],["115.0304794","-34.0778215"],["115.0303798","-34.0780883"],["115.0303686","-34.0783865"],["115.03047","-34.0786914"],["115.0309817","-34.0794233"],["115.0312229","-34.0796797"],["115.0314626","-34.0798529"],["115.0317276","-34.0799818"],["115.0359054","-34.0817875"],["115.0364221","-34.0820589"],["115.036696","-34.0822601"],["115.0370686","-34.0827417"],["115.0386522","-34.0849267"],["115.0394233","-34.0858837"],["115.0398269","-34.0862666"],["115.0403844","-34.0866631"],["115.0407394","-34.0869449"],["115.0409636","-34.0872634"],["115.0413743","-34.0884362"],["115.0415969","-34.0888451"],["115.042039","-34.0893777"],["115.0426394","-34.0899993"],["115.0428701","-34.0902857"],["115.0432134","-34.0908968"],["115.0435287","-34.0913773"],["115.0441917","-34.092276"],["115.0446572","-34.0929619"],["115.04481","-34.0934081"],["115.0448232","-34.0938236"],["115.0448336","-34.0942299"],["115.0449348","-34.0951441"],["115.0450702","-34.0957269"],["115.0451978","-34.0961638"],["115.045386","-34.0965482"],["115.0456873","-34.0968371"],["115.0460336","-34.0970363"],["115.0462605","-34.0971126"],["115.0464221","-34.0971321"],["115.0466874","-34.0971069"],["115.0473193","-34.0969605"],["115.0479427","-34.0967874"],["115.0483214","-34.096764"],["115.048661","-34.0968016"],["115.0490514","-34.0968836"],["115.0494795","-34.0970706"],["115.0510546","-34.0981318"],["115.0513295","-34.09829"],["115.0518839","-34.0984703"],["115.0523875","-34.098601"],["115.0528923","-34.0986891"],["115.0534025","-34.098754"],["115.0541462","-34.0988102"],["115.0547132","-34.0987963"],["115.0554961","-34.0987175"],["115.0565602","-34.0985774"],["115.0571948","-34.0985009"],["115.0575955","-34.0985087"],["115.0585384","-34.0986016"],["115.0591329","-34.098648"],["115.0599747","-34.0986357"],["115.0614711","-34.0985773"],["115.0619713","-34.0985994"],["115.0623752","-34.0986755"],["115.06286","-34.0988451"],["115.0632637","-34.0990705"],["115.0643374","-34.0999498"],["115.0691505","-34.1041533"],["115.0717152","-34.1071435"],["115.0744373","-34.1105181"],["115.0750173","-34.1113539"],["115.0761587","-34.1139451"],["115.0767904","-34.1157398"],["115.0773734","-34.1178319"],["115.0777314","-34.1189166"],["115.0792611","-34.1217857"],["115.0794442","-34.1222578"],["115.0795128","-34.1225539"],["115.0794952","-34.1228858"],["115.0793785","-34.123385"],["115.0791968","-34.1240158"],["115.0791509","-34.1243674"],["115.0791542","-34.1246638"],["115.0791936","-34.1250377"],["115.0792922","-34.1253079"],["115.0795396","-34.1257309"],["115.0804273","-34.1271494"],["115.0805645","-34.1275421"],["115.0807491","-34.1283057"],["115.0809151","-34.1288651"],["115.0811084","-34.1292515"],["115.0818811","-34.130341"],["115.0825663","-34.1312585"],["115.0834133","-34.1322024"],["115.0844826","-34.1333327"],["115.0851573","-34.1340621"],["115.0853894","-34.1344178"],["115.0855399","-34.1347281"],["115.0856629","-34.1351967"],["115.0857402","-34.1356841"],["115.0857181","-34.1361352"],["115.085604","-34.1366066"],["115.0852398","-34.1374206"],["115.0841546","-34.1396416"],["115.083467","-34.1410437"],["115.0826743","-34.1427287"],["115.0820086","-34.144177"],["115.0815565","-34.1452091"],["115.0814719","-34.1454727"],["115.0814275","-34.1457506"],["115.0814152","-34.146115"],["115.081445","-34.1466052"],["115.0822543","-34.1503936"],["115.0823771","-34.1511095"],["115.0825624","-34.1530208"],["115.0829221","-34.1641233"],["115.0829077","-34.1648022"],["115.082844","-34.1653982"],["115.0826384","-34.1659091"],["115.0821962","-34.1667563"],["115.0814922","-34.1679522"],["115.0812045","-34.1685245"],["115.0810489","-34.1689578"],["115.0809421","-34.1695105"],["115.0808684","-34.1699796"],["115.080907","-34.1705926"],["115.0811544","-34.1715551"],["115.081525","-34.1725857"],["115.0816821","-34.1732786"],["115.0817831","-34.173943"],["115.0818452","-34.1745943"],["115.0818132","-34.1756019"],["115.0817894","-34.1759786"],["115.0816986","-34.1765513"],["115.0814498","-34.1774142"],["115.0810141","-34.1783661"],["115.0804131","-34.179568"],["115.0801173","-34.1801156"],["115.0796494","-34.1810227"],["115.0794949","-34.1813927"],["115.0794042","-34.1817063"],["115.0793122","-34.1821369"],["115.0792317","-34.1829708"],["115.0791434","-34.184246"],["115.0790527","-34.1869298"],["115.0789908","-34.1876678"],["115.0788227","-34.1885283"],["115.078411","-34.1902685"],["115.0777903","-34.1926624"],["115.0769826","-34.1953982"],["115.0766489","-34.1962478"],["115.0757297","-34.1979661"],["115.0756161","-34.1983013"],["115.0755115","-34.1986445"],["115.0747473","-34.2028663"],["115.0746468","-34.2035111"],["115.0746165","-34.2040687"],["115.0748038","-34.2051877"],["115.0752529","-34.2073452"],["115.0754384","-34.2083189"],["115.075498","-34.2087377"],["115.0755419","-34.2092129"],["115.0755267","-34.2096078"],["115.0754345","-34.2101171"],["115.0749997","-34.2115972"],["115.0744701","-34.213101"],["115.0734623","-34.2154847"],["115.0726551","-34.2180244"],["115.0725822","-34.2184913"],["115.0725387","-34.2190598"],["115.0725162","-34.2196701"],["115.0724414","-34.2201303"],["115.0722703","-34.2204914"],["115.0718801","-34.2210512"],["115.0712002","-34.2218179"],["115.0689691","-34.223791"],["115.0690414","-34.2238682"],["115.0692478","-34.2238929"],["115.0697026","-34.2239093"],["115.0722468","-34.2239203"],["115.073093","-34.2238842"],["115.0748288","-34.2235686"],["115.0772796","-34.223104"],["115.0784419","-34.2229018"],["115.0791215","-34.2227765"],["115.080031","-34.222583"],["115.0807429","-34.2224849"],["115.0813621","-34.2224439"],["115.0817949","-34.2224644"],["115.0820546","-34.2224774"],["115.0828746","-34.2223211"],["115.0860881","-34.2218493"],["115.0865762","-34.2217142"],["115.0870713","-34.2215614"],["115.0877254","-34.2213619"],["115.088528","-34.2211173"],["115.0891955","-34.2209033"],["115.0897762","-34.2207182"],["115.0902118","-34.2204906"],["115.0907429","-34.2201795"],["115.0911739","-34.2199804"],["115.0918474","-34.2196905"],["115.0924977","-34.2194097"],["115.0927454","-34.2193363"],["115.0932446","-34.2192624"],["115.0938935","-34.2191813"],["115.0948911","-34.2190843"],["115.095462","-34.219074"],["115.0960982","-34.2191284"],["115.0966715","-34.2191706"],["115.0969682","-34.2190795"],["115.0965927","-34.2182077"],["115.0963756","-34.217426"],["115.0961183","-34.216027"],["115.0961207","-34.2145744"],["115.0966169","-34.2121187"],["115.0977849","-34.2075941"],["115.0986076","-34.2046147"],["115.0988227","-34.203956"],["115.0994484","-34.2014834"],["115.09972","-34.2006783"],["115.0999145","-34.2006611"],["115.1001268","-34.2005877"],["115.1003566","-34.2004732"],["115.1016887","-34.1995322"],["115.1039784","-34.1978706"],["115.1049607","-34.197171"],["115.1059287","-34.1964589"],["115.1070143","-34.1956622"],["115.1076239","-34.1952472"],["115.1082969","-34.1948776"],["115.1093315","-34.1943562"],["115.1105494","-34.1938632"],["115.1117957","-34.1934372"],["115.1129012","-34.1931621"],["115.1143709","-34.192919"],["115.1270353","-34.1911375"],["115.1278538","-34.1910613"],["115.1322244","-34.1907985"],["115.1371207","-34.190475"],["115.1392751","-34.19028"],["115.1399083","-34.1901631"],["115.1404497","-34.190032"],["115.1409464","-34.1898991"],["115.1416958","-34.1896336"],["115.1435987","-34.1888391"],["115.1487557","-34.1866181"],["115.1513428","-34.1855094"],["115.1530099","-34.1848055"],["115.1539356","-34.1844482"],["115.1546039","-34.1842382"],["115.1554883","-34.1840193"],["115.1563508","-34.1838726"],["115.1574522","-34.183762"],["115.1591202","-34.1836777"],["115.1600718","-34.1836176"],["115.1608268","-34.1835052"],["115.1616852","-34.1833274"],["115.1623653","-34.1831557"],["115.1631736","-34.1829118"],["115.1639535","-34.1826042"],["115.1647333","-34.1822282"],["115.1653929","-34.1818668"],["115.1659943","-34.1814817"],["115.1667742","-34.1808875"],["115.1718904","-34.1768721"],["115.1727972","-34.1760932"],["115.1733809","-34.1754669"],["115.1743214","-34.1743374"],["115.1749066","-34.1736668"],["115.1754321","-34.1731626"],["115.1758021","-34.1728307"],["115.1761778","-34.1725454"],["115.1766534","-34.1722274"],["115.1772344","-34.1718638"],["115.1779069","-34.1715172"],["115.1785319","-34.1712308"],["115.1802775","-34.1705308"],["115.1826608","-34.1695885"],["115.1840049","-34.1689798"],["115.1978029","-34.1613894"],["115.1987336","-34.1609087"],["115.1991301","-34.1607455"],["115.1995894","-34.1605948"],["115.2000521","-34.1605047"],["115.2006201","-34.1604067"],["115.2013406","-34.1603134"],["115.2018098","-34.1602868"],["115.2022823","-34.1603018"],["115.202998","-34.1603658"],["115.2048176","-34.1606193"],["115.2055489","-34.1607404"],["115.2058775","-34.1608262"],["115.2061895","-34.1609641"],["115.2065884","-34.161176"],["115.2072788","-34.1615828"],["115.2077469","-34.1618076"],["115.2081226","-34.1619287"],["115.2085055","-34.1620175"],["115.2089132","-34.1620652"],["115.2093748","-34.1620805"],["115.2102299","-34.162076"],["115.2128837","-34.1620177"],["115.2137704","-34.1621125"],["115.2166213","-34.1626448"],["115.2175857","-34.162915"],["115.2189216","-34.1635103"],["115.2199114","-34.163828"],["115.2219111","-34.1643995"],["115.2225624","-34.1645073"],["115.2229993","-34.1645241"],["115.2234938","-34.164513"],["115.2243483","-34.1643754"],["115.2256043","-34.1641646"],["115.2265067","-34.1640956"],["115.2295381","-34.164064"],["115.2322463","-34.1638694"],["115.2339331","-34.163797"],["115.2346162","-34.1638014"],["115.2351865","-34.1638856"],["115.2379697","-34.1644024"],["115.2390166","-34.1645741"],["115.2397485","-34.1645637"],["115.2407092","-34.1645429"],["115.2417322","-34.1645507"],["115.2430434","-34.1646418"],["115.2435667","-34.1646358"],["115.2443161","-34.1645438"],["115.24514","-34.1642911"],["115.245963","-34.1640025"],["115.2466029","-34.1637672"],["115.2475423","-34.1633352"],["115.2481445","-34.1630818"],["115.2492968","-34.1626616"],["115.2502542","-34.1623601"],["115.2550087","-34.1611527"],["115.2571726","-34.1605824"],["115.2591143","-34.1600988"],["115.2603215","-34.1598258"],["115.2618605","-34.159514"],["115.2635651","-34.1592449"],["115.2652887","-34.1590329"],["115.266509","-34.1589146"],["115.2682889","-34.1588063"],["115.2714121","-34.1587311"],["115.2767821","-34.1586176"],["115.2787157","-34.1584492"],["115.2833484","-34.1578002"],["115.2843389","-34.1577106"],["115.2862322","-34.1577845"],["115.2899139","-34.1580388"],["115.290968","-34.1581547"],["115.2919277","-34.1583927"],["115.292975","-34.1586585"],["115.2936971","-34.1588044"],["115.2943807","-34.158889"],["115.2953927","-34.1589354"],["115.2975595","-34.1589314"],["115.2988783","-34.1589675"],["115.3016031","-34.1592986"],["115.3084568","-34.1601947"],["115.311827","-34.1604116"],["115.3140372","-34.1605739"],["115.3147631","-34.1606096"],["115.3155101","-34.1605833"],["115.3162571","-34.1605034"],["115.3170292","-34.1603855"],["115.3181311","-34.1601199"],["115.3200313","-34.1596028"],["115.3209556","-34.1594045"],["115.3214971","-34.1593403"],["115.3220925","-34.1593334"],["115.3227254","-34.1593469"],["115.3238432","-34.1594689"],["115.3255626","-34.1596998"],["115.3269835","-34.1599115"],["115.3277207","-34.1600797"],["115.328487","-34.1602292"],["115.3291869","-34.1602949"],["115.3345569","-34.1602595"],["115.3362406","-34.1601979"],["115.3391474","-34.1597283"],["115.3409771","-34.1594251"],["115.3429445","-34.1590517"],["115.3445703","-34.1586367"],["115.3454295","-34.158446"],["115.3459966","-34.1583646"],["115.346482","-34.1583384"],["115.3470041","-34.15834"],["115.3475972","-34.1583809"],["115.3489149","-34.15858"],["115.3508775","-34.1588889"],["115.3530016","-34.1591223"],["115.36132","-34.1597257"],["115.3637835","-34.1600026"],["115.3650538","-34.1601433"],["115.3655135","-34.1601739"],["115.3659556","-34.1601667"],["115.3686138","-34.1599033"],["115.3698039","-34.1597525"],["115.3705342","-34.1596125"],["115.3712677","-34.1594213"],["115.372533","-34.1589908"],["115.3735216","-34.1585297"],["115.3755059","-34.1575388"],["115.3794547","-34.155972"],["115.3806356","-34.1556466"],["115.3815079","-34.155521"],["115.3825135","-34.1555228"],["115.3962357","-34.1561957"],["115.4066122","-34.1569846"],["115.4119697","-34.1577039"],["115.4149655","-34.1581176"],["115.4172888","-34.1581943"],["115.4212204","-34.1582961"],["115.4258358","-34.158416"],["115.4270883","-34.1585996"],["115.4305871","-34.15918"],["115.4321191","-34.1594039"],["115.4326605","-34.159446"],["115.4335556","-34.1594676"],["115.435388","-34.159466"],["115.4363892","-34.1594766"],["115.4368478","-34.1595053"],["115.4372706","-34.1595682"],["115.4378016","-34.1596728"],["115.4385876","-34.1598677"],["115.4396573","-34.1600892"],["115.4413792","-34.1603484"],["115.4424736","-34.1604728"],["115.4442816","-34.1604638"],["115.4470038","-34.1604118"],["115.4493096","-34.1602939"],["115.4524304","-34.1599148"],["115.4539243","-34.1597475"],["115.4544042","-34.1597341"],["115.454877","-34.1597599"],["115.4573376","-34.1600528"],["115.4614475","-34.1605526"],["115.4635339","-34.1607953"],["115.4641512","-34.1608356"],["115.4647075","-34.1608502"],["115.4662804","-34.1608237"],["115.4692354","-34.1607152"],["115.4705012","-34.1606394"],["115.4710808","-34.1605481"],["115.4716027","-34.1604057"],["115.4722176","-34.1601553"],["115.4745463","-34.1589329"],["115.4754009","-34.1585155"],["115.4759864","-34.1583264"],["115.4791633","-34.157728"],["115.4851874","-34.1566518"],["115.486753","-34.1563321"],["115.4873487","-34.1561044"],["115.4878547","-34.1558547"],["115.488432","-34.1554716"],["115.4927665","-34.1522344"],["115.4932741","-34.151914"],["115.4942145","-34.1514479"],["115.4947998","-34.1512423"],["115.4957356","-34.1510081"],["115.4971175","-34.1509019"],["115.5035005","-34.1510619"],["115.5046735","-34.151135"],["115.5053673","-34.1512688"],["115.5064226","-34.1515991"],["115.507099","-34.1519122"],["115.5102317","-34.1537822"],["115.5109956","-34.1541675"],["115.511661","-34.154406"],["115.5189816","-34.1563668"],["115.519745","-34.1565446"],["115.5204228","-34.1566734"],["115.5212784","-34.1567794"],["115.5221244","-34.1568476"],["115.5229229","-34.1568645"],["115.5236912","-34.1568633"],["115.5242855","-34.1568195"],["115.5248908","-34.1567395"],["115.5258995","-34.1565927"],["115.5261617","-34.1570505"],["115.5264338","-34.1575675"],["115.5267666","-34.1580999"],["115.5272026","-34.1586867"],["115.5277436","-34.1592861"],["115.5283989","-34.1598541"],["115.5289276","-34.1602297"],["115.5295112","-34.160588"],["115.5304535","-34.1610468"],["115.5356197","-34.1632691"],["115.5369028","-34.1638681"],["115.5378223","-34.1644243"],["115.5413001","-34.1668775"],["115.5423239","-34.1675586"],["115.5430002","-34.1678853"],["115.543456","-34.1680823"],["115.5439411","-34.1682635"],["115.5444669","-34.1684182"],["115.5451633","-34.1685703"],["115.5480702","-34.1689623"],["115.5500916","-34.1692042"],["115.551059","-34.1693505"],["115.5516695","-34.169481"],["115.5522814","-34.169655"],["115.5528894","-34.1698552"],["115.5535451","-34.1700957"],["115.5543289","-34.1704678"],["115.5551483","-34.1709305"],["115.5562834","-34.1717531"],["115.5593041","-34.1743325"],["115.5609732","-34.1759325"],["115.5736438","-34.1901409"],["115.5746122","-34.1910564"],["115.5753922","-34.1916417"],["115.576149","-34.1921079"],["115.5768236","-34.1924479"],["115.5776129","-34.192826"],["115.5786414","-34.1932098"],["115.5816187","-34.194194"],["115.5824412","-34.1944978"],["115.5834734","-34.1950022"],["115.5843981","-34.1954945"],["115.5852998","-34.1961106"],["115.5862838","-34.1969098"],["115.5869412","-34.1976064"],["115.587543","-34.1983165"],["115.5881274","-34.1991564"],["115.5886687","-34.2001128"],["115.5889942","-34.2008465"],["115.5897807","-34.2032689"],["115.5902835","-34.2048613"],["115.5907654","-34.2060888"],["115.591268","-34.2068736"],["115.5917445","-34.2074617"],["115.5921696","-34.2079228"],["115.6031092","-34.2173467"],["115.6053409","-34.219211"],["115.6064198","-34.2198919"],["115.6088449","-34.2213567"],["115.6097567","-34.2219621"],["115.6128257","-34.2248882"],["115.6354066","-34.2469759"],["115.6370723","-34.2485599"],["115.6377298","-34.2490785"],["115.6389887","-34.2499399"],["115.6395677","-34.2504165"],["115.6515033","-34.2621273"],["115.6652144","-34.276463"],["115.6671868","-34.2782213"],["115.6682826","-34.2791563"],["115.6690798","-34.279754"],["115.6698643","-34.2802"],["115.6706041","-34.2805472"],["115.6713381","-34.2808149"],["115.671977","-34.2809911"],["115.6726962","-34.2811391"],["115.6734216","-34.2812347"],["115.6775688","-34.2814267"],["115.6984185","-34.2822559"],["115.6992752","-34.2822151"],["115.6998972","-34.2821314"],["115.700746","-34.2819169"],["115.7021148","-34.2815281"],["115.7029514","-34.2813435"],["115.7035869","-34.281255"],["115.7042918","-34.2812244"],["115.7049863","-34.2812643"],["115.7055552","-34.2813276"],["115.7062972","-34.2815216"],["115.7083232","-34.2820874"],["115.7091388","-34.2822369"],["115.7098694","-34.2822589"],["115.7107945","-34.282195"],["115.7136855","-34.2817967"],["115.7148718","-34.281686"],["115.7558953","-34.2819854"],["115.7564665","-34.281937"],["115.7565103","-34.2818912"],["115.7565383","-34.2818433"],["115.7565642","-34.2817882"],["115.7565764","-34.2817376"],["115.7565993","-34.2815927"],["115.7566774","-34.2818976"],["115.756922","-34.2827329"],["115.7572914","-34.2836999"],["115.7578182","-34.2848164"],["115.7583446","-34.2856689"],["115.7594152","-34.2870672"],["115.7609298","-34.2888793"],["115.7617073","-34.2898566"],["115.7642549","-34.2928964"],["115.7649354","-34.2937612"],["115.7652399","-34.294192"],["115.7654808","-34.2946719"],["115.7656773","-34.2952052"],["115.7661475","-34.2968203"],["115.7670512","-34.3000268"],["115.7678737","-34.3028467"],["115.768507","-34.3052489"],["115.7689356","-34.3069681"],["115.7697475","-34.3104611"],["115.770599","-34.314083"],["115.7707128","-34.3147229"],["115.7707515","-34.3151992"],["115.7707116","-34.3155434"],["115.7705979","-34.3160986"],["115.7704428","-34.3168207"],["115.7703223","-34.3174014"],["115.7702933","-34.3179653"],["115.7702989","-34.3184622"],["115.7703315","-34.319019"],["115.7704302","-34.3194776"],["115.7706379","-34.3202757"],["115.7723108","-34.3241744"],["115.772743","-34.3250714"],["115.7731091","-34.325801"],["115.7733743","-34.3261412"],["115.7739679","-34.3267437"],["115.7744415","-34.3272221"],["115.7749974","-34.3277678"],["115.77644","-34.3291732"],["115.7766429","-34.3294138"],["115.7767769","-34.329588"],["115.7769305","-34.3298271"],["115.7770343","-34.3300929"],["115.7771219","-34.3304656"],["115.777133","-34.3307638"],["115.777117","-34.3309601"],["115.7770757","-34.3311814"],["115.776948","-34.3315553"],["115.7760388","-34.3335451"],["115.7756534","-34.3344654"],["115.7755331","-34.3348943"],["115.7754678","-34.3352944"],["115.7754832","-34.3357836"],["115.7755742","-34.3362124"],["115.7768386","-34.3407266"],["115.7770706","-34.3416545"],["115.777073","-34.3419881"],["115.7770367","-34.3424334"],["115.7767185","-34.3439536"],["115.7766312","-34.3445211"],["115.7766214","-34.344823"],["115.7766407","-34.3450934"],["115.7767306","-34.3454976"],["115.7768657","-34.3458657"],["115.776965","-34.3460846"],["115.7775032","-34.3470859"],["115.7784951","-34.3489104"],["115.7793705","-34.3505381"],["115.7795743","-34.3511613"],["115.7796888","-34.3517533"],["115.7797249","-34.3524353"],["115.7796445","-34.3530391"],["115.7794756","-34.3538151"],["115.7780558","-34.3591417"],["115.7778452","-34.3600504"],["115.7777953","-34.3604733"],["115.777833","-34.360927"],["115.777958","-34.3614371"],["115.7781865","-34.3619615"],["115.7785899","-34.362529"],["115.7814574","-34.3658862"],["115.7819089","-34.3663575"],["115.7830101","-34.3672681"],["115.7833753","-34.3676345"],["115.7836736","-34.3680485"],["115.7838788","-34.3684358"],["115.7840116","-34.3688225"],["115.784092","-34.3692265"],["115.7843878","-34.3738492"],["115.7844874","-34.374871"],["115.7846401","-34.3753791"],["115.7848612","-34.3758431"],["115.7851323","-34.3762553"],["115.7853514","-34.3765153"],["115.785705","-34.3768692"],["115.7861377","-34.3772011"],["115.7866725","-34.3775105"],["115.7871618","-34.3777233"],["115.7877332","-34.3779097"],["115.7882703","-34.378004"],["115.7888461","-34.3780589"],["115.789492","-34.3780638"],["115.790174","-34.3780594"],["115.790629","-34.3780809"],["115.7911923","-34.3781454"],["115.7916527","-34.3782236"],["115.7921218","-34.3783435"],["115.7925191","-34.3784832"],["115.7937786","-34.3790314"],["115.7953548","-34.3797368"],["115.7963063","-34.3801965"],["115.7967937","-34.3805498"],["115.7971619","-34.3809087"],["115.797758","-34.3816977"],["115.7992032","-34.3837137"],["115.7995588","-34.3843099"],["115.79975","-34.3848008"],["115.8001514","-34.3862615"],["115.8006757","-34.3881398"],["115.8025372","-34.3937734"],["115.8029761","-34.394938"],["115.8033729","-34.3957184"],["115.803811","-34.3964529"],["115.8043295","-34.397198"],["115.8049153","-34.397905"],["115.8065522","-34.3995998"],["115.8069707","-34.4000784"],["115.8071333","-34.4004108"],["115.8072915","-34.4008729"],["115.8075921","-34.4022071"],["115.8079119","-34.403806"],["115.8080026","-34.4045779"],["115.8079359","-34.4058695"],["115.8075948","-34.4096331"],["115.8074126","-34.4115448"],["115.8074091","-34.411864"],["115.8074882","-34.4122754"],["115.8076684","-34.4127452"],["115.8078817","-34.4130988"],["115.8081604","-34.4134334"],["115.8084684","-34.4137102"],["115.8088712","-34.4139877"],["115.8093032","-34.4142001"],["115.8097515","-34.4143492"],["115.8102115","-34.4144347"],["115.8110001","-34.4145086"],["115.8176648","-34.415157"],["115.8232013","-34.4157632"],["115.8244997","-34.4159413"],["115.825652","-34.4161318"],["115.8265806","-34.4163308"],["115.8272795","-34.4164943"],["115.8279717","-34.4166914"],["115.8290552","-34.4171132"],["115.8315074","-34.4181582"],["115.8323099","-34.4184357"],["115.8328505","-34.4185428"],["115.8339084","-34.4186209"],["115.8355446","-34.4187239"],["115.8363484","-34.4188016"],["115.8367636","-34.4188855"],["115.8371827","-34.4189942"],["115.8376917","-34.4191996"],["115.8383872","-34.4195294"],["115.8389871","-34.4197811"],["115.8394731","-34.4198934"],["115.8399986","-34.4199571"],["115.840656","-34.4199377"],["115.8420102","-34.4197809"],["115.8447931","-34.4194529"],["115.845721","-34.4193555"],["115.8472357","-34.4192082"],["115.8477228","-34.4192159"],["115.8482301","-34.4192644"],["115.8488482","-34.4194329"],["115.8499141","-34.4198023"],["115.8520679","-34.4206985"],["115.8536672","-34.4214956"],["115.8551552","-34.4222673"],["115.8569247","-34.4232038"],["115.8575595","-34.4235685"],["115.8581766","-34.4240236"],["115.8594728","-34.425188"],["115.8600737","-34.4256736"],["115.8605411","-34.4259591"],["115.8613122","-34.4263646"],["115.8623191","-34.4268672"],["115.8629829","-34.4272275"],["115.8636814","-34.4276462"],["115.8656146","-34.428707"],["115.8660761","-34.4289138"],["115.8665154","-34.4290762"],["115.8670205","-34.4292382"],["115.867518","-34.4293325"],["115.8681502","-34.4294076"],["115.8687359","-34.429458"],["115.8692546","-34.4295015"],["115.8697417","-34.4296245"],["115.8702596","-34.4297624"],["115.870948","-34.4299496"],["115.8714702","-34.4300235"],["115.8719425","-34.4300492"],["115.8723564","-34.4299987"],["115.8739221","-34.4297043"],["115.8745093","-34.4296432"],["115.8757256","-34.4296487"],["115.8764198","-34.4296955"],["115.8769208","-34.4297737"],["115.8773935","-34.4298921"],["115.8780566","-34.4301134"],["115.8789863","-34.4305011"],["115.8824003","-34.4321257"],["115.8832287","-34.4326269"],["115.8839495","-34.4331345"],["115.8844245","-34.4334791"],["115.885105","-34.4340014"],["115.886187","-34.4348464"],["115.8867433","-34.4352408"],["115.8871896","-34.435473"],["115.8876793","-34.4356622"],["115.8881263","-34.4357798"],["115.8901048","-34.436176"],["115.895139","-34.4371592"],["115.8956259","-34.4372755"],["115.8960655","-34.4374315"],["115.8964964","-34.4376421"],["115.896883","-34.4379253"],["115.8978012","-34.43878"],["115.8993714","-34.4404953"],["115.8996942","-34.4408796"],["115.8998681","-34.4412006"],["115.9006681","-34.4436088"],["115.9008665","-34.4441445"],["115.9011025","-34.4445199"],["115.9014159","-34.4448921"],["115.902172","-34.4455259"],["115.9045942","-34.4473452"],["115.9052829","-34.447777"],["115.9058749","-34.4480413"],["115.9068276","-34.4483985"],["115.9074724","-34.4486472"],["115.9079251","-34.4488862"],["115.9083245","-34.449201"],["115.908668","-34.4495893"],["115.9092939","-34.4504756"],["115.9096448","-34.4508499"],["115.9112423","-34.4521784"],["115.9144501","-34.4551253"],["115.9152952","-34.45605"],["115.9156413","-34.4566363"],["115.9163871","-34.457848"],["115.9195702","-34.4614582"],["115.9198875","-34.4617419"],["115.9203728","-34.4620572"],["115.9209966","-34.4623866"],["115.9234184","-34.4631799"],["115.9244795","-34.4634715"],["115.9254333","-34.4637381"],["115.9264343","-34.4640076"],["115.927231","-34.464217"],["115.927802","-34.4643505"],["115.9281615","-34.4643716"],["115.9285855","-34.4643284"],["115.9288019","-34.4642665"],["115.9291423","-34.4641446"],["115.9295914","-34.463911"],["115.9308119","-34.4630239"],["115.9319139","-34.462235"],["115.9321495","-34.4620534"],["115.932423","-34.4619024"],["115.9329741","-34.4617271"],["115.9344292","-34.4612173"],["115.9359255","-34.4607151"],["115.9399355","-34.4593906"],["115.9433662","-34.45815"],["115.9446328","-34.4577126"],["115.9537929","-34.4546127"],["115.9554314","-34.4539805"],["115.9561501","-34.4537302"],["115.9570113","-34.4535308"],["115.958282","-34.4532487"],["115.9610283","-34.4525867"],["115.9617517","-34.4525841"],["115.962532","-34.4526499"],["115.9637902","-34.4528948"],["115.9655687","-34.4532797"],["115.966107","-34.453295"],["115.9664345","-34.4532547"],["115.9667756","-34.4531392"],["115.9760041","-34.450072"],["115.9768581","-34.4496978"],["115.9773354","-34.4493791"],["115.9779202","-34.4488336"],["115.9788564","-34.4480166"],["115.9797857","-34.4472819"],["115.9803596","-34.4469423"],["115.9809406","-34.446619"],["115.9816698","-34.4461843"],["115.982889","-34.4453256"],["115.9842425","-34.4443032"],["115.9850156","-34.4437609"],["115.9857046","-34.4434636"],["115.9863221","-34.4432916"],["115.9869055","-34.4431986"],["115.987462","-34.4431605"],["115.9880262","-34.4431798"],["115.9887109","-34.4433141"],["115.9893428","-34.4434815"],["115.9897885","-34.4436789"],["115.9901595","-34.4438991"],["115.9921731","-34.445228"],["115.993914","-34.4463521"],["115.9945994","-34.4466692"],["115.9952362","-34.4468058"],["115.9963441","-34.4468657"],["115.9992726","-34.4469002"],["115.9999046","-34.4469399"],["116.0004574","-34.4470885"],["116.0009521","-34.4473048"],["116.0014206","-34.4476668"],["116.0020924","-34.4483664"],["116.0050435","-34.4517139"],["116.0055331","-34.4523993"],["116.0056605","-34.4527344"],["116.0057361","-34.4531574"],["116.0057588","-34.4540089"],["116.0057703","-34.4548594"],["116.0057893","-34.4556175"],["116.0059481","-34.4561293"],["116.0061945","-34.4565911"],["116.0064927","-34.4569317"],["116.0068488","-34.4572419"],["116.0073735","-34.4575518"],["116.0078059","-34.4577252"],["116.0089604","-34.4581208"],["116.0092898","-34.4576813"],["116.0096424","-34.4573303"],["116.0110321","-34.4561275"],["116.0116697","-34.4557327"],["116.0124947","-34.4554804"],["116.0145518","-34.4550343"],["116.0153884","-34.4549015"],["116.0160173","-34.4548849"],["116.0165929","-34.4548357"],["116.0180603","-34.4545576"],["116.0185876","-34.4544791"],["116.0197666","-34.4543714"],["116.0205252","-34.4542422"],["116.0212929","-34.4540162"],["116.0219731","-34.4536577"],["116.0223898","-34.4533351"],["116.0228371","-34.4528921"],["116.0231708","-34.4525485"],["116.025214","-34.4504549"],["116.0264217","-34.4491507"],["116.0268854","-34.4487075"],["116.027204","-34.4484633"],["116.0274474","-34.448325"],["116.0277402","-34.4481979"],["116.0285562","-34.447981"],["116.0290309","-34.4478532"],["116.0296937","-34.4476786"],["116.0298817","-34.4476089"],["116.0300734","-34.4475034"],["116.03029","-34.4473763"],["116.031173","-34.4468319"],["116.0313614","-34.446698"],["116.0308399","-34.44605"],["116.0307267","-34.44591"],["116.0306709","-34.4458038"],["116.0306146","-34.4456633"],["116.0306075","-34.4456226"],["116.030605","-34.445589"],["116.0306054","-34.4454152"],["116.0306453","-34.4451461"],["116.0306914","-34.4450033"],["116.0307785","-34.4448572"],["116.0309235","-34.4446453"],["116.0311172","-34.444472"],["116.0312851","-34.4443501"],["116.0321781","-34.4438296"],["116.0325643","-34.4436377"],["116.0331749","-34.4433257"],["116.033402","-34.4431783"],["116.0335734","-34.4430633"],["116.0341858","-34.4427087"],["116.0344219","-34.4425894"],["116.0345918","-34.4425398"],["116.034757","-34.4425212"],["116.0349533","-34.442523"],["116.035647","-34.4426357"],["116.0358903","-34.4426882"],["116.0360629","-34.4427827"],["116.0365262","-34.4431082"],["116.0368299","-34.4433797"],["116.0370068","-34.4432502"],["116.0374191","-34.4428445"],["116.0377723","-34.4424905"],["116.0379749","-34.4422599"],["116.0380808","-34.4421129"],["116.0386318","-34.4415507"],["116.0390845","-34.4411987"],["116.0395262","-34.440955"],["116.040131","-34.4407084"],["116.0404947","-34.4406004"],["116.0408148","-34.440527"],["116.0427993","-34.440196"],["116.0432667","-34.4400837"],["116.0438305","-34.4398703"],["116.0442218","-34.4396932"],["116.0446576","-34.4394765"],["116.0451982","-34.4391909"],["116.0461019","-34.438664"],["116.0467857","-34.4382866"],["116.047419","-34.4379607"],["116.0480981","-34.4376695"],["116.0487713","-34.4373943"],["116.0498811","-34.4370354"],["116.0519127","-34.4365102"],["116.0530065","-34.4362109"],["116.0535506","-34.4360246"],["116.0539584","-34.4358574"],["116.0545389","-34.4355363"],["116.0551964","-34.4351083"],["116.056627","-34.4340885"],["116.0582056","-34.4328875"],["116.0626944","-34.4295517"],["116.0645024","-34.4282361"],["116.0682377","-34.4259751"],["116.0708739","-34.4243928"],["116.0721508","-34.4236306"],["116.0741542","-34.4224534"],["116.0751842","-34.4219219"],["116.0758825","-34.4216809"],["116.0767273","-34.42145"],["116.0861956","-34.419855"],["116.086983","-34.4196757"],["116.0877067","-34.4194587"],["116.0883774","-34.4192192"],["116.0891905","-34.4188507"],["116.0897986","-34.4185124"],["116.0904705","-34.4180872"],["116.0917364","-34.4172063"],["116.092485","-34.4167316"],["116.0932521","-34.4163296"],["116.0936291","-34.416168"],["116.0947666","-34.4157338"],["116.0955369","-34.4155239"],["116.1030059","-34.4138477"],["116.1048227","-34.4134256"],["116.1055255","-34.4132221"],["116.1062114","-34.4129355"],["116.1073767","-34.4123572"],["116.1089886","-34.4115222"],["116.1098188","-34.4111434"],["116.1107213","-34.4108111"],["116.1116015","-34.410578"],["116.1140098","-34.4101944"],["116.1216811","-34.4090997"],["116.1227406","-34.4089127"],["116.1232291","-34.4087834"],["116.1240313","-34.4085288"],["116.1255129","-34.4077649"],["116.1267715","-34.4070516"],["116.1291782","-34.4056491"],["116.129766","-34.405242"],["116.1303511","-34.4047569"],["116.1313441","-34.4037166"],["116.1318236","-34.4030348"],["116.1320817","-34.4025571"],["116.1322994","-34.4020453"],["116.1324612","-34.4014489"],["116.1325882","-34.4008075"],["116.1326373","-34.4003006"],["116.1326191","-34.3995473"],["116.1324222","-34.3967592"],["116.1324189","-34.3964121"],["116.1324318","-34.396153"],["116.1324718","-34.3958543"],["116.1325899","-34.3954228"],["116.1328496","-34.3947272"],["116.1331788","-34.3939166"],["116.1335592","-34.3929859"],["116.1339105","-34.3920804"],["116.1344176","-34.3908278"],["116.1353802","-34.3885282"],["116.1357042","-34.3879204"],["116.1359933","-34.387529"],["116.1409648","-34.3813365"],["116.1415535","-34.3807765"],["116.1420703","-34.3803643"],["116.1426134","-34.3800588"],["116.1432072","-34.3797518"],["116.1439227","-34.3794855"],["116.1450238","-34.3791163"],["116.1474039","-34.3783012"],["116.1480949","-34.3780228"],["116.1484944","-34.377823"],["116.1491983","-34.3774223"],["116.1498609","-34.3769541"],["116.1502894","-34.3766337"],["116.15056","-34.3763973"],["116.1509467","-34.3759969"],["116.15128","-34.3756322"],["116.1518559","-34.3748877"],["116.1523009","-34.3742264"],["116.1536662","-34.3717361"],["116.15403","-34.3711228"],["116.1542438","-34.3708427"],["116.1547221","-34.3703258"],["116.1559183","-34.3692854"],["116.1562052","-34.3690003"],["116.1565053","-34.3686258"],["116.1568154","-34.3681355"],["116.1571481","-34.367531"],["116.1580531","-34.3657038"],["116.158336","-34.3649955"],["116.1585984","-34.3639511"],["116.1589436","-34.3623035"],["116.1591122","-34.3617586"],["116.1594724","-34.3610078"],["116.1610738","-34.358058"],["116.1616208","-34.358666"],["116.1632796","-34.3606737"],["116.1634926","-34.3610357"],["116.163685","-34.3615203"],["116.1638348","-34.3625636"],["116.1642146","-34.3656396"],["116.1642505","-34.3662298"],["116.1642125","-34.3666453"],["116.1640205","-34.3673392"],["116.1638119","-34.3681033"],["116.1637018","-34.3686018"],["116.1636419","-34.3689854"],["116.1636481","-34.369247"],["116.16368","-34.3694477"],["116.1637304","-34.3696938"],["116.1638345","-34.3699571"],["116.1639611","-34.3702525"],["116.1646269","-34.3712279"],["116.1658156","-34.3729625"],["116.1667076","-34.374248"],["116.1676374","-34.3756132"],["116.1680128","-34.376102"],["116.1693757","-34.3777018"],["116.1701818","-34.3786354"],["116.1704084","-34.3788409"],["116.1707036","-34.3790432"],["116.1713939","-34.3794286"],["116.1731985","-34.3804051"],["116.173942","-34.3808751"],["116.1754613","-34.3821853"],["116.1781517","-34.384604"],["116.1792748","-34.3853391"],["116.1830929","-34.3874386"],["116.1846609","-34.3881784"],["116.1866466","-34.3891296"],["116.1888749","-34.3901979"],["116.1894612","-34.3905345"],["116.1899161","-34.3910245"],["116.190171","-34.3914066"],["116.1903805","-34.3918887"],["116.1913622","-34.3944581"],["116.1915759","-34.3948947"],["116.1918477","-34.3952481"],["116.1920788","-34.3954886"],["116.1923255","-34.3956933"],["116.1926087","-34.3958846"],["116.1931112","-34.3961394"],["116.193247","-34.3961903"],["116.1933085","-34.3962095"],["116.1935193","-34.3962762"],["116.1937517","-34.3963278"],["116.1942435","-34.3963995"],["116.1955904","-34.3965663"],["116.1961819","-34.3965944"],["116.1964893","-34.3966715"],["116.1969151","-34.3968471"],["116.197421","-34.3971643"],["116.1987247","-34.3981604"],["116.1990259","-34.3984319"],["116.1992833","-34.3986427"],["116.1994546","-34.3988594"],["116.1996271","-34.3991246"],["116.2000251","-34.399994"],["116.2002855","-34.4004363"],["116.2005905","-34.4008043"],["116.2010572","-34.4011957"],["116.2014411","-34.4014562"],["116.2018277","-34.4016987"],["116.2020913","-34.4018276"],["116.202429","-34.4019392"],["116.2040686","-34.4023693"],["116.2044692","-34.402555"],["116.2049563","-34.4028852"],["116.2064204","-34.4041208"],["116.2078208","-34.4052352"],["116.2082479","-34.4056091"],["116.208436","-34.4058158"],["116.2086057","-34.406031"],["116.2087937","-34.4063382"],["116.209181","-34.4072588"],["116.2093853","-34.4076156"],["116.2095459","-34.4078258"],["116.2097171","-34.4079937"],["116.2100267","-34.4082253"],["116.2104582","-34.4084103"],["116.2108401","-34.4085455"],["116.2115429","-34.4087106"],["116.2124886","-34.4089181"],["116.2129543","-34.4090362"],["116.2131882","-34.4091203"],["116.2134367","-34.4092469"],["116.2137431","-34.4094666"],["116.2144808","-34.4102893"],["116.2147712","-34.4106278"],["116.2149554","-34.4109051"],["116.2151343","-34.411255"],["116.2153789","-34.4118971"],["116.2157923","-34.4126786"],["116.215914","-34.4130661"],["116.2160128","-34.4134452"],["116.2161469","-34.4138212"],["116.2164093","-34.4142434"],["116.2174137","-34.4156146"],["116.2177198","-34.4163365"],["116.2178685","-34.4167934"],["116.2178892","-34.4172208"],["116.2178353","-34.4175843"],["116.2175762","-34.4184874"],["116.2175683","-34.4186982"],["116.2175884","-34.4188448"],["116.2176157","-34.4189987"],["116.2176511","-34.4192089"],["116.2177054","-34.4195012"],["116.2178857","-34.4202305"],["116.2181776","-34.4214205"],["116.2183416","-34.4219026"],["116.2188949","-34.4230389"],["116.2190003","-34.4234427"],["116.2190114","-34.4237658"],["116.2189732","-34.4243595"],["116.2188758","-34.4254919"],["116.2188645","-34.4258395"],["116.2189211","-34.4261833"],["116.2190467","-34.4265077"],["116.2191927","-34.4268829"],["116.2207655","-34.4295302"],["116.2212645","-34.4304176"],["116.2214639","-34.4309062"],["116.2219255","-34.4324211"],["116.2222125","-34.4334693"],["116.22239","-34.4340027"],["116.2225629","-34.4345108"],["116.2227812","-34.4349888"],["116.2233438","-34.4359826"],["116.2238947","-34.4368948"],["116.2240884","-34.4373538"],["116.2241615","-34.4376847"],["116.2242032","-34.4380387"],["116.224154","-34.4383975"],["116.2240587","-34.438751"],["116.2239331","-34.4391061"],["116.2233336","-34.4399445"],["116.2230518","-34.4403317"],["116.2229062","-34.440652"],["116.2227828","-34.440991"],["116.2227457","-34.441373"],["116.2227824","-34.4418431"],["116.2229008","-34.4423519"],["116.2231046","-34.4427381"],["116.2233541","-34.4431248"],["116.2237138","-34.4434917"],["116.2240432","-34.4437211"],["116.2246972","-34.4440633"],["116.2261589","-34.4447683"],["116.227253","-34.4453051"],["116.2297818","-34.4469661"],["116.2301661","-34.4472374"],["116.2341341","-34.4493709"],["116.2351716","-34.4500889"],["116.2360013","-34.45069"],["116.236656","-34.4512003"],["116.2370671","-34.4515424"],["116.2373318","-34.4518499"],["116.2374669","-34.4520344"],["116.237675","-34.4525421"],["116.2377131","-34.4527519"],["116.2378139","-34.4532033"],["116.2379882","-34.4536162"],["116.2381863","-34.4540196"],["116.2384915","-34.4545509"],["116.2387564","-34.4549422"],["116.2391393","-34.4553799"],["116.2394617","-34.4556872"],["116.2399712","-34.4560465"],["116.2403132","-34.4562023"],["116.2407533","-34.4563877"],["116.241029","-34.4565222"],["116.2412678","-34.4566466"],["116.2414545","-34.4567711"],["116.2416714","-34.4569529"],["116.2431411","-34.4584701"],["116.2440135","-34.459393"],["116.2486408","-34.4649689"],["116.2496436","-34.4664402"],["116.2506284","-34.4680189"],["116.2509732","-34.4686688"],["116.2515589","-34.4701092"],["116.2520202","-34.4713019"],["116.2524239","-34.4723342"],["116.2525608","-34.472639"],["116.2527773","-34.4731939"],["116.2540061","-34.4760036"],["116.2556214","-34.4796562"],["116.2562307","-34.4810935"],["116.2563377","-34.4814887"],["116.2563775","-34.4817836"],["116.2563753","-34.4822522"],["116.2563401","-34.4832753"],["116.256395","-34.4836051"],["116.2564879","-34.4838987"],["116.2567272","-34.4843457"],["116.2573841","-34.4851272"],["116.2581693","-34.4859797"],["116.2590871","-34.4869602"],["116.2593957","-34.4871901"],["116.2598204","-34.4874605"],["116.2610186","-34.4879394"],["116.2616488","-34.4881564"],["116.2620804","-34.4883313"],["116.2623705","-34.4885043"],["116.2625296","-34.4886273"],["116.2629286","-34.4890166"],["116.2642358","-34.4904318"],["116.2645814","-34.4908672"],["116.2647678","-34.4911769"],["116.2648577","-34.49149"],["116.2649342","-34.492062"],["116.2650269","-34.4934354"],["116.2651054","-34.4946586"],["116.265159","-34.4949734"],["116.2652008","-34.495158"],["116.2652686","-34.4953462"],["116.2653587","-34.4955481"],["116.265558","-34.4958837"],["116.2657171","-34.4960761"],["116.2659183","-34.4962749"],["116.2662619","-34.496557"],["116.2665429","-34.4967344"],["116.2673341","-34.4971489"],["116.2715461","-34.4992822"],["116.2720821","-34.4995748"],["116.2722919","-34.4997394"],["116.2724744","-34.4999104"],["116.2726328","-34.5000781"],["116.2729173","-34.5004508"],["116.2755872","-34.5043473"],["116.2760029","-34.5048913"],["116.276272","-34.5051572"],["116.2766018","-34.5054335"],["116.2768462","-34.5055919"],["116.2771068","-34.5057028"],["116.2773813","-34.5058096"],["116.2778143","-34.505929"],["116.2797077","-34.5063099"],["116.2801397","-34.5064216"],["116.2804032","-34.5065153"],["116.2811133","-34.5068881"],["116.2835162","-34.5082355"],["116.2847151","-34.5089288"],["116.2850302","-34.5091754"],["116.2852233","-34.5093581"],["116.2853778","-34.5095452"],["116.2855355","-34.5097743"],["116.2856519","-34.5099861"],["116.2857643","-34.5102492"],["116.2859638","-34.5110735"],["116.2872004","-34.5188292"],["116.2874253","-34.5199896"],["116.2875361","-34.5202667"],["116.2876823","-34.5205399"],["116.2878272","-34.5207377"],["116.2880662","-34.5210092"],["116.2889805","-34.5218363"],["116.28971","-34.522494"],["116.2903331","-34.5230401"],["116.2905225","-34.5231769"],["116.290817","-34.5233564"],["116.2911577","-34.5234996"],["116.2915265","-34.5236303"],["116.2920992","-34.523805"],["116.3024515","-34.5264327"],["116.3029408","-34.5265883"],["116.3033476","-34.5267387"],["116.332463","-34.5404204"],["116.3328948","-34.5406209"],["116.3332749","-34.5407475"],["116.3335638","-34.5408214"],["116.333843","-34.5408669"],["116.334169","-34.5408979"],["116.3369668","-34.5409406"],["116.3430778","-34.5410372"],["116.3448788","-34.5411254"],["116.3462497","-34.5412148"],["116.3495115","-34.5413886"],["116.3502762","-34.541449"],["116.3506633","-34.541512"],["116.3511314","-34.5416474"],["116.3517629","-34.5418861"],["116.3521231","-34.5420664"],["116.3526295","-34.5423684"],["116.3529953","-34.5426579"],["116.353398","-34.5430293"],["116.3537395","-34.5433563"],["116.3563169","-34.5464767"],["116.3568003","-34.5470218"],["116.3574255","-34.5476699"],["116.3616058","-34.5517573"],["116.3620587","-34.552208"],["116.3631012","-34.5532475"],["116.3642848","-34.5544212"],["116.3655835","-34.5557234"],["116.3669203","-34.5570705"],["116.3689051","-34.558854"],["116.3694913","-34.5594151"],["116.3701502","-34.5601444"],["116.3708435","-34.5609477"],["116.3713675","-34.5615801"],["116.3716587","-34.5618972"],["116.3719848","-34.5621838"],["116.3723706","-34.5624929"],["116.3730647","-34.5630775"],["116.3736616","-34.5636098"],["116.3741111","-34.5640583"],["116.3746881","-34.564692"],["116.3753691","-34.5654277"],["116.3759811","-34.5660507"],["116.3765717","-34.5666526"],["116.3771942","-34.5672948"],["116.3776303","-34.5677428"],["116.3779646","-34.5681377"],["116.3780692","-34.5683306"],["116.3782534","-34.5687302"],["116.380238","-34.5726608"],["116.3804183","-34.572979"],["116.3811785","-34.5737544"],["116.3837704","-34.5760392"],["116.3852647","-34.5772433"],["116.3868437","-34.5785752"],["116.3873205","-34.5789585"],["116.3879379","-34.5793105"],["116.3894567","-34.5800557"],["116.3902834","-34.5804436"],["116.3906311","-34.5805546"],["116.3910545","-34.5806212"],["116.391572","-34.5806614"],["116.392459","-34.5806561"],["116.3929759","-34.5806783"],["116.3933182","-34.5807274"],["116.3936585","-34.5808206"],["116.394055","-34.5810136"],["116.3945066","-34.5813319"],["116.3952194","-34.5820046"],["116.3958252","-34.582566"],["116.3961611","-34.5828"],["116.3964751","-34.5829485"],["116.3968591","-34.5830894"],["116.3978516","-34.5833935"],["116.3983271","-34.5835768"],["116.3986997","-34.5837908"],["116.3990516","-34.5840344"],["116.3994196","-34.5843414"],["116.3997463","-34.5846372"],["116.3999787","-34.5849045"],["116.4001426","-34.5852159"],["116.4005877","-34.5863417"],["116.4008295","-34.5867522"],["116.4012131","-34.5871208"],["116.4021131","-34.5878054"],["116.4025083","-34.5880761"],["116.4028121","-34.5881881"],["116.403168","-34.5882769"],["116.4036645","-34.5883408"],["116.4044679","-34.5883674"],["116.4051492","-34.5884102"],["116.4057283","-34.5885286"],["116.4061398","-34.588665"],["116.4064848","-34.5888251"],["116.4069162","-34.5890891"],["116.4072858","-34.5893826"],["116.4076609","-34.5897151"],["116.4081398","-34.5901851"],["116.4086241","-34.5906586"],["116.4089927","-34.5909413"],["116.4099668","-34.5915231"],["116.4118259","-34.5925937"],["116.4122156","-34.5927238"],["116.4128282","-34.5928848"],["116.4137386","-34.5931145"],["116.4145928","-34.5933634"],["116.4154111","-34.5936699"],["116.4163018","-34.5941072"],["116.4173519","-34.5947173"],["116.4179727","-34.5951448"],["116.4186536","-34.5957325"],["116.4193258","-34.5962587"],["116.4199187","-34.5965755"],["116.4202605","-34.596728"],["116.4207064","-34.5969038"],["116.4213379","-34.5970873"],["116.4218974","-34.5971924"],["116.4225164","-34.5972431"],["116.423177","-34.5972513"],["116.4239458","-34.5971419"],["116.4294793","-34.5959536"],["116.4301565","-34.5958479"],["116.4307405","-34.5958536"],["116.4312478","-34.5959114"],["116.4317454","-34.5959991"],["116.432303","-34.5961854"],["116.4328406","-34.596437"],["116.4332752","-34.5967015"],["116.4337484","-34.597114"],["116.4353919","-34.5986676"],["116.439588","-34.6025873"],["116.4421991","-34.6048472"],["116.4460118","-34.6080263"],["116.4465679","-34.6084527"],["116.4470418","-34.6086708"],["116.4483603","-34.609086"],["116.4488571","-34.6093103"],["116.4494311","-34.6097065"],["116.4502536","-34.6102993"],["116.4507339","-34.6107704"],["116.4510399","-34.6111224"],["116.4512729","-34.6115616"],["116.4513443","-34.612054"],["116.4513558","-34.6125673"],["116.4513074","-34.613437"],["116.4512706","-34.6142403"],["116.4514359","-34.6149413"],["116.4517413","-34.6156813"],["116.45216","-34.6163533"],["116.4526672","-34.6169665"],["116.4530645","-34.6173178"],["116.4535482","-34.6176043"],["116.4540507","-34.6178381"],["116.4546008","-34.6180046"],["116.4551955","-34.6181094"],["116.4587664","-34.6182566"],["116.4594659","-34.618349"],["116.4600164","-34.6184805"],["116.4607898","-34.6188284"],["116.4688107","-34.6230897"],["116.469414","-34.6235235"],["116.4752209","-34.6293651"],["116.4757233","-34.6300023"],["116.4761078","-34.6306167"],["116.4770083","-34.6324655"],["116.4773388","-34.6333028"],["116.4775671","-34.6340736"],["116.477781","-34.6350955"],["116.47804","-34.6360239"],["116.4784029","-34.6368268"],["116.4787375","-34.63739"],["116.4799118","-34.6389923"],["116.4804354","-34.6396536"],["116.4808339","-34.6400847"],["116.481389","-34.6405533"],["116.4820161","-34.6410486"],["116.4824987","-34.6414605"],["116.4827992","-34.641854"],["116.4830575","-34.6424536"],["116.4833692","-34.6431899"],["116.4836698","-34.6437974"],["116.4838882","-34.6441396"],["116.48422","-34.6445234"],["116.4847677","-34.6450331"],["116.49563","-34.6534703"],["116.4959123","-34.6537516"],["116.4961523","-34.654113"],["116.4963185","-34.6544681"],["116.4967055","-34.6555038"],["116.4969925","-34.6562528"],["116.4971467","-34.6566174"],["116.4973084","-34.6568972"],["116.4979833","-34.6577106"],["116.4990448","-34.6589316"],["116.5011054","-34.6614852"],["116.501496","-34.66205"],["116.50171","-34.6624201"],["116.5018006","-34.6626613"],["116.5018575","-34.6629543"],["116.5019416","-34.6641934"],["116.5019923","-34.6644595"],["116.5021125","-34.6647308"],["116.5025798","-34.6656464"],["116.503743","-34.6677542"],["116.5041525","-34.6683281"],["116.5045139","-34.6687117"],["116.5055938","-34.6696084"],["116.5098808","-34.6733237"],["116.5104212","-34.6739552"],["116.5121115","-34.6763736"],["116.5124997","-34.6770618"],["116.5126222","-34.6775705"],["116.5126354","-34.6780932"],["116.5125979","-34.6792323"],["116.5126406","-34.679642"],["116.512776","-34.6800749"],["116.5129473","-34.6804542"],["116.5134451","-34.6810604"],["116.5148991","-34.6827254"],["116.5156305","-34.6834286"],["116.5175681","-34.6848292"],["116.5181279","-34.6853201"],["116.5184745","-34.6858116"],["116.5186223","-34.6861625"],["116.5187279","-34.6865253"],["116.5188421","-34.6874142"],["116.5189574","-34.6884037"],["116.5190727","-34.6893004"],["116.5195497","-34.6913702"],["116.5195988","-34.6919452"],["116.5195367","-34.6924479"],["116.5193877","-34.692877"],["116.5191498","-34.6932744"],["116.5189386","-34.6935217"],["116.5179689","-34.6943642"],["116.5176619","-34.6946842"],["116.5175356","-34.6948403"],["116.51736","-34.6951009"],["116.5172072","-34.6954473"],["116.5171106","-34.695777"],["116.5170727","-34.6962528"],["116.5171089","-34.6966241"],["116.5172529","-34.6971457"],["116.5175904","-34.6981276"],["116.5177114","-34.698523"],["116.5178017","-34.6990478"],["116.5180778","-34.7014586"],["116.5181779","-34.7025158"],["116.5181492","-34.7030684"],["116.5178739","-34.7053003"],["116.5178313","-34.7057521"],["116.517853","-34.7062914"],["116.5180088","-34.7079825"],["116.5180953","-34.7087344"],["116.5182679","-34.7093154"],["116.5188436","-34.7109094"],["116.5191282","-34.7116187"],["116.5192695","-34.7119282"],["116.5194364","-34.7121456"],["116.5200065","-34.7127066"],["116.5214481","-34.7140609"],["116.5220085","-34.7146644"],["116.5222575","-34.715088"],["116.5223934","-34.7154929"],["116.5224432","-34.715943"],["116.5224334","-34.7163407"],["116.522214","-34.7171824"],["116.521412","-34.7196316"],["116.5200746","-34.7227549"],["116.5195799","-34.7239582"],["116.5192913","-34.7245684"],["116.5189554","-34.7250193"],["116.5186009","-34.725327"],["116.5181556","-34.7256027"],["116.5177377","-34.7258015"],["116.5173055","-34.7259446"],["116.5168914","-34.7260297"],["116.5164302","-34.7260757"],["116.5159355","-34.7260553"],["116.5151511","-34.7259279"],["116.5142688","-34.7257631"],["116.5130341","-34.7255289"],["116.5125303","-34.7254806"],["116.5097586","-34.7254528"],["116.5090947","-34.7255097"],["116.5085727","-34.7256312"],["116.5081598","-34.7257876"],["116.5075575","-34.7261199"],["116.506401","-34.7268634"],["116.5059368","-34.7272289"],["116.5051688","-34.7279737"],["116.501278","-34.7319582"],["116.5004272","-34.732849"],["116.5000851","-34.7332651"],["116.4997852","-34.7337426"],["116.4995517","-34.7342285"],["116.4992172","-34.7354051"],["116.497027","-34.7434592"],["116.4969069","-34.7439851"],["116.4968666","-34.7446169"],["116.496932","-34.7470034"],["116.4970102","-34.7475931"],["116.4971088","-34.7479136"],["116.4973052","-34.7483044"],["116.4976335","-34.7487558"],["116.4982586","-34.7495686"],["116.4985155","-34.749994"],["116.4986821","-34.7503976"],["116.4987621","-34.7508708"],["116.4988536","-34.7517643"],["116.4989335","-34.7521341"],["116.4990306","-34.7523986"],["116.4991918","-34.7527175"],["116.4997276","-34.7536779"],["116.5012694","-34.7565462"],["116.5014869","-34.7569903"],["116.501651","-34.7575774"],["116.5016884","-34.7579583"],["116.5016836","-34.7583874"],["116.5016048","-34.7595024"],["116.5015365","-34.7605111"],["116.5015166","-34.7612632"],["116.5015395","-34.7626533"],["116.5014831","-34.7653713"],["116.5015836","-34.7667915"],["116.5015712","-34.7673634"],["116.5014933","-34.7681833"],["116.5015003","-34.7686075"],["116.5015356","-34.7689594"],["116.5020315","-34.7706318"],["116.5028308","-34.7733073"],["116.5031067","-34.7746333"],["116.5034201","-34.7769059"],["116.5038055","-34.779588"],["116.5044261","-34.7824657"],["116.5045543","-34.782909"],["116.5047015","-34.7832081"],["116.50489","-34.7834974"],["116.5051499","-34.7838084"],["116.5082881","-34.7866926"],["116.5122647","-34.7903311"],["116.5144524","-34.7920454"],["116.5225148","-34.7971135"],["116.5256166","-34.7990823"],["116.5261801","-34.7995821"],["116.5281517","-34.8015091"],["116.528765","-34.8021757"],["116.5290733","-34.8026379"],["116.5293041","-34.8031549"],["116.5298559","-34.8051556"],["116.5329173","-34.8164953"],["116.5332222","-34.8174094"],["116.5334249","-34.8178112"],["116.5340046","-34.8187105"],["116.5342184","-34.8191995"],["116.5343051","-34.8195635"],["116.5343309","-34.8199195"],["116.5342209","-34.8210102"],["116.5339687","-34.8232545"],["116.5338948","-34.8241161"],["116.5339442","-34.8245103"],["116.534033","-34.8248095"],["116.5341993","-34.825187"],["116.5345077","-34.825619"],["116.5364406","-34.8277956"],["116.5368121","-34.8283216"],["116.5369812","-34.8286952"],["116.5370682","-34.8290418"],["116.5371053","-34.8293543"],["116.53708","-34.8298162"],["116.5369577","-34.830964"],["116.5368632","-34.8324092"],["116.5367968","-34.8360054"],["116.5368149","-34.8368263"],["116.5368955","-34.8372049"],["116.5370398","-34.8375739"],["116.5372293","-34.8378961"],["116.5374892","-34.8382235"],["116.5378274","-34.8385139"],["116.5381075","-34.8387146"],["116.5384742","-34.8389156"],["116.5388966","-34.83909"],["116.5393303","-34.8392343"],["116.5398369","-34.8393696"],["116.5411081","-34.839608"],["116.5416353","-34.8397418"],["116.5420253","-34.8398957"],["116.5424515","-34.8401326"],["116.542845","-34.8404285"],["116.5431795","-34.8407898"],["116.5434442","-34.8411966"],["116.5436564","-34.8417386"],["116.5440599","-34.8432544"],["116.5443007","-34.8438737"],["116.5451188","-34.8452284"],["116.5455029","-34.8459027"],["116.5456316","-34.8461928"],["116.5457314","-34.8465723"],["116.5458061","-34.8472822"],["116.5460572","-34.8508008"],["116.5460578","-34.8512047"],["116.5459716","-34.8516861"],["116.5458629","-34.8520117"],["116.5455318","-34.8526476"],["116.5446606","-34.8541476"],["116.5443881","-34.8546536"],["116.5442595","-34.8549758"],["116.5441958","-34.855222"],["116.5441504","-34.8556436"],["116.5441855","-34.8560369"],["116.5444569","-34.857135"],["116.545928","-34.8626573"],["116.5465519","-34.8644287"],["116.5497172","-34.8729134"],["116.5507382","-34.8759698"],["116.5535137","-34.884599"],["116.5537439","-34.885247"],["116.5540099","-34.8857355"],["116.5580884","-34.8923394"],["116.558591","-34.8931953"],["116.558767","-34.8937003"],["116.5595145","-34.896443"],["116.559756","-34.8970712"],["116.5599439","-34.8974139"],["116.5604278","-34.8980549"],["116.5617328","-34.8996359"],["116.562327","-34.9004152"],["116.5625537","-34.9008488"],["116.5627676","-34.9013724"],["116.5628501","-34.9017663"],["116.5629093","-34.9022975"],["116.5629632","-34.90334"],["116.5630479","-34.9038541"],["116.563505","-34.9049461"],["116.5662544","-34.9109638"],["116.5672696","-34.9135428"],["116.5677903","-34.9150322"],["116.568355","-34.9166471"],["116.5685628","-34.9170839"],["116.5688747","-34.9175191"],["116.5700619","-34.9188364"],["116.5733849","-34.9224504"],["116.5756988","-34.9250364"],["116.5822058","-34.9319942"],["116.5834034","-34.933476"],["116.584377","-34.9346204"],["116.5858656","-34.9362717"],["116.5865899","-34.9371307"],["116.58748","-34.9384117"],["116.5886425","-34.9401143"],["116.5890988","-34.9406941"],["116.5909094","-34.9424706"],["116.5927639","-34.9444421"],["116.5931975","-34.9450437"],["116.5934428","-34.9455525"],["116.5936015","-34.9460245"],["116.5936844","-34.9464633"],["116.5936953","-34.9468655"],["116.5936525","-34.9472832"],["116.5935665","-34.9477123"],["116.593434","-34.9481169"],["116.5932438","-34.948506"],["116.5929021","-34.9491186"],["116.5927212","-34.9495371"],["116.5926328","-34.9499124"],["116.5925995","-34.9502373"],["116.5926548","-34.9506982"],["116.5928859","-34.9518515"],["116.5929927","-34.9524108"],["116.592993","-34.9527724"],["116.5929595","-34.9535869"],["116.5929615","-34.9542232"],["116.5930058","-34.9546125"],["116.5931144","-34.954979"],["116.5933021","-34.9553792"],["116.5935059","-34.9556672"],["116.5939723","-34.9561018"],["116.5990777","-34.9605567"],["116.6012424","-34.9624484"],["116.6040382","-34.9651144"],["116.6047033","-34.9657878"],["116.6050021","-34.9661688"],["116.6051314","-34.9664327"],["116.6052223","-34.9669376"],["116.6053737","-34.9678514"],["116.6055151","-34.9684824"],["116.605867","-34.9694424"],["116.6059463","-34.969713"],["116.6059722","-34.9700005"],["116.6059911","-34.971017"],["116.605996","-34.9725004"],["116.6059151","-34.9736864"],["116.6056315","-34.9761799"],["116.6055248","-34.9776234"],["116.6055086","-34.9787976"],["116.6055526","-34.9801082"],["116.6056014","-34.9805717"],["116.6056951","-34.9809257"],["116.6058553","-34.9812814"],["116.6060373","-34.9815949"],["116.6063232","-34.9819672"],["116.606642","-34.9822749"],["116.6070262","-34.9825754"],["116.6074567","-34.9828226"],["116.6078606","-34.9830151"],["116.6081831","-34.9831126"],["116.6090768","-34.9832896"],["116.6119157","-34.9837663"],["116.6131555","-34.9839308"],["116.6137032","-34.9839182"],["116.6141284","-34.9838709"],["116.6145129","-34.9837696"],["116.6149055","-34.9836298"],["116.6161237","-34.9830571"],["116.6165972","-34.9829082"],["116.6170249","-34.9828186"],["116.617436","-34.9827853"],["116.6178456","-34.982783"],["116.6185464","-34.9828615"],["116.6223163","-34.9835893"],["116.6238331","-34.9839884"],["116.627713","-34.985348"],["116.6287441","-34.9856731"],["116.629236","-34.9857433"],["116.6296572","-34.9857543"],["116.630012","-34.9857288"],["116.6302262","-34.9856922"],["116.6307789","-34.9855449"],["116.6313555","-34.9853531"],["116.6324229","-34.9850004"],["116.6336957","-34.9845856"],["116.6342854","-34.9844281"],["116.6346571","-34.9843706"],["116.6350871","-34.984365"],["116.6359994","-34.9844218"],["116.6421989","-34.9849067"],["116.6430986","-34.9849232"],["116.6435701","-34.9848689"],["116.6440675","-34.984773"],["116.6445604","-34.9846238"],["116.644993","-34.9844362"],["116.6455058","-34.9841665"],["116.6475329","-34.9828215"],["116.6488684","-34.9819403"],["116.6500855","-34.9813125"],["116.6529654","-34.979923"],["116.6539253","-34.9794923"],["116.6544037","-34.979371"],["116.6547289","-34.9793445"],["116.6561856","-34.9793982"],["116.6587509","-34.9795159"],["116.6606681","-34.9796174"],["116.6612747","-34.9797313"],["116.6617265","-34.9798663"],["116.6621736","-34.9800336"],["116.6626109","-34.9802673"],["116.6630016","-34.9805216"],["116.6634002","-34.9808432"],["116.6637412","-34.9811862"],["116.6640355","-34.9815664"],["116.6643336","-34.9821206"],["116.6653424","-34.9843627"],["116.6657223","-34.9849507"],["116.6660027","-34.9852257"],["116.6663141","-34.9854718"],["116.6668803","-34.9857995"],["116.6673741","-34.9859591"],["116.6679756","-34.9861078"],["116.6686098","-34.9861366"],["116.6691057","-34.9860905"],["116.6697189","-34.985923"],["116.6708355","-34.9855635"],["116.6714604","-34.9854171"],["116.677701","-34.9848489"],["116.679158","-34.9847581"],["116.6805159","-34.9847871"],["116.6811022","-34.9847731"],["116.6814617","-34.9847052"],["116.6821006","-34.9845062"],["116.6828993","-34.9842519"],["116.6835221","-34.9841086"],["116.6845025","-34.9839885"],["116.6859043","-34.9838417"],["116.6866223","-34.9838623"],["116.687972","-34.9840863"],["116.6884433","-34.9841245"],["116.688862","-34.9840976"],["116.689739","-34.9839008"],["116.6912684","-34.9835125"],["116.6920467","-34.9832806"],["116.6926876","-34.9829558"],["116.695001","-34.981625"],["116.6953096","-34.9814319"],["116.6955831","-34.9812079"],["116.6958173","-34.9809901"],["116.6960058","-34.9807586"],["116.6961717","-34.9805166"],["116.6963237","-34.9802073"],["116.6965922","-34.97955"],["116.6967735","-34.9792045"],["116.6969643","-34.9789379"],["116.6971728","-34.9787052"],["116.6974095","-34.9784834"],["116.6976866","-34.9782988"],["116.6979394","-34.9781438"],["116.6982252","-34.9780167"],["116.6985593","-34.9778919"],["116.6988462","-34.9778117"],["116.6991025","-34.9777662"],["116.6993914","-34.9777313"],["116.6997243","-34.9777251"],["116.7000832","-34.9777314"],["116.7006736","-34.9778057"],["116.7011395","-34.9778646"],["116.7015661","-34.9779118"],["116.7019112","-34.977925"],["116.7022365","-34.9779104"],["116.7025715","-34.9778636"],["116.7029475","-34.9777887"],["116.7050048","-34.9772739"],["116.7076914","-34.9765842"],["116.7087484","-34.9762398"],["116.7096487","-34.9758186"],["116.7180661","-34.9717191"],["116.718555","-34.9715436"],["116.718972","-34.9714622"],["116.7193804","-34.9714292"],["116.7235786","-34.9715038"],["116.7242961","-34.9715437"],["116.7246637","-34.9716036"],["116.7253783","-34.9718098"],["116.725693","-34.9719501"],["116.7260152","-34.9721278"],["116.72626","-34.9723276"],["116.7264937","-34.9725348"],["116.7266532","-34.9726932"],["116.7268768","-34.9729465"],["116.7269579","-34.9730466"],["116.7270359","-34.9731829"],["116.7271551","-34.9734103"],["116.7274883","-34.973996"],["116.7278554","-34.9748449"],["116.7281737","-34.9754797"],["116.7282758","-34.9755949"],["116.7284162","-34.9756981"],["116.728608","-34.9758148"],["116.7288196","-34.9759042"],["116.7292607","-34.9760061"],["116.730074","-34.976168"],["116.7303279","-34.9761959"],["116.7305538","-34.9762029"],["116.7308106","-34.9761856"],["116.7357041","-34.9752838"],["116.7362218","-34.9752397"],["116.7365836","-34.9752318"],["116.7369138","-34.9752501"],["116.7373684","-34.9753329"],["116.7427635","-34.9768275"],["116.7435487","-34.9770968"],["116.7439519","-34.9773187"],["116.7443637","-34.9776316"],["116.7447755","-34.9780767"],["116.7449722","-34.9783839"],["116.745121","-34.9787197"],["116.7451778","-34.9789239"],["116.7452091","-34.9791916"],["116.7452221","-34.9797744"],["116.7452151","-34.980375"],["116.7452479","-34.9806816"],["116.7453272","-34.9809887"],["116.7454486","-34.9812779"],["116.7456049","-34.9815756"],["116.7458224","-34.981855"],["116.7460877","-34.9821423"],["116.7464953","-34.9824428"],["116.7474898","-34.9830955"],["116.7479808","-34.9834328"],["116.7482762","-34.9836814"],["116.7485465","-34.9839598"],["116.7487949","-34.9842691"],["116.7490043","-34.9845994"],["116.7491751","-34.984952"],["116.7493038","-34.9853288"],["116.749393","-34.9857673"],["116.7494546","-34.9863101"],["116.7495227","-34.9869278"],["116.7495496","-34.9871808"],["116.7495873","-34.9874932"],["116.7496566","-34.9877738"],["116.7497597","-34.9880476"],["116.7499038","-34.9883199"],["116.750076","-34.9885684"],["116.7503187","-34.9888489"],["116.7506381","-34.9891668"],["116.7509977","-34.9894083"],["116.7514006","-34.989594"],["116.752629","-34.9899584"],["116.7593167","-34.9917992"],["116.7606959","-34.992194"],["116.7614813","-34.9924517"],["116.7625707","-34.9927801"],["116.7637383","-34.9931116"],["116.7648331","-34.9934224"],["116.7653358","-34.9935952"],["116.7657254","-34.9937827"],["116.7660709","-34.9940081"],["116.7664164","-34.9943152"],["116.766701","-34.9946713"],["116.7668917","-34.9950014"],["116.7670447","-34.9953746"],["116.7671442","-34.9957524"],["116.7672148","-34.9961217"],["116.7676342","-34.9977719"],["116.7677816","-34.9982245"],["116.7679584","-34.9985416"],["116.7681911","-34.9988464"],["116.7684703","-34.9991129"],["116.7687914","-34.9993386"],["116.7691503","-34.9995471"],["116.7695205","-34.9997123"],["116.76994","-34.9998479"],["116.7703871","-34.999939"],["116.7708356","-34.9999782"],["116.7712821","-34.9999764"],["116.7717398","-34.9999245"],["116.772191","-34.9998281"],["116.772598","-34.9996614"],["116.7729695","-34.9994594"],["116.7733143","-34.9991979"],["116.774395","-34.9981591"],["116.7746872","-34.9979252"],["116.7750171","-34.9977348"],["116.7755245","-34.997532"],["116.777004","-34.9970547"],["116.7776875","-34.996882"],["116.7781665","-34.9968086"],["116.7786441","-34.9967854"],["116.7791341","-34.996798"],["116.7796361","-34.9968564"],["116.7801229","-34.9969568"],["116.7809519","-34.9971858"],["116.7820095","-34.9974833"],["116.7829878","-34.9977389"],["116.7834826","-34.9978235"],["116.7839145","-34.9978546"],["116.7848095","-34.997793"],["116.7883573","-34.9974234"],["116.7896293","-34.997293"],["116.7901213","-34.9972774"],["116.7906089","-34.9973055"],["116.7911149","-34.9974115"],["116.7922454","-34.9977813"],["116.7927736","-34.9979125"],["116.7932191","-34.9979589"],["116.7936699","-34.9979535"],["116.7947684","-34.9978081"],["116.7973819","-34.9974115"],["116.798503","-34.9972642"],["116.7990054","-34.9972625"],["116.8013484","-34.9974518"],["116.8026059","-34.997546"],["116.8049053","-34.9977239"],["116.8054658","-34.9977212"],["116.8059332","-34.9976754"],["116.8063677","-34.9975642"],["116.806781","-34.9973897"],["116.8071689","-34.99716"],["116.8074924","-34.9969187"],["116.8077781","-34.9966288"],["116.8079886","-34.996358"],["116.8082356","-34.9960161"],["116.8085062","-34.9956619"],["116.8088044","-34.9953965"],["116.8091481","-34.9951654"],["116.8094627","-34.995029"],["116.8097368","-34.9949388"],["116.8103303","-34.9948137"],["116.8116853","-34.9945409"],["116.8119738","-34.9944633"],["116.8122043","-34.9943689"],["116.8124855","-34.9941892"],["116.8127026","-34.9939857"],["116.8128597","-34.9937509"],["116.8129942","-34.9934775"],["116.8133637","-34.9925967"],["116.813483","-34.9923895"],["116.8136406","-34.9921885"],["116.813836","-34.99203"],["116.8140283","-34.9919324"],["116.8142419","-34.9918597"],["116.8144476","-34.9918278"],["116.8146554","-34.9918188"],["116.8148722","-34.9918465"],["116.8156707","-34.9920636"],["116.816167","-34.9922342"],["116.816343","-34.9923204"],["116.8166642","-34.9925502"],["116.8175432","-34.9931984"],["116.8184004","-34.9938075"],["116.8188807","-34.9940764"],["116.8194783","-34.9943476"],["116.8205507","-34.9948136"],["116.8217892","-34.9955603"],["116.8221927","-34.9957622"],["116.8225313","-34.9958786"],["116.8228387","-34.9959639"],["116.8231623","-34.9960302"],["116.8235126","-34.9960521"],["116.8241468","-34.9960607"],["116.8269693","-34.9960726"],["116.8275598","-34.9960391"],["116.8279923","-34.9959617"],["116.8284127","-34.9958398"],["116.8291968","-34.9955057"],["116.83095","-34.9947213"],["116.8317355","-34.9943912"],["116.8322417","-34.9942546"],["116.8332309","-34.9940843"],["116.8342042","-34.9939316"],["116.8347477","-34.9938792"],["116.8352301","-34.9938964"],["116.835918","-34.9940111"],["116.8383758","-34.9945674"],["116.8390135","-34.9947665"],["116.8397231","-34.9951199"],["116.84068","-34.9956113"],["116.8412067","-34.9958467"],["116.8416996","-34.9959843"],["116.8421346","-34.9960504"],["116.8428234","-34.9960911"],["116.8465345","-34.9961109"],["116.847724","-34.9961028"],["116.8483074","-34.9960354"],["116.8488032","-34.9959337"],["116.8501287","-34.9956215"],["116.8516147","-34.9952734"],["116.8524663","-34.9950993"],["116.8540968","-34.994886"],["116.861382","-34.99398"],["116.8619307","-34.9939412"],["116.8624483","-34.9939293"],["116.8629419","-34.993951"],["116.8634402","-34.9940121"],["116.8639107","-34.994099"],["116.8642439","-34.9941814"],["116.8646654","-34.9943043"],["116.8670034","-34.9951806"],["116.8690492","-34.9959494"],["116.8706104","-34.9965117"],["116.8711714","-34.9966565"],["116.8725654","-34.9968413"],["116.8745963","-34.9970738"],["116.8752377","-34.9971034"],["116.8763677","-34.9970203"],["116.8799936","-34.9966883"],["116.8806875","-34.9965501"],["116.8811106","-34.9964073"],["116.8814215","-34.9962438"],["116.8820753","-34.995766"],["116.8828997","-34.9951502"],["116.8835765","-34.9947984"],["116.8839402","-34.9946636"],["116.8842841","-34.9945832"],["116.8848378","-34.9945161"],["116.8877937","-34.9943144"],["116.8903068","-34.9939374"],["116.8907736","-34.9939038"],["116.8911062","-34.9939043"],["116.8914516","-34.9939323"],["116.8918197","-34.9939998"],["116.8923494","-34.9941475"],["116.8941164","-34.9947395"],["116.8965552","-34.9955824"],["116.8974643","-34.9958772"],["116.8979306","-34.9959695"],["116.8984544","-34.9960405"],["116.8991584","-34.9960601"],["116.8999544","-34.9959854"],["116.9005765","-34.9958732"],["116.901225","-34.9956747"],["116.9018516","-34.9953826"],["116.9028084","-34.994896"],["116.9034801","-34.9946021"],["116.9040676","-34.9944358"],["116.9048537","-34.994312"],["116.9101369","-34.99358"],["116.9107911","-34.9934283"],["116.9115857","-34.9931085"],["116.9124136","-34.992776"],["116.9129978","-34.9926516"],["116.9141449","-34.9925006"],["116.9149763","-34.9922873"],["116.9175191","-34.9912765"],["116.9181664","-34.9911345"],["116.9189336","-34.9911047"],["116.9206484","-34.9911003"],["116.9212823","-34.9910385"],["116.921893","-34.9909052"],["116.9229611","-34.9906095"],["116.923484","-34.9904317"],["116.9240631","-34.9901364"],["116.9266579","-34.9885656"],["116.9272719","-34.9881385"],["116.9275286","-34.9878933"],["116.9277706","-34.9875504"],["116.9279542","-34.9872243"],["116.9281188","-34.9867065"],["116.9281568","-34.9863363"],["116.9281445","-34.9859987"],["116.9280907","-34.9856909"],["116.9279446","-34.9852708"],["116.9263549","-34.9815476"],["116.9262231","-34.9809319"],["116.9262446","-34.9804577"],["116.926354","-34.9800129"],["116.9265272","-34.9796134"],["116.9267707","-34.9792648"],["116.9273632","-34.9787283"],["116.9308218","-34.9758668"],["116.9314743","-34.9754164"],["116.9318692","-34.9752467"],["116.9323174","-34.9751011"],["116.9327448","-34.9750035"],["116.9331914","-34.9749772"],["116.9336831","-34.9749906"],["116.9341499","-34.9750746"],["116.9347111","-34.9752412"],["116.9362325","-34.975881"],["116.9367304","-34.9760339"],["116.9371847","-34.9761244"],["116.9376613","-34.9761678"],["116.9381559","-34.9761593"],["116.9386394","-34.9761156"],["116.9390947","-34.976025"],["116.9396372","-34.975851"],["116.9408071","-34.9752722"],["116.9431143","-34.9740189"],["116.9451295","-34.9728974"],["116.9460562","-34.972255"],["116.9484379","-34.9703018"],["116.949648","-34.9692432"],["116.9501989","-34.9688363"],["116.9505559","-34.9686187"],["116.9508911","-34.9684438"],["116.9512719","-34.9682779"],["116.9516676","-34.9681346"],["116.9524547","-34.9679302"],["116.9528399","-34.9678694"],["116.9543362","-34.967748"],["116.9548325","-34.9677326"],["116.9552365","-34.9677449"],["116.9556359","-34.9677915"],["116.9560709","-34.9678819"],["116.9570755","-34.9681771"],["116.9582536","-34.9685383"],["116.9592623","-34.968838"],["116.9596821","-34.9689253"],["116.9600384","-34.9689681"],["116.9604604","-34.9689878"],["116.9613795","-34.9689455"],["116.9749369","-34.9677751"],["116.9752549","-34.9677594"],["116.9756103","-34.9677595"],["116.9758952","-34.9677769"],["116.9762278","-34.9678155"],["116.9775885","-34.9680948"],["116.9788622","-34.968365"],["116.9801257","-34.9686271"],["116.9805989","-34.9686847"],["116.9848631","-34.9688305"],["116.9861318","-34.9688494"],["116.9868339","-34.968799"],["116.98731","-34.96874"],["116.9877266","-34.9686642"],["116.9881876","-34.9685543"],["116.9888812","-34.9683462"],["116.9893345","-34.9681818"],["116.9897887","-34.9679808"],["116.9904389","-34.967645"],["116.9908552","-34.9673988"],["116.9912016","-34.9671572"],["116.9933177","-34.9654474"],["117.000654","-34.9595212"],["117.0010359","-34.9592484"],["117.0013651","-34.9590496"],["117.0018363","-34.9588114"],["117.0042552","-34.9577542"],["117.0050276","-34.9574019"],["117.0055814","-34.957117"],["117.005997","-34.9569139"],["117.0063778","-34.9567573"],["117.0067388","-34.9566383"],["117.0071217","-34.9565398"],["117.0075333","-34.9564639"],["117.0079197","-34.9564176"],["117.008401","-34.9564014"],["117.0093454","-34.9564132"],["117.0098655","-34.9564023"],["117.0103085","-34.9563546"],["117.0121458","-34.9560013"],["117.0138113","-34.9556643"],["117.0152781","-34.955346"],["117.0157173","-34.9552204"],["117.0163407","-34.9549861"],["117.0174455","-34.9545462"],["117.0179397","-34.9543891"],["117.0183557","-34.9543126"],["117.0187763","-34.9542784"],["117.0191787","-34.9542844"],["117.0196166","-34.9543439"],["117.0199853","-34.9544319"],["117.0203732","-34.9545728"],["117.021037","-34.9549388"],["117.0224244","-34.9557662"],["117.0240548","-34.9567371"],["117.024465","-34.9569411"],["117.0250066","-34.9571537"],["117.0261549","-34.9575353"],["117.0266992","-34.9577432"],["117.0272119","-34.9580025"],["117.0278996","-34.9583737"],["117.0283838","-34.958606"],["117.0291842","-34.9588903"],["117.0306242","-34.9593663"],["117.0312424","-34.9595308"],["117.0317406","-34.9596185"],["117.0322436","-34.9596669"],["117.0327701","-34.9596766"],["117.0341643","-34.9596639"],["117.0347931","-34.9596419"],["117.0353132","-34.959591"],["117.0364141","-34.95941"],["117.0375975","-34.959208"],["117.0386034","-34.9590461"],["117.0390496","-34.9590231"],["117.0394999","-34.9590446"],["117.0399421","-34.9591234"],["117.0402975","-34.9592031"],["117.040644","-34.959295"],["117.0421876","-34.959758"],["117.0481951","-34.9616046"],["117.0490301","-34.9618898"],["117.0500055","-34.9622359"],["117.0504073","-34.9624164"],["117.0507526","-34.962602"],["117.0510705","-34.9628105"],["117.0513897","-34.9630638"],["117.0540848","-34.9656138"],["117.0560591","-34.9674791"],["117.0574603","-34.9687885"],["117.0577971","-34.9690466"],["117.0581518","-34.9692711"],["117.0585168","-34.9694591"],["117.0588848","-34.9696067"],["117.0592933","-34.9697415"],["117.0599826","-34.9699247"],["117.0627709","-34.9706292"],["117.0641758","-34.9709913"],["117.0646896","-34.9711545"],["117.0651168","-34.971328"],["117.0655124","-34.9715239"],["117.0659053","-34.9717609"],["117.0663542","-34.9720944"],["117.0669172","-34.9725269"],["117.0673823","-34.972868"],["117.0677805","-34.9731189"],["117.0688373","-34.9736272"],["117.1129112","-34.9929746"],["117.1152778","-34.9939559"],["117.11755","-34.9948715"],["117.1184644","-34.9951961"],["117.1189564","-34.9953202"],["117.1195024","-34.9954304"],["117.1200153","-34.9955036"],["117.1205457","-34.9955534"],["117.1210877","-34.9955731"],["117.1216419","-34.9955691"],["117.122711","-34.9954691"],["117.1249365","-34.9952197"],["117.1269191","-34.9950045"],["117.1275058","-34.9949716"],["117.1280599","-34.9949707"],["117.1289227","-34.9950233"],["117.1294811","-34.9950919"],["117.1299668","-34.9951751"],["117.1304303","-34.9952784"],["117.1309182","-34.9954078"],["117.1314033","-34.9955621"],["117.1319245","-34.9957648"],["117.1324883","-34.9960039"],["117.133189","-34.9963017"],["117.1336045","-34.9964469"],["117.1340946","-34.9965856"],["117.1348525","-34.9967633"],["117.1354189","-34.9968694"],["117.1359042","-34.9969318"],["117.1363542","-34.996969"],["117.136692","-34.9969812"],["117.137446","-34.9969692"],["117.1383448","-34.9968744"],["117.1389854","-34.9967578"],["117.1395453","-34.9966364"],["117.1402649","-34.9964195"],["117.140951","-34.9961607"],["117.1414107","-34.9959535"],["117.1420605","-34.9956029"],["117.1424811","-34.9953422"],["117.1428429","-34.9950825"],["117.1431647","-34.9948285"],["117.1435413","-34.9944929"],["117.1445825","-34.9934002"],["117.1459048","-34.9920056"],["117.146868","-34.9910361"],["117.1473685","-34.99057"],["117.1479268","-34.9901291"],["117.1482673","-34.9898946"],["117.1486238","-34.9896793"],["117.1492405","-34.9893687"],["117.1499236","-34.9890828"],["117.1503325","-34.9889432"],["117.1507955","-34.9888115"],["117.1515478","-34.9886433"],["117.1528057","-34.9884393"],["117.1539319","-34.988272"],["117.1557441","-34.9880179"],["117.1561003","-34.9879928"],["117.1565763","-34.9879769"],["117.1574197","-34.9879964"],["117.1588406","-34.9880887"],["117.1597139","-34.9881171"],["117.1606301","-34.98809"],["117.1653526","-34.9877171"],["117.1670578","-34.9876829"],["117.1678621","-34.9877186"],["117.1684701","-34.9877648"],["117.1696384","-34.9879176"],["117.1703467","-34.9880435"],["117.1855996","-34.9915424"],["117.1933273","-34.9938004"],["117.1943669","-34.9940961"],["117.1946041","-34.9941497"],["117.1950122","-34.9942291"],["117.1955019","-34.9943025"],["117.1962481","-34.9943741"],["117.1967939","-34.9943999"],["117.197945","-34.9943364"],["117.2016633","-34.9940369"],["117.2038141","-34.9937993"],["117.2048448","-34.9936259"],["117.2057487","-34.9934344"],["117.2067611","-34.9931684"],["117.2086303","-34.9925517"],["117.2117767","-34.9914594"],["117.2130013","-34.9910764"],["117.2149136","-34.9907158"],["117.2158317","-34.9905668"],["117.2163389","-34.9905506"],["117.2168384","-34.9905829"],["117.2176159","-34.9906847"],["117.2190293","-34.9909151"],["117.2199305","-34.9910504"],["117.2212797","-34.9911296"],["117.2267488","-34.9913678"],["117.2273258","-34.9913713"],["117.227716","-34.9913333"],["117.2281177","-34.9912551"],["117.2285292","-34.991135"],["117.2289184","-34.9909761"],["117.2293014","-34.9907726"],["117.2296567","-34.9905299"],["117.2300127","-34.9902138"],["117.230471","-34.9895572"],["117.2306334","-34.9891551"],["117.2307215","-34.9887999"],["117.2307902","-34.9883038"],["117.2309006","-34.9872482"],["117.230991","-34.9868654"],["117.2311544","-34.9864903"],["117.2313768","-34.986143"],["117.2316489","-34.9858374"],["117.2320018","-34.9855465"],["117.2323619","-34.9853224"],["117.2327791","-34.9851321"],["117.2332459","-34.9849832"],["117.2337495","-34.9848945"],["117.2341874","-34.9848529"],["117.2349951","-34.9847985"],["117.2355187","-34.9847783"],["117.2362","-34.9847845"],["117.2378608","-34.9848971"],["117.2387028","-34.9849168"],["117.2392611","-34.9848796"],["117.2397498","-34.9848003"],["117.2402805","-34.9847118"],["117.2407482","-34.9846625"],["117.2413005","-34.9846321"],["117.2420935","-34.984628"],["117.2427349","-34.9846144"],["117.2432432","-34.984562"],["117.2437311","-34.984458"],["117.2441887","-34.9842787"],["117.2458534","-34.9834738"],["117.2465249","-34.9831603"],["117.2469881","-34.9829748"],["117.2474673","-34.9828413"],["117.2479845","-34.9827854"],["117.248507","-34.9828135"],["117.248973","-34.9828875"],["117.2495584","-34.9830236"],["117.2500709","-34.983185"],["117.2505777","-34.9833903"],["117.2511915","-34.9837028"],["117.252724","-34.9846129"],["117.2533337","-34.9849184"],["117.2538402","-34.9851092"],["117.2543828","-34.9852586"],["117.2549175","-34.9853552"],["117.255474","-34.9854008"],["117.2560389","-34.9854009"],["117.2566133","-34.9853375"],["117.2618051","-34.9843034"],["117.2623284","-34.9842504"],["117.2628386","-34.9842613"],["117.2666211","-34.9846646"],["117.2701409","-34.9851484"],["117.270687","-34.9852484"],["117.2715391","-34.9854776"],["117.2736447","-34.9861056"],["117.274356","-34.9862818"],["117.2748398","-34.9863355"],["117.2753447","-34.9863324"],["117.2758336","-34.9862717"],["117.2763021","-34.9861547"],["117.2768858","-34.9859434"],["117.2775258","-34.9857034"],["117.2780569","-34.9855178"],["117.2785","-34.9854116"],["117.2789567","-34.9853494"],["117.2794253","-34.985328"],["117.2798842","-34.9853458"],["117.2803588","-34.9854207"],["117.2809456","-34.9855844"],["117.2821954","-34.9860043"],["117.2829697","-34.9863124"],["117.2835463","-34.9865372"],["117.2839892","-34.9866482"],["117.2844358","-34.9867202"],["117.2850713","-34.9867555"],["117.28613","-34.9867866"],["117.2869727","-34.9868447"],["117.2883725","-34.9869996"],["117.2890439","-34.9870583"],["117.2894735","-34.9870144"],["117.2898848","-34.9869081"],["117.2902858","-34.9867467"],["117.2908773","-34.986425"],["117.2918871","-34.9858332"],["117.2925561","-34.985452"],["117.2929506","-34.9852968"],["117.2933816","-34.9852003"],["117.2938438","-34.9851532"],["117.2943023","-34.985188"],["117.2950472","-34.9853894"],["117.2964325","-34.9857934"],["117.2973735","-34.9860594"],["117.29784","-34.9861543"],["117.2982866","-34.986212"],["117.2987318","-34.9862231"],["117.2991755","-34.9861393"],["117.299608","-34.9859602"],["117.3002781","-34.9855129"],["117.3005821","-34.985226"],["117.3008031","-34.9849225"],["117.3010394","-34.984525"],["117.3016338","-34.9832942"],["117.3018968","-34.9828142"],["117.3021479","-34.9824905"],["117.302463","-34.9821909"],["117.3028136","-34.9819506"],["117.3034048","-34.9816717"],["117.3041055","-34.9813578"],["117.3047505","-34.9810817"],["117.3051284","-34.9809543"],["117.3055606","-34.9808778"],["117.3059905","-34.9808679"],["117.3067251","-34.9809123"],["117.3075812","-34.980944"],["117.3079475","-34.9809153"],["117.3082947","-34.9808514"],["117.3086363","-34.9807534"],["117.3089592","-34.9806164"],["117.3092802","-34.9804379"],["117.3095663","-34.9802376"],["117.3098216","-34.9800051"],["117.310025","-34.9797484"],["117.3102366","-34.9794037"],["117.3106392","-34.9786554"],["117.3108425","-34.9783472"],["117.3110728","-34.9780875"],["117.3113489","-34.9778557"],["117.3116809","-34.9776533"],["117.3120453","-34.9774963"],["117.3124248","-34.9773826"],["117.3128207","-34.9773121"],["117.3133439","-34.9772799"],["117.3144371","-34.9772557"],["117.3148638","-34.9772203"],["117.3151667","-34.9771526"],["117.3154678","-34.977032"],["117.3157578","-34.976881"],["117.3160094","-34.976698"],["117.3162344","-34.9764711"],["117.3164136","-34.9762137"],["117.3165477","-34.9759263"],["117.3166434","-34.9756179"],["117.316765","-34.9750827"],["117.3168574","-34.9747342"],["117.3169839","-34.9744154"],["117.3171733","-34.9741168"],["117.3174276","-34.9738451"],["117.3177367","-34.9736132"],["117.3181052","-34.9734278"],["117.3185166","-34.9733036"],["117.3189595","-34.9732411"],["117.3193414","-34.9732344"],["117.3197405","-34.9733233"],["117.320264","-34.9734922"],["117.3212133","-34.973871"],["117.3217533","-34.9740729"],["117.3222452","-34.9741855"],["117.3230643","-34.9743188"],["117.3240468","-34.9743856"],["117.3245848","-34.9744424"],["117.3250028","-34.9745382"],["117.3253801","-34.9746688"],["117.3257914","-34.9748629"],["117.3263935","-34.9751874"],["117.3268029","-34.9753862"],["117.3271728","-34.9755354"],["117.3275721","-34.9756727"],["117.3279642","-34.9757819"],["117.3284008","-34.9758745"],["117.3291471","-34.9759745"],["117.3295984","-34.9760025"],["117.3300051","-34.9760041"],["117.3304575","-34.975974"],["117.3311688","-34.9758798"],["117.3316767","-34.9757946"],["117.3320673","-34.9757067"],["117.3324653","-34.9755781"],["117.332827","-34.9753945"],["117.3331038","-34.9751536"],["117.3333341","-34.9748815"],["117.3335278","-34.9745716"],["117.3336684","-34.9742542"],["117.3337505","-34.9739148"],["117.3337877","-34.9734743"],["117.3338061","-34.9725088"],["117.3338593","-34.9720833"],["117.333958","-34.9717286"],["117.3341273","-34.9714072"],["117.3343665","-34.9711116"],["117.3346502","-34.970879"],["117.3352085","-34.970535"],["117.3372045","-34.9694218"],["117.3384201","-34.9687736"],["117.3394963","-34.9682298"],["117.3400712","-34.9680723"],["117.3411357","-34.967845"],["117.34132","-34.9676895"],["117.3416586","-34.9675273"],["117.3429165","-34.9667785"],["117.3445466","-34.9656894"],["117.3463214","-34.9644227"],["117.347175","-34.9638037"],["117.3478276","-34.9633362"],["117.348334","-34.962955"],["117.3491071","-34.9623841"],["117.3494579","-34.962164"],["117.3497484","-34.9620314"],["117.3503067","-34.9618359"],["117.350662","-34.9617212"],["117.3509547","-34.9616253"],["117.3523411","-34.9612648"],["117.3526786","-34.9611658"],["117.3528619","-34.9610981"],["117.3530452","-34.9610133"],["117.3534355","-34.96075"],["117.3538686","-34.9604509"],["117.353903","-34.9604241"],["117.3539677","-34.9603533"],["117.3541173","-34.9602539"],["117.3546679","-34.9599219"],["117.3548482","-34.9598244"],["117.3557554","-34.9593816"],["117.3558794","-34.9593355"],["117.3563983","-34.9590017"],["117.356656","-34.9588381"],["117.3568313","-34.9587266"],["117.3570384","-34.9585985"],["117.357246","-34.9584864"],["117.3574811","-34.958403"],["117.3577673","-34.9583448"],["117.3581121","-34.9583266"],["117.3590519","-34.9584346"],["117.3603031","-34.9586009"],["117.3615188","-34.9587653"],["117.3673492","-34.9584574"],["117.3678357","-34.9583831"],["117.3687137","-34.9582013"],["117.3698433","-34.9579568"],["117.370713","-34.9577349"],["117.372233","-34.9572724"],["117.3768808","-34.9558444"],["117.3773344","-34.9557252"],["117.3778121","-34.9556121"],["117.3799397","-34.9552561"],["117.3824219","-34.9548974"],["117.3829792","-34.9548515"],["117.3835428","-34.9548338"],["117.3844033","-34.9548555"],["117.3858741","-34.9550422"],["117.3879335","-34.9553907"],["117.3892907","-34.9556345"],["117.3898133","-34.9557653"],["117.3906157","-34.956022"],["117.3911382","-34.9562166"],["117.3915663","-34.9564033"],["117.3928212","-34.9570499"],["117.3967526","-34.9591172"],["117.3972216","-34.9593136"],["117.397677","-34.9594682"],["117.3982882","-34.9596334"],["117.4000989","-34.960015"],["117.4079174","-34.9616982"],["117.4086265","-34.9618751"],["117.4091374","-34.9620403"],["117.4097","-34.9622636"],["117.4109328","-34.9628098"],["117.4199539","-34.9669285"],["117.4233408","-34.9684616"],["117.424133","-34.9687676"],["117.4247666","-34.9689395"],["117.4255033","-34.9690787"],["117.4265387","-34.9691522"],["117.4270825","-34.9691401"],["117.4276182","-34.9690918"],["117.4281451","-34.9690119"],["117.4287285","-34.9688606"],["117.4318281","-34.9679541"],["117.4328987","-34.9676601"],["117.4333927","-34.967564"],["117.4339454","-34.9674824"],["117.4346344","-34.9674374"],["117.4379094","-34.9674145"],["117.4465838","-34.967373"],["117.4473982","-34.9673429"],["117.4479598","-34.9672889"],["117.4485338","-34.9672083"],["117.4490933","-34.9670963"],["117.449632","-34.9669632"],["117.4504392","-34.9667071"],["117.4543395","-34.9653593"],["117.4553692","-34.9650284"],["117.4558824","-34.9649168"],["117.4564199","-34.9648313"],["117.4569322","-34.9647788"],["117.4574785","-34.9647519"],["117.4583551","-34.9647762"],["117.4595403","-34.9648441"],["117.4607533","-34.9649205"],["117.4617877","-34.9650483"],["117.4649518","-34.9655157"],["117.4768067","-34.9673061"],["117.4773133","-34.9674133"],["117.4778171","-34.9675545"],["117.4783263","-34.9677407"],["117.4795219","-34.968315"],["117.4833001","-34.9701542"],["117.483874","-34.9703798"],["117.4843279","-34.9705112"],["117.4874994","-34.9712773"],["117.4879952","-34.9714222"],["117.488462","-34.9715996"],["117.4889285","-34.9718215"],["117.4893622","-34.9720665"],["117.4905421","-34.9728557"],["117.493682","-34.9750201"],["117.4944019","-34.9755422"],["117.494813","-34.9758735"],["117.4951923","-34.9762176"],["117.4955348","-34.9765651"],["117.4958731","-34.9769463"],["117.4978188","-34.9794953"],["117.5082759","-34.993225"],["117.5091025","-34.9943117"],["117.5102526","-34.9958032"],["117.512444","-34.9986601"],["117.5135082","-34.9997904"],["117.5142684","-35.0003173"],["117.5151702","-35.0007588"],["117.5162718","-35.0011144"],["117.5177686","-35.0013335"],["117.5188475","-35.0013251"],["117.5199126","-35.001169"],["117.5218593","-35.0005241"],["117.5347588","-34.9956618"],["117.537633","-34.9946491"],["117.5435873","-34.9932912"],["117.5597514","-34.9898581"],["117.5637315","-34.9892518"],["117.5696758","-34.989289"],["117.5707928","-34.9892263"],["117.5728746","-34.9888761"],["117.6005481","-34.9831729"],["117.6054447","-34.9822114"],["117.6081044","-34.9819277"],["117.6240922","-34.9807925"],["117.6265234","-34.9807124"],["117.6283652","-34.9809917"],["117.6349973","-34.9824459"],["117.6398434","-34.9830964"],["117.6422874","-34.9832867"],["117.6450521","-34.9830649"],["117.6475695","-34.983187"],["117.6503357","-34.9833739"],["117.6523988","-34.983794"],["117.6544727","-34.9845424"],["117.6564011","-34.9854038"],["117.6581651","-34.9862994"],["117.659509","-34.9867732"],["117.661514","-34.9871334"],["117.681967","-34.9894209"],["117.6897932","-34.9894141"],["117.6937442","-34.9894104"],["117.694711","-34.9895554"],["117.6972908","-34.9901091"],["117.6984056","-34.9901818"],["117.6993279","-34.9901236"],["117.7003441","-34.9899144"],["117.7013477","-34.9895544"],["117.7036373","-34.9881961"],["117.705789","-34.9868812"],["117.7077126","-34.9858515"],["117.7123862","-34.9837495"],["117.7138447","-34.9833426"],["117.7152749","-34.9832075"],["117.7166561","-34.9833721"],["117.7179614","-34.9836928"],["117.7204493","-34.9843334"],["117.7231182","-34.9849336"],["117.7339664","-34.9875243"],["117.7450584","-34.9901907"],["117.7514929","-34.9912225"],["117.7547194","-34.9913821"],["117.7559413","-34.9913785"],["117.7566499","-34.9912899"],["117.7572294","-34.9911679"],["117.7599373","-34.9904182"],["117.7612348","-34.9901739"],["117.7625595","-34.9901509"],["117.7641431","-34.9904375"],["117.7658861","-34.9911616"],["117.7734852","-34.9950634"],["117.7758974","-34.9960839"],["117.7854234","-34.9992985"],["117.786852","-34.999578"],["117.788022","-34.9996449"],["117.7900133","-34.9994245"],["117.795758","-34.9983129"],["117.8037543","-34.9974231"],["117.8053581","-34.997414"],["117.8085623","-34.9976651"],["117.8090758","-34.9977075"],["117.8133053","-34.9980334"],["117.8294414","-34.9993321"],["117.8306914","-34.9994453"],["117.8323904","-34.9995756"],["117.8340809","-34.9997092"],["117.8452642","-35.0006298"],["117.8521636","-35.0011917"],["117.8610987","-35.0019734"],["117.8616838","-35.0019909"],["117.8624024","-35.0020392"],["117.8629783","-35.0021004"],["117.8635925","-35.0022345"],["117.8642029","-35.0022882"],["117.864626","-35.0023348"],["117.8651314","-35.0027204"],["117.8652558","-35.0028042"],["117.8653282","-35.0028404"],["117.8654192","-35.0028729"],["117.8656168","-35.0029221"],["117.8657026","-35.0029197"],["117.8657822","-35.0029237"],["117.8658605","-35.0029385"],["117.8659346","-35.0029636"],["117.8660036","-35.0029978"],["117.866078","-35.003051"],["117.8661371","-35.0031146"],["117.8661808","-35.0031858"],["117.8662032","-35.0032471"],["117.8662132","-35.0033087"],["117.8662123","-35.0033719"],["117.8661994","-35.0034337"],["117.8661757","-35.0034935"],["117.8661404","-35.0035498"],["117.8660996","-35.0036018"],["117.8661077","-35.003687"],["117.8661395","-35.0038402"],["117.8712861","-35.01155"],["117.8721115","-35.0125004"],["117.8784521","-35.0173736"],["117.8789821","-35.0177604"],["117.8791859","-35.0178896"],["117.879221","-35.0178933"],["117.8792472","-35.0178961"],["117.8792716","-35.0179032"],["117.8792938","-35.0179138"],["117.8793059","-35.0179231"],["117.8793147","-35.0179331"],["117.8793229","-35.017944"],["117.879329","-35.017955"],["117.879333","-35.017968"],["117.8793348","-35.0179801"],["117.8793351","-35.0179929"],["117.8793328","-35.018006"],["117.879337","-35.0180238"],["117.8804123","-35.0188993"],["117.882896","-35.0208106"],["117.883077","-35.0208586"],["117.8832331","-35.0208523"],["117.8832678","-35.020819"],["117.8833052","-35.0207915"],["117.8833509","-35.0207727"],["117.8834039","-35.0207642"],["117.8835023","-35.0207814"],["117.8835767","-35.0208236"],["117.8837445","-35.0208067"],["117.8847294","-35.0207235"],["117.8847959","-35.0206998"],["117.8848373","-35.0206866"],["117.8848794","-35.0206868"],["117.8849212","-35.0206996"],["117.8849546","-35.0207233"],["117.8849743","-35.0207544"],["117.8849801","-35.0207902"],["117.8849693","-35.0208255"],["117.8849441","-35.0208548"],["117.884913","-35.0208839"],["117.8849564","-35.0210709"],["117.8850632","-35.0218819"],["117.8851028","-35.0218956"],["117.8851375","-35.0219116"],["117.8851635","-35.021937"],["117.8851774","-35.0219681"],["117.8851763","-35.0220011"],["117.8851633","-35.0220318"],["117.8851376","-35.0220566"],["117.8851029","-35.0220735"],["117.8850693","-35.0221613"],["117.8851513","-35.0237199"],["117.885175","-35.0237242"],["117.8851969","-35.0237323"],["117.8852155","-35.0237461"],["117.8852274","-35.0237632"],["117.8852328","-35.0237829"],["117.8852297","-35.0238038"],["117.8852178","-35.0238218"],["117.8852005","-35.0238368"],["117.885178","-35.0238457"],["117.8851565","-35.0238801"],["117.8852427","-35.0250372"],["117.8852924","-35.0256696"],["117.885265","-35.025898"],["117.885287","-35.0259143"],["117.8853066","-35.0259283"],["117.8853204","-35.0259472"],["117.8853256","-35.025968"],["117.8853217","-35.0259889"],["117.8853096","-35.0260088"],["117.8852898","-35.0260237"],["117.885265","-35.0260327"],["117.8852388","-35.026034"],["117.8852259","-35.0260313"],["117.8852117","-35.0260276"],["117.8851901","-35.0260145"],["117.8851755","-35.0259961"],["117.8851687","-35.0259742"],["117.8851711","-35.0259554"],["117.8851802","-35.0259372"],["117.885195","-35.0259224"],["117.8852153","-35.0259112"],["117.8852381","-35.0259063"],["117.885263","-35.0258956"],["117.8852926","-35.0256686"],["117.88522","-35.0247129"],["117.8851556","-35.023904"],["117.8851272","-35.0238437"],["117.8851044","-35.0238325"],["117.8850875","-35.023815"],["117.8850784","-35.023794"],["117.8850784","-35.0237741"],["117.8850884","-35.0237532"],["117.8851043","-35.0237373"],["117.8851261","-35.0237273"],["117.8851487","-35.0237199"],["117.8850658","-35.022162"],["117.88503","-35.0220754"],["117.8849938","-35.0220608"],["117.8849665","-35.022037"],["117.8848721","-35.022011"],["117.8835881","-35.0220714"],["117.8835226","-35.0220877"],["117.8835145","-35.0221147"],["117.8834944","-35.0221397"],["117.8834669","-35.0221566"],["117.8834329","-35.0221655"],["117.8833976","-35.0221646"],["117.8833639","-35.0221535"],["117.8833384","-35.0221355"],["117.8833215","-35.0221131"],["117.8833137","-35.0220863"],["117.8833174","-35.0220594"],["117.8833303","-35.0220344"],["117.8833509","-35.0219882"],["117.8833336","-35.0212768"],["117.8833391","-35.0210796"],["117.8833027","-35.0210561"],["117.8831395","-35.0210268"],["117.8829802","-35.0209579"],["117.8822168","-35.0204087"],["117.8801909","-35.0188447"],["117.8796294","-35.0183985"],["117.8793814","-35.018187"],["117.8792729","-35.0180773"],["117.8792479","-35.0180758"],["117.8792279","-35.018078"],["117.8792082","-35.0180777"],["117.8791889","-35.0180738"],["117.8791699","-35.0180677"],["117.8791532","-35.0180591"],["117.8791381","-35.0180468"],["117.8791262","-35.0180338"],["117.8791171","-35.0180191"],["117.8791121","-35.0180031"],["117.8791102","-35.0179868"],["117.8791057","-35.017967"],["117.8783321","-35.0174084"],["117.8766799","-35.0161734"],["117.8760564","-35.015709"],["117.8718555","-35.0124524"],["117.8712723","-35.0117804"],["117.8688126","-35.0081268"],["117.8678976","-35.0067596"],["117.8663134","-35.004359"],["117.8660318","-35.0039599"],["117.8658778","-35.0038359"],["117.8656955","-35.0037535"],["117.8656412","-35.0037457"],["117.8655903","-35.0037377"],["117.8655062","-35.0037141"],["117.8654267","-35.0036786"],["117.8653552","-35.003631"],["117.8652954","-35.0035744"],["117.8652493","-35.0035093"],["117.8652193","-35.0034414"],["117.8652114","-35.0033793"],["117.8652076","-35.0033134"],["117.8652166","-35.0032312"],["117.8652858","-35.0031063"],["117.8653756","-35.0030227"],["117.8654926","-35.00296"],["117.86562","-35.0029262"],["117.8657029","-35.0029197"],["117.8657904","-35.0029169"],["117.8660024","-35.0028158"],["117.8661278","-35.0027308"],["117.866452","-35.0025092"],["117.8678534","-35.001312"],["117.8686962","-35.0005807"],["117.8706028","-34.9989257"],["117.8710752","-34.9985098"],["117.8713726","-34.9982394"],["117.8716091","-34.9980219"],["117.871744","-34.9978659"],["117.8718823","-34.9976487"],["117.8720438","-34.997337"],["117.8725411","-34.9962439"],["117.8727363","-34.9957659"],["117.8728579","-34.9955186"],["117.8741698","-34.9925018"],["117.874328","-34.9921685"],["117.8747539","-34.9912026"],["117.8749534","-34.9907311"],["117.8754565","-34.9895975"],["117.8756992","-34.9889767"],["117.8759582","-34.9881882"],["117.8759777","-34.9880082"],["117.8760493","-34.9877122"],["117.8761519","-34.98712"],["117.8761962","-34.986644"],["117.8762119","-34.986271"],["117.8762035","-34.9858122"],["117.876193","-34.9855326"],["117.8761627","-34.9848534"],["117.8761266","-34.9842673"],["117.8760152","-34.9820011"],["117.87601","-34.9816445"],["117.8760275","-34.9813377"],["117.8760553","-34.9810522"],["117.8762099","-34.9805114"],["117.8763364","-34.9801626"],["117.8764415","-34.9799188"],["117.8766901","-34.979446"],["117.8769622","-34.9790395"],["117.8772755","-34.9786553"],["117.877511","-34.9784035"],["117.8777365","-34.978184"],["117.8787358","-34.977328"],["117.8803008","-34.9760111"],["117.88055","-34.9757906"],["117.8808208","-34.9755347"],["117.8810857","-34.9752586"],["117.8813439","-34.9749638"],["117.8815874","-34.974642"],["117.881919","-34.9741381"],["117.8830565","-34.972292"],["117.8832805","-34.9719168"],["117.8833827","-34.9717643"],["117.8841997","-34.9706535"],["117.8848355","-34.9697837"],["117.8850417","-34.9694809"],["117.8852043","-34.9691889"],["117.8853565","-34.9688754"],["117.8854802","-34.9685724"],["117.8855986","-34.9682608"],["117.8858138","-34.9675086"],["117.8859003","-34.9672167"],["117.8859857","-34.9669622"],["117.8860712","-34.9667346"],["117.8861735","-34.9665006"],["117.8862988","-34.9662643"],["117.8864465","-34.9660128"],["117.8868462","-34.9653511"],["117.8870461","-34.9650469"],["117.8872603","-34.9647396"],["117.8875568","-34.9643559"],["117.8883759","-34.9633246"],["117.8886552","-34.963"],["117.8893625","-34.962231"],["117.889636","-34.9619143"],["117.8898129","-34.96169"],["117.8901036","-34.9612695"],["117.8903897","-34.9607172"],["117.890488","-34.9604361"],["117.8907865","-34.9594311"],["117.891178","-34.9579268"],["117.8913189","-34.9574427"],["117.8914195","-34.9571409"],["117.8915465","-34.9568364"],["117.8916931","-34.9565323"],["117.8924552","-34.9550333"],["117.8926607","-34.9546014"],["117.8928374","-34.9541573"],["117.8930553","-34.9533349"],["117.8933938","-34.9519021"],["117.8935277","-34.9514024"],["117.8936361","-34.9511319"],["117.8937588","-34.9509031"],["117.8938684","-34.9507079"],["117.8940047","-34.9505006"],["117.894146","-34.9503177"],["117.8943297","-34.9501116"],["117.8945356","-34.9499209"],["117.8964124","-34.9483597"],["117.8966621","-34.9481211"],["117.896893","-34.9478794"],["117.8973203","-34.9473644"],["117.8976591","-34.9469456"],["117.899408","-34.9448398"],["117.9001995","-34.9439566"],["117.90166","-34.9421953"],["117.9022972","-34.9414172"],["117.9027248","-34.9408695"],["117.9029038","-34.9405881"],["117.9031037","-34.9402239"],["117.9035332","-34.9393211"],["117.9036889","-34.9390307"],["117.9039268","-34.938688"],["117.9041933","-34.9383932"],["117.9049627","-34.9377509"],["117.9094289","-34.9348239"],["117.9105608","-34.9340236"],["117.9112281","-34.9333694"],["117.9125474","-34.9319958"],["117.9127691","-34.9317217"],["117.91405","-34.9301979"],["117.9144695","-34.9294744"],["117.9146347","-34.9290376"],["117.9148592","-34.9290499"],["117.9154135","-34.9291544"],["117.9155351","-34.9291706"],["117.9156148","-34.9291742"],["117.9156864","-34.9291712"],["117.9157598","-34.929155"],["117.9159882","-34.9290619"],["117.9173733","-34.9283542"],["117.9260667","-34.9244698"],["117.9274146","-34.9239489"],["117.9312103","-34.9230686"],["117.9472949","-34.9195288"],["117.9491629","-34.9187504"],["117.9662465","-34.9086469"],["117.9806263","-34.9026805"],["117.9830369","-34.901871"],["117.9858219","-34.9013485"],["117.9885592","-34.9006841"],["117.9924764","-34.8995377"],["117.9974346","-34.8980395"],["117.9980414","-34.8977864"],["117.998511","-34.8975406"],["117.9988756","-34.8973054"],["117.9992955","-34.8969106"],["117.9996034","-34.8964887"],["117.9998346","-34.8960649"],["118.0006633","-34.8939662"],["118.0008613","-34.8935182"],["118.0010345","-34.89318"],["118.0012708","-34.8928275"],["118.0015662","-34.8925241"],["118.0018542","-34.8922745"],["118.0022115","-34.8920138"],["118.0033106","-34.8913612"],["118.0040754","-34.8908261"],["118.0063413","-34.8888004"],["118.0071078","-34.8881397"],["118.0079167","-34.8876019"],["118.0089653","-34.8869363"],["118.0099288","-34.8863217"],["118.0103692","-34.8860158"],["118.010942","-34.8855439"],["118.0138317","-34.8829601"],["118.0143422","-34.8825321"],["118.0148633","-34.8821472"],["118.015253","-34.8818915"],["118.0155811","-34.8817012"],["118.0160412","-34.8814615"],["118.0164882","-34.881237"],["118.0169158","-34.8810404"],["118.018133","-34.8805892"],["118.0203864","-34.8797848"],["118.0206833","-34.8796748"],["118.0209148","-34.8795816"],["118.0214682","-34.8793216"],["118.0217861","-34.879167"],["118.0222742","-34.8788804"],["118.0225914","-34.878685"],["118.0228128","-34.8785344"],["118.0230196","-34.8783996"],["118.0234408","-34.8780726"],["118.0235381","-34.8779847"],["118.0242888","-34.8773401"],["118.0269459","-34.8749822"],["118.0280884","-34.8739695"],["118.0293071","-34.8729124"],["118.0299031","-34.8724836"],["118.0360542","-34.8684933"],["118.0480941","-34.8599161"],["118.0484732","-34.8596581"],["118.0487312","-34.8595012"],["118.0490263","-34.8593494"],["118.049412","-34.859173"],["118.0498421","-34.8589941"],["118.0502708","-34.8588572"],["118.0506803","-34.8587392"],["118.0510889","-34.858649"],["118.0515902","-34.8585591"],["118.0523128","-34.8585075"],["118.0528894","-34.8585028"],["118.0535003","-34.8585292"],["118.054467","-34.8586853"],["118.0550573","-34.8588322"],["118.0671333","-34.86259"],["118.0674658","-34.8626758"],["118.0677777","-34.8627446"],["118.0681157","-34.8628005"],["118.0687911","-34.8628822"],["118.0695102","-34.862917"],["118.0702333","-34.8628904"],["118.0711172","-34.8627786"],["118.0731902","-34.8623404"],["118.0821332","-34.8603309"],["118.0856436","-34.8595237"],["118.0867869","-34.8592584"],["118.0873283","-34.8591637"],["118.0878037","-34.8590964"],["118.0881798","-34.8590672"],["118.0885392","-34.8590675"],["118.0889062","-34.8590821"],["118.0897751","-34.8592143"],["118.090218","-34.8593329"],["118.0907228","-34.8595109"],["118.091811","-34.860038"],["118.0930274","-34.8606304"],["118.0935875","-34.8608556"],["118.0940121","-34.860967"],["118.0945152","-34.8610628"],["118.0954317","-34.8611507"],["118.1018305","-34.8614664"],["118.1027795","-34.8614645"],["118.1232765","-34.8600239"],["118.1308305","-34.85951"],["118.1334314","-34.859357"],["118.1339485","-34.8593016"],["118.134499","-34.8592244"],["118.1354255","-34.8590321"],["118.136563","-34.858687"],["118.1373061","-34.8583926"],["118.1379553","-34.8580844"],["118.1386384","-34.8576922"],["118.1393811","-34.8572443"],["118.1397997","-34.8569063"],["118.1405763","-34.8562224"],["118.1416962","-34.8551804"],["118.143633","-34.8533845"],["118.1459735","-34.8511626"],["118.148609","-34.848656"],["118.1513674","-34.8458483"],["118.1518585","-34.8453376"],["118.1523365","-34.8449696"],["118.1524578","-34.8448793"],["118.1529933","-34.8444889"],["118.153604","-34.8441325"],["118.1540501","-34.843901"],["118.1544484","-34.8437228"],["118.1549119","-34.8435437"],["118.1553658","-34.8434162"],["118.1689261","-34.8401529"],["118.1692381","-34.8400636"],["118.1694855","-34.8399782"],["118.1697395","-34.8398729"],["118.1705694","-34.8394795"],["118.1767783","-34.8363298"],["118.1783193","-34.8355447"],["118.1796464","-34.8348449"],["118.1811983","-34.8340181"],["118.1818376","-34.8336102"],["118.1823236","-34.83325"],["118.1830782","-34.8326076"],["118.1844522","-34.8312749"],["118.1850978","-34.830733"],["118.1856354","-34.8303594"],["118.1860919","-34.8300958"],["118.1865508","-34.8298516"],["118.1870149","-34.8296441"],["118.1875136","-34.8294511"],["118.188205","-34.8292376"],["118.1890701","-34.829038"],["118.1903075","-34.8288479"],["118.201028","-34.8273691"],["118.2027038","-34.8272294"],["118.2065847","-34.8270482"],["118.2073982","-34.8269959"],["118.207856","-34.8269384"],["118.2084938","-34.826816"],["118.2101661","-34.8264289"],["118.2105923","-34.8263416"],["118.2115886","-34.8262617"],["118.2168214","-34.8258701"],["118.217972","-34.8257587"],["118.2184238","-34.8256646"],["118.2189019","-34.8255493"],["118.2194132","-34.825357"],["118.2203657","-34.8249138"],["118.2254761","-34.8224501"],["118.2265461","-34.8218875"],["118.2270605","-34.8215043"],["118.2334994","-34.8163767"],["118.2344427","-34.8157852"],["118.2348794","-34.815596"],["118.2352796","-34.8154742"],["118.2358144","-34.8153677"],["118.2365925","-34.8152498"],["118.2405872","-34.8147901"],["118.2412885","-34.8146858"],["118.2425305","-34.8143574"],["118.2511051","-34.8119622"],["118.2523941","-34.8115046"],["118.2542181","-34.8108605"],["118.2558581","-34.8102427"],["118.2573643","-34.809653"],["118.2580572","-34.8093579"],["118.2585457","-34.8090752"],["118.2589779","-34.8087285"],["118.2593365","-34.8083393"],["118.2596544","-34.8078568"],["118.2601868","-34.8068103"],["118.2605796","-34.8060578"],["118.2608611","-34.8055981"],["118.2611883","-34.8051408"],["118.2615152","-34.804725"],["118.2626546","-34.8034601"],["118.2761748","-34.7884307"],["118.2901528","-34.7722286"],["118.3074365","-34.7507834"],["118.3080382","-34.7499907"],["118.3083356","-34.7495437"],["118.308598","-34.7490883"],["118.3088239","-34.7485658"],["118.3107105","-34.7429645"],["118.3145199","-34.7312423"],["118.3153599","-34.7283829"],["118.3157592","-34.7270157"],["118.3159612","-34.7265276"],["118.316214","-34.7260777"],["118.3165876","-34.7255594"],["118.3173991","-34.7245619"],["118.3178197","-34.7240086"],["118.3180771","-34.7235886"],["118.3182834","-34.723128"],["118.3184509","-34.722645"],["118.3185673","-34.7221529"],["118.3186543","-34.7212416"],["118.3189297","-34.718714"],["118.3190457","-34.7180195"],["118.3192497","-34.7171086"],["118.3194197","-34.7164918"],["118.3213484","-34.7107552"],["118.3218478","-34.7091984"],["118.3219703","-34.7086697"],["118.322048","-34.7081729"],["118.3220921","-34.7076965"],["118.3220958","-34.707144"],["118.3220418","-34.7065279"],["118.3219597","-34.705725"],["118.3219264","-34.7051399"],["118.321944","-34.7046299"],["118.3219997","-34.7041064"],["118.3220871","-34.7036188"],["118.3222168","-34.7031115"],["118.3224008","-34.7026005"],["118.3242419","-34.6985175"],["118.3271598","-34.6920847"],["118.3285061","-34.689072"],["118.3289858","-34.6876106"],["118.3308805","-34.6815941"],["118.3314752","-34.6796503"],["118.3315796","-34.6791548"],["118.3315901","-34.6786678"],["118.3315067","-34.6781953"],["118.331349","-34.6777438"],["118.3307226","-34.6764705"],["118.329912","-34.6748439"],["118.3290071","-34.6730219"],["118.3288528","-34.6725494"],["118.3287806","-34.6720907"],["118.3287875","-34.6716356"],["118.3288824","-34.6711711"],["118.3290622","-34.6707244"],["118.3292951","-34.6702936"],["118.3304551","-34.6684689"],["118.3351613","-34.6608365"],["118.3414148","-34.6499471"],["118.3420016","-34.6489626"],["118.3423395","-34.648539"],["118.3426011","-34.6482339"],["118.3457952","-34.6450249"],["118.3509375","-34.639949"],["118.3514795","-34.6394577"],["118.3519608","-34.6390943"],["118.3524381","-34.6387798"],["118.3582519","-34.6354137"],["118.3604439","-34.6341777"],["118.3610027","-34.6339284"],["118.3615983","-34.6337066"],["118.3656255","-34.6325836"],["118.4838912","-34.5996471"],["118.4892312","-34.5981001"],["118.4897842","-34.5978759"],["118.4903273","-34.5976129"],["118.4907911","-34.5973573"],["118.4913348","-34.5970037"],["118.491753","-34.596686"],["118.5039998","-34.5864211"],["118.5106319","-34.5808156"],["118.5554153","-34.5355908"],["118.5810246","-34.5097259"],["118.5814733","-34.5093232"],["118.581925","-34.5089472"],["118.5826298","-34.5084234"],["118.6171187","-34.484257"],["118.6204246","-34.4819627"],["118.621039","-34.4816062"],["118.6322317","-34.475556"],["118.633156","-34.4750183"],["118.6336185","-34.4746862"],["118.634025","-34.4743647"],["118.6361037","-34.4723163"],["118.6575417","-34.4508391"],["118.6663943","-34.4419484"],["118.6752917","-34.4329689"],["118.6763887","-34.431906"],["118.6766857","-34.4316492"],["118.6770378","-34.4313925"],["118.6773511","-34.4311734"],["118.6775925","-34.4310182"],["118.6779241","-34.4308339"],["118.6979819","-34.4204108"],["118.7024862","-34.4180705"],["118.7037347","-34.4175881"],["118.7048608","-34.4174722"],["118.7085441","-34.4175358"],["118.7103195","-34.4175484"],["118.7109372","-34.417479"],["118.7117167","-34.4173312"],["118.7123597","-34.417141"],["118.7128608","-34.4169572"],["118.7133288","-34.4167492"],["118.7143702","-34.4160841"],["118.7191728","-34.4127516"],["118.7239491","-34.4095031"],["118.730541","-34.4052773"],["118.7312598","-34.4047582"],["118.7317319","-34.4043457"],["118.7321233","-34.4039291"],["118.7328451","-34.4029468"],["118.7367771","-34.3955232"],["118.7373313","-34.3946767"],["118.7379012","-34.3939404"],["118.7384756","-34.3933781"],["118.7390181","-34.3929346"],["118.7411017","-34.3914807"],["118.7434794","-34.389855"],["118.7439742","-34.3894515"],["118.7443354","-34.3890981"],["118.7445638","-34.3888539"],["118.7447336","-34.3886466"],["118.7449125","-34.3883802"],["118.7451258","-34.3879945"],["118.7453973","-34.3874202"],["118.74565","-34.3866895"],["118.7488991","-34.3763429"],["118.7491246","-34.375346"],["118.7502679","-34.3681184"],["118.750298","-34.3677025"],["118.7503101","-34.3673515"],["118.7503101","-34.3668607"],["118.7503074","-34.3663282"],["118.7503058","-34.3662006"],["118.7502466","-34.3657028"],["118.7501835","-34.3648739"],["118.7501251","-34.3644143"],["118.7499324","-34.3634513"],["118.7494592","-34.3612648"],["118.7492274","-34.3601995"],["118.7489585","-34.3589827"],["118.7489134","-34.3587528"],["118.7488785","-34.3584836"],["118.7488619","-34.3581627"],["118.748861","-34.357892"],["118.7488817","-34.3576236"],["118.7489097","-34.3573982"],["118.7489466","-34.3572203"],["118.7490137","-34.3569676"],["118.7490956","-34.3567051"],["118.7492659","-34.3562477"],["118.7493901","-34.356005"],["118.7495503","-34.3557461"],["118.7498415","-34.3553247"],["118.7499812","-34.3551621"],["118.750149","-34.3549835"],["118.7507699","-34.3544074"],["118.7568003","-34.3493065"],["118.7577853","-34.3483875"],["118.7661643","-34.3388472"],["118.7775958","-34.3268438"],["118.7783734","-34.3260684"],["118.7787338","-34.3257504"],["118.7790514","-34.3255063"],["118.7793497","-34.325289"],["118.7796578","-34.3250743"],["118.7801826","-34.3247655"],["118.7810191","-34.3243401"],["118.8080837","-34.3114434"],["118.8082805","-34.3113283"],["118.8084506","-34.3112155"],["118.808604","-34.3110951"],["118.8088356","-34.3108929"],["118.8090364","-34.3107056"],["118.8092482","-34.3104375"],["118.8094049","-34.3101944"],["118.8095061","-34.3100114"],["118.8100365","-34.3087241"],["118.8139726","-34.2986626"],["118.8243733","-34.2744239"],["118.8247855","-34.273542"],["118.8248899","-34.2733537"],["118.8251385","-34.2729127"],["118.8337501","-34.2591297"],["118.8341463","-34.2585121"],["118.8358039","-34.2558715"],["118.8362343","-34.2551242"],["118.8364102","-34.2547387"],["118.8365487","-34.2543615"],["118.836714","-34.2537565"],["118.8383832","-34.2462379"],["118.841424","-34.235646"],["118.8439455","-34.2233059"],["118.8440993","-34.2227381"],["118.8441958","-34.2224758"],["118.8443309","-34.2221851"],["118.8445027","-34.2219041"],["118.8447125","-34.2216116"],["118.8449085","-34.2213811"],["118.8451186","-34.2211856"],["118.8454014","-34.220956"],["118.8457584","-34.2207044"],["118.8462125","-34.2204503"],["118.8466322","-34.2202681"],["118.8468296","-34.2201987"],["118.8470466","-34.2201344"],["118.8473284","-34.2200633"],["118.8476043","-34.2200003"],["118.8479878","-34.2199408"],["118.8510317","-34.2196874"],["118.9297888","-34.2133236"],["118.9310759","-34.2131931"],["118.9315918","-34.2131016"],["118.932","-34.2130058"],["118.9327238","-34.212775"],["118.9334581","-34.2124504"],["118.9337149","-34.2123124"],["118.9340092","-34.2121377"],["118.9343355","-34.2119174"],["118.9346298","-34.2117052"],["118.9349098","-34.2114645"],["118.9352225","-34.211165"],["118.9355361","-34.2108423"],["118.9357646","-34.2105579"],["118.9360221","-34.2101834"],["118.9363721","-34.2095361"],["118.9365363","-34.2091291"],["118.9366695","-34.2087218"],["118.9368847","-34.2076969"],["118.9378286","-34.2025679"],["118.937974","-34.2017362"],["118.938011","-34.2014164"],["118.9380341","-34.2011141"],["118.9380504","-34.1994155"],["118.938045","-34.1718065"],["118.9380473","-34.1625254"],["118.9382109","-34.0864297"],["118.938226","-34.0853783"],["118.9382584","-34.084978"],["118.9383278","-34.0846088"],["118.9386932","-34.0833854"],["118.940136","-34.0789055"],["118.9403969","-34.0780631"],["118.9405493","-34.0771959"],["118.9406627","-34.0764856"],["118.9407637","-34.0757479"],["118.9407843","-34.0752683"],["118.9407758","-34.0750575"],["118.940754","-34.0748379"],["118.940683","-34.0744783"],["118.9405655","-34.074102"],["118.9404239","-34.07373"],["118.9398148","-34.0726646"],["118.9387047","-34.0708102"],["118.9383554","-34.0700702"],["118.9382333","-34.0696172"],["118.9381894","-34.0692916"],["118.938166","-34.0689622"],["118.9381617","-34.0683713"],["118.938205","-34.0504953"],["118.9382011","-34.0496964"],["118.938158","-34.0492424"],["118.9380238","-34.0485082"],["118.9378848","-34.0479747"],["118.9377545","-34.0474551"],["118.9377032","-34.0470962"],["118.9376621","-34.046712"],["118.9376427","-34.0463669"],["118.9376536","-34.046048"],["118.9380468","-34.0421969"],["118.9380998","-34.0419318"],["118.938181","-34.0416481"],["118.9383114","-34.0413029"],["118.9384063","-34.041101"],["118.9384998","-34.040931"],["118.9385953","-34.0407743"],["118.9387626","-34.0405371"],["118.9392657","-34.0399149"],["118.9433315","-34.0350778"],["118.9494938","-34.0273011"],["118.9500927","-34.026476"],["118.9503331","-34.0260502"],["118.9504571","-34.0258105"],["118.9505439","-34.0255965"],["118.9506383","-34.0253653"],["118.9507572","-34.0250417"],["118.9510715","-34.0239051"],["118.952661","-34.0178188"],["118.9529765","-34.0167084"],["118.9535771","-34.0146054"],["118.9537085","-34.0140754"],["118.9537706","-34.0137277"],["118.9538091","-34.0133887"],["118.9538052","-34.0131168"],["118.9537817","-34.0128047"],["118.9537527","-34.0125342"],["118.9537019","-34.0122628"],["118.9486483","-33.9925338"],["118.9479886","-33.9900287"],["118.9478718","-33.9897248"],["118.9477561","-33.9894729"],["118.947611","-33.9891919"],["118.9474078","-33.9888729"],["118.9472438","-33.9886426"],["118.9468227","-33.9881463"],["118.9464534","-33.9877881"],["118.9462514","-33.9876136"],["118.9459992","-33.987425"],["118.9457239","-33.9872409"],["118.9453352","-33.987"],["118.944793","-33.9867253"],["118.9444041","-33.9865658"],["118.9440606","-33.9864463"],["118.9395666","-33.9850323"],["118.9387795","-33.9847535"],["118.9384704","-33.9846026"],["118.9380689","-33.9843612"],["118.9375879","-33.9840079"],["118.9372726","-33.9837397"],["118.9369968","-33.9834307"],["118.9367428","-33.9831352"],["118.9365287","-33.9828188"],["118.9363424","-33.9824711"],["118.9359695","-33.9814634"],["118.9222376","-33.9424043"],["118.9216797","-33.9407992"],["118.9215528","-33.9404277"],["118.9214304","-33.9400758"],["118.921307","-33.9397175"],["118.9208167","-33.9378813"],["118.956939","-33.9290069"],["118.9599406","-33.928245"],["118.9603971","-33.9280616"],["118.9608095","-33.927863"],["118.9621282","-33.9270856"],["118.9650195","-33.9253288"],["118.9734604","-33.920303"],["118.9744484","-33.9197567"],["118.9757934","-33.9189889"],["118.9765599","-33.9185259"],["118.9770611","-33.918149"],["118.9778073","-33.9174832"],["118.9799398","-33.9155073"],["118.9803265","-33.9151851"],["118.9805946","-33.9150206"],["118.9809862","-33.9147932"],["118.9818946","-33.9143427"],["118.9832295","-33.9137135"],["118.9842122","-33.9132614"],["118.9845153","-33.9131544"],["118.9848864","-33.9130433"],["118.9856593","-33.9129425"],["118.9878225","-33.9127424"],["118.9935761","-33.9122133"],["118.9939463","-33.9121495"],["118.9942978","-33.9120683"],["118.9976282","-33.9110421"],["118.9978727","-33.9109377"],["118.9981796","-33.9107936"],["118.998447","-33.9106527"],["118.9987863","-33.910419"],["118.999418","-33.9099578"],["119.002067","-33.9079654"],["119.0027119","-33.9074899"],["119.0029389","-33.9073539"],["119.0031855","-33.9072277"],["119.0034778","-33.9071123"],["119.0037327","-33.9070241"],["119.0039932","-33.9069618"],["119.0043349","-33.9069145"],["119.0046181","-33.9068948"],["119.0071691","-33.9069752"],["119.0265779","-33.9077071"],["119.0282752","-33.9077561"],["119.0286149","-33.9077441"],["119.0288965","-33.9077149"],["119.0314743","-33.907322"],["119.0341375","-33.9069188"],["119.0358198","-33.906688"],["119.036344","-33.9066492"],["119.041357","-33.906551"],["119.0582448","-33.9062475"],["119.0611122","-33.9061797"],["119.0614695","-33.9061465"],["119.0618322","-33.9060842"],["119.0621864","-33.9060092"],["119.0625841","-33.9059178"],["119.0628726","-33.9058349"],["119.0653957","-33.9046428"],["119.0860705","-33.8942632"],["119.0870066","-33.8937742"],["119.0873378","-33.8935615"],["119.0877998","-33.8932322"],["119.0929041","-33.8891631"],["119.0940301","-33.8882856"],["119.0944042","-33.8880479"],["119.0946964","-33.8878841"],["119.0950304","-33.8877214"],["119.0953954","-33.8875522"],["119.0958442","-33.8873719"],["119.0995831","-33.886188"],["119.1077523","-33.8835945"],["119.1533342","-33.8657579"],["119.1919961","-33.8538366"],["119.2854116","-33.8204106"],["119.2894223","-33.8189738"],["119.2908931","-33.8186065"],["119.3053244","-33.8152288"],["119.3060407","-33.8150412"],["119.306293","-33.8149641"],["119.3065714","-33.8148726"],["119.3067894","-33.8147856"],["119.3072283","-33.8145731"],["119.3438359","-33.7950864"],["119.3445148","-33.7947464"],["119.3450163","-33.7945181"],["119.3453804","-33.7943711"],["119.3457735","-33.7942325"],["119.4183046","-33.7695062"],["119.4205932","-33.7686315"],["119.4410196","-33.7602212"],["119.5084215","-33.7313734"],["119.5090092","-33.7311671"],["119.5096214","-33.7309974"],["119.5102814","-33.73086"],["119.5139833","-33.7304325"],["119.5189589","-33.7298693"],["119.5230656","-33.7293983"],["119.5236888","-33.7292679"],["119.5291071","-33.727638"],["119.6355548","-33.6944895"],["119.637749","-33.6937883"],["119.6403894","-33.6929569"],["119.6420738","-33.6923987"],["119.6756382","-33.6788545"],["119.6774012","-33.6781801"],["119.6780233","-33.6780081"],["119.6786643","-33.677873"],["119.6852701","-33.6767922"],["119.6878719","-33.67642"],["119.6888712","-33.6762349"],["119.6895001","-33.6760597"],["119.6901189","-33.6758394"],["119.6907036","-33.6755882"],["119.6912509","-33.6753179"],["119.6924803","-33.6745982"],["119.6983795","-33.6710252"],["119.6994036","-33.670444"],["119.6999862","-33.6701746"],["119.7006151","-33.6699244"],["119.7012423","-33.669715"],["119.701855","-33.6695443"],["119.8297128","-33.6404958"],["119.8303238","-33.6403283"],["119.8308931","-33.6401317"],["119.8315138","-33.6398792"],["119.8320469","-33.639613"],["119.8325882","-33.6393074"],["119.8330819","-33.6390108"],["119.8344358","-33.63806"],["119.8656071","-33.6144784"],["119.876796","-33.6065484"],["119.8800032","-33.6041641"],["119.8805685","-33.6038097"],["119.8811159","-33.6035295"],["119.8816945","-33.6032866"],["119.8822718","-33.6030878"],["119.8828852","-33.6029162"],["119.8834978","-33.6027951"],["119.8841136","-33.6027136"],["119.884837","-33.6026644"],["119.8916107","-33.6023597"],["119.8941413","-33.6022347"],["119.8947216","-33.6021584"],["119.8952996","-33.6020429"],["119.8958598","-33.6018967"],["119.8964004","-33.6017192"],["119.8970015","-33.6014646"],["119.9026544","-33.5986145"],["119.9031912","-33.5983904"],["119.9037462","-33.5981929"],["119.9042811","-33.5980315"],["119.9048608","-33.5978878"],["119.9054022","-33.5977791"],["119.9060129","-33.5976861"],["119.906717","-33.5976248"],["119.9195415","-33.597162"],["119.9203235","-33.5971104"],["119.9209035","-33.5970323"],["119.9217743","-33.5968548"],["119.9225291","-33.596712"],["119.9230828","-33.5966381"],["119.9236248","-33.5965869"],["119.9242406","-33.5965723"],["119.9248182","-33.5966009"],["119.9254191","-33.5966558"],["119.9260186","-33.5967569"],["119.9276096","-33.5971373"],["119.9281507","-33.5972195"],["119.9287146","-33.5972871"],["119.929259","-33.5973149"],["119.9298324","-33.5973082"],["119.9304253","-33.5972622"],["119.9310141","-33.5971827"],["119.9315897","-33.5970762"],["119.9322258","-33.5969079"],["119.9332116","-33.596574"],["119.933761","-33.5963367"],["119.9342563","-33.596055"],["119.9347185","-33.5957569"],["119.9351305","-33.5954474"],["119.9358968","-33.5947424"],["119.9387453","-33.5919153"],["119.9394755","-33.5912533"],["119.939881","-33.5909672"],["119.9403389","-33.5907039"],["119.9408011","-33.5904893"],["119.9412963","-33.5903104"],["119.9734141","-33.5809609"],["119.974602","-33.5805894"],["119.9752522","-33.5803057"],["119.986343","-33.5748434"],["119.9883923","-33.5738457"],["119.9889034","-33.5736565"],["119.9893851","-33.5735233"],["119.9900001","-33.5734135"],["119.9905391","-33.5733632"],["119.9927212","-33.5733388"],["119.9986316","-33.5733141"],["119.9997911","-33.5733287"],["120.0003302","-33.5733784"],["120.0009135","-33.5734785"],["120.0016893","-33.5736876"],["120.0059567","-33.5750789"],["120.0069708","-33.5753871"],["120.0075506","-33.5755066"],["120.0081808","-33.5755867"],["120.0093512","-33.5756626"],["120.0098779","-33.5757188"],["120.0108858","-33.575895"],["120.0122722","-33.5761351"],["120.0173473","-33.5770261"],["120.0179082","-33.5771538"],["120.018426","-33.5773218"],["120.0189368","-33.5775418"],["120.0193965","-33.5777865"],["120.019866","-33.5780984"],["120.0205893","-33.5786456"],["120.0210684","-33.5789792"],["120.0214941","-33.5792194"],["120.0220246","-33.5794427"],["120.0229748","-33.5797299"],["120.0284951","-33.5812555"],["120.0300109","-33.5816476"],["120.0306025","-33.581807"],["120.0309702","-33.5818931"],["120.0310091","-33.5817837"],["120.0313274","-33.5811755"],["120.0314336","-33.5809171"],["120.0315351","-33.5806594"],["120.0316403","-33.5804369"],["120.0322383","-33.5789519"],["120.0324449","-33.5784789"],["120.0326217","-33.5781567"],["120.0328397","-33.577817"],["120.0330857","-33.5775055"],["120.0333663","-33.5772063"],["120.0337018","-33.5769027"],["120.0340398","-33.5766717"],["120.0344018","-33.5764486"],["120.0348175","-33.5762261"],["120.0352757","-33.5760411"],["120.0357225","-33.5758959"],["120.0363695","-33.5757617"],["120.0374468","-33.5755922"],["120.0380607","-33.5754771"],["120.0385505","-33.5753516"],["120.0390511","-33.5751924"],["120.0395632","-33.5749723"],["120.0400162","-33.5747151"],["120.0407066","-33.5742632"],["120.0410403","-33.5739694"],["120.0416183","-33.573402"],["120.0423768","-33.5728139"],["120.0431852","-33.572274"],["120.0439646","-33.5718962"],["120.0446502","-33.5716663"],["120.0451678","-33.5715115"],["120.0461039","-33.5713429"],["120.0465802","-33.5712908"],["120.0470618","-33.5712682"],["120.0475448","-33.5712829"],["120.0479987","-33.5713067"],["120.0484595","-33.5713569"],["120.0488451","-33.5714123"],["120.0491432","-33.5714803"],["120.0494188","-33.5715465"],["120.0498138","-33.5716663"],["120.0503758","-33.5718536"],["120.0509685","-33.5721186"],["120.0514514","-33.5723753"],["120.0517939","-33.5725744"],["120.0521444","-33.5728328"],["120.0525158","-33.5731165"],["120.0528883","-33.5734505"],["120.0532143","-33.573815"],["120.0538544","-33.574617"],["120.0555864","-33.5768827"],["120.0558356","-33.577117"],["120.0560842","-33.5773439"],["120.0562772","-33.5775743"],["120.0564861","-33.5778879"],["120.0567037","-33.5781234"],["120.0568681","-33.5782188"],["120.0570806","-33.5782831"],["120.0573363","-33.5782733"],["120.0576738","-33.5781602"],["120.058872","-33.5774641"],["120.0607776","-33.576344"],["120.0614421","-33.5760622"],["120.0621758","-33.5758381"],["120.0634126","-33.5755229"],["120.064005","-33.5753299"],["120.0644168","-33.5751502"],["120.0652269","-33.5746946"],["120.070527","-33.571461"],["120.0715985","-33.570853"],["120.0721731","-33.5706083"],["120.0728178","-33.5704077"],["120.0736223","-33.5702292"],["120.0744141","-33.5701384"],["120.0759075","-33.5701148"],["120.0894378","-33.570143"],["120.0918515","-33.5700491"],["120.0943422","-33.5698449"],["120.1018327","-33.5695508"],["120.1033079","-33.569581"],["120.1081617","-33.5705317"],["120.1091031","-33.5708176"],["120.1109204","-33.571662"],["120.1170223","-33.5747146"],["120.1202962","-33.5763439"],["120.1208689","-33.5765747"],["120.1214378","-33.5767497"],["120.1220338","-33.5768743"],["120.1251707","-33.5772794"],["120.1293725","-33.5778136"],["120.1318264","-33.5781433"],["120.1331367","-33.5784309"],["120.1387978","-33.5797287"],["120.1412921","-33.580306"],["120.141886","-33.5804892"],["120.1425523","-33.5807856"],["120.1436901","-33.5813542"],["120.1444985","-33.5817469"],["120.1450558","-33.581956"],["120.1456147","-33.5820988"],["120.146195","-33.5821877"],["120.1476387","-33.5822607"],["120.150561","-33.58237"],["120.1524365","-33.5824524"],["120.1530533","-33.5825271"],["120.1536637","-33.5826394"],["120.1542522","-33.582788"],["120.1548524","-33.5829854"],["120.155398","-33.583206"],["120.1559573","-33.5834805"],["120.1564734","-33.5837826"],["120.1569508","-33.5841083"],["120.1578199","-33.5848354"],["120.1616154","-33.5881954"],["120.1624278","-33.5888337"],["120.1636335","-33.5897141"],["120.1645461","-33.5903571"],["120.1655646","-33.5909485"],["120.167614","-33.592075"],["120.1686284","-33.5926033"],["120.1695069","-33.5929293"],["120.171647","-33.5936535"],["120.1727519","-33.5940451"],["120.1732999","-33.5943087"],["120.1748331","-33.5952204"],["120.1798417","-33.5982301"],["120.1808072","-33.5987854"],["120.1812864","-33.5989997"],["120.1818113","-33.5991816"],["120.1824179","-33.5993375"],["120.1829969","-33.5994336"],["120.1836865","-33.5994815"],["120.2000259","-33.5994635"],["120.2011389","-33.5994797"],["120.2035867","-33.599836"],["120.2120538","-33.6012207"],["120.2155662","-33.6017765"],["120.2161371","-33.6018"],["120.2166909","-33.6017856"],["120.2172386","-33.6017349"],["120.2177796","-33.6016427"],["120.2183436","-33.6015285"],["120.2190107","-33.6013498"],["120.2220356","-33.6004198"],["120.2229286","-33.6001705"],["120.2234403","-33.6000637"],["120.2239592","-33.5999976"],["120.2262401","-33.5999639"],["120.2371993","-33.59994"],["120.2377764","-33.5999213"],["120.2383774","-33.5998705"],["120.2391253","-33.5997304"],["120.2404108","-33.5994266"],["120.2412762","-33.5992324"],["120.2418541","-33.5991606"],["120.2424195","-33.5991411"],["120.243022","-33.5991577"],["120.2435945","-33.599219"],["120.2446486","-33.5994439"],["120.2591008","-33.6030086"],["120.2626051","-33.6035869"],["120.2775282","-33.6058033"],["120.2798527","-33.6061305"],["120.2816154","-33.6061631"],["120.2911048","-33.6061573"],["120.2932796","-33.606139"],["120.3038718","-33.6061157"],["120.3052508","-33.6060976"],["120.3058308","-33.6060279"],["120.3064262","-33.6059235"],["120.3069975","-33.6057595"],["120.3075305","-33.6055652"],["120.308059","-33.6053166"],["120.3097438","-33.6042764"],["120.3133018","-33.6020417"],["120.3144466","-33.6013673"],["120.3152506","-33.6010345"],["120.3189022","-33.5997155"],["120.3200612","-33.5993245"],["120.323694","-33.5983968"],["120.3369356","-33.5950793"],["120.3386496","-33.5946941"],["120.3392147","-33.5946337"],["120.3399164","-33.5946223"],["120.3405525","-33.59467"],["120.3426128","-33.5950069"],["120.3588461","-33.5978041"],["120.3606021","-33.5980964"],["120.3614011","-33.5982423"],["120.3620314","-33.5984152"],["120.3625387","-33.5986053"],["120.3630536","-33.5988428"],["120.3653855","-33.6002091"],["120.3885206","-33.6139826"],["120.3914908","-33.6157573"],["120.4379351","-33.6434805"],["120.4429252","-33.6464271"],["120.4434064","-33.6466418"],["120.4439113","-33.6468252"],["120.4444369","-33.646977"],["120.4452451","-33.6471368"],["120.4889895","-33.6550049"],["120.4913206","-33.6553933"],["120.4940803","-33.6555314"],["120.5031661","-33.6558996"],["120.5041776","-33.6559413"],["120.5050497","-33.6559766"],["120.5053422","-33.6559868"],["120.5143098","-33.6564597"],["120.5212726","-33.6570128"],["120.5261748","-33.6573374"],["120.5302579","-33.6573536"],["120.5323626","-33.6573407"],["120.5362451","-33.656972"],["120.5383638","-33.6567724"],["120.5426315","-33.6563628"],["120.5431571","-33.6563475"],["120.5442828","-33.6564297"],["120.5463064","-33.656614"],["120.548027","-33.6567918"],["120.5492028","-33.6570153"],["120.551808","-33.6576043"],["120.5531895","-33.6579009"],["120.5576165","-33.6584357"],["120.5749223","-33.6600942"],["120.6205654","-33.6640278"],["120.6223341","-33.664189"],["120.6230937","-33.6643449"],["120.6371259","-33.6683625"],["120.6410501","-33.6694791"],["120.643133","-33.6697463"],["120.6611382","-33.6716883"],["120.6638283","-33.6719634"],["120.6642903","-33.6719651"],["120.6657914","-33.6718331"],["120.6725318","-33.671139"],["120.6733726","-33.6710785"],["120.673672","-33.6710688"],["120.6740473","-33.6710774"],["120.6743452","-33.6711057"],["120.674663","-33.6711482"],["120.6749875","-33.6711999"],["120.6759488","-33.6714136"],["120.6806307","-33.6725225"],["120.6811397","-33.6726328"],["120.6814943","-33.6726874"],["120.7560615","-33.6815108"],["120.7589017","-33.6818657"],["120.7592277","-33.6819297"],["120.7594323","-33.6819838"],["120.7596341","-33.6820445"],["120.7673152","-33.6847211"],["120.7676799","-33.6848255"],["120.7680145","-33.6849104"],["120.768655","-33.684999"],["120.7689417","-33.6850255"],["120.7696224","-33.6850329"],["120.7699587","-33.6850262"],["120.779642","-33.6842107"],["120.7804484","-33.68413"],["120.7811467","-33.6840145"],["120.7814999","-33.6839229"],["120.7818712","-33.6838155"],["120.782267","-33.6836566"],["120.7824861","-33.6835612"],["120.783051","-33.6832754"],["120.7833462","-33.6830937"],["120.7839904","-33.6826542"],["120.7865662","-33.6808177"],["120.7885435","-33.6793979"],["120.7891658","-33.6789838"],["120.7894478","-33.6788379"],["120.7897577","-33.6786884"],["120.7900548","-33.6785709"],["120.7903857","-33.6784548"],["120.7906907","-33.678358"],["120.7909852","-33.6782745"],["120.7912988","-33.6782071"],["120.7916525","-33.6781513"],["120.7922807","-33.6780752"],["120.7977237","-33.6775344"],["120.7981122","-33.6775152"],["120.7984492","-33.6775146"],["120.7987493","-33.6775276"],["120.7991454","-33.6775601"],["120.7997429","-33.6776534"],["120.8003949","-33.6778"],["120.8010737","-33.6780163"],["120.8016223","-33.678236"],["120.8021624","-33.6784634"],["120.8031376","-33.6788854"],["120.8574953","-33.7017423"],["120.858129","-33.7020301"],["120.8588245","-33.7024159"],["120.8629809","-33.7049046"],["120.8645843","-33.7058665"],["120.870781","-33.709566"],["120.8731531","-33.7107452"],["120.8774541","-33.7126442"],["120.8800981","-33.7137958"],["120.8807084","-33.7140203"],["120.8812894","-33.7142037"],["120.881929","-33.7143737"],["120.882516","-33.7145099"],["120.8831715","-33.714636"],["120.8838015","-33.7147272"],["120.8844865","-33.7147979"],["120.8851432","-33.7148397"],["120.8857766","-33.7148582"],["120.8864375","-33.7148504"],["120.8876836","-33.7147567"],["120.8897863","-33.7145655"],["120.8910829","-33.7144658"],["120.8917573","-33.714456"],["120.8923078","-33.7144677"],["120.8931312","-33.7145259"],["120.8936431","-33.7145812"],["120.8944523","-33.7147068"],["120.895451","-33.7149352"],["120.9332299","-33.7249281"],["120.9573432","-33.7313135"],["120.9602205","-33.7320705"],["120.9607413","-33.7322401"],["120.9612841","-33.7324428"],["120.9617908","-33.732661"],["120.9623367","-33.7329321"],["120.9628242","-33.7332032"],["120.9633013","-33.7335089"],["120.966298","-33.7357999"],["120.9703597","-33.738922"],["120.9742035","-33.7418701"],["120.9746843","-33.7421732"],["120.9752064","-33.7424473"],["120.9757475","-33.7426836"],["120.9763073","-33.7428775"],["120.9803192","-33.7437417"],["121.0143568","-33.7507625"],["121.0179255","-33.7515032"],["121.0185153","-33.7516946"],["121.0209228","-33.7527995"],["121.0338216","-33.758889"],["121.0353151","-33.7595638"],["121.0359561","-33.7598077"],["121.0406295","-33.7612935"],["121.0611588","-33.7678274"],["121.0618731","-33.7680069"],["121.0624536","-33.7680959"],["121.0632858","-33.7681364"],["121.0646486","-33.768145"],["121.0661013","-33.7681554"],["121.0667287","-33.7682006"],["121.0673102","-33.7682833"],["121.0678974","-33.7684304"],["121.0683725","-33.7685858"],["121.0701502","-33.7692226"],["121.0713547","-33.7696023"],["121.0810081","-33.7725498"],["121.0857393","-33.7739884"],["121.0864154","-33.7741357"],["121.0870794","-33.7742165"],["121.0909343","-33.7743505"],["121.1122683","-33.7750346"],["121.1145078","-33.7751003"],["121.115088","-33.7750757"],["121.1156543","-33.7750151"],["121.1182664","-33.7745537"],["121.1261506","-33.7731193"],["121.1269105","-33.7729321"],["121.1274436","-33.7727376"],["121.1279851","-33.7724974"],["121.1284811","-33.7722237"],["121.1289293","-33.7719268"],["121.1300432","-33.7710307"],["121.1360735","-33.7660542"],["121.1366717","-33.7655758"],["121.1371023","-33.7652854"],["121.1375596","-33.7650091"],["121.1380192","-33.7647592"],["121.1387658","-33.7644229"],["121.148509","-33.7605139"],["121.1494212","-33.760168"],["121.1499307","-33.7600085"],["121.1505147","-33.7598548"],["121.1510697","-33.7597407"],["121.1515539","-33.7596663"],["121.1565291","-33.7590701"],["121.157093","-33.7590358"],["121.1577169","-33.7590227"],["121.1610652","-33.7591497"],["121.1641616","-33.7592673"],["121.1664418","-33.7593411"],["121.1671055","-33.7593185"],["121.1677697","-33.7592648"],["121.1684619","-33.759167"],["121.1690765","-33.7590566"],["121.1776721","-33.7570655"],["121.1790607","-33.7567724"],["121.1797229","-33.7566873"],["121.1803577","-33.7566391"],["121.1810605","-33.7566199"],["121.1817431","-33.756639"],["121.1824348","-33.7566975"],["121.1831901","-33.7568159"],["121.1850418","-33.757246"],["121.1880546","-33.7579874"],["121.1894552","-33.7583126"],["121.190089","-33.7584392"],["121.1912654","-33.7586295"],["121.1930501","-33.7588162"],["121.1948662","-33.7589783"],["121.1958631","-33.7590338"],["121.1965793","-33.7590261"],["121.1972233","-33.758987"],["121.1978822","-33.7589048"],["121.1985535","-33.7587848"],["121.2048676","-33.7572878"],["121.2359354","-33.7498672"],["121.2404307","-33.7489142"],["121.2420124","-33.7486372"],["121.2444048","-33.7482156"],["121.2454605","-33.7479696"],["121.2461327","-33.7477826"],["121.2469801","-33.7474764"],["121.2478577","-33.7471197"],["121.2485631","-33.7468013"],["121.2491212","-33.7465188"],["121.2498036","-33.7461298"],["121.2506007","-33.7456669"],["121.2512657","-33.7452907"],["121.2518218","-33.74502"],["121.2523896","-33.7447746"],["121.252983","-33.7445426"],["121.2535893","-33.7443365"],["121.2542403","-33.7441486"],["121.2548639","-33.7439925"],["121.2554662","-33.7438637"],["121.2572279","-33.7434599"],["121.2583891","-33.7432422"],["121.259116","-33.743144"],["121.2709053","-33.7423943"],["121.2752875","-33.7421089"],["121.2837461","-33.741564"],["121.2843576","-33.7414908"],["121.2850135","-33.7413928"],["121.2856225","-33.7412789"],["121.2879504","-33.740715"],["121.3294616","-33.7303672"],["121.3592612","-33.723018"],["121.3609857","-33.7226435"],["121.362809","-33.7222511"],["121.3634707","-33.7220704"],["121.3882711","-33.7141114"],["121.3890116","-33.7138881"],["121.389619","-33.7137297"],["121.3912996","-33.7133955"],["121.4296117","-33.7063587"],["121.4441293","-33.7036823"],["121.4450026","-33.703476"],["121.448313","-33.7024743"],["121.4681161","-33.6962335"],["121.4710978","-33.6953054"],["121.4717347","-33.6951455"],["121.4723437","-33.6950159"],["121.47298","-33.6949002"],["121.4736548","-33.6948033"],["121.4743074","-33.6947348"],["121.4749379","-33.6946854"],["121.4756392","-33.6946543"],["121.4762613","-33.6946536"],["121.4984447","-33.6956044"],["121.5001075","-33.6956996"],["121.5022051","-33.6959963"],["121.509254","-33.6970489"],["121.5107737","-33.6972327"],["121.5134968","-33.6973806"],["121.552827","-33.6989573"],["121.5568471","-33.6991398"],["121.5580946","-33.699261"],["121.5594488","-33.6994516"],["121.5691535","-33.7012463"],["121.5699158","-33.7013624"],["121.5712834","-33.7015382"],["121.5726938","-33.7017092"],["121.5741351","-33.7019188"],["121.5752405","-33.7021268"],["121.576167","-33.7023416"],["121.5770919","-33.7025863"],["121.5779969","-33.7028633"],["121.5803714","-33.703761"],["121.582671","-33.7046542"],["121.5854656","-33.7057592"],["121.5860268","-33.7060262"],["121.586542","-33.7063104"],["121.58705","-33.7066253"],["121.5874982","-33.7069344"],["121.5878858","-33.7072418"],["121.5883776","-33.7076544"],["121.5888601","-33.7081278"],["121.5891756","-33.708485"],["121.5895158","-33.7089108"],["121.589844","-33.7093838"],["121.5902798","-33.7100636"],["121.5938852","-33.716118"],["121.5942554","-33.7165877"],["121.5946696","-33.7170178"],["121.5951742","-33.7174862"],["121.5996359","-33.7212276"],["121.6006662","-33.7220627"],["121.6011359","-33.7223552"],["121.603335","-33.7234217"],["121.6075095","-33.7254018"],["121.6093984","-33.7262294"],["121.6098054","-33.7263313"],["121.6101119","-33.7264054"],["121.612111","-33.7266664"],["121.6884125","-33.7355699"],["121.6897613","-33.7357499"],["121.6903933","-33.7358681"],["121.6909984","-33.7360023"],["121.6916177","-33.7361623"],["121.6921658","-33.7363207"],["121.6930417","-33.7366237"],["121.6940316","-33.7370054"],["121.6945779","-33.7372447"],["121.6952406","-33.7376073"],["121.6960515","-33.7380703"],["121.6966351","-33.7384361"],["121.6978662","-33.739322"],["121.6989791","-33.7401279"],["121.7000911","-33.7409195"],["121.7006063","-33.7412485"],["121.7011092","-33.7415486"],["121.7015743","-33.7418035"],["121.702284","-33.7421504"],["121.7027797","-33.7423714"],["121.7033102","-33.7425865"],["121.7039093","-33.7428058"],["121.7065246","-33.7435892"],["121.7390016","-33.7530418"],["121.7402513","-33.7534333"],["121.7408535","-33.7536568"],["121.7416589","-33.7540021"],["121.7537974","-33.75974"],["121.7558401","-33.7606846"],["121.7564235","-33.7609139"],["121.7570472","-33.7611237"],["121.7585935","-33.7615403"],["121.7670197","-33.7636636"],["121.7693099","-33.7642514"],["121.7699065","-33.7644463"],["121.7705134","-33.7646805"],["121.7711271","-33.7649497"],["121.7716924","-33.765231"],["121.772204","-33.7655134"],["121.7727467","-33.7658422"],["121.7732237","-33.7661724"],["121.7736954","-33.7665258"],["121.774235","-33.7669674"],["121.7746322","-33.7673345"],["121.7757772","-33.7685245"],["121.7775295","-33.7703869"],["121.779266","-33.7724084"],["121.7902616","-33.7862175"],["121.7918284","-33.7881281"],["121.7922476","-33.7885301"],["121.7927107","-33.7889189"],["121.7932089","-33.7892794"],["121.7941807","-33.7898647"],["121.7959195","-33.7908707"],["121.7978971","-33.7920155"],["121.7985098","-33.7924065"],["121.7998584","-33.7934133"],["121.8054026","-33.7976405"],["121.8060801","-33.7981195"],["121.806733","-33.7985283"],["121.8096218","-33.8002064"],["121.8107302","-33.8009059"],["121.8112792","-33.801295"],["121.8118854","-33.8017736"],["121.8134895","-33.8031391"],["121.8146629","-33.8041243"],["121.8162579","-33.8054743"],["121.8167841","-33.8058766"],["121.8172825","-33.8062128"],["121.8177441","-33.8065"],["121.8182716","-33.8067925"],["121.8187982","-33.8070556"],["121.8222456","-33.8085051"],["121.8272007","-33.8105767"],["121.8298575","-33.8117252"],["121.8309888","-33.8123644"],["121.8317712","-33.8129035"],["121.8325763","-33.8135667"],["121.8351017","-33.8158986"],["121.8361412","-33.8167786"],["121.836934","-33.8173266"],["121.8378733","-33.8178623"],["121.8410656","-33.8194628"],["121.8430259","-33.8205285"],["121.8513425","-33.8256735"],["121.8523047","-33.8263539"],["121.8529593","-33.8269324"],["121.8536194","-33.8276373"],["121.8542431","-33.8284477"],["121.8547374","-33.8292971"],["121.8554486","-33.8306347"],["121.8558494","-33.8312511"],["121.8562543","-33.8317959"],["121.8567082","-33.8323161"],["121.8572999","-33.8329008"],["121.857846","-33.8334016"],["121.858578","-33.8338877"],["121.8644118","-33.8375735"],["121.8651443","-33.8379673"],["121.8657083","-33.8381998"],["121.8660301","-33.8382999"],["121.8665399","-33.8384342"],["121.8673255","-33.8385862"],["121.8680741","-33.8386565"],["121.8866515","-33.8389522"],["121.8870243","-33.8388881"],["121.8872257","-33.8388173"],["121.8873311","-33.8387605"],["121.887417","-33.838726"],["121.887428","-33.8400408"],["121.8874188","-33.8418162"],["121.887388","-33.8434336"],["121.8873465","-33.8443338"],["121.8872092","-33.8449015"],["121.886627","-33.8461731"],["121.8860323","-33.8468009"],["121.8853491","-33.8473207"],["121.883828","-33.8483146"],["121.8834599","-33.8486471"],["121.8831871","-33.8489652"],["121.8830623","-33.8491613"],["121.8829039","-33.8495136"],["121.8827726","-33.8498968"],["121.8827116","-33.8502588"],["121.8827027","-33.8505272"],["121.8826919","-33.8533725"],["121.8827005","-33.8542158"],["121.8826581","-33.8545742"],["121.8824922","-33.8549943"],["121.8821187","-33.8558857"],["121.8820544","-33.8561762"],["121.8820126","-33.857687"],["121.8819828","-33.8593074"],["121.8820038","-33.8639521"],["121.882465","-33.8641298"],["121.8877615","-33.8641543"],["121.8879928","-33.8641937"],["121.8880365","-33.8641659"],["121.88809","-33.8641521"],["121.888145","-33.8641603"],["121.8881954","-33.864195"],["121.8882181","-33.8642473"],["121.8882124","-33.8643007"],["121.8883362","-33.8643533"],["121.8888541","-33.8644869"],["121.8903764","-33.864846"],["121.8904344","-33.864822"],["121.890476","-33.8647949"],["121.8905208","-33.8647836"],["121.8905715","-33.8647868"],["121.8906127","-33.8648038"],["121.890649","-33.864836"],["121.8906651","-33.8648724"],["121.890665","-33.8649109"],["121.8906493","-33.8649467"],["121.8906216","-33.8649736"],["121.8905819","-33.8649934"],["121.8905181","-33.8650233"],["121.8901586","-33.866731"],["121.8901279","-33.8679643"],["121.8900983","-33.869308"]] } }; 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: [["115.8597992","-31.9555568"],["115.8597465","-31.9556687"],["115.8596928","-31.9557877"],["115.8596642","-31.9558554"],["115.8596488","-31.9558843"],["115.8596103","-31.9559609"],["115.8592154","-31.956797"],["115.8591741","-31.9568875"],["115.8591601","-31.9569222"],["115.8591628","-31.9569869"],["115.8591303","-31.9570527"],["115.8584286","-31.9568293"],["115.8572916","-31.9564421"],["115.8569361","-31.9563286"],["115.856686","-31.9562588"],["115.8564552","-31.9562166"],["115.8561397","-31.9561761"],["115.8560861","-31.9561713"],["115.8560125","-31.9561648"],["115.85587","-31.9561542"],["115.8557206","-31.9565806"],["115.8553201","-31.9573558"],["115.8551802","-31.9577482"],["115.8550372","-31.9580464"],["115.8549025","-31.9583471"],["115.8548498","-31.9584555"],["115.8547955","-31.9584999"],["115.8547412","-31.9585165"],["115.8546764","-31.9585275"],["115.8545004","-31.9585296"],["115.8536788","-31.9585092"],["115.8534355","-31.9584857"],["115.8532266","-31.9584806"],["115.8528769","-31.9584769"],["115.8526364","-31.9584917"],["115.8524648","-31.9585101"],["115.8523753","-31.9585175"],["115.8523055","-31.9585126"],["115.8522463","-31.9584998"],["115.8521752","-31.9584779"],["115.8521431","-31.9584652"],["115.852092","-31.9584462"],["115.8519859","-31.958414"],["115.8518598","-31.9583783"],["115.8516912","-31.9583409"],["115.8514973","-31.9583067"],["115.8512618","-31.9582824"],["115.8509818","-31.9582722"],["115.8507104","-31.9582884"],["115.8504373","-31.9583089"],["115.8501915","-31.9583627"],["115.8499004","-31.9584509"],["115.8496392","-31.9585734"],["115.8494324","-31.9586793"],["115.849261","-31.9587809"],["115.8491047","-31.9588929"],["115.8489049","-31.9590501"],["115.8487025","-31.9592379"],["115.8484461","-31.9594908"],["115.8480949","-31.9599492"],["115.8479533","-31.9602187"],["115.8477778","-31.9606135"],["115.8476531","-31.9609305"],["115.847511","-31.961435"],["115.8473092","-31.9624626"],["115.8466303","-31.9661572"],["115.8464334","-31.967221"],["115.8464027","-31.9676427"],["115.8464058","-31.967839"],["115.8464298","-31.9680607"],["115.8464758","-31.9682989"],["115.846534","-31.9685297"],["115.8465999","-31.9687298"],["115.846715","-31.9690028"],["115.8471751","-31.9699883"],["115.8473143","-31.970318"],["115.8474269","-31.9706558"],["115.8475316","-31.9710564"],["115.8476225","-31.9714864"],["115.8478093","-31.9726188"],["115.8486162","-31.9782757"],["115.8487101","-31.979124"],["115.8487463","-31.9793854"],["115.848798","-31.9796415"],["115.8488712","-31.9799069"],["115.8489459","-31.9801152"],["115.8490384","-31.9803368"],["115.8491834","-31.9806226"],["115.849445","-31.9810382"],["115.8505281","-31.9826121"],["115.8509118","-31.9831871"],["115.8512269","-31.9836909"],["115.8515129","-31.9841764"],["115.851903","-31.9848929"],["115.8521196","-31.9853179"],["115.852552","-31.9862413"],["115.8530334","-31.987347"],["115.8533607","-31.9880681"],["115.854303","-31.9900255"],["115.8544826","-31.9904204"],["115.8546135","-31.9907453"],["115.8547374","-31.9910716"],["115.8548541","-31.9914108"],["115.8549245","-31.9916333"],["115.8549911","-31.9918619"],["115.855111","-31.9923221"],["115.8551802","-31.9926339"],["115.8553005","-31.9932857"],["115.85538","-31.993986"],["115.8554078","-31.9944262"],["115.8554233","-31.99485"],["115.855413","-31.9953939"],["115.8553836","-31.9960562"],["115.8553492","-31.9965516"],["115.8552957","-31.9970591"],["115.8552307","-31.9975209"],["115.8551391","-31.9980746"],["115.8550417","-31.9985547"],["115.8548734","-31.9992248"],["115.8542774","-32.0013089"],["115.8540929","-32.001957"],["115.8540319","-32.0022299"],["115.8539827","-32.0025012"],["115.8539448","-32.002803"],["115.8539195","-32.003163"],["115.8539236","-32.0034626"],["115.8539432","-32.0037335"],["115.853998","-32.0041264"],["115.8540372","-32.0043195"],["115.8540962","-32.0045484"],["115.8541806","-32.0048507"],["115.8542846","-32.0051564"],["115.8543867","-32.005405"],["115.8550492","-32.0067229"],["115.8555898","-32.0078594"],["115.8563528","-32.0096661"],["115.8569948","-32.0112418"],["115.8573714","-32.0122156"],["115.8574987","-32.0126016"],["115.8576677","-32.0132685"],["115.8577559","-32.0137274"],["115.8578036","-32.0140528"],["115.8578383","-32.0144242"],["115.8578571","-32.0147224"],["115.8578749","-32.0151273"],["115.8578723","-32.0154177"],["115.8578143","-32.0162287"],["115.8575764","-32.0191784"],["115.8575724","-32.0196088"],["115.8575879","-32.0198418"],["115.8576133","-32.0200706"],["115.857656","-32.0203659"],["115.8577068","-32.0206774"],["115.8577599","-32.0209001"],["115.8578452","-32.0211923"],["115.8579413","-32.0214822"],["115.8580526","-32.0217584"],["115.8581744","-32.0220299"],["115.8583951","-32.0224654"],["115.8587819","-32.0230769"],["115.8600184","-32.024891"],["115.8603059","-32.0253397"],["115.8603962","-32.0255052"],["115.8604832","-32.0256891"],["115.8606733","-32.026118"],["115.8607537","-32.0263292"],["115.8608463","-32.0266298"],["115.8609134","-32.026921"],["115.8609545","-32.0271777"],["115.8610185","-32.0276964"],["115.8610258","-32.0279374"],["115.8610247","-32.0281987"],["115.8610094","-32.0284534"],["115.8609852","-32.0287001"],["115.8609462","-32.0289386"],["115.8609038","-32.0291391"],["115.8608516","-32.0293507"],["115.8607927","-32.0295514"],["115.8607191","-32.0297497"],["115.8606439","-32.0299378"],["115.860559","-32.0301288"],["115.8604078","-32.030424"],["115.860268","-32.0306831"],["115.8566244","-32.0368946"],["115.8563824","-32.0373511"],["115.8562448","-32.037647"],["115.8561157","-32.0379195"],["115.8559862","-32.0382222"],["115.8558442","-32.0386337"],["115.8557116","-32.0390701"],["115.8556074","-32.0395592"],["115.8555567","-32.039849"],["115.8548651","-32.0446696"],["115.8546872","-32.0455632"],["115.8545228","-32.0462419"],["115.8543248","-32.0469847"],["115.8540848","-32.0478067"],["115.853726","-32.0489548"],["115.8526832","-32.0520587"],["115.8523958","-32.0530071"],["115.8521004","-32.0540809"],["115.8519122","-32.0548693"],["115.8517276","-32.0557664"],["115.851626","-32.0564362"],["115.8515275","-32.0575216"],["115.8505479","-32.0679105"],["115.8504048","-32.0694731"],["115.8500277","-32.0732013"],["115.8498497","-32.0749946"],["115.8492581","-32.0816543"],["115.8492074","-32.0828625"],["115.8491995","-32.0845061"],["115.8493527","-32.0923782"],["115.8494109","-32.0940028"],["115.8494559","-32.0950493"],["115.849458","-32.0950932"],["115.8494731","-32.0953059"],["115.8495636","-32.0962751"],["115.8502089","-32.1016804"],["115.8513009","-32.1063056"],["115.8517324","-32.1080649"],["115.851888","-32.1086189"],["115.8521186","-32.1091152"],["115.8525163","-32.1101566"],["115.8529591","-32.1114165"],["115.8534003","-32.1127321"],["115.8538503","-32.1139704"],["115.8541697","-32.1147905"],["115.8546313","-32.1159705"],["115.8558024","-32.1189115"],["115.8561378","-32.1196665"],["115.8563475","-32.1199774"],["115.8566823","-32.1205394"],["115.8569838","-32.121027"],["115.8579263","-32.1222105"],["115.8582536","-32.1226968"],["115.858471","-32.1230733"],["115.8586536","-32.1232689"],["115.8587884","-32.1233493"],["115.8588842","-32.1234191"],["115.8592333","-32.123419"],["115.8595857","-32.1234351"],["115.8597677","-32.1234585"],["115.8599684","-32.1234976"],["115.8601599","-32.1235461"],["115.8603468","-32.1236111"],["115.8604897","-32.123675"],["115.8606501","-32.1237601"],["115.8608478","-32.1238949"],["115.861013","-32.1240269"],["115.8612518","-32.1242239"],["115.8622089","-32.1250189"],["115.8627648","-32.1254901"],["115.8631824","-32.1258044"],["115.8635761","-32.126044"],["115.8639332","-32.1262302"],["115.8643708","-32.1264185"],["115.8647959","-32.1265645"],["115.8652796","-32.1266995"],["115.8671183","-32.1271468"],["115.8679584","-32.1273547"],["115.8683572","-32.1274775"],["115.8692066","-32.1277971"],["115.8697179","-32.1280175"],["115.8701856","-32.1282518"],["115.8723867","-32.1293894"],["115.8729541","-32.129679"],["115.8735919","-32.1299957"],["115.8750826","-32.1306155"],["115.8759281","-32.130886"],["115.8763895","-32.1310284"],["115.8765976","-32.1310901"],["115.8771145","-32.1312341"],["115.8780659","-32.1315208"],["115.8789873","-32.1318122"],["115.8850001","-32.1335988"],["115.8860044","-32.1337889"],["115.8865986","-32.1338596"],["115.8869572","-32.1338935"],["115.8870938","-32.1338823"],["115.8871797","-32.133845"],["115.8872457","-32.1338146"],["115.8872633","-32.1337606"],["115.8872896","-32.1337069"],["115.8873255","-32.1336584"],["115.8873698","-32.1336149"],["115.8874233","-32.1335784"],["115.887478","-32.1335516"],["115.8875373","-32.1335325"],["115.8875988","-32.1335216"],["115.8876619","-32.1335185"],["115.8877251","-32.1335236"],["115.8877847","-32.1335357"],["115.8878246","-32.133546"],["115.8880295","-32.133572"],["115.8883668","-32.133596"],["115.8886812","-32.1335732"],["115.8891034","-32.1335427"],["115.8897609","-32.133518"],["115.8904705","-32.1335552"],["115.8913061","-32.1337116"],["115.8922754","-32.1340187"],["115.8932201","-32.1344168"],["115.8952077","-32.1353912"],["115.8970324","-32.1362363"],["115.8971621","-32.1362928"],["115.8972958","-32.1363534"],["115.8997986","-32.1374598"],["115.9033203","-32.1389134"],["115.9051949","-32.1397628"],["115.9057305","-32.1400291"],["115.9059658","-32.1401573"],["115.906001","-32.1401762"],["115.9060884","-32.1402058"],["115.9061855","-32.1402119"],["115.9063164","-32.1402037"],["115.9064382","-32.1401656"],["115.9065454","-32.1401561"],["115.9066524","-32.140169"],["115.9067533","-32.140206"],["115.9068436","-32.1402663"],["115.9069281","-32.1403581"],["115.9070692","-32.1405021"],["115.9073022","-32.1406899"],["115.9080631","-32.1410514"],["115.9111498","-32.1424949"],["115.9119058","-32.1428422"],["115.9174157","-32.1453703"],["115.920553","-32.1468626"],["115.9209804","-32.1470383"],["115.921559","-32.1472467"],["115.9224805","-32.1474941"],["115.9230642","-32.1476132"],["115.923687","-32.1477025"],["115.9241127","-32.1477389"],["115.9244674","-32.1477607"],["115.9248591","-32.1477691"],["115.9286601","-32.1477267"],["115.9360312","-32.1477181"],["115.9364822","-32.1477393"],["115.936593","-32.1477326"],["115.9367363","-32.1476878"],["115.9368014","-32.1476253"],["115.936871","-32.1475866"],["115.9369698","-32.1475656"],["115.93707","-32.1475757"],["115.9371442","-32.1476016"],["115.9373284","-32.1476486"],["115.9377188","-32.1476728"],["115.9441329","-32.1476741"],["115.9450531","-32.1477091"],["115.9456885","-32.1477601"],["115.9460086","-32.147789"],["115.9464021","-32.1478191"],["115.9470038","-32.1478444"],["115.9516245","-32.1476967"],["115.9518902","-32.147687"],["115.9583073","-32.1474706"],["115.9647949","-32.1472563"],["115.9653358","-32.147244"],["115.9692099","-32.1471815"],["115.9700582","-32.1472002"],["115.9725744","-32.1471715"],["115.9727679","-32.147165"],["115.9728621","-32.1471503"],["115.972919","-32.1471322"],["115.9729834","-32.1471091"],["115.9731282","-32.1470439"],["115.9732051","-32.147007"],["115.9732824","-32.1469889"],["115.9733616","-32.1469889"],["115.9734368","-32.1470079"],["115.9735108","-32.1470434"],["115.9737024","-32.1470868"],["115.9738676","-32.1471136"],["115.9754386","-32.1471109"],["115.9764409","-32.1471077"],["115.9847009","-32.1470414"],["115.9877871","-32.1470096"],["115.9910654","-32.1469973"],["116.0014086","-32.1469085"],["116.0109159","-32.1468312"],["116.011559","-32.1468384"],["116.0116922","-32.1468485"],["116.0118276","-32.1468619"],["116.0119516","-32.146881"],["116.0121909","-32.1469348"],["116.0123148","-32.1469709"],["116.0124254","-32.1470103"],["116.0125415","-32.1470578"],["116.0127387","-32.1471667"],["116.0129475","-32.1472963"],["116.0130065","-32.1473377"],["116.0136045","-32.1477922"],["116.0138268","-32.1479237"],["116.0140422","-32.148034"],["116.0141257","-32.1480694"],["116.0142102","-32.1480952"],["116.0142307","-32.148102"],["116.0143413","-32.1481294"],["116.0145078","-32.1481655"],["116.0145379","-32.1481728"],["116.0145835","-32.14818"],["116.0146788","-32.148194"],["116.0148062","-32.1482069"],["116.0151632","-32.1482128"],["116.0159412","-32.1482215"],["116.0161896","-32.1482326"],["116.0164098","-32.1482524"],["116.0167076","-32.1482914"],["116.0168699","-32.148325"],["116.0170647","-32.1483705"],["116.0175564","-32.148533"],["116.0177789","-32.1486269"],["116.01825","-32.1488715"],["116.0183523","-32.14893"],["116.0188445","-32.1491894"],["116.0193624","-32.149427"],["116.0196973","-32.1495406"],["116.0199866","-32.1496137"],["116.0202607","-32.1496719"],["116.0204785","-32.1497109"],["116.0207767","-32.1497423"],["116.0210332","-32.1497584"],["116.0213523","-32.1497648"],["116.022004","-32.1497985"],["116.0225188","-32.149817"],["116.023169","-32.1498186"],["116.024719","-32.149614"],["116.024823","-32.1495968"],["116.0251599","-32.1495392"],["116.0252862","-32.1495222"],["116.0254074","-32.1495018"],["116.0255773","-32.149485"],["116.0257579","-32.149471"],["116.025889","-32.1494672"],["116.0260334","-32.1494742"],["116.026218","-32.1495005"],["116.0263405","-32.1495212"],["116.0264412","-32.1495482"],["116.026579","-32.1495981"],["116.0268636","-32.1497323"],["116.0271753","-32.1499167"],["116.0274492","-32.1501821"],["116.0276098","-32.1504222"],["116.0277331","-32.1506794"],["116.0277629","-32.1507974"],["116.0277838","-32.1509088"],["116.0278039","-32.1510648"],["116.0278309","-32.1513625"],["116.0279568","-32.153288"],["116.0279519","-32.1535484"],["116.0279418","-32.1537541"],["116.027916","-32.15394"],["116.0278568","-32.1541695"],["116.027702","-32.1545681"],["116.0274792","-32.1549768"],["116.0269328","-32.1558704"],["116.0267994","-32.1560912"],["116.0267453","-32.1562112"],["116.0266446","-32.1565161"],["116.0265721","-32.1567615"],["116.026524","-32.1569458"],["116.0264851","-32.1571385"],["116.0264366","-32.1576503"],["116.0263587","-32.1584053"],["116.0263242","-32.1587371"],["116.0262525","-32.1594696"],["116.0262435","-32.1596643"],["116.0262437","-32.1598417"],["116.0262809","-32.1602193"],["116.0263382","-32.1605131"],["116.0264453","-32.1610093"],["116.0265212","-32.1612802"],["116.0266891","-32.1617219"],["116.0268012","-32.1620099"],["116.0276296","-32.1641709"],["116.0278954","-32.1648119"],["116.0279519","-32.1649349"],["116.0280471","-32.1651028"],["116.0281565","-32.1652823"],["116.0282667","-32.1654395"],["116.0284818","-32.1657004"],["116.0286088","-32.1658376"],["116.0288777","-32.1660711"],["116.029169","-32.1662814"],["116.0295757","-32.1665308"],["116.0309502","-32.167239"],["116.0314073","-32.1674638"],["116.0317381","-32.1675975"],["116.0320177","-32.1676882"],["116.0323291","-32.1677619"],["116.0326158","-32.1678192"],["116.032853","-32.1678493"],["116.0330423","-32.1678624"],["116.0332275","-32.1678675"],["116.0336135","-32.1678581"],["116.0339827","-32.1678053"],["116.0366695","-32.1672613"],["116.0371897","-32.1671831"],["116.0379711","-32.167124"],["116.0383906","-32.1671032"],["116.0388905","-32.167093"],["116.0396681","-32.1671319"],["116.0402235","-32.1671868"],["116.0408211","-32.1672701"],["116.0414452","-32.1673803"],["116.0450643","-32.1681301"],["116.0457355","-32.1682698"],["116.0459652","-32.168326"],["116.0461487","-32.1683824"],["116.0463434","-32.1684527"],["116.0466772","-32.1686002"],["116.047136","-32.1688565"],["116.0475262","-32.1691341"],["116.0476941","-32.1692836"],["116.0478958","-32.1694996"],["116.0482086","-32.1699539"],["116.0483873","-32.1703215"],["116.0487776","-32.1716008"],["116.0488305","-32.1717894"],["116.0488604","-32.1719469"],["116.0489247","-32.1722457"],["116.0489765","-32.1724116"],["116.0490436","-32.1725765"],["116.0491503","-32.1728126"],["116.0492868","-32.1730519"],["116.0494186","-32.1732614"],["116.0495767","-32.1734779"],["116.0498222","-32.1737777"],["116.0502161","-32.1741434"],["116.0506457","-32.1744311"],["116.0511131","-32.1746352"],["116.0516207","-32.1748401"],["116.0522767","-32.17506"],["116.0528548","-32.1752553"],["116.0532082","-32.1754053"],["116.0536806","-32.1756337"],["116.0566296","-32.1775115"],["116.0569718","-32.1777202"],["116.0572747","-32.1778714"],["116.0576404","-32.1780259"],["116.0583228","-32.1782536"],["116.0605579","-32.1788452"],["116.0612623","-32.179065"],["116.0616376","-32.1792144"],["116.0619491","-32.1793574"],["116.0622495","-32.1795071"],["116.0624549","-32.1796124"],["116.0628048","-32.1797995"],["116.0634071","-32.1801129"],["116.0645716","-32.1806748"],["116.0648825","-32.1808063"],["116.0653746","-32.1809541"],["116.0657541","-32.1810502"],["116.0660763","-32.1811117"],["116.066519","-32.1811453"],["116.0672331","-32.1811584"],["116.0675671","-32.1811317"],["116.0681714","-32.1810401"],["116.0688576","-32.1808484"],["116.06966","-32.1806035"],["116.0702798","-32.1804564"],["116.0707023","-32.1804031"],["116.0710525","-32.180383"],["116.0714798","-32.1803862"],["116.0716395","-32.1804014"],["116.0719547","-32.18045"],["116.0724394","-32.1805588"],["116.0731757","-32.1808327"],["116.0738527","-32.1811245"],["116.074324","-32.1813207"],["116.0747459","-32.1814674"],["116.0753731","-32.181646"],["116.0759678","-32.1817315"],["116.0781294","-32.1820117"],["116.0847811","-32.1829007"],["116.0852656","-32.1829711"],["116.0857018","-32.1830471"],["116.0862781","-32.183184"],["116.0878944","-32.1835201"],["116.0885317","-32.1836913"],["116.0892265","-32.1839032"],["116.1055728","-32.1905586"],["116.1068454","-32.1912838"],["116.1092409","-32.1927624"],["116.1098277","-32.1931603"],["116.1101808","-32.1934108"],["116.1103888","-32.1935774"],["116.1112264","-32.1944797"],["116.1193155","-32.203396"],["116.1196149","-32.2037087"],["116.1212302","-32.2052395"],["116.1214585","-32.2055014"],["116.1230234","-32.2075507"],["116.1239427","-32.2088327"],["116.1246976","-32.2097859"],["116.1252484","-32.2104195"],["116.1260344","-32.2112182"],["116.1275757","-32.2125926"],["116.1281509","-32.2131635"],["116.1287286","-32.2137469"],["116.128986","-32.214047"],["116.1293201","-32.2145363"],["116.1303352","-32.2163787"],["116.1307272","-32.216972"],["116.1308876","-32.2171892"],["116.1313673","-32.2176542"],["116.1326059","-32.2188148"],["116.1336927","-32.2199107"],["116.1342531","-32.2206076"],["116.134964","-32.2213748"],["116.136783","-32.2234736"],["116.137343","-32.2241739"],["116.1377539","-32.2247831"],["116.1381592","-32.2254575"],["116.1388847","-32.2267426"],["116.1392129","-32.2274421"],["116.142002","-32.2351622"],["116.1424112","-32.2361549"],["116.1433028","-32.2381946"],["116.1436005","-32.2388481"],["116.1442261","-32.2402241"],["116.1450243","-32.242003"],["116.1457659","-32.2436133"],["116.1460815","-32.2443054"],["116.1463897","-32.2449805"],["116.1465593","-32.245322"],["116.1467643","-32.245651"],["116.1471497","-32.2462382"],["116.1493835","-32.2496541"],["116.1578012","-32.2630001"],["116.1585589","-32.2639267"],["116.1591837","-32.2645627"],["116.1600169","-32.2653428"],["116.1639898","-32.2690563"],["116.1651223","-32.270032"],["116.1658722","-32.2705211"],["116.1665776","-32.270917"],["116.1673609","-32.2712823"],["116.1681799","-32.2716499"],["116.170253","-32.2725421"],["116.1710205","-32.2728489"],["116.1724137","-32.2734274"],["116.1745897","-32.2743644"],["116.1753189","-32.2746794"],["116.1773471","-32.2755566"],["116.1793975","-32.2764534"],["116.180443","-32.2770839"],["116.1812562","-32.2778168"],["116.1822227","-32.2788613"],["116.1880959","-32.2857749"],["116.1905717","-32.2886376"],["116.1943777","-32.2929997"],["116.1955496","-32.2943445"],["116.2003352","-32.3027066"],["116.2011443","-32.3043647"],["116.2039445","-32.3091833"],["116.2083789","-32.3163525"],["116.20931","-32.3174795"],["116.2129031","-32.3217293"],["116.2141594","-32.3232486"],["116.2156239","-32.3257397"],["116.216377","-32.3270219"],["116.2166696","-32.3275107"],["116.2171835","-32.3283393"],["116.2246587","-32.3410934"],["116.2257997","-32.3431542"],["116.2260898","-32.3440255"],["116.226815","-32.3482495"],["116.2273314","-32.3498403"],["116.2283467","-32.351355"],["116.2293134","-32.3527558"],["116.2303171","-32.3547544"],["116.2311196","-32.3560359"],["116.2366493","-32.3626955"],["116.2472858","-32.3746757"],["116.2484336","-32.3760932"],["116.2491542","-32.3770636"],["116.2500581","-32.3785077"],["116.2506406","-32.3794907"],["116.2511345","-32.3802308"],["116.2513323","-32.3805315"],["116.2517981","-32.3810916"],["116.257102","-32.3869974"],["116.2579991","-32.3879229"],["116.2608636","-32.3901901"],["116.2634923","-32.392258"],["116.264972","-32.3933148"],["116.2662808","-32.3941414"],["116.2666699","-32.3944661"],["116.2670697","-32.3948388"],["116.2673829","-32.3952515"],["116.2675628","-32.3956036"],["116.2677302","-32.3959733"],["116.2678603","-32.3964743"],["116.2680094","-32.3972971"],["116.2681656","-32.3979294"],["116.2684099","-32.3984017"],["116.2686725","-32.3987853"],["116.2690204","-32.3991309"],["116.269451","-32.3994795"],["116.2699557","-32.3997668"],["116.2713947","-32.4004151"],["116.2722364","-32.4008862"],["116.2729825","-32.4015449"],["116.2745415","-32.4033161"],["116.2763376","-32.4053219"],["116.2843723","-32.4127189"],["116.2880772","-32.4160803"],["116.2892325","-32.4175306"],["116.2971097","-32.4300472"],["116.297608","-32.4307745"],["116.2982236","-32.4314803"],["116.2992243","-32.4323847"],["116.3045302","-32.4367742"],["116.3055182","-32.4376406"],["116.312152","-32.4440104"],["116.3141571","-32.4458712"],["116.3233064","-32.4538345"],["116.328322","-32.4593182"],["116.3333278","-32.4650247"],["116.3340055","-32.4659466"],["116.3344657","-32.4667501"],["116.3363217","-32.4703672"],["116.3372729","-32.4722182"],["116.3375908","-32.472809"],["116.3378467","-32.4732397"],["116.3382867","-32.4739123"],["116.3421532","-32.4784707"],["116.3430317","-32.4794532"],["116.3438193","-32.4802556"],["116.3446998","-32.4811129"],["116.3457066","-32.4821323"],["116.3492226","-32.4857045"],["116.3508282","-32.4877839"],["116.3523317","-32.4897807"],["116.3532716","-32.4910012"],["116.3538701","-32.4916076"],["116.3544503","-32.4920935"],["116.3579883","-32.4953462"],["116.3604083","-32.498591"],["116.3620874","-32.5001403"],["116.3643243","-32.5016598"],["116.365994","-32.5029132"],["116.3668219","-32.5036492"],["116.3678659","-32.5050186"],["116.3693534","-32.5073691"],["116.3716562","-32.5090698"],["116.3766093","-32.5137061"],["116.381318","-32.5172335"],["116.3834959","-32.5187779"],["116.3854332","-32.5200314"],["116.387227","-32.5213499"],["116.3916631","-32.5251302"],["116.3928336","-32.5265689"],["116.3932193","-32.5270242"],["116.3939718","-32.5279164"],["116.3966072","-32.5311492"],["116.3980549","-32.5328394"],["116.4002437","-32.5353463"],["116.4079673","-32.5417482"],["116.412155","-32.5459759"],["116.4159984","-32.5501673"],["116.4208244","-32.5552428"],["116.4221848","-32.5566148"],["116.4240506","-32.5586327"],["116.4311654","-32.5652855"],["116.4325976","-32.5666641"],["116.4392633","-32.5732696"],["116.4403359","-32.5744134"],["116.4449945","-32.5814434"],["116.447752","-32.5854609"],["116.4535427","-32.5944103"],["116.4596654","-32.6027408"],["116.4612557","-32.6047333"],["116.4623668","-32.6061396"],["116.4651427","-32.6101474"],["116.4678193","-32.6140388"],["116.4705374","-32.6190192"],["116.4729606","-32.6226995"],["116.4758197","-32.6269953"],["116.4761198","-32.6274797"],["116.4763475","-32.6278908"],["116.4766837","-32.6287904"],["116.4769854","-32.6301963"],["116.4779084","-32.6329591"],["116.4795712","-32.6345336"],["116.4822088","-32.6358601"],["116.4838928","-32.6367979"],["116.484434","-32.6371774"],["116.4853461","-32.6379101"],["116.4898483","-32.6428264"],["116.4921997","-32.6454033"],["116.4945342","-32.6480373"],["116.4956716","-32.6493876"],["116.4963364","-32.6502506"],["116.4970805","-32.6515755"],["116.4975751","-32.6523749"],["116.4984033","-32.6534335"],["116.4992493","-32.6542497"],["116.5002569","-32.6549478"],["116.5034743","-32.6566271"],["116.5055892","-32.6580417"],["116.5076381","-32.6601363"],["116.5091648","-32.6622963"],["116.5104287","-32.6641693"],["116.5112971","-32.6656534"],["116.5134639","-32.6701829"],["116.5147803","-32.6728747"],["116.5153043","-32.6737645"],["116.5158406","-32.674446"],["116.5166378","-32.675251"],["116.5170897","-32.675698"],["116.5179162","-32.6766731"],["116.5189771","-32.6784955"],["116.5194344","-32.6792977"],["116.5201361","-32.6805704"],["116.5208652","-32.6819123"],["116.5210835","-32.6825296"],["116.5212413","-32.6830473"],["116.5213451","-32.6835514"],["116.5213841","-32.6840546"],["116.5213458","-32.684788"],["116.5210575","-32.6866581"],["116.5209953","-32.6872285"],["116.5209914","-32.6877114"],["116.5210694","-32.6883939"],["116.5212839","-32.6890549"],["116.5214481","-32.6894366"],["116.5215858","-32.6897753"],["116.5218134","-32.6901217"],["116.5227685","-32.6913575"],["116.52442","-32.6927612"],["116.5270884","-32.6948095"],["116.529963","-32.6968994"],["116.5339307","-32.6997909"],["116.5368492","-32.7019627"],["116.5401135","-32.7040695"],["116.5417995","-32.7057712"],["116.5436624","-32.7080399"],["116.5461389","-32.7132184"],["116.5474876","-32.7152541"],["116.5499976","-32.7176043"],["116.5648949","-32.7297122"],["116.5679227","-32.7323035"],["116.5692611","-32.7337183"],["116.5701566","-32.7349903"],["116.5714939","-32.7381448"],["116.5737845","-32.7465716"],["116.5750587","-32.7500813"],["116.576413","-32.7525598"],["116.5774709","-32.7542299"],["116.579312","-32.7568586"],["116.5820543","-32.7603422"],["116.5851202","-32.7641577"],["116.586953","-32.7664274"],["116.5888261","-32.768762"],["116.5901556","-32.7705157"],["116.5911699","-32.7719798"],["116.591941","-32.7731494"],["116.5929811","-32.7749094"],["116.5937241","-32.7764083"],["116.5954721","-32.7811874"],["116.5970867","-32.7858424"],["116.597366","-32.786578"],["116.5975976","-32.7871226"],["116.5980603","-32.7880724"],["116.5993144","-32.7901345"],["116.5998855","-32.7910389"],["116.6002497","-32.7916574"],["116.6004699","-32.7920734"],["116.6006759","-32.7926165"],["116.6008199","-32.7930625"],["116.6009243","-32.7935643"],["116.6009998","-32.7941006"],["116.6010294","-32.7945033"],["116.6010219","-32.7949432"],["116.6009508","-32.7957192"],["116.6009433","-32.7962254"],["116.6009861","-32.7966527"],["116.601083","-32.7970625"],["116.6012361","-32.7975125"],["116.6013903","-32.7978794"],["116.6015697","-32.7981952"],["116.6017672","-32.7985138"],["116.6020931","-32.7989087"],["116.6039533","-32.8009248"],["116.6074997","-32.8047886"],["116.608027","-32.8054215"],["116.6086869","-32.806439"],["116.6093801","-32.8084158"],["116.6113163","-32.8178799"],["116.6115933","-32.818801"],["116.6117395","-32.8191735"],["116.6118874","-32.8195453"],["116.6121899","-32.8201343"],["116.6124746","-32.8206464"],["116.6130839","-32.8217495"],["116.6144253","-32.8241583"],["116.6160966","-32.8271908"],["116.6164301","-32.827778"],["116.6167633","-32.8283199"],["116.6174347","-32.8291425"],["116.6178591","-32.8295827"],["116.618243","-32.8299337"],["116.6186627","-32.8302886"],["116.6302769","-32.8394752"],["116.6332206","-32.8419014"],["116.639985","-32.8488896"],["116.6431207","-32.8517248"],["116.6468902","-32.8551966"],["116.659236","-32.8664656"],["116.6619552","-32.8688912"],["116.6635383","-32.8703495"],["116.664938","-32.8716706"],["116.6655865","-32.872204"],["116.6664711","-32.8727808"],["116.6673685","-32.8732805"],["116.6683331","-32.8737262"],["116.6690474","-32.8739877"],["116.6709542","-32.8745018"],["116.6756971","-32.8760431"],["116.6768269","-32.8763511"],["116.6776197","-32.8765025"],["116.6783499","-32.876599"],["116.6793278","-32.8766791"],["116.6803442","-32.8767675"],["116.6812364","-32.87688"],["116.6820332","-32.8770217"],["116.682673","-32.8771713"],["116.6832949","-32.8773562"],["116.6839934","-32.8775898"],["116.6846619","-32.8778651"],["116.6855156","-32.8782671"],["116.6862045","-32.8786667"],["116.6869319","-32.8791192"],["116.6877101","-32.8796952"],["116.6884456","-32.8803366"],["116.6891846","-32.8811439"],["116.6904175","-32.8829109"],["116.6922275","-32.8863456"],["116.692687","-32.8869983"],["116.6932602","-32.8876791"],["116.6940479","-32.888459"],["116.700588","-32.8942324"],["116.7095313","-32.9021941"],["116.7132547","-32.9055312"],["116.7309679","-32.9227616"],["116.7315632","-32.9232918"],["116.7320138","-32.9236498"],["116.7427222","-32.9301113"],["116.7450695","-32.9320642"],["116.7468662","-32.9338343"],["116.7489202","-32.9353191"],["116.7508832","-32.9362182"],["116.7538095","-32.9369628"],["116.7572796","-32.938349"],["116.7609421","-32.9398793"],["116.7682345","-32.9433168"],["116.7778731","-32.948085"],["116.7791084","-32.9488377"],["116.7801894","-32.9496941"],["116.7809442","-32.9503967"],["116.7817975","-32.9512031"],["116.782302","-32.9516262"],["116.7829304","-32.9520983"],["116.7835915","-32.9525583"],["116.7854514","-32.953544"],["116.8091908","-32.9651586"],["116.8146744","-32.9679239"],["116.8181863","-32.9700318"],["116.8197195","-32.9712388"],["116.8278352","-32.9789886"],["116.8330582","-32.9839389"],["116.8357831","-32.9858837"],["116.8438185","-32.991569"],["116.8449529","-32.9924786"],["116.8467088","-32.9939394"],["116.8548555","-33.00076"],["116.8578341","-33.0033434"],["116.8601296","-33.005404"],["116.8631793","-33.008151"],["116.8733491","-33.0175135"],["116.8738456","-33.0180102"],["116.8755564","-33.0196342"],["116.8761824","-33.0203154"],["116.8765435","-33.0207936"],["116.8768337","-33.0212309"],["116.8770388","-33.0215611"],["116.8771916","-33.0218319"],["116.8773955","-33.0222562"],["116.8775698","-33.0226631"],["116.8777797","-33.0232176"],["116.8791863","-33.0280673"],["116.8792465","-33.0283116"],["116.8792664","-33.0285412"],["116.8792466","-33.0289441"],["116.8791492","-33.0293538"],["116.8790253","-33.0298209"],["116.8788819","-33.0303988"],["116.878878","-33.0306076"],["116.8789144","-33.0308468"],["116.8789696","-33.0310356"],["116.8790516","-33.0312293"],["116.8792055","-33.0314835"],["116.8802709","-33.0327465"],["116.8811948","-33.0338061"],["116.8816026","-33.0342657"],["116.8831157","-33.0358942"],["116.8853236","-33.0383024"],["116.907121","-33.0622485"],["116.9092616","-33.0647499"],["116.9099902","-33.0656674"],["116.9108573","-33.0668325"],["116.9116439","-33.0680533"],["116.9130846","-33.07051"],["116.9149838","-33.0735952"],["116.9229074","-33.084641"],["116.9281297","-33.0914218"],["116.9294714","-33.0932756"],["116.9321737","-33.0971535"],["116.9333735","-33.0987689"],["116.936359","-33.102675"],["116.937754","-33.1045019"],["116.9390092","-33.1061211"],["116.9407914","-33.108098"],["116.9560954","-33.1246202"],["116.9564172","-33.124961"],["116.9567609","-33.1253926"],["116.9589957","-33.1283601"],["116.9610008","-33.1311541"],["116.962165","-33.1328589"],["116.9626737","-33.1337101"],["116.9632474","-33.1348462"],["116.9643416","-33.1372224"],["116.9651848","-33.13984"],["116.9659374","-33.1420985"],["116.9674041","-33.1457527"],["116.9692906","-33.1501481"],["116.9821228","-33.1768701"],["116.9824613","-33.1775068"],["116.9826974","-33.1779572"],["116.9828265","-33.1782724"],["116.9829596","-33.1786731"],["116.9830713","-33.1790536"],["116.9831524","-33.1793964"],["116.9832224","-33.1798468"],["116.9832553","-33.1802742"],["116.983279","-33.1826303"],["116.9832528","-33.1839092"],["116.983238","-33.1840814"],["116.9832468","-33.1847108"],["116.983271","-33.1856357"],["116.9833252","-33.1860749"],["116.9834632","-33.1868038"],["116.9835289","-33.1870802"],["116.9836566","-33.1874724"],["116.9838573","-33.1879661"],["116.9842179","-33.1887117"],["116.9844984","-33.1892502"],["116.9846913","-33.1896435"],["116.9853982","-33.1915192"],["116.9858227","-33.1926766"],["116.9867234","-33.195102"],["116.9884775","-33.1997312"],["116.991349","-33.2070231"],["116.9918926","-33.208236"],["116.9924652","-33.2092134"],["116.9935732","-33.2107895"],["116.9941541","-33.2115849"],["116.9944821","-33.2121006"],["116.994702","-33.2124982"],["116.9948906","-33.2129291"],["116.9950671","-33.2134125"],["116.9951891","-33.2138146"],["116.9953119","-33.2143031"],["116.995397","-33.2147897"],["116.9954606","-33.2154863"],["116.9955234","-33.2164785"],["116.9955887","-33.2170859"],["116.9956641","-33.2174892"],["116.9957808","-33.2179594"],["116.9959494","-33.2184936"],["116.9985153","-33.225611"],["116.9991215","-33.2273075"],["116.999323","-33.2278212"],["117.0026442","-33.2370981"],["117.0033799","-33.2391324"],["117.0048991","-33.2433597"],["117.005224","-33.2442735"],["117.0055095","-33.2450985"],["117.0058079","-33.2459762"],["117.0066006","-33.2484123"],["117.0068383","-33.2491696"],["117.0071272","-33.2501851"],["117.0077259","-33.2521822"],["117.0080741","-33.2533844"],["117.0085249","-33.2547851"],["117.008679","-33.2552894"],["117.0088638","-33.2560765"],["117.0091496","-33.2574342"],["117.009399","-33.2586583"],["117.009482","-33.2591984"],["117.0095447","-33.2596339"],["117.0097337","-33.2603355"],["117.0098582","-33.2610466"],["117.0099466","-33.2615478"],["117.010049","-33.2620916"],["117.0101506","-33.2625914"],["117.0102815","-33.2631063"],["117.0104105","-33.2635125"],["117.0132182","-33.2706513"],["117.013544","-33.2713546"],["117.0138123","-33.2718721"],["117.0140803","-33.2723237"],["117.0147344","-33.2731845"],["117.0151288","-33.2736111"],["117.0158374","-33.2742754"],["117.0170698","-33.2752811"],["117.0181174","-33.2761536"],["117.0207126","-33.2781957"],["117.0214712","-33.2790107"],["117.0220282","-33.279861"],["117.0229645","-33.2817451"],["117.024255","-33.2869424"],["117.0244809","-33.2888495"],["117.0248959","-33.2930431"],["117.0264821","-33.3110379"],["117.0264062","-33.3154436"],["117.0265708","-33.3174719"],["117.0270758","-33.319305"],["117.03237","-33.332885"],["117.033877","-33.3368703"],["117.0349857","-33.3399703"],["117.0351994","-33.3405707"],["117.0371577","-33.346209"],["117.0376559","-33.347752"],["117.0382047","-33.3495039"],["117.0463611","-33.3820559"],["117.0466064","-33.3834019"],["117.0466523","-33.3846249"],["117.0466107","-33.387788"],["117.0465836","-33.3905772"],["117.0466885","-33.3915591"],["117.0468454","-33.3925705"],["117.0488712","-33.4013968"],["117.049602","-33.4044882"],["117.0501446","-33.4068371"],["117.0502391","-33.4073564"],["117.0503098","-33.4081155"],["117.050337","-33.409524"],["117.0504719","-33.410539"],["117.0506228","-33.4112643"],["117.0507262","-33.4115617"],["117.0512862","-33.4131148"],["117.0515245","-33.4138729"],["117.0518244","-33.4149813"],["117.0521014","-33.4162887"],["117.052305","-33.4178701"],["117.0529062","-33.4258312"],["117.0530019","-33.4274923"],["117.0529962","-33.4280316"],["117.052904","-33.4292137"],["117.0514656","-33.444793"],["117.0514949","-33.4459499"],["117.0516534","-33.4468761"],["117.0519045","-33.4477234"],["117.0522276","-33.4485152"],["117.0530447","-33.450353"],["117.0540188","-33.4529147"],["117.0552299","-33.4564136"],["117.0560248","-33.4588416"],["117.057041","-33.4623664"],["117.062428","-33.4828136"],["117.0637823","-33.4874718"],["117.0681231","-33.5035608"],["117.0682472","-33.5039863"],["117.0683217","-33.5042696"],["117.0684499","-33.5047812"],["117.068921","-33.5062224"],["117.0704258","-33.5090858"],["117.0846378","-33.5340406"],["117.0852371","-33.5354393"],["117.085601","-33.5367326"],["117.0857896","-33.5375341"],["117.0858543","-33.5384346"],["117.0858736","-33.5398463"],["117.0856927","-33.5413426"],["117.0854452","-33.5428563"],["117.084958","-33.5446692"],["117.083445","-33.5499885"],["117.0829418","-33.5519945"],["117.082786","-33.5536852"],["117.0826992","-33.5566917"],["117.0826896","-33.5616209"],["117.0826929","-33.5653219"],["117.0826191","-33.5686606"],["117.082066","-33.5739117"],["117.0818799","-33.5760081"],["117.0816924","-33.5785544"],["117.0817104","-33.5800764"],["117.082016","-33.581622"],["117.0824852","-33.5829143"],["117.0836245","-33.5849544"],["117.0849905","-33.5872845"],["117.0858698","-33.5888742"],["117.0862954","-33.5901401"],["117.0864922","-33.5914662"],["117.0864426","-33.5929661"],["117.085926","-33.6000191"],["117.0857482","-33.6015305"],["117.085423","-33.6027182"],["117.0844402","-33.6049991"],["117.0840851","-33.606318"],["117.0839253","-33.6073683"],["117.0839088","-33.6087636"],["117.0839339","-33.6094398"],["117.0841382","-33.6102559"],["117.0853358","-33.6136459"],["117.0892997","-33.6240191"],["117.0923451","-33.6374695"],["117.0929023","-33.6404185"],["117.0938435","-33.6466038"],["117.0941809","-33.6502236"],["117.0945514","-33.6548763"],["117.0948112","-33.6567103"],["117.0958779","-33.6603524"],["117.0964992","-33.6618767"],["117.1061661","-33.6822511"],["117.1072439","-33.6846171"],["117.109203","-33.6887424"],["117.1105087","-33.6914438"],["117.1153955","-33.7023019"],["117.1162081","-33.7043325"],["117.1168749","-33.7062978"],["117.1180471","-33.7111998"],["117.1196934","-33.7183813"],["117.1199474","-33.7194852"],["117.1211758","-33.7251389"],["117.1216357","-33.7272218"],["117.1219889","-33.7286128"],["117.1224137","-33.7299548"],["117.1227564","-33.7309508"],["117.1232803","-33.7322625"],["117.1252937","-33.7370521"],["117.1268948","-33.740912"],["117.1275232","-33.7424608"],["117.1394656","-33.771825"],["117.1397001","-33.7723406"],["117.1401167","-33.7732867"],["117.1415268","-33.7766981"],["117.1418307","-33.7776544"],["117.1419382","-33.7787005"],["117.1420706","-33.7803235"],["117.1423262","-33.7821412"],["117.1436563","-33.7884099"],["117.1438951","-33.7896209"],["117.1442251","-33.7906215"],["117.1452726","-33.7928304"],["117.1462933","-33.7947985"],["117.1495117","-33.8009436"],["117.1506324","-33.8032546"],["117.1514949","-33.8054563"],["117.1522466","-33.8073919"],["117.1567033","-33.818907"],["117.157072","-33.8196592"],["117.1577281","-33.8209238"],["117.1581287","-33.8217256"],["117.1583649","-33.8222452"],["117.1585114","-33.822623"],["117.1585861","-33.8228652"],["117.158806","-33.8234704"],["117.159217","-33.8245187"],["117.159264","-33.8249238"],["117.159022","-33.826725"],["117.1589403","-33.827503"],["117.1589193","-33.8285026"],["117.1589274","-33.832646"],["117.1589368","-33.8330491"],["117.1591141","-33.8340076"],["117.1600085","-33.8339786"],["117.1600032","-33.8330452"],["117.1589852","-33.8329799"],["117.1589275","-33.8326301"],["117.1589191","-33.8285417"],["117.1589412","-33.8274863"],["117.1592992","-33.8270583"],["117.1775313","-33.8270347"],["117.1781148","-33.8270007"],["117.1785507","-33.8269267"],["117.1790504","-33.8267724"],["117.1826854","-33.8251674"],["117.1850692","-33.8240089"],["117.1863909","-33.8235366"],["117.2017993","-33.8185876"],["117.2026126","-33.8183917"],["117.2040696","-33.8181494"],["117.2052072","-33.8179573"],["117.2058459","-33.8177937"],["117.2351999","-33.8080357"],["117.2376775","-33.8073202"],["117.2509953","-33.8043569"],["117.2540501","-33.8036165"],["117.2689639","-33.7985262"],["117.2749239","-33.7958128"],["117.2790805","-33.7938205"],["117.2805647","-33.7928263"],["117.2811389","-33.7925438"],["117.2816841","-33.7923059"],["117.4371049","-33.7316517"],["117.4401813","-33.7304809"],["117.442787","-33.7294972"],["117.4573251","-33.7233858"],["117.4663657","-33.7195688"],["117.467827","-33.7190928"],["117.5446999","-33.6970276"],["117.5453476","-33.6967897"],["117.5456141","-33.696657"],["117.5458451","-33.6965069"],["117.5465702","-33.6959649"],["117.5469872","-33.6962957"],["117.5470902","-33.6963544"],["117.5471709","-33.6963986"],["117.5472666","-33.6964506"],["117.5473699","-33.6964911"],["117.5474712","-33.6965263"],["117.5475346","-33.6965164"],["117.5475961","-33.6965136"],["117.5476572","-33.6965216"],["117.5477173","-33.6965404"],["117.5477693","-33.6965674"],["117.5478155","-33.6966042"],["117.5478514","-33.6966474"],["117.5478756","-33.696695"],["117.5478881","-33.6967458"],["117.5478894","-33.6967967"],["117.5479169","-33.6968347"],["117.5480208","-33.6969962"],["117.5480764","-33.6970808"],["117.548131","-33.6971632"],["117.5482029","-33.697267"],["117.5488901","-33.6978544"],["117.5496028","-33.6983935"],["117.550443","-33.6988774"],["117.5556857","-33.7012667"],["117.55626","-33.7015815"],["117.5567367","-33.7018923"],["117.5572078","-33.7022394"],["117.557775","-33.7027198"],["117.5584309","-33.7033534"],["117.5590265","-33.7040396"],["117.5593171","-33.704472"],["117.5597305","-33.7051547"],["117.5605625","-33.7065692"],["117.5613183","-33.707714"],["117.5632395","-33.710387"],["117.5637099","-33.710989"],["117.5640895","-33.7114092"],["117.5644888","-33.7118139"],["117.5650938","-33.7123705"],["117.5656668","-33.7128679"],["117.5661241","-33.7132147"],["117.574058","-33.7189286"],["117.5768444","-33.7209509"],["117.5771311","-33.7211936"],["117.5774018","-33.7214402"],["117.5777027","-33.7217461"],["117.5780411","-33.722107"],["117.5794332","-33.7239749"],["117.5951708","-33.745152"],["117.5954769","-33.7456066"],["117.5956941","-33.7459912"],["117.5960423","-33.7466826"],["117.6063657","-33.7691186"],["117.6067066","-33.7697475"],["117.6070812","-33.7703576"],["117.607523","-33.7709502"],["117.6079846","-33.7714849"],["117.6137613","-33.7779341"],["117.6176682","-33.7822961"],["117.6178778","-33.7825629"],["117.6180454","-33.7828191"],["117.6181812","-33.7830848"],["117.6183098","-33.7833661"],["117.618409","-33.7836624"],["117.6184892","-33.7840138"],["117.6185426","-33.7843919"],["117.6185517","-33.7846512"],["117.6185325","-33.784911"],["117.618509","-33.7851688"],["117.61845","-33.7854729"],["117.6180556","-33.7868296"],["117.6175992","-33.7883156"],["117.6168888","-33.7906486"],["117.6168039","-33.7910292"],["117.6167578","-33.7913748"],["117.616751","-33.791767"],["117.61679","-33.7920963"],["117.6168429","-33.7924149"],["117.6169095","-33.7926693"],["117.617027","-33.7929935"],["117.6171628","-33.7932907"],["117.617502","-33.793825"],["117.6176759","-33.7940451"],["117.617857","-33.7942446"],["117.6181125","-33.7944859"],["117.6191962","-33.7952066"],["117.6275155","-33.8002749"],["117.6278379","-33.8005003"],["117.6281144","-33.8007094"],["117.6283505","-33.8009201"],["117.6285591","-33.8011332"],["117.6287393","-33.8013526"],["117.6289262","-33.8015897"],["117.629078","-33.8018412"],["117.62922","-33.8021113"],["117.6293323","-33.8023855"],["117.6294346","-33.8026736"],["117.6294959","-33.8029585"],["117.6295461","-33.8033211"],["117.6295625","-33.803678"],["117.6295326","-33.8040914"],["117.6294411","-33.8045556"],["117.6287129","-33.8070555"],["117.6285443","-33.8077428"],["117.6284998","-33.8081879"],["117.6285105","-33.808629"],["117.6285763","-33.8090616"],["117.6286771","-33.8094145"],["117.6287902","-33.8097469"],["117.6289212","-33.8100337"],["117.629072","-33.8102733"],["117.6292436","-33.8105316"],["117.6305421","-33.8120349"],["117.6338377","-33.8158171"],["117.6347736","-33.8169615"],["117.6350702","-33.8174789"],["117.6352097","-33.8178039"],["117.6353035","-33.818125"],["117.6353683","-33.8184221"],["117.6354098","-33.8187411"],["117.6354148","-33.8190703"],["117.6352847","-33.8200706"],["117.6328915","-33.8339907"],["117.6328013","-33.8347013"],["117.6327927","-33.8350327"],["117.6327951","-33.8353089"],["117.6328083","-33.8356438"],["117.6328479","-33.8359543"],["117.6329052","-33.8362713"],["117.632984","-33.8366216"],["117.6330988","-33.8370058"],["117.6333029","-33.8376293"],["117.6334923","-33.8381901"],["117.6337193","-33.838849"],["117.6339574","-33.8393534"],["117.6342259","-33.8397984"],["117.6344184","-33.8400726"],["117.6346008","-33.840292"],["117.6348295","-33.8405393"],["117.6352549","-33.8409481"],["117.6371612","-33.8427297"],["117.6375871","-33.8430328"],["117.6382705","-33.8434638"],["117.6385508","-33.8436622"],["117.6387739","-33.8438303"],["117.6433137","-33.8481348"],["117.6437681","-33.8484936"],["117.6442684","-33.8488145"],["117.6454808","-33.8495163"],["117.645909","-33.8497858"],["117.6461774","-33.8499877"],["117.6463987","-33.8501943"],["117.6465699","-33.850389"],["117.6467931","-33.8507137"],["117.6480459","-33.8526885"],["117.6482601","-33.8530635"],["117.6484185","-33.8533552"],["117.6485506","-33.8536246"],["117.6486504","-33.8538867"],["117.6487517","-33.8541906"],["117.6491722","-33.8563209"],["117.6496516","-33.858804"],["117.6501691","-33.8615394"],["117.6502087","-33.8619909"],["117.6502189","-33.862466"],["117.650188","-33.863093"],["117.6496268","-33.8676483"],["117.6494149","-33.869155"],["117.6492953","-33.8696991"],["117.6489582","-33.8707635"],["117.64885","-33.8711354"],["117.6487962","-33.8714326"],["117.6487718","-33.8717028"],["117.6487562","-33.8719606"],["117.6487795","-33.8722326"],["117.6488337","-33.8726119"],["117.6489418","-33.872991"],["117.6490494","-33.8733163"],["117.6491979","-33.8736079"],["117.6493691","-33.8738981"],["117.6509863","-33.8759891"],["117.6525241","-33.8779641"],["117.6530975","-33.8786066"],["117.6534637","-33.8788929"],["117.6538428","-33.8791124"],["117.654215","-33.8792937"],["117.6548513","-33.8794934"],["117.656011","-33.8798129"],["117.6564425","-33.8799567"],["117.6567726","-33.8801074"],["117.6571668","-33.8803338"],["117.6575119","-33.8805849"],["117.6578176","-33.8808628"],["117.6581548","-33.8812458"],["117.6608212","-33.8845214"],["117.6613619","-33.8845365"],["117.6629923","-33.8843569"],["117.6648894","-33.8842644"],["117.678753","-33.8842722"],["117.679215","-33.884294"],["117.6805127","-33.8845484"],["117.6887871","-33.8863942"],["117.6973789","-33.8882881"],["117.6979118","-33.8883745"],["117.6983708","-33.8884103"],["117.6988797","-33.8884088"],["117.7458796","-33.8818318"],["117.7525875","-33.8811648"],["117.8341309","-33.8811166"],["117.8356494","-33.881151"],["117.836235","-33.8812363"],["117.8366957","-33.8813605"],["117.8371688","-33.8815134"],["117.8391498","-33.8824047"],["117.8434675","-33.8842902"],["117.8482841","-33.8863963"],["117.8505844","-33.8873571"],["117.8512047","-33.8875731"],["117.851874","-33.8877525"],["117.8524437","-33.8878675"],["117.85309","-33.8879833"],["117.8537376","-33.8880502"],["117.8595209","-33.8882463"],["117.8600643","-33.8882326"],["117.8605713","-33.8881759"],["117.8683128","-33.8864469"],["117.8882982","-33.8819498"],["117.8952307","-33.8804336"],["117.8959172","-33.8803805"],["117.89679","-33.8803625"],["117.9105486","-33.8806417"],["117.9111766","-33.8806208"],["117.9126628","-33.8804119"],["117.914603","-33.8801207"],["117.9168524","-33.8797834"],["117.9180869","-33.8797674"],["117.9351446","-33.8801376"],["117.9359362","-33.880193"],["117.9364022","-33.8802761"],["117.9368324","-33.8804036"],["117.9372891","-33.8805605"],["117.937651","-33.880724"],["117.937921","-33.8808738"],["117.9380795","-33.8809972"],["117.938346","-33.8812234"],["117.9387905","-33.8816524"],["117.9405514","-33.8834718"],["117.9544522","-33.897956"],["117.9574204","-33.9010681"],["117.957768","-33.9015363"],["117.9582444","-33.9023233"],["117.9619612","-33.9092001"],["117.9630632","-33.9112395"],["117.9633927","-33.9117122"],["117.9637268","-33.9120528"],["117.9641348","-33.9123544"],["117.9646321","-33.9126221"],["117.9651163","-33.9128349"],["117.9656608","-33.912982"],["117.9662256","-33.9130641"],["117.9676066","-33.9131095"],["117.9683238","-33.9131764"],["117.9697022","-33.9134306"],["117.9711752","-33.9137273"],["117.9722087","-33.9139621"],["117.9728008","-33.9141993"],["117.9733048","-33.9144779"],["117.9743833","-33.9154226"],["117.981083","-33.9217363"],["117.9814954","-33.9220969"],["117.9818799","-33.922352"],["117.9823988","-33.9226232"],["117.9829081","-33.9228375"],["117.9834508","-33.923"],["117.9840791","-33.9230975"],["117.9846438","-33.9231049"],["117.9854492","-33.9230593"],["117.9886711","-33.9226376"],["117.9894883","-33.9225881"],["117.9900428","-33.9226367"],["117.9906459","-33.9227487"],["117.991182","-33.922919"],["117.9916176","-33.9231142"],["117.99209","-33.9234048"],["118.0043487","-33.9331337"],["118.0045251","-33.933278"],["118.0052254","-33.9340977"],["118.0054059","-33.934232"],["118.0085923","-33.9379911"],["118.0087307","-33.9382268"],["118.0105787","-33.9404076"],["118.010696","-33.9405434"],["118.0108279","-33.9406446"],["118.0110115","-33.9407173"],["118.0112803","-33.9407301"],["118.0119145","-33.9407394"],["118.0125951","-33.9407406"],["118.0307938","-33.9407717"],["118.0323972","-33.9408186"],["118.0328482","-33.9408885"],["118.0331899","-33.9409788"],["118.0335568","-33.9411046"],["118.0338699","-33.9412367"],["118.0342313","-33.9414349"],["118.0352349","-33.942209"],["118.041108","-33.9470767"],["118.0427545","-33.948405"],["118.043186","-33.9486576"],["118.0435486","-33.9488209"],["118.043971","-33.9489726"],["118.0445153","-33.9490954"],["118.0449331","-33.9491479"],["118.0483927","-33.9491749"],["118.0602149","-33.9492152"],["118.0630334","-33.9492698"],["118.063528","-33.9493872"],["118.0639931","-33.9495746"],["118.06446","-33.9498381"],["118.0648448","-33.9501546"],["118.0651462","-33.9505099"],["118.0654308","-33.9510426"],["118.0655477","-33.9513882"],["118.0656291","-33.9522112"],["118.0656825","-33.9599495"],["118.0657622","-33.9609161"],["118.0659553","-33.9614053"],["118.0661561","-33.9617137"],["118.0663651","-33.9619739"],["118.0666693","-33.9622644"],["118.0669933","-33.9624877"],["118.0672337","-33.9626215"],["118.0676485","-33.9627979"],["118.0680168","-33.9629159"],["118.0682587","-33.9629653"],["118.068616","-33.9630238"],["118.0691086","-33.9630504"],["118.0785688","-33.9630573"],["118.1083942","-33.9630404"],["118.1095097","-33.963064"],["118.1100764","-33.9631307"],["118.1106101","-33.9632565"],["118.1110868","-33.963459"],["118.1115894","-33.9637453"],["118.118172","-33.9691185"],["118.1204721","-33.9710189"],["118.1208636","-33.9713966"],["118.1211384","-33.9717945"],["118.1213293","-33.9722317"],["118.1214405","-33.9727199"],["118.1214765","-33.9741039"],["118.1214672","-33.9805592"],["118.1214923","-33.9824516"],["118.1215728","-33.9829073"],["118.1217016","-33.9833471"],["118.1219734","-33.9838559"],["118.1230022","-33.9853837"],["118.1320697","-33.9985001"],["118.134231","-34.0017669"],["118.1350847","-34.003473"],["118.1365654","-34.0067791"],["118.1373283","-34.0085353"],["118.1374894","-34.0090704"],["118.1375311","-34.0105901"],["118.1375419","-34.0166305"],["118.1376315","-34.0175863"],["118.1377698","-34.0180482"],["118.1379167","-34.0184381"],["118.1381881","-34.018913"],["118.1394982","-34.0206367"],["118.1399634","-34.0211873"],["118.1403936","-34.0215926"],["118.1407077","-34.0218071"],["118.1414152","-34.0221808"],["118.1435766","-34.0232303"],["118.1442597","-34.023477"],["118.1458396","-34.0237721"],["118.1524679","-34.0247565"],["118.1535465","-34.0248793"],["118.1569094","-34.0249104"],["118.161207","-34.0249256"],["118.1637822","-34.0249453"],["118.1643173","-34.025007"],["118.1650939","-34.0252041"],["118.1671843","-34.0258316"],["118.1676126","-34.0259159"],["118.1680799","-34.0259654"],["118.1696082","-34.0259853"],["118.1814262","-34.0259984"],["118.1820412","-34.0260444"],["118.1827881","-34.0261396"],["118.1836007","-34.0262681"],["118.1841333","-34.0263251"],["118.2353548","-34.0263376"],["118.2363797","-34.0263791"],["118.2373708","-34.0263959"],["118.2386428","-34.0263307"],["118.2535146","-34.0263091"],["118.2550797","-34.0263057"],["118.2557176","-34.0262189"],["118.2570796","-34.0259553"],["118.2578501","-34.0258597"],["118.2625378","-34.0255671"],["118.2654049","-34.0255017"],["118.266071","-34.0255244"],["118.2666488","-34.0255896"],["118.267292","-34.0256999"],["118.268259","-34.0259586"],["118.2688522","-34.0261619"],["118.2694522","-34.0264586"],["118.2701843","-34.0268631"],["118.2716531","-34.0277359"],["118.2718941","-34.027837"],["118.2732148","-34.0271627"],["118.2745752","-34.0266051"],["118.2756244","-34.0262526"],["118.2766286","-34.0259826"],["118.2776448","-34.0257592"],["118.2788976","-34.0255709"],["118.2799562","-34.0254844"],["118.282903","-34.0254427"],["118.2885054","-34.0254154"],["118.2919085","-34.0251132"],["118.3022218","-34.0236402"],["118.3076733","-34.0228278"],["118.3082807","-34.0226591"],["118.3087552","-34.0224866"],["118.3092104","-34.0222871"],["118.3096451","-34.0220673"],["118.3102119","-34.0216918"],["118.3107144","-34.0212841"],["118.3111888","-34.0208066"],["118.3116637","-34.0201928"],["118.312147","-34.0192671"],["118.3152937","-34.012338"],["118.3158576","-34.0112793"],["118.3162789","-34.010733"],["118.3166536","-34.0103248"],["118.3169541","-34.0100372"],["118.3173102","-34.0097432"],["118.3177072","-34.0094578"],["118.3181707","-34.0091708"],["118.3187143","-34.0088815"],["118.319239","-34.0086563"],["118.3197241","-34.0084774"],["118.3203797","-34.0082917"],["118.3210699","-34.0081478"],["118.3216664","-34.0080808"],["118.3285282","-34.0080321"],["118.3618969","-34.0079284"],["118.3633603","-34.0078652"],["118.3643343","-34.0077064"],["118.3653772","-34.0074042"],["118.3664374","-34.0069799"],["118.367958","-34.0061693"],["118.368835","-34.0057582"],["118.3696945","-34.0054564"],["118.3707245","-34.0051847"],["118.3716112","-34.0050711"],["118.3727195","-34.0049969"],["118.4098338","-34.0049856"],["118.4103054","-34.0049315"],["118.4106018","-34.0048728"],["118.4108634","-34.0048027"],["118.4111183","-34.0047093"],["118.4113697","-34.0046036"],["118.4115047","-34.0045355"],["118.4117506","-34.0043905"],["118.4118766","-34.0043007"],["118.4119926","-34.0042108"],["118.4121057","-34.0041191"],["118.412202","-34.0040245"],["118.4123235","-34.0038892"],["118.4124617","-34.0037268"],["118.4125852","-34.0035547"],["118.4126899","-34.0033911"],["118.412774","-34.0032147"],["118.4128551","-34.0030253"],["118.412902","-34.002896"],["118.412933","-34.0027849"],["118.4129583","-34.002651"],["118.4129785","-34.0022788"],["118.4129784","-33.9938512"],["118.412991","-33.9928009"],["118.4130427","-33.9923933"],["118.4131","-33.9921585"],["118.4131454","-33.9920067"],["118.413191","-33.9918861"],["118.4132727","-33.9917053"],["118.4133636","-33.9915356"],["118.413485","-33.9913538"],["118.4135972","-33.9912106"],["118.4137007","-33.9910968"],["118.413845","-33.9909547"],["118.4140093","-33.9908159"],["118.4142026","-33.990679"],["118.4144938","-33.9905024"],["118.4217089","-33.9872888"],["118.4679853","-33.9668561"],["118.4756994","-33.9634532"],["118.4776284","-33.9626059"],["118.4787718","-33.9621338"],["118.4794","-33.9619588"],["118.4801166","-33.9618224"],["118.4811265","-33.961748"],["118.4870877","-33.9617132"],["118.488348","-33.9616803"],["118.4886054","-33.9616444"],["118.4888707","-33.9615839"],["118.489252","-33.9614833"],["118.4894924","-33.9614"],["118.4897176","-33.9612988"],["118.4899332","-33.9611756"],["118.4901209","-33.9610462"],["118.490261","-33.9609375"],["118.4907031","-33.9604863"],["118.4930964","-33.957954"],["118.4937271","-33.9573156"],["118.4939608","-33.95713"],["118.4943336","-33.9568628"],["118.4952507","-33.956323"],["118.4982303","-33.9546812"],["118.4993708","-33.9540731"],["118.499736","-33.953917"],["118.4999587","-33.9538376"],["118.5001912","-33.9537716"],["118.5004136","-33.9537161"],["118.5006393","-33.9536765"],["118.5009284","-33.9536448"],["118.5031872","-33.9536438"],["118.5061652","-33.9536457"],["118.5084661","-33.9536421"],["118.5087896","-33.9536191"],["118.50918","-33.953569"],["118.5101837","-33.953413"],["118.5125186","-33.9530674"],["118.5135346","-33.9529762"],["118.5193777","-33.9526979"],["118.5201762","-33.9526809"],["118.5215063","-33.952817"],["118.5254695","-33.9534071"],["118.5263665","-33.9535332"],["118.5267521","-33.9535797"],["118.5270838","-33.9536067"],["118.5273775","-33.9536217"],["118.5337237","-33.9536145"],["118.5411895","-33.9536029"],["118.5462032","-33.9536029"],["118.5466027","-33.9536208"],["118.5468409","-33.9536389"],["118.5470394","-33.9536584"],["118.5472147","-33.9536826"],["118.5473987","-33.9537109"],["118.5475898","-33.9537498"],["118.5489264","-33.9540658"],["118.5494314","-33.954172"],["118.5497589","-33.9542283"],["118.5500185","-33.9542596"],["118.5503436","-33.9542802"],["118.5508986","-33.9543022"],["118.5511106","-33.9542988"],["118.5513185","-33.9542867"],["118.5515128","-33.9542676"],["118.5545888","-33.9537971"],["118.5557183","-33.9536322"],["118.5559799","-33.9536072"],["118.556213","-33.9535945"],["118.8560649","-33.9529141"],["118.8589593","-33.9528734"],["118.8693226","-33.9503609"],["118.9570269","-33.9289849"],["118.9599456","-33.9282431"],["118.9604013","-33.9280598"],["118.9608209","-33.9278569"],["118.9621839","-33.9270516"],["118.9650813","-33.9252913"],["118.9735196","-33.920269"],["118.9744605","-33.9197501"],["118.9757238","-33.9190297"],["118.9765541","-33.9185298"],["118.9770635","-33.9181471"],["118.9778329","-33.9174595"],["118.9799392","-33.9155079"],["118.9803282","-33.9151839"],["118.980601","-33.9150167"],["118.9810034","-33.9147836"],["118.981891","-33.9143443"],["118.9831339","-33.9137581"],["118.9842121","-33.9132615"],["118.9845248","-33.9131513"],["118.9848876","-33.913043"],["118.9856809","-33.91294"],["118.9878518","-33.9127397"],["118.993565","-33.9122148"],["118.9939426","-33.9121503"],["118.9943154","-33.9120634"],["118.9976227","-33.9110444"],["118.9978855","-33.9109319"],["118.9981848","-33.910791"],["118.9984495","-33.9106511"],["118.9987966","-33.9104117"],["118.9993821","-33.9099844"],["119.0020616","-33.9079696"],["119.0027205","-33.9074841"],["119.0029481","-33.9073487"],["119.0031873","-33.9072269"],["119.0034734","-33.907114"],["119.0037322","-33.9070243"],["119.0039854","-33.9069634"],["119.0043354","-33.9069145"],["119.0046152","-33.906895"],["119.0076028","-33.9069912"],["119.0264318","-33.907702"],["119.0282929","-33.9077556"],["119.0286173","-33.907744"],["119.0288896","-33.9077157"],["119.0312271","-33.9073602"],["119.0341445","-33.9069178"],["119.0357908","-33.9066908"],["119.0363796","-33.9066472"],["119.0419696","-33.9065398"],["119.0579863","-33.9062527"],["119.061118","-33.9061793"],["119.0614733","-33.9061459"],["119.0618274","-33.9060852"],["119.0622195","-33.9060018"],["119.0625924","-33.9059155"],["119.0628748","-33.9058341"],["119.0652946","-33.9046934"],["119.0860711","-33.8942629"],["119.0870005","-33.8937778"],["119.0873453","-33.8935565"],["119.0878067","-33.893227"],["119.0929292","-33.889143"],["119.0940188","-33.8882933"],["119.0943965","-33.8880526"],["119.0946938","-33.8878854"],["119.095071","-33.8877019"],["119.0954079","-33.8875467"],["119.0958654","-33.887364"],["119.0991498","-33.8863247"],["119.1077377","-33.8835998"],["119.1534136","-33.8657331"],["119.1920095","-33.8538324"],["119.2855531","-33.8203606"],["119.2894239","-33.8189732"],["119.2909268","-33.8185985"],["119.3053444","-33.8152238"],["119.3060409","-33.8150412"],["119.3063354","-33.8149504"],["119.3065644","-33.8148752"],["119.3067895","-33.8147856"],["119.3071898","-33.814593"],["119.3438501","-33.795079"],["119.3445124","-33.7947476"],["119.3450132","-33.7945194"],["119.3453641","-33.7943774"],["119.3457985","-33.7942238"],["119.4182401","-33.769529"],["119.4205487","-33.7686495"],["119.4412631","-33.7601179"],["119.5084136","-33.7313765"],["119.5090138","-33.7311657"],["119.5096288","-33.7309956"],["119.5102653","-33.7308628"],["119.5145807","-33.7303653"],["119.5193128","-33.7298296"],["119.52308","-33.7293956"],["119.5237084","-33.729263"],["119.5289544","-33.7276843"],["119.6354876","-33.6945113"],["119.6376462","-33.6938209"],["119.6404714","-33.6929309"],["119.6421125","-33.6923842"],["119.6757774","-33.6787988"],["119.677393","-33.6781828"],["119.6780228","-33.6780082"],["119.6786406","-33.6778777"],["119.685272","-33.6767919"],["119.6878709","-33.6764202"],["119.6888902","-33.6762301"],["119.6895002","-33.6760596"],["119.6900913","-33.6758504"],["119.6907064","-33.6755869"],["119.6912495","-33.6753186"],["119.6925047","-33.6745834"],["119.6984337","-33.6709929"],["119.6994228","-33.6704343"],["119.7000048","-33.6701665"],["119.700618","-33.6699234"],["119.7012267","-33.6697199"],["119.7018485","-33.669546"],["119.8296849","-33.6405027"],["119.8303154","-33.640331"],["119.8309003","-33.6401289"],["119.8315116","-33.6398802"],["119.8320616","-33.6396051"],["119.8325677","-33.6393196"],["119.8330845","-33.6390092"],["119.8344335","-33.6380616"],["119.8659542","-33.6142192"],["119.8768076","-33.6065398"],["119.8800185","-33.6041533"],["119.8805691","-33.6038093"],["119.8811121","-33.6035313"],["119.8816957","-33.6032861"],["119.8822637","-33.6030904"],["119.8828675","-33.6029205"],["119.8835053","-33.6027938"],["119.8841271","-33.6027123"],["119.8848487","-33.6026638"],["119.8916915","-33.6023559"],["119.8941422","-33.6022346"],["119.8947292","-33.6021571"],["119.8953145","-33.6020393"],["119.8958499","-33.6018997"],["119.896415","-33.6017136"],["119.8970033","-33.6014638"],["119.9026454","-33.5986186"],["119.9031781","-33.5983955"],["119.9037224","-33.5982009"],["119.9042881","-33.5980296"],["119.9048432","-33.5978918"],["119.9054237","-33.5977752"],["119.9060115","-33.5976862"],["119.9066896","-33.5976267"],["119.9195159","-33.5971633"],["119.9203076","-33.5971122"],["119.9209135","-33.5970304"],["119.9218306","-33.5968432"],["119.9225113","-33.5967148"],["119.9230876","-33.5966376"],["119.9236321","-33.5965864"],["119.92422","-33.5965722"],["119.9248133","-33.5966007"],["119.9254011","-33.5966536"],["119.9260268","-33.5967588"],["119.9276016","-33.5971358"],["119.9281803","-33.5972235"],["119.9287113","-33.5972867"],["119.9292521","-33.597315"],["119.9298417","-33.5973078"],["119.9304041","-33.5972645"],["119.9310092","-33.5971835"],["119.9315912","-33.5970759"],["119.9322056","-33.5969143"],["119.9331952","-33.5965802"],["119.9337713","-33.5963314"],["119.9342684","-33.5960475"],["119.9347188","-33.5957567"],["119.9351411","-33.5954389"],["119.9358932","-33.5947459"],["119.9388116","-33.5918501"],["119.9394659","-33.5912608"],["119.939885","-33.5909647"],["119.9403301","-33.5907085"],["119.9408131","-33.5904843"],["119.9412992","-33.5903095"],["119.9734459","-33.5809513"],["119.9746004","-33.58059"],["119.9752486","-33.5803074"],["119.9860084","-33.5750082"],["119.9883914","-33.5738461"],["119.988913","-33.5736534"],["119.9893941","-33.5735209"],["119.9899878","-33.5734152"],["119.990529","-33.573364"],["119.9925851","-33.5733399"],["119.9987438","-33.5733141"],["119.9997746","-33.5733278"],["120.0003254","-33.5733779"],["120.0009204","-33.57348"],["120.0017308","-33.5737002"],["120.0058485","-33.5750443"],["120.0069774","-33.5753887"],["120.0075598","-33.5755081"],["120.0081762","-33.5755861"],["120.0093701","-33.575664"],["120.0098868","-33.57572"],["120.010831","-33.575885"],["120.0121711","-33.5761172"],["120.0173292","-33.5770224"],["120.0178931","-33.5771496"],["120.0184318","-33.5773239"],["120.0189239","-33.5775358"],["120.0193992","-33.5777878"],["120.0198626","-33.5780962"],["120.0205989","-33.5786527"],["120.0210629","-33.5789757"],["120.0214951","-33.5792198"],["120.0220301","-33.5794449"],["120.0230024","-33.5797377"],["120.028535","-33.5812662"],["120.0299825","-33.5816406"],["120.0305965","-33.5818053"],["120.0309701","-33.5818931"],["120.0310099","-33.5817815"],["120.0313263","-33.5811779"],["120.0314345","-33.5809143"],["120.0315361","-33.5806571"],["120.0316407","-33.580436"],["120.0322387","-33.5789507"],["120.032442","-33.5784847"],["120.0326183","-33.5781625"],["120.0328401","-33.5778166"],["120.033083","-33.5775089"],["120.0333666","-33.5772058"],["120.0337046","-33.5769004"],["120.0340401","-33.5766716"],["120.0344115","-33.5764429"],["120.0348083","-33.5762305"],["120.035253","-33.5760496"],["120.0357287","-33.5758941"],["120.03639","-33.5757582"],["120.037469","-33.5755886"],["120.0380452","-33.5754807"],["120.0385259","-33.5753588"],["120.0390571","-33.57519"],["120.03955","-33.5749789"],["120.0400296","-33.5747066"],["120.0407072","-33.5742627"],["120.0410404","-33.5739694"],["120.0416227","-33.573398"],["120.0423921","-33.5728028"],["120.0431999","-33.5722654"],["120.0439733","-33.5718926"],["120.0446305","-33.5716726"],["120.0451554","-33.5715146"],["120.0460949","-33.5713444"],["120.046591","-33.5712899"],["120.0470638","-33.5712682"],["120.0475479","-33.5712832"],["120.0480231","-33.5713087"],["120.0484286","-33.5713529"],["120.0488496","-33.571413"],["120.0491651","-33.5714854"],["120.0494292","-33.5715489"],["120.0498365","-33.5716736"],["120.0503765","-33.5718539"],["120.0509728","-33.5721208"],["120.0514604","-33.5723804"],["120.0517935","-33.5725742"],["120.0521468","-33.5728341"],["120.052518","-33.5731183"],["120.0528847","-33.5734469"],["120.0532089","-33.5738086"],["120.0539134","-33.5746932"],["120.0555908","-33.576888"],["120.0558372","-33.5771183"],["120.0560845","-33.5773442"],["120.0562792","-33.5775771"],["120.0564844","-33.5778858"],["120.056705","-33.5781241"],["120.0568684","-33.5782188"],["120.0570801","-33.5782832"],["120.0573334","-33.5782738"],["120.0576716","-33.5781614"],["120.0589986","-33.5773894"],["120.0607846","-33.5763404"],["120.0614575","-33.5760564"],["120.0621694","-33.5758398"],["120.063404","-33.5755252"],["120.0639936","-33.5753344"],["120.0644231","-33.575147"],["120.0652832","-33.5746613"],["120.0705399","-33.5714532"],["120.0716037","-33.5708505"],["120.0721607","-33.570613"],["120.0728257","-33.5704055"],["120.0736201","-33.5702295"],["120.0744083","-33.5701388"],["120.0759209","-33.5701149"],["120.089398","-33.5701431"],["120.0917883","-33.5700556"],["120.094286","-33.5698479"],["120.1017341","-33.5695537"],["120.1033185","-33.5695822"],["120.1081415","-33.5705265"],["120.1091262","-33.5708257"],["120.1110468","-33.5717245"],["120.1167463","-33.5745765"],["120.1202948","-33.5763432"],["120.1208568","-33.5765705"],["120.1214302","-33.576748"],["120.1220424","-33.5768758"],["120.1253155","-33.5772976"],["120.1294716","-33.577826"],["120.131815","-33.5781411"],["120.1331823","-33.5784413"],["120.1387355","-33.5797145"],["120.1413024","-33.580309"],["120.1418795","-33.5804869"],["120.1425827","-33.5808002"],["120.1436991","-33.5813585"],["120.1444981","-33.5817465"],["120.1450514","-33.5819545"],["120.1456181","-33.5820993"],["120.1462008","-33.5821885"],["120.147832","-33.582268"],["120.1504242","-33.5823649"],["120.1524385","-33.5824526"],["120.1530492","-33.5825265"],["120.1536524","-33.582637"],["120.1542597","-33.5827901"],["120.1548543","-33.582986"],["120.1554161","-33.583214"],["120.1559364","-33.5834698"],["120.1564755","-33.5837839"],["120.1569441","-33.5841031"],["120.1577731","-33.5847944"],["120.1616014","-33.5881835"],["120.1624295","-33.5888348"],["120.1636894","-33.5897539"],["120.1645249","-33.5903434"],["120.1654405","-33.5908795"],["120.167518","-33.5920228"],["120.1686265","-33.5926026"],["120.1695192","-33.5929338"],["120.1715424","-33.5936179"],["120.1727486","-33.5940437"],["120.1733058","-33.5943121"],["120.1747932","-33.5951964"],["120.1797993","-33.5982049"],["120.1808175","-33.5987902"],["120.1812792","-33.5989969"],["120.18181","-33.5991812"],["120.1824009","-33.5993341"],["120.1829939","-33.5994332"],["120.1836827","-33.5994814"],["120.1999362","-33.5994632"],["120.201143","-33.59948"],["120.2034482","-33.5998135"],["120.2123355","-33.6012664"],["120.2155619","-33.6017763"],["120.2161271","-33.6018001"],["120.2166875","-33.6017858"],["120.2172425","-33.6017344"],["120.2177778","-33.6016431"],["120.2183393","-33.6015295"],["120.2189866","-33.6013566"],["120.2220766","-33.6004072"],["120.2229324","-33.6001696"],["120.2234431","-33.6000631"],["120.223966","-33.5999969"],["120.2263582","-33.5999634"],["120.2372335","-33.5999393"],["120.2377858","-33.5999206"],["120.2383856","-33.5998693"],["120.2391013","-33.599736"],["120.2404342","-33.599421"],["120.2412896","-33.59923"],["120.2418558","-33.5991604"],["120.2424362","-33.5991409"],["120.243021","-33.5991575"],["120.2435995","-33.5992195"],["120.2446616","-33.599447"],["120.2590681","-33.603001"],["120.2625258","-33.6035748"],["120.2774556","-33.6057929"],["120.2798429","-33.6061298"],["120.2818321","-33.6061637"],["120.291312","-33.6061562"],["120.2933369","-33.6061391"],["120.3038209","-33.6061159"],["120.3052453","-33.606098"],["120.3058127","-33.6060307"],["120.3064236","-33.6059241"],["120.3069774","-33.6057662"],["120.3075446","-33.6055592"],["120.3080772","-33.6053069"],["120.3098341","-33.6042197"],["120.3132266","-33.6020887"],["120.3144542","-33.6013636"],["120.3152404","-33.6010384"],["120.3189423","-33.5997014"],["120.32008","-33.5993188"],["120.3232178","-33.5985172"],["120.3369435","-33.5950773"],["120.338633","-33.5946965"],["120.3392159","-33.5946335"],["120.3399153","-33.5946223"],["120.3405548","-33.5946702"],["120.3423327","-33.5949594"],["120.3588844","-33.5978101"],["120.3606041","-33.5980967"],["120.3613899","-33.5982398"],["120.3620384","-33.5984175"],["120.3625297","-33.5986015"],["120.3630685","-33.5988502"],["120.3654143","-33.6002262"],["120.3883569","-33.6138838"],["120.3911074","-33.6155265"],["120.4384198","-33.6437681"],["120.4429196","-33.6464242"],["120.4433909","-33.6466357"],["120.4438866","-33.6468174"],["120.4444247","-33.6469738"],["120.4451896","-33.6471266"],["120.4890041","-33.6550073"],["120.4913226","-33.6553937"],["120.4940387","-33.6555297"],["120.5031672","-33.6558996"],["120.5041804","-33.6559412"],["120.5050396","-33.6559763"],["120.5053417","-33.6559868"],["120.514081","-33.6564425"],["120.5208092","-33.6569744"],["120.5261868","-33.6573373"],["120.530315","-33.6573536"],["120.5323643","-33.6573406"],["120.5362432","-33.6569723"],["120.5381746","-33.6567908"],["120.5426472","-33.6563619"],["120.5431439","-33.6563474"],["120.5442477","-33.6564267"],["120.5462936","-33.6566127"],["120.548032","-33.6567927"],["120.5492512","-33.6570259"],["120.5517926","-33.6576009"],["120.5531852","-33.6579002"],["120.5572965","-33.6583981"],["120.5757031","-33.6601669"],["120.6206525","-33.6640346"],["120.6223434","-33.6641905"],["120.6230707","-33.6643393"],["120.6367467","-33.6682533"],["120.6410511","-33.6694793"],["120.6432781","-33.6697622"],["120.660863","-33.6716586"],["120.6638186","-33.6719634"],["120.6642827","-33.6719654"],["120.6657642","-33.6718356"],["120.6724744","-33.6711448"],["120.6734065","-33.6710769"],["120.6736802","-33.6710687"],["120.674045","-33.6710773"],["120.6743373","-33.6711049"],["120.6746354","-33.6711441"],["120.6749676","-33.6711967"],["120.6759355","-33.6714105"],["120.6806544","-33.6725279"],["120.6811264","-33.6726305"],["120.6814748","-33.6726846"],["120.7559924","-33.6815028"],["120.7589042","-33.6818661"],["120.7592357","-33.6819316"],["120.7594339","-33.6819842"],["120.7596343","-33.6820447"],["120.7673075","-33.6847187"],["120.7676648","-33.6848215"],["120.768011","-33.6849097"],["120.76865","-33.6849985"],["120.7689421","-33.6850256"],["120.7696121","-33.6850331"],["120.7699645","-33.6850259"],["120.7797276","-33.6842028"],["120.7804629","-33.684128"],["120.7811458","-33.6840147"],["120.7815132","-33.6839192"],["120.7818739","-33.6838146"],["120.7822515","-33.6836633"],["120.7824917","-33.6835585"],["120.7830548","-33.6832732"],["120.7833509","-33.6830907"],["120.7839497","-33.6826828"],["120.7864917","-33.6808716"],["120.7885475","-33.6793951"],["120.7891723","-33.6789798"],["120.7894495","-33.6788371"],["120.7897638","-33.6786856"],["120.7900602","-33.6785688"],["120.790381","-33.6784564"],["120.7906961","-33.6783563"],["120.7909833","-33.678275"],["120.7912955","-33.6782077"],["120.7916697","-33.6781488"],["120.7923355","-33.6780689"],["120.7977178","-33.6775349"],["120.7980876","-33.6775158"],["120.7984392","-33.6775144"],["120.7987574","-33.6775279"],["120.7991536","-33.6775611"],["120.7997631","-33.677657"],["120.8003987","-33.6778008"],["120.8010728","-33.678016"],["120.8015713","-33.6782153"],["120.8021643","-33.6784641"],["120.8031231","-33.6788791"],["120.8574745","-33.7017333"],["120.8581124","-33.7020219"],["120.8588448","-33.7024281"],["120.8629763","-33.704902"],["120.8645984","-33.705875"],["120.8707986","-33.7095756"],["120.8732464","-33.7107867"],["120.8774496","-33.7126423"],["120.8801057","-33.7137988"],["120.8806939","-33.7140155"],["120.8812917","-33.7142044"],["120.8819501","-33.7143788"],["120.8825559","-33.7145181"],["120.8831706","-33.714636"],["120.8838139","-33.7147287"],["120.884459","-33.7147959"],["120.8851586","-33.7148404"],["120.8857944","-33.7148583"],["120.886422","-33.714851"],["120.8877071","-33.7147545"],["120.8897791","-33.7145661"],["120.8910988","-33.7144652"],["120.8917661","-33.714456"],["120.8923019","-33.7144676"],["120.8931185","-33.7145246"],["120.8936668","-33.714584"],["120.8944345","-33.7147036"],["120.8955732","-33.7149658"],["120.9333975","-33.7249711"],["120.9575925","-33.7313784"],["120.9602005","-33.7320646"],["120.9607509","-33.7322438"],["120.9612899","-33.732445"],["120.9618113","-33.7326704"],["120.9623289","-33.7329281"],["120.9628224","-33.7332022"],["120.9632898","-33.7335013"],["120.9664954","-33.7359516"],["120.9701342","-33.7387484"],["120.9741883","-33.7418599"],["120.974687","-33.7421745"],["120.9752005","-33.7424441"],["120.9757369","-33.7426795"],["120.9763164","-33.7428801"],["120.9802981","-33.7437374"],["121.0140493","-33.7506995"],["121.0179369","-33.7515062"],["121.0185071","-33.7516915"],["121.0211349","-33.7528989"],["121.0337986","-33.7588783"],["121.0353141","-33.7595633"],["121.03598","-33.7598158"],["121.0412336","-33.761485"],["121.0611351","-33.7678207"],["121.0618755","-33.7680074"],["121.0624759","-33.7680981"],["121.0632627","-33.7681361"],["121.0648059","-33.7681453"],["121.0661233","-33.7681564"],["121.066721","-33.7681998"],["121.0673113","-33.7682833"],["121.0678793","-33.7684254"],["121.0683893","-33.7685917"],["121.0701393","-33.7692187"],["121.0713829","-33.7696113"],["121.0807205","-33.7724619"],["121.0857243","-33.7739845"],["121.0864289","-33.774138"],["121.087058","-33.7742148"],["121.0905078","-33.7743367"],["121.1122715","-33.7750347"],["121.1145426","-33.7750995"],["121.1151078","-33.7750741"],["121.1156514","-33.7750154"],["121.1182752","-33.7745522"],["121.1261263","-33.7731243"],["121.1268961","-33.7729368"],["121.1274533","-33.7727336"],["121.1279884","-33.7724957"],["121.1284668","-33.7722325"],["121.1289348","-33.7719229"],["121.1301707","-33.7709252"],["121.1361217","-33.7660147"],["121.1366782","-33.765571"],["121.1371154","-33.765277"],["121.1375584","-33.7650098"],["121.1380156","-33.7647611"],["121.1387988","-33.764409"],["121.1485486","-33.7604982"],["121.1494164","-33.7601697"],["121.1499419","-33.7600053"],["121.1504991","-33.7598586"],["121.1510742","-33.7597398"],["121.1515813","-33.7596625"],["121.1565347","-33.7590698"],["121.1571125","-33.7590348"],["121.1577169","-33.7590227"],["121.1613881","-33.7591624"],["121.1639013","-33.7592571"],["121.1664525","-33.7593409"],["121.1671042","-33.7593187"],["121.1677739","-33.7592643"],["121.1684277","-33.7591727"],["121.1690732","-33.7590574"],["121.1776714","-33.7570657"],["121.1790584","-33.7567727"],["121.1797225","-33.7566873"],["121.1803779","-33.756638"],["121.1810756","-33.75662"],["121.181727","-33.7566382"],["121.1824225","-33.7566963"],["121.1831547","-33.7568091"],["121.1852509","-33.7572968"],["121.18804","-33.7579836"],["121.1893859","-33.7582985"],["121.1900921","-33.7584398"],["121.1912194","-33.7586231"],["121.1930032","-33.7588117"],["121.1948275","-33.7589754"],["121.1958586","-33.7590339"],["121.1965566","-33.7590271"],["121.1972348","-33.7589858"],["121.1979082","-33.7589007"],["121.1985407","-33.7587874"],["121.2041111","-33.7574682"],["121.2360319","-33.7498442"],["121.240379","-33.7489231"],["121.2417862","-33.7486758"],["121.2443952","-33.7482177"],["121.2454478","-33.7479729"],["121.2461467","-33.7477781"],["121.2469769","-33.7474776"],["121.2479104","-33.7470973"],["121.2485498","-33.7468078"],["121.2491163","-33.7465215"],["121.2498006","-33.7461316"],["121.2505218","-33.7457132"],["121.2512777","-33.7452843"],["121.251844","-33.7450097"],["121.2524321","-33.744757"],["121.2530135","-33.7445313"],["121.2536231","-33.7443257"],["121.2542096","-33.744157"],["121.2548331","-33.7439996"],["121.2554863","-33.7438594"],["121.2572582","-33.7434535"],["121.258379","-33.7432439"],["121.2591255","-33.743143"],["121.271375","-33.7423647"],["121.2743215","-33.7421699"],["121.2836837","-33.7415705"],["121.2843411","-33.7414932"],["121.2850055","-33.7413942"],["121.2856455","-33.7412741"],["121.2879516","-33.7407147"],["121.3313153","-33.7299038"],["121.3591424","-33.7230432"],["121.3612173","-33.722595"],["121.3628236","-33.7222475"],["121.3634543","-33.7220752"],["121.3883015","-33.7141018"],["121.3889686","-33.7139003"],["121.3896137","-33.713731"],["121.3912441","-33.713406"],["121.4307301","-33.7061535"],["121.4441636","-33.7036745"],["121.4450265","-33.7034699"],["121.4484218","-33.7024403"],["121.4679991","-33.6962703"],["121.4710731","-33.6953122"],["121.4717289","-33.6951469"],["121.4723899","-33.6950067"],["121.4730201","-33.6948937"],["121.4736635","-33.6948022"],["121.4743145","-33.6947341"],["121.4749557","-33.6946842"],["121.4756162","-33.6946549"],["121.4762834","-33.6946539"],["121.4984072","-33.6956028"],["121.5001031","-33.6956993"],["121.5020143","-33.6959677"],["121.5092463","-33.6970479"],["121.5108163","-33.6972367"],["121.5135866","-33.6973846"],["121.5531677","-33.6989714"],["121.5568498","-33.6991399"],["121.558103","-33.6992618"],["121.5593892","-33.6994424"],["121.5691418","-33.7012446"],["121.5698629","-33.7013547"],["121.5712925","-33.701539"],["121.5727045","-33.7017105"],["121.574143","-33.70192"],["121.5752357","-33.7021259"],["121.576227","-33.7023569"],["121.5771499","-33.7026026"],["121.5780063","-33.7028662"],["121.58031","-33.7037374"],["121.5823217","-33.7045169"],["121.5854925","-33.705771"],["121.5860183","-33.7060219"],["121.5865356","-33.7063065"],["121.5870573","-33.7066298"],["121.5874906","-33.7069287"],["121.5879052","-33.7072577"],["121.5883705","-33.7076482"],["121.5888664","-33.7081344"],["121.5891783","-33.7084883"],["121.5895227","-33.7089196"],["121.5898271","-33.7093589"],["121.5902655","-33.7100398"],["121.5938879","-33.7161219"],["121.5942635","-33.7165971"],["121.5946556","-33.7170034"],["121.5951753","-33.7174869"],["121.5997364","-33.7213114"],["121.6006557","-33.7220555"],["121.6011261","-33.7223497"],["121.6033674","-33.7234371"],["121.607457","-33.7253774"],["121.6094065","-33.7262321"],["121.6098102","-33.7263324"],["121.610106","-33.7264043"],["121.6122271","-33.7266804"],["121.6885731","-33.7355894"],["121.6897289","-33.7357444"],["121.6904175","-33.7358732"],["121.6910183","-33.736007"],["121.6916492","-33.736171"],["121.6921773","-33.7363242"],["121.6930295","-33.7366193"],["121.6940528","-33.7370137"],["121.6945822","-33.737247"],["121.6952743","-33.7376264"],["121.696033","-33.7380593"],["121.6966657","-33.7384565"],["121.6978036","-33.7392762"],["121.699011","-33.7401512"],["121.7000531","-33.7408943"],["121.7005963","-33.7412425"],["121.7011229","-33.7415563"],["121.7015926","-33.7418127"],["121.7022638","-33.7421411"],["121.702764","-33.7423646"],["121.7033284","-33.7425932"],["121.7039461","-33.7428185"],["121.7062122","-33.7434977"],["121.739005","-33.7530429"],["121.7402352","-33.7534277"],["121.7408377","-33.7536504"],["121.741686","-33.7540144"],["121.7538664","-33.7597725"],["121.7558117","-33.7606731"],["121.7564025","-33.7609065"],["121.7570558","-33.7611263"],["121.7586095","-33.7615443"],["121.7666557","-33.7635725"],["121.7693147","-33.7642529"],["121.7699167","-33.7644499"],["121.7705065","-33.7646778"],["121.7711175","-33.7649452"],["121.7716687","-33.7652188"],["121.7721978","-33.7655098"],["121.7727302","-33.7658317"],["121.7732518","-33.7661926"],["121.7736919","-33.7665229"],["121.774245","-33.7669763"],["121.7746522","-33.7673539"],["121.775894","-33.7686475"],["121.7775351","-33.7703929"],["121.7791781","-33.7722995"],["121.7901251","-33.7860466"],["121.7918185","-33.7881178"],["121.7922684","-33.7885488"],["121.7927304","-33.7889341"],["121.793207","-33.7892779"],["121.7942099","-33.7898819"],["121.7958849","-33.7908512"],["121.7979051","-33.7920202"],["121.7984944","-33.7923961"],["121.7997861","-33.7933582"],["121.8053963","-33.797636"],["121.8061097","-33.7981386"],["121.8067637","-33.7985465"],["121.8096439","-33.8002196"],["121.8107271","-33.800904"],["121.8112881","-33.801302"],["121.8118601","-33.8017535"],["121.8136252","-33.8032549"],["121.814563","-33.8040394"],["121.816266","-33.8054808"],["121.816775","-33.80587"],["121.8172587","-33.8061976"],["121.8177523","-33.8065048"],["121.8182684","-33.806791"],["121.8188208","-33.8070663"],["121.8219736","-33.8083918"],["121.8267803","-33.8104006"],["121.8298943","-33.8117444"],["121.8310099","-33.8123771"],["121.8317557","-33.8128922"],["121.8325851","-33.8135746"],["121.8351046","-33.8159015"],["121.8361533","-33.8167879"],["121.8369224","-33.8173195"],["121.8379113","-33.8178823"],["121.8411361","-33.8194988"],["121.8430399","-33.8205368"],["121.8513091","-33.8256519"],["121.8523107","-33.8263589"],["121.8529529","-33.8269264"],["121.8536167","-33.8276342"],["121.8542403","-33.8284435"],["121.8547632","-33.8293451"],["121.8554548","-33.830646"],["121.855854","-33.831257"],["121.85625","-33.8317905"],["121.8567251","-33.8323337"],["121.8573337","-33.832933"],["121.8578537","-33.8334078"],["121.8585374","-33.8338615"],["121.8644032","-33.8375686"],["121.8651388","-33.8379647"],["121.8657122","-33.8382013"],["121.8660089","-33.8382942"],["121.8665439","-33.8384351"],["121.8673282","-33.8385867"],["121.8680755","-33.8386566"],["121.8866504","-33.8389522"],["121.8870274","-33.8388872"],["121.8872256","-33.8388173"],["121.8873348","-33.8387584"],["121.8874166","-33.8387251"],["121.8874278","-33.8400452"],["121.8874193","-33.8417521"],["121.8873893","-33.8433989"],["121.8873457","-33.8443391"],["121.8872099","-33.8448997"],["121.8866213","-33.8461836"],["121.8860237","-33.8468084"],["121.8854441","-33.8472592"],["121.8837867","-33.8483415"],["121.8834572","-33.8486499"],["121.8831901","-33.8489615"],["121.883064","-33.8491583"],["121.8829025","-33.8495171"],["121.882771","-33.8499028"],["121.8827112","-33.8502653"],["121.8827024","-33.8505396"],["121.8826918","-33.8533893"],["121.8827006","-33.8542066"],["121.8826586","-33.8545713"],["121.8824959","-33.8549852"],["121.8821193","-33.8558843"],["121.8820541","-33.8561785"],["121.8820083","-33.8578672"],["121.8819837","-33.8592441"],["121.8820039","-33.8639536"],["121.882493","-33.8641297"],["121.8877605","-33.8641543"],["121.8879931","-33.8641937"],["121.8880372","-33.8641655"],["121.8880905","-33.864152"],["121.8881452","-33.8641605"],["121.8881959","-33.8641951"],["121.8882181","-33.8642467"],["121.8882118","-33.8643004"],["121.8883337","-33.8643527"],["121.8889045","-33.8644993"],["121.890378","-33.8648463"],["121.8904341","-33.8648224"],["121.8904765","-33.8647945"],["121.8905203","-33.8647837"],["121.8905717","-33.8647867"],["121.8906128","-33.8648037"],["121.8906491","-33.8648362"],["121.8906653","-33.8648718"],["121.8906652","-33.8649108"],["121.8906494","-33.8649465"],["121.8906217","-33.8649736"],["121.8905813","-33.8649934"],["121.8905168","-33.8650267"],["121.8901603","-33.8667137"],["121.8901279","-33.8679675"],["121.8900973","-33.8693089"]] } }; 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"); } }); })();